@charset "UTF-8";
/*------------------------------------*\
		YOUR-PROJECT.CSS
\*------------------------------------*/
/**
 *
 * compass watch
 *
 * Here we set up some variables, include the inuit.css framework, then add our
 * project-specific components afterwards.
 */
/**
 * Setup
 */
/*------------------------------------*\
    VARS.SCSS
\*------------------------------------*/
/**
 * Any variables you find set in inuit.css’ `_vars.scss` that you do not wish to
 * keep, simply redefine here. This means that if inuit.css, for example, sets
 * your `$base-font-size` at 16px and you wish it to be 14px, simply redeclare
 * that variable in this file. inuit.css ignores its own variables in favour of
 * using your own, so you can completely modify how inuit.css works without ever
 * having to alter the framework itself.
 */
/*------------------------------------*\
    $OBJECTS-AND-ABSTRACTIONS
\*------------------------------------*/
/**
 * All of inuit.css’ objects and abstractions are initially turned off by
 * default. This means that you start any project with as little as possible,
 * and introducing objects and abstractions is as simple as switching the
 * following variables to `true`.
 */
/*------------------------------------*\
    $OVERRIDES
\*------------------------------------*/
/**
 * Place any variables that should override inuit.css’ defaults here.
 */
/*------------------------------------*\
    $CUSTOM
\*------------------------------------*/
/**
 * Place any of your own variables that sit on top of inuit.css here.
 */
/*------------------------------------*\
    $DEFAULTS
\*------------------------------------*/
/**
 * inuit.css’ default variables. Redefine these in your `_vars.scss` file (found
 * in the inuit.css-web-template) to override them.
 */
/*------------------------------------*\
    $DEBUG
\*------------------------------------*/
/**
 * Debug mode will visually highlight any potential markup/accessibility quirks
 * in the browser. Set to `true` or `false`.
 */
/*------------------------------------*\
    $BORDER-BOX
\*------------------------------------*/
/**
 * Do you want all elements to adopt `box-sizing:border-box;` as per
 * paulirish.com/2012/box-sizing-border-box-ftw ?
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Base stuff
 */
/**
 * Base font-family.
 */
/**
 * Default colour for objects’ borders etc.
 */
/*------------------------------------*\
    $RESPONSIVE
\*------------------------------------*/
/**
 * Responsiveness?
 */
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 */
/**
 * Responsive push and pull produce a LOT of code, only turn them on if you
 * definitely need them.
 */
/**
 * Note: `$push` variable above must be set to true before enabling these.
 */
/**
 * Note: `$pull` variable above must be set to true before enabling these.
 */
/**
 * Tell inuit.css when breakpoints start.
 */
/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/**
 * Font-sizes (in pixels). Refer to relevant sections for their implementations.
 */
/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * English quote marks?
 */
/**
 * If you want English quotes then please do not edit these; they’re only here
 * because Sass needs them.
 */
/**
 * If you need non-English quotes, please alter the following values accordingly:
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * Brand stuff
 */
/**
 * How big would you like round corners to be by default?
 */
/*------------------------------------*\
    $OBJECTS AND ABSTRACTIONS
\*------------------------------------*/
/**
 * Which objects and abstractions would you like to use?
 */
/*------------------------------------*\
    $FRAMEWORK
\*------------------------------------*/
/**
 * inuit.css will work these next ones out for use within the framework.
 *
 * Assign our `$base-line-height` to a new spacing var for more transparency.
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * Create a fully formed type style (sizing and vertical rhythm) by passing in a
 * single value, e.g.:
 *
   `@include font-size(10px);`
 *
 * Thanks to @redclov3r for the `line-height` Sass:
 * twitter.com/redclov3r/status/250301539321798657
 */
/**
 * Style any number of headings in one fell swoop, e.g.:
 *
   .foo{
       @include headings(1, 3){
           color:#BADA55;
       }
    }
 *
 * With thanks to @lar_zzz, @paranoida and @rowanmanning and ultimately
 * @thierrylemoulec for refining and improving my initial mixin.
 */
/**
 * Create vendor-prefixed CSS in one go, e.g.
 *
   `@include vendor(border-radius, 4px);`
 *
 */
/**
 * Create CSS keyframe animations for all vendors in one go, e.g.:
 *
   .foo{
       @include vendor(animation, shrink 3s);
   }

   @include keyframe(shrink){
       from{
           font-size:5em;
       }
   }
 *
 * Courtesy of @integralist: twitter.com/integralist/status/260484115315437569
 */
/**
 * Force overly long spans of text to truncate, e.g.:
 *
   `@include truncate(100%);`
 *
 * Where `$truncation-boundary` is a united measurement.
 */
/**
 * CSS arrows!!! But... before you read on, you might want to grab a coffee...
 *
 * This mixin creates a CSS arrow on a given element. We can have the arrow
 * appear in one of 12 locations, thus:
 *
 *       01    02    03
 *    +------------------+
 * 12 |                  | 04
 *    |                  |
 * 11 |                  | 05
 *    |                  |
 * 10 |                  | 06
 *    +------------------+
 *       09    08    07
 *
 * You pass this position in along with a desired arrow color and optional
 * border color, for example:
 *
 * `@include arrow(top, left, red)`
 *
 * for just a single, red arrow, or:
 *
 * `@include arrow(bottom, center, red, black)`
 *
 * which will create a red triangle with a black border which sits at the bottom
 * center of the element. Call the mixin thus:
 *
   .foo{
       background-color:#BADA55;
       border:1px solid #ACE;
       @include arrow(top, left, #BADA55, #ACE);
   }
 *
 */
/**
 * Media query mixin.
 *
 * It’s not great practice to define solid breakpoints up-front, preferring to
 * modify your design when it needs it, rather than assuming you’ll want a
 * change at ‘mobile’. However, as inuit.css is required to take a hands off
 * approach to design decisions, this is the closest we can get to baked-in
 * responsiveness. It’s flexible enough to allow you to set your own breakpoints
 * but solid enough to be frameworkified.
 *
 * We define some broad breakpoints in our vars file that are picked up here
 * for use in a simple media query mixin. Our options are:
 *
 * palm
 * lap
 * lap-and-up
 * portable
 * desk
 * desk-wide
 *
 * Not using a media query will, naturally, serve styles to all devices.
 *
 * `@include media-query(palm){ [styles here] }`
 *
 * We work out your end points for you:
 */
/* normalize.css v2.1.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/*
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/*
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/*
 * Address styling not present in IE 8/9.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

/*
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/*
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/*
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/*
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/*
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/*
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/*
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/*
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/*
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/*
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/*
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/*
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/*
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/*
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/*
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/*
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/*------------------------------------*\
    $RESET
\*------------------------------------*/
/**
 * A more considered reset; more of a restart...
 * As per: csswizardry.com/2011/10/reset-restarted
 */
/**
* Let’s make the box model all nice, shall we...?
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

/**
 * The usual...
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0; }

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title], dfn[title] {
  cursor: help; }

/**
 * Remove underlines from potentially troublesome elements.
 */
u, ins {
  text-decoration: none; }

/**
 * Apply faux underline via `border-bottom`.
 */
ins {
  border-bottom: 1px solid; }

/**
 * So that `alt` text is visually offset if images don’t load.
 */
img {
  font-style: italic; }

/**
 * Give form elements some cursor interactions...
 */
label,
input,
textarea,
button,
select,
option {
  cursor: pointer; }

.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
  outline: none; }

/*------------------------------------*\
    $CLEARFIX
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.cf` class appearing over
 * and over in your markup.
 */
.cf:after {
  content: "";
  display: table;
  clear: both; }

/*------------------------------------*\
    $SHARED
\*------------------------------------*/
/**
 * Where `margin-bottom` is concerned, this value will be the same as the
 * base line-height. This allows us to keep a consistent vertical rhythm.
 * As per: csswizardry.com/2012/06/single-direction-margin-declarations
 */
/**
 * Base elements
 */
h1, h2, h3, h4, h5, h6, hgroup,
ul, ol, dl,
blockquote, p, address,
table,
fieldset, figure,
pre,
.form-fields > li,
.media,
.island,
.islet {
  margin-bottom: 24px;
  margin-bottom: 1.5rem; }
  .islet h1, .islet h2, .islet h3, .islet h4, .islet h5, .islet h6, .islet hgroup, .islet
  ul, .islet ol, .islet dl, .islet
  blockquote, .islet p, .islet address, .islet
  table, .islet
  fieldset, .islet figure, .islet
  pre, .islet .form-fields > li, .islet
  .media, .islet
  .island, .islet
  .islet {
    margin-bottom: 12px;
    margin-bottom: 0.75rem; }

/**
 * Doubled up `margin-bottom` helper class.
 */
.landmark {
  margin-bottom: 48px;
  margin-bottom: 3rem; }

/**
 * `hr` elements only take up a few pixels, so we need to give them special
 * treatment regarding vertical rhythm.
 */
hr {
  margin-bottom: 22px;
  margin-bottom: 1.375rem; }

/**
 * Where `margin-left` is concerned we want to try and indent certain elements
 * by a consistent amount. Define that amount once, here.
 */
ul, ol, dd {
  margin-left: 48px;
  margin-left: 3rem; }

/*------------------------------------*\
    $MAIN
\*------------------------------------*/
html {
  font: 1em/1.5 sans-serif;
  overflow-y: scroll;
  min-height: 100%; }

/*------------------------------------*\
    $HEADINGS
\*------------------------------------*/
/**
 * As per: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 *
 * When we define a heading we also define a corresponding class to go with it.
 * This allows us to apply, say, `class=alpha` to a `h3`; a double-stranded
 * heading hierarchy.
 */
h1, .alpha {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.33333; }

h2, .beta {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.6; }

h3, .gamma {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1; }

h4, .delta {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2; }

h5, .epsilon {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

h6, .zeta {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429; }

/**
 * Heading groups and generic any-heading class.
 * To target any heading of any level simply apply a class of `.hN`, e.g.:
 *
   <hgroup>
       <h1 class=hN>inuit.css</h1>
       <h2 class=hN>Best. Framework. Ever!</h2>
   </hgroup>
 *
 */
hgroup .hN {
  margin-bottom: 0; }

/**
 * A series of classes for setting massive type; for use in heroes, mastheads,
 * promos, etc.
 */
.giga {
  font-size: 96px;
  font-size: 6rem;
  line-height: 1; }

.mega {
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 1; }

.kilo {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1; }

/*------------------------------------*\
    $PARAGRAPHS
\*------------------------------------*/
/**
 * The `.lede` class is used to make the introductory text (usually a paragraph)
 * of a document slightly larger.
 */
.lede,
.lead {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.33333; }

/*------------------------------------*\
    $SMALLPRINT
\*------------------------------------*/
/**
 * A series of classes for setting tiny type; for use in smallprint etc.
 */
.smallprint,
.milli {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2; }

.micro {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 2.4; }

/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * If English quotes are set in `_vars.scss`, define them here.
 */
/**
 * Big up @boblet: html5doctor.com/blockquote-q-cite
 */
/**
 * Inline quotes.
 */
q {
  quotes: "\2018" "\2019" "\201C" "\201D"; }
  q:before {
    content: "\2018";
    content: open-quote; }
  q:after {
    content: "\2019";
    content: close-quote; }
  q q:before {
    content: "\201C";
    content: open-quote; }
  q q:after {
    content: "\201D";
    content: close-quote; }

blockquote {
  quotes: "\201C" "\201D"; }
  blockquote p:before {
    content: "\201C";
    content: open-quote; }
  blockquote p:after {
    content: "";
    content: no-close-quote; }
  blockquote p:last-of-type:after {
    content: "\201D";
    content: close-quote; }
  blockquote q:before {
    content: "\2018";
    content: open-quote; }
  blockquote q:after {
    content: "\2019";
    content: close-quote; }

/**
 *
   <blockquote>
       <p>Insanity: doing the same thing over and over again and expecting
       different results.</p>
       <b class=source>Albert Einstein</b>
   </blockquote>
 *
 */
blockquote {
  /**
   * .4em is roughly equal to the width of the opening “ that we wish to hang.
   */
  text-indent: -0.41em; }
  blockquote p:last-of-type {
    margin-bottom: 0; }

.source {
  display: block;
  text-indent: 0; }
  .source:before {
    content: "\2014"; }

/*------------------------------------*\
    $CODE
\*------------------------------------*/
/**
 * Use an explicit font stack to ensure browsers render correct `line-height`.
 */
pre {
  overflow: auto; }

pre mark {
  background: none;
  border-bottom: 1px solid;
  color: inherit; }

/**
 * Add comments to your code examples, e.g.:
 *
   <code>&lt;/div&gt;<span class=code-comment>&lt;!-- /wrapper --&gt;</span></code>
 *
 */
.code-comment {
  /**
   * Override this setting in your theme stylesheet
   */
  opacity: 0.75;
  filter: alpha(opacity=75); }

/**
 * You can add line numbers to your code examples but be warned, it requires
 * some pretty funky looking markup, e.g.:
 *
   <ol class=line-numbers>
       <li><code>.nav{</code></li>
       <li><code>    list-style:none;</code></li>
       <li><code>    margin-left:0;</code></li>
       <li><code>}</code></li>
       <li><code>    .nav > li,</code></li>
       <li><code>        .nav > li > a{</code></li>
       <li><code>            display:inline-block;</code></li>
       <li><code>           *display:inline-block;</code></li>
       <li><code>            zoom:1;</code></li>
       <li><code>        }</code></li>
   </ol>
 *
 * 1. Make the list look like code.
 * 2. Give the list flush numbers with a leading zero.
 * 3. Make sure lines of code don’t wrap.
 * 4. Give the code form by forcing the `code` to honour white-space.
 */
.line-numbers {
  font-family: monospace, serif;
  /* [1] */
  list-style: decimal-leading-zero inside;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  overflow: auto;
  /* [3] */
  margin-left: 0; }

.line-numbers code {
  white-space: pre;
  /* [4] */ }

/*------------------------------------*\
    $IMAGES
\*------------------------------------*/
/**
 * Demo: jsfiddle.net/inuitcss/yMtur
 */
/**
 * Fluid images.
 */
img {
  max-width: 100%; }

/**
 * Non-fluid images if you specify `width` and/or `height` attributes.
 */
img[width],
img[height] {
  max-width: none; }

/**
 * Rounded images.
 */
.img--round {
  border-radius: 4px; }

/**
 * Image placement variations.
 */
.img--right {
  float: right;
  margin-bottom: 24px;
  margin-left: 24px; }

.img--left {
  float: left;
  margin-right: 24px;
  margin-bottom: 24px; }

.img--center {
  display: block;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto; }

/**
 * Keep your images on your baseline.
 *
 * Please note, these will not work too nicely with fluid images and will
 * distort when resized below a certain width. Use with caution.
 */
.img--short {
  height: 120px; }

.img--medium {
  height: 240px; }

.img--tall {
  height: 360px; }

/**
 * Images in `figure` elements.
 */
figure > img {
  display: block; }

/*------------------------------------*\
    $LISTS
\*------------------------------------*/
/**
 * Remove vertical spacing from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0; }

/**
 * Have a numbered `ul` without the semantics implied by using an `ol`.
 */
/*ul*/
.numbered-list {
  list-style-type: decimal; }

/*------------------------------------*\
    $TABLES
\*------------------------------------*/
/**
 * We have a lot at our disposal for making very complex table constructs, e.g.:
 *
   <table class="table--bordered  table--striped  table--data">
       <colgroup>
           <col class=t10>
           <col class=t10>
           <col class=t10>
           <col>
       </colgroup>
       <thead>
           <tr>
               <th colspan=3>Foo</th>
               <th>Bar</th>
           </tr>
           <tr>
               <th>Lorem</th>
               <th>Ipsum</th>
               <th class=numerical>Dolor</th>
               <th>Sit</th>
           </tr>
       </thead>
       <tbody>
           <tr>
               <th rowspan=3>Sit</th>
               <td>Dolor</td>
               <td class=numerical>03.788</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>32.210</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>47.797</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <th rowspan=2>Sit</th>
               <td>Dolor</td>
               <td class=numerical>09.640</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>12.117</td>
               <td>Lorem</td>
           </tr>
       </tbody>
   </table>
 *
 */
table {
  width: 100%; }

th,
td {
  padding: 6px;
  text-align: left; }
  @media screen and (min-width: 480px) {
    th,
    td {
      padding: 12px; } }

/**
 * Cell alignments
 */
[colspan] {
  text-align: center; }

[colspan="1"] {
  text-align: left; }

[rowspan] {
  vertical-align: middle; }

[rowspan="1"] {
  vertical-align: top; }

.numerical {
  text-align: right; }

/**
 * In the HTML above we see several `col` elements with classes whose numbers
 * represent a percentage width for that column. We leave one column free of a
 * class so that column can soak up the effects of any accidental breakage in
 * the table.
 */
.t5 {
  width: 5%; }

.t10 {
  width: 10%; }

.t12 {
  width: 12.5%; }

/* 1/8 */
.t15 {
  width: 15%; }

.t20 {
  width: 20%; }

.t25 {
  width: 25%; }

/* 1/4 */
.t30 {
  width: 30%; }

.t33 {
  width: 33.333%; }

/* 1/3 */
.t35 {
  width: 35%; }

.t37 {
  width: 37.5%; }

/* 3/8 */
.t40 {
  width: 40%; }

.t45 {
  width: 45%; }

.t50 {
  width: 50%; }

/* 1/2 */
.t55 {
  width: 55%; }

.t60 {
  width: 60%; }

.t62 {
  width: 62.5%; }

/* 5/8 */
.t65 {
  width: 65%; }

.t66 {
  width: 66.666%; }

/* 2/3 */
.t70 {
  width: 70%; }

.t75 {
  width: 75%; }

/* 3/4*/
.t80 {
  width: 80%; }

.t85 {
  width: 85%; }

.t87 {
  width: 87.5%; }

/* 7/8 */
.t90 {
  width: 90%; }

.t95 {
  width: 95%; }

/**
 * Bordered tables
 */
.table--bordered th,
.table--bordered td {
  border: 1px solid #cccccc; }
  .table--bordered th:empty,
  .table--bordered td:empty {
    border: none; }
.table--bordered thead tr:last-child th {
  border-bottom-width: 2px; }
.table--bordered tbody tr th:last-of-type {
  border-right-width: 2px; }

/**
 * Striped tables
 */
.table--striped tbody tr:nth-of-type(odd) {
  background-color: #ffc;
  /* Override this color in your theme stylesheet */ }

/**
 * Data table
 */
.table--data {
  font: 12px/1.5 sans-serif; }

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
/**
 *
 * Demo: jsfiddle.net/inuitcss/MhHHU
 *
 */
fieldset {
  padding: 24px; }

/**
 * Text inputs
 *
 * Instead of a `[type]` selector for each kind of form input, we just use a
 * class to target any/every one, e.g.:
   <input type=text class=text-input>
   <input type=email class=text-input>
   <input type=password class=text-input>
 *
 */
.text-input,
textarea {
  /**
   * Style these via your theme stylesheet.
   */ }

/**
 * Group sets of form fields in a list, e.g.:
 *
   <ul class=form-fields>
       <li>
           <label />
           <input />
       </li>
       <li>
           <label />
           <select />
       </li>
       <li>
           <label />
           <input />
       </li>
   </ul>
 *
 */
.form-fields {
  list-style: none;
  margin: 0; }

.form-fields > li:last-child {
  margin-bottom: 0; }

/**
 * Labels
 *
 * Define a `.label` class as well as a `label` element. This means we can apply
 * label-like styling to meta-labels for groups of options where a `label`
 * element is not suitable, e.g.:
 *
   <li>
       <span class=label>Select an option below:</span>
       <ul class="multi-list  four-cols">
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
label,
.label {
  display: block; }

/**
 * Extra help text in `label`s, e.g.:
 *
   <label>Card number <small class=additional>No spaces</small></label>
 *
 */
.additional {
  display: block;
  font-weight: normal; }

/*
 * Groups of checkboxes and radios, e.g.:
 *
   <li>
       <ul class=check-list>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
.check-list {
  list-style: none;
  margin: 0; }

/*
 * Labels in check-lists
 */
.check-label,
.check-list label,
.check-list .label {
  display: inline-block; }

/**
 * Spoken forms are for forms that read like spoken word, e.g.:
 *
   <li class=spoken-form>
       Hello, my <label for=spoken-name>name</label> is
       <input type=text class=text-input id=spoken-name>. My home
       <label for=country>country</label> is
       <select id=country>
           <option>UK</option>
           <option>US</option>
           <option>Other</option>
       </select>
   </li>
 *
 */
.spoken-form label {
  display: inline-block;
  font: inherit; }

/**
 * Extra help text displayed after a field when that field is in focus, e.g.:
 *
   <label for=email>Email:</label>
   <input type=email class=text-input id=email>
   <small class=extra-help>.edu emails only</small>
 *
 * We leave the help text in the document flow and merely set it to
 * `visibility:hidden;`. This means that it won’t interfere with anything once
 * it reappears.
 *
 */
/*small*/
.extra-help {
  display: inline-block;
  visibility: hidden; }

.text-input:active + .extra-help,
.text-input:focus + .extra-help {
  visibility: visible; }

/*------------------------------------*\
    $GRIDS
\*------------------------------------*/
/**
 * Fluid and nestable grid system, e.g.:
 *
   <div class="grid">

       <div class="grid__item  one-third">
           <p>One third grid</p>
       </div><!--

    --><div class="grid__item  two-thirds">
           <p>Two thirds grid</p>
       </div><!--

    --><div class="grid__item  one-half">
           <p>One half grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div>

   </div>
 *
 * Demo: jsfiddle.net/inuitcss/CLYUC
 *
 */
/**
 * Grid wrapper
 */
.grid {
  margin-left: -24px;
  list-style: none;
  margin-bottom: 0; }

/**
 * Very infrequently occuring grid wrappers as children of grid wrappers.
 */
.grid > .grid {
  margin-left: 0; }

/**
 * Grid
 */
.grid__item {
  display: inline-block;
  width: 100%;
  padding-left: 24px;
  vertical-align: top; }

/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Sizes in human readable format. These are used in conjunction with other
 * objects and abstractions found in inuit.css, most commonly the grid system
 * and faux flexbox.
 *
 * We have a mixin to generate our widths and their breakpoint-specific
 * variations.
 */
/**
* Whole
*/
.one-whole {
  width: 100%; }

/**
* Halves
*/
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%; }

/**
* Thirds
*/
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%; }

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%; }

/**
* Quarters
*/
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%; }

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%; }

/**
* Fifths
*/
.one-fifth, .two-tenths {
  width: 20%; }

.two-fifths, .four-tenths {
  width: 40%; }

.three-fifths, .six-tenths {
  width: 60%; }

.four-fifths, .eight-tenths {
  width: 80%; }

/**
* Sixths
*/
.one-sixth, .two-twelfths {
  width: 16.666%; }

.five-sixths, .ten-twelfths {
  width: 83.333%; }

/**
* Eighths
*/
.one-eighth {
  width: 12.5%; }

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

/**
* Tenths
*/
.one-tenth {
  width: 10%; }

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

/**
* Twelfths
*/
.one-twelfth {
  width: 8.333%; }

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

/**
 * If you have set `$responsive` to ‘true’ in `_vars.scss` then you now have
 * access to these classes. You can define at which breakpoint you’d like an
 * element to be a certain size, e.g.:
 *
 * `<div class="g  one-quarter  lap-one-half  palm-one-whole"> ... </div>`
 *
 * This would create a `div` that, at ‘desktop’ sizes, takes up a quarter of the
 * horizontal space, a half of that space at ‘tablet’ sizes, and goes full width
 * at ‘mobile’ sizes.
 *
 * Demo: jsfiddle.net/inuitcss/WS4Ge
 *
 */
@media only screen and (max-width: 480px) {
  /**
  * Whole
  */
  .palm-one-whole {
    width: 100%; }

  /**
  * Halves
  */
  .palm-one-half, .palm-two-quarters, .palm-three-sixths, .palm-four-eighths, .palm-five-tenths, .palm-six-twelfths {
    width: 50%; }

  /**
  * Thirds
  */
  .palm-one-third, .palm-two-sixths, .palm-four-twelfths {
    width: 33.333%; }

  .palm-two-thirds, .palm-four-sixths, .palm-eight-twelfths {
    width: 66.666%; }

  /**
  * Quarters
  */
  .palm-one-quarter, .palm-two-eighths, .palm-three-twelfths {
    width: 25%; }

  .palm-three-quarters, .palm-six-eighths, .palm-nine-twelfths {
    width: 75%; }

  /**
  * Fifths
  */
  .palm-one-fifth, .palm-two-tenths {
    width: 20%; }

  .palm-two-fifths, .palm-four-tenths {
    width: 40%; }

  .palm-three-fifths, .palm-six-tenths {
    width: 60%; }

  .palm-four-fifths, .palm-eight-tenths {
    width: 80%; }

  /**
  * Sixths
  */
  .palm-one-sixth, .palm-two-twelfths {
    width: 16.666%; }

  .palm-five-sixths, .palm-ten-twelfths {
    width: 83.333%; }

  /**
  * Eighths
  */
  .palm-one-eighth {
    width: 12.5%; }

  .palm-three-eighths {
    width: 37.5%; }

  .palm-five-eighths {
    width: 62.5%; }

  .palm-seven-eighths {
    width: 87.5%; }

  /**
  * Tenths
  */
  .palm-one-tenth {
    width: 10%; }

  .palm-three-tenths {
    width: 30%; }

  .palm-seven-tenths {
    width: 70%; }

  .palm-nine-tenths {
    width: 90%; }

  /**
  * Twelfths
  */
  .palm-one-twelfth {
    width: 8.333%; }

  .palm-five-twelfths {
    width: 41.666%; }

  .palm-seven-twelfths {
    width: 58.333%; }

  .palm-eleven-twelfths {
    width: 91.666%; } }
@media only screen and (min-width: 481px) and (max-width: 1023px) {
  /**
  * Whole
  */
  .lap-one-whole {
    width: 100%; }

  /**
  * Halves
  */
  .lap-one-half, .lap-two-quarters, .lap-three-sixths, .lap-four-eighths, .lap-five-tenths, .lap-six-twelfths {
    width: 50%; }

  /**
  * Thirds
  */
  .lap-one-third, .lap-two-sixths, .lap-four-twelfths {
    width: 33.333%; }

  .lap-two-thirds, .lap-four-sixths, .lap-eight-twelfths {
    width: 66.666%; }

  /**
  * Quarters
  */
  .lap-one-quarter, .lap-two-eighths, .lap-three-twelfths {
    width: 25%; }

  .lap-three-quarters, .lap-six-eighths, .lap-nine-twelfths {
    width: 75%; }

  /**
  * Fifths
  */
  .lap-one-fifth, .lap-two-tenths {
    width: 20%; }

  .lap-two-fifths, .lap-four-tenths {
    width: 40%; }

  .lap-three-fifths, .lap-six-tenths {
    width: 60%; }

  .lap-four-fifths, .lap-eight-tenths {
    width: 80%; }

  /**
  * Sixths
  */
  .lap-one-sixth, .lap-two-twelfths {
    width: 16.666%; }

  .lap-five-sixths, .lap-ten-twelfths {
    width: 83.333%; }

  /**
  * Eighths
  */
  .lap-one-eighth {
    width: 12.5%; }

  .lap-three-eighths {
    width: 37.5%; }

  .lap-five-eighths {
    width: 62.5%; }

  .lap-seven-eighths {
    width: 87.5%; }

  /**
  * Tenths
  */
  .lap-one-tenth {
    width: 10%; }

  .lap-three-tenths {
    width: 30%; }

  .lap-seven-tenths {
    width: 70%; }

  .lap-nine-tenths {
    width: 90%; }

  /**
  * Twelfths
  */
  .lap-one-twelfth {
    width: 8.333%; }

  .lap-five-twelfths {
    width: 41.666%; }

  .lap-seven-twelfths {
    width: 58.333%; }

  .lap-eleven-twelfths {
    width: 91.666%; } }
@media only screen and (min-width: 481px) {
  /**
  * Whole
  */
  .lap-and-up-one-whole {
    width: 100%; }

  /**
  * Halves
  */
  .lap-and-up-one-half, .lap-and-up-two-quarters, .lap-and-up-three-sixths, .lap-and-up-four-eighths, .lap-and-up-five-tenths, .lap-and-up-six-twelfths {
    width: 50%; }

  /**
  * Thirds
  */
  .lap-and-up-one-third, .lap-and-up-two-sixths, .lap-and-up-four-twelfths {
    width: 33.333%; }

  .lap-and-up-two-thirds, .lap-and-up-four-sixths, .lap-and-up-eight-twelfths {
    width: 66.666%; }

  /**
  * Quarters
  */
  .lap-and-up-one-quarter, .lap-and-up-two-eighths, .lap-and-up-three-twelfths {
    width: 25%; }

  .lap-and-up-three-quarters, .lap-and-up-six-eighths, .lap-and-up-nine-twelfths {
    width: 75%; }

  /**
  * Fifths
  */
  .lap-and-up-one-fifth, .lap-and-up-two-tenths {
    width: 20%; }

  .lap-and-up-two-fifths, .lap-and-up-four-tenths {
    width: 40%; }

  .lap-and-up-three-fifths, .lap-and-up-six-tenths {
    width: 60%; }

  .lap-and-up-four-fifths, .lap-and-up-eight-tenths {
    width: 80%; }

  /**
  * Sixths
  */
  .lap-and-up-one-sixth, .lap-and-up-two-twelfths {
    width: 16.666%; }

  .lap-and-up-five-sixths, .lap-and-up-ten-twelfths {
    width: 83.333%; }

  /**
  * Eighths
  */
  .lap-and-up-one-eighth {
    width: 12.5%; }

  .lap-and-up-three-eighths {
    width: 37.5%; }

  .lap-and-up-five-eighths {
    width: 62.5%; }

  .lap-and-up-seven-eighths {
    width: 87.5%; }

  /**
  * Tenths
  */
  .lap-and-up-one-tenth {
    width: 10%; }

  .lap-and-up-three-tenths {
    width: 30%; }

  .lap-and-up-seven-tenths {
    width: 70%; }

  .lap-and-up-nine-tenths {
    width: 90%; }

  /**
  * Twelfths
  */
  .lap-and-up-one-twelfth {
    width: 8.333%; }

  .lap-and-up-five-twelfths {
    width: 41.666%; }

  .lap-and-up-seven-twelfths {
    width: 58.333%; }

  .lap-and-up-eleven-twelfths {
    width: 91.666%; } }
@media only screen and (max-width: 1023px) {
  /**
  * Whole
  */
  .portable-one-whole {
    width: 100%; }

  /**
  * Halves
  */
  .portable-one-half, .portable-two-quarters, .portable-three-sixths, .portable-four-eighths, .portable-five-tenths, .portable-six-twelfths {
    width: 50%; }

  /**
  * Thirds
  */
  .portable-one-third, .portable-two-sixths, .portable-four-twelfths {
    width: 33.333%; }

  .portable-two-thirds, .portable-four-sixths, .portable-eight-twelfths {
    width: 66.666%; }

  /**
  * Quarters
  */
  .portable-one-quarter, .portable-two-eighths, .portable-three-twelfths {
    width: 25%; }

  .portable-three-quarters, .portable-six-eighths, .portable-nine-twelfths {
    width: 75%; }

  /**
  * Fifths
  */
  .portable-one-fifth, .portable-two-tenths {
    width: 20%; }

  .portable-two-fifths, .portable-four-tenths {
    width: 40%; }

  .portable-three-fifths, .portable-six-tenths {
    width: 60%; }

  .portable-four-fifths, .portable-eight-tenths {
    width: 80%; }

  /**
  * Sixths
  */
  .portable-one-sixth, .portable-two-twelfths {
    width: 16.666%; }

  .portable-five-sixths, .portable-ten-twelfths {
    width: 83.333%; }

  /**
  * Eighths
  */
  .portable-one-eighth {
    width: 12.5%; }

  .portable-three-eighths {
    width: 37.5%; }

  .portable-five-eighths {
    width: 62.5%; }

  .portable-seven-eighths {
    width: 87.5%; }

  /**
  * Tenths
  */
  .portable-one-tenth {
    width: 10%; }

  .portable-three-tenths {
    width: 30%; }

  .portable-seven-tenths {
    width: 70%; }

  .portable-nine-tenths {
    width: 90%; }

  /**
  * Twelfths
  */
  .portable-one-twelfth {
    width: 8.333%; }

  .portable-five-twelfths {
    width: 41.666%; }

  .portable-seven-twelfths {
    width: 58.333%; }

  .portable-eleven-twelfths {
    width: 91.666%; } }
@media only screen and (min-width: 1024px) {
  /**
  * Whole
  */
  .desk-one-whole {
    width: 100%; }

  /**
  * Halves
  */
  .desk-one-half, .desk-two-quarters, .desk-three-sixths, .desk-four-eighths, .desk-five-tenths, .desk-six-twelfths {
    width: 50%; }

  /**
  * Thirds
  */
  .desk-one-third, .desk-two-sixths, .desk-four-twelfths {
    width: 33.333%; }

  .desk-two-thirds, .desk-four-sixths, .desk-eight-twelfths {
    width: 66.666%; }

  /**
  * Quarters
  */
  .desk-one-quarter, .desk-two-eighths, .desk-three-twelfths {
    width: 25%; }

  .desk-three-quarters, .desk-six-eighths, .desk-nine-twelfths {
    width: 75%; }

  /**
  * Fifths
  */
  .desk-one-fifth, .desk-two-tenths {
    width: 20%; }

  .desk-two-fifths, .desk-four-tenths {
    width: 40%; }

  .desk-three-fifths, .desk-six-tenths {
    width: 60%; }

  .desk-four-fifths, .desk-eight-tenths {
    width: 80%; }

  /**
  * Sixths
  */
  .desk-one-sixth, .desk-two-twelfths {
    width: 16.666%; }

  .desk-five-sixths, .desk-ten-twelfths {
    width: 83.333%; }

  /**
  * Eighths
  */
  .desk-one-eighth {
    width: 12.5%; }

  .desk-three-eighths {
    width: 37.5%; }

  .desk-five-eighths {
    width: 62.5%; }

  .desk-seven-eighths {
    width: 87.5%; }

  /**
  * Tenths
  */
  .desk-one-tenth {
    width: 10%; }

  .desk-three-tenths {
    width: 30%; }

  .desk-seven-tenths {
    width: 70%; }

  .desk-nine-tenths {
    width: 90%; }

  /**
  * Twelfths
  */
  .desk-one-twelfth {
    width: 8.333%; }

  .desk-five-twelfths {
    width: 41.666%; }

  .desk-seven-twelfths {
    width: 58.333%; }

  .desk-eleven-twelfths {
    width: 91.666%; } }
/**
 * If you have set the additional `$responsive-extra` variable to ‘true’ in
 * `_vars.scss` then you now have access to the following class available to
 * accomodate much larger screen resolutions.
 */
/* endif */
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * `.brand` is a quick and simple way to apply your brand face and/or color to
 * any element using a handy helper class.
 */
.brand {
  font-family: "Helvetica Neue", sans-serif!important;
  color: #4a8ec2!important; }

.brand-face {
  font-family: "Helvetica Neue", sans-serif!important; }

.brand-color,
.brand-colour {
  color: #4a8ec2!important; }

/*------------------------------------*\
    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesn’t already have a class to which you could apply this
 * styling, e.g. if you need to float `.main-nav` left then add `float:left;` to
 * that ruleset as opposed to adding the `.float--left` class to the markup.
 *
 * A lot of these classes carry `!important` as you will always want them to win
 * out over other selectors.
 */
/**
 * Add/remove floats
 */
.float--right {
  float: right !important; }

.float--left {
  float: left !important; }

.float--none {
  float: none !important; }

/**
 * Text alignment
 */
.text--left {
  text-align: left !important; }

.text--center {
  text-align: center !important; }

.text--right {
  text-align: right !important; }

/**
 * Font weights
 */
.weight--light {
  font-weight: 300 !important; }

.weight--normal {
  font-weight: 400 !important; }

.weight--semibold {
  font-weight: 600 !important; }

/**
 * Add/remove margins
 */
.push {
  margin: 24px !important; }

.push--top {
  margin-top: 24px !important; }

.push--right {
  margin-right: 24px !important; }

.push--bottom {
  margin-bottom: 24px !important; }

.push--left {
  margin-left: 24px !important; }

.push--ends {
  margin-top: 24px !important;
  margin-bottom: 24px !important; }

.push--sides {
  margin-right: 24px !important;
  margin-left: 24px !important; }

.push-half {
  margin: 12px !important; }

.push-half--top {
  margin-top: 12px !important; }

.push-half--right {
  margin-right: 12px !important; }

.push-half--bottom {
  margin-bottom: 12px !important; }

.push-half--left {
  margin-left: 12px !important; }

.push-half--ends {
  margin-top: 12px !important;
  margin-bottom: 12px !important; }

.push-half--sides {
  margin-right: 12px !important;
  margin-left: 12px !important; }

.flush {
  margin: 0 !important; }

.flush--top {
  margin-top: 0 !important; }

.flush--right {
  margin-right: 0 !important; }

.flush--bottom {
  margin-bottom: 0 !important; }

.flush--left {
  margin-left: 0 !important; }

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important; }

/**
 * Add/remove paddings
 */
.soft {
  padding: 24px !important; }

.soft--top {
  padding-top: 24px !important; }

.soft--right {
  padding-right: 24px !important; }

.soft--bottom {
  padding-bottom: 24px !important; }

.soft--left {
  padding-left: 24px !important; }

.soft--ends {
  padding-top: 24px !important;
  padding-bottom: 24px !important; }

.soft--sides {
  padding-right: 24px !important;
  padding-left: 24px !important; }

.soft-half {
  padding: 12px !important; }

.soft-half--top {
  padding-top: 12px !important; }

.soft-half--right {
  padding-right: 12px !important; }

.soft-half--bottom {
  padding-bottom: 12px !important; }

.soft-half--left {
  padding-left: 12px !important; }

.soft-half--ends {
  padding-top: 12px !important;
  padding-bottom: 12px !important; }

.soft-half--sides {
  padding-right: 12px !important;
  padding-left: 12px !important; }

.hard {
  padding: 0 !important; }

.hard--top {
  padding-top: 0 !important; }

.hard--right {
  padding-right: 0 !important; }

.hard--bottom {
  padding-bottom: 0 !important; }

.hard--left {
  padding-left: 0 !important; }

.hard--ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.hard--sides {
  padding-right: 0 !important;
  padding-left: 0 !important; }

/**
 * Pull items full width of `.island` parents.
 */
.full-bleed {
  margin-right: -24px !important;
  margin-left: -24px !important; }
  .islet .full-bleed {
    margin-right: -12px !important;
    margin-left: -12px !important; }

/**
 * Add a help cursor to any element that gives the user extra information on
 * `:hover`.
 */
.informative {
  cursor: help !important; }

/**
 * Mute an object by reducing its opacity.
 */
.muted {
  opacity: 0.5 !important;
  filter: alpha(opacity=50) !important; }

/**
 * Align items to the right where they imply progression/movement forward, e.g.:
 *
   <p class=proceed><a href=#>Read more...</a></p>
 *
 */
.proceed {
  text-align: right !important; }

/**
 * Add a right-angled quote to links that imply movement, e.g.:
 *
   <a href=# class=go>Read more</a>
 *
 */
.go:after {
  content: "\00A0" "\00BB" !important; }

/**
 * Apply capital case to an element (usually a `strong`).
 */
.caps {
  text-transform: uppercase !important; }

/**
 * Hide content off-screen without resorting to `display:none;`, also provide
 * breakpoint specific hidden elements.
 */
.accessibility,
.visuallyhidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

@media only screen and (max-width: 480px) {
  .accessibility--palm,
  .visuallyhidden--palm {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 481px) and (max-width: 1023px) {
  .accessibility--lap,
  .visuallyhidden--lap {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 481px) {
  .accessibility--lap-and-up,
  .visuallyhidden--lap-and-up {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (max-width: 1023px) {
  .accessibility--portable,
  .visuallyhidden--portable {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 1024px) {
  .accessibility--desk,
  .visuallyhidden--desk {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
@media only screen and (min-width: 1200px) {
  .accessibility--desk-wide,
  .visuallyhidden--desk-wide {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important; } }
/* endif */
/*
@include new-font-face(SansationLight, Sansation_Light-webfont);
@include new-font-face(SansationRegular, Sansation_Regular-webfont);
*/
/**
 * She’s all yours, cap’n... Begin importing your stuff here.
 */
@font-face {
  font-family: SourceSansProRegular;
  src: url("fonts/sourcesanspro-regular.eot");
  src: url("fonts/sourcesanspro-regular.eot?#iefix") format("embedded-opentype"), url("fonts/sourcesanspro-regular.woff") format("woff"), url("fonts/sourcesanspro-regular.ttf") format("truetype"), url("fonts/sourcesanspro-regular.svg#SourceSansProRegular") format("svg");
  font-weight: normal;
  font-style: normal; }

html {
  font: 14px 'SourceSansProRegular', 'Lucida Sans Unicode','Lucida Sans', Arial, Helvetica, sans-serif;
  background: url(../images/bg-page.jpg) repeat;
  background-color: #e0e0df;
  color: #333; }

body {
  color: #666;
  min-width: 960px;
  background: url(../images/bg-body.jpg) repeat-x 50% 0; }

* {
  font-family: 'SourceSansProRegular', 'Lucida Sans Unicode','Lucida Sans', Arial, Helvetica, sans-serif; }

.wrapper {
  max-width: 960px;
  padding: 0 24px;
  margin: 0 auto; }

.footer {
  margin-bottom: 0; }

a {
  color: #00c6ff;
  outline: none; }
  a:hover {
    text-decoration: none; }

#wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative; }

#header {
  height: 1%;
  overflow: hidden;
  /*padding: 8px 30px 55px 22px;*/
padding: 0 30px 20px 22px;
   }
  #header .logo {
    /*float: left;*/
    /*margin: auto;*/
    /*margin-left: -10px;*/
    background: url(../images/logo-big.png) no-repeat; }

.logo {
  margin: 30px auto 10px auto;
  display: block;
  width: 499px;
  height: 88px;
  text-indent: -9999px;
  overflow: hidden; }
  .logo a {
    display: block;
    height: 100%;
    position: relative; }

#header .baseline{
    width: 440px;
    margin: auto;
    font-size: 28px;
/*    font-size: 28px;*/
    color: #00aeef;
    font-family : "Ubuntu-M", Helvetica, Arial, sans-serif;
}

#nav {
  float: right;
  margin: 0;
  padding: 11px 0 0;
  list-style: none;
  position: relative; }
  #nav li {
    float: left;
    position: relative;
    z-index: 10; }
    #nav li a {
      float: left;
      color: #333;
      font-size: 14px;
      line-height: 21px;
      z-index: 2;
      position: relative;
      padding: 0 10px 3px 11px;
      outline: none;
      text-decoration: none; }
      #nav li a:hover {
        border: none;
        color: #fff; }
    #nav li.current a {
      border: none;
      color: #fff; }
    #nav li.back {
      height: 23px;
      z-index: 1;
      position: absolute; }
      #nav li.back .left {
        background: url(../images/nav-l.png) no-repeat;
        height: 23px;
        overflow: hidden; }
      #nav li.back .right {
        float: right;
        background: url(../images/nav-r.png) no-repeat;
        height: 23px;
        width: 11px;
        margin: 0 0 0 -3px; }

.tools {
  float: right;
  margin: 0;
  padding: 2px 0 0;
  list-style: none;
  display: block;
  height: 40px; }
  .tools li {
    float: left;
    display: inline;
    margin: 0 7px 0 0;
    padding: 7px 0 4px 10px;
    background: url(../images/separator.png) no-repeat;
    line-height: 27px; }
  .tools a {
    float: left;
    overflow: hidden;
    cursor: pointer;
    height: 27px;
    text-decoration: none; }
    .tools a:hover {
      text-decoration: underline; }

.tools .connexion {
  padding: 0 0 0 28px;
  background: url(../images/ico-lock.png) no-repeat;
  color: #333; }
  .tools .connexion:hover {
    color: #00C6FF; }

.auteurs span {
  display: block;
  position: relative;
  top: 5px;
  margin-right: 5px;
  float: left;
  width: 20px;
  height: 20px;
  background-image: url(./images/pictos_ps.png);
  background-position: 0 -204px; }

a.auteurs {
  color: #333; }
  a.auteurs:hover {
    color: #00C6FF; }

.tools .rss {
  text-indent: -9999px;
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  background: url(../images/ico-rss.png) no-repeat; }

.tools li.first {
  background: none; }

#twocolumns {
  width: 1200px;
  height: 991px;
  overflow: hidden;
  margin: 0 0 25px;
  background: url(../images/back-home.png) no-repeat; }
  #twocolumns .holder {
    width: 1200px;
    overflow: hidden;
    /*padding: 61px 0 0;*/
    padding: 0;
    margin: 0 0 0 -18px;
    position: relative; }


  #twocolumns .column-title{
    height: 55px;
    width: 570px;
        float: left;

  }

    #twocolumns .column-title h2{
  font-family: "Ubuntu-B",Helvetica,Arial;
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  margin: 0;
    }

      #twocolumns .column-title h2 a{

  color: #ffffff;

    }

  #twocolumns .column {
    float: left;
    width: 460px;
    display: inline;
    margin: 0 70px;
    text-align: justify;
    line-height: 22px; }

    #twocolumns .column #education {
      height: 143px;
      width:290px;
      margin: 30px auto 30px auto;
  }
    #twocolumns .column #pro {
      height: 62px;
      width:460px;
      margin: 90px auto 50px auto;
  }
 #twocolumns .column #illus {
      height: 214px;
      width:460px;
      margin: 30px auto 20px auto;
  }  

 #twocolumns .column #description-edu p{
  color:#000000;
  font-size: 18px;
  font-weight: bold;
  font-family: "Trebuchet MS",Helvetica,Arial;
  line-height: 26px;
  text-align: left;

 } 

  #twocolumns .column #description-edu ul{
  color:#000000;
  font-size: 18px;
  font-family: "Trebuchet MS",Helvetica,Arial;
  line-height: 26px;
  text-align: left;
  list-style-image: url('../images/orange_flea.png');
  margin: 20px 0 0 13px;
 } 

   #twocolumns .column #description-pro ul{
  color:#000000;
  font-size: 18px;
  font-family: "Trebuchet MS",Helvetica,Arial;
  line-height: 26px;
  text-align: left;
  list-style-image: url('../images/red_flea.png');
  margin: 20px 0 20px 13px;
 } 

 #btn-savoirplus-edu{
  width: 194px;
  height: 41px;
  /*margin: 70px auto 0 auto;*/
  margin: 55px auto 0 auto;
 }

#twocolumns .column #left{
  float: left;
  width: 220px;
} 
#twocolumns .column #right{
  float: right;
  width: 220px;
} 
#twocolumns .column #left p{
    font-size: 16px;
  font-family: "Trebuchet MS",Helvetica,Arial;
  text-align: left;
  line-height: 16px;
}
#twocolumns .column #right p{
    font-size: 16px;
  font-family: "Trebuchet MS",Helvetica,Arial;
    text-align: left;
  line-height: 16px;
}

#twocolumns .column #btn-savoirplus-pro{
  margin: 20px 0 0 0;
}

#twocolumns .column #btn-savoirplus-pro #academie{
  float: left;
}

#twocolumns .column #btn-savoirplus-pro #evolution{
  float: right;
}


.spacer{
  clear: both;
}
}
  #twocolumns h2 {
    margin: 0;
    color: #000;
    font-size: 34px;
    line-height: 36px;
    font-weight: normal;
    text-align: center; }
    #twocolumns h2 a {
      color: #000;
      text-decoration: none; }
      #twocolumns h2 a:hover {
        text-decoration: underline; }
    #twocolumns h2 span {
      color: #00c6ff; }
  #twocolumns p {
    margin: 0; }
  #twocolumns .description {
    font-size: 24px;
    padding: 20px 0 20px 0;
    /*word-spacing: -1px;*/
    line-height: 24px;
    text-align: left; }
  #twocolumns .align-center {
    margin: 0 auto 11px; }

#main {
  width: 912px;
  padding: 15px 0 90px;
  text-align: justify;
  line-height: 22px;
  background: url(../images/bg-main-t.png) no-repeat; }
  #main.inner {
    background: url(../images/bg-main-t2.png) no-repeat; }

.main-t {
  height: 1%;
  padding: 30px 30px 0 62px;
  background: url(../images/bg-main-c.png) repeat-y; }

.main-c {
  width: 100%;
  background: url(../images/bg-main-c2.png) repeat-y; }

.main-b {
  height: 15px;
  overflow: hidden;
  background: url(../images/bg-main-b.png) no-repeat; }

.grey .main-b {
  background: url(../images/bg-main-b2.png) no-repeat; }

.container {
  height: 1%;
  padding: 28px 10px 20px 2px;
  background: url(../images/dotline.gif) no-repeat 2px 0; }

.inner .container {
  background: url(../images/dotline2.gif) no-repeat 2px 0; }

.grey .container {
  padding: 28px 10px 0 2px; }

.ribbon {
  position: absolute;
  top: 101px;
  right: 1px;
  width: 226px;
  height: 162px;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
  background: url(../images/ribbon.png) no-repeat; }

.particuliers {
  position: absolute;
  top: -5px;
  left: 240px;
  width: 226px;
  height: 162px;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
  /*background:url(../images/ribbon.png) no-repeat;*/
  background: url(../images/ribbon2.png) no-repeat; }

.decouvrir {
  background: url(../images/ribbon4.png) no-repeat; }

.align-center {
  display: block;
  margin: 0 auto 7px; }

.align-left {
  float: left; }

.add-box a.align-right {
  position: relative;
  top: 80px;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -moz-box-shadow: 0px 0px 4px #555555;
  -webkit-box-shadow: 0px 0px 4px #555555;
  box-shadow: 0px 0px 4px #555555;
  background-color: #444444;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#222222));
  background-image: -webkit-linear-gradient(top, #444444, #222222);
  background-image: -moz-linear-gradient(top, #444444, #222222);
  background-image: -ms-linear-gradient(top, #444444, #222222);
  background-image: -o-linear-gradient(top, #444444, #222222);
  background-image: linear-gradient(top, #444444, #222222);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#444444', EndColorStr='#222222'); }

.align-right {
  float: right; }

.content-holder {
  height: 1%;
  overflow: hidden;
  padding: 46px 0 30px 62px; }

.flash {
  width: 780px;
  height: 400px;
  margin: 0; }
  .flash img {
    display: block; }

.content-frame {
  height: 1%;
  padding: 60px 0 16px 60px;
  margin: -13px 0 0;
  position: relative;
  background: url(../images/bg-aside.gif) repeat-y 599px 0; }

.main-column {
  float: left;
  width: 480px;
  line-height: 24px; }
  .main-column .align-center {
    margin: 0 auto 6px; }
  .main-column p {
    margin: 0 0 24px; }
  .main-column .text-holder {
    padding: 40px 0 10px; }
    .main-column .text-holder p {
      margin: 0; }

#main .main-column h2 {
  margin: 0 0 31px;
  font-size: 26px;
  line-height: 36px; }

.main-column
.main-column
.main-column .text-holder
.aside img {
  position: absolute;
  bottom: -6px;
  right: -37px; }

* html .aside img {
  bottom: -7px; }

.roll {
  padding: 12px 0 0;
  margin: 0 0 -7px; }

.add-box {
  height: 1%;
  overflow: hidden;
  padding: 51px 60px 10px; }
  .add-box.pf {
    text-align: left; }
  .add-box .entry {
    height: 1%;
    overflow: hidden;
    line-height: 24px; }
  .add-box p {
    height: 1%;
    overflow: hidden;
    display: block;
    margin: 0 0 24px; }
  .add-box .more {
    float: right; }
  .add-box .description {
    padding: 0 0 24px; }

.add-box .list {
  color: #888;
  font-size: 13px;
  padding: 0 0 16px;
  text-align: left; }

.roll .add-box .entry {
  padding: 8px 0 0; }

.roll .add-box p {
  color: #888;
  font-size: 13px;
  line-height: 24px; }

#main .middle .row p {
  margin: 0 0 24px; }

#main .middle p {
  line-height: 24px;
  margin: 0 0 40px; }

.roll .add-box .list {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  padding: 0 0 26px; }

#main .add-box h3 {
  margin: 0 0 3px;
  color: #000;
  font-size: 26px;
  line-height: 28px; }
  #main .add-box h3 a {
    color: #000;
    text-decoration: none; }
    #main .add-box h3 a:hover {
      text-decoration: underline; }
  #main .add-box h3 span {
    color: #00c6ff; }
#main .add-box.elearn h3 {
  margin: 0 0 75px;
  color: #000;
  font-size: 26px;
  line-height: 28px; }

.add-box .image {
  float: left;
  width: 390px;
  height: 293px;
  margin: 6px 30px 0 0;
  overflow: hidden;
  position: relative; }

.add-box .image .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  height: 293px;
  background: url(../images/shadow03.png) no-repeat; }

#main .info .add-box h3 {
  margin: 0 0 26px; }

#main .info .add-box h3.acc {
  margin: 0 0 30px 0px; }

#main .info2 .add-box h3 {
  line-height: 36px;
  margin: 0 300px 71px 0;
  text-align: left; }

#main .info2 .roll .add-box h3 {
  margin: 0 300px 63px 0; }

.add-box .align-left {
  margin: 6px 30px 0 0; }

.info .add-box .align-right {
  margin: 0 0 0 44px; }

.info .add-box .align-left {
  margin: 0px 44px 0 0; }

.info2 .add-box {
  padding: 47px 60px 3px; }

.info2 .roll .add-box {
  padding: 36px 60px 0; }

.right-side {
  margin: 16px 0 -5px;
  padding: 71px 60px 0;
  background: url(../images/border.gif) no-repeat; }

.right-side .image {
  float: right;
  margin: 6px 0 0 28px; }

* html .right-side .image {
  margin: 6px 0 0 25px; }

.roll .add-box .image-holder {
  margin: 0 55px 0 5px; }

.add-box .image-holder {
  width: 240px;
  float: left;
  position: relative;
  margin: 8px 55px 0 5px;
  display: inline; }

.add-box .image-holder .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 180px;
  background: url(../images/shadow02.png) no-repeat; }

.add-box .right2 {
  float: right;
  display: inline;
  margin: 9px 0 0 60px; }

.roll .add-box .right2 {
  margin: 0 5px 0 55px; }

.columns-holder {
  width: 840px;
  overflow: hidden;
  margin: 0 -60px 54px;
  padding: 7px 30px 34px;
  background: url(../images/border.gif) no-repeat 0 100%; }

.middle {
  padding: 7px 30px 11px; }

.add-box .row .align-left {
  margin: 0; }

.row {
  height: 1%;
  padding: 58px 30px 2px;
  overflow: hidden;
  font-size: 16px; }

.row .entry {
  padding: 48px 0 0; }

.row .txt {
  padding: 48px 0 0 12px; }

.row .num {
  color: #00c6ff;
  font-size: 44px;
  line-height: 46px;
  float: left;
  padding: 0 4px 0 0;
  letter-spacing: -1px; }

.row p {
  height: 1%;
  overflow: hidden; }

.add-box .count {
  color: #00c6ff;
  font-size: 24px; }

.add-column {
  float: left;
  width: 360px;
  display: inline;
  margin: 0 30px; }
  .add-column .box {
    width: 100%;
    overflow: hidden;
    margin: 54px 0 0; }
  .add-column .align-left {
    margin: 4px 13px 0 0; }
  .add-column .align-right {
    margin: 4px 0 0 13px; }
  .add-column h4 {
    margin: 0 0 22px;
    color: #010101;
    font-size: 17px;
    line-height: 20px;
    font-weight: normal;
    padding: 0 0 0 10px;
    text-align: left;
    background: url(../images/bullet2.gif) no-repeat 0 50%; }
    .add-column h4 a {
      color: #010101;
      text-decoration: none; }
      .add-column h4 a:hover {
        text-decoration: underline; }
  .add-column h5 {
    margin: 46px 0 3px;
    font-size: 24px;
    line-height: 26px; }
    .add-column h5 span {
      color: #00c6ff; }
    .add-column h5 a {
      color: #000;
      text-decoration: none; }
      .add-column h5 a:hover {
        text-decoration: underline; }
  .add-column .entry {
    color: #888;
    font-size: 13px;
    line-height: 20px; }
  .add-column .description {
    color: #666;
    font-size: 18px;
    line-height: 20px;
    padding: 0 0 27px; }
  .add-column .cost {
    color: #000;
    margin: -17px 0 0;
    display: block;
    text-align: right;
    font-size: 20px;
    line-height: 22px;
    font-weight: normal; }

.wrap {
  width: 100%;
  overflow: hidden;
  margin: 0 0 47px; }

#content {
  float: left;
  width: 480px;
  padding: 16px 0 0; }
  #content strong {
    margin: 0 0 10px 0; }
  #content p {
    margin: 50px 0 22px; }

#main .heading h2 {
  font-size: 33px;
  line-height: 35px; }
#main h2 {
  margin: 0 0 3px;
  color: #000;
  font-size: 34px;
  line-height: 36px;
  font-weight: normal;
  text-align: left; }
  #main h2 span {
    color: #00c6ff; }
#main h3 {
  margin: 0;
  color: #000;
  font-size: 20px;
  line-height: 22px;
  font-weight: normal; }

.description {
  color: #888;
  display: block;
  padding: 0 0 5px;
  font-size: 14px;
  font-weight: normal;
  text-align: left; }

.content-holder .description {
  padding: 0 0 19px; }

.text-holder {
  color: #666;
  font-size: 14px;
  line-height: 24px;
  padding: 40px 0 20px; }

#content blockquote {
  color: #333;
  margin: 44px 0 0; }
#content q {
  font-style: italic;
  quotes: none; }
  #content q:before {
    content: ""; }
  #content q:q:after {
    content: ""; }
#content cite {
  font-size: 12px;
  color: #888;
  display: block;
  text-align: right;
  font-style: normal;
  padding: 1px 0 0; }

.list {
  margin: 0;
  padding: 0;
  list-style: none; }
  .list li {
    text-indent: 16px;
    word-spacing: -1px;
    background: url(../images/bullet.gif) no-repeat 0 9px; }
  .list span {
    color: #00c6ff; }

.inner .columns {
  padding: 37px 0 21px;
  background: url(../images/border.gif) no-repeat; }

.columns {
  width: 100%;
  overflow: hidden;
  background: url(../images/bg-columns.gif) repeat-y 299px 0; }
  .columns .holder {
    background: url(../images/bg-columns-t.gif) no-repeat 299px 0; }
  .columns .frame {
    height: 1%;
    overflow: hidden;
    padding: 12px 0 20px;
    background: url(../images/bg-columns-b.gif) no-repeat 299px 100%; }
  .columns .column {
    float: left;
    width: 240px;
    margin: 0 30px;
    display: inline;
    font-size: 13px;
    line-height: 20px; }
  .columns .align-left {
    margin: 0 6px 0 0; }
  .columns .title {
    width: 100%;
    overflow: hidden;
    margin: 0 0 4px; }
    .columns .title .entry {
      height: 1%;
      overflow: hidden; }
      .columns .title .entry strong {
        display: block;
        color: #888;
        font-size: 15px;
        line-height: 18px;
        font-weight: normal; }
  .columns p {

    margin: 0;
    word-spacing: -1px; }
  .columns h3 {
    height: 1%;
    overflow: hidden;
    display: block;
    margin: 19px 0 0; }
    .columns h3 a {
      color: #000;
      text-decoration: none; }
      .columns h3 a:hover {
        text-decoration: underline; }
  .columns .entry h3 {
    margin: 9px 0 0;
    overflow: visible; }
  .columns dl {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    padding: 7px 0 3px; }
    .columns dl dt {
      color: #010101; }
    .columns dl dd {
      margin: 0;
      display: block;
      color: #666; }
  .columns .image {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 0 16px; }
    .columns .image img {
      display: block; }
    .columns .image .shadow {
      position: absolute;
      top: 0;
      left: 0;
      width: 240px;
      height: 180px;
      background: url(../images/shadow02.png) no-repeat; }
  .columns h4 {
    margin: 0 0 27px;
    color: #010101;
    font-size: 20px;
    line-height: 22px;
    font-weight: normal; }
    .columns h4 a {
      color: #010101;
      text-decoration: none; }
      .columns h4 a:hover {
        text-decoration: underline; }

.twocolumns {
  width: 100%;
  overflow: hidden;
  background: url(../images/bg-twocolumns.gif) repeat-y 450px 0; }
  .twocolumns .holder {
    background: url(../images/bg-twocolumns-t.gif) no-repeat 450px 0; }
  .twocolumns .frame {
    height: 1%;
    overflow: hidden;
    padding: 51px 0 3px 20px;
    background: url(../images/bg-twocolumns-b.gif) no-repeat 450px 100%; }
  .twocolumns .column {
    float: left;
    width: 380px;
    margin: 0 0 0 40px;
    display: inline; }
  .twocolumns .entry {
    height: 1%;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #888;
    padding: 0 20px 0 0; }
    .twocolumns .entry p {
      margin: 0; }
  .twocolumns .align-left {
    margin: 5px 10px 0 0; }
  .twocolumns h3 {
    font-size: 26px;
    line-height: 28px;
    margin: 0 0 1px; }
    .twocolumns h3 span {
      color: #00c6ff; }
  .twocolumns .title {
    width: 100%;
    overflow: hidden;
    margin: 0 0 29px; }
  .twocolumns .boxes {
    width: 100%;
    overflow: hidden; }
  .twocolumns .sub-column {
    float: left;
    width: 160px;
    display: inline;
    margin: 0 30px 0 0; }
  .twocolumns .box {
    width: 100%;
    overflow: hidden;
    color: #666;
    font-size: 13px;
    line-height: 20px;
    padding: 14px 0; }
    .twocolumns .box p {
      margin: 0; }
  .twocolumns h4 {
    margin: 0 0 2px;
    color: #000;
    font-size: 18px;
    line-height: 20px;
    padding: 0 0 0 11px;
    font-weight: normal;
    background: url(../images/bullet2.gif) no-repeat 0 50%; }

.bottom {
  margin: -9px 0 0; }
  .bottom .column {
    width: 360px;
    color: #888;
    margin: 0 20px 0 40px; }
    .bottom .column p {
      margin: 0;
      font-size: 13px;
      line-height: 24px; }
  .bottom .frame {
    padding: 0 0 18px 20px; }
  .bottom h3 {
    margin: 0 0 9px;
    font-size: 24px;
    line-height: 26px; }
    .bottom h3 a {
      color: #000;
      text-decoration: none; }
      .bottom h3 a:hover {
        text-decoration: underline; }
  .bottom .list {
    font-size: 13px;
    line-height: 24px; }

.column p {
    line-height: 26px; 
    font-size: 22px;
    font-family : "Ubuntu-M", Helvetica, Arial, sans-serif;
    color: #979797;
    text-align: left;
}

.block {
  width: 100%;
  overflow: hidden;
  padding: 5px 0 29px; }
  .block .holder {
    width: 100%;
    overflow: hidden; }

.section {
  height: 1%;
  margin: -3px 0 0;
  overflow: hidden;
  padding: 35px 60px 14px;
  line-height: 24px;
  background: url(../images/border.gif) no-repeat; }
  .section p {
    margin: 0; }
  .section .entry {
    height: 1%;
    overflow: hidden; }
  .section .more {
    float: right; }
  .section .link {
    margin: 22px 0 0; }
  .section .image {
    float: left;
    width: 240px;
    position: relative;
    margin: 8px 60px 0 0; }
  .section img {
    margin: 0 auto;
    display: block; }

* html .section .image {
  margin: 8px 57px 0 0; }

.section .image img {
  display: block; }

.section .image .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 180px;
  background: url(../images/shadow02.png) no-repeat; }

#main .section h3 {
  margin: 0 0 51px;
  color: #000;
  font-size: 18px;
  line-height: 20px; }

#main .section h3 a {
  color: #000;
  text-decoration: none; }

#main .section h3 a:hover {
  text-decoration: underline; }

#sidebar {
  float: right;
  width: 240px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 22px; }

#sidebar .box {
  width: 100%;
  overflow: hidden;
  padding: 22px 0 5px; }

#sidebar .image-holder {
  width: 256px;
  margin: 0 -8px;
  overflow: hidden; }

#sidebar .image {
  width: 100%;
  padding: 6px 0 0;
  overflow: hidden;
  position: relative; }

#sidebar .image-holder img,
#sidebar .image img {
  display: block; }

#sidebar .shadow {
  position: absolute;
  top: 6px;
  left: 0;
  width: 240px;
  height: 180px;
  background: url(../images/shadow01.png) no-repeat; }

#sidebar h3 {
  margin: 0 0 20px;
  color: #000;
  font-size: 27px;
  line-height: 29px;
  font-weight: normal; }

#sidebar h3 a {
  color: #000;
  text-decoration: none; }

#sidebar h3 a:hover {
  text-decoration: underline; }

#sidebar p {
  width: 100%;
  overflow: hidden;
  margin: 0 0 8px;
  word-spacing: -1px; }

#sidebar .more {
  float: right; }

.promo {
  width: 987px;
  overflow: hidden;
  margin: 0 0 51px -73px;
  padding: 0;
  list-style: none; }

.promo li {
  float: left;
  display: inline;
  margin: 0 0 0 75px; }

.promo a {
  float: left; }

.promo img {
  display: block;
  vertical-align: top; }

#footer {
  width: 100%;
  overflow: hidden;
  background: url(../images/bg-footer.gif) repeat-x; }
  #footer .holder {
    width: 912px;
    margin: 0 auto;
    padding: 33px 16px 10px 0;
    font-size: 12px;
    color: #888;
    background: url(../images/bg-footer-c.gif) no-repeat 50% 0; }
  #footer .logo {
    margin: 0 0 28px 337px;
    background: url(../images/logo2.png) no-repeat; }
  #footer address {
    padding: 0;
    font-style: normal;
    text-align: center; }
    #footer address span {
      color: #00c6ff; }

.content-frame:after,
.container:after,
.main-t:after,
.main-c:after {
  height: 0;
  clear: both;
  content: '';
  display: block; }

.cleared {
  clear: both; }

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto; }

a.discret {
  text-decoration: none; }

.hided {
  display: none; }

p.more {
  cursor: pointer;
  text-decoration: underline;
  color: #00c6ff;
  margin: 0px; }

.bleu {
  color: #00c6ff; }

.add-box table {
  width: 100%;
  border-collapse: separate; }

.add-box tr {
  width: 100%; }

.add-box th {
  color: #00C6FF; }

.add-box td {
  border: 1px solid #111;
  text-align: center; }

/* ##### NIVO SLIDER AND ImageFlow Customization ##### */
#slides-wrapper {
  width: 500px;
  height: 320px;
  margin: 0 auto; }
  #slides-wrapper div {
    text-align: center; }

#slides {
  position: relative;
  width: 240px;
  height: 180px; }
  #slides img {
    position: absolute;
    top: 0px;
    left: 0px;
    display: none; }
  #slides a {
    border: 0;
    display: block; }

.pro .nivo-controlNav {
  position: absolute;
  bottom: -20px;
  left: 120px; }

.educ .nivo-controlNav {
  position: absolute;
  bottom: -20px;
  left: 93px; }

.nivo-controlNav a {
  background: url(../images/bullets.png) no-repeat;
  display: block;
  height: 7px;
  text-indent: -9999px;
  width: 6px;
  border: 0;
  margin-right: 4px;
  float: left; }
  .nivo-controlNav a.active {
    background-position: 0 -8px; }

.nivo-directionNav a {
  background: url(../images/arrows.png) no-repeat;
  display: block;
  height: 30px;
  text-indent: -9999px;
  width: 30px; }

a.nivo-prevNav {
  left: 15px; }

a.nivo-nextNav {
  background-position: -30px 0px;
  right: 15px; }

.imageflow .navigation {
  margin-top: 75px; }
.imageflow .caption {
  font-weight: normal; }

a.retour {
  color: #000;
  text-decoration: none; }

a.retour:hover {
  text-decoration: underline;
  color: #00C6FF; }

/* ## History ## */
.container.hide {
  display: none; }

#connectionContainer {
  position: absolute;
  padding: 10px;
  background: #eee;
  z-index: 100; }

#connectionContainer label {
  display: block; }

label {
  margin-top: 8px;
  display: block; }

input, textarea {
  font: 14px 'Lucida Sans Unicode', 'Lucida Sans', Arial, Helvetica, sans-serif; }

#authorSubmit {
  margin-top: 20px; }

#authorSubmit:hover {
  background-color: #aaaaaa; }

#connectionContainer {
  -moz-box-shadow: 0px 0px 10px #555555;
  -webkit-box-shadow: 0px 0px 10px #555555;
  box-shadow: 0px 0px 10px #555555;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
  #connectionContainer input {
    width: 150px; }
    #connectionContainer input[type=submit] {
      margin: 10px 1px;
      border: 1px #444 solid;
      border-bottom-color: #666;
      border-right-color: #666;
      background: #555;
      color: #fff; }
    #connectionContainer input[type=text], #connectionContainer input[type=password] {
      border: 1px #ddd solid;
      border-bottom-color: #efefef;
      border-right-color: #efefef;
      background: #fff;
      color: #555; }

input {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px; }

#loginError {
  line-height: 15px;
  color: #d43;
  font-size: 12px; }
  #loginError.ok {
    color: #aaa; }

.info .add-box .temoignages {
  top: 5px; }

ul.offerGroup {
  margin: 15px 10px; }
  ul.offerGroup h5 {
    margin: 15px;
    text-decoration: underline;
    font-weight: bold; }
  ul.offerGroup ul {
    margin: 20px; }

.details {
  position: absolute;
  background: #fff;
  border: 1px solid #aaa;
  font-size: 12px;
  line-height: 12px; }

ul.offerGroup .details h5,
ul.offerGroup .details ul,
.details li {
  margin: 3px;
  padding: 2px; }

.detailLinks {
  float: right; }

.tarif {
  font-weight: bold; }

ul.ent {
  margin: 5px 10px;
  padding: 0 20px;
  list-style-type: disc; }
  ul.ent ul {
    margin: 5px 0;
    padding: 0 20px;
    list-style-type: circle; }

.button {
  float: left;
  border-top: 1px solid #96d1f8;
  background: #3577c6;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzM1NzdjNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzJhOGFkMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzYjgzY2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #3577c6 0%, #2a8ad3 50%, #3b83cc 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3577c6), color-stop(50%, #2a8ad3), color-stop(100%, #3b83cc));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #3577c6 0%, #2a8ad3 50%, #3b83cc 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #3577c6 0%, #2a8ad3 50%, #3b83cc 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #3577c6 0%, #2a8ad3 50%, #3b83cc 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #3577c6 0%, #2a8ad3 50%, #3b83cc 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3577c6', endColorstr='#3b83cc',GradientType=0 );
  /* IE6-8 */
  padding: 12px 24px;
  margin: 5px;
  height: 68px;
  text-align: center;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  border-radius: 11px;
  -webkit-box-shadow: black 0 1px 1px;
  -moz-box-shadow: black 0 1px 1px;
  box-shadow: black 0 1px 1px;
  vertical-align: middle;
  width: 210px; }

.button:hover {
  border-top-color: #28597a;
  background: #2770c4;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI3NzBjNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzE3ODNkMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMjc3Y2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #2770c4 0%, #1783d1 50%, #2277cc 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2770c4), color-stop(50%, #1783d1), color-stop(100%, #2277cc));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #2770c4 0%, #1783d1 50%, #2277cc 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #2770c4 0%, #1783d1 50%, #2277cc 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #2770c4 0%, #1783d1 50%, #2277cc 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #2770c4 0%, #1783d1 50%, #2277cc 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2770c4', endColorstr='#2277cc',GradientType=0 );
  /* IE6-8 */ }

.button:active {
  border-top-color: #1b435e;
  background: #2770c4;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzI3NzBjNCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzE3ODNkMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMjc3Y2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #2770c4 0%, #1783d1 50%, #2277cc 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2770c4), color-stop(50%, #1783d1), color-stop(100%, #2277cc));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #2770c4 0%, #1783d1 50%, #2277cc 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #2770c4 0%, #1783d1 50%, #2277cc 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #2770c4 0%, #1783d1 50%, #2277cc 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #2770c4 0%, #1783d1 50%, #2277cc 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2770c4', endColorstr='#2277cc',GradientType=0 );
  /* IE6-8 */ }

.button a {
  color: white;
  font-size: 22px;
  font-family: Helvetica, Arial, Sans-Serif;
  text-decoration: none;
  text-shadow: rgba(0, 0, 0, 0.4) 0 3px 0; }
  .button a:hover {
    color: white; }

/* line 90, ../../sass/main.scss */
.wrapper {
  background-color: #fff;
  max-width: 960px;
  padding: 0 24px;
  margin: 0 auto; }

.wrapper2 {
  max-width: 960px;
  padding: 0;
  margin: 0 auto; }

.wrapper2 h2 {
  margin-bottom: 0; }

.grid ul {
  list-style-type: none; }
  .grid ul li {
    background-image: url(../images/puce.png);
    background-repeat: no-repeat;
    background-position: 0px 8px;
    padding-left: 10px; }

#logo {
  height: 73px;
  text-align: center;
  background-image: url(../images/logo_paraschool.png);
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 0 15px 0px; }
  #logo span {
    display: none; }

.main h1 {
  font-weight: normal;
  text-align: center; }

header#header {
  padding: 8px 30px 15px 22px; }
header h1 {
  text-align: center;
  padding-top: 15px;
  margin: 0px auto 10px auto; }

em {
  font-style: normal;
  color: #00C6FF; }

a.tester {
  color: #f47920;
  text-decoration: none; }
  a.tester:hover {
    text-decoration: underline;
    color: #00C6FF; }
  a.tester:active {
    text-decoration: none; }

a.subscribe {
  text-decoration: none; }

a.subscribe:hover .prix {
  text-shadow: 1px 1px 3px #fff; }

#tester {
  font-weight: bold;
  font-size: 23px;
  background: url(../images/image_centrale.png) center center no-repeat;
  height: 400px; }
  #tester p {
    color: #f47920;
    padding-top: 310px;
    text-align: center;
    text-decoration: none; }
  #tester:hover p {
    color: #00C6FF; }
  #tester .testArrow {
    height: 17px;
    width: 26px;
    display: inline-block;
    background: url(../images/fleche_orange_bleu.png) 0 0 no-repeat transparent; }
  #tester:hover .testArrow {
    background-position: 0 -19px; }

.formule {
  margin: 0 auto;
  text-align: center;
  background-image: url(../images/encart.png);
  background-repeat: no-repeat;
  height: 114px;
  width: 215px;
  font-size: 25px;
  color: #ffffff; }
  .formule p em {
    font-weight: bold;
    color: #fdd20a; }

a .choixFormule {
  padding: 20px;
  font-size: 23px;
  text-shadow: 0px 0px 4px #011823;
  /* #011823 */
  margin-bottom: 2px; }

.prix {
  text-shadow: 1px 1px 2px #fff;
  color: #1178ac; }

a:hover .prix {
  text-shadow: 1px 1px 2px #fff;
  color: #f47920; }

.prix:hover {
  color: #f47920; }

.demoItemList {
  margin-left: 0; }
  .demoItemList li {
    margin: 10px 0; }
  .demoItemList a {
    text-decoration: none; }
    .demoItemList a:hover {
      text-decoration: underline; }

footer {
  text-align: center;
  color: #5a5a5a;
  margin-top: 25px;
  padding: 15px 0px 10px 0px; }
  footer p strong {
    font-weight: bold;
    color: #00C6FF; }
  footer p em {
    font-weight: bold;
    color: #5a5a5a; }

.titreExercice {
  color: #40afe3;
  font-size: 15px; }

.exercice {
  color: #5a5a5a;
  font-size: 15px;
  font-weight: normal; }

#image1 {
  height: 650px;
  background: transparent url(../images/image_partie_test1.png) center center no-repeat;
  text-indent: -9999px; }

table {
  text-align: center;
  width: 500px; }
  table img {
    margin: 0px 2px 2px 0px; }

#image2 {
  height: 650px;
  background: transparent url(../images/image_partie_test2.png) center center no-repeat;
  text-indent: -9999px; }

#boutonRetour {
  text-align: center;
  padding-left: 35px;
  margin: 10px 20px;
  height: 30px;
  width: 200px;
  background: transparent url(../images/fleche_orange_bleu_retour.png) no-repeat 0 0; }
  #boutonRetour:hover {
    background-position: 0 -19px; }

#main h2.testerExo {
  color: #f47920;
  font-weight: bold;
  font-size: 2em;
  margin-top: 20px;
  margin-bottom: 20px; }

/******* FONT FACE ******/







@font-face{
    font-family : "Ubuntu-B";
    src : url('../fonts/Ubuntu-B.ttf');
}

@font-face{
    font-family : "Ubuntu-BI";
    src : url('../fonts/Ubuntu-BI.ttf');
}

@font-face{
    font-family : "Ubuntu-C";
    src : url('../fonts/Ubuntu-C.ttf');
}

@font-face{
    font-family : "Ubuntu-L";
    src : url('../fonts/Ubuntu-L.ttf');
}

@font-face{
    font-family : "Ubuntu-LI";
    src : url('../fonts/Ubuntu-LI.ttf');
}

@font-face{
    font-family : "Ubuntu-M";
    src : url('../fonts/Ubuntu-M.ttf');
}

@font-face{
    font-family : "Ubuntu-MI";
    src : url('../fonts/Ubuntu-MI.ttf');
}

@font-face{
    font-family : "Ubuntu-R";
    src : url('../fonts/Ubuntu-R.ttf');
}