diff --git a/demos/grid-types/index.html b/demos/grid-types/index.html index 08384d6d..9e5ca984 100644 --- a/demos/grid-types/index.html +++ b/demos/grid-types/index.html @@ -12,7 +12,7 @@ - + @@ -25,263 +25,261 @@

responsive grids for compass

  • Static
  • Mixing & Matching
  • Different Grid Types

    - -

    You can build grids of all kinds with Susy. -Define your grid using any unit of measurement -(ems, pixels, percentages, inches, etc.) -and then determine how and when -you want that grid to respond to the viewport.

    - -

    Susy converts all internal grid-widths into percentages, -so that once you have a grid -it is able to respond and flex in any way you choose. -How the grid responds depends on the outer container.

    - -

    Here are a few examples -of grids with different container styles.

    - -

    The Magic Grid

    - -

    The default grid in Susy is what I call "the magic grid". -Fluid on the inside, -with an elastic container max-width. -The em-width makes it responsive to font sizes, -while the max-width setting makes it responsive to window sizes.

    - -
    // Setting up the Magic Grid
    -$total-columns: 12; // 12 columns
    -$column-width: 4em; // columns are 4em wide
    -$gutter-width: 1em; // with 1em gutters
    -$grid-padding: 1em; // and 1em padding on the grid container
    +        
    +        

    You can build grids of all kinds with Susy. + Define your grid using any unit of measurement + (ems, pixels, percentages, inches, etc.) + and then determine how and when + you want that grid to respond to the viewport.

    + +

    Susy converts all internal grid-widths into percentages, + so that once you have a grid + it is able to respond and flex in any way you choose. + How the grid responds depends on the outer container.

    + +

    Here are a few examples + of grids with different container styles.

    + +

    The Magic Grid

    + +

    The default grid in Susy is what I call "the magic grid". + Fluid on the inside, + with an elastic container max-width. + The em-width makes it responsive to font sizes, + while the max-width setting makes it responsive to window sizes.

    + +
    // Setting up the Magic Grid
    +$total-columns: 12; // 12 columns
    +$column-width: 4em; // columns are 4em wide
    +$gutter-width: 1em; // with 1em gutters
    +$grid-padding: 1em; // and 1em padding on the grid container
     
     .magic-container { @include container; }
     
    - -

    + +

    What we've defined is a simple elastic grid, + but by default the outer container width + will be set as a max-width, + making this a magic grid.

    + +

    You can also have px-based magic grids, + and so on, + though I find them somewhat less magical. + What makes it a magic grid + is the fact that it collapses with the browser at smaller sizes, + but remains set-width at larger sizes.

    + +

    There is a more complete + mobile-first magic grid demo + if you are interested.

    + +

    The Fluid Grid

    + +

    There are many ways to build a fluid grid with Susy. + You could simply replace all the em-widths above + with percentage widths. + But that's actually the hard way, + unless you know exactly what percentages you want to use. + Let me show you some easier options.

    + +

    Say you want to build a fluid grid + based on the 960gs dimensions:

    + +
    // A Fluid Grid based on 960gs
    +$total-columns: 12;
    +$column-width: 60px;
    +$gutter-width: 20px;
    +$grid-padding: 10px;
     
    - -

    That's a good start. -We now have a 960px magic grid. -Turning that into a fluid grid is simple:

    - -
    // Make it fluid!
    -$container-style: fluid;
    +        
    +        

    That's a good start. + We now have a 960px magic grid. + Turning that into a fluid grid is simple:

    + +
    // Make it fluid!
    +$container-style: fluid;
     
     .fluid-container { @include container; }
     
    - -

    + +

    That's it. + You have a fluid grid + based on the dimensions of the 960gs. + By default the container is set to 100% width, + but you can override that as well:

    + +
    // Make it smaller
    +$container-width: 60%;
     
     .fluid-60-container { @include container; }
     
    - -

    + +

    The Static Grid

    + +

    Perhaps you don't want your grid to respond + to the size of the viewport at all. + By telling Susy you want a "static" grid, + Susy will apply your container-width + directly to the "width" property.

    + +

    This is your more standard grid type. + Most "elastic" and "fixed" grids fit this category. + Unlike the magic grid, it doesn't collapse.

    + +

    Let's take our first grid and make it static:

    + +
    // Setting up the Static Grid
    +$total-columns: 12;
    +$column-width: 4em;
    +$gutter-width: 1em;
    +$grid-padding: 1em;
    +
    +$container-style: static;
     
     .static-container { @include container; }
     
    - -

    + +

    Mixing and matching

    + +

    Using those same 4 basic settings, + and the two advanced override settings, + you can create nearly any grid without doing any math.

    + +

    Want the 960 grid system + updated to 1140px?

    + +
    // The 960gs in 1140px
    +$total-columns: 12;
    +$column-width: 60px;
    +$gutter-width: 20px;
    +$grid-padding: 10px;
    +
    +$container-style: static;
    +$container-width: 1140px;
     
     .larger-960-container { @include container; }
     
    - -

    + +

    Why not make it elastic and magic?

    + +
    // The 960gs in ems
    +$total-columns: 12;
    +$column-width: 60px;
    +$gutter-width: 20px;
    +$grid-padding: 10px;
    +
    +$container-style: magic;
    +$container-width: 60em;
     
     .elastic-960-container { @include container; }
     
    - -

    + +

    Or we can make a magic-elastic grid, + defined in percentages:

    + +
    // Elastic grid as percentages
    +$total-columns: 12;
    +$column-width: 6%;
    +$gutter-width: 2%;
    +$grid-padding: 1%;
    +
    +$container-style: magic;
    +$container-width: 50em;
     
     .elastic-percentage-container { @include container; }
     
    - -

    diff --git a/demos/index.html b/demos/index.html index 4ac57301..767e6d33 100644 --- a/demos/index.html +++ b/demos/index.html @@ -12,7 +12,7 @@ - + @@ -59,49 +59,49 @@

    Elsewhere

    Contact us, or write it yourself.

    - diff --git a/demos/magic/index.html b/demos/magic/index.html index f57beecf..6592d851 100644 --- a/demos/magic/index.html +++ b/demos/magic/index.html @@ -12,7 +12,7 @@ - + @@ -33,58 +33,58 @@

    responsive grids for compass

    Mobile-First Magic Grids

    - -

    All Susy sites are fluid on the inside, -but my favorite of the Susy options is -what I call the Magic Grid. -Fluid on the inside and elastic on the outside, -the magic grid responds to both font and window size -while keeping you in control of typographic line lengths.

    - -

    This demo will lay out the steps -for building its own mobile-first layout -based on Susy's default Magic Grid.

    - -

    Basic Settings

    - -

    We'll start by defining -our mobile-first grid. -We'll keep the default grid sizes, -and just change the number of columns used:

    - -
    $total-columns  : 7;
    -$column-width   : 4em;
    -$gutter-width   : 1em;
    -$grid-padding   : $gutter-width;
    +          
    +          

    All Susy sites are fluid on the inside, + but my favorite of the Susy options is + what I call the Magic Grid. + Fluid on the inside and elastic on the outside, + the magic grid responds to both font and window size + while keeping you in control of typographic line lengths.

    + +

    This demo will lay out the steps + for building its own mobile-first layout + based on Susy's default Magic Grid.

    + +

    Basic Settings

    + +

    We'll start by defining + our mobile-first grid. + We'll keep the default grid sizes, + and just change the number of columns used:

    + +
    $total-columns  : 7;
    +$column-width   : 4em;
    +$gutter-width   : 1em;
    +$grid-padding   : $gutter-width;
     
    - -

    In this case I decided that 7 columns -was a good line-length for the main content. -While that's larger than most mobile devices, -the site will flex to fit them as well.

    - -

    We've set $column-width: 4em, -but Susy doesn't apply that directly. -That will be used to determine the outer container width -(using max-width unless otherwise instructed), -and then to figure out percentages internally.

    - -

    Think of these settings as a max-width -for your initial layout.

    - -

    Mobile Layout

    - -

    The first step in applying our Susy grid is to -define our container:

    - -
    .page { @include container; }
    +          
    +          

    In this case I decided that 7 columns + was a good line-length for the main content. + While that's larger than most mobile devices, + the site will flex to fit them as well.

    + +

    We've set $column-width: 4em, + but Susy doesn't apply that directly. + That will be used to determine the outer container width + (using max-width unless otherwise instructed), + and then to figure out percentages internally.

    + +

    Think of these settings as a max-width + for your initial layout.

    + +

    Mobile Layout

    + +

    The first step in applying our Susy grid is to + define our container:

    + +
    .page { @include container; }
     
    - -

    I wrote the source order in a way -that makes sense to me -even when the sidebars move inline with the main content.

    - -
    - .page
    +          
    +          

    I wrote the source order in a way + that makes sense to me + even when the sidebars move inline with the main content.

    + +
    - .page
       - .banner
       - .pagenav
       - .main
    @@ -92,163 +92,163 @@ 

    Mobile Layout

    - .content - .contentinfo
    - -

    We're going to keep the mobile layout simple and linear, -but I want the footer to have a red background -that encompasses the grid-padding. -In order to do that, -I apply negative margins equal to $grid-padding, -and add it back in as padding to the footer:

    - -
    .contentinfo {
    +          
    +          

    We're going to keep the mobile layout simple and linear, + but I want the footer to have a red background + that encompasses the grid-padding. + In order to do that, + I apply negative margins equal to $grid-padding, + and add it back in as padding to the footer:

    + +
    .contentinfo {
       margin: 0 0 - $grid-padding;
       padding: 0 $grid-padding;
     }
     
    - -

    Add in some style and typography, -and we're done with the mobile layout.

    - -

    Breakpoints

    - -

    I'm only adding one layout breakpoint to this page, -although you can add as many as you want.

    - -

    As soon as there is enough room for 12 columns, -we'll jump to a 12-column grid, -and bring our two sidebars into play.

    - -

    Let's set that breakpoint as a variable, -since we'll need it several times:

    - -
    $break: 12;
    +          
    +          

    Add in some style and typography, + and we're done with the mobile layout.

    + +

    Breakpoints

    + +

    I'm only adding one layout breakpoint to this page, + although you can add as many as you want.

    + +

    As soon as there is enough room for 12 columns, + we'll jump to a 12-column grid, + and bring our two sidebars into play.

    + +

    Let's set that breakpoint as a variable, + since we'll need it several times:

    + +
    $break: 12;
     
    - -

    We could get more complex, -switching to 12 columns at an arbitrary min-width ($break: 40em 12), -or adding a fallback class for older versions of IE ($break: 12 lt-ie9), -but I don't think we need either one in this case.

    - -

    Let's update the container -to respond to our new breakpoint:

    - -
    .page {
    +          
    +          

    We could get more complex, + switching to 12 columns at an arbitrary min-width ($break: 40em 12), + or adding a fallback class for older versions of IE ($break: 12 lt-ie9), + but I don't think we need either one in this case.

    + +

    Let's update the container + to respond to our new breakpoint:

    + +
    .page {
       @include container($total-columns, $break);
     }
     
    - -

    We're using the shortcut here, -setting multiple containers in a single command. -The first argument uses the default layout ($total-columns) -which doesn't trigger any media-queries, -the second uses our 12-column breakpoint. -This serves the same function as the longhand -using at-breakpoint:

    - -
    .page {
    +          
    +          

    We're using the shortcut here, + setting multiple containers in a single command. + The first argument uses the default layout ($total-columns) + which doesn't trigger any media-queries, + the second uses our 12-column breakpoint. + This serves the same function as the longhand + using at-breakpoint:

    + +
    .page {
       @include container;
       @include at-breakpoint($break) {
         @include container;
       }
     }
     
    - -

    However, the shorthand also performs some optimizations for us, -using set-container-width instead of container inside the breakpoint. -Since we know the other container settings are already in place, -all we need to override is the container's width. -you can also do that longhand too, if you like:

    - -
    .page {
    +          
    +          

    However, the shorthand also performs some optimizations for us, + using set-container-width instead of container inside the breakpoint. + Since we know the other container settings are already in place, + all we need to override is the container's width. + you can also do that longhand too, if you like:

    + +
    .page {
       @include container;
       @include at-breakpoint($break) {
         @include set-container-width;
       }
     }
     
    - -

    The longhand can be useful -if you have other operations to perform inside the breakpoint. -In our case, we can move on to laying out our 12-column grid.

    - -

    Large-Screen Layout

    - -

    Let's start with the banner. -It should span the full width, -but have 2 of 12 columns prefixed as padding on the left.

    - -

    Since the banner didn't have any layout styles -in our mobile layout, -we can place the entire selector block -inside a breakpoint:

    - -
    @include at-breakpoint($break) {
    +          
    +          

    The longhand can be useful + if you have other operations to perform inside the breakpoint. + In our case, we can move on to laying out our 12-column grid.

    + +

    Large-Screen Layout

    + +

    Let's start with the banner. + It should span the full width, + but have 2 of 12 columns prefixed as padding on the left.

    + +

    Since the banner didn't have any layout styles + in our mobile layout, + we can place the entire selector block + inside a breakpoint:

    + +
    @include at-breakpoint($break) {
       .banner { @include prefix(2,$break); }
     }
     
    - -

    Notice that I'm using $break as the context argument. -That way if I decide to change it, -I won't have to worry about updating all the contexts.

    - -

    Next comes the pagenav, -which we want to set as a sidebar -spanning 2 of the available 12 columns. -We can add that to the same breakpoint block -we already created.

    - -
    @include at-breakpoint($break) {
    +          
    +          

    Notice that I'm using $break as the context argument. + That way if I decide to change it, + I won't have to worry about updating all the contexts.

    + +

    Next comes the pagenav, + which we want to set as a sidebar + spanning 2 of the available 12 columns. + We can add that to the same breakpoint block + we already created.

    + +
    @include at-breakpoint($break) {
       .banner { @include prefix(2,$break); }
       .pagenav { @include span-columns(2,$break); }
     }
     
    - -

    The main content will fill the remaining space, -spanning 10 of 12 columns, -including the final right-most "omega" column. -Adding that to what we have:

    - -
    @include at-breakpoint($break) {
    +          
    +          

    The main content will fill the remaining space, + spanning 10 of 12 columns, + including the final right-most "omega" column. + Adding that to what we have:

    + +
    @include at-breakpoint($break) {
       .banner { @include prefix(2,$break); }
       .pagenav { @include span-columns(2,$break); }
       .main { @include span-columns(10 omega, $break); }
     }
     
    - -

    Inside the main content -we have a summary (which becomes a second sidebar), -and content that occupies the main area. -The content spans 7 of the main 10, -while the summary spans the remaining 3 (omega) of 10:

    - -
    @include at-breakpoint($break) {
    +          
    +          

    Inside the main content + we have a summary (which becomes a second sidebar), + and content that occupies the main area. + The content spans 7 of the main 10, + while the summary spans the remaining 3 (omega) of 10:

    + +
    @include at-breakpoint($break) {
       .banner { @include prefix(2,$break); }
       .pagenav { @include span-columns(2,$break); }
       .main {
    -    $main-columns: 10;
    +    $main-columns: 10;
         @include span-columns($main-columns omega, $break);
         .content { @include span-columns(7,$main-columns) }
         .summary { @include span-columns(3 omega, $main-columns) }
       }
     }
     
    - -

    (Again, notice I'm using $main-columns for defining columns and contexts.)

    - -

    That works, even though the summary comes first in our source. -Applying omega to an element -automatically pushes it to the end.

    - -

    All we have left is the footer. -With 12 columns available now, -we can replace the grid-padding trick -with a few columns of padding on either side. -Let's create a new breakpoint block for that -inside the footer block we already have. -We also need to clear the floated content above, -which is easy enough with plain CSS:

    - -
    .contentinfo {
    +          
    +          

    (Again, notice I'm using $main-columns for defining columns and contexts.)

    + +

    That works, even though the summary comes first in our source. + Applying omega to an element + automatically pushes it to the end.

    + +

    All we have left is the footer. + With 12 columns available now, + we can replace the grid-padding trick + with a few columns of padding on either side. + Let's create a new breakpoint block for that + inside the footer block we already have. + We also need to clear the floated content above, + which is easy enough with plain CSS:

    + +
    .contentinfo {
       margin: 0 0 - $grid-padding;
       padding: 0 $grid-padding;
       @include at-breakpoint($break) {
    @@ -258,22 +258,22 @@ 

    Large-Screen Layout

    } }
    - -

    And we're done. The rest is stylish icing.

    - -

    Complete Layout Styles

    - -

    In the end, -we have an entirely responsive layout -defined in just a few simple and meaningful lines, -without doing any math at all:

    - -
    // Settings
    -
    -$total-columns  : 7;
    -$column-width   : 4em;
    -$gutter-width   : 1em;
    -$grid-padding   : $gutter-width;
    +          
    +          

    And we're done. The rest is stylish icing.

    + +

    Complete Layout Styles

    + +

    In the end, + we have an entirely responsive layout + defined in just a few simple and meaningful lines, + without doing any math at all:

    + +
    // Settings
    +
    +$total-columns  : 7;
    +$column-width   : 4em;
    +$gutter-width   : 1em;
    +$grid-padding   : $gutter-width;
     
     $break          : 12;
     
    @@ -289,7 +289,7 @@ 

    Complete Layout Styles

    .banner { @include prefix(2,$break); } .pagenav { @include span-columns(2,$break); } .main { - $main-columns: 10; + $main-columns: 10; @include span-columns($main-columns omega, $break); .content { @include span-columns(7,$main-columns) } .summary { @include span-columns(3 omega, $main-columns) } @@ -306,69 +306,67 @@

    Complete Layout Styles

    } }
    - -

    Note: -Due to a known Sass bug, -if you are using an IE fallback class, -you can not apply at-breakpoint at the document root. -This should be fixed soon. -In the meantime, -breakpoints with fallback classes must be nested -inside another selector. -We're not using the fallback, -so we're ok.

    + +

    Note: + Due to a known Sass bug, + if you are using an IE fallback class, + you can not apply at-breakpoint at the document root. + This should be fixed soon. + In the meantime, + breakpoints with fallback classes must be nested + inside another selector. + We're not using the fallback, + so we're ok.

    diff --git a/fonts/amp/Baskerville-amp-webfont.eot b/fonts/amp/Baskerville-amp-webfont.eot new file mode 100755 index 00000000..86867e74 Binary files /dev/null and b/fonts/amp/Baskerville-amp-webfont.eot differ diff --git a/fonts/amp/Baskerville-amp-webfont.svg b/fonts/amp/Baskerville-amp-webfont.svg new file mode 100644 index 00000000..f0629f78 --- /dev/null +++ b/fonts/amp/Baskerville-amp-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : John Baskerville ca. 1752 +Foundry : FontSite +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/amp/Baskerville-amp-webfont.ttf b/fonts/amp/Baskerville-amp-webfont.ttf new file mode 100755 index 00000000..324c9396 Binary files /dev/null and b/fonts/amp/Baskerville-amp-webfont.ttf differ diff --git a/fonts/amp/Baskerville-amp-webfont.woff b/fonts/amp/Baskerville-amp-webfont.woff new file mode 100755 index 00000000..48a4508a Binary files /dev/null and b/fonts/amp/Baskerville-amp-webfont.woff differ diff --git a/fonts/cos/CenturyOldStyle-Bold-webfont.eot b/fonts/cos/CenturyOldStyle-Bold-webfont.eot new file mode 100755 index 00000000..6f5f5703 Binary files /dev/null and b/fonts/cos/CenturyOldStyle-Bold-webfont.eot differ diff --git a/fonts/cos/CenturyOldStyle-Bold-webfont.svg b/fonts/cos/CenturyOldStyle-Bold-webfont.svg new file mode 100644 index 00000000..f64a3098 --- /dev/null +++ b/fonts/cos/CenturyOldStyle-Bold-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/cos/CenturyOldStyle-Bold-webfont.ttf b/fonts/cos/CenturyOldStyle-Bold-webfont.ttf new file mode 100755 index 00000000..e2014a9f Binary files /dev/null and b/fonts/cos/CenturyOldStyle-Bold-webfont.ttf differ diff --git a/fonts/cos/CenturyOldStyle-Bold-webfont.woff b/fonts/cos/CenturyOldStyle-Bold-webfont.woff new file mode 100755 index 00000000..88d5274e Binary files /dev/null and b/fonts/cos/CenturyOldStyle-Bold-webfont.woff differ diff --git a/fonts/cos/CenturyOldStyle-Italic-webfont.eot b/fonts/cos/CenturyOldStyle-Italic-webfont.eot new file mode 100755 index 00000000..011d3f36 Binary files /dev/null and b/fonts/cos/CenturyOldStyle-Italic-webfont.eot differ diff --git a/fonts/cos/CenturyOldStyle-Italic-webfont.svg b/fonts/cos/CenturyOldStyle-Italic-webfont.svg new file mode 100644 index 00000000..a8193307 --- /dev/null +++ b/fonts/cos/CenturyOldStyle-Italic-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/cos/CenturyOldStyle-Italic-webfont.ttf b/fonts/cos/CenturyOldStyle-Italic-webfont.ttf new file mode 100755 index 00000000..e4fd1714 Binary files /dev/null and b/fonts/cos/CenturyOldStyle-Italic-webfont.ttf differ diff --git a/fonts/cos/CenturyOldStyle-Italic-webfont.woff b/fonts/cos/CenturyOldStyle-Italic-webfont.woff new file mode 100755 index 00000000..6083366f Binary files /dev/null and b/fonts/cos/CenturyOldStyle-Italic-webfont.woff differ diff --git a/fonts/cos/CenturyOldStyle-Regular-webfont.eot b/fonts/cos/CenturyOldStyle-Regular-webfont.eot new file mode 100755 index 00000000..ac327910 Binary files /dev/null and b/fonts/cos/CenturyOldStyle-Regular-webfont.eot differ diff --git a/fonts/cos/CenturyOldStyle-Regular-webfont.svg b/fonts/cos/CenturyOldStyle-Regular-webfont.svg new file mode 100644 index 00000000..7261704a --- /dev/null +++ b/fonts/cos/CenturyOldStyle-Regular-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/cos/CenturyOldStyle-Regular-webfont.ttf b/fonts/cos/CenturyOldStyle-Regular-webfont.ttf new file mode 100755 index 00000000..f84408a0 Binary files /dev/null and b/fonts/cos/CenturyOldStyle-Regular-webfont.ttf differ diff --git a/fonts/cos/CenturyOldStyle-Regular-webfont.woff b/fonts/cos/CenturyOldStyle-Regular-webfont.woff new file mode 100755 index 00000000..e701d74b Binary files /dev/null and b/fonts/cos/CenturyOldStyle-Regular-webfont.woff differ diff --git a/fonts/cos/CenturyOldStyleCaps-Regular-webfont.eot b/fonts/cos/CenturyOldStyleCaps-Regular-webfont.eot new file mode 100755 index 00000000..1726c7bd Binary files /dev/null and b/fonts/cos/CenturyOldStyleCaps-Regular-webfont.eot differ diff --git a/fonts/cos/CenturyOldStyleCaps-Regular-webfont.svg b/fonts/cos/CenturyOldStyleCaps-Regular-webfont.svg new file mode 100644 index 00000000..eb32c709 --- /dev/null +++ b/fonts/cos/CenturyOldStyleCaps-Regular-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/cos/CenturyOldStyleCaps-Regular-webfont.ttf b/fonts/cos/CenturyOldStyleCaps-Regular-webfont.ttf new file mode 100755 index 00000000..ba4f5018 Binary files /dev/null and b/fonts/cos/CenturyOldStyleCaps-Regular-webfont.ttf differ diff --git a/fonts/cos/CenturyOldStyleCaps-Regular-webfont.woff b/fonts/cos/CenturyOldStyleCaps-Regular-webfont.woff new file mode 100755 index 00000000..e52dfadb Binary files /dev/null and b/fonts/cos/CenturyOldStyleCaps-Regular-webfont.woff differ diff --git a/fonts/fg/FranklinGothic-Book-webfont.eot b/fonts/fg/FranklinGothic-Book-webfont.eot new file mode 100755 index 00000000..64d7c242 Binary files /dev/null and b/fonts/fg/FranklinGothic-Book-webfont.eot differ diff --git a/fonts/fg/FranklinGothic-Book-webfont.svg b/fonts/fg/FranklinGothic-Book-webfont.svg new file mode 100644 index 00000000..07f44fb5 --- /dev/null +++ b/fonts/fg/FranklinGothic-Book-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/fg/FranklinGothic-Book-webfont.ttf b/fonts/fg/FranklinGothic-Book-webfont.ttf new file mode 100755 index 00000000..36fa8327 Binary files /dev/null and b/fonts/fg/FranklinGothic-Book-webfont.ttf differ diff --git a/fonts/fg/FranklinGothic-Book-webfont.woff b/fonts/fg/FranklinGothic-Book-webfont.woff new file mode 100755 index 00000000..fb133930 Binary files /dev/null and b/fonts/fg/FranklinGothic-Book-webfont.woff differ diff --git a/fonts/fg/FranklinGothic-BookIt-webfont.eot b/fonts/fg/FranklinGothic-BookIt-webfont.eot new file mode 100755 index 00000000..678a6556 Binary files /dev/null and b/fonts/fg/FranklinGothic-BookIt-webfont.eot differ diff --git a/fonts/fg/FranklinGothic-BookIt-webfont.svg b/fonts/fg/FranklinGothic-BookIt-webfont.svg new file mode 100644 index 00000000..4309afc3 --- /dev/null +++ b/fonts/fg/FranklinGothic-BookIt-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/fg/FranklinGothic-BookIt-webfont.ttf b/fonts/fg/FranklinGothic-BookIt-webfont.ttf new file mode 100755 index 00000000..26a7d19c Binary files /dev/null and b/fonts/fg/FranklinGothic-BookIt-webfont.ttf differ diff --git a/fonts/fg/FranklinGothic-BookIt-webfont.woff b/fonts/fg/FranklinGothic-BookIt-webfont.woff new file mode 100755 index 00000000..243c7c8c Binary files /dev/null and b/fonts/fg/FranklinGothic-BookIt-webfont.woff differ diff --git a/fonts/fg/FranklinGothic-Cd-webfont.eot b/fonts/fg/FranklinGothic-Cd-webfont.eot new file mode 100755 index 00000000..1b5f1692 Binary files /dev/null and b/fonts/fg/FranklinGothic-Cd-webfont.eot differ diff --git a/fonts/fg/FranklinGothic-Cd-webfont.svg b/fonts/fg/FranklinGothic-Cd-webfont.svg new file mode 100644 index 00000000..8899afaf --- /dev/null +++ b/fonts/fg/FranklinGothic-Cd-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/fg/FranklinGothic-Cd-webfont.ttf b/fonts/fg/FranklinGothic-Cd-webfont.ttf new file mode 100755 index 00000000..5f78c228 Binary files /dev/null and b/fonts/fg/FranklinGothic-Cd-webfont.ttf differ diff --git a/fonts/fg/FranklinGothic-Cd-webfont.woff b/fonts/fg/FranklinGothic-Cd-webfont.woff new file mode 100755 index 00000000..17d434f5 Binary files /dev/null and b/fonts/fg/FranklinGothic-Cd-webfont.woff differ diff --git a/fonts/fg/FranklinGothic-CdIt-webfont.eot b/fonts/fg/FranklinGothic-CdIt-webfont.eot new file mode 100755 index 00000000..2b7a4ce3 Binary files /dev/null and b/fonts/fg/FranklinGothic-CdIt-webfont.eot differ diff --git a/fonts/fg/FranklinGothic-CdIt-webfont.svg b/fonts/fg/FranklinGothic-CdIt-webfont.svg new file mode 100644 index 00000000..2c9875fc --- /dev/null +++ b/fonts/fg/FranklinGothic-CdIt-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/fg/FranklinGothic-CdIt-webfont.ttf b/fonts/fg/FranklinGothic-CdIt-webfont.ttf new file mode 100755 index 00000000..c89b69e1 Binary files /dev/null and b/fonts/fg/FranklinGothic-CdIt-webfont.ttf differ diff --git a/fonts/fg/FranklinGothic-CdIt-webfont.woff b/fonts/fg/FranklinGothic-CdIt-webfont.woff new file mode 100755 index 00000000..c150ce28 Binary files /dev/null and b/fonts/fg/FranklinGothic-CdIt-webfont.woff differ diff --git a/fonts/fg/FranklinGothic-Med-webfont.eot b/fonts/fg/FranklinGothic-Med-webfont.eot new file mode 100755 index 00000000..d17e4dde Binary files /dev/null and b/fonts/fg/FranklinGothic-Med-webfont.eot differ diff --git a/fonts/fg/FranklinGothic-Med-webfont.svg b/fonts/fg/FranklinGothic-Med-webfont.svg new file mode 100644 index 00000000..edbadbee --- /dev/null +++ b/fonts/fg/FranklinGothic-Med-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/fg/FranklinGothic-Med-webfont.ttf b/fonts/fg/FranklinGothic-Med-webfont.ttf new file mode 100755 index 00000000..80108d79 Binary files /dev/null and b/fonts/fg/FranklinGothic-Med-webfont.ttf differ diff --git a/fonts/fg/FranklinGothic-Med-webfont.woff b/fonts/fg/FranklinGothic-Med-webfont.woff new file mode 100755 index 00000000..14538822 Binary files /dev/null and b/fonts/fg/FranklinGothic-Med-webfont.woff differ diff --git a/fonts/fg/FranklinGothic-MedCd-webfont.eot b/fonts/fg/FranklinGothic-MedCd-webfont.eot new file mode 100755 index 00000000..011d21fe Binary files /dev/null and b/fonts/fg/FranklinGothic-MedCd-webfont.eot differ diff --git a/fonts/fg/FranklinGothic-MedCd-webfont.svg b/fonts/fg/FranklinGothic-MedCd-webfont.svg new file mode 100644 index 00000000..2dc3acce --- /dev/null +++ b/fonts/fg/FranklinGothic-MedCd-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/fg/FranklinGothic-MedCd-webfont.ttf b/fonts/fg/FranklinGothic-MedCd-webfont.ttf new file mode 100755 index 00000000..34a68188 Binary files /dev/null and b/fonts/fg/FranklinGothic-MedCd-webfont.ttf differ diff --git a/fonts/fg/FranklinGothic-MedCd-webfont.woff b/fonts/fg/FranklinGothic-MedCd-webfont.woff new file mode 100755 index 00000000..382ac35e Binary files /dev/null and b/fonts/fg/FranklinGothic-MedCd-webfont.woff differ diff --git a/fonts/fg/FranklinGothic-MedCdIt-webfont.eot b/fonts/fg/FranklinGothic-MedCdIt-webfont.eot new file mode 100755 index 00000000..b04fe95c Binary files /dev/null and b/fonts/fg/FranklinGothic-MedCdIt-webfont.eot differ diff --git a/fonts/fg/FranklinGothic-MedCdIt-webfont.svg b/fonts/fg/FranklinGothic-MedCdIt-webfont.svg new file mode 100644 index 00000000..6319237f --- /dev/null +++ b/fonts/fg/FranklinGothic-MedCdIt-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/fg/FranklinGothic-MedCdIt-webfont.ttf b/fonts/fg/FranklinGothic-MedCdIt-webfont.ttf new file mode 100755 index 00000000..8b61e5cd Binary files /dev/null and b/fonts/fg/FranklinGothic-MedCdIt-webfont.ttf differ diff --git a/fonts/fg/FranklinGothic-MedCdIt-webfont.woff b/fonts/fg/FranklinGothic-MedCdIt-webfont.woff new file mode 100755 index 00000000..9be280d9 Binary files /dev/null and b/fonts/fg/FranklinGothic-MedCdIt-webfont.woff differ diff --git a/fonts/fg/FranklinGothic-MedIt-webfont.eot b/fonts/fg/FranklinGothic-MedIt-webfont.eot new file mode 100755 index 00000000..b75e4e72 Binary files /dev/null and b/fonts/fg/FranklinGothic-MedIt-webfont.eot differ diff --git a/fonts/fg/FranklinGothic-MedIt-webfont.svg b/fonts/fg/FranklinGothic-MedIt-webfont.svg new file mode 100644 index 00000000..5d958902 --- /dev/null +++ b/fonts/fg/FranklinGothic-MedIt-webfont.svg @@ -0,0 +1,240 @@ + + + + +This is a custom SVG webfont generated by Fontspring. +Designer : FontSite.com +Foundry URL : http://www.fontsite.com + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/fg/FranklinGothic-MedIt-webfont.ttf b/fonts/fg/FranklinGothic-MedIt-webfont.ttf new file mode 100755 index 00000000..e8744766 Binary files /dev/null and b/fonts/fg/FranklinGothic-MedIt-webfont.ttf differ diff --git a/fonts/fg/FranklinGothic-MedIt-webfont.woff b/fonts/fg/FranklinGothic-MedIt-webfont.woff new file mode 100755 index 00000000..c5d37ecd Binary files /dev/null and b/fonts/fg/FranklinGothic-MedIt-webfont.woff differ diff --git a/fonts/icons/susy.eot b/fonts/icons/susy.eot new file mode 100644 index 00000000..4f6708c5 Binary files /dev/null and b/fonts/icons/susy.eot differ diff --git a/fonts/icons/susy.svg b/fonts/icons/susy.svg new file mode 100644 index 00000000..e49bf8c7 --- /dev/null +++ b/fonts/icons/susy.svg @@ -0,0 +1,69 @@ + + + + +This is a custom SVG font generated by IcoMoon. +5 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/icons/susy.ttf b/fonts/icons/susy.ttf new file mode 100644 index 00000000..d37acfd4 Binary files /dev/null and b/fonts/icons/susy.ttf differ diff --git a/fonts/icons/susy.woff b/fonts/icons/susy.woff new file mode 100644 index 00000000..73a8fdb0 Binary files /dev/null and b/fonts/icons/susy.woff differ diff --git a/guides/getting-started/index.html b/guides/getting-started/index.html index df880d37..9b53515e 100644 --- a/guides/getting-started/index.html +++ b/guides/getting-started/index.html @@ -12,7 +12,7 @@ - + @@ -44,51 +44,51 @@

    Responsive grids for Compass.Twitter

    Installation

    - -

    Compass

    - -

    Install from the command line:

    - -
    # command line
    +        
    +        

    Compass

    + +

    Install from the command line:

    + +
    # command line
     gem install susy
     
    - -

    Create a new Compass project:

    - -
    # command line
    +        
    +        

    Create a new Compass project:

    + +
    # command line
     compass create <project name> -r susy -u susy
     
    - -

    Or update an existing Compass project:

    - -
    # config.rb
    +        
    +        

    Or update an existing Compass project:

    + +
    # config.rb
     require "susy"
     
    - -

    Rails 3.x

    - -
    # Gemfile
    +        
    +        

    Rails 3.x

    + +
    # Gemfile
     gem "susy"
     
    - -

    You may also need:

    - -
    # Gemfile
    +        
    +        

    You may also need:

    + +
    # Gemfile
     gem 'compass', '>= 0.12.2'
     gem 'compass-rails', '>= 1.0.3'
     
    - -

    And run:

    - -
    # command line
    +        
    +        

    And run:

    + +
    # command line
     bundle install
     
    - -

    Yeoman

    - -

    Edit your Gruntfile.js at the root level of your project and look for the Compass related rules, add the following inside the options object:

    - -
    // Gruntfile.js
    +        
    +        

    Yeoman

    + +

    Edit your Gruntfile.js at the root level of your project and look for the Compass related rules, add the following inside the options object:

    + +
    // Gruntfile.js
     compass: {
       dist: {
         options: {
    @@ -97,53 +97,53 @@ 

    Yeoman

    } }
    - -

    Now create a .config.rb file at the same level as your Gruntfile with this:

    - -
    # .config.rb
    +        
    +        

    Now create a .config.rb file at the same level as your Gruntfile with this:

    + +
    # .config.rb
     require "susy"
     
    - -

    And you are good to go!

    - -

    Manual Start

    - -

    You can use this method if you're not using Compass from Terminal and/or Rails. This is going to work with CodeKit.

    - -
      + +

      And you are good to go!

      + +

      Manual Start

      + +

      You can use this method if you're not using Compass from Terminal and/or Rails. This is going to work with CodeKit.

      + +
      • Simply download the zip file from GitHub
      • -
      • Copy the contents of the "sass" folder *feel free to remove everything else
      • -
      • Paste the files in your projects "sass" folder (or whatever you call it)
      • -
      • And import Susy! ( See Usage ) -And you're good to go!
      • -
      +
    • Copy the contents of the "sass" folder *feel free to remove everything else
    • +
    • Paste the files in your projects "sass" folder (or whatever you call it)
    • +
    • And import Susy! ( See Usage ) + And you're good to go!
    • +

    Usage

    - -
    @import "susy";
    +        
    +        
    @import "susy";
     
    - -

    Settings

    - -

    Set up your default grid values: total columns, column width, and gutter width.

    - -
    $total-columns  : 12;             // a 12-column grid
    -$column-width   : 4em;            // each column is 4em wide
    -$gutter-width   : 1em;            // 1em gutters between columns
    -$grid-padding   : $gutter-width;  // grid-padding equal to gutters
    +        
    +        

    Settings

    + +

    Set up your default grid values: total columns, column width, and gutter width.

    + +
    $total-columns  : 12;             // a 12-column grid
    +$column-width   : 4em;            // each column is 4em wide
    +$gutter-width   : 1em;            // 1em gutters between columns
    +$grid-padding   : $gutter-width;  // grid-padding equal to gutters
     
    - -

    Basic Grids

    - -

    The basic Susy grid is composed using two simple mixins:

    - -
      + +

      Basic Grids

      + +

      The basic Susy grid is composed using two simple mixins:

      + +
      • Use the container() mixin to create your initial grid context.
      • -
      • Use the span-columns() mixin to declare -the width of an element on the grid.
      • -
      +
    • Use the span-columns() mixin to declare + the width of an element on the grid.
    • +

    Here's a simple page layout:

    - -
    .page {
    +        
    +        
    .page {
       // page acts as a container for our grid.
       @include container;
     
    @@ -165,20 +165,20 @@ 

    Basic Grids

    } }
    - -

    Responsive Grids

    - -

    Responsive Susy grids allow you to change the number of columns in a layout -at different window sizes, using @media-queries with min and max widths. -This requires one more mixin:

    - -
      + +

      Responsive Grids

      + +

      Responsive Susy grids allow you to change the number of columns in a layout + at different window sizes, using @media-queries with min and max widths. + This requires one more mixin:

      + +
      • Use at-breakpoint() to set different layouts -at min- and max-width breakpoints.
      • -
      + at min- and max-width breakpoints. +

    Here's a mobile-first example:

    - -
    $total-columns: 4;
    +        
    +        
    $total-columns: 4;
     
     .page {
       // Establish our default 4-column grid container.
    @@ -192,124 +192,124 @@ 

    Responsive Grids

    } }
    - -

    Advanced

    - -

    Susy is built to handle your unique markup, and any number of edge cases. -It includes the standard push() and pull() mixins, -along with other useful functions and shortcuts, -support for various grid styles, -and even bi-directional grids for multi-lingual sites. -Check the reference documentation for details.

    - -

    Troubleshooting

    - -

    Version Management

    - -

    When you are working with bundled gems and dependencies -across a number of different projects, -managing gem versions can become an issue.

    - -

    If you are working in a Ruby environment, -we recommend using RVM. -See our Rails troubleshooting -below for some basic instructions, or -dig into RVM's installation instructions.

    - -

    In a Python environment, -we recommend virtualenv -in conjunction with these -"postactivate" and "predeactivate" scripts -to add support for Ruby gems.

    - -

    Once you have that in place, -Bundler -can be used in either environment -to manage the actual installation -and updating of the gems.

    - -

    Compass Install

    - -

    The old gem and the new gem have different names, -but are required simply as susy. -That can cause a conflict if both gems are present.

    - -

    If you have installed Susy in the past, -make sure you've uninstalled older versions:

    - -
    # command line
    +        
    +        

    Advanced

    + +

    Susy is built to handle your unique markup, and any number of edge cases. + It includes the standard push() and pull() mixins, + along with other useful functions and shortcuts, + support for various grid styles, + and even bi-directional grids for multi-lingual sites. + Check the reference documentation for details.

    + +

    Troubleshooting

    + +

    Version Management

    + +

    When you are working with bundled gems and dependencies + across a number of different projects, + managing gem versions can become an issue.

    + +

    If you are working in a Ruby environment, + we recommend using RVM. + See our Rails troubleshooting + below for some basic instructions, or + dig into RVM's installation instructions.

    + +

    In a Python environment, + we recommend virtualenv + in conjunction with these + "postactivate" and "predeactivate" scripts + to add support for Ruby gems.

    + +

    Once you have that in place, + Bundler + can be used in either environment + to manage the actual installation + and updating of the gems.

    + +

    Compass Install

    + +

    The old gem and the new gem have different names, + but are required simply as susy. + That can cause a conflict if both gems are present.

    + +

    If you have installed Susy in the past, + make sure you've uninstalled older versions:

    + +
    # command line
     gem uninstall compass-susy-plugin
     # "compass-susy-plugin" was the gem name for 0.9.x and lower
     # Susy 1.0 switches to "susy" as the gem name
     
    - -

    And then install 1.0:

    - -
    # command line
    +        
    +        

    And then install 1.0:

    + +
    # command line
     gem install susy
     
    - -

    Then use Compass as normal.

    - -

    Rails 3.x Install

    - -

    We recommend you use RVM -for using Susy with Rails projects. -It has become the standard gem management system for Rails, -it's very easy to install and use, -and it helps create and manage Gemsets -among different developers working on different branches.

    - -

    Here are some RVM best practices:

    - -

    If you have installed Susy in the past, -make sure you've uninstalled older versions. -See Compass Install above.

    - -

    Install RVM -(These are basics, -if you do not have Ruby and Rails already installed in your environment, -we recommend you use RVM's installation instructions):

    - -
    # command line
    +        
    +        

    Then use Compass as normal.

    + +

    Rails 3.x Install

    + +

    We recommend you use RVM + for using Susy with Rails projects. + It has become the standard gem management system for Rails, + it's very easy to install and use, + and it helps create and manage Gemsets + among different developers working on different branches.

    + +

    Here are some RVM best practices:

    + +

    If you have installed Susy in the past, + make sure you've uninstalled older versions. + See Compass Install above.

    + +

    Install RVM + (These are basics, + if you do not have Ruby and Rails already installed in your environment, + we recommend you use RVM's installation instructions):

    + +
    # command line
     # from your system's root:
     curl -L get.rvm.io | bash -s stable
     
    - -

    Create a gemset for your site:

    - -
    # command line
    +        
    +        

    Create a gemset for your site:

    + +
    # command line
     rvm gemset create fooBar
     
    - -

    Create an .rvmrc file at your site's root:

    - -
    # .rvmrc
    +        
    +        

    Create an .rvmrc file at your site's root:

    + +
    # .rvmrc
     rvm use 1.9.3@fooBar
     # Use whatever Ruby version number your app uses
     
    - -

    Now whenever you cd into your site's root, -RVM will pick up and use that Gemset.

    - -

    cd to your site and install Bundler:

    - -
    # command line
    +        
    +        

    Now whenever you cd into your site's root, + RVM will pick up and use that Gemset.

    + +

    cd to your site and install Bundler:

    + +
    # command line
     gem install bundler
     
    - -

    Add Susy to your Gemfile -(more info on Gemfiles):

    - -
    gem "susy", "~> 1.0.7"
    +        
    +        

    Add Susy to your Gemfile + (more info on Gemfiles):

    + +
    gem "susy", "~> 1.0.8"
     
    - -

    And finally run your bundle:

    - -
    # command line
    +        
    +        

    And finally run your bundle:

    + +
    # command line
     bundle
     
    -

    + +

    + + Copyright © 2012 + + Eric A. Meyer
    + An OddBird project. +

    - diff --git a/guides/index.html b/guides/index.html index 6e2aab84..90980269 100644 --- a/guides/index.html +++ b/guides/index.html @@ -12,7 +12,7 @@ - + @@ -44,51 +44,51 @@

    Responsive grids for Compass.Twitter

    Installation

    - -

    Compass

    - -

    Install from the command line:

    - -
    # command line
    +        
    +        

    Compass

    + +

    Install from the command line:

    + +
    # command line
     gem install susy
     
    - -

    Create a new Compass project:

    - -
    # command line
    +        
    +        

    Create a new Compass project:

    + +
    # command line
     compass create <project name> -r susy -u susy
     
    - -

    Or update an existing Compass project:

    - -
    # config.rb
    +        
    +        

    Or update an existing Compass project:

    + +
    # config.rb
     require "susy"
     
    - -

    Rails 3.x

    - -
    # Gemfile
    +        
    +        

    Rails 3.x

    + +
    # Gemfile
     gem "susy"
     
    - -

    You may also need:

    - -
    # Gemfile
    +        
    +        

    You may also need:

    + +
    # Gemfile
     gem 'compass', '>= 0.12.2'
     gem 'compass-rails', '>= 1.0.3'
     
    - -

    And run:

    - -
    # command line
    +        
    +        

    And run:

    + +
    # command line
     bundle install
     
    - -

    Yeoman

    - -

    Edit your Gruntfile.js at the root level of your project and look for the Compass related rules, add the following inside the options object:

    - -
    // Gruntfile.js
    +        
    +        

    Yeoman

    + +

    Edit your Gruntfile.js at the root level of your project and look for the Compass related rules, add the following inside the options object:

    + +
    // Gruntfile.js
     compass: {
       dist: {
         options: {
    @@ -97,53 +97,53 @@ 

    Yeoman

    } }
    - -

    Now create a .config.rb file at the same level as your Gruntfile with this:

    - -
    # .config.rb
    +        
    +        

    Now create a .config.rb file at the same level as your Gruntfile with this:

    + +
    # .config.rb
     require "susy"
     
    - -

    And you are good to go!

    - -

    Manual Start

    - -

    You can use this method if you're not using Compass from Terminal and/or Rails. This is going to work with CodeKit.

    - -
      + +

      And you are good to go!

      + +

      Manual Start

      + +

      You can use this method if you're not using Compass from Terminal and/or Rails. This is going to work with CodeKit.

      + +
      • Simply download the zip file from GitHub
      • -
      • Copy the contents of the "sass" folder *feel free to remove everything else
      • -
      • Paste the files in your projects "sass" folder (or whatever you call it)
      • -
      • And import Susy! ( See Usage ) -And you're good to go!
      • -
      +
    • Copy the contents of the "sass" folder *feel free to remove everything else
    • +
    • Paste the files in your projects "sass" folder (or whatever you call it)
    • +
    • And import Susy! ( See Usage ) + And you're good to go!
    • +

    Usage

    - -
    @import "susy";
    +        
    +        
    @import "susy";
     
    - -

    Settings

    - -

    Set up your default grid values: total columns, column width, and gutter width.

    - -
    $total-columns  : 12;             // a 12-column grid
    -$column-width   : 4em;            // each column is 4em wide
    -$gutter-width   : 1em;            // 1em gutters between columns
    -$grid-padding   : $gutter-width;  // grid-padding equal to gutters
    +        
    +        

    Settings

    + +

    Set up your default grid values: total columns, column width, and gutter width.

    + +
    $total-columns  : 12;             // a 12-column grid
    +$column-width   : 4em;            // each column is 4em wide
    +$gutter-width   : 1em;            // 1em gutters between columns
    +$grid-padding   : $gutter-width;  // grid-padding equal to gutters
     
    - -

    Basic Grids

    - -

    The basic Susy grid is composed using two simple mixins:

    - -
      + +

      Basic Grids

      + +

      The basic Susy grid is composed using two simple mixins:

      + +
      • Use the container() mixin to create your initial grid context.
      • -
      • Use the span-columns() mixin to declare -the width of an element on the grid.
      • -
      +
    • Use the span-columns() mixin to declare + the width of an element on the grid.
    • +

    Here's a simple page layout:

    - -
    .page {
    +        
    +        
    .page {
       // page acts as a container for our grid.
       @include container;
     
    @@ -165,20 +165,20 @@ 

    Basic Grids

    } }
    - -

    Responsive Grids

    - -

    Responsive Susy grids allow you to change the number of columns in a layout -at different window sizes, using @media-queries with min and max widths. -This requires one more mixin:

    - -
      + +

      Responsive Grids

      + +

      Responsive Susy grids allow you to change the number of columns in a layout + at different window sizes, using @media-queries with min and max widths. + This requires one more mixin:

      + +
      • Use at-breakpoint() to set different layouts -at min- and max-width breakpoints.
      • -
      + at min- and max-width breakpoints. +

    Here's a mobile-first example:

    - -
    $total-columns: 4;
    +        
    +        
    $total-columns: 4;
     
     .page {
       // Establish our default 4-column grid container.
    @@ -192,124 +192,124 @@ 

    Responsive Grids

    } }
    - -

    Advanced

    - -

    Susy is built to handle your unique markup, and any number of edge cases. -It includes the standard push() and pull() mixins, -along with other useful functions and shortcuts, -support for various grid styles, -and even bi-directional grids for multi-lingual sites. -Check the reference documentation for details.

    - -

    Troubleshooting

    - -

    Version Management

    - -

    When you are working with bundled gems and dependencies -across a number of different projects, -managing gem versions can become an issue.

    - -

    If you are working in a Ruby environment, -we recommend using RVM. -See our Rails troubleshooting -below for some basic instructions, or -dig into RVM's installation instructions.

    - -

    In a Python environment, -we recommend virtualenv -in conjunction with these -"postactivate" and "predeactivate" scripts -to add support for Ruby gems.

    - -

    Once you have that in place, -Bundler -can be used in either environment -to manage the actual installation -and updating of the gems.

    - -

    Compass Install

    - -

    The old gem and the new gem have different names, -but are required simply as susy. -That can cause a conflict if both gems are present.

    - -

    If you have installed Susy in the past, -make sure you've uninstalled older versions:

    - -
    # command line
    +        
    +        

    Advanced

    + +

    Susy is built to handle your unique markup, and any number of edge cases. + It includes the standard push() and pull() mixins, + along with other useful functions and shortcuts, + support for various grid styles, + and even bi-directional grids for multi-lingual sites. + Check the reference documentation for details.

    + +

    Troubleshooting

    + +

    Version Management

    + +

    When you are working with bundled gems and dependencies + across a number of different projects, + managing gem versions can become an issue.

    + +

    If you are working in a Ruby environment, + we recommend using RVM. + See our Rails troubleshooting + below for some basic instructions, or + dig into RVM's installation instructions.

    + +

    In a Python environment, + we recommend virtualenv + in conjunction with these + "postactivate" and "predeactivate" scripts + to add support for Ruby gems.

    + +

    Once you have that in place, + Bundler + can be used in either environment + to manage the actual installation + and updating of the gems.

    + +

    Compass Install

    + +

    The old gem and the new gem have different names, + but are required simply as susy. + That can cause a conflict if both gems are present.

    + +

    If you have installed Susy in the past, + make sure you've uninstalled older versions:

    + +
    # command line
     gem uninstall compass-susy-plugin
     # "compass-susy-plugin" was the gem name for 0.9.x and lower
     # Susy 1.0 switches to "susy" as the gem name
     
    - -

    And then install 1.0:

    - -
    # command line
    +        
    +        

    And then install 1.0:

    + +
    # command line
     gem install susy
     
    - -

    Then use Compass as normal.

    - -

    Rails 3.x Install

    - -

    We recommend you use RVM -for using Susy with Rails projects. -It has become the standard gem management system for Rails, -it's very easy to install and use, -and it helps create and manage Gemsets -among different developers working on different branches.

    - -

    Here are some RVM best practices:

    - -

    If you have installed Susy in the past, -make sure you've uninstalled older versions. -See Compass Install above.

    - -

    Install RVM -(These are basics, -if you do not have Ruby and Rails already installed in your environment, -we recommend you use RVM's installation instructions):

    - -
    # command line
    +        
    +        

    Then use Compass as normal.

    + +

    Rails 3.x Install

    + +

    We recommend you use RVM + for using Susy with Rails projects. + It has become the standard gem management system for Rails, + it's very easy to install and use, + and it helps create and manage Gemsets + among different developers working on different branches.

    + +

    Here are some RVM best practices:

    + +

    If you have installed Susy in the past, + make sure you've uninstalled older versions. + See Compass Install above.

    + +

    Install RVM + (These are basics, + if you do not have Ruby and Rails already installed in your environment, + we recommend you use RVM's installation instructions):

    + +
    # command line
     # from your system's root:
     curl -L get.rvm.io | bash -s stable
     
    - -

    Create a gemset for your site:

    - -
    # command line
    +        
    +        

    Create a gemset for your site:

    + +
    # command line
     rvm gemset create fooBar
     
    - -

    Create an .rvmrc file at your site's root:

    - -
    # .rvmrc
    +        
    +        

    Create an .rvmrc file at your site's root:

    + +
    # .rvmrc
     rvm use 1.9.3@fooBar
     # Use whatever Ruby version number your app uses
     
    - -

    Now whenever you cd into your site's root, -RVM will pick up and use that Gemset.

    - -

    cd to your site and install Bundler:

    - -
    # command line
    +        
    +        

    Now whenever you cd into your site's root, + RVM will pick up and use that Gemset.

    + +

    cd to your site and install Bundler:

    + +
    # command line
     gem install bundler
     
    - -

    Add Susy to your Gemfile -(more info on Gemfiles):

    - -
    gem "susy", "~> 1.0.7"
    +        
    +        

    Add Susy to your Gemfile + (more info on Gemfiles):

    + +
    gem "susy", "~> 1.0.8"
     
    - -

    And finally run your bundle:

    - -
    # command line
    +        
    +        

    And finally run your bundle:

    + +
    # command line
     bundle
     
    -

    + +

    + + Copyright © 2012 + + Eric A. Meyer
    + An OddBird project. +

    - diff --git a/guides/reference/index.html b/guides/reference/index.html index f79271d2..08659b7b 100644 --- a/guides/reference/index.html +++ b/guides/reference/index.html @@ -12,7 +12,7 @@ - + @@ -44,970 +44,970 @@

    Responsive grids for Compass.Twitter

    Basic Usage

    - -
    @import 'susy';
    +        
    +        
    @import 'susy';
     
    - -
      + +
      • Container: The root element of a Grid.
      • -
      • +
      • Layout: The total number of Columns in a grid.
      • -
      • +
      • Grid Padding: Padding on the sides of the Grid.
      • -
      • +
      • Context: The number of Columns spanned by the parent element.
      • -
      • +
      • Omega: Any Grid Element spanning the last Column in its Context.
      • -
      +

    Basic Settings

    - -

    Total Columns

    - -

    The number of Columns in your default Grid Layout.

    - -
    // $total-columns: <number>;
    -$total-columns: 12;
    +        
    +        

    Total Columns

    + +

    The number of Columns in your default Grid Layout.

    + +
    // $total-columns: <number>;
    +$total-columns: 12;
     
    - -
      + +
      • <number>: Unitless number.
      • -
      +

    Column Width

    - -

    The width of a single Column in your Grid.

    - -
    // $column-width: <length>;
    -$column-width: 4em;
    +        
    +        

    The width of a single Column in your Grid.

    + +
    // $column-width: <length>;
    +$column-width: 4em;
     
    - -
      + +
      • <length>: Length in any unit of measurement (em, px, %, etc).
      • -
      +

    Gutter Width

    - -

    The space between Columns.

    - -
    // $gutter-width: <length>;
    -$gutter-width: 1em;
    +        
    +        

    The space between Columns.

    + +
    // $gutter-width: <length>;
    +$gutter-width: 1em;
     
    - -
      + +
      • <length>: Units must match $column-width.
      • -
      +

    Grid Padding

    - -

    Padding on the left and right of a Grid Container.

    - -
    // $grid-padding: <length>;
    -$grid-padding: $gutter-width;  // 1em
    +        
    +        

    Padding on the left and right of a Grid Container.

    + +
    // $grid-padding: <length>;
    +$grid-padding: $gutter-width;  // 1em
     
    - -
      + +
      • <length>: Units should match the container width -($column-width unless $container-width is set directly).
      • -
      + ($column-width unless $container-width is set directly). +

    Basic Mixins

    - -

    Container

    - -

    Establish the outer grid-containing element.

    - -
    // container([$<media-layout>]*)
    +        
    +        

    Container

    + +

    Establish the outer grid-containing element.

    + +
    // container([$<media-layout>]*)
     .page { @include container; }
     
    - -
      + +
      • <$media-layout>: Optional media-layout shortcuts -(see 'Responsive Grids' below). -Default: $total-columns.
      • -
      + (see 'Responsive Grids' below). + Default: $total-columns. +

    Span Columns

    - -

    Align an element to the Susy Grid.

    - -
    // span-columns(<$columns> [<omega> , <$context>, <$padding>, <$from>, <$style>])
    +        
    +        

    Align an element to the Susy Grid.

    + +
    // span-columns(<$columns> [<omega> , <$context>, <$padding>, <$from>, <$style>])
     nav { @include span-columns(3,12); }
     article { @include span-columns(9 omega,12); }
     
    - -
      + +
      • <$columns>: The number of Columns to span. - -
          + +
          • <omega>: Optional flag to signal the last element in a row.
          • -
          +
      • -
      • +
      • <$context>: Current nesting Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$padding>: Optional padding applied inside an individual grid element. -Given as a length (same units as the grid) -or a list of lengths (from-direction to-direction). -Default: false.
      • -
      • + Given as a length (same units as the grid) + or a list of lengths (from-direction to-direction). + Default: false.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Omega

    - -

    Apply to any omega element as an override.

    - -
    // omega([<$from>])
    +        
    +        

    Apply to any omega element as an override.

    + +
    // omega([<$from>])
     .gallery-image {
       @include span-columns(3,9); // each gallery-image is 3 of 9 cols.
       &:nth-child(3n) { @include omega; } // every third image completes a row.
     }
     
    - -
      + +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      + Default: $from-direction. +

    Nth-Omega

    - -

    Apply to any element as an nth-child omega shortcut. -Defaults to :last-child.

    - -
    // nth-omega([<$n>, <$selector>, <$from>])
    +        
    +        

    Apply to any element as an nth-child omega shortcut. + Defaults to :last-child.

    + +
    // nth-omega([<$n>, <$selector>, <$from>])
     .gallery-image {
       @include span-columns(3,9); // each gallery-image is 3 of 9 cols.
       @include nth-omega(3n); // same as omega example above.
     }
     
    - -
      + +
      • <$n>: The keyword or equation to select: [first | only | last | <equation>]. -An equation could be e.g. 3 or 3n or '3n+1'. -Note that quotes are needed to keep complex equations -from being simplified by Compass. -Default: last.
      • -
      • + An equation could be e.g. 3 or 3n or '3n+1'. + Note that quotes are needed to keep complex equations + from being simplified by Compass. + Default: last.
      • +
      • <$selector>: The type of element, and direction to count from: -[child | last-child | of-type | last-of-type ]. -Default: child.
      • -
      • + [child | last-child | of-type | last-of-type ]. + Default: child.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      + Default: $from-direction. +

    Responsive Grids

    - -
      + +
      • Breakpoint: A min- or max- viewport width at which to change Layouts.
      • -
      • +
      • Media-Layout: Shortcut for declaring Breakpoints and Layouts in Susy.
      • -
      +

    Media-Layouts

    - -
    // $media-layout: <min-width> <layout> <max-width> <ie-fallback>;
    +        
    +        
    // $media-layout: <min-width> <layout> <max-width> <ie-fallback>;
     // - You must supply either <min-width> or <layout>.
    -$media-layout: 12;          // Use 12-col layout at matching min-width.
    -$media-layout: 30em;        // At min 30em, use closest fitting layout.
    -$media-layout: 30em 12;     // At min 30em, use 12-col layout.
    -$media-layout: 12 60em;     // Use 12 cols up to max 60em.
    -$media-layout: 30em 60em;   // Between min 30em & max 60em, use closest layout.
    -$media-layout: 30em 12 60em;// Use 12 cols between min 30em & max 60em.
    -$media-layout: 60em 12 30em;// Same. Larger length will always be max-width.
    -$media-layout : 12 lt-ie9;  // Output is included under `.lt-ie9` class,
    +$media-layout: 12;          // Use 12-col layout at matching min-width.
    +$media-layout: 30em;        // At min 30em, use closest fitting layout.
    +$media-layout: 30em 12;     // At min 30em, use 12-col layout.
    +$media-layout: 12 60em;     // Use 12 cols up to max 60em.
    +$media-layout: 30em 60em;   // Between min 30em & max 60em, use closest layout.
    +$media-layout: 30em 12 60em;// Use 12 cols between min 30em & max 60em.
    +$media-layout: 60em 12 30em;// Same. Larger length will always be max-width.
    +$media-layout : 12 lt-ie9;  // Output is included under `.lt-ie9` class,
                                 // for use with IE conditional comments
                                 // on the <html> tag.
     
    - -
      + +
      • <$min/max-width>: Any length with units, used to set media breakpoints.
      • -
      • +
      • <$layout>: Any (unitless) number of columns to use for the grid -at a given breakpoint.
      • -
      • + at a given breakpoint.
      • +
      • <$ie-fallback>: Any string to use as a fallback class -when mediaqueries are not available. -Do not include a leading "." class-signifier, -simply the class name ("lt-ie9", not ".lt-ie9"). -This can be anything you want: -"no-mediaqueries", "ie8", "popcorn", etc.
      • -
      + when mediaqueries are not available. + Do not include a leading "." class-signifier, + simply the class name ("lt-ie9", not ".lt-ie9"). + This can be anything you want: + "no-mediaqueries", "ie8", "popcorn", etc. +

    Responsive Mixins

    - -

    At-Breakpoint

    - -

    At a given min- or max-width Breakpoint, use a given Layout.

    - -
    // at-breakpoint(<$media-layout> [, <$font-size>]) { <@content> }
    +        
    +        

    At-Breakpoint

    + +

    At a given min- or max-width Breakpoint, use a given Layout.

    + +
    // at-breakpoint(<$media-layout> [, <$font-size>]) { <@content> }
     @include at-breakpoint(30em 12) {
       .page { @include container; }
     }
     
    - -
      + +
      • <$media-layout>: The Breakpoint/Layout combo to use (see above).
      • -
      • +
      • <$font-size>: Browsers interpret em-based media-queries -using the browser default font size (16px in most cases). -If you have a different base font size for your site, -we have to adjust for the difference. -Tell us your base font size, and we'll do the conversion. -Default: $base-font-size.
      • -
      • + using the browser default font size (16px in most cases). + If you have a different base font size for your site, + we have to adjust for the difference. + Tell us your base font size, and we'll do the conversion. + Default: $base-font-size.
      • +
      • <@content>: Nested @content block will use the given Layout.
      • -
      +

    Layout

    - -

    Set an arbitrary Layout to use with any block of content.

    - -
    // layout(<$layout-cols>) { <@content> }
    +        
    +        

    Set an arbitrary Layout to use with any block of content.

    + +
    // layout(<$layout-cols>) { <@content> }
     @include layout(6) {
       .narrow-page { @include container; }
     }
     
    - -
      + +
      • <$layout-cols>: The number of Columns to use in the Layout.
      • -
      • +
      • <@content>: Nested @content block will use the given Layout.
      • -
      +

    Set Container Width

    - -

    Reset the width of a Container for a new Layout context. -Can be used when container() has already been applied to an element, -for DRYer output than simply using container again.

    - -
    // set-container-width([<$columns>, <$style>])
    +        
    +        

    Reset the width of a Container for a new Layout context. + Can be used when container() has already been applied to an element, + for DRYer output than simply using container again.

    + +
    // set-container-width([<$columns>, <$style>])
     @include container;
     @include at-breakpoint(8) {
       @include set-container-width;
     }
     
    - -
      + +
      • <$columns>: The number of Columns to be contained. -Default: Current value of $total-columns depending on Layout.
      • -
      • + Default: Current value of $total-columns depending on Layout.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    With Grid Settings

    - -

    Use different grid settings for a block of code - -whether the same grid at a different breakpoint, -or a different grid altogether.

    - -
    // with-grid-settings([$<columns>, $<width>, <$gutter>, <$padding>]) { <@content> }
    +        
    +        

    Use different grid settings for a block of code - + whether the same grid at a different breakpoint, + or a different grid altogether.

    + +
    // with-grid-settings([$<columns>, $<width>, <$gutter>, <$padding>]) { <@content> }
     @include with-grid-settings(12,4em,1.5em,1em) {
       .new-grid { @include container; }
     };
     
    - -
      + +
      • <$columns>: Overrides the $total-columns setting for all contained elements.
      • -
      • +
      • <$width>: Overrides the $column-width setting for all contained elements.
      • -
      • +
      • <$gutter>: Overrides the $gutter-width setting for all contained elements.
      • -
      • +
      • <$padding>: Overrides the $grid-padding setting for all contained elements.
      • -
      • +
      • <@content>: Nested @content block will use the given grid settings.
      • -
      +

    Grid Helpers

    - -

    Box Sizing

    - -

    Border-Box Sizing

    - -

    Set the default box-model to border-box, -and adjust the grid math accordingly.

    - -
    // border-box-sizing()
    +        
    +        

    Box Sizing

    + +

    Border-Box Sizing

    + +

    Set the default box-model to border-box, + and adjust the grid math accordingly.

    + +
    // border-box-sizing()
     @include border-box-sizing;
     
    - -

    This will apply border-box model to all elements -(using the star selector) -and set $border-box-sizing to true. -You can use the variable on it's own to adjust the grid math, -in cases where you want to apply the box-model separately.

    - -

    Isolation

    - -

    Isolate

    - -

    Isolate the position of a grid element relative to the container. -This should be used in addition to span-columns -as a way of minimizing sub-pixel rounding errors in specific trouble locations.

    - -
    // isolate(<$location> [, <$context>, <$from>, <$style>])
    +        
    +        

    This will apply border-box model to all elements + (using the star selector) + and set $border-box-sizing to true. + You can use the variable on it's own to adjust the grid math, + in cases where you want to apply the box-model separately.

    + +

    Isolation

    + +

    Isolate

    + +

    Isolate the position of a grid element relative to the container. + This should be used in addition to span-columns + as a way of minimizing sub-pixel rounding errors in specific trouble locations.

    + +
    // isolate(<$location> [, <$context>, <$from>, <$style>])
     @include span-columns(4); // 4-columns wide
     @include isolate(2); // positioned in the second column
     
    - -
      + +
      • <$location>: The container-relative column number to position on.
      • -
      • +
      • <$context>: Current nesting Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Isolate Grid

    - -

    Isolate a group of elements in an grid (such as an image gallery) -using nth-child for positioning. -Provide the column-width of each element, -and Susy will determine the positioning for you.

    - -
    // isolate-grid(<$columns> [, <$context>, <$from>, <$style>])
    +        
    +        

    Isolate a group of elements in an grid (such as an image gallery) + using nth-child for positioning. + Provide the column-width of each element, + and Susy will determine the positioning for you.

    + +
    // isolate-grid(<$columns> [, <$context>, <$from>, <$style>])
     .gallery-item {
       @include isolate-grid(3);
     }
     
    - -
      + +
      • <$columns>: The number of Columns for each item to span.
      • -
      • +
      • <$context>: Current nesting Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Padding Mixins

    - -

    Prefix

    - -

    Add Columns of empty space as padding before an element.

    - -
    // prefix(<$columns> [, <$context>, <$from>, <$style>])
    +        
    +        

    Prefix

    + +

    Add Columns of empty space as padding before an element.

    + +
    // prefix(<$columns> [, <$context>, <$from>, <$style>])
     .box { @include prefix(3); }
     
    - -
      + +
      • <$columns>: The number of Columns to be added as padding before.
      • -
      • +
      • <$context>: The Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Suffix

    - -

    Add columns of empty space as padding after an element.

    - -
    // suffix(<$columns> [, <$context>, <$from>, <$style>])
    +        
    +        

    Add columns of empty space as padding after an element.

    + +
    // suffix(<$columns> [, <$context>, <$from>, <$style>])
     .box { @include suffix(2); }
     
    - -
      + +
      • <$columns>: The number of Columns to be added as padding after.
      • -
      • +
      • <$context>: The Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Pad

    - -

    Shortcut for adding both Prefix and Suffix padding.

    - -
    // pad([<$prefix>, <$suffix>, <$context>, <$from>, <$style>])
    +        
    +        

    Shortcut for adding both Prefix and Suffix padding.

    + +
    // pad([<$prefix>, <$suffix>, <$context>, <$from>, <$style>])
     .box { @include pad(3,2); }
     
    - -
      + +
      • <$prefix>: The number of Columns to be added as padding before.
      • -
      • +
      • <$suffix>: The number of Columns to be added as padding after.
      • -
      • +
      • <$context>: The Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Bleed

    - -

    Add negative margins and matching positive padding to an element, -so that its background "bleeds" outside its natural position.

    - -
    // bleed(<$width> [<$sides>, <$style>])
    +        
    +        

    Add negative margins and matching positive padding to an element, + so that its background "bleeds" outside its natural position.

    + +
    // bleed(<$width> [<$sides>, <$style>])
     @include bleed(2);
     
    - -
      + +
      • <$width>: The number of Columns or arbitrary length to bleed. -Use 2 of 12 syntax for context in nested situations.
      • -
      • + Use 2 of 12 syntax for context in nested situations.
      • +
      • <$sides>: The sides of the element that should bleed. -Default: left right.
      • -
      • + Default: left right.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      • + Default: $container-style.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Margin Mixins

    - -

    Pre

    - -

    Add columns of empty space as margin before an element.

    - -
    // pre(<$columns> [, <$context>, <$from>, <$style>])
    +        
    +        

    Pre

    + +

    Add columns of empty space as margin before an element.

    + +
    // pre(<$columns> [, <$context>, <$from>, <$style>])
     .box { @include pre(2); }
     
    - -
      + +
      • <$columns>: The number of Columns to be added as margin before.
      • -
      • +
      • <$context>: The Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Post

    - -

    Add columns of empty space as margin after an element.

    - -
    // post(<$columns> [, <$context>, <$from>, <$style>])
    +        
    +        

    Add columns of empty space as margin after an element.

    + +
    // post(<$columns> [, <$context>, <$from>, <$style>])
     .box { @include post(3); }
     
    - -
      + +
      • <$columns>: The number of Columns to be added as margin after.
      • -
      • +
      • <$context>: The Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Squish

    - -

    Shortcut to add empty space as margin before and after an element.

    - -
    // squish([<$pre>, <$post>, <$context>, <$from>, <$style>])
    +        
    +        

    Shortcut to add empty space as margin before and after an element.

    + +
    // squish([<$pre>, <$post>, <$context>, <$from>, <$style>])
     .box { @include squish(2,3); }
     
    - -
      + +
      • <$pre>: The number of Columns to be added as margin before.
      • -
      • +
      • <$post>: The number of Columns to be added as margin after.
      • -
      • +
      • <$context>: The Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Push

    - -

    Identical to pre.

    - -
    // push(<$columns> [, <$context>, <$from>, <$style>])
    +        
    +        

    Identical to pre.

    + +
    // push(<$columns> [, <$context>, <$from>, <$style>])
     .box { @include push(3); }
     
    - -

    Pull

    - -

    Add negative margins before an element, to pull it against the flow.

    - -
    // pull(<$columns> [, <$context>, <$from>, <$style>])
    +        
    +        

    Pull

    + +

    Add negative margins before an element, to pull it against the flow.

    + +
    // pull(<$columns> [, <$context>, <$from>, <$style>])
     .box { @include pull(2); }
     
    - -
      + +
      • <$columns>: The number of Columns to be subtracted as margin before.
      • -
      • +
      • <$context>: The Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Reset Mixins

    - -

    Reset Columns

    - -

    Resets an element to default block behaviour.

    - -
    // reset-columns([<$from>])
    +        
    +        

    Reset Columns

    + +

    Resets an element to default block behaviour.

    + +
    // reset-columns([<$from>])
     article { @include span-columns(6); }     // articles are 6 cols wide
     #news article { @include reset-columns; } // but news span the full width
                                               // of their container
     
    - -
      + +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      + Default: $from-direction. +

    Remove-Omega

    - -

    Apply to any previously-omega element -to reset it's float direction and margins -to match non-omega grid elements. -Note that unlike omega, -this requires a context when nested.

    - -
    // remove-omega([<$context>, <$from>, <$style>])
    +        
    +        

    Apply to any previously-omega element + to reset it's float direction and margins + to match non-omega grid elements. + Note that unlike omega, + this requires a context when nested.

    + +
    // remove-omega([<$context>, <$from>, <$style>])
     .gallery-image {
       &:nth-child(3n) { @include remove-omega; } // 3rd images no longer complete rows.
     }
     
    - -
      + +
      • <$context>: Current nesting Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Remove Nth-Omega

    - -

    Apply to any previously nth-omega element -to reset it's float direction and margins -to match non-omega grid elements. -Note that unlike omega, -this requires a context when nested.

    - -
    // remove-nth-omega([<$n>, <$selector>, <$context>, <$from>, <$style>])
    +        
    +        

    Apply to any previously nth-omega element + to reset it's float direction and margins + to match non-omega grid elements. + Note that unlike omega, + this requires a context when nested.

    + +
    // remove-nth-omega([<$n>, <$selector>, <$context>, <$from>, <$style>])
     .gallery-image {
       @include remove-nth-omega(3n); // same as remove-omega example above.
     }
     
    - -
      + +
      • <$n>: The keyword or equation to select: [first | only | last | <equation>]. -An equation could be e.g. 3 or 3n or '3n+1'. -Note that quotes are needed to keep a complex equation from being simplified by Compass. -Default: last.
      • -
      • + An equation could be e.g. 3 or 3n or '3n+1'. + Note that quotes are needed to keep a complex equation from being simplified by Compass. + Default: last.
      • +
      • <$selector>: The type of element, and direction to count from: -[child | last-child | of-type | last-of-type ]. -Default: child.
      • -
      • + [child | last-child | of-type | last-of-type ]. + Default: child.
      • +
      • <$context>: Current nesting Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$from>: The origin direction of your document flow. -Default: $from-direction.
      • -
      • + Default: $from-direction.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Other Mixins

    - -

    Susy Grid Background

    - -

    Show the Susy Grid as a background-image on any container.

    - -
    // susy-grid-background();
    +        
    +        

    Susy Grid Background

    + +

    Show the Susy Grid as a background-image on any container.

    + +
    // susy-grid-background();
     .page { @include susy-grid-background; }
     
    - -
      + +
      • If you are using the <body> element as your Container, -you need to apply a background to the <html> element -in order for this grid-background to size properly.
      • -
      • Some browsers have trouble with sub-pixel rounding on background images. -Use this for checking general spacing, not pixel-exact alignment. -Susy columns tend to be more accurate than gradient grid-backgrounds.
      • -
      + you need to apply a background to the <html> element + in order for this grid-background to size properly. +
    • Some browsers have trouble with sub-pixel rounding on background images. + Use this for checking general spacing, not pixel-exact alignment. + Susy columns tend to be more accurate than gradient grid-backgrounds.
    • +

    Functions

    - -

    Where a mixin returns property/value pairs, functions return simple values -that you can put where you want, and use for advanced math.

    - -

    Columns

    - -

    Similar to span-columns mixin, -but returns the math-ready % multiplier.

    - -
    // columns(<$columns> [, <$context>, <$style>])
    +        
    +        

    Where a mixin returns property/value pairs, functions return simple values + that you can put where you want, and use for advanced math.

    + +

    Columns

    + +

    Similar to span-columns mixin, + but returns the math-ready % multiplier.

    + +
    // columns(<$columns> [, <$context>, <$style>])
     .item { width: columns(3,6); }
     
    - -
      + +
      • <$columns>: The number of Columns to span,
      • -
      • +
      • <$context>: The Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Gutter

    - -

    The % width of one gutter in any given context.

    - -
    // gutter([<$context>, <$style>])
    +        
    +        

    The % width of one gutter in any given context.

    + +
    // gutter([<$context>, <$style>])
     .item { margin-right: gutter(6) + columns(3,6); }
     
    - -
      + +
      • <$context>: The Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Space

    - -

    Total % space taken by Columns, including internal AND external gutters.

    - -
    // space(<$columns> [, <$context>, <$style>])
    +        
    +        

    Total % space taken by Columns, including internal AND external gutters.

    + +
    // space(<$columns> [, <$context>, <$style>])
     .item { margin-right: space(3,6); }
     
    - -
      + +
      • <$columns>: The number of Columns to span,
      • -
      • +
      • <$context>: The Context. -Default: $total-columns.
      • -
      • + Default: $total-columns.
      • +
      • <$style>: Optionally return static lengths for grid calculations. -Default: $container-style.
      • -
      + Default: $container-style. +

    Container Override Settings

    - -

    Container Width

    - -

    Override the total width of your grid with an arbitrary length.

    - -
    // $container-width: <length> | <boolean>;
    -$container-width: false;
    +        
    +        

    Container Width

    + +

    Override the total width of your grid with an arbitrary length.

    + +
    // $container-width: <length> | <boolean>;
    +$container-width: false;
     
    - -
      + +
      • <length>: Length in em, px, %, etc.
      • -
      • +
      • <boolean>: True or false.
      • -
      +

    Container Style

    - -

    Override the type of shell containing your grid.

    - -
    // $container-style: <style>;
    -$container-style: magic;
    +        
    +        

    Override the type of shell containing your grid.

    + +
    // $container-style: <style>;
    +$container-style: magic;
     
    - -
      + +
      • <style>: magic | static | fluid. - -
          + +
          • magic: Susy's magic grid has a set width, -but becomes fluid rather than overflowing the viewport at small sizes.
          • -
          • + but becomes fluid rather than overflowing the viewport at small sizes.
          • +
          • static: Susy's static grid will retain the width defined in your settings -at all times.
          • -
          • + at all times.
          • +
          • fluid: Susy's fluid grid will always be based on the viewport width. -The percentage will be determined by your grid settings, -or by $container-width, if either is set using % units. -Otherwise it will default to auto (100%).
          • -
          + The percentage will be determined by your grid settings, + or by $container-width, if either is set using % units. + Otherwise it will default to auto (100%). +
      • -
      +

    Direction Override Settings

    - -

    From Direction

    - -

    The side of the Susy Grid from which the flow starts. -For ltr documents, this is the left.

    - -
    // $from-direction: <direction>;
    -$from-direction: left;
    +        
    +        

    From Direction

    + +

    The side of the Susy Grid from which the flow starts. + For ltr documents, this is the left.

    + +
    // $from-direction: <direction>;
    +$from-direction: left;
     
    - -
      + +
      • <direction>: left | right
      • -
      +

    Omega Float

    - -

    The direction that Omega elements should be floated.

    - -
    // $omega-float: <direction>;
    -$omega-float: opposite-position($from-direction);
    +        
    +        

    The direction that Omega elements should be floated.

    + +
    // $omega-float: <direction>;
    +$omega-float: opposite-position($from-direction);
     
    - -
      + +
      • <direction>: left | right
      • -
      +

    Compass Options

    - -

    Base Font Size

    - -

    From the Compass Vertical Rhythm module, -Susy uses your base font size to help manage -em-based media-queries.

    - -
    // $base-font-size: <px-size>;
    -$base-font-size: 16px;
    +        
    +        

    Base Font Size

    + +

    From the Compass Vertical Rhythm module, + Susy uses your base font size to help manage + em-based media-queries.

    + +
    // $base-font-size: <px-size>;
    +$base-font-size: 16px;
     
    - -
      + +
      • <px-size>: Any length in px. -This will not actually effect your font size -unless you use other Vertical Rhythm tools, -we just need to know. -See Compass Docs for further usage details.
      • -
      + This will not actually effect your font size + unless you use other Vertical Rhythm tools, + we just need to know. + See Compass Docs for further usage details. +

    Browser Support

    - -

    Susy recognizes all the Compass Browser Support variables, -although only IE6 and IE7 have special cases attached to them currently.

    - -
    // $legacy-support-for-ie  : <boolean>;
    +        
    +        

    Susy recognizes all the Compass Browser Support variables, + although only IE6 and IE7 have special cases attached to them currently.

    + +
    // $legacy-support-for-ie  : <boolean>;
     // $legacy-support-for-ie6 : <boolean>;
     // $legacy-support-for-ie7 : <boolean>;
    -$legacy-support-for-ie  : true;
    -$legacy-support-for-ie6 : $legacy-support-for-ie;
    -$legacy-support-for-ie7 : $legacy-support-for-ie;
    +$legacy-support-for-ie  : true;
    +$legacy-support-for-ie6 : $legacy-support-for-ie;
    +$legacy-support-for-ie7 : $legacy-support-for-ie;
     
    - -
      + +
      • <boolean>: true | false
      • -
      +

    Breakpoint Output

    - -

    If you are compiling seperate files for IE-fallbacks, -it can be useful to output only the modern code in one file -and only the fallbacks in another file. -You can make at-breakpoint do exactly that -by using the following settings.

    - -

    $breakpoint-media-output

    - -

    Turn off media-query output for IE-only stylesheets.

    - -
    // $breakpoint-media-output: <boolean>;
    -$breakpoint-media-output: true;
    +        
    +        

    If you are compiling seperate files for IE-fallbacks, + it can be useful to output only the modern code in one file + and only the fallbacks in another file. + You can make at-breakpoint do exactly that + by using the following settings.

    + +

    $breakpoint-media-output

    + +

    Turn off media-query output for IE-only stylesheets.

    + +
    // $breakpoint-media-output: <boolean>;
    +$breakpoint-media-output: true;
     
    - -
      + +
      • <boolean>: true | false
      • -
      +

    $breakpoint-ie-output

    - -

    Turn off media-query fallback output for non-IE stylesheets.

    - -
    // $breakpoint-ie-output: <boolean>;
    -$breakpoint-ie-output: true;
    +        
    +        

    Turn off media-query fallback output for non-IE stylesheets.

    + +
    // $breakpoint-ie-output: <boolean>;
    +$breakpoint-ie-output: true;
     
    - -
      + +
      • <boolean>: true | false
      • -
      +

    $breakpoint-raw-output

    - -

    Pass through raw output -without media-queries or fallback classes -for IE-only stylesheets.

    - -
    // $breakpoint-raw-output: <boolean>;
    -$breakpoint-raw-output: false;
    +        
    +        

    Pass through raw output + without media-queries or fallback classes + for IE-only stylesheets.

    + +
    // $breakpoint-raw-output: <boolean>;
    +$breakpoint-raw-output: false;
     
    - -
      + +
      • <boolean>: true | false
      • -

    - + diff --git a/guides/upgrade-1-0/index.html b/guides/upgrade-1-0/index.html index 44e7cb33..76d5e98d 100644 --- a/guides/upgrade-1-0/index.html +++ b/guides/upgrade-1-0/index.html @@ -12,7 +12,7 @@ - + @@ -44,261 +44,261 @@

    Responsive grids for Compass.Twitter

    Upgrade to Susy 1.0

    - -

    This release is loaded with new features, -but don't let that fool you. -Susy has become shockingly simple to use.

    - -

    The interface and syntax have been simplified -so that the language is consistent and easy to understand. -We also cleaned-up the output, -taking into account your Compass browser-support settings, -and giving you more control over exactly how your grids are built. -Then we added a load of responsive tools -and optional new settings -to make Susy as absolutely flexible as possible.

    - -

    I'll cover the basics here, but you should -check out the reference docs and demos -for more detail.

    - -

    The Gem

    - -

    To start with, -the gem name has changed from compass-susy-plugin -to simply susy.

    - -
    # uninstall the old gem !important
    +        
    +        

    This release is loaded with new features, + but don't let that fool you. + Susy has become shockingly simple to use.

    + +

    The interface and syntax have been simplified + so that the language is consistent and easy to understand. + We also cleaned-up the output, + taking into account your Compass browser-support settings, + and giving you more control over exactly how your grids are built. + Then we added a load of responsive tools + and optional new settings + to make Susy as absolutely flexible as possible.

    + +

    I'll cover the basics here, but you should + check out the reference docs and demos + for more detail.

    + +

    The Gem

    + +

    To start with, + the gem name has changed from compass-susy-plugin + to simply susy.

    + +
    # uninstall the old gem !important
     gem uninstall compass-susy-plugin
     
     # install the new gem
     gem install susy
     
    - -

    If you don't uninstall the old gem, you will get errors.

    - -

    This new gem depends on Compass 0.12.2 -and Sass 3.2.0. -However, Compass 0.13.0 alpha -has some advantages -when it comes to Vertical Rhythms -and em-based media-queries.

    - -

    Semantic Simplifications

    - -

    We re-arranged the code -in order to make the syntax simpler and more consistent:

    - -
      + +

      If you don't uninstall the old gem, you will get errors.

      + +

      This new gem depends on Compass 0.12.2 + and Sass 3.2.0. + However, Compass 0.13.0 alpha + has some advantages + when it comes to Vertical Rhythms + and em-based media-queries.

      + +

      Semantic Simplifications

      + +

      We re-arranged the code + in order to make the syntax simpler and more consistent:

      + +
      • $total-cols is now $total-columns.
      • -
      • +
      • $col-width is now $column-width.
      • -
      • +
      • $side-gutter-width is now $grid-padding -and gets applied directly to the grid container.
      • -
      • + and gets applied directly to the grid container.
      • +
      • un-column & reset-column mixins have merged into reset-columns.
      • -
      • +
      • columns has been renamed span-columns to resolve the conflict with CSS3 columns. -See other improvements to span-columns below.
      • -
      + See other improvements to span-columns below. +

    We also removed several bothersome requirements:

    - -
      + +
      • The alpha mixin is no longer needed. Ever.
      • -
      • The omega no longer takes a $context argument.
      • -
      • +
      • The omega no longer takes a $context argument.
      • +
      • full has been removed entirely. -Elements will be full-width by default. -You can add clear: both; back in as needed.
      • -
      • + Elements will be full-width by default. + You can add clear: both; back in as needed.
      • +
      • side-gutter() is no longer needed. -You can use the $grid-padding setting directly.
      • -
      + You can use the $grid-padding setting directly. +

    Upgrade

    - -

    That's all you need in order to upgrade from Susy 0.9.

    - -
      + +

      That's all you need in order to upgrade from Susy 0.9.

      + +
      1. Uninstall and re-install the gem.
      2. -
      3. Find and replace the "semantic simplifications" listed above.
      4. -
      +
    1. Find and replace the "semantic simplifications" listed above.
    2. +

    You're done! Stop worrying about all that "nested vs. root" bullshit, -and start playing with the new toys!

    - -

    If you use the $from directional arguments -directly in the span-columns mixin, -there may be one more change to make. -See below:

    - -

    Span Columns

    - -

    The span-columns mixin now handles many additional use-cases:

    - -
    // span-columns(<$columns> [<omega> , <$context>, <$padding>, <$from>])
    +        and start playing with the new toys!

    + +

    If you use the $from directional arguments + directly in the span-columns mixin, + there may be one more change to make. + See below:

    + +

    Span Columns

    + +

    The span-columns mixin now handles many additional use-cases:

    + +
    // span-columns(<$columns> [<omega> , <$context>, <$padding>, <$from>])
     article { @include span-columns(9); }
     
    - -

    This means "omega" can be applied directly through the $columns argument, -for much more compact input and output:

    - -
    // The OLD way
    +        
    +        

    This means "omega" can be applied directly through the $columns argument, + for much more compact input and output:

    + +
    // The OLD way
     @include columns(4);
     @include omega;
     
     // The NEW way
     @include span-columns(4 omega);
     
    - -

    The omega mixin still exists as a stand-alone option when needed.

    - -

    Internal padding can also be added to the element -through the $padding argument, -without breaking the set column width:

    - -
    // The units for $padding must match your grid setup
    +        
    +        

    The omega mixin still exists as a stand-alone option when needed.

    + +

    Internal padding can also be added to the element + through the $padding argument, + without breaking the set column width:

    + +
    // The units for $padding must match your grid setup
     @include span-columns(4, 12, 3em);
     
     // You can also pass two values for different left and right padding:
     // The first value will be from-direction, the second is the to-direction.
     @include span-columns(4, 12, 3em .5em);
     
    - -

    This pushes the $from argument from third position into fourth. -If you were using e.g. span-columns(6,8,right), -you will need to adjust slightly to accompodate the new argument. -This should not be a common problem.

    - -

    Responsive Web Design

    - -

    Version 1.0 is loaded with responsive tools. -The main feature is the at-breakpoint mixin, -which can be used to set media-layout combinations: -For such-and-such media, use such-and-such layout.

    - -
    // at-breakpoint(<$media-layout> [, <$font-size>]) { <@content> }
    +        
    +        

    This pushes the $from argument from third position into fourth. + If you were using e.g. span-columns(6,8,right), + you will need to adjust slightly to accompodate the new argument. + This should not be a common problem.

    + +

    Responsive Web Design

    + +

    Version 1.0 is loaded with responsive tools. + The main feature is the at-breakpoint mixin, + which can be used to set media-layout combinations: + For such-and-such media, use such-and-such layout.

    + +
    // at-breakpoint(<$media-layout> [, <$font-size>]) { <@content> }
     // - example: a 12-column grid at the media-query min-width of 30em.
     @include at-breakpoint(30em 12) {
       .page { @include container; }
     }
     
    - -

    You can also apply layout to use an arbitrary layout, -or with-grid-settings to change any grid settings. -You can also add breakpoint media-layouts directly to your container as a shortcut, -or use set-container-width inside breakpoints -to adjust the container to it's new context -without the repetative output from multiple applications of container.

    - -

    Use the global -$breakpoint-media-output, $breakpoint-ie-output, and $breakpoint-raw-output -settings -to turn on and off the different outputs from at-breakpoint. -This is useful when you have IE-overrides living in a file of their own.

    - -

    Mason Wendell and Sam Richard -have created their own breakpoint plugin -based on the same ideas. -It's the perfect complement, -for quickly handling your non-grid media-query needs -without learning a whole new syntax.

    - -

    Border-Box Sizing

    - -

    Apply the border-box-sizing mixin at the root of your document -(before any other grid mixins) -to set the border-box model on all elements.

    - -
    @include border-box-sizing;
    +        
    +        

    You can also apply layout to use an arbitrary layout, + or with-grid-settings to change any grid settings. + You can also add breakpoint media-layouts directly to your container as a shortcut, + or use set-container-width inside breakpoints + to adjust the container to it's new context + without the repetative output from multiple applications of container.

    + +

    Use the global + $breakpoint-media-output, $breakpoint-ie-output, and $breakpoint-raw-output + settings + to turn on and off the different outputs from at-breakpoint. + This is useful when you have IE-overrides living in a file of their own.

    + +

    Mason Wendell and Sam Richard + have created their own breakpoint plugin + based on the same ideas. + It's the perfect complement, + for quickly handling your non-grid media-query needs + without learning a whole new syntax.

    + +

    Border-Box Sizing

    + +

    Apply the border-box-sizing mixin at the root of your document + (before any other grid mixins) + to set the border-box model on all elements.

    + +
    @include border-box-sizing;
     
     // other grid code should come after...
     
    - -

    This will apply the popular -* { box-sizing: border-box } -universal box-model fix, -as well as changing the Susy -$border-box-model setting to true for you. -Susy will make all the necessary grid adjustments from there.

    - -

    Grid Shortcuts

    - -

    The space() function can be used anywhere you need column+gutter math. -Unlike the columns() function, -this math will include the column-adjacent gutter.

    - -
    article {
    +        
    +        

    This will apply the popular + * { box-sizing: border-box } + universal box-model fix, + as well as changing the Susy + $border-box-model setting to true for you. + Susy will make all the necessary grid adjustments from there.

    + +

    Grid Shortcuts

    + +

    The space() function can be used anywhere you need column+gutter math. + Unlike the columns() function, + this math will include the column-adjacent gutter.

    + +
    article {
       position: absolute;
       left: space(3);
     }
     
    - -

    In addition to the padding mixins -(prefix, suffix, and pad), -you can now manage margins with -push, pull, pre, post, and squish.

    - -

    Omega Shortcuts

    - -

    Omega is often applied to the nth element in a set.

    - -
    .item {
    +        
    +        

    In addition to the padding mixins + (prefix, suffix, and pad), + you can now manage margins with + push, pull, pre, post, and squish.

    + +

    Omega Shortcuts

    + +

    Omega is often applied to the nth element in a set.

    + +
    .item {
       @include span-columns(3,12);
       &:nth-child(4) {
         @include omega;
       }
     }
     
    - -

    Now you can use the nth-omega mixin -to set omega on any -nth-child, nth-of-type, first, last, or only element.

    - -
    // nth-omega([<$n>, <$selector>, <$from>])
    +        
    +        

    Now you can use the nth-omega mixin + to set omega on any + nth-child, nth-of-type, first, last, or only element.

    + +
    // nth-omega([<$n>, <$selector>, <$from>])
     // $selector options: child (default), last-child, of-type, last-of-type, only.
     .item {
       @include span-columns(3,12);
       @include nth-omega(4);
     }
     
    - -

    You can also remove the omega-specific styles from an element, -returning it to the regular grid flow, -with remove-omega and remove-nth-omega.

    - -

    Container Settings

    - -
      + +

      You can also remove the omega-specific styles from an element, + returning it to the regular grid flow, + with remove-omega and remove-nth-omega.

      + +

      Container Settings

      + +
      • $container-width will override the width of your container -with any arbitrary length.
      • -
      • + with any arbitrary length.
      • +
      • $container-style will override the type of grid container -(magic, fluid, fixed, static, etc) to use. -All the internals remain fluid, -no matter what container style you choose. -That's the entire reason Susy exists.
      • -
      + (magic, fluid, fixed, static, etc) to use. + All the internals remain fluid, + no matter what container style you choose. + That's the entire reason Susy exists. +

    That's All

    - -

    We want Susy to be the most flexible, -semantic, and responsive grid system available. -While the other systems -focus on speed by cutting corners -and making decisions for you, -our goal is to do the math and get out of your way.

    - -

    If you see bugs, -or have ideas for an important new feature, -or simply have questions, -come talk to us. -You can message us on twitter, -or file an issue on github. -Even better, submit a patch!

    - -

    Happy coding!

    -

    + +

    + + Copyright © 2012 + + Eric A. Meyer
    + An OddBird project. +

    • show grid @@ -363,13 +363,11 @@

      New Features

    - diff --git a/index.html b/index.html index c61b91b3..c955fe15 100644 --- a/index.html +++ b/index.html @@ -12,7 +12,7 @@ - + @@ -44,69 +44,69 @@

    Responsive grids for Compass.Twitter
    gem install susy
    - -
    -

    Your markup. Your design. Our math.

    -

    - The web is a responsive place, - from your lithe & lively development process - to your end-user's super-tablet-multi-magic-lap-phone. - You need grids that are powerful yet custom, - reliable yet responsive. -

    -
    - -
    -

    Recent News:

    -
    - -
    -

    10-column complex nested grid AG test + +
    +

    10-column complex nested grid AG test

    -

    ag1 2 of 10

    -
    -

    ag2 6 of 10

    -

    ag4 3 of 6

    -

    ag5 3 of 6 (omega)

    -

    ag6 2 of 6

    -
    -

    ag7 4 of 6 (omega)

    -

    ag8 2 of 4

    -

    ag9 2 of 4 (omega)

    -

    ag10 auto

    -
    -
    -

    ag3 2 of 10 (omega)

    -
    - -
    // Complex AG grid, brought to you by Susy:
    +          

    ag1 2 of 10

    +
    +

    ag2 6 of 10

    +

    ag4 3 of 6

    +

    ag5 3 of 6 (omega)

    +

    ag6 2 of 6

    +
    +

    ag7 4 of 6 (omega)

    +

    ag8 2 of 4

    +

    ag9 2 of 4 (omega)

    +

    ag10 auto

    +
    +
    +

    ag3 2 of 10 (omega)

    +
    + +
    // Complex AG grid, brought to you by Susy:
     .ag1 { @include span-columns(2,10); }
     .ag2 { @include span-columns(6,10); }
     .ag3 { @include span-columns(2 omega, 10); }
    @@ -118,68 +118,68 @@ 

    10-column complex nested grid AG .ag9 { @include span-columns(2 omega,4); } .ag10 { clear: both; }

    - -
    -

    We're just getting warmed up.

    -

    - Quickly add media-query breakpoints for new layouts with - at-breakpoint, - or create your own math - using Susy's array of - grid helpers. - Build a one-off site in minutes, - or create your own scalable grid library - for large projects. -

    -

    - Susy provides the power-tools, - what you build is up to you. -

    -
    + +
    +

    We're just getting warmed up.

    +

    + Quickly add media-query breakpoints for new layouts with + at-breakpoint, + or create your own math + using Susy's array of + grid helpers. + Build a one-off site in minutes, + or create your own scalable grid library + for large projects. +

    +

    + Susy provides the power-tools, + what you build is up to you. +

    +

    + +

    + + Copyright © 2012 + + Eric A. Meyer
    + An OddBird project. +

    • show grid @@ -189,13 +189,11 @@

      We're just getting warmed up.

    - diff --git a/sites-using-susy/index.html b/sites-using-susy/index.html index ae99116f..3412035e 100644 --- a/sites-using-susy/index.html +++ b/sites-using-susy/index.html @@ -12,7 +12,7 @@ - + @@ -44,81 +44,81 @@

    Responsive grids for Compass.Twitter

    Sites Using Susy

    - -

    Have a site to add? Let us know or fork and add your site on GitHub.

    + +

    + + Copyright © 2012 + + Eric A. Meyer
    + An OddBird project. +

    - diff --git a/stylesheets/grid-types.css b/stylesheets/grid-types.css index 9ed37823..0c467047 100644 --- a/stylesheets/grid-types.css +++ b/stylesheets/grid-types.css @@ -1 +1 @@ -html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:400;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block}.highlight{background-color:#f4f4f4;border:solid 1px #eee}.c{color:#93a1a1;font-style:italic}.g{color:#d33682}.k{color:#859900}.l{color:#2aa198}.n{color:#268bd2}.cm{color:#93a1a1;font-style:italic}.cp{color:#93a1a1;font-style:italic}.c1{color:#93a1a1;font-style:italic}.cs{color:#93a1a1;font-style:italic}.gd{color:#d33682}.ge{color:#d33682}.gr{color:#d33682}.gh{color:#d33682}.gi{color:#d33682}.go{color:#d33682}.gp{color:#d33682}.gs{color:#d33682}.gu{color:#d33682}.gt{color:#d33682}.kc{color:#859900;font-weight:700}.kd{color:#859900}.kn{color:#dc322f;font-weight:700}.kp{color:#859900}.kr{color:#859900}.kt{color:#859900;font-weight:700}.ld{color:#2aa198}.m{color:#2aa198;font-weight:700}.s{color:#2aa198}.na{color:#268bd2}.nb{color:#cb4b16}.nc{color:#cb4b16}.no{color:#268bd2}.nd{color:#268bd2}.ni{color:#268bd2}.ne{color:#268bd2}.nf{color:#268bd2}.nl{color:#268bd2}.nn{color:#268bd2}.nx{color:#268bd2}.py{color:#268bd2}.nt{color:#268bd2;font-weight:700}.nv{color:#268bd2}.ow{color:#859900}.w{color:#586e75}.mf{color:#2aa198;font-weight:700}.mh{color:#2aa198;font-weight:700}.mi{color:#2aa198;font-weight:700}.mo{color:#2aa198;font-weight:700}.sb{color:#2aa198}.sc{color:#2aa198}.sd{color:#2aa198}.s2{color:#2aa198}.se{color:#2aa198}.sh{color:#2aa198}.si{color:#2aa198}.sx{color:#2aa198}.sr{color:#2aa198}.s1{color:#2aa198}.ss{color:#2aa198}.bp{color:#cb4b16}.vc{color:#268bd2}.vg{color:#268bd2}.vi{color:#268bd2}.il{color:#2aa198;font-weight:700}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-Book-webfont.eot');src:url('../fonts/FranklinGothic-Book-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-Book-webfont.woff') format('woff'),url('../fonts/FranklinGothic-Book-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-Book-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-BookIt-webfont.eot');src:url('../fonts/FranklinGothic-BookIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-BookIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-BookIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-BookIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-Med-webfont.eot');src:url('../fonts/FranklinGothic-Med-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-Med-webfont.woff') format('woff'),url('../fonts/FranklinGothic-Med-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-Med-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-MedIt-webfont.eot');src:url('../fonts/FranklinGothic-MedIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-MedIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-MedIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-MedIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-Cd-webfont.eot');src:url('../fonts/FranklinGothic-Cd-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-Cd-webfont.woff') format('woff'),url('../fonts/FranklinGothic-Cd-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-Cd-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-CdIt-webfont.eot');src:url('../fonts/FranklinGothic-CdIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-CdIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-CdIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-CdIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-MedCd-webfont.eot');src:url('../fonts/FranklinGothic-MedCd-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-MedCd-webfont.woff') format('woff'),url('../fonts/FranklinGothic-MedCd-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-MedCd-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-MedCdIt-webfont.eot');src:url('../fonts/FranklinGothic-MedCdIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-MedCdIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-MedCdIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-MedCdIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/CenturyOldStyle-Regular-webfont.eot');src:url('../fonts/CenturyOldStyle-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyle-Regular-webfont.woff') format('woff'),url('../fonts/CenturyOldStyle-Regular-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyle-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/CenturyOldStyle-Bold-webfont.eot');src:url('../fonts/CenturyOldStyle-Bold-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyle-Bold-webfont.woff') format('woff'),url('../fonts/CenturyOldStyle-Bold-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyle-Bold-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/CenturyOldStyle-Italic-webfont.eot');src:url('../fonts/CenturyOldStyle-Italic-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyle-Italic-webfont.woff') format('woff'),url('../fonts/CenturyOldStyle-Italic-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyle-Italic-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"CenturyOldStyleFSCaps";src:url('../fonts/CenturyOldStyleCaps-Regular-webfont.eot');src:url('../fonts/CenturyOldStyleCaps-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyleCaps-Regular-webfont.woff') format('woff'),url('../fonts/CenturyOldStyleCaps-Regular-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyleCaps-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"BaskervilleAmp";src:url('../fonts/Baskerville-amp-webfont.eot');src:url('../fonts/Baskerville-amp-webfont.eot?#iefix') format('eot'),url('../fonts/Baskerville-amp-webfont.woff') format('woff'),url('../fonts/Baskerville-amp-webfont.ttf') format('truetype'),url('../fonts/Baskerville-amp-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"susy";src:url('../fonts/susy.eot');src:url('../fonts/susy.eot?#iefix') format('eot'),url('../fonts/susy.svg#susy') format('svg'),url('../fonts/susy.woff') format('woff'),url('../fonts/susy.ttf') format('truetype');font-weight:400;font-style:normal}[role="main"] h1 a:link:before,[role="main"] h1 a:visited:before,[role="main"] h2 a:link:before,[role="main"] h2 a:visited:before,[role="main"] h3 a:link:before,[role="main"] h3 a:visited:before,[role="main"] h4 a:link:before,[role="main"] h4 a:visited:before,[role="main"] h5 a:link:before,[role="main"] h5 a:visited:before,[role="main"] h6 a:link:before,[role="main"] h6 a:visited:before,[role="navigation"] a:link:before,[role="navigation"] a:visited:before,[role="main"] a[href^="http"]::after,[data-icon]:before{font-family:'susy';font-style:normal;font-weight:400;speak:none}[role="main"] h1 a:link:before,[role="main"] h1 a:visited:before,[role="main"] h2 a:link:before,[role="main"] h2 a:visited:before,[role="main"] h3 a:link:before,[role="main"] h3 a:visited:before,[role="main"] h4 a:link:before,[role="main"] h4 a:visited:before,[role="main"] h5 a:link:before,[role="main"] h5 a:visited:before,[role="main"] h6 a:link:before,[role="main"] h6 a:visited:before,[role="navigation"] a:link:before,[role="navigation"] a:visited:before{margin-right:.4em}[role="main"] a[href^="http"]::after{margin-left:.4em}[data-icon]:before{content:attr(data-icon)}[role="main"] h1 a:link:before,[role="main"] h1 a:visited:before,[role="main"] h2 a:link:before,[role="main"] h2 a:visited:before,[role="main"] h3 a:link:before,[role="main"] h3 a:visited:before,[role="main"] h4 a:link:before,[role="main"] h4 a:visited:before,[role="main"] h5 a:link:before,[role="main"] h5 a:visited:before,[role="main"] h6 a:link:before,[role="main"] h6 a:visited:before{content:"\e008"}[role="main"] a[href^="http"]:after{content:"\e009"}[role="navigation"] a:link:before,[role="navigation"] a:visited:before{content:"\e00b"}html{font-size:100%;line-height:1.25em}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{text-shadow:rgba(255,255,255,0.5) 0 1px 0;color:#657b83;background:#fdf6e3;font-family:"CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}b,i{font-weight:400;font-style:normal}.amp{font-family:"BaskervilleAmp","CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}.caps,[role="main"] h2,[role="main"] h4{text-transform:uppercase}a:link,a:visited{color:#dc322f;text-decoration:none}a:hover,a:focus,a:active{color:#8d1a18}.highlight{margin-bottom:1.25em;background:transparent;border:0}code,pre{font-family:Consolas,Menlo,Monaco,"Lucida Console","Liberation Mono","DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",monospace,serif}code{font-size:.90625em;line-height:1.37931em}pre{font-size:.8125em;line-height:1.53846em;border-width:.07692em;border-style:solid;padding:.69231em;background-color:#fbeecb;border-color:#fae7b3;overflow:auto}[role="main"]{font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif}[role="main"] h2{font-size:1.9375em;line-height:1.29032em;border-bottom-width:.09677em;border-bottom-style:solid;padding-bottom:-0.01613em;margin-bottom:.56452em;border-color:#eee8d5;font-weight:700}[role="main"] h2 ~ h2{margin-top:1.29032em}@media (min-width:40em){[role="main"] h2{font-size:2.4375em;line-height:1.28205em;border-bottom-width:.07692em;border-bottom-style:solid;padding-bottom:-0.01282em;margin-bottom:.44872em}[role="main"] h2 ~ h2{margin-top:1.02564em}}[role="main"] h3{font-size:1.9375em;line-height:1.29032em;margin-top:.64516em;margin-bottom:.64516em;font-weight:700}[role="main"] h3 + h4{margin-top:0}@media (min-width:40em){[role="main"] h3{margin-top:1.29032em}}[role="main"] h4{margin-top:2.5em}[role="main"] h5{font-style:italic}[role="main"] h1 a:link,[role="main"] h1 a:visited,[role="main"] h2 a:link,[role="main"] h2 a:visited,[role="main"] h3 a:link,[role="main"] h3 a:visited,[role="main"] h4 a:link,[role="main"] h4 a:visited,[role="main"] h5 a:link,[role="main"] h5 a:visited,[role="main"] h6 a:link,[role="main"] h6 a:visited{position:relative;display:inline-block}[role="main"] h1 a:link::before,[role="main"] h1 a:visited::before,[role="main"] h2 a:link::before,[role="main"] h2 a:visited::before,[role="main"] h3 a:link::before,[role="main"] h3 a:visited::before,[role="main"] h4 a:link::before,[role="main"] h4 a:visited::before,[role="main"] h5 a:link::before,[role="main"] h5 a:visited::before,[role="main"] h6 a:link::before,[role="main"] h6 a:visited::before{-webkit-transition:all 300ms;-moz-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;position:absolute;display:block;right:100%;top:0;margin-right:8px;line-height:inherit}[role="main"] h1 a:hover::before,[role="main"] h1 a:focus::before,[role="main"] h1 a:active::before,[role="main"] h2 a:hover::before,[role="main"] h2 a:focus::before,[role="main"] h2 a:active::before,[role="main"] h3 a:hover::before,[role="main"] h3 a:focus::before,[role="main"] h3 a:active::before,[role="main"] h4 a:hover::before,[role="main"] h4 a:focus::before,[role="main"] h4 a:active::before,[role="main"] h5 a:hover::before,[role="main"] h5 a:focus::before,[role="main"] h5 a:active::before,[role="main"] h6 a:hover::before,[role="main"] h6 a:focus::before,[role="main"] h6 a:active::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}[role="main"] h1 a:link,[role="main"] h1 a:visited,[role="main"] h2 a:link,[role="main"] h2 a:visited,[role="main"] h3 a:link,[role="main"] h3 a:visited{color:#394549}[role="main"] h4 a:link,[role="main"] h4 a:visited,[role="main"] h5 a:link,[role="main"] h5 a:visited,[role="main"] h6 a:link,[role="main"] h6 a:visited{color:#8d1a18}[role="main"] h4 a:link::before,[role="main"] h4 a:visited::before,[role="main"] h5 a:link::before,[role="main"] h5 a:visited::before,[role="main"] h6 a:link::before,[role="main"] h6 a:visited::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=75);opacity:.75}[role="main"] h4 a:hover::before,[role="main"] h4 a:focus::before,[role="main"] h4 a:active::before,[role="main"] h5 a:hover::before,[role="main"] h5 a:focus::before,[role="main"] h5 a:active::before,[role="main"] h6 a:hover::before,[role="main"] h6 a:focus::before,[role="main"] h6 a:active::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}[role="main"] ul,[role="main"] ol,[role="main"] p{margin-bottom:1.25em}[role="main"] li{margin-bottom:.625em}[role="main"] ul{list-style:circle}[role="main"] ol{list-style:decimal}[role="main"] strong,[role="main"] code{font-weight:700;color:#5a6d75}[role="main"] em{font-style:italic}[role="main"] a[href^="http"]::after{font-size:.75em}[role="navigation"]{padding:.625em;background:#002b36;color:#93a1a1;font-style:italic}[role="navigation"] a:link,[role="navigation"] a:visited{color:#eee8d5}[role="navigation"] a:hover,[role="navigation"] a:focus,[role="navigation"] a:active{color:#fdf6e3}.magic-container{*zoom:1;max-width:61em;_width:61em;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto;background:#eee8d5}.magic-container:after{content:"";display:table;clear:both}.magic-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.77966%,rgba(255,254,251,0.5)),color-stop(6.77966%,rgba(0,0,0,0)),color-stop(8.47458%,rgba(0,0,0,0)),color-stop(8.47458%,rgba(255,254,251,0.5)),color-stop(15.25424%,rgba(255,254,251,0.5)),color-stop(15.25424%,rgba(0,0,0,0)),color-stop(16.94915%,rgba(0,0,0,0)),color-stop(16.94915%,rgba(255,254,251,0.5)),color-stop(23.72881%,rgba(255,254,251,0.5)),color-stop(23.72881%,rgba(0,0,0,0)),color-stop(25.42373%,rgba(0,0,0,0)),color-stop(25.42373%,rgba(255,254,251,0.5)),color-stop(32.20339%,rgba(255,254,251,0.5)),color-stop(32.20339%,rgba(0,0,0,0)),color-stop(33.89831%,rgba(0,0,0,0)),color-stop(33.89831%,rgba(255,254,251,0.5)),color-stop(40.67797%,rgba(255,254,251,0.5)),color-stop(40.67797%,rgba(0,0,0,0)),color-stop(42.37288%,rgba(0,0,0,0)),color-stop(42.37288%,rgba(255,254,251,0.5)),color-stop(49.15254%,rgba(255,254,251,0.5)),color-stop(49.15254%,rgba(0,0,0,0)),color-stop(50.84746%,rgba(0,0,0,0)),color-stop(50.84746%,rgba(255,254,251,0.5)),color-stop(57.62712%,rgba(255,254,251,0.5)),color-stop(57.62712%,rgba(0,0,0,0)),color-stop(59.32203%,rgba(0,0,0,0)),color-stop(59.32203%,rgba(255,254,251,0.5)),color-stop(66.10169%,rgba(255,254,251,0.5)),color-stop(66.10169%,rgba(0,0,0,0)),color-stop(67.79661%,rgba(0,0,0,0)),color-stop(67.79661%,rgba(255,254,251,0.5)),color-stop(74.57627%,rgba(255,254,251,0.5)),color-stop(74.57627%,rgba(0,0,0,0)),color-stop(76.27119%,rgba(0,0,0,0)),color-stop(76.27119%,rgba(255,254,251,0.5)),color-stop(83.05085%,rgba(255,254,251,0.5)),color-stop(83.05085%,rgba(0,0,0,0)),color-stop(84.74576%,rgba(0,0,0,0)),color-stop(84.74576%,rgba(255,254,251,0.5)),color-stop(91.52542%,rgba(255,254,251,0.5)),color-stop(91.52542%,rgba(0,0,0,0)),color-stop(93.22034%,rgba(0,0,0,0)),color-stop(93.22034%,rgba(255,254,251,0.5)),color-stop(100.0%,rgba(255,254,251,0.5)),color-stop(100.0%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,rgba(255,254,251,0.5) 8.47458%,rgba(255,254,251,0.5) 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,rgba(255,254,251,0.5) 16.94915%,rgba(255,254,251,0.5) 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,rgba(255,254,251,0.5) 25.42373%,rgba(255,254,251,0.5) 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,rgba(255,254,251,0.5) 33.89831%,rgba(255,254,251,0.5) 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,rgba(255,254,251,0.5) 42.37288%,rgba(255,254,251,0.5) 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,rgba(255,254,251,0.5) 50.84746%,rgba(255,254,251,0.5) 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,rgba(255,254,251,0.5) 59.32203%,rgba(255,254,251,0.5) 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,rgba(255,254,251,0.5) 67.79661%,rgba(255,254,251,0.5) 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,rgba(255,254,251,0.5) 76.27119%,rgba(255,254,251,0.5) 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,rgba(255,254,251,0.5) 84.74576%,rgba(255,254,251,0.5) 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,rgba(255,254,251,0.5) 93.22034%,rgba(255,254,251,0.5) 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,rgba(255,254,251,0.5) 8.47458%,rgba(255,254,251,0.5) 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,rgba(255,254,251,0.5) 16.94915%,rgba(255,254,251,0.5) 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,rgba(255,254,251,0.5) 25.42373%,rgba(255,254,251,0.5) 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,rgba(255,254,251,0.5) 33.89831%,rgba(255,254,251,0.5) 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,rgba(255,254,251,0.5) 42.37288%,rgba(255,254,251,0.5) 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,rgba(255,254,251,0.5) 50.84746%,rgba(255,254,251,0.5) 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,rgba(255,254,251,0.5) 59.32203%,rgba(255,254,251,0.5) 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,rgba(255,254,251,0.5) 67.79661%,rgba(255,254,251,0.5) 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,rgba(255,254,251,0.5) 76.27119%,rgba(255,254,251,0.5) 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,rgba(255,254,251,0.5) 84.74576%,rgba(255,254,251,0.5) 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,rgba(255,254,251,0.5) 93.22034%,rgba(255,254,251,0.5) 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,rgba(255,254,251,0.5) 8.47458%,rgba(255,254,251,0.5) 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,rgba(255,254,251,0.5) 16.94915%,rgba(255,254,251,0.5) 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,rgba(255,254,251,0.5) 25.42373%,rgba(255,254,251,0.5) 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,rgba(255,254,251,0.5) 33.89831%,rgba(255,254,251,0.5) 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,rgba(255,254,251,0.5) 42.37288%,rgba(255,254,251,0.5) 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,rgba(255,254,251,0.5) 50.84746%,rgba(255,254,251,0.5) 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,rgba(255,254,251,0.5) 59.32203%,rgba(255,254,251,0.5) 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,rgba(255,254,251,0.5) 67.79661%,rgba(255,254,251,0.5) 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,rgba(255,254,251,0.5) 76.27119%,rgba(255,254,251,0.5) 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,rgba(255,254,251,0.5) 84.74576%,rgba(255,254,251,0.5) 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,rgba(255,254,251,0.5) 93.22034%,rgba(255,254,251,0.5) 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,rgba(255,254,251,0.5) 8.47458%,rgba(255,254,251,0.5) 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,rgba(255,254,251,0.5) 16.94915%,rgba(255,254,251,0.5) 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,rgba(255,254,251,0.5) 25.42373%,rgba(255,254,251,0.5) 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,rgba(255,254,251,0.5) 33.89831%,rgba(255,254,251,0.5) 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,rgba(255,254,251,0.5) 42.37288%,rgba(255,254,251,0.5) 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,rgba(255,254,251,0.5) 50.84746%,rgba(255,254,251,0.5) 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,rgba(255,254,251,0.5) 59.32203%,rgba(255,254,251,0.5) 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,rgba(255,254,251,0.5) 67.79661%,rgba(255,254,251,0.5) 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,rgba(255,254,251,0.5) 76.27119%,rgba(255,254,251,0.5) 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,rgba(255,254,251,0.5) 84.74576%,rgba(255,254,251,0.5) 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,rgba(255,254,251,0.5) 93.22034%,rgba(255,254,251,0.5) 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.fluid-container{*zoom:1;padding-left:10px;padding-right:10px;margin-left:auto;margin-right:auto;background:#eee8d5}.fluid-container:after{content:"";display:table;clear:both}.fluid-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.fluid-60-container{*zoom:1;width:60%;padding-left:10px;padding-right:10px;margin-left:auto;margin-right:auto;background:#eee8d5}.fluid-60-container:after{content:"";display:table;clear:both}.fluid-60-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.static-container{*zoom:1;width:61em;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto;background:#eee8d5}.static-container:after{content:"";display:table;clear:both}.static-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.66667%,rgba(255,254,251,0.5)),color-stop(6.66667%,rgba(0,0,0,0)),color-stop(8.33333%,rgba(0,0,0,0)),color-stop(8.33333%,rgba(255,254,251,0.5)),color-stop(15%,rgba(255,254,251,0.5)),color-stop(15%,rgba(0,0,0,0)),color-stop(16.66667%,rgba(0,0,0,0)),color-stop(16.66667%,rgba(255,254,251,0.5)),color-stop(23.33333%,rgba(255,254,251,0.5)),color-stop(23.33333%,rgba(0,0,0,0)),color-stop(25%,rgba(0,0,0,0)),color-stop(25%,rgba(255,254,251,0.5)),color-stop(31.66667%,rgba(255,254,251,0.5)),color-stop(31.66667%,rgba(0,0,0,0)),color-stop(33.33333%,rgba(0,0,0,0)),color-stop(33.33333%,rgba(255,254,251,0.5)),color-stop(40%,rgba(255,254,251,0.5)),color-stop(40%,rgba(0,0,0,0)),color-stop(41.66667%,rgba(0,0,0,0)),color-stop(41.66667%,rgba(255,254,251,0.5)),color-stop(48.33333%,rgba(255,254,251,0.5)),color-stop(48.33333%,rgba(0,0,0,0)),color-stop(50%,rgba(0,0,0,0)),color-stop(50%,rgba(255,254,251,0.5)),color-stop(56.66667%,rgba(255,254,251,0.5)),color-stop(56.66667%,rgba(0,0,0,0)),color-stop(58.33333%,rgba(0,0,0,0)),color-stop(58.33333%,rgba(255,254,251,0.5)),color-stop(65%,rgba(255,254,251,0.5)),color-stop(65%,rgba(0,0,0,0)),color-stop(66.66667%,rgba(0,0,0,0)),color-stop(66.66667%,rgba(255,254,251,0.5)),color-stop(73.33333%,rgba(255,254,251,0.5)),color-stop(73.33333%,rgba(0,0,0,0)),color-stop(75%,rgba(0,0,0,0)),color-stop(75%,rgba(255,254,251,0.5)),color-stop(81.66667%,rgba(255,254,251,0.5)),color-stop(81.66667%,rgba(0,0,0,0)),color-stop(83.33333%,rgba(0,0,0,0)),color-stop(83.33333%,rgba(255,254,251,0.5)),color-stop(90%,rgba(255,254,251,0.5)),color-stop(90%,rgba(0,0,0,0)),color-stop(91.66667%,rgba(0,0,0,0)),color-stop(91.66667%,rgba(255,254,251,0.5)),color-stop(98.33333%,rgba(255,254,251,0.5)),color-stop(98.33333%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 4em,rgba(0,0,0,0) 4em,rgba(0,0,0,0) 5em,rgba(255,254,251,0.5) 5em,rgba(255,254,251,0.5) 9em,rgba(0,0,0,0) 9em,rgba(0,0,0,0) 10em,rgba(255,254,251,0.5) 10em,rgba(255,254,251,0.5) 14em,rgba(0,0,0,0) 14em,rgba(0,0,0,0) 15em,rgba(255,254,251,0.5) 15em,rgba(255,254,251,0.5) 19em,rgba(0,0,0,0) 19em,rgba(0,0,0,0) 20em,rgba(255,254,251,0.5) 20em,rgba(255,254,251,0.5) 24em,rgba(0,0,0,0) 24em,rgba(0,0,0,0) 25em,rgba(255,254,251,0.5) 25em,rgba(255,254,251,0.5) 29em,rgba(0,0,0,0) 29em,rgba(0,0,0,0) 30em,rgba(255,254,251,0.5) 30em,rgba(255,254,251,0.5) 34em,rgba(0,0,0,0) 34em,rgba(0,0,0,0) 35em,rgba(255,254,251,0.5) 35em,rgba(255,254,251,0.5) 39em,rgba(0,0,0,0) 39em,rgba(0,0,0,0) 40em,rgba(255,254,251,0.5) 40em,rgba(255,254,251,0.5) 44em,rgba(0,0,0,0) 44em,rgba(0,0,0,0) 45em,rgba(255,254,251,0.5) 45em,rgba(255,254,251,0.5) 49em,rgba(0,0,0,0) 49em,rgba(0,0,0,0) 50em,rgba(255,254,251,0.5) 50em,rgba(255,254,251,0.5) 54em,rgba(0,0,0,0) 54em,rgba(0,0,0,0) 55em,rgba(255,254,251,0.5) 55em,rgba(255,254,251,0.5) 59em,rgba(0,0,0,0) 59em,rgba(0,0,0,0) 60em);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 4em,rgba(0,0,0,0) 4em,rgba(0,0,0,0) 5em,rgba(255,254,251,0.5) 5em,rgba(255,254,251,0.5) 9em,rgba(0,0,0,0) 9em,rgba(0,0,0,0) 10em,rgba(255,254,251,0.5) 10em,rgba(255,254,251,0.5) 14em,rgba(0,0,0,0) 14em,rgba(0,0,0,0) 15em,rgba(255,254,251,0.5) 15em,rgba(255,254,251,0.5) 19em,rgba(0,0,0,0) 19em,rgba(0,0,0,0) 20em,rgba(255,254,251,0.5) 20em,rgba(255,254,251,0.5) 24em,rgba(0,0,0,0) 24em,rgba(0,0,0,0) 25em,rgba(255,254,251,0.5) 25em,rgba(255,254,251,0.5) 29em,rgba(0,0,0,0) 29em,rgba(0,0,0,0) 30em,rgba(255,254,251,0.5) 30em,rgba(255,254,251,0.5) 34em,rgba(0,0,0,0) 34em,rgba(0,0,0,0) 35em,rgba(255,254,251,0.5) 35em,rgba(255,254,251,0.5) 39em,rgba(0,0,0,0) 39em,rgba(0,0,0,0) 40em,rgba(255,254,251,0.5) 40em,rgba(255,254,251,0.5) 44em,rgba(0,0,0,0) 44em,rgba(0,0,0,0) 45em,rgba(255,254,251,0.5) 45em,rgba(255,254,251,0.5) 49em,rgba(0,0,0,0) 49em,rgba(0,0,0,0) 50em,rgba(255,254,251,0.5) 50em,rgba(255,254,251,0.5) 54em,rgba(0,0,0,0) 54em,rgba(0,0,0,0) 55em,rgba(255,254,251,0.5) 55em,rgba(255,254,251,0.5) 59em,rgba(0,0,0,0) 59em,rgba(0,0,0,0) 60em);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 4em,rgba(0,0,0,0) 4em,rgba(0,0,0,0) 5em,rgba(255,254,251,0.5) 5em,rgba(255,254,251,0.5) 9em,rgba(0,0,0,0) 9em,rgba(0,0,0,0) 10em,rgba(255,254,251,0.5) 10em,rgba(255,254,251,0.5) 14em,rgba(0,0,0,0) 14em,rgba(0,0,0,0) 15em,rgba(255,254,251,0.5) 15em,rgba(255,254,251,0.5) 19em,rgba(0,0,0,0) 19em,rgba(0,0,0,0) 20em,rgba(255,254,251,0.5) 20em,rgba(255,254,251,0.5) 24em,rgba(0,0,0,0) 24em,rgba(0,0,0,0) 25em,rgba(255,254,251,0.5) 25em,rgba(255,254,251,0.5) 29em,rgba(0,0,0,0) 29em,rgba(0,0,0,0) 30em,rgba(255,254,251,0.5) 30em,rgba(255,254,251,0.5) 34em,rgba(0,0,0,0) 34em,rgba(0,0,0,0) 35em,rgba(255,254,251,0.5) 35em,rgba(255,254,251,0.5) 39em,rgba(0,0,0,0) 39em,rgba(0,0,0,0) 40em,rgba(255,254,251,0.5) 40em,rgba(255,254,251,0.5) 44em,rgba(0,0,0,0) 44em,rgba(0,0,0,0) 45em,rgba(255,254,251,0.5) 45em,rgba(255,254,251,0.5) 49em,rgba(0,0,0,0) 49em,rgba(0,0,0,0) 50em,rgba(255,254,251,0.5) 50em,rgba(255,254,251,0.5) 54em,rgba(0,0,0,0) 54em,rgba(0,0,0,0) 55em,rgba(255,254,251,0.5) 55em,rgba(255,254,251,0.5) 59em,rgba(0,0,0,0) 59em,rgba(0,0,0,0) 60em);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 4em,rgba(0,0,0,0) 4em,rgba(0,0,0,0) 5em,rgba(255,254,251,0.5) 5em,rgba(255,254,251,0.5) 9em,rgba(0,0,0,0) 9em,rgba(0,0,0,0) 10em,rgba(255,254,251,0.5) 10em,rgba(255,254,251,0.5) 14em,rgba(0,0,0,0) 14em,rgba(0,0,0,0) 15em,rgba(255,254,251,0.5) 15em,rgba(255,254,251,0.5) 19em,rgba(0,0,0,0) 19em,rgba(0,0,0,0) 20em,rgba(255,254,251,0.5) 20em,rgba(255,254,251,0.5) 24em,rgba(0,0,0,0) 24em,rgba(0,0,0,0) 25em,rgba(255,254,251,0.5) 25em,rgba(255,254,251,0.5) 29em,rgba(0,0,0,0) 29em,rgba(0,0,0,0) 30em,rgba(255,254,251,0.5) 30em,rgba(255,254,251,0.5) 34em,rgba(0,0,0,0) 34em,rgba(0,0,0,0) 35em,rgba(255,254,251,0.5) 35em,rgba(255,254,251,0.5) 39em,rgba(0,0,0,0) 39em,rgba(0,0,0,0) 40em,rgba(255,254,251,0.5) 40em,rgba(255,254,251,0.5) 44em,rgba(0,0,0,0) 44em,rgba(0,0,0,0) 45em,rgba(255,254,251,0.5) 45em,rgba(255,254,251,0.5) 49em,rgba(0,0,0,0) 49em,rgba(0,0,0,0) 50em,rgba(255,254,251,0.5) 50em,rgba(255,254,251,0.5) 54em,rgba(0,0,0,0) 54em,rgba(0,0,0,0) 55em,rgba(255,254,251,0.5) 55em,rgba(255,254,251,0.5) 59em,rgba(0,0,0,0) 59em,rgba(0,0,0,0) 60em);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.larger-960-container{*zoom:1;width:1140px;padding-left:10px;padding-right:10px;margin-left:auto;margin-right:auto;background:#eee8d5}.larger-960-container:after{content:"";display:table;clear:both}.larger-960-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.elastic-960-container{*zoom:1;max-width:60em;_width:60em;padding-left:10px;padding-right:10px;margin-left:auto;margin-right:auto;background:#eee8d5}.elastic-960-container:after{content:"";display:table;clear:both}.elastic-960-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.elastic-percentage-container{*zoom:1;max-width:50em;_width:50em;padding-left:1%;padding-right:1%;margin-left:auto;margin-right:auto;background:#eee8d5}.elastic-percentage-container:after{content:"";display:table;clear:both}.elastic-percentage-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}[role="main"]{margin-bottom:6.25em}[role="main"] h2,[role="main"] h3,[role="main"] > p,[role="main"] div{*zoom:1;max-width:500px;_width:500px;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto}[role="main"] h2:after,[role="main"] h3:after,[role="main"] > p:after,[role="main"] div:after{content:"";display:table;clear:both}[role="main"] aside{border:1px solid #eee8d5;text-align:center}[role="main"] aside b{font-weight:700}[role="main"] aside p{margin-bottom:2.5em}[role='banner']{*zoom:1;max-width:500px;_width:500px;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto;font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif;margin-top:1.25em;margin-bottom:1.25em;font-weight:700}[role='banner']:after{content:"";display:table;clear:both}[role='banner'] h1{font-size:2.4375em;line-height:1.28205em;color:#dc322f}[role='banner'] h2{text-transform:uppercase}.pagenav{*zoom:1;max-width:46em;_width:46em;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto;margin-bottom:1.25em;font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif;background:#eee8d5;text-align:center}.pagenav:after{content:"";display:table;clear:both}.pagenav ul{margin:0;padding:0;border:0;overflow:hidden;*zoom:1}.pagenav ul li{list-style-image:none;list-style-type:none;margin-left:0;display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;white-space:nowrap}.pagenav a{display:block;padding:.625em 1.25em;font-weight:700;text-transform:capitalize} \ No newline at end of file +html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:400;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block}.highlight{background-color:#f4f4f4;border:solid 1px #eee}.c{color:#93a1a1;font-style:italic}.g{color:#d33682}.k{color:#859900}.l{color:#2aa198}.n{color:#268bd2}.cm{color:#93a1a1;font-style:italic}.cp{color:#93a1a1;font-style:italic}.c1{color:#93a1a1;font-style:italic}.cs{color:#93a1a1;font-style:italic}.gd{color:#d33682}.ge{color:#d33682}.gr{color:#d33682}.gh{color:#d33682}.gi{color:#d33682}.go{color:#d33682}.gp{color:#d33682}.gs{color:#d33682}.gu{color:#d33682}.gt{color:#d33682}.kc{color:#859900;font-weight:700}.kd{color:#859900}.kn{color:#dc322f;font-weight:700}.kp{color:#859900}.kr{color:#859900}.kt{color:#859900;font-weight:700}.ld{color:#2aa198}.m{color:#2aa198;font-weight:700}.s{color:#2aa198}.na{color:#268bd2}.nb{color:#cb4b16}.nc{color:#cb4b16}.no{color:#268bd2}.nd{color:#268bd2}.ni{color:#268bd2}.ne{color:#268bd2}.nf{color:#268bd2}.nl{color:#268bd2}.nn{color:#268bd2}.nx{color:#268bd2}.py{color:#268bd2}.nt{color:#268bd2;font-weight:700}.nv{color:#268bd2}.ow{color:#859900}.w{color:#586e75}.mf{color:#2aa198;font-weight:700}.mh{color:#2aa198;font-weight:700}.mi{color:#2aa198;font-weight:700}.mo{color:#2aa198;font-weight:700}.sb{color:#2aa198}.sc{color:#2aa198}.sd{color:#2aa198}.s2{color:#2aa198}.se{color:#2aa198}.sh{color:#2aa198}.si{color:#2aa198}.sx{color:#2aa198}.sr{color:#2aa198}.s1{color:#2aa198}.ss{color:#2aa198}.bp{color:#cb4b16}.vc{color:#268bd2}.vg{color:#268bd2}.vi{color:#268bd2}.il{color:#2aa198;font-weight:700}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-Book-webfont.eot');src:url('../fonts/fg/FranklinGothic-Book-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-Book-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-Book-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-Book-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-BookIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-BookIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-BookIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-BookIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-BookIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-Med-webfont.eot');src:url('../fonts/fg/FranklinGothic-Med-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-Med-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-Med-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-Med-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-MedIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-MedIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-MedIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-MedIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-MedIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-Cd-webfont.eot');src:url('../fonts/fg/FranklinGothic-Cd-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-Cd-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-Cd-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-Cd-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-CdIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-CdIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-CdIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-CdIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-CdIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-MedCd-webfont.eot');src:url('../fonts/fg/FranklinGothic-MedCd-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-MedCd-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-MedCd-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-MedCd-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-MedCdIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-MedCdIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-MedCdIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-MedCdIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-MedCdIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/cos/CenturyOldStyle-Regular-webfont.eot');src:url('../fonts/cos/CenturyOldStyle-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyle-Regular-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyle-Regular-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyle-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/cos/CenturyOldStyle-Bold-webfont.eot');src:url('../fonts/cos/CenturyOldStyle-Bold-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyle-Bold-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyle-Bold-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyle-Bold-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/cos/CenturyOldStyle-Italic-webfont.eot');src:url('../fonts/cos/CenturyOldStyle-Italic-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyle-Italic-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyle-Italic-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyle-Italic-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"CenturyOldStyleFSCaps";src:url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.eot');src:url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"BaskervilleAmp";src:url('../fonts/amp/Baskerville-amp-webfont.eot');src:url('../fonts/amp/Baskerville-amp-webfont.eot?#iefix') format('eot'),url('../fonts/amp/Baskerville-amp-webfont.woff') format('woff'),url('../fonts/amp/Baskerville-amp-webfont.ttf') format('truetype'),url('../fonts/amp/Baskerville-amp-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"susy";src:url('../fonts/icons/susy.eot');src:url('../fonts/icons/susy.eot?#iefix') format('eot'),url('../fonts/icons/susy.svg#susy') format('svg'),url('../fonts/icons/susy.woff') format('woff'),url('../fonts/icons/susy.ttf') format('truetype');font-weight:400;font-style:normal}[role="main"] h1 a:link:before,[role="main"] h1 a:visited:before,[role="main"] h2 a:link:before,[role="main"] h2 a:visited:before,[role="main"] h3 a:link:before,[role="main"] h3 a:visited:before,[role="main"] h4 a:link:before,[role="main"] h4 a:visited:before,[role="main"] h5 a:link:before,[role="main"] h5 a:visited:before,[role="main"] h6 a:link:before,[role="main"] h6 a:visited:before,[role="navigation"] a:link:before,[role="navigation"] a:visited:before,[role="main"] a[href^="http"]::after,[data-icon]:before{font-family:'susy';font-style:normal;font-weight:400;speak:none}[role="main"] h1 a:link:before,[role="main"] h1 a:visited:before,[role="main"] h2 a:link:before,[role="main"] h2 a:visited:before,[role="main"] h3 a:link:before,[role="main"] h3 a:visited:before,[role="main"] h4 a:link:before,[role="main"] h4 a:visited:before,[role="main"] h5 a:link:before,[role="main"] h5 a:visited:before,[role="main"] h6 a:link:before,[role="main"] h6 a:visited:before,[role="navigation"] a:link:before,[role="navigation"] a:visited:before{margin-right:.4em}[role="main"] a[href^="http"]::after{margin-left:.4em}[data-icon]:before{content:attr(data-icon)}[role="main"] h1 a:link:before,[role="main"] h1 a:visited:before,[role="main"] h2 a:link:before,[role="main"] h2 a:visited:before,[role="main"] h3 a:link:before,[role="main"] h3 a:visited:before,[role="main"] h4 a:link:before,[role="main"] h4 a:visited:before,[role="main"] h5 a:link:before,[role="main"] h5 a:visited:before,[role="main"] h6 a:link:before,[role="main"] h6 a:visited:before{content:"\e008"}[role="main"] a[href^="http"]:after{content:"\e009"}[role="navigation"] a:link:before,[role="navigation"] a:visited:before{content:"\e00b"}html{font-size:100%;line-height:1.25em}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{text-shadow:rgba(255,255,255,0.5) 0 1px 0;color:#657b83;background:#fdf6e3;font-family:"CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}b,i{font-weight:400;font-style:normal}.amp{font-family:"BaskervilleAmp","CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}.caps,[role="main"] h2,[role="main"] h4{text-transform:uppercase}a:link,a:visited{color:#dc322f;text-decoration:none}a:hover,a:focus,a:active{color:#8d1a18}.highlight{margin-bottom:1.25em;background:transparent;border:0}code,pre{font-family:Consolas,Menlo,Monaco,"Lucida Console","Liberation Mono","DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",monospace,serif}code{font-size:.90625em;line-height:1.37931em}pre{font-size:.8125em;line-height:1.53846em;border-width:.07692em;border-style:solid;padding:.69231em;background-color:#fbeecb;border-color:#fae7b3;overflow:auto}[role="main"]{font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif}[role="main"] h2{font-size:1.9375em;line-height:1.29032em;border-bottom-width:.09677em;border-bottom-style:solid;padding-bottom:-0.01613em;margin-bottom:.56452em;border-color:#eee8d5;font-weight:700}[role="main"] h2 ~ h2{margin-top:1.29032em}@media (min-width:40em){[role="main"] h2{font-size:2.4375em;line-height:1.28205em;border-bottom-width:.07692em;border-bottom-style:solid;padding-bottom:-0.01282em;margin-bottom:.44872em}[role="main"] h2 ~ h2{margin-top:1.02564em}}[role="main"] h3{font-size:1.9375em;line-height:1.29032em;margin-top:.64516em;margin-bottom:.64516em;font-weight:700}[role="main"] h3 + h4{margin-top:0}@media (min-width:40em){[role="main"] h3{margin-top:1.29032em}}[role="main"] h4{margin-top:2.5em}[role="main"] h5{font-style:italic}[role="main"] h1 a:link,[role="main"] h1 a:visited,[role="main"] h2 a:link,[role="main"] h2 a:visited,[role="main"] h3 a:link,[role="main"] h3 a:visited,[role="main"] h4 a:link,[role="main"] h4 a:visited,[role="main"] h5 a:link,[role="main"] h5 a:visited,[role="main"] h6 a:link,[role="main"] h6 a:visited{position:relative;display:inline-block}[role="main"] h1 a:link::before,[role="main"] h1 a:visited::before,[role="main"] h2 a:link::before,[role="main"] h2 a:visited::before,[role="main"] h3 a:link::before,[role="main"] h3 a:visited::before,[role="main"] h4 a:link::before,[role="main"] h4 a:visited::before,[role="main"] h5 a:link::before,[role="main"] h5 a:visited::before,[role="main"] h6 a:link::before,[role="main"] h6 a:visited::before{-webkit-transition:all 300ms;-moz-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;position:absolute;display:block;right:100%;top:0;margin-right:8px;line-height:inherit}[role="main"] h1 a:hover::before,[role="main"] h1 a:focus::before,[role="main"] h1 a:active::before,[role="main"] h2 a:hover::before,[role="main"] h2 a:focus::before,[role="main"] h2 a:active::before,[role="main"] h3 a:hover::before,[role="main"] h3 a:focus::before,[role="main"] h3 a:active::before,[role="main"] h4 a:hover::before,[role="main"] h4 a:focus::before,[role="main"] h4 a:active::before,[role="main"] h5 a:hover::before,[role="main"] h5 a:focus::before,[role="main"] h5 a:active::before,[role="main"] h6 a:hover::before,[role="main"] h6 a:focus::before,[role="main"] h6 a:active::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}[role="main"] h1 a:link,[role="main"] h1 a:visited,[role="main"] h2 a:link,[role="main"] h2 a:visited,[role="main"] h3 a:link,[role="main"] h3 a:visited{color:#394549}[role="main"] h4 a:link,[role="main"] h4 a:visited,[role="main"] h5 a:link,[role="main"] h5 a:visited,[role="main"] h6 a:link,[role="main"] h6 a:visited{color:#8d1a18}[role="main"] h4 a:link::before,[role="main"] h4 a:visited::before,[role="main"] h5 a:link::before,[role="main"] h5 a:visited::before,[role="main"] h6 a:link::before,[role="main"] h6 a:visited::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=75);opacity:.75}[role="main"] h4 a:hover::before,[role="main"] h4 a:focus::before,[role="main"] h4 a:active::before,[role="main"] h5 a:hover::before,[role="main"] h5 a:focus::before,[role="main"] h5 a:active::before,[role="main"] h6 a:hover::before,[role="main"] h6 a:focus::before,[role="main"] h6 a:active::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}[role="main"] ul,[role="main"] ol,[role="main"] p{margin-bottom:1.25em}[role="main"] li{margin-bottom:.625em}[role="main"] ul{list-style:circle}[role="main"] ol{list-style:decimal}[role="main"] strong,[role="main"] code{font-weight:700;color:#5a6d75}[role="main"] em{font-style:italic}[role="main"] a[href^="http"]::after{font-size:.75em}[role="navigation"]{padding:.625em;background:#002b36;color:#93a1a1;font-style:italic}[role="navigation"] a:link,[role="navigation"] a:visited{color:#eee8d5}[role="navigation"] a:hover,[role="navigation"] a:focus,[role="navigation"] a:active{color:#fdf6e3}.magic-container{*zoom:1;max-width:61em;_width:61em;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto;background:#eee8d5}.magic-container:after{content:"";display:table;clear:both}.magic-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.77966%,rgba(255,254,251,0.5)),color-stop(6.77966%,rgba(0,0,0,0)),color-stop(8.47458%,rgba(0,0,0,0)),color-stop(8.47458%,rgba(255,254,251,0.5)),color-stop(15.25424%,rgba(255,254,251,0.5)),color-stop(15.25424%,rgba(0,0,0,0)),color-stop(16.94915%,rgba(0,0,0,0)),color-stop(16.94915%,rgba(255,254,251,0.5)),color-stop(23.72881%,rgba(255,254,251,0.5)),color-stop(23.72881%,rgba(0,0,0,0)),color-stop(25.42373%,rgba(0,0,0,0)),color-stop(25.42373%,rgba(255,254,251,0.5)),color-stop(32.20339%,rgba(255,254,251,0.5)),color-stop(32.20339%,rgba(0,0,0,0)),color-stop(33.89831%,rgba(0,0,0,0)),color-stop(33.89831%,rgba(255,254,251,0.5)),color-stop(40.67797%,rgba(255,254,251,0.5)),color-stop(40.67797%,rgba(0,0,0,0)),color-stop(42.37288%,rgba(0,0,0,0)),color-stop(42.37288%,rgba(255,254,251,0.5)),color-stop(49.15254%,rgba(255,254,251,0.5)),color-stop(49.15254%,rgba(0,0,0,0)),color-stop(50.84746%,rgba(0,0,0,0)),color-stop(50.84746%,rgba(255,254,251,0.5)),color-stop(57.62712%,rgba(255,254,251,0.5)),color-stop(57.62712%,rgba(0,0,0,0)),color-stop(59.32203%,rgba(0,0,0,0)),color-stop(59.32203%,rgba(255,254,251,0.5)),color-stop(66.10169%,rgba(255,254,251,0.5)),color-stop(66.10169%,rgba(0,0,0,0)),color-stop(67.79661%,rgba(0,0,0,0)),color-stop(67.79661%,rgba(255,254,251,0.5)),color-stop(74.57627%,rgba(255,254,251,0.5)),color-stop(74.57627%,rgba(0,0,0,0)),color-stop(76.27119%,rgba(0,0,0,0)),color-stop(76.27119%,rgba(255,254,251,0.5)),color-stop(83.05085%,rgba(255,254,251,0.5)),color-stop(83.05085%,rgba(0,0,0,0)),color-stop(84.74576%,rgba(0,0,0,0)),color-stop(84.74576%,rgba(255,254,251,0.5)),color-stop(91.52542%,rgba(255,254,251,0.5)),color-stop(91.52542%,rgba(0,0,0,0)),color-stop(93.22034%,rgba(0,0,0,0)),color-stop(93.22034%,rgba(255,254,251,0.5)),color-stop(100.0%,rgba(255,254,251,0.5)),color-stop(100.0%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,rgba(255,254,251,0.5) 8.47458%,rgba(255,254,251,0.5) 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,rgba(255,254,251,0.5) 16.94915%,rgba(255,254,251,0.5) 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,rgba(255,254,251,0.5) 25.42373%,rgba(255,254,251,0.5) 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,rgba(255,254,251,0.5) 33.89831%,rgba(255,254,251,0.5) 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,rgba(255,254,251,0.5) 42.37288%,rgba(255,254,251,0.5) 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,rgba(255,254,251,0.5) 50.84746%,rgba(255,254,251,0.5) 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,rgba(255,254,251,0.5) 59.32203%,rgba(255,254,251,0.5) 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,rgba(255,254,251,0.5) 67.79661%,rgba(255,254,251,0.5) 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,rgba(255,254,251,0.5) 76.27119%,rgba(255,254,251,0.5) 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,rgba(255,254,251,0.5) 84.74576%,rgba(255,254,251,0.5) 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,rgba(255,254,251,0.5) 93.22034%,rgba(255,254,251,0.5) 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,rgba(255,254,251,0.5) 8.47458%,rgba(255,254,251,0.5) 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,rgba(255,254,251,0.5) 16.94915%,rgba(255,254,251,0.5) 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,rgba(255,254,251,0.5) 25.42373%,rgba(255,254,251,0.5) 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,rgba(255,254,251,0.5) 33.89831%,rgba(255,254,251,0.5) 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,rgba(255,254,251,0.5) 42.37288%,rgba(255,254,251,0.5) 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,rgba(255,254,251,0.5) 50.84746%,rgba(255,254,251,0.5) 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,rgba(255,254,251,0.5) 59.32203%,rgba(255,254,251,0.5) 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,rgba(255,254,251,0.5) 67.79661%,rgba(255,254,251,0.5) 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,rgba(255,254,251,0.5) 76.27119%,rgba(255,254,251,0.5) 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,rgba(255,254,251,0.5) 84.74576%,rgba(255,254,251,0.5) 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,rgba(255,254,251,0.5) 93.22034%,rgba(255,254,251,0.5) 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,rgba(255,254,251,0.5) 8.47458%,rgba(255,254,251,0.5) 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,rgba(255,254,251,0.5) 16.94915%,rgba(255,254,251,0.5) 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,rgba(255,254,251,0.5) 25.42373%,rgba(255,254,251,0.5) 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,rgba(255,254,251,0.5) 33.89831%,rgba(255,254,251,0.5) 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,rgba(255,254,251,0.5) 42.37288%,rgba(255,254,251,0.5) 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,rgba(255,254,251,0.5) 50.84746%,rgba(255,254,251,0.5) 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,rgba(255,254,251,0.5) 59.32203%,rgba(255,254,251,0.5) 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,rgba(255,254,251,0.5) 67.79661%,rgba(255,254,251,0.5) 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,rgba(255,254,251,0.5) 76.27119%,rgba(255,254,251,0.5) 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,rgba(255,254,251,0.5) 84.74576%,rgba(255,254,251,0.5) 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,rgba(255,254,251,0.5) 93.22034%,rgba(255,254,251,0.5) 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,rgba(255,254,251,0.5) 8.47458%,rgba(255,254,251,0.5) 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,rgba(255,254,251,0.5) 16.94915%,rgba(255,254,251,0.5) 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,rgba(255,254,251,0.5) 25.42373%,rgba(255,254,251,0.5) 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,rgba(255,254,251,0.5) 33.89831%,rgba(255,254,251,0.5) 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,rgba(255,254,251,0.5) 42.37288%,rgba(255,254,251,0.5) 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,rgba(255,254,251,0.5) 50.84746%,rgba(255,254,251,0.5) 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,rgba(255,254,251,0.5) 59.32203%,rgba(255,254,251,0.5) 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,rgba(255,254,251,0.5) 67.79661%,rgba(255,254,251,0.5) 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,rgba(255,254,251,0.5) 76.27119%,rgba(255,254,251,0.5) 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,rgba(255,254,251,0.5) 84.74576%,rgba(255,254,251,0.5) 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,rgba(255,254,251,0.5) 93.22034%,rgba(255,254,251,0.5) 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.fluid-container{*zoom:1;padding-left:10px;padding-right:10px;margin-left:auto;margin-right:auto;background:#eee8d5}.fluid-container:after{content:"";display:table;clear:both}.fluid-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.fluid-60-container{*zoom:1;width:60%;padding-left:10px;padding-right:10px;margin-left:auto;margin-right:auto;background:#eee8d5}.fluid-60-container:after{content:"";display:table;clear:both}.fluid-60-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.static-container{*zoom:1;width:61em;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto;background:#eee8d5}.static-container:after{content:"";display:table;clear:both}.static-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.66667%,rgba(255,254,251,0.5)),color-stop(6.66667%,rgba(0,0,0,0)),color-stop(8.33333%,rgba(0,0,0,0)),color-stop(8.33333%,rgba(255,254,251,0.5)),color-stop(15%,rgba(255,254,251,0.5)),color-stop(15%,rgba(0,0,0,0)),color-stop(16.66667%,rgba(0,0,0,0)),color-stop(16.66667%,rgba(255,254,251,0.5)),color-stop(23.33333%,rgba(255,254,251,0.5)),color-stop(23.33333%,rgba(0,0,0,0)),color-stop(25%,rgba(0,0,0,0)),color-stop(25%,rgba(255,254,251,0.5)),color-stop(31.66667%,rgba(255,254,251,0.5)),color-stop(31.66667%,rgba(0,0,0,0)),color-stop(33.33333%,rgba(0,0,0,0)),color-stop(33.33333%,rgba(255,254,251,0.5)),color-stop(40%,rgba(255,254,251,0.5)),color-stop(40%,rgba(0,0,0,0)),color-stop(41.66667%,rgba(0,0,0,0)),color-stop(41.66667%,rgba(255,254,251,0.5)),color-stop(48.33333%,rgba(255,254,251,0.5)),color-stop(48.33333%,rgba(0,0,0,0)),color-stop(50%,rgba(0,0,0,0)),color-stop(50%,rgba(255,254,251,0.5)),color-stop(56.66667%,rgba(255,254,251,0.5)),color-stop(56.66667%,rgba(0,0,0,0)),color-stop(58.33333%,rgba(0,0,0,0)),color-stop(58.33333%,rgba(255,254,251,0.5)),color-stop(65%,rgba(255,254,251,0.5)),color-stop(65%,rgba(0,0,0,0)),color-stop(66.66667%,rgba(0,0,0,0)),color-stop(66.66667%,rgba(255,254,251,0.5)),color-stop(73.33333%,rgba(255,254,251,0.5)),color-stop(73.33333%,rgba(0,0,0,0)),color-stop(75%,rgba(0,0,0,0)),color-stop(75%,rgba(255,254,251,0.5)),color-stop(81.66667%,rgba(255,254,251,0.5)),color-stop(81.66667%,rgba(0,0,0,0)),color-stop(83.33333%,rgba(0,0,0,0)),color-stop(83.33333%,rgba(255,254,251,0.5)),color-stop(90%,rgba(255,254,251,0.5)),color-stop(90%,rgba(0,0,0,0)),color-stop(91.66667%,rgba(0,0,0,0)),color-stop(91.66667%,rgba(255,254,251,0.5)),color-stop(98.33333%,rgba(255,254,251,0.5)),color-stop(98.33333%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 4em,rgba(0,0,0,0) 4em,rgba(0,0,0,0) 5em,rgba(255,254,251,0.5) 5em,rgba(255,254,251,0.5) 9em,rgba(0,0,0,0) 9em,rgba(0,0,0,0) 10em,rgba(255,254,251,0.5) 10em,rgba(255,254,251,0.5) 14em,rgba(0,0,0,0) 14em,rgba(0,0,0,0) 15em,rgba(255,254,251,0.5) 15em,rgba(255,254,251,0.5) 19em,rgba(0,0,0,0) 19em,rgba(0,0,0,0) 20em,rgba(255,254,251,0.5) 20em,rgba(255,254,251,0.5) 24em,rgba(0,0,0,0) 24em,rgba(0,0,0,0) 25em,rgba(255,254,251,0.5) 25em,rgba(255,254,251,0.5) 29em,rgba(0,0,0,0) 29em,rgba(0,0,0,0) 30em,rgba(255,254,251,0.5) 30em,rgba(255,254,251,0.5) 34em,rgba(0,0,0,0) 34em,rgba(0,0,0,0) 35em,rgba(255,254,251,0.5) 35em,rgba(255,254,251,0.5) 39em,rgba(0,0,0,0) 39em,rgba(0,0,0,0) 40em,rgba(255,254,251,0.5) 40em,rgba(255,254,251,0.5) 44em,rgba(0,0,0,0) 44em,rgba(0,0,0,0) 45em,rgba(255,254,251,0.5) 45em,rgba(255,254,251,0.5) 49em,rgba(0,0,0,0) 49em,rgba(0,0,0,0) 50em,rgba(255,254,251,0.5) 50em,rgba(255,254,251,0.5) 54em,rgba(0,0,0,0) 54em,rgba(0,0,0,0) 55em,rgba(255,254,251,0.5) 55em,rgba(255,254,251,0.5) 59em,rgba(0,0,0,0) 59em,rgba(0,0,0,0) 60em);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 4em,rgba(0,0,0,0) 4em,rgba(0,0,0,0) 5em,rgba(255,254,251,0.5) 5em,rgba(255,254,251,0.5) 9em,rgba(0,0,0,0) 9em,rgba(0,0,0,0) 10em,rgba(255,254,251,0.5) 10em,rgba(255,254,251,0.5) 14em,rgba(0,0,0,0) 14em,rgba(0,0,0,0) 15em,rgba(255,254,251,0.5) 15em,rgba(255,254,251,0.5) 19em,rgba(0,0,0,0) 19em,rgba(0,0,0,0) 20em,rgba(255,254,251,0.5) 20em,rgba(255,254,251,0.5) 24em,rgba(0,0,0,0) 24em,rgba(0,0,0,0) 25em,rgba(255,254,251,0.5) 25em,rgba(255,254,251,0.5) 29em,rgba(0,0,0,0) 29em,rgba(0,0,0,0) 30em,rgba(255,254,251,0.5) 30em,rgba(255,254,251,0.5) 34em,rgba(0,0,0,0) 34em,rgba(0,0,0,0) 35em,rgba(255,254,251,0.5) 35em,rgba(255,254,251,0.5) 39em,rgba(0,0,0,0) 39em,rgba(0,0,0,0) 40em,rgba(255,254,251,0.5) 40em,rgba(255,254,251,0.5) 44em,rgba(0,0,0,0) 44em,rgba(0,0,0,0) 45em,rgba(255,254,251,0.5) 45em,rgba(255,254,251,0.5) 49em,rgba(0,0,0,0) 49em,rgba(0,0,0,0) 50em,rgba(255,254,251,0.5) 50em,rgba(255,254,251,0.5) 54em,rgba(0,0,0,0) 54em,rgba(0,0,0,0) 55em,rgba(255,254,251,0.5) 55em,rgba(255,254,251,0.5) 59em,rgba(0,0,0,0) 59em,rgba(0,0,0,0) 60em);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 4em,rgba(0,0,0,0) 4em,rgba(0,0,0,0) 5em,rgba(255,254,251,0.5) 5em,rgba(255,254,251,0.5) 9em,rgba(0,0,0,0) 9em,rgba(0,0,0,0) 10em,rgba(255,254,251,0.5) 10em,rgba(255,254,251,0.5) 14em,rgba(0,0,0,0) 14em,rgba(0,0,0,0) 15em,rgba(255,254,251,0.5) 15em,rgba(255,254,251,0.5) 19em,rgba(0,0,0,0) 19em,rgba(0,0,0,0) 20em,rgba(255,254,251,0.5) 20em,rgba(255,254,251,0.5) 24em,rgba(0,0,0,0) 24em,rgba(0,0,0,0) 25em,rgba(255,254,251,0.5) 25em,rgba(255,254,251,0.5) 29em,rgba(0,0,0,0) 29em,rgba(0,0,0,0) 30em,rgba(255,254,251,0.5) 30em,rgba(255,254,251,0.5) 34em,rgba(0,0,0,0) 34em,rgba(0,0,0,0) 35em,rgba(255,254,251,0.5) 35em,rgba(255,254,251,0.5) 39em,rgba(0,0,0,0) 39em,rgba(0,0,0,0) 40em,rgba(255,254,251,0.5) 40em,rgba(255,254,251,0.5) 44em,rgba(0,0,0,0) 44em,rgba(0,0,0,0) 45em,rgba(255,254,251,0.5) 45em,rgba(255,254,251,0.5) 49em,rgba(0,0,0,0) 49em,rgba(0,0,0,0) 50em,rgba(255,254,251,0.5) 50em,rgba(255,254,251,0.5) 54em,rgba(0,0,0,0) 54em,rgba(0,0,0,0) 55em,rgba(255,254,251,0.5) 55em,rgba(255,254,251,0.5) 59em,rgba(0,0,0,0) 59em,rgba(0,0,0,0) 60em);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 4em,rgba(0,0,0,0) 4em,rgba(0,0,0,0) 5em,rgba(255,254,251,0.5) 5em,rgba(255,254,251,0.5) 9em,rgba(0,0,0,0) 9em,rgba(0,0,0,0) 10em,rgba(255,254,251,0.5) 10em,rgba(255,254,251,0.5) 14em,rgba(0,0,0,0) 14em,rgba(0,0,0,0) 15em,rgba(255,254,251,0.5) 15em,rgba(255,254,251,0.5) 19em,rgba(0,0,0,0) 19em,rgba(0,0,0,0) 20em,rgba(255,254,251,0.5) 20em,rgba(255,254,251,0.5) 24em,rgba(0,0,0,0) 24em,rgba(0,0,0,0) 25em,rgba(255,254,251,0.5) 25em,rgba(255,254,251,0.5) 29em,rgba(0,0,0,0) 29em,rgba(0,0,0,0) 30em,rgba(255,254,251,0.5) 30em,rgba(255,254,251,0.5) 34em,rgba(0,0,0,0) 34em,rgba(0,0,0,0) 35em,rgba(255,254,251,0.5) 35em,rgba(255,254,251,0.5) 39em,rgba(0,0,0,0) 39em,rgba(0,0,0,0) 40em,rgba(255,254,251,0.5) 40em,rgba(255,254,251,0.5) 44em,rgba(0,0,0,0) 44em,rgba(0,0,0,0) 45em,rgba(255,254,251,0.5) 45em,rgba(255,254,251,0.5) 49em,rgba(0,0,0,0) 49em,rgba(0,0,0,0) 50em,rgba(255,254,251,0.5) 50em,rgba(255,254,251,0.5) 54em,rgba(0,0,0,0) 54em,rgba(0,0,0,0) 55em,rgba(255,254,251,0.5) 55em,rgba(255,254,251,0.5) 59em,rgba(0,0,0,0) 59em,rgba(0,0,0,0) 60em);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.larger-960-container{*zoom:1;width:1140px;padding-left:10px;padding-right:10px;margin-left:auto;margin-right:auto;background:#eee8d5}.larger-960-container:after{content:"";display:table;clear:both}.larger-960-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.elastic-960-container{*zoom:1;max-width:60em;_width:60em;padding-left:10px;padding-right:10px;margin-left:auto;margin-right:auto;background:#eee8d5}.elastic-960-container:after{content:"";display:table;clear:both}.elastic-960-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}.elastic-percentage-container{*zoom:1;max-width:50em;_width:50em;padding-left:1%;padding-right:1%;margin-left:auto;margin-right:auto;background:#eee8d5}.elastic-percentage-container:after{content:"";display:table;clear:both}.elastic-percentage-container:hover{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(255,254,251,0.5)),color-stop(6.38298%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(0,0,0,0)),color-stop(8.51064%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(255,254,251,0.5)),color-stop(14.89362%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(0,0,0,0)),color-stop(17.02128%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(255,254,251,0.5)),color-stop(23.40426%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(0,0,0,0)),color-stop(25.53191%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(255,254,251,0.5)),color-stop(31.91489%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(0,0,0,0)),color-stop(34.04255%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(255,254,251,0.5)),color-stop(40.42553%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(0,0,0,0)),color-stop(42.55319%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(255,254,251,0.5)),color-stop(48.93617%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(0,0,0,0)),color-stop(51.06383%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(255,254,251,0.5)),color-stop(57.44681%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(0,0,0,0)),color-stop(59.57447%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(255,254,251,0.5)),color-stop(65.95745%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(0,0,0,0)),color-stop(68.08511%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(255,254,251,0.5)),color-stop(74.46809%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(0,0,0,0)),color-stop(76.59574%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(255,254,251,0.5)),color-stop(82.97872%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(0,0,0,0)),color-stop(85.10638%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(255,254,251,0.5)),color-stop(91.48936%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(0,0,0,0)),color-stop(93.61702%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 6.38298%,rgba(0,0,0,0) 6.38298%,rgba(0,0,0,0) 8.51064%,rgba(255,254,251,0.5) 8.51064%,rgba(255,254,251,0.5) 14.89362%,rgba(0,0,0,0) 14.89362%,rgba(0,0,0,0) 17.02128%,rgba(255,254,251,0.5) 17.02128%,rgba(255,254,251,0.5) 23.40426%,rgba(0,0,0,0) 23.40426%,rgba(0,0,0,0) 25.53191%,rgba(255,254,251,0.5) 25.53191%,rgba(255,254,251,0.5) 31.91489%,rgba(0,0,0,0) 31.91489%,rgba(0,0,0,0) 34.04255%,rgba(255,254,251,0.5) 34.04255%,rgba(255,254,251,0.5) 40.42553%,rgba(0,0,0,0) 40.42553%,rgba(0,0,0,0) 42.55319%,rgba(255,254,251,0.5) 42.55319%,rgba(255,254,251,0.5) 48.93617%,rgba(0,0,0,0) 48.93617%,rgba(0,0,0,0) 51.06383%,rgba(255,254,251,0.5) 51.06383%,rgba(255,254,251,0.5) 57.44681%,rgba(0,0,0,0) 57.44681%,rgba(0,0,0,0) 59.57447%,rgba(255,254,251,0.5) 59.57447%,rgba(255,254,251,0.5) 65.95745%,rgba(0,0,0,0) 65.95745%,rgba(0,0,0,0) 68.08511%,rgba(255,254,251,0.5) 68.08511%,rgba(255,254,251,0.5) 74.46809%,rgba(0,0,0,0) 74.46809%,rgba(0,0,0,0) 76.59574%,rgba(255,254,251,0.5) 76.59574%,rgba(255,254,251,0.5) 82.97872%,rgba(0,0,0,0) 82.97872%,rgba(0,0,0,0) 85.10638%,rgba(255,254,251,0.5) 85.10638%,rgba(255,254,251,0.5) 91.48936%,rgba(0,0,0,0) 91.48936%,rgba(0,0,0,0) 93.61702%,rgba(255,254,251,0.5) 93.61702%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box;background-color:transparent}[role="main"]{margin-bottom:6.25em}[role="main"] h2,[role="main"] h3,[role="main"] > p,[role="main"] div{*zoom:1;max-width:500px;_width:500px;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto}[role="main"] h2:after,[role="main"] h3:after,[role="main"] > p:after,[role="main"] div:after{content:"";display:table;clear:both}[role="main"] aside{border:1px solid #eee8d5;text-align:center}[role="main"] aside b{font-weight:700}[role="main"] aside p{margin-bottom:2.5em}[role='banner']{*zoom:1;max-width:500px;_width:500px;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto;font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif;margin-top:1.25em;margin-bottom:1.25em;font-weight:700}[role='banner']:after{content:"";display:table;clear:both}[role='banner'] h1{font-size:2.4375em;line-height:1.28205em;color:#dc322f}[role='banner'] h2{text-transform:uppercase}.pagenav{*zoom:1;max-width:46em;_width:46em;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto;margin-bottom:1.25em;font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif;background:#eee8d5;text-align:center}.pagenav:after{content:"";display:table;clear:both}.pagenav ul{margin:0;padding:0;border:0;overflow:hidden;*zoom:1}.pagenav ul li{list-style-image:none;list-style-type:none;margin-left:0;display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;white-space:nowrap}.pagenav a{display:block;padding:.625em 1.25em;font-weight:700;text-transform:capitalize} \ No newline at end of file diff --git a/stylesheets/magic.css b/stylesheets/magic.css index 4dfd9f53..44231659 100644 --- a/stylesheets/magic.css +++ b/stylesheets/magic.css @@ -1 +1 @@ -html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:400;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block}.highlight{background-color:#f4f4f4;border:solid 1px #eee}.c{color:#93a1a1;font-style:italic}.g{color:#d33682}.k{color:#859900}.l{color:#2aa198}.n{color:#268bd2}.cm{color:#93a1a1;font-style:italic}.cp{color:#93a1a1;font-style:italic}.c1{color:#93a1a1;font-style:italic}.cs{color:#93a1a1;font-style:italic}.gd{color:#d33682}.ge{color:#d33682}.gr{color:#d33682}.gh{color:#d33682}.gi{color:#d33682}.go{color:#d33682}.gp{color:#d33682}.gs{color:#d33682}.gu{color:#d33682}.gt{color:#d33682}.kc{color:#859900;font-weight:700}.kd{color:#859900}.kn{color:#dc322f;font-weight:700}.kp{color:#859900}.kr{color:#859900}.kt{color:#859900;font-weight:700}.ld{color:#2aa198}.m{color:#2aa198;font-weight:700}.s{color:#2aa198}.na{color:#268bd2}.nb{color:#cb4b16}.nc{color:#cb4b16}.no{color:#268bd2}.nd{color:#268bd2}.ni{color:#268bd2}.ne{color:#268bd2}.nf{color:#268bd2}.nl{color:#268bd2}.nn{color:#268bd2}.nx{color:#268bd2}.py{color:#268bd2}.nt{color:#268bd2;font-weight:700}.nv{color:#268bd2}.ow{color:#859900}.w{color:#586e75}.mf{color:#2aa198;font-weight:700}.mh{color:#2aa198;font-weight:700}.mi{color:#2aa198;font-weight:700}.mo{color:#2aa198;font-weight:700}.sb{color:#2aa198}.sc{color:#2aa198}.sd{color:#2aa198}.s2{color:#2aa198}.se{color:#2aa198}.sh{color:#2aa198}.si{color:#2aa198}.sx{color:#2aa198}.sr{color:#2aa198}.s1{color:#2aa198}.ss{color:#2aa198}.bp{color:#cb4b16}.vc{color:#268bd2}.vg{color:#268bd2}.vi{color:#268bd2}.il{color:#2aa198;font-weight:700}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-Book-webfont.eot');src:url('../fonts/FranklinGothic-Book-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-Book-webfont.woff') format('woff'),url('../fonts/FranklinGothic-Book-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-Book-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-BookIt-webfont.eot');src:url('../fonts/FranklinGothic-BookIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-BookIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-BookIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-BookIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-Med-webfont.eot');src:url('../fonts/FranklinGothic-Med-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-Med-webfont.woff') format('woff'),url('../fonts/FranklinGothic-Med-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-Med-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-MedIt-webfont.eot');src:url('../fonts/FranklinGothic-MedIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-MedIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-MedIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-MedIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-Cd-webfont.eot');src:url('../fonts/FranklinGothic-Cd-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-Cd-webfont.woff') format('woff'),url('../fonts/FranklinGothic-Cd-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-Cd-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-CdIt-webfont.eot');src:url('../fonts/FranklinGothic-CdIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-CdIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-CdIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-CdIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-MedCd-webfont.eot');src:url('../fonts/FranklinGothic-MedCd-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-MedCd-webfont.woff') format('woff'),url('../fonts/FranklinGothic-MedCd-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-MedCd-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-MedCdIt-webfont.eot');src:url('../fonts/FranklinGothic-MedCdIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-MedCdIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-MedCdIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-MedCdIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/CenturyOldStyle-Regular-webfont.eot');src:url('../fonts/CenturyOldStyle-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyle-Regular-webfont.woff') format('woff'),url('../fonts/CenturyOldStyle-Regular-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyle-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/CenturyOldStyle-Bold-webfont.eot');src:url('../fonts/CenturyOldStyle-Bold-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyle-Bold-webfont.woff') format('woff'),url('../fonts/CenturyOldStyle-Bold-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyle-Bold-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/CenturyOldStyle-Italic-webfont.eot');src:url('../fonts/CenturyOldStyle-Italic-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyle-Italic-webfont.woff') format('woff'),url('../fonts/CenturyOldStyle-Italic-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyle-Italic-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"CenturyOldStyleFSCaps";src:url('../fonts/CenturyOldStyleCaps-Regular-webfont.eot');src:url('../fonts/CenturyOldStyleCaps-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyleCaps-Regular-webfont.woff') format('woff'),url('../fonts/CenturyOldStyleCaps-Regular-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyleCaps-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"BaskervilleAmp";src:url('../fonts/Baskerville-amp-webfont.eot');src:url('../fonts/Baskerville-amp-webfont.eot?#iefix') format('eot'),url('../fonts/Baskerville-amp-webfont.woff') format('woff'),url('../fonts/Baskerville-amp-webfont.ttf') format('truetype'),url('../fonts/Baskerville-amp-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"susy";src:url('../fonts/susy.eot');src:url('../fonts/susy.eot?#iefix') format('eot'),url('../fonts/susy.svg#susy') format('svg'),url('../fonts/susy.woff') format('woff'),url('../fonts/susy.ttf') format('truetype');font-weight:400;font-style:normal}[role="navigation"] a:link:before,[role="navigation"] a:visited:before,[data-icon]:before{font-family:'susy';font-style:normal;font-weight:400;speak:none}[role="navigation"] a:link:before,[role="navigation"] a:visited:before{margin-right:.4em}[data-icon]:before{content:attr(data-icon)}[role="navigation"] a:link:before,[role="navigation"] a:visited:before{content:"\e00b"}html{font-size:100%;line-height:1.25em}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{text-shadow:rgba(255,255,255,0.5) 0 1px 0;color:#657b83;background:#fdf6e3;font-family:"CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}b,i{font-weight:400;font-style:normal}.amp{font-family:"BaskervilleAmp","CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}.caps{text-transform:uppercase}a:link,a:visited{color:#dc322f;text-decoration:none}a:hover,a:focus,a:active{color:#8d1a18}.highlight{margin-bottom:1.25em;background:transparent;border:0}code,pre{font-family:Consolas,Menlo,Monaco,"Lucida Console","Liberation Mono","DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",monospace,serif}code{font-size:.90625em;line-height:1.37931em}pre{font-size:.8125em;line-height:1.53846em;border-width:.07692em;border-style:solid;padding:.69231em;background-color:#fbeecb;border-color:#fae7b3;overflow:auto}[role="navigation"]{padding:.625em;background:#002b36;color:#93a1a1;font-style:italic}[role="navigation"] a:link,[role="navigation"] a:visited{color:#eee8d5}[role="navigation"] a:hover,[role="navigation"] a:focus,[role="navigation"] a:active{color:#fdf6e3}.page{*zoom:1;max-width:36em;_width:36em;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto}.page:after{content:"";display:table;clear:both}@media (min-width:61em){.page{max-width:61em}}@media (min-width:61em){.banner{padding-left:16.94915%}.pagenav{width:15.25424%;float:left;margin-right:1.69492%}.main{width:83.05085%;float:right;margin-right:0}.main .content{width:69.38776%;float:left;margin-right:2.04082%}.main .summary{width:28.57143%;float:right;margin-right:0}}.contentinfo{clear:both;margin:0 -1em;padding:0 1em}@media (min-width:61em){.contentinfo{margin:0;padding-left:16.94915%;padding-right:25.42373%}}.content{font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif}.content h2,.content h3,.content h4{font-weight:700}.content h2{font-size:1.9375em;line-height:1.29032em;margin-bottom:.64516em}.content h3{text-transform:uppercase}.content h3,.content p,.content ul,.content ol{margin-bottom:1.25em}.content strong,.content code{font-weight:700}.content em{font-style:italic}body{background:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fdf6e3),color-stop(10%,#fefbf1),color-stop(80%,#fefbf1),color-stop(100%,#fdf6e3));background:-webkit-linear-gradient(top,#fdf6e3,#fefbf1 10%,#fefbf1 80%,#fdf6e3);background:-moz-linear-gradient(top,#fdf6e3,#fefbf1 10%,#fefbf1 80%,#fdf6e3);background:-o-linear-gradient(top,#fdf6e3,#fefbf1 10%,#fefbf1 80%,#fdf6e3);background:linear-gradient(top,#fdf6e3,#fefbf1 10%,#fefbf1 80%,#fdf6e3)}.page{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,#fefbf1),color-stop(11.76471%,#fefbf1),color-stop(11.76471%,rgba(0,0,0,0)),color-stop(14.70588%,rgba(0,0,0,0)),color-stop(14.70588%,#fefbf1),color-stop(26.47059%,#fefbf1),color-stop(26.47059%,rgba(0,0,0,0)),color-stop(29.41176%,rgba(0,0,0,0)),color-stop(29.41176%,#fefbf1),color-stop(41.17647%,#fefbf1),color-stop(41.17647%,rgba(0,0,0,0)),color-stop(44.11765%,rgba(0,0,0,0)),color-stop(44.11765%,#fefbf1),color-stop(55.88235%,#fefbf1),color-stop(55.88235%,rgba(0,0,0,0)),color-stop(58.82353%,rgba(0,0,0,0)),color-stop(58.82353%,#fefbf1),color-stop(70.58824%,#fefbf1),color-stop(70.58824%,rgba(0,0,0,0)),color-stop(73.52941%,rgba(0,0,0,0)),color-stop(73.52941%,#fefbf1),color-stop(85.29412%,#fefbf1),color-stop(85.29412%,rgba(0,0,0,0)),color-stop(88.23529%,rgba(0,0,0,0)),color-stop(88.23529%,#fefbf1),color-stop(100%,#fefbf1),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 11.76471%,rgba(0,0,0,0) 11.76471%,rgba(0,0,0,0) 14.70588%,#fefbf1 14.70588%,#fefbf1 26.47059%,rgba(0,0,0,0) 26.47059%,rgba(0,0,0,0) 29.41176%,#fefbf1 29.41176%,#fefbf1 41.17647%,rgba(0,0,0,0) 41.17647%,rgba(0,0,0,0) 44.11765%,#fefbf1 44.11765%,#fefbf1 55.88235%,rgba(0,0,0,0) 55.88235%,rgba(0,0,0,0) 58.82353%,#fefbf1 58.82353%,#fefbf1 70.58824%,rgba(0,0,0,0) 70.58824%,rgba(0,0,0,0) 73.52941%,#fefbf1 73.52941%,#fefbf1 85.29412%,rgba(0,0,0,0) 85.29412%,rgba(0,0,0,0) 88.23529%,#fefbf1 88.23529%,#fefbf1 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 11.76471%,rgba(0,0,0,0) 11.76471%,rgba(0,0,0,0) 14.70588%,#fefbf1 14.70588%,#fefbf1 26.47059%,rgba(0,0,0,0) 26.47059%,rgba(0,0,0,0) 29.41176%,#fefbf1 29.41176%,#fefbf1 41.17647%,rgba(0,0,0,0) 41.17647%,rgba(0,0,0,0) 44.11765%,#fefbf1 44.11765%,#fefbf1 55.88235%,rgba(0,0,0,0) 55.88235%,rgba(0,0,0,0) 58.82353%,#fefbf1 58.82353%,#fefbf1 70.58824%,rgba(0,0,0,0) 70.58824%,rgba(0,0,0,0) 73.52941%,#fefbf1 73.52941%,#fefbf1 85.29412%,rgba(0,0,0,0) 85.29412%,rgba(0,0,0,0) 88.23529%,#fefbf1 88.23529%,#fefbf1 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 11.76471%,rgba(0,0,0,0) 11.76471%,rgba(0,0,0,0) 14.70588%,#fefbf1 14.70588%,#fefbf1 26.47059%,rgba(0,0,0,0) 26.47059%,rgba(0,0,0,0) 29.41176%,#fefbf1 29.41176%,#fefbf1 41.17647%,rgba(0,0,0,0) 41.17647%,rgba(0,0,0,0) 44.11765%,#fefbf1 44.11765%,#fefbf1 55.88235%,rgba(0,0,0,0) 55.88235%,rgba(0,0,0,0) 58.82353%,#fefbf1 58.82353%,#fefbf1 70.58824%,rgba(0,0,0,0) 70.58824%,rgba(0,0,0,0) 73.52941%,#fefbf1 73.52941%,#fefbf1 85.29412%,rgba(0,0,0,0) 85.29412%,rgba(0,0,0,0) 88.23529%,#fefbf1 88.23529%,#fefbf1 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 11.76471%,rgba(0,0,0,0) 11.76471%,rgba(0,0,0,0) 14.70588%,#fefbf1 14.70588%,#fefbf1 26.47059%,rgba(0,0,0,0) 26.47059%,rgba(0,0,0,0) 29.41176%,#fefbf1 29.41176%,#fefbf1 41.17647%,rgba(0,0,0,0) 41.17647%,rgba(0,0,0,0) 44.11765%,#fefbf1 44.11765%,#fefbf1 55.88235%,rgba(0,0,0,0) 55.88235%,rgba(0,0,0,0) 58.82353%,#fefbf1 58.82353%,#fefbf1 70.58824%,rgba(0,0,0,0) 70.58824%,rgba(0,0,0,0) 73.52941%,#fefbf1 73.52941%,#fefbf1 85.29412%,rgba(0,0,0,0) 85.29412%,rgba(0,0,0,0) 88.23529%,#fefbf1 88.23529%,#fefbf1 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box}@media (min-width:61em){.page{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,#fefbf1),color-stop(6.77966%,#fefbf1),color-stop(6.77966%,rgba(0,0,0,0)),color-stop(8.47458%,rgba(0,0,0,0)),color-stop(8.47458%,#fefbf1),color-stop(15.25424%,#fefbf1),color-stop(15.25424%,rgba(0,0,0,0)),color-stop(16.94915%,rgba(0,0,0,0)),color-stop(16.94915%,#fefbf1),color-stop(23.72881%,#fefbf1),color-stop(23.72881%,rgba(0,0,0,0)),color-stop(25.42373%,rgba(0,0,0,0)),color-stop(25.42373%,#fefbf1),color-stop(32.20339%,#fefbf1),color-stop(32.20339%,rgba(0,0,0,0)),color-stop(33.89831%,rgba(0,0,0,0)),color-stop(33.89831%,#fefbf1),color-stop(40.67797%,#fefbf1),color-stop(40.67797%,rgba(0,0,0,0)),color-stop(42.37288%,rgba(0,0,0,0)),color-stop(42.37288%,#fefbf1),color-stop(49.15254%,#fefbf1),color-stop(49.15254%,rgba(0,0,0,0)),color-stop(50.84746%,rgba(0,0,0,0)),color-stop(50.84746%,#fefbf1),color-stop(57.62712%,#fefbf1),color-stop(57.62712%,rgba(0,0,0,0)),color-stop(59.32203%,rgba(0,0,0,0)),color-stop(59.32203%,#fefbf1),color-stop(66.10169%,#fefbf1),color-stop(66.10169%,rgba(0,0,0,0)),color-stop(67.79661%,rgba(0,0,0,0)),color-stop(67.79661%,#fefbf1),color-stop(74.57627%,#fefbf1),color-stop(74.57627%,rgba(0,0,0,0)),color-stop(76.27119%,rgba(0,0,0,0)),color-stop(76.27119%,#fefbf1),color-stop(83.05085%,#fefbf1),color-stop(83.05085%,rgba(0,0,0,0)),color-stop(84.74576%,rgba(0,0,0,0)),color-stop(84.74576%,#fefbf1),color-stop(91.52542%,#fefbf1),color-stop(91.52542%,rgba(0,0,0,0)),color-stop(93.22034%,rgba(0,0,0,0)),color-stop(93.22034%,#fefbf1),color-stop(100.0%,#fefbf1),color-stop(100.0%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,#fefbf1 8.47458%,#fefbf1 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,#fefbf1 16.94915%,#fefbf1 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,#fefbf1 25.42373%,#fefbf1 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,#fefbf1 33.89831%,#fefbf1 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,#fefbf1 42.37288%,#fefbf1 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,#fefbf1 50.84746%,#fefbf1 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,#fefbf1 59.32203%,#fefbf1 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,#fefbf1 67.79661%,#fefbf1 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,#fefbf1 76.27119%,#fefbf1 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,#fefbf1 84.74576%,#fefbf1 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,#fefbf1 93.22034%,#fefbf1 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,#fefbf1 8.47458%,#fefbf1 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,#fefbf1 16.94915%,#fefbf1 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,#fefbf1 25.42373%,#fefbf1 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,#fefbf1 33.89831%,#fefbf1 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,#fefbf1 42.37288%,#fefbf1 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,#fefbf1 50.84746%,#fefbf1 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,#fefbf1 59.32203%,#fefbf1 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,#fefbf1 67.79661%,#fefbf1 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,#fefbf1 76.27119%,#fefbf1 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,#fefbf1 84.74576%,#fefbf1 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,#fefbf1 93.22034%,#fefbf1 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,#fefbf1 8.47458%,#fefbf1 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,#fefbf1 16.94915%,#fefbf1 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,#fefbf1 25.42373%,#fefbf1 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,#fefbf1 33.89831%,#fefbf1 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,#fefbf1 42.37288%,#fefbf1 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,#fefbf1 50.84746%,#fefbf1 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,#fefbf1 59.32203%,#fefbf1 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,#fefbf1 67.79661%,#fefbf1 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,#fefbf1 76.27119%,#fefbf1 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,#fefbf1 84.74576%,#fefbf1 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,#fefbf1 93.22034%,#fefbf1 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,#fefbf1 8.47458%,#fefbf1 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,#fefbf1 16.94915%,#fefbf1 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,#fefbf1 25.42373%,#fefbf1 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,#fefbf1 33.89831%,#fefbf1 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,#fefbf1 42.37288%,#fefbf1 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,#fefbf1 50.84746%,#fefbf1 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,#fefbf1 59.32203%,#fefbf1 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,#fefbf1 67.79661%,#fefbf1 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,#fefbf1 76.27119%,#fefbf1 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,#fefbf1 84.74576%,#fefbf1 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,#fefbf1 93.22034%,#fefbf1 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box}}.banner{font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif;margin-top:1.25em;margin-bottom:1.25em;font-weight:700}.banner h1{font-size:2.4375em;line-height:1.28205em;color:#dc322f}.banner h2{text-transform:uppercase}.pagenav{font-family:"FranklinGothicFSCd","Helvetica Neue",Arial,Helvetica,sans-serif;margin-bottom:1.25em;font-weight:700}.pagenav h3{display:none}.pagenav li{display:inline-block;margin-right:1em}@media (min-width:61em){.pagenav{margin-top:3.75em}.pagenav li{display:block;margin-right:0}}.main{margin-bottom:1.25em}.summary{color:#93a1a1}.summary h3{margin-bottom:1.25em;text-transform:uppercase}.summary p{margin-bottom:1.25em;font-style:italic}@media (min-width:61em){.summary{margin-top:3.75em}}.contentinfo{padding-top:1.25em;padding-bottom:1.25em;text-shadow:#b9221f 0 1px 0;background:#dc322f;color:#fdf6e3}.contentinfo a:link,.contentinfo a:visited{color:#f6d784;font-weight:700}.contentinfo a:hover,.contentinfo a:focus,.contentinfo a:active{color:#fdf6e3}.contentinfo p{margin-bottom:1.25em}.contentinfo b{font-weight:700} \ No newline at end of file +html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:400;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block}.highlight{background-color:#f4f4f4;border:solid 1px #eee}.c{color:#93a1a1;font-style:italic}.g{color:#d33682}.k{color:#859900}.l{color:#2aa198}.n{color:#268bd2}.cm{color:#93a1a1;font-style:italic}.cp{color:#93a1a1;font-style:italic}.c1{color:#93a1a1;font-style:italic}.cs{color:#93a1a1;font-style:italic}.gd{color:#d33682}.ge{color:#d33682}.gr{color:#d33682}.gh{color:#d33682}.gi{color:#d33682}.go{color:#d33682}.gp{color:#d33682}.gs{color:#d33682}.gu{color:#d33682}.gt{color:#d33682}.kc{color:#859900;font-weight:700}.kd{color:#859900}.kn{color:#dc322f;font-weight:700}.kp{color:#859900}.kr{color:#859900}.kt{color:#859900;font-weight:700}.ld{color:#2aa198}.m{color:#2aa198;font-weight:700}.s{color:#2aa198}.na{color:#268bd2}.nb{color:#cb4b16}.nc{color:#cb4b16}.no{color:#268bd2}.nd{color:#268bd2}.ni{color:#268bd2}.ne{color:#268bd2}.nf{color:#268bd2}.nl{color:#268bd2}.nn{color:#268bd2}.nx{color:#268bd2}.py{color:#268bd2}.nt{color:#268bd2;font-weight:700}.nv{color:#268bd2}.ow{color:#859900}.w{color:#586e75}.mf{color:#2aa198;font-weight:700}.mh{color:#2aa198;font-weight:700}.mi{color:#2aa198;font-weight:700}.mo{color:#2aa198;font-weight:700}.sb{color:#2aa198}.sc{color:#2aa198}.sd{color:#2aa198}.s2{color:#2aa198}.se{color:#2aa198}.sh{color:#2aa198}.si{color:#2aa198}.sx{color:#2aa198}.sr{color:#2aa198}.s1{color:#2aa198}.ss{color:#2aa198}.bp{color:#cb4b16}.vc{color:#268bd2}.vg{color:#268bd2}.vi{color:#268bd2}.il{color:#2aa198;font-weight:700}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-Book-webfont.eot');src:url('../fonts/fg/FranklinGothic-Book-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-Book-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-Book-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-Book-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-BookIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-BookIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-BookIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-BookIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-BookIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-Med-webfont.eot');src:url('../fonts/fg/FranklinGothic-Med-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-Med-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-Med-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-Med-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-MedIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-MedIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-MedIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-MedIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-MedIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-Cd-webfont.eot');src:url('../fonts/fg/FranklinGothic-Cd-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-Cd-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-Cd-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-Cd-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-CdIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-CdIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-CdIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-CdIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-CdIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-MedCd-webfont.eot');src:url('../fonts/fg/FranklinGothic-MedCd-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-MedCd-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-MedCd-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-MedCd-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-MedCdIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-MedCdIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-MedCdIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-MedCdIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-MedCdIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/cos/CenturyOldStyle-Regular-webfont.eot');src:url('../fonts/cos/CenturyOldStyle-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyle-Regular-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyle-Regular-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyle-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/cos/CenturyOldStyle-Bold-webfont.eot');src:url('../fonts/cos/CenturyOldStyle-Bold-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyle-Bold-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyle-Bold-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyle-Bold-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/cos/CenturyOldStyle-Italic-webfont.eot');src:url('../fonts/cos/CenturyOldStyle-Italic-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyle-Italic-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyle-Italic-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyle-Italic-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"CenturyOldStyleFSCaps";src:url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.eot');src:url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"BaskervilleAmp";src:url('../fonts/amp/Baskerville-amp-webfont.eot');src:url('../fonts/amp/Baskerville-amp-webfont.eot?#iefix') format('eot'),url('../fonts/amp/Baskerville-amp-webfont.woff') format('woff'),url('../fonts/amp/Baskerville-amp-webfont.ttf') format('truetype'),url('../fonts/amp/Baskerville-amp-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"susy";src:url('../fonts/icons/susy.eot');src:url('../fonts/icons/susy.eot?#iefix') format('eot'),url('../fonts/icons/susy.svg#susy') format('svg'),url('../fonts/icons/susy.woff') format('woff'),url('../fonts/icons/susy.ttf') format('truetype');font-weight:400;font-style:normal}[role="navigation"] a:link:before,[role="navigation"] a:visited:before,[data-icon]:before{font-family:'susy';font-style:normal;font-weight:400;speak:none}[role="navigation"] a:link:before,[role="navigation"] a:visited:before{margin-right:.4em}[data-icon]:before{content:attr(data-icon)}[role="navigation"] a:link:before,[role="navigation"] a:visited:before{content:"\e00b"}html{font-size:100%;line-height:1.25em}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{text-shadow:rgba(255,255,255,0.5) 0 1px 0;color:#657b83;background:#fdf6e3;font-family:"CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}b,i{font-weight:400;font-style:normal}.amp{font-family:"BaskervilleAmp","CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}.caps{text-transform:uppercase}a:link,a:visited{color:#dc322f;text-decoration:none}a:hover,a:focus,a:active{color:#8d1a18}.highlight{margin-bottom:1.25em;background:transparent;border:0}code,pre{font-family:Consolas,Menlo,Monaco,"Lucida Console","Liberation Mono","DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",monospace,serif}code{font-size:.90625em;line-height:1.37931em}pre{font-size:.8125em;line-height:1.53846em;border-width:.07692em;border-style:solid;padding:.69231em;background-color:#fbeecb;border-color:#fae7b3;overflow:auto}[role="navigation"]{padding:.625em;background:#002b36;color:#93a1a1;font-style:italic}[role="navigation"] a:link,[role="navigation"] a:visited{color:#eee8d5}[role="navigation"] a:hover,[role="navigation"] a:focus,[role="navigation"] a:active{color:#fdf6e3}.page{*zoom:1;max-width:36em;_width:36em;padding-left:1em;padding-right:1em;margin-left:auto;margin-right:auto}.page:after{content:"";display:table;clear:both}@media (min-width:61em){.page{max-width:61em}}@media (min-width:61em){.banner{padding-left:16.94915%}.pagenav{width:15.25424%;float:left;margin-right:1.69492%}.main{width:83.05085%;float:right;margin-right:0}.main .content{width:69.38776%;float:left;margin-right:2.04082%}.main .summary{width:28.57143%;float:right;margin-right:0}}.contentinfo{clear:both;margin:0 -1em;padding:0 1em}@media (min-width:61em){.contentinfo{margin:0;padding-left:16.94915%;padding-right:25.42373%}}.content{font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif}.content h2,.content h3,.content h4{font-weight:700}.content h2{font-size:1.9375em;line-height:1.29032em;margin-bottom:.64516em}.content h3{text-transform:uppercase}.content h3,.content p,.content ul,.content ol{margin-bottom:1.25em}.content strong,.content code{font-weight:700}.content em{font-style:italic}body{background:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fdf6e3),color-stop(10%,#fefbf1),color-stop(80%,#fefbf1),color-stop(100%,#fdf6e3));background:-webkit-linear-gradient(top,#fdf6e3,#fefbf1 10%,#fefbf1 80%,#fdf6e3);background:-moz-linear-gradient(top,#fdf6e3,#fefbf1 10%,#fefbf1 80%,#fdf6e3);background:-o-linear-gradient(top,#fdf6e3,#fefbf1 10%,#fefbf1 80%,#fdf6e3);background:linear-gradient(top,#fdf6e3,#fefbf1 10%,#fefbf1 80%,#fdf6e3)}.page{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,#fefbf1),color-stop(11.76471%,#fefbf1),color-stop(11.76471%,rgba(0,0,0,0)),color-stop(14.70588%,rgba(0,0,0,0)),color-stop(14.70588%,#fefbf1),color-stop(26.47059%,#fefbf1),color-stop(26.47059%,rgba(0,0,0,0)),color-stop(29.41176%,rgba(0,0,0,0)),color-stop(29.41176%,#fefbf1),color-stop(41.17647%,#fefbf1),color-stop(41.17647%,rgba(0,0,0,0)),color-stop(44.11765%,rgba(0,0,0,0)),color-stop(44.11765%,#fefbf1),color-stop(55.88235%,#fefbf1),color-stop(55.88235%,rgba(0,0,0,0)),color-stop(58.82353%,rgba(0,0,0,0)),color-stop(58.82353%,#fefbf1),color-stop(70.58824%,#fefbf1),color-stop(70.58824%,rgba(0,0,0,0)),color-stop(73.52941%,rgba(0,0,0,0)),color-stop(73.52941%,#fefbf1),color-stop(85.29412%,#fefbf1),color-stop(85.29412%,rgba(0,0,0,0)),color-stop(88.23529%,rgba(0,0,0,0)),color-stop(88.23529%,#fefbf1),color-stop(100%,#fefbf1),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 11.76471%,rgba(0,0,0,0) 11.76471%,rgba(0,0,0,0) 14.70588%,#fefbf1 14.70588%,#fefbf1 26.47059%,rgba(0,0,0,0) 26.47059%,rgba(0,0,0,0) 29.41176%,#fefbf1 29.41176%,#fefbf1 41.17647%,rgba(0,0,0,0) 41.17647%,rgba(0,0,0,0) 44.11765%,#fefbf1 44.11765%,#fefbf1 55.88235%,rgba(0,0,0,0) 55.88235%,rgba(0,0,0,0) 58.82353%,#fefbf1 58.82353%,#fefbf1 70.58824%,rgba(0,0,0,0) 70.58824%,rgba(0,0,0,0) 73.52941%,#fefbf1 73.52941%,#fefbf1 85.29412%,rgba(0,0,0,0) 85.29412%,rgba(0,0,0,0) 88.23529%,#fefbf1 88.23529%,#fefbf1 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 11.76471%,rgba(0,0,0,0) 11.76471%,rgba(0,0,0,0) 14.70588%,#fefbf1 14.70588%,#fefbf1 26.47059%,rgba(0,0,0,0) 26.47059%,rgba(0,0,0,0) 29.41176%,#fefbf1 29.41176%,#fefbf1 41.17647%,rgba(0,0,0,0) 41.17647%,rgba(0,0,0,0) 44.11765%,#fefbf1 44.11765%,#fefbf1 55.88235%,rgba(0,0,0,0) 55.88235%,rgba(0,0,0,0) 58.82353%,#fefbf1 58.82353%,#fefbf1 70.58824%,rgba(0,0,0,0) 70.58824%,rgba(0,0,0,0) 73.52941%,#fefbf1 73.52941%,#fefbf1 85.29412%,rgba(0,0,0,0) 85.29412%,rgba(0,0,0,0) 88.23529%,#fefbf1 88.23529%,#fefbf1 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 11.76471%,rgba(0,0,0,0) 11.76471%,rgba(0,0,0,0) 14.70588%,#fefbf1 14.70588%,#fefbf1 26.47059%,rgba(0,0,0,0) 26.47059%,rgba(0,0,0,0) 29.41176%,#fefbf1 29.41176%,#fefbf1 41.17647%,rgba(0,0,0,0) 41.17647%,rgba(0,0,0,0) 44.11765%,#fefbf1 44.11765%,#fefbf1 55.88235%,rgba(0,0,0,0) 55.88235%,rgba(0,0,0,0) 58.82353%,#fefbf1 58.82353%,#fefbf1 70.58824%,rgba(0,0,0,0) 70.58824%,rgba(0,0,0,0) 73.52941%,#fefbf1 73.52941%,#fefbf1 85.29412%,rgba(0,0,0,0) 85.29412%,rgba(0,0,0,0) 88.23529%,#fefbf1 88.23529%,#fefbf1 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 11.76471%,rgba(0,0,0,0) 11.76471%,rgba(0,0,0,0) 14.70588%,#fefbf1 14.70588%,#fefbf1 26.47059%,rgba(0,0,0,0) 26.47059%,rgba(0,0,0,0) 29.41176%,#fefbf1 29.41176%,#fefbf1 41.17647%,rgba(0,0,0,0) 41.17647%,rgba(0,0,0,0) 44.11765%,#fefbf1 44.11765%,#fefbf1 55.88235%,rgba(0,0,0,0) 55.88235%,rgba(0,0,0,0) 58.82353%,#fefbf1 58.82353%,#fefbf1 70.58824%,rgba(0,0,0,0) 70.58824%,rgba(0,0,0,0) 73.52941%,#fefbf1 73.52941%,#fefbf1 85.29412%,rgba(0,0,0,0) 85.29412%,rgba(0,0,0,0) 88.23529%,#fefbf1 88.23529%,#fefbf1 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box}@media (min-width:61em){.page{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,#fefbf1),color-stop(6.77966%,#fefbf1),color-stop(6.77966%,rgba(0,0,0,0)),color-stop(8.47458%,rgba(0,0,0,0)),color-stop(8.47458%,#fefbf1),color-stop(15.25424%,#fefbf1),color-stop(15.25424%,rgba(0,0,0,0)),color-stop(16.94915%,rgba(0,0,0,0)),color-stop(16.94915%,#fefbf1),color-stop(23.72881%,#fefbf1),color-stop(23.72881%,rgba(0,0,0,0)),color-stop(25.42373%,rgba(0,0,0,0)),color-stop(25.42373%,#fefbf1),color-stop(32.20339%,#fefbf1),color-stop(32.20339%,rgba(0,0,0,0)),color-stop(33.89831%,rgba(0,0,0,0)),color-stop(33.89831%,#fefbf1),color-stop(40.67797%,#fefbf1),color-stop(40.67797%,rgba(0,0,0,0)),color-stop(42.37288%,rgba(0,0,0,0)),color-stop(42.37288%,#fefbf1),color-stop(49.15254%,#fefbf1),color-stop(49.15254%,rgba(0,0,0,0)),color-stop(50.84746%,rgba(0,0,0,0)),color-stop(50.84746%,#fefbf1),color-stop(57.62712%,#fefbf1),color-stop(57.62712%,rgba(0,0,0,0)),color-stop(59.32203%,rgba(0,0,0,0)),color-stop(59.32203%,#fefbf1),color-stop(66.10169%,#fefbf1),color-stop(66.10169%,rgba(0,0,0,0)),color-stop(67.79661%,rgba(0,0,0,0)),color-stop(67.79661%,#fefbf1),color-stop(74.57627%,#fefbf1),color-stop(74.57627%,rgba(0,0,0,0)),color-stop(76.27119%,rgba(0,0,0,0)),color-stop(76.27119%,#fefbf1),color-stop(83.05085%,#fefbf1),color-stop(83.05085%,rgba(0,0,0,0)),color-stop(84.74576%,rgba(0,0,0,0)),color-stop(84.74576%,#fefbf1),color-stop(91.52542%,#fefbf1),color-stop(91.52542%,rgba(0,0,0,0)),color-stop(93.22034%,rgba(0,0,0,0)),color-stop(93.22034%,#fefbf1),color-stop(100.0%,#fefbf1),color-stop(100.0%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,#fefbf1 8.47458%,#fefbf1 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,#fefbf1 16.94915%,#fefbf1 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,#fefbf1 25.42373%,#fefbf1 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,#fefbf1 33.89831%,#fefbf1 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,#fefbf1 42.37288%,#fefbf1 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,#fefbf1 50.84746%,#fefbf1 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,#fefbf1 59.32203%,#fefbf1 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,#fefbf1 67.79661%,#fefbf1 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,#fefbf1 76.27119%,#fefbf1 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,#fefbf1 84.74576%,#fefbf1 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,#fefbf1 93.22034%,#fefbf1 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,#fefbf1 8.47458%,#fefbf1 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,#fefbf1 16.94915%,#fefbf1 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,#fefbf1 25.42373%,#fefbf1 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,#fefbf1 33.89831%,#fefbf1 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,#fefbf1 42.37288%,#fefbf1 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,#fefbf1 50.84746%,#fefbf1 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,#fefbf1 59.32203%,#fefbf1 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,#fefbf1 67.79661%,#fefbf1 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,#fefbf1 76.27119%,#fefbf1 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,#fefbf1 84.74576%,#fefbf1 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,#fefbf1 93.22034%,#fefbf1 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,#fefbf1 8.47458%,#fefbf1 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,#fefbf1 16.94915%,#fefbf1 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,#fefbf1 25.42373%,#fefbf1 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,#fefbf1 33.89831%,#fefbf1 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,#fefbf1 42.37288%,#fefbf1 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,#fefbf1 50.84746%,#fefbf1 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,#fefbf1 59.32203%,#fefbf1 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,#fefbf1 67.79661%,#fefbf1 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,#fefbf1 76.27119%,#fefbf1 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,#fefbf1 84.74576%,#fefbf1 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,#fefbf1 93.22034%,#fefbf1 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,#fefbf1 0,#fefbf1 6.77966%,rgba(0,0,0,0) 6.77966%,rgba(0,0,0,0) 8.47458%,#fefbf1 8.47458%,#fefbf1 15.25424%,rgba(0,0,0,0) 15.25424%,rgba(0,0,0,0) 16.94915%,#fefbf1 16.94915%,#fefbf1 23.72881%,rgba(0,0,0,0) 23.72881%,rgba(0,0,0,0) 25.42373%,#fefbf1 25.42373%,#fefbf1 32.20339%,rgba(0,0,0,0) 32.20339%,rgba(0,0,0,0) 33.89831%,#fefbf1 33.89831%,#fefbf1 40.67797%,rgba(0,0,0,0) 40.67797%,rgba(0,0,0,0) 42.37288%,#fefbf1 42.37288%,#fefbf1 49.15254%,rgba(0,0,0,0) 49.15254%,rgba(0,0,0,0) 50.84746%,#fefbf1 50.84746%,#fefbf1 57.62712%,rgba(0,0,0,0) 57.62712%,rgba(0,0,0,0) 59.32203%,#fefbf1 59.32203%,#fefbf1 66.10169%,rgba(0,0,0,0) 66.10169%,rgba(0,0,0,0) 67.79661%,#fefbf1 67.79661%,#fefbf1 74.57627%,rgba(0,0,0,0) 74.57627%,rgba(0,0,0,0) 76.27119%,#fefbf1 76.27119%,#fefbf1 83.05085%,rgba(0,0,0,0) 83.05085%,rgba(0,0,0,0) 84.74576%,#fefbf1 84.74576%,#fefbf1 91.52542%,rgba(0,0,0,0) 91.52542%,rgba(0,0,0,0) 93.22034%,#fefbf1 93.22034%,#fefbf1 100.0%,rgba(0,0,0,0) 100.0%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box}}.banner{font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif;margin-top:1.25em;margin-bottom:1.25em;font-weight:700}.banner h1{font-size:2.4375em;line-height:1.28205em;color:#dc322f}.banner h2{text-transform:uppercase}.pagenav{font-family:"FranklinGothicFSCd","Helvetica Neue",Arial,Helvetica,sans-serif;margin-bottom:1.25em;font-weight:700}.pagenav h3{display:none}.pagenav li{display:inline-block;margin-right:1em}@media (min-width:61em){.pagenav{margin-top:3.75em}.pagenav li{display:block;margin-right:0}}.main{margin-bottom:1.25em}.summary{color:#93a1a1}.summary h3{margin-bottom:1.25em;text-transform:uppercase}.summary p{margin-bottom:1.25em;font-style:italic}@media (min-width:61em){.summary{margin-top:3.75em}}.contentinfo{padding-top:1.25em;padding-bottom:1.25em;text-shadow:#b9221f 0 1px 0;background:#dc322f;color:#fdf6e3}.contentinfo a:link,.contentinfo a:visited{color:#f6d784;font-weight:700}.contentinfo a:hover,.contentinfo a:focus,.contentinfo a:active{color:#fdf6e3}.contentinfo p{margin-bottom:1.25em}.contentinfo b{font-weight:700} \ No newline at end of file diff --git a/stylesheets/site.css b/stylesheets/site.css index 95344313..f00b0c27 100644 --- a/stylesheets/site.css +++ b/stylesheets/site.css @@ -1 +1 @@ -html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:400;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block}.highlight{background-color:#f4f4f4;border:solid 1px #eee}.c{color:#93a1a1;font-style:italic}.g{color:#d33682}.k{color:#859900}.l{color:#2aa198}.n{color:#268bd2}.cm{color:#93a1a1;font-style:italic}.cp{color:#93a1a1;font-style:italic}.c1{color:#93a1a1;font-style:italic}.cs{color:#93a1a1;font-style:italic}.gd{color:#d33682}.ge{color:#d33682}.gr{color:#d33682}.gh{color:#d33682}.gi{color:#d33682}.go{color:#d33682}.gp{color:#d33682}.gs{color:#d33682}.gu{color:#d33682}.gt{color:#d33682}.kc{color:#859900;font-weight:700}.kd{color:#859900}.kn{color:#dc322f;font-weight:700}.kp{color:#859900}.kr{color:#859900}.kt{color:#859900;font-weight:700}.ld{color:#2aa198}.m{color:#2aa198;font-weight:700}.s{color:#2aa198}.na{color:#268bd2}.nb{color:#cb4b16}.nc{color:#cb4b16}.no{color:#268bd2}.nd{color:#268bd2}.ni{color:#268bd2}.ne{color:#268bd2}.nf{color:#268bd2}.nl{color:#268bd2}.nn{color:#268bd2}.nx{color:#268bd2}.py{color:#268bd2}.nt{color:#268bd2;font-weight:700}.nv{color:#268bd2}.ow{color:#859900}.w{color:#586e75}.mf{color:#2aa198;font-weight:700}.mh{color:#2aa198;font-weight:700}.mi{color:#2aa198;font-weight:700}.mo{color:#2aa198;font-weight:700}.sb{color:#2aa198}.sc{color:#2aa198}.sd{color:#2aa198}.s2{color:#2aa198}.se{color:#2aa198}.sh{color:#2aa198}.si{color:#2aa198}.sx{color:#2aa198}.sr{color:#2aa198}.s1{color:#2aa198}.ss{color:#2aa198}.bp{color:#cb4b16}.vc{color:#268bd2}.vg{color:#268bd2}.vi{color:#268bd2}.il{color:#2aa198;font-weight:700}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-Book-webfont.eot');src:url('../fonts/FranklinGothic-Book-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-Book-webfont.woff') format('woff'),url('../fonts/FranklinGothic-Book-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-Book-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-BookIt-webfont.eot');src:url('../fonts/FranklinGothic-BookIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-BookIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-BookIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-BookIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-Med-webfont.eot');src:url('../fonts/FranklinGothic-Med-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-Med-webfont.woff') format('woff'),url('../fonts/FranklinGothic-Med-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-Med-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/FranklinGothic-MedIt-webfont.eot');src:url('../fonts/FranklinGothic-MedIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-MedIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-MedIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-MedIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-Cd-webfont.eot');src:url('../fonts/FranklinGothic-Cd-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-Cd-webfont.woff') format('woff'),url('../fonts/FranklinGothic-Cd-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-Cd-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-CdIt-webfont.eot');src:url('../fonts/FranklinGothic-CdIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-CdIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-CdIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-CdIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-MedCd-webfont.eot');src:url('../fonts/FranklinGothic-MedCd-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-MedCd-webfont.woff') format('woff'),url('../fonts/FranklinGothic-MedCd-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-MedCd-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/FranklinGothic-MedCdIt-webfont.eot');src:url('../fonts/FranklinGothic-MedCdIt-webfont.eot?#iefix') format('eot'),url('../fonts/FranklinGothic-MedCdIt-webfont.woff') format('woff'),url('../fonts/FranklinGothic-MedCdIt-webfont.ttf') format('truetype'),url('../fonts/FranklinGothic-MedCdIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/CenturyOldStyle-Regular-webfont.eot');src:url('../fonts/CenturyOldStyle-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyle-Regular-webfont.woff') format('woff'),url('../fonts/CenturyOldStyle-Regular-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyle-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/CenturyOldStyle-Bold-webfont.eot');src:url('../fonts/CenturyOldStyle-Bold-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyle-Bold-webfont.woff') format('woff'),url('../fonts/CenturyOldStyle-Bold-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyle-Bold-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/CenturyOldStyle-Italic-webfont.eot');src:url('../fonts/CenturyOldStyle-Italic-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyle-Italic-webfont.woff') format('woff'),url('../fonts/CenturyOldStyle-Italic-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyle-Italic-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"CenturyOldStyleFSCaps";src:url('../fonts/CenturyOldStyleCaps-Regular-webfont.eot');src:url('../fonts/CenturyOldStyleCaps-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/CenturyOldStyleCaps-Regular-webfont.woff') format('woff'),url('../fonts/CenturyOldStyleCaps-Regular-webfont.ttf') format('truetype'),url('../fonts/CenturyOldStyleCaps-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"BaskervilleAmp";src:url('../fonts/Baskerville-amp-webfont.eot');src:url('../fonts/Baskerville-amp-webfont.eot?#iefix') format('eot'),url('../fonts/Baskerville-amp-webfont.woff') format('woff'),url('../fonts/Baskerville-amp-webfont.ttf') format('truetype'),url('../fonts/Baskerville-amp-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"susy";src:url('../fonts/susy.eot');src:url('../fonts/susy.eot?#iefix') format('eot'),url('../fonts/susy.svg#susy') format('svg'),url('../fonts/susy.woff') format('woff'),url('../fonts/susy.ttf') format('truetype');font-weight:400;font-style:normal}.on a:link:before,.on a:visited:before,.off a:link:before,.off a:visited:before,.sites-using-susy [role="main"] h1 a:link:before,.demos_index [role="main"] h1 a:link:before,.guides [role="main"] h1 a:link:before,.tutorial [role="main"] h1 a:link:before,.sites-using-susy [role="main"] h1 a:visited:before,.demos_index [role="main"] h1 a:visited:before,.guides [role="main"] h1 a:visited:before,.tutorial [role="main"] h1 a:visited:before,.sites-using-susy [role="main"] h2 a:link:before,.demos_index [role="main"] h2 a:link:before,.guides [role="main"] h2 a:link:before,.tutorial [role="main"] h2 a:link:before,.sites-using-susy [role="main"] h2 a:visited:before,.demos_index [role="main"] h2 a:visited:before,.guides [role="main"] h2 a:visited:before,.tutorial [role="main"] h2 a:visited:before,.sites-using-susy [role="main"] h3 a:link:before,.demos_index [role="main"] h3 a:link:before,.guides [role="main"] h3 a:link:before,.tutorial [role="main"] h3 a:link:before,.sites-using-susy [role="main"] h3 a:visited:before,.demos_index [role="main"] h3 a:visited:before,.guides [role="main"] h3 a:visited:before,.tutorial [role="main"] h3 a:visited:before,.sites-using-susy [role="main"] h4 a:link:before,.demos_index [role="main"] h4 a:link:before,.guides [role="main"] h4 a:link:before,.tutorial [role="main"] h4 a:link:before,.sites-using-susy [role="main"] h4 a:visited:before,.demos_index [role="main"] h4 a:visited:before,.guides [role="main"] h4 a:visited:before,.tutorial [role="main"] h4 a:visited:before,.sites-using-susy [role="main"] h5 a:link:before,.demos_index [role="main"] h5 a:link:before,.guides [role="main"] h5 a:link:before,.tutorial [role="main"] h5 a:link:before,.sites-using-susy [role="main"] h5 a:visited:before,.demos_index [role="main"] h5 a:visited:before,.guides [role="main"] h5 a:visited:before,.tutorial [role="main"] h5 a:visited:before,.sites-using-susy [role="main"] h6 a:link:before,.demos_index [role="main"] h6 a:link:before,.guides [role="main"] h6 a:link:before,.tutorial [role="main"] h6 a:link:before,.sites-using-susy [role="main"] h6 a:visited:before,.demos_index [role="main"] h6 a:visited:before,.guides [role="main"] h6 a:visited:before,.tutorial [role="main"] h6 a:visited:before,[role="navigation"] a:link:before,[role="navigation"] a:visited:before,.sites-using-susy [role="main"] a[href^="http"]::after,.demos_index [role="main"] a[href^="http"]::after,.guides [role="main"] a[href^="http"]::after,.tutorial [role="main"] a[href^="http"]::after,[data-icon]:before{font-family:'susy';font-style:normal;font-weight:400;speak:none}.on a:link:before,.on a:visited:before,.off a:link:before,.off a:visited:before,.sites-using-susy [role="main"] h1 a:link:before,.demos_index [role="main"] h1 a:link:before,.guides [role="main"] h1 a:link:before,.tutorial [role="main"] h1 a:link:before,.sites-using-susy [role="main"] h1 a:visited:before,.demos_index [role="main"] h1 a:visited:before,.guides [role="main"] h1 a:visited:before,.tutorial [role="main"] h1 a:visited:before,.sites-using-susy [role="main"] h2 a:link:before,.demos_index [role="main"] h2 a:link:before,.guides [role="main"] h2 a:link:before,.tutorial [role="main"] h2 a:link:before,.sites-using-susy [role="main"] h2 a:visited:before,.demos_index [role="main"] h2 a:visited:before,.guides [role="main"] h2 a:visited:before,.tutorial [role="main"] h2 a:visited:before,.sites-using-susy [role="main"] h3 a:link:before,.demos_index [role="main"] h3 a:link:before,.guides [role="main"] h3 a:link:before,.tutorial [role="main"] h3 a:link:before,.sites-using-susy [role="main"] h3 a:visited:before,.demos_index [role="main"] h3 a:visited:before,.guides [role="main"] h3 a:visited:before,.tutorial [role="main"] h3 a:visited:before,.sites-using-susy [role="main"] h4 a:link:before,.demos_index [role="main"] h4 a:link:before,.guides [role="main"] h4 a:link:before,.tutorial [role="main"] h4 a:link:before,.sites-using-susy [role="main"] h4 a:visited:before,.demos_index [role="main"] h4 a:visited:before,.guides [role="main"] h4 a:visited:before,.tutorial [role="main"] h4 a:visited:before,.sites-using-susy [role="main"] h5 a:link:before,.demos_index [role="main"] h5 a:link:before,.guides [role="main"] h5 a:link:before,.tutorial [role="main"] h5 a:link:before,.sites-using-susy [role="main"] h5 a:visited:before,.demos_index [role="main"] h5 a:visited:before,.guides [role="main"] h5 a:visited:before,.tutorial [role="main"] h5 a:visited:before,.sites-using-susy [role="main"] h6 a:link:before,.demos_index [role="main"] h6 a:link:before,.guides [role="main"] h6 a:link:before,.tutorial [role="main"] h6 a:link:before,.sites-using-susy [role="main"] h6 a:visited:before,.demos_index [role="main"] h6 a:visited:before,.guides [role="main"] h6 a:visited:before,.tutorial [role="main"] h6 a:visited:before,[role="navigation"] a:link:before,[role="navigation"] a:visited:before{margin-right:.4em}.sites-using-susy [role="main"] a[href^="http"]::after,.demos_index [role="main"] a[href^="http"]::after,.guides [role="main"] a[href^="http"]::after,.tutorial [role="main"] a[href^="http"]::after{margin-left:.4em}.on a:link,.on a:visited,.off a:link,.off a:visited{position:relative;min-width:1em;text-indent:-9999px}.on a:link:before,.on a:visited:before,.off a:link:before,.off a:visited:before{position:absolute;top:0;left:0;text-indent:0;margin-right:0}[data-icon]:before{content:attr(data-icon)}[role="navigation"] a[href*='getting-started']:link:before,[role="navigation"] a[href*='getting-started']:visited:before{content:"\e000"}[role="navigation"] a[href*='reference']:link:before,[role="navigation"] a[href*='reference']:visited:before{content:"\e001"}[role="navigation"] a[href*='demos']:link:before,[role="navigation"] a[href*='demos']:visited:before{content:"\e002"}[role="navigation"] a[href*='twitter']:link:before,[role="navigation"] a[href*='twitter']:visited:before{content:"\e005"}.sites-using-susy [role="main"] h1 a:link:before,.demos_index [role="main"] h1 a:link:before,.guides [role="main"] h1 a:link:before,.tutorial [role="main"] h1 a:link:before,.sites-using-susy [role="main"] h1 a:visited:before,.demos_index [role="main"] h1 a:visited:before,.guides [role="main"] h1 a:visited:before,.tutorial [role="main"] h1 a:visited:before,.sites-using-susy [role="main"] h2 a:link:before,.demos_index [role="main"] h2 a:link:before,.guides [role="main"] h2 a:link:before,.tutorial [role="main"] h2 a:link:before,.sites-using-susy [role="main"] h2 a:visited:before,.demos_index [role="main"] h2 a:visited:before,.guides [role="main"] h2 a:visited:before,.tutorial [role="main"] h2 a:visited:before,.sites-using-susy [role="main"] h3 a:link:before,.demos_index [role="main"] h3 a:link:before,.guides [role="main"] h3 a:link:before,.tutorial [role="main"] h3 a:link:before,.sites-using-susy [role="main"] h3 a:visited:before,.demos_index [role="main"] h3 a:visited:before,.guides [role="main"] h3 a:visited:before,.tutorial [role="main"] h3 a:visited:before,.sites-using-susy [role="main"] h4 a:link:before,.demos_index [role="main"] h4 a:link:before,.guides [role="main"] h4 a:link:before,.tutorial [role="main"] h4 a:link:before,.sites-using-susy [role="main"] h4 a:visited:before,.demos_index [role="main"] h4 a:visited:before,.guides [role="main"] h4 a:visited:before,.tutorial [role="main"] h4 a:visited:before,.sites-using-susy [role="main"] h5 a:link:before,.demos_index [role="main"] h5 a:link:before,.guides [role="main"] h5 a:link:before,.tutorial [role="main"] h5 a:link:before,.sites-using-susy [role="main"] h5 a:visited:before,.demos_index [role="main"] h5 a:visited:before,.guides [role="main"] h5 a:visited:before,.tutorial [role="main"] h5 a:visited:before,.sites-using-susy [role="main"] h6 a:link:before,.demos_index [role="main"] h6 a:link:before,.guides [role="main"] h6 a:link:before,.tutorial [role="main"] h6 a:link:before,.sites-using-susy [role="main"] h6 a:visited:before,.demos_index [role="main"] h6 a:visited:before,.guides [role="main"] h6 a:visited:before,.tutorial [role="main"] h6 a:visited:before{content:"\e008"}.sites-using-susy [role="main"] a[href^="http"]:after,.demos_index [role="main"] a[href^="http"]:after,.guides [role="main"] a[href^="http"]:after,.tutorial [role="main"] a[href^="http"]:after{content:"\e009"}.on a:link:before,.on a:visited:before,.off a:link:before,.off a:visited:before{content:"\e00a"}[role="navigation"] a[href*='sites-using-susy']:link:before,[role="navigation"] a[href*='sites-using-susy']:visited:before{content:"\e00c"}[role="navigation"] a[href*='stackoverflow']:link:before,[role="navigation"] a[href*='stackoverflow']:visited:before{content:"\e003"}[role="navigation"] a[href*='github']:link:before,[role="navigation"] a[href*='github']:visited:before{content:"\e004"}html{font-size:100%;line-height:1.25em}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{text-shadow:rgba(255,255,255,0.5) 0 1px 0;color:#657b83;background:#fdf6e3;font-family:"CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}b,i{font-weight:400;font-style:normal}.amp{font-family:"BaskervilleAmp","CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}.caps,.sites-using-susy [role="main"] h2,.demos_index [role="main"] h2,.guides [role="main"] h2,.tutorial [role="main"] h2,.sites-using-susy [role="main"] h4,.demos_index [role="main"] h4,.guides [role="main"] h4,.tutorial [role="main"] h4,.secondary h2{text-transform:uppercase}a:link,a:visited{color:#dc322f;text-decoration:none}a:hover,a:focus,a:active{color:#8d1a18}.highlight{margin-bottom:1.25em;background:transparent;border:0}code,pre{font-family:Consolas,Menlo,Monaco,"Lucida Console","Liberation Mono","DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",monospace,serif}code{font-size:.90625em;line-height:1.37931em}pre{font-size:.8125em;line-height:1.53846em;border-width:.07692em;border-style:solid;padding:.69231em;background-color:#fbeecb;border-color:#fae7b3;overflow:auto}@media (min-width:40em){.sites-using-susy [role="main"],.demos_index [role="main"]{padding-left:10.28037%;padding-right:10.28037%}}.sites-using-susy [role="main"],.demos_index [role="main"],.guides [role="main"],.tutorial [role="main"]{font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif}.sites-using-susy [role="main"] h2,.demos_index [role="main"] h2,.guides [role="main"] h2,.tutorial [role="main"] h2{font-size:1.9375em;line-height:1.29032em;border-bottom-width:.09677em;border-bottom-style:solid;padding-bottom:-0.01613em;margin-bottom:.56452em;border-color:#eee8d5;font-weight:700}.sites-using-susy [role="main"] h2 ~ h2,.demos_index [role="main"] h2 ~ h2,.guides [role="main"] h2 ~ h2,.tutorial [role="main"] h2 ~ h2{margin-top:1.29032em}@media (min-width:40em){.sites-using-susy [role="main"] h2,.demos_index [role="main"] h2,.guides [role="main"] h2,.tutorial [role="main"] h2{font-size:2.4375em;line-height:1.28205em;border-bottom-width:.07692em;border-bottom-style:solid;padding-bottom:-0.01282em;margin-bottom:.44872em}.sites-using-susy [role="main"] h2 ~ h2,.demos_index [role="main"] h2 ~ h2,.guides [role="main"] h2 ~ h2,.tutorial [role="main"] h2 ~ h2{margin-top:1.02564em}}.sites-using-susy [role="main"] h3,.demos_index [role="main"] h3,.guides [role="main"] h3,.tutorial [role="main"] h3{font-size:1.9375em;line-height:1.29032em;margin-top:.64516em;margin-bottom:.64516em;font-weight:700}.sites-using-susy [role="main"] h3 + h4,.demos_index [role="main"] h3 + h4,.guides [role="main"] h3 + h4,.tutorial [role="main"] h3 + h4{margin-top:0}@media (min-width:40em){.sites-using-susy [role="main"] h3,.demos_index [role="main"] h3,.guides [role="main"] h3,.tutorial [role="main"] h3{margin-top:1.29032em}}.sites-using-susy [role="main"] h4,.demos_index [role="main"] h4,.guides [role="main"] h4,.tutorial [role="main"] h4{margin-top:2.5em}.sites-using-susy [role="main"] h5,.demos_index [role="main"] h5,.guides [role="main"] h5,.tutorial [role="main"] h5{font-style:italic}.sites-using-susy [role="main"] h1 a:link,.demos_index [role="main"] h1 a:link,.guides [role="main"] h1 a:link,.tutorial [role="main"] h1 a:link,.sites-using-susy [role="main"] h1 a:visited,.demos_index [role="main"] h1 a:visited,.guides [role="main"] h1 a:visited,.tutorial [role="main"] h1 a:visited,.sites-using-susy [role="main"] h2 a:link,.demos_index [role="main"] h2 a:link,.guides [role="main"] h2 a:link,.tutorial [role="main"] h2 a:link,.sites-using-susy [role="main"] h2 a:visited,.demos_index [role="main"] h2 a:visited,.guides [role="main"] h2 a:visited,.tutorial [role="main"] h2 a:visited,.sites-using-susy [role="main"] h3 a:link,.demos_index [role="main"] h3 a:link,.guides [role="main"] h3 a:link,.tutorial [role="main"] h3 a:link,.sites-using-susy [role="main"] h3 a:visited,.demos_index [role="main"] h3 a:visited,.guides [role="main"] h3 a:visited,.tutorial [role="main"] h3 a:visited,.sites-using-susy [role="main"] h4 a:link,.demos_index [role="main"] h4 a:link,.guides [role="main"] h4 a:link,.tutorial [role="main"] h4 a:link,.sites-using-susy [role="main"] h4 a:visited,.demos_index [role="main"] h4 a:visited,.guides [role="main"] h4 a:visited,.tutorial [role="main"] h4 a:visited,.sites-using-susy [role="main"] h5 a:link,.demos_index [role="main"] h5 a:link,.guides [role="main"] h5 a:link,.tutorial [role="main"] h5 a:link,.sites-using-susy [role="main"] h5 a:visited,.demos_index [role="main"] h5 a:visited,.guides [role="main"] h5 a:visited,.tutorial [role="main"] h5 a:visited,.sites-using-susy [role="main"] h6 a:link,.demos_index [role="main"] h6 a:link,.guides [role="main"] h6 a:link,.tutorial [role="main"] h6 a:link,.sites-using-susy [role="main"] h6 a:visited,.demos_index [role="main"] h6 a:visited,.guides [role="main"] h6 a:visited,.tutorial [role="main"] h6 a:visited{position:relative;display:inline-block}.sites-using-susy [role="main"] h1 a:link::before,.demos_index [role="main"] h1 a:link::before,.guides [role="main"] h1 a:link::before,.tutorial [role="main"] h1 a:link::before,.sites-using-susy [role="main"] h1 a:visited::before,.demos_index [role="main"] h1 a:visited::before,.guides [role="main"] h1 a:visited::before,.tutorial [role="main"] h1 a:visited::before,.sites-using-susy [role="main"] h2 a:link::before,.demos_index [role="main"] h2 a:link::before,.guides [role="main"] h2 a:link::before,.tutorial [role="main"] h2 a:link::before,.sites-using-susy [role="main"] h2 a:visited::before,.demos_index [role="main"] h2 a:visited::before,.guides [role="main"] h2 a:visited::before,.tutorial [role="main"] h2 a:visited::before,.sites-using-susy [role="main"] h3 a:link::before,.demos_index [role="main"] h3 a:link::before,.guides [role="main"] h3 a:link::before,.tutorial [role="main"] h3 a:link::before,.sites-using-susy [role="main"] h3 a:visited::before,.demos_index [role="main"] h3 a:visited::before,.guides [role="main"] h3 a:visited::before,.tutorial [role="main"] h3 a:visited::before,.sites-using-susy [role="main"] h4 a:link::before,.demos_index [role="main"] h4 a:link::before,.guides [role="main"] h4 a:link::before,.tutorial [role="main"] h4 a:link::before,.sites-using-susy [role="main"] h4 a:visited::before,.demos_index [role="main"] h4 a:visited::before,.guides [role="main"] h4 a:visited::before,.tutorial [role="main"] h4 a:visited::before,.sites-using-susy [role="main"] h5 a:link::before,.demos_index [role="main"] h5 a:link::before,.guides [role="main"] h5 a:link::before,.tutorial [role="main"] h5 a:link::before,.sites-using-susy [role="main"] h5 a:visited::before,.demos_index [role="main"] h5 a:visited::before,.guides [role="main"] h5 a:visited::before,.tutorial [role="main"] h5 a:visited::before,.sites-using-susy [role="main"] h6 a:link::before,.demos_index [role="main"] h6 a:link::before,.guides [role="main"] h6 a:link::before,.tutorial [role="main"] h6 a:link::before,.sites-using-susy [role="main"] h6 a:visited::before,.demos_index [role="main"] h6 a:visited::before,.guides [role="main"] h6 a:visited::before,.tutorial [role="main"] h6 a:visited::before{-webkit-transition:all 300ms;-moz-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;position:absolute;display:block;right:100%;top:0;margin-right:8px;line-height:inherit}.sites-using-susy [role="main"] h1 a:hover::before,.demos_index [role="main"] h1 a:hover::before,.guides [role="main"] h1 a:hover::before,.tutorial [role="main"] h1 a:hover::before,.sites-using-susy [role="main"] h1 a:focus::before,.demos_index [role="main"] h1 a:focus::before,.guides [role="main"] h1 a:focus::before,.tutorial [role="main"] h1 a:focus::before,.sites-using-susy [role="main"] h1 a:active::before,.demos_index [role="main"] h1 a:active::before,.guides [role="main"] h1 a:active::before,.tutorial [role="main"] h1 a:active::before,.sites-using-susy [role="main"] h2 a:hover::before,.demos_index [role="main"] h2 a:hover::before,.guides [role="main"] h2 a:hover::before,.tutorial [role="main"] h2 a:hover::before,.sites-using-susy [role="main"] h2 a:focus::before,.demos_index [role="main"] h2 a:focus::before,.guides [role="main"] h2 a:focus::before,.tutorial [role="main"] h2 a:focus::before,.sites-using-susy [role="main"] h2 a:active::before,.demos_index [role="main"] h2 a:active::before,.guides [role="main"] h2 a:active::before,.tutorial [role="main"] h2 a:active::before,.sites-using-susy [role="main"] h3 a:hover::before,.demos_index [role="main"] h3 a:hover::before,.guides [role="main"] h3 a:hover::before,.tutorial [role="main"] h3 a:hover::before,.sites-using-susy [role="main"] h3 a:focus::before,.demos_index [role="main"] h3 a:focus::before,.guides [role="main"] h3 a:focus::before,.tutorial [role="main"] h3 a:focus::before,.sites-using-susy [role="main"] h3 a:active::before,.demos_index [role="main"] h3 a:active::before,.guides [role="main"] h3 a:active::before,.tutorial [role="main"] h3 a:active::before,.sites-using-susy [role="main"] h4 a:hover::before,.demos_index [role="main"] h4 a:hover::before,.guides [role="main"] h4 a:hover::before,.tutorial [role="main"] h4 a:hover::before,.sites-using-susy [role="main"] h4 a:focus::before,.demos_index [role="main"] h4 a:focus::before,.guides [role="main"] h4 a:focus::before,.tutorial [role="main"] h4 a:focus::before,.sites-using-susy [role="main"] h4 a:active::before,.demos_index [role="main"] h4 a:active::before,.guides [role="main"] h4 a:active::before,.tutorial [role="main"] h4 a:active::before,.sites-using-susy [role="main"] h5 a:hover::before,.demos_index [role="main"] h5 a:hover::before,.guides [role="main"] h5 a:hover::before,.tutorial [role="main"] h5 a:hover::before,.sites-using-susy [role="main"] h5 a:focus::before,.demos_index [role="main"] h5 a:focus::before,.guides [role="main"] h5 a:focus::before,.tutorial [role="main"] h5 a:focus::before,.sites-using-susy [role="main"] h5 a:active::before,.demos_index [role="main"] h5 a:active::before,.guides [role="main"] h5 a:active::before,.tutorial [role="main"] h5 a:active::before,.sites-using-susy [role="main"] h6 a:hover::before,.demos_index [role="main"] h6 a:hover::before,.guides [role="main"] h6 a:hover::before,.tutorial [role="main"] h6 a:hover::before,.sites-using-susy [role="main"] h6 a:focus::before,.demos_index [role="main"] h6 a:focus::before,.guides [role="main"] h6 a:focus::before,.tutorial [role="main"] h6 a:focus::before,.sites-using-susy [role="main"] h6 a:active::before,.demos_index [role="main"] h6 a:active::before,.guides [role="main"] h6 a:active::before,.tutorial [role="main"] h6 a:active::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}.sites-using-susy [role="main"] h1 a:link,.demos_index [role="main"] h1 a:link,.guides [role="main"] h1 a:link,.tutorial [role="main"] h1 a:link,.sites-using-susy [role="main"] h1 a:visited,.demos_index [role="main"] h1 a:visited,.guides [role="main"] h1 a:visited,.tutorial [role="main"] h1 a:visited,.sites-using-susy [role="main"] h2 a:link,.demos_index [role="main"] h2 a:link,.guides [role="main"] h2 a:link,.tutorial [role="main"] h2 a:link,.sites-using-susy [role="main"] h2 a:visited,.demos_index [role="main"] h2 a:visited,.guides [role="main"] h2 a:visited,.tutorial [role="main"] h2 a:visited,.sites-using-susy [role="main"] h3 a:link,.demos_index [role="main"] h3 a:link,.guides [role="main"] h3 a:link,.tutorial [role="main"] h3 a:link,.sites-using-susy [role="main"] h3 a:visited,.demos_index [role="main"] h3 a:visited,.guides [role="main"] h3 a:visited,.tutorial [role="main"] h3 a:visited{color:#394549}.sites-using-susy [role="main"] h4 a:link,.demos_index [role="main"] h4 a:link,.guides [role="main"] h4 a:link,.tutorial [role="main"] h4 a:link,.sites-using-susy [role="main"] h4 a:visited,.demos_index [role="main"] h4 a:visited,.guides [role="main"] h4 a:visited,.tutorial [role="main"] h4 a:visited,.sites-using-susy [role="main"] h5 a:link,.demos_index [role="main"] h5 a:link,.guides [role="main"] h5 a:link,.tutorial [role="main"] h5 a:link,.sites-using-susy [role="main"] h5 a:visited,.demos_index [role="main"] h5 a:visited,.guides [role="main"] h5 a:visited,.tutorial [role="main"] h5 a:visited,.sites-using-susy [role="main"] h6 a:link,.demos_index [role="main"] h6 a:link,.guides [role="main"] h6 a:link,.tutorial [role="main"] h6 a:link,.sites-using-susy [role="main"] h6 a:visited,.demos_index [role="main"] h6 a:visited,.guides [role="main"] h6 a:visited,.tutorial [role="main"] h6 a:visited{color:#8d1a18}.sites-using-susy [role="main"] h4 a:link::before,.demos_index [role="main"] h4 a:link::before,.guides [role="main"] h4 a:link::before,.tutorial [role="main"] h4 a:link::before,.sites-using-susy [role="main"] h4 a:visited::before,.demos_index [role="main"] h4 a:visited::before,.guides [role="main"] h4 a:visited::before,.tutorial [role="main"] h4 a:visited::before,.sites-using-susy [role="main"] h5 a:link::before,.demos_index [role="main"] h5 a:link::before,.guides [role="main"] h5 a:link::before,.tutorial [role="main"] h5 a:link::before,.sites-using-susy [role="main"] h5 a:visited::before,.demos_index [role="main"] h5 a:visited::before,.guides [role="main"] h5 a:visited::before,.tutorial [role="main"] h5 a:visited::before,.sites-using-susy [role="main"] h6 a:link::before,.demos_index [role="main"] h6 a:link::before,.guides [role="main"] h6 a:link::before,.tutorial [role="main"] h6 a:link::before,.sites-using-susy [role="main"] h6 a:visited::before,.demos_index [role="main"] h6 a:visited::before,.guides [role="main"] h6 a:visited::before,.tutorial [role="main"] h6 a:visited::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=75);opacity:.75}.sites-using-susy [role="main"] h4 a:hover::before,.demos_index [role="main"] h4 a:hover::before,.guides [role="main"] h4 a:hover::before,.tutorial [role="main"] h4 a:hover::before,.sites-using-susy [role="main"] h4 a:focus::before,.demos_index [role="main"] h4 a:focus::before,.guides [role="main"] h4 a:focus::before,.tutorial [role="main"] h4 a:focus::before,.sites-using-susy [role="main"] h4 a:active::before,.demos_index [role="main"] h4 a:active::before,.guides [role="main"] h4 a:active::before,.tutorial [role="main"] h4 a:active::before,.sites-using-susy [role="main"] h5 a:hover::before,.demos_index [role="main"] h5 a:hover::before,.guides [role="main"] h5 a:hover::before,.tutorial [role="main"] h5 a:hover::before,.sites-using-susy [role="main"] h5 a:focus::before,.demos_index [role="main"] h5 a:focus::before,.guides [role="main"] h5 a:focus::before,.tutorial [role="main"] h5 a:focus::before,.sites-using-susy [role="main"] h5 a:active::before,.demos_index [role="main"] h5 a:active::before,.guides [role="main"] h5 a:active::before,.tutorial [role="main"] h5 a:active::before,.sites-using-susy [role="main"] h6 a:hover::before,.demos_index [role="main"] h6 a:hover::before,.guides [role="main"] h6 a:hover::before,.tutorial [role="main"] h6 a:hover::before,.sites-using-susy [role="main"] h6 a:focus::before,.demos_index [role="main"] h6 a:focus::before,.guides [role="main"] h6 a:focus::before,.tutorial [role="main"] h6 a:focus::before,.sites-using-susy [role="main"] h6 a:active::before,.demos_index [role="main"] h6 a:active::before,.guides [role="main"] h6 a:active::before,.tutorial [role="main"] h6 a:active::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}.sites-using-susy [role="main"] ul,.demos_index [role="main"] ul,.guides [role="main"] ul,.tutorial [role="main"] ul,.sites-using-susy [role="main"] ol,.demos_index [role="main"] ol,.guides [role="main"] ol,.tutorial [role="main"] ol,.sites-using-susy [role="main"] p,.demos_index [role="main"] p,.guides [role="main"] p,.tutorial [role="main"] p{margin-bottom:1.25em}.sites-using-susy [role="main"] li,.demos_index [role="main"] li,.guides [role="main"] li,.tutorial [role="main"] li{margin-bottom:.625em}.sites-using-susy [role="main"] ul,.demos_index [role="main"] ul,.guides [role="main"] ul,.tutorial [role="main"] ul{list-style:circle}.sites-using-susy [role="main"] ol,.demos_index [role="main"] ol,.guides [role="main"] ol,.tutorial [role="main"] ol{list-style:decimal}.sites-using-susy [role="main"] strong,.demos_index [role="main"] strong,.guides [role="main"] strong,.tutorial [role="main"] strong,.sites-using-susy [role="main"] code,.demos_index [role="main"] code,.guides [role="main"] code,.tutorial [role="main"] code{font-weight:700;color:#5a6d75}.sites-using-susy [role="main"] em,.demos_index [role="main"] em,.guides [role="main"] em,.tutorial [role="main"] em{font-style:italic}.sites-using-susy [role="main"] a[href^="http"]::after,.demos_index [role="main"] a[href^="http"]::after,.guides [role="main"] a[href^="http"]::after,.tutorial [role="main"] a[href^="http"]::after{font-size:.75em}.page{*zoom:1;max-width:23.5em;_width:23.5em;padding-left:1.5em;padding-right:1.5em;margin-left:auto;margin-right:auto;position:relative}.page:after{content:"";display:table;clear:both}:target .page{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(19.5122%,rgba(255,254,251,0.5)),color-stop(19.5122%,rgba(0,0,0,0)),color-stop(26.82927%,rgba(0,0,0,0)),color-stop(26.82927%,rgba(255,254,251,0.5)),color-stop(46.34146%,rgba(255,254,251,0.5)),color-stop(46.34146%,rgba(0,0,0,0)),color-stop(53.65854%,rgba(0,0,0,0)),color-stop(53.65854%,rgba(255,254,251,0.5)),color-stop(73.17073%,rgba(255,254,251,0.5)),color-stop(73.17073%,rgba(0,0,0,0)),color-stop(80.4878%,rgba(0,0,0,0)),color-stop(80.4878%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 19.5122%,rgba(0,0,0,0) 19.5122%,rgba(0,0,0,0) 26.82927%,rgba(255,254,251,0.5) 26.82927%,rgba(255,254,251,0.5) 46.34146%,rgba(0,0,0,0) 46.34146%,rgba(0,0,0,0) 53.65854%,rgba(255,254,251,0.5) 53.65854%,rgba(255,254,251,0.5) 73.17073%,rgba(0,0,0,0) 73.17073%,rgba(0,0,0,0) 80.4878%,rgba(255,254,251,0.5) 80.4878%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 19.5122%,rgba(0,0,0,0) 19.5122%,rgba(0,0,0,0) 26.82927%,rgba(255,254,251,0.5) 26.82927%,rgba(255,254,251,0.5) 46.34146%,rgba(0,0,0,0) 46.34146%,rgba(0,0,0,0) 53.65854%,rgba(255,254,251,0.5) 53.65854%,rgba(255,254,251,0.5) 73.17073%,rgba(0,0,0,0) 73.17073%,rgba(0,0,0,0) 80.4878%,rgba(255,254,251,0.5) 80.4878%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 19.5122%,rgba(0,0,0,0) 19.5122%,rgba(0,0,0,0) 26.82927%,rgba(255,254,251,0.5) 26.82927%,rgba(255,254,251,0.5) 46.34146%,rgba(0,0,0,0) 46.34146%,rgba(0,0,0,0) 53.65854%,rgba(255,254,251,0.5) 53.65854%,rgba(255,254,251,0.5) 73.17073%,rgba(0,0,0,0) 73.17073%,rgba(0,0,0,0) 80.4878%,rgba(255,254,251,0.5) 80.4878%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 19.5122%,rgba(0,0,0,0) 19.5122%,rgba(0,0,0,0) 26.82927%,rgba(255,254,251,0.5) 26.82927%,rgba(255,254,251,0.5) 46.34146%,rgba(0,0,0,0) 46.34146%,rgba(0,0,0,0) 53.65854%,rgba(255,254,251,0.5) 53.65854%,rgba(255,254,251,0.5) 73.17073%,rgba(0,0,0,0) 73.17073%,rgba(0,0,0,0) 80.4878%,rgba(255,254,251,0.5) 80.4878%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box}:target .page .off a{display:block}:target .page .on a{display:none}@media (min-width:40em){.page{max-width:56.5em;padding-left:1.5em;padding-right:1.5em;margin-left:auto;margin-right:auto}.page:after{content:"";display:table;clear:both}:target .page{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(7.47664%,rgba(255,254,251,0.5)),color-stop(7.47664%,rgba(0,0,0,0)),color-stop(10.28037%,rgba(0,0,0,0)),color-stop(10.28037%,rgba(255,254,251,0.5)),color-stop(17.75701%,rgba(255,254,251,0.5)),color-stop(17.75701%,rgba(0,0,0,0)),color-stop(20.56075%,rgba(0,0,0,0)),color-stop(20.56075%,rgba(255,254,251,0.5)),color-stop(28.03738%,rgba(255,254,251,0.5)),color-stop(28.03738%,rgba(0,0,0,0)),color-stop(30.84112%,rgba(0,0,0,0)),color-stop(30.84112%,rgba(255,254,251,0.5)),color-stop(38.31776%,rgba(255,254,251,0.5)),color-stop(38.31776%,rgba(0,0,0,0)),color-stop(41.1215%,rgba(0,0,0,0)),color-stop(41.1215%,rgba(255,254,251,0.5)),color-stop(48.59813%,rgba(255,254,251,0.5)),color-stop(48.59813%,rgba(0,0,0,0)),color-stop(51.40187%,rgba(0,0,0,0)),color-stop(51.40187%,rgba(255,254,251,0.5)),color-stop(58.8785%,rgba(255,254,251,0.5)),color-stop(58.8785%,rgba(0,0,0,0)),color-stop(61.68224%,rgba(0,0,0,0)),color-stop(61.68224%,rgba(255,254,251,0.5)),color-stop(69.15888%,rgba(255,254,251,0.5)),color-stop(69.15888%,rgba(0,0,0,0)),color-stop(71.96262%,rgba(0,0,0,0)),color-stop(71.96262%,rgba(255,254,251,0.5)),color-stop(79.43925%,rgba(255,254,251,0.5)),color-stop(79.43925%,rgba(0,0,0,0)),color-stop(82.24299%,rgba(0,0,0,0)),color-stop(82.24299%,rgba(255,254,251,0.5)),color-stop(89.71963%,rgba(255,254,251,0.5)),color-stop(89.71963%,rgba(0,0,0,0)),color-stop(92.52336%,rgba(0,0,0,0)),color-stop(92.52336%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 7.47664%,rgba(0,0,0,0) 7.47664%,rgba(0,0,0,0) 10.28037%,rgba(255,254,251,0.5) 10.28037%,rgba(255,254,251,0.5) 17.75701%,rgba(0,0,0,0) 17.75701%,rgba(0,0,0,0) 20.56075%,rgba(255,254,251,0.5) 20.56075%,rgba(255,254,251,0.5) 28.03738%,rgba(0,0,0,0) 28.03738%,rgba(0,0,0,0) 30.84112%,rgba(255,254,251,0.5) 30.84112%,rgba(255,254,251,0.5) 38.31776%,rgba(0,0,0,0) 38.31776%,rgba(0,0,0,0) 41.1215%,rgba(255,254,251,0.5) 41.1215%,rgba(255,254,251,0.5) 48.59813%,rgba(0,0,0,0) 48.59813%,rgba(0,0,0,0) 51.40187%,rgba(255,254,251,0.5) 51.40187%,rgba(255,254,251,0.5) 58.8785%,rgba(0,0,0,0) 58.8785%,rgba(0,0,0,0) 61.68224%,rgba(255,254,251,0.5) 61.68224%,rgba(255,254,251,0.5) 69.15888%,rgba(0,0,0,0) 69.15888%,rgba(0,0,0,0) 71.96262%,rgba(255,254,251,0.5) 71.96262%,rgba(255,254,251,0.5) 79.43925%,rgba(0,0,0,0) 79.43925%,rgba(0,0,0,0) 82.24299%,rgba(255,254,251,0.5) 82.24299%,rgba(255,254,251,0.5) 89.71963%,rgba(0,0,0,0) 89.71963%,rgba(0,0,0,0) 92.52336%,rgba(255,254,251,0.5) 92.52336%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 7.47664%,rgba(0,0,0,0) 7.47664%,rgba(0,0,0,0) 10.28037%,rgba(255,254,251,0.5) 10.28037%,rgba(255,254,251,0.5) 17.75701%,rgba(0,0,0,0) 17.75701%,rgba(0,0,0,0) 20.56075%,rgba(255,254,251,0.5) 20.56075%,rgba(255,254,251,0.5) 28.03738%,rgba(0,0,0,0) 28.03738%,rgba(0,0,0,0) 30.84112%,rgba(255,254,251,0.5) 30.84112%,rgba(255,254,251,0.5) 38.31776%,rgba(0,0,0,0) 38.31776%,rgba(0,0,0,0) 41.1215%,rgba(255,254,251,0.5) 41.1215%,rgba(255,254,251,0.5) 48.59813%,rgba(0,0,0,0) 48.59813%,rgba(0,0,0,0) 51.40187%,rgba(255,254,251,0.5) 51.40187%,rgba(255,254,251,0.5) 58.8785%,rgba(0,0,0,0) 58.8785%,rgba(0,0,0,0) 61.68224%,rgba(255,254,251,0.5) 61.68224%,rgba(255,254,251,0.5) 69.15888%,rgba(0,0,0,0) 69.15888%,rgba(0,0,0,0) 71.96262%,rgba(255,254,251,0.5) 71.96262%,rgba(255,254,251,0.5) 79.43925%,rgba(0,0,0,0) 79.43925%,rgba(0,0,0,0) 82.24299%,rgba(255,254,251,0.5) 82.24299%,rgba(255,254,251,0.5) 89.71963%,rgba(0,0,0,0) 89.71963%,rgba(0,0,0,0) 92.52336%,rgba(255,254,251,0.5) 92.52336%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 7.47664%,rgba(0,0,0,0) 7.47664%,rgba(0,0,0,0) 10.28037%,rgba(255,254,251,0.5) 10.28037%,rgba(255,254,251,0.5) 17.75701%,rgba(0,0,0,0) 17.75701%,rgba(0,0,0,0) 20.56075%,rgba(255,254,251,0.5) 20.56075%,rgba(255,254,251,0.5) 28.03738%,rgba(0,0,0,0) 28.03738%,rgba(0,0,0,0) 30.84112%,rgba(255,254,251,0.5) 30.84112%,rgba(255,254,251,0.5) 38.31776%,rgba(0,0,0,0) 38.31776%,rgba(0,0,0,0) 41.1215%,rgba(255,254,251,0.5) 41.1215%,rgba(255,254,251,0.5) 48.59813%,rgba(0,0,0,0) 48.59813%,rgba(0,0,0,0) 51.40187%,rgba(255,254,251,0.5) 51.40187%,rgba(255,254,251,0.5) 58.8785%,rgba(0,0,0,0) 58.8785%,rgba(0,0,0,0) 61.68224%,rgba(255,254,251,0.5) 61.68224%,rgba(255,254,251,0.5) 69.15888%,rgba(0,0,0,0) 69.15888%,rgba(0,0,0,0) 71.96262%,rgba(255,254,251,0.5) 71.96262%,rgba(255,254,251,0.5) 79.43925%,rgba(0,0,0,0) 79.43925%,rgba(0,0,0,0) 82.24299%,rgba(255,254,251,0.5) 82.24299%,rgba(255,254,251,0.5) 89.71963%,rgba(0,0,0,0) 89.71963%,rgba(0,0,0,0) 92.52336%,rgba(255,254,251,0.5) 92.52336%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 7.47664%,rgba(0,0,0,0) 7.47664%,rgba(0,0,0,0) 10.28037%,rgba(255,254,251,0.5) 10.28037%,rgba(255,254,251,0.5) 17.75701%,rgba(0,0,0,0) 17.75701%,rgba(0,0,0,0) 20.56075%,rgba(255,254,251,0.5) 20.56075%,rgba(255,254,251,0.5) 28.03738%,rgba(0,0,0,0) 28.03738%,rgba(0,0,0,0) 30.84112%,rgba(255,254,251,0.5) 30.84112%,rgba(255,254,251,0.5) 38.31776%,rgba(0,0,0,0) 38.31776%,rgba(0,0,0,0) 41.1215%,rgba(255,254,251,0.5) 41.1215%,rgba(255,254,251,0.5) 48.59813%,rgba(0,0,0,0) 48.59813%,rgba(0,0,0,0) 51.40187%,rgba(255,254,251,0.5) 51.40187%,rgba(255,254,251,0.5) 58.8785%,rgba(0,0,0,0) 58.8785%,rgba(0,0,0,0) 61.68224%,rgba(255,254,251,0.5) 61.68224%,rgba(255,254,251,0.5) 69.15888%,rgba(0,0,0,0) 69.15888%,rgba(0,0,0,0) 71.96262%,rgba(255,254,251,0.5) 71.96262%,rgba(255,254,251,0.5) 79.43925%,rgba(0,0,0,0) 79.43925%,rgba(0,0,0,0) 82.24299%,rgba(255,254,251,0.5) 82.24299%,rgba(255,254,251,0.5) 89.71963%,rgba(0,0,0,0) 89.71963%,rgba(0,0,0,0) 92.52336%,rgba(255,254,251,0.5) 92.52336%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box}}[role="main"]{margin-bottom:1.25em}@media (min-width:40em){[role="main"]{margin-bottom:2.5em}}[role="contentinfo"]{clear:both}.guides .secondary,.tutorial .secondary{display:none}@media (min-width:40em){.guides .secondary,.tutorial .secondary{width:28.03738%;float:left;margin-right:2.80374%;display:block}.guides [role="main"],.tutorial [role="main"]{width:69.15888%;float:right;margin-right:0}}[role="banner"]{border-top-width:.1875em;border-top-style:solid;padding-top:.4375em;border-color:#dc322f;text-align:center}[role="banner"] h1{font-size:5.9375em;line-height:1.05263em}@media (min-width:40em){[role="banner"] h1{font-size:11.375em;line-height:1.04396em}}[role="banner"] h1 span{display:none}[role="banner"] h1 a:before{content:"\2039"}[role="banner"] h1 a:after{content:"\203A"}[role="banner"] h1 a:before,[role="banner"] h1 a:after{font-size:.875em;position:relative;top:-0.16em;letter-spacing:-0.025em}[role="banner"] h1 a:hover,[role="banner"] h1 a:focus,[role="banner"] h1 a:active{color:#dc322f}[role="banner"] h1 a:hover b,[role="banner"] h1 a:hover span,[role="banner"] h1 a:focus b,[role="banner"] h1 a:focus span,[role="banner"] h1 a:active b,[role="banner"] h1 a:active span{letter-spacing:0}[role="banner"] h1 a:hover span,[role="banner"] h1 a:focus span,[role="banner"] h1 a:active span{opacity:1}@media (min-width:40em){.fontface [role="banner"] h1 b,.fontface [role="banner"] h1 span{-webkit-transition:all 300ms;-moz-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms;display:inline-block;text-transform:uppercase;letter-spacing:-0.44em}.fontface [role="banner"] h1 span{opacity:0}}[role="banner"] h2{font-size:1.25em;line-height:1.5em;margin-top:-1em;margin-bottom:.5em;display:block;position:relative;z-index:2}@media (min-width:40em){[role="banner"] h2{font-size:1.9375em;line-height:1.29032em;margin-top:-0.64516em;margin-bottom:.64516em}}[role="navigation"]{margin-bottom:1.25em;background:#eee8d5;background:rgba(238,232,213,0.5);font-style:italic}[role="navigation"] ul{margin:0;padding:0;border:0;overflow:hidden;*zoom:1}[role="navigation"] ul li{list-style-image:none;list-style-type:none;margin-left:0;display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;white-space:nowrap}[role="navigation"] a:link,[role="navigation"] a:visited{display:block;padding:.3125em .625em;color:#657b83}.guides_getting-started [role="navigation"] a:link[href*='getting-started'],.tutorial [role="navigation"] a:link[href*='getting-started'],.guides_getting-started [role="navigation"] a:visited[href*='getting-started'],.tutorial [role="navigation"] a:visited[href*='getting-started']{color:#4f6066}.guides_reference [role="navigation"] a:link[href*='reference'],.guides_reference [role="navigation"] a:visited[href*='reference']{color:#4f6066}.sites-using-susy [role="navigation"] a:link[href*='sites-using-susy'],.sites-using-susy [role="navigation"] a:visited[href*='sites-using-susy']{color:#4f6066}.demos [role="navigation"] a:link[href*='demos'],.demos [role="navigation"] a:visited[href*='demos']{color:#4f6066}[role="navigation"] a:hover,[role="navigation"] a:focus,[role="navigation"] a:active{color:#8d1a18}@media (min-width:40em){[role="navigation"]{margin-bottom:2.5em}}.grid-toggle{display:none;position:absolute;top:.5em;right:1.5em}.target .grid-toggle{display:block}.on a:link,.on a:visited,.off a:link,.off a:visited{-webkit-transition:all 300ms;-moz-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms;font-size:1.25em;line-height:1.5em;position:relative;width:1.5em;color:#f6d784}.on a:hover,.on a:focus,.on a:active,.off a:hover,.off a:focus,.off a:active{color:#657b83}.on a::before,.off a::before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);position:absolute;top:0;bottom:0;left:0;right:0;text-indent:0}.off a:link,.off a:visited{display:none;color:#dc322f}.on a{display:block}.ag-test{font-family:"FranklinGothicFSCd","Helvetica Neue",Arial,Helvetica,sans-serif;overflow:hidden;*zoom:1;margin-bottom:1.25em;clear:both;background:#fbeecb}.ag-test div{-webkit-border-radius:.25em;-moz-border-radius:.25em;border-radius:.25em;min-height:5em}.ag-test h2{padding:.625em .3125em;font-size:1em;font-weight:700;color:#394549;text-align:center}.ag-test p{font-size:.8125em;line-height:1.53846em;display:block;padding:.76923em .38462em;color:#394549;text-align:center}.ag-test strong{display:block;text-transform:uppercase;font-weight:700}.ag-test .ag1,.ag-test .ag3{background:#71dad2}.ag-test .ag2{background:#fae7b3}.ag-test .ag7{background:#f6d784}.ag-test .ag4,.ag-test .ag5,.ag-test .ag8,.ag-test .ag9{background:#ee9e9c}.ag-test .ag6{background:#f09671}.ag-test .ag10{background:#ea9fc3}.ag-test .ag1,.ag-test .ag3{min-height:22.5em}.ag-test .ag6{min-height:13.75em}.ag-test .ag1{width:17.75701%;float:left;margin-right:2.80374%;display:inline}.ag-test .ag2{width:58.8785%;float:left;margin-right:2.80374%;display:inline}.ag-test .ag3{width:17.75701%;float:right;margin-right:0;*margin-left:-1.5em;display:inline}.ag-test .ag4{width:47.61905%;float:left;margin-right:4.7619%;display:inline}.ag-test .ag5{width:47.61905%;float:right;margin-right:0;*margin-left:-1.5em;display:inline}.ag-test .ag6{width:30.15873%;float:left;margin-right:4.7619%;display:inline}.ag-test .ag7{width:65.07937%;float:right;margin-right:0;*margin-left:-1.5em;display:inline}.ag-test .ag8{width:46.34146%;float:left;margin-right:7.31707%;display:inline}.ag-test .ag9{width:46.34146%;float:right;margin-right:0;*margin-left:-1.5em;display:inline}.ag-test .ag10{clear:both}@media (min-width:50em){.ag-test + .highlight{width:48.59813%;float:left;margin-right:2.80374%}}.secondary{font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif}.secondary h2 a{color:#5a6d75}.secondary h2 ~ h2,.secondary h2 ~ h3{margin-top:1.25em}.secondary h2,.secondary h3{font-weight:700}.version{margin-top:1.5625em;margin-bottom:1.5625em;font-family:"CenturyOldStyleFSCaps","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif;color:#4f6066;text-transform:lowercase}.version span{color:#657b83}[role="contentinfo"]{overflow:hidden;*zoom:1;text-shadow:#b9221f 0 1px 0;background:#dc322f;color:#fbeecb;margin:0 -1.5em;padding:1.25em 1.5em}[role="contentinfo"] a:link,[role="contentinfo"] a:visited{font-family:"CenturyOldStyleFSCaps","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif;color:#f6d784}[role="contentinfo"] a:hover,[role="contentinfo"] a:focus,[role="contentinfo"] a:active{color:#fdf6e3}@media (min-width:40em){[role="contentinfo"] .colophon{width:69.15888%;float:right;margin-right:0}[role="contentinfo"] .license{width:28.03738%;float:left;margin-right:2.80374%}}[role="contentinfo"] .caps,[role="contentinfo"] .sites-using-susy [role="main"] h2,.sites-using-susy [role="main"] [role="contentinfo"] h2,[role="contentinfo"] .demos_index [role="main"] h2,.demos_index [role="main"] [role="contentinfo"] h2,[role="contentinfo"] .guides [role="main"] h2,.guides [role="main"] [role="contentinfo"] h2,[role="contentinfo"] .tutorial [role="main"] h2,.tutorial [role="main"] [role="contentinfo"] h2,[role="contentinfo"] .sites-using-susy [role="main"] h4,.sites-using-susy [role="main"] [role="contentinfo"] h4,[role="contentinfo"] .demos_index [role="main"] h4,.demos_index [role="main"] [role="contentinfo"] h4,[role="contentinfo"] .guides [role="main"] h4,.guides [role="main"] [role="contentinfo"] h4,[role="contentinfo"] .tutorial [role="main"] h4,.tutorial [role="main"] [role="contentinfo"] h4,[role="contentinfo"] .secondary h2,.secondary [role="contentinfo"] h2{font-family:"CenturyOldStyleFSCaps","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}.colophon p{margin-bottom:1.25em}.license{font-family:"CenturyOldStyleFSCaps","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif;text-transform:lowercase}.license a:link,.license a:visited{white-space:nowrap}.intro,.andmore{font-size:1.25em;line-height:1.5em}.intro h2,.andmore h2{font-size:1.55em;line-height:.96774em}.intro p,.andmore p{margin-bottom:1em}.intro strong,.andmore strong{font-weight:700}.intro em,.andmore em{font-style:italic}.download{font-size:1.25em;line-height:1.5em;border-width:.05em;border-style:solid;padding:.45em;margin-top:-0.5em;margin-bottom:1em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-color:#f6d784;background:#fae7b3;font-weight:700;text-align:center;text-transform:uppercase;letter-spacing:.1em}@media (min-width:40em){.download{width:48.59813%;float:right;margin-right:0}}.highlight{color:#394549;font-weight:700}.intro{margin-bottom:1em}.intro p:last-child{font-style:italic}@media (min-width:40em){.intro{width:48.59813%;float:left;margin-right:2.80374%}}.info p{margin:0}.info strong{color:#4f6066}@media (min-width:40em){.info{width:48.59813%;float:right;margin-right:0}}.andmore p:last-child{font-style:italic}@media (min-width:50em){.andmore{width:48.59813%;float:right;margin-right:0}} \ No newline at end of file +html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:400;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block}.highlight{background-color:#f4f4f4;border:solid 1px #eee}.c{color:#93a1a1;font-style:italic}.g{color:#d33682}.k{color:#859900}.l{color:#2aa198}.n{color:#268bd2}.cm{color:#93a1a1;font-style:italic}.cp{color:#93a1a1;font-style:italic}.c1{color:#93a1a1;font-style:italic}.cs{color:#93a1a1;font-style:italic}.gd{color:#d33682}.ge{color:#d33682}.gr{color:#d33682}.gh{color:#d33682}.gi{color:#d33682}.go{color:#d33682}.gp{color:#d33682}.gs{color:#d33682}.gu{color:#d33682}.gt{color:#d33682}.kc{color:#859900;font-weight:700}.kd{color:#859900}.kn{color:#dc322f;font-weight:700}.kp{color:#859900}.kr{color:#859900}.kt{color:#859900;font-weight:700}.ld{color:#2aa198}.m{color:#2aa198;font-weight:700}.s{color:#2aa198}.na{color:#268bd2}.nb{color:#cb4b16}.nc{color:#cb4b16}.no{color:#268bd2}.nd{color:#268bd2}.ni{color:#268bd2}.ne{color:#268bd2}.nf{color:#268bd2}.nl{color:#268bd2}.nn{color:#268bd2}.nx{color:#268bd2}.py{color:#268bd2}.nt{color:#268bd2;font-weight:700}.nv{color:#268bd2}.ow{color:#859900}.w{color:#586e75}.mf{color:#2aa198;font-weight:700}.mh{color:#2aa198;font-weight:700}.mi{color:#2aa198;font-weight:700}.mo{color:#2aa198;font-weight:700}.sb{color:#2aa198}.sc{color:#2aa198}.sd{color:#2aa198}.s2{color:#2aa198}.se{color:#2aa198}.sh{color:#2aa198}.si{color:#2aa198}.sx{color:#2aa198}.sr{color:#2aa198}.s1{color:#2aa198}.ss{color:#2aa198}.bp{color:#cb4b16}.vc{color:#268bd2}.vg{color:#268bd2}.vi{color:#268bd2}.il{color:#2aa198;font-weight:700}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-Book-webfont.eot');src:url('../fonts/fg/FranklinGothic-Book-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-Book-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-Book-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-Book-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-BookIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-BookIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-BookIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-BookIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-BookIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-Med-webfont.eot');src:url('../fonts/fg/FranklinGothic-Med-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-Med-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-Med-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-Med-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFS";src:url('../fonts/fg/FranklinGothic-MedIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-MedIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-MedIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-MedIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-MedIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-Cd-webfont.eot');src:url('../fonts/fg/FranklinGothic-Cd-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-Cd-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-Cd-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-Cd-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-CdIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-CdIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-CdIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-CdIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-CdIt-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-MedCd-webfont.eot');src:url('../fonts/fg/FranklinGothic-MedCd-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-MedCd-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-MedCd-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-MedCd-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"FranklinGothicFSCd";src:url('../fonts/fg/FranklinGothic-MedCdIt-webfont.eot');src:url('../fonts/fg/FranklinGothic-MedCdIt-webfont.eot?#iefix') format('eot'),url('../fonts/fg/FranklinGothic-MedCdIt-webfont.woff') format('woff'),url('../fonts/fg/FranklinGothic-MedCdIt-webfont.ttf') format('truetype'),url('../fonts/fg/FranklinGothic-MedCdIt-webfont.svg#webfont') format('svg');font-weight:700;font-style:italic}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/cos/CenturyOldStyle-Regular-webfont.eot');src:url('../fonts/cos/CenturyOldStyle-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyle-Regular-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyle-Regular-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyle-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/cos/CenturyOldStyle-Bold-webfont.eot');src:url('../fonts/cos/CenturyOldStyle-Bold-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyle-Bold-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyle-Bold-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyle-Bold-webfont.svg#webfont') format('svg');font-weight:700;font-style:normal}@font-face{font-family:"CenturyOldStyleFS";src:url('../fonts/cos/CenturyOldStyle-Italic-webfont.eot');src:url('../fonts/cos/CenturyOldStyle-Italic-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyle-Italic-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyle-Italic-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyle-Italic-webfont.svg#webfont') format('svg');font-weight:400;font-style:italic}@font-face{font-family:"CenturyOldStyleFSCaps";src:url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.eot');src:url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.eot?#iefix') format('eot'),url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.woff') format('woff'),url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.ttf') format('truetype'),url('../fonts/cos/CenturyOldStyleCaps-Regular-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"BaskervilleAmp";src:url('../fonts/amp/Baskerville-amp-webfont.eot');src:url('../fonts/amp/Baskerville-amp-webfont.eot?#iefix') format('eot'),url('../fonts/amp/Baskerville-amp-webfont.woff') format('woff'),url('../fonts/amp/Baskerville-amp-webfont.ttf') format('truetype'),url('../fonts/amp/Baskerville-amp-webfont.svg#webfont') format('svg');font-weight:400;font-style:normal}@font-face{font-family:"susy";src:url('../fonts/icons/susy.eot');src:url('../fonts/icons/susy.eot?#iefix') format('eot'),url('../fonts/icons/susy.svg#susy') format('svg'),url('../fonts/icons/susy.woff') format('woff'),url('../fonts/icons/susy.ttf') format('truetype');font-weight:400;font-style:normal}.on a:link:before,.on a:visited:before,.off a:link:before,.off a:visited:before,.sites-using-susy [role="main"] h1 a:link:before,.demos_index [role="main"] h1 a:link:before,.guides [role="main"] h1 a:link:before,.tutorial [role="main"] h1 a:link:before,.sites-using-susy [role="main"] h1 a:visited:before,.demos_index [role="main"] h1 a:visited:before,.guides [role="main"] h1 a:visited:before,.tutorial [role="main"] h1 a:visited:before,.sites-using-susy [role="main"] h2 a:link:before,.demos_index [role="main"] h2 a:link:before,.guides [role="main"] h2 a:link:before,.tutorial [role="main"] h2 a:link:before,.sites-using-susy [role="main"] h2 a:visited:before,.demos_index [role="main"] h2 a:visited:before,.guides [role="main"] h2 a:visited:before,.tutorial [role="main"] h2 a:visited:before,.sites-using-susy [role="main"] h3 a:link:before,.demos_index [role="main"] h3 a:link:before,.guides [role="main"] h3 a:link:before,.tutorial [role="main"] h3 a:link:before,.sites-using-susy [role="main"] h3 a:visited:before,.demos_index [role="main"] h3 a:visited:before,.guides [role="main"] h3 a:visited:before,.tutorial [role="main"] h3 a:visited:before,.sites-using-susy [role="main"] h4 a:link:before,.demos_index [role="main"] h4 a:link:before,.guides [role="main"] h4 a:link:before,.tutorial [role="main"] h4 a:link:before,.sites-using-susy [role="main"] h4 a:visited:before,.demos_index [role="main"] h4 a:visited:before,.guides [role="main"] h4 a:visited:before,.tutorial [role="main"] h4 a:visited:before,.sites-using-susy [role="main"] h5 a:link:before,.demos_index [role="main"] h5 a:link:before,.guides [role="main"] h5 a:link:before,.tutorial [role="main"] h5 a:link:before,.sites-using-susy [role="main"] h5 a:visited:before,.demos_index [role="main"] h5 a:visited:before,.guides [role="main"] h5 a:visited:before,.tutorial [role="main"] h5 a:visited:before,.sites-using-susy [role="main"] h6 a:link:before,.demos_index [role="main"] h6 a:link:before,.guides [role="main"] h6 a:link:before,.tutorial [role="main"] h6 a:link:before,.sites-using-susy [role="main"] h6 a:visited:before,.demos_index [role="main"] h6 a:visited:before,.guides [role="main"] h6 a:visited:before,.tutorial [role="main"] h6 a:visited:before,[role="navigation"] a:link:before,[role="navigation"] a:visited:before,.sites-using-susy [role="main"] a[href^="http"]::after,.demos_index [role="main"] a[href^="http"]::after,.guides [role="main"] a[href^="http"]::after,.tutorial [role="main"] a[href^="http"]::after,[data-icon]:before{font-family:'susy';font-style:normal;font-weight:400;speak:none}.on a:link:before,.on a:visited:before,.off a:link:before,.off a:visited:before,.sites-using-susy [role="main"] h1 a:link:before,.demos_index [role="main"] h1 a:link:before,.guides [role="main"] h1 a:link:before,.tutorial [role="main"] h1 a:link:before,.sites-using-susy [role="main"] h1 a:visited:before,.demos_index [role="main"] h1 a:visited:before,.guides [role="main"] h1 a:visited:before,.tutorial [role="main"] h1 a:visited:before,.sites-using-susy [role="main"] h2 a:link:before,.demos_index [role="main"] h2 a:link:before,.guides [role="main"] h2 a:link:before,.tutorial [role="main"] h2 a:link:before,.sites-using-susy [role="main"] h2 a:visited:before,.demos_index [role="main"] h2 a:visited:before,.guides [role="main"] h2 a:visited:before,.tutorial [role="main"] h2 a:visited:before,.sites-using-susy [role="main"] h3 a:link:before,.demos_index [role="main"] h3 a:link:before,.guides [role="main"] h3 a:link:before,.tutorial [role="main"] h3 a:link:before,.sites-using-susy [role="main"] h3 a:visited:before,.demos_index [role="main"] h3 a:visited:before,.guides [role="main"] h3 a:visited:before,.tutorial [role="main"] h3 a:visited:before,.sites-using-susy [role="main"] h4 a:link:before,.demos_index [role="main"] h4 a:link:before,.guides [role="main"] h4 a:link:before,.tutorial [role="main"] h4 a:link:before,.sites-using-susy [role="main"] h4 a:visited:before,.demos_index [role="main"] h4 a:visited:before,.guides [role="main"] h4 a:visited:before,.tutorial [role="main"] h4 a:visited:before,.sites-using-susy [role="main"] h5 a:link:before,.demos_index [role="main"] h5 a:link:before,.guides [role="main"] h5 a:link:before,.tutorial [role="main"] h5 a:link:before,.sites-using-susy [role="main"] h5 a:visited:before,.demos_index [role="main"] h5 a:visited:before,.guides [role="main"] h5 a:visited:before,.tutorial [role="main"] h5 a:visited:before,.sites-using-susy [role="main"] h6 a:link:before,.demos_index [role="main"] h6 a:link:before,.guides [role="main"] h6 a:link:before,.tutorial [role="main"] h6 a:link:before,.sites-using-susy [role="main"] h6 a:visited:before,.demos_index [role="main"] h6 a:visited:before,.guides [role="main"] h6 a:visited:before,.tutorial [role="main"] h6 a:visited:before,[role="navigation"] a:link:before,[role="navigation"] a:visited:before{margin-right:.4em}.sites-using-susy [role="main"] a[href^="http"]::after,.demos_index [role="main"] a[href^="http"]::after,.guides [role="main"] a[href^="http"]::after,.tutorial [role="main"] a[href^="http"]::after{margin-left:.4em}.on a:link,.on a:visited,.off a:link,.off a:visited{position:relative;min-width:1em;text-indent:-9999px}.on a:link:before,.on a:visited:before,.off a:link:before,.off a:visited:before{position:absolute;top:0;left:0;text-indent:0;margin-right:0}[data-icon]:before{content:attr(data-icon)}[role="navigation"] a[href*='getting-started']:link:before,[role="navigation"] a[href*='getting-started']:visited:before{content:"\e000"}[role="navigation"] a[href*='reference']:link:before,[role="navigation"] a[href*='reference']:visited:before{content:"\e001"}[role="navigation"] a[href*='demos']:link:before,[role="navigation"] a[href*='demos']:visited:before{content:"\e002"}[role="navigation"] a[href*='twitter']:link:before,[role="navigation"] a[href*='twitter']:visited:before{content:"\e005"}.sites-using-susy [role="main"] h1 a:link:before,.demos_index [role="main"] h1 a:link:before,.guides [role="main"] h1 a:link:before,.tutorial [role="main"] h1 a:link:before,.sites-using-susy [role="main"] h1 a:visited:before,.demos_index [role="main"] h1 a:visited:before,.guides [role="main"] h1 a:visited:before,.tutorial [role="main"] h1 a:visited:before,.sites-using-susy [role="main"] h2 a:link:before,.demos_index [role="main"] h2 a:link:before,.guides [role="main"] h2 a:link:before,.tutorial [role="main"] h2 a:link:before,.sites-using-susy [role="main"] h2 a:visited:before,.demos_index [role="main"] h2 a:visited:before,.guides [role="main"] h2 a:visited:before,.tutorial [role="main"] h2 a:visited:before,.sites-using-susy [role="main"] h3 a:link:before,.demos_index [role="main"] h3 a:link:before,.guides [role="main"] h3 a:link:before,.tutorial [role="main"] h3 a:link:before,.sites-using-susy [role="main"] h3 a:visited:before,.demos_index [role="main"] h3 a:visited:before,.guides [role="main"] h3 a:visited:before,.tutorial [role="main"] h3 a:visited:before,.sites-using-susy [role="main"] h4 a:link:before,.demos_index [role="main"] h4 a:link:before,.guides [role="main"] h4 a:link:before,.tutorial [role="main"] h4 a:link:before,.sites-using-susy [role="main"] h4 a:visited:before,.demos_index [role="main"] h4 a:visited:before,.guides [role="main"] h4 a:visited:before,.tutorial [role="main"] h4 a:visited:before,.sites-using-susy [role="main"] h5 a:link:before,.demos_index [role="main"] h5 a:link:before,.guides [role="main"] h5 a:link:before,.tutorial [role="main"] h5 a:link:before,.sites-using-susy [role="main"] h5 a:visited:before,.demos_index [role="main"] h5 a:visited:before,.guides [role="main"] h5 a:visited:before,.tutorial [role="main"] h5 a:visited:before,.sites-using-susy [role="main"] h6 a:link:before,.demos_index [role="main"] h6 a:link:before,.guides [role="main"] h6 a:link:before,.tutorial [role="main"] h6 a:link:before,.sites-using-susy [role="main"] h6 a:visited:before,.demos_index [role="main"] h6 a:visited:before,.guides [role="main"] h6 a:visited:before,.tutorial [role="main"] h6 a:visited:before{content:"\e008"}.sites-using-susy [role="main"] a[href^="http"]:after,.demos_index [role="main"] a[href^="http"]:after,.guides [role="main"] a[href^="http"]:after,.tutorial [role="main"] a[href^="http"]:after{content:"\e009"}.on a:link:before,.on a:visited:before,.off a:link:before,.off a:visited:before{content:"\e00a"}[role="navigation"] a[href*='sites-using-susy']:link:before,[role="navigation"] a[href*='sites-using-susy']:visited:before{content:"\e00c"}[role="navigation"] a[href*='stackoverflow']:link:before,[role="navigation"] a[href*='stackoverflow']:visited:before{content:"\e003"}[role="navigation"] a[href*='github']:link:before,[role="navigation"] a[href*='github']:visited:before{content:"\e004"}html{font-size:100%;line-height:1.25em}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{text-shadow:rgba(255,255,255,0.5) 0 1px 0;color:#657b83;background:#fdf6e3;font-family:"CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}b,i{font-weight:400;font-style:normal}.amp{font-family:"BaskervilleAmp","CenturyOldStyleFS","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}.caps,.sites-using-susy [role="main"] h2,.demos_index [role="main"] h2,.guides [role="main"] h2,.tutorial [role="main"] h2,.sites-using-susy [role="main"] h4,.demos_index [role="main"] h4,.guides [role="main"] h4,.tutorial [role="main"] h4,.secondary h2{text-transform:uppercase}a:link,a:visited{color:#dc322f;text-decoration:none}a:hover,a:focus,a:active{color:#8d1a18}.highlight{margin-bottom:1.25em;background:transparent;border:0}code,pre{font-family:Consolas,Menlo,Monaco,"Lucida Console","Liberation Mono","DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",monospace,serif}code{font-size:.90625em;line-height:1.37931em}pre{font-size:.8125em;line-height:1.53846em;border-width:.07692em;border-style:solid;padding:.69231em;background-color:#fbeecb;border-color:#fae7b3;overflow:auto}@media (min-width:40em){.sites-using-susy [role="main"],.demos_index [role="main"]{padding-left:10.28037%;padding-right:10.28037%}}.sites-using-susy [role="main"],.demos_index [role="main"],.guides [role="main"],.tutorial [role="main"]{font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif}.sites-using-susy [role="main"] h2,.demos_index [role="main"] h2,.guides [role="main"] h2,.tutorial [role="main"] h2{font-size:1.9375em;line-height:1.29032em;border-bottom-width:.09677em;border-bottom-style:solid;padding-bottom:-0.01613em;margin-bottom:.56452em;border-color:#eee8d5;font-weight:700}.sites-using-susy [role="main"] h2 ~ h2,.demos_index [role="main"] h2 ~ h2,.guides [role="main"] h2 ~ h2,.tutorial [role="main"] h2 ~ h2{margin-top:1.29032em}@media (min-width:40em){.sites-using-susy [role="main"] h2,.demos_index [role="main"] h2,.guides [role="main"] h2,.tutorial [role="main"] h2{font-size:2.4375em;line-height:1.28205em;border-bottom-width:.07692em;border-bottom-style:solid;padding-bottom:-0.01282em;margin-bottom:.44872em}.sites-using-susy [role="main"] h2 ~ h2,.demos_index [role="main"] h2 ~ h2,.guides [role="main"] h2 ~ h2,.tutorial [role="main"] h2 ~ h2{margin-top:1.02564em}}.sites-using-susy [role="main"] h3,.demos_index [role="main"] h3,.guides [role="main"] h3,.tutorial [role="main"] h3{font-size:1.9375em;line-height:1.29032em;margin-top:.64516em;margin-bottom:.64516em;font-weight:700}.sites-using-susy [role="main"] h3 + h4,.demos_index [role="main"] h3 + h4,.guides [role="main"] h3 + h4,.tutorial [role="main"] h3 + h4{margin-top:0}@media (min-width:40em){.sites-using-susy [role="main"] h3,.demos_index [role="main"] h3,.guides [role="main"] h3,.tutorial [role="main"] h3{margin-top:1.29032em}}.sites-using-susy [role="main"] h4,.demos_index [role="main"] h4,.guides [role="main"] h4,.tutorial [role="main"] h4{margin-top:2.5em}.sites-using-susy [role="main"] h5,.demos_index [role="main"] h5,.guides [role="main"] h5,.tutorial [role="main"] h5{font-style:italic}.sites-using-susy [role="main"] h1 a:link,.demos_index [role="main"] h1 a:link,.guides [role="main"] h1 a:link,.tutorial [role="main"] h1 a:link,.sites-using-susy [role="main"] h1 a:visited,.demos_index [role="main"] h1 a:visited,.guides [role="main"] h1 a:visited,.tutorial [role="main"] h1 a:visited,.sites-using-susy [role="main"] h2 a:link,.demos_index [role="main"] h2 a:link,.guides [role="main"] h2 a:link,.tutorial [role="main"] h2 a:link,.sites-using-susy [role="main"] h2 a:visited,.demos_index [role="main"] h2 a:visited,.guides [role="main"] h2 a:visited,.tutorial [role="main"] h2 a:visited,.sites-using-susy [role="main"] h3 a:link,.demos_index [role="main"] h3 a:link,.guides [role="main"] h3 a:link,.tutorial [role="main"] h3 a:link,.sites-using-susy [role="main"] h3 a:visited,.demos_index [role="main"] h3 a:visited,.guides [role="main"] h3 a:visited,.tutorial [role="main"] h3 a:visited,.sites-using-susy [role="main"] h4 a:link,.demos_index [role="main"] h4 a:link,.guides [role="main"] h4 a:link,.tutorial [role="main"] h4 a:link,.sites-using-susy [role="main"] h4 a:visited,.demos_index [role="main"] h4 a:visited,.guides [role="main"] h4 a:visited,.tutorial [role="main"] h4 a:visited,.sites-using-susy [role="main"] h5 a:link,.demos_index [role="main"] h5 a:link,.guides [role="main"] h5 a:link,.tutorial [role="main"] h5 a:link,.sites-using-susy [role="main"] h5 a:visited,.demos_index [role="main"] h5 a:visited,.guides [role="main"] h5 a:visited,.tutorial [role="main"] h5 a:visited,.sites-using-susy [role="main"] h6 a:link,.demos_index [role="main"] h6 a:link,.guides [role="main"] h6 a:link,.tutorial [role="main"] h6 a:link,.sites-using-susy [role="main"] h6 a:visited,.demos_index [role="main"] h6 a:visited,.guides [role="main"] h6 a:visited,.tutorial [role="main"] h6 a:visited{position:relative;display:inline-block}.sites-using-susy [role="main"] h1 a:link::before,.demos_index [role="main"] h1 a:link::before,.guides [role="main"] h1 a:link::before,.tutorial [role="main"] h1 a:link::before,.sites-using-susy [role="main"] h1 a:visited::before,.demos_index [role="main"] h1 a:visited::before,.guides [role="main"] h1 a:visited::before,.tutorial [role="main"] h1 a:visited::before,.sites-using-susy [role="main"] h2 a:link::before,.demos_index [role="main"] h2 a:link::before,.guides [role="main"] h2 a:link::before,.tutorial [role="main"] h2 a:link::before,.sites-using-susy [role="main"] h2 a:visited::before,.demos_index [role="main"] h2 a:visited::before,.guides [role="main"] h2 a:visited::before,.tutorial [role="main"] h2 a:visited::before,.sites-using-susy [role="main"] h3 a:link::before,.demos_index [role="main"] h3 a:link::before,.guides [role="main"] h3 a:link::before,.tutorial [role="main"] h3 a:link::before,.sites-using-susy [role="main"] h3 a:visited::before,.demos_index [role="main"] h3 a:visited::before,.guides [role="main"] h3 a:visited::before,.tutorial [role="main"] h3 a:visited::before,.sites-using-susy [role="main"] h4 a:link::before,.demos_index [role="main"] h4 a:link::before,.guides [role="main"] h4 a:link::before,.tutorial [role="main"] h4 a:link::before,.sites-using-susy [role="main"] h4 a:visited::before,.demos_index [role="main"] h4 a:visited::before,.guides [role="main"] h4 a:visited::before,.tutorial [role="main"] h4 a:visited::before,.sites-using-susy [role="main"] h5 a:link::before,.demos_index [role="main"] h5 a:link::before,.guides [role="main"] h5 a:link::before,.tutorial [role="main"] h5 a:link::before,.sites-using-susy [role="main"] h5 a:visited::before,.demos_index [role="main"] h5 a:visited::before,.guides [role="main"] h5 a:visited::before,.tutorial [role="main"] h5 a:visited::before,.sites-using-susy [role="main"] h6 a:link::before,.demos_index [role="main"] h6 a:link::before,.guides [role="main"] h6 a:link::before,.tutorial [role="main"] h6 a:link::before,.sites-using-susy [role="main"] h6 a:visited::before,.demos_index [role="main"] h6 a:visited::before,.guides [role="main"] h6 a:visited::before,.tutorial [role="main"] h6 a:visited::before{-webkit-transition:all 300ms;-moz-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms;filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity:0;position:absolute;display:block;right:100%;top:0;margin-right:8px;line-height:inherit}.sites-using-susy [role="main"] h1 a:hover::before,.demos_index [role="main"] h1 a:hover::before,.guides [role="main"] h1 a:hover::before,.tutorial [role="main"] h1 a:hover::before,.sites-using-susy [role="main"] h1 a:focus::before,.demos_index [role="main"] h1 a:focus::before,.guides [role="main"] h1 a:focus::before,.tutorial [role="main"] h1 a:focus::before,.sites-using-susy [role="main"] h1 a:active::before,.demos_index [role="main"] h1 a:active::before,.guides [role="main"] h1 a:active::before,.tutorial [role="main"] h1 a:active::before,.sites-using-susy [role="main"] h2 a:hover::before,.demos_index [role="main"] h2 a:hover::before,.guides [role="main"] h2 a:hover::before,.tutorial [role="main"] h2 a:hover::before,.sites-using-susy [role="main"] h2 a:focus::before,.demos_index [role="main"] h2 a:focus::before,.guides [role="main"] h2 a:focus::before,.tutorial [role="main"] h2 a:focus::before,.sites-using-susy [role="main"] h2 a:active::before,.demos_index [role="main"] h2 a:active::before,.guides [role="main"] h2 a:active::before,.tutorial [role="main"] h2 a:active::before,.sites-using-susy [role="main"] h3 a:hover::before,.demos_index [role="main"] h3 a:hover::before,.guides [role="main"] h3 a:hover::before,.tutorial [role="main"] h3 a:hover::before,.sites-using-susy [role="main"] h3 a:focus::before,.demos_index [role="main"] h3 a:focus::before,.guides [role="main"] h3 a:focus::before,.tutorial [role="main"] h3 a:focus::before,.sites-using-susy [role="main"] h3 a:active::before,.demos_index [role="main"] h3 a:active::before,.guides [role="main"] h3 a:active::before,.tutorial [role="main"] h3 a:active::before,.sites-using-susy [role="main"] h4 a:hover::before,.demos_index [role="main"] h4 a:hover::before,.guides [role="main"] h4 a:hover::before,.tutorial [role="main"] h4 a:hover::before,.sites-using-susy [role="main"] h4 a:focus::before,.demos_index [role="main"] h4 a:focus::before,.guides [role="main"] h4 a:focus::before,.tutorial [role="main"] h4 a:focus::before,.sites-using-susy [role="main"] h4 a:active::before,.demos_index [role="main"] h4 a:active::before,.guides [role="main"] h4 a:active::before,.tutorial [role="main"] h4 a:active::before,.sites-using-susy [role="main"] h5 a:hover::before,.demos_index [role="main"] h5 a:hover::before,.guides [role="main"] h5 a:hover::before,.tutorial [role="main"] h5 a:hover::before,.sites-using-susy [role="main"] h5 a:focus::before,.demos_index [role="main"] h5 a:focus::before,.guides [role="main"] h5 a:focus::before,.tutorial [role="main"] h5 a:focus::before,.sites-using-susy [role="main"] h5 a:active::before,.demos_index [role="main"] h5 a:active::before,.guides [role="main"] h5 a:active::before,.tutorial [role="main"] h5 a:active::before,.sites-using-susy [role="main"] h6 a:hover::before,.demos_index [role="main"] h6 a:hover::before,.guides [role="main"] h6 a:hover::before,.tutorial [role="main"] h6 a:hover::before,.sites-using-susy [role="main"] h6 a:focus::before,.demos_index [role="main"] h6 a:focus::before,.guides [role="main"] h6 a:focus::before,.tutorial [role="main"] h6 a:focus::before,.sites-using-susy [role="main"] h6 a:active::before,.demos_index [role="main"] h6 a:active::before,.guides [role="main"] h6 a:active::before,.tutorial [role="main"] h6 a:active::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}.sites-using-susy [role="main"] h1 a:link,.demos_index [role="main"] h1 a:link,.guides [role="main"] h1 a:link,.tutorial [role="main"] h1 a:link,.sites-using-susy [role="main"] h1 a:visited,.demos_index [role="main"] h1 a:visited,.guides [role="main"] h1 a:visited,.tutorial [role="main"] h1 a:visited,.sites-using-susy [role="main"] h2 a:link,.demos_index [role="main"] h2 a:link,.guides [role="main"] h2 a:link,.tutorial [role="main"] h2 a:link,.sites-using-susy [role="main"] h2 a:visited,.demos_index [role="main"] h2 a:visited,.guides [role="main"] h2 a:visited,.tutorial [role="main"] h2 a:visited,.sites-using-susy [role="main"] h3 a:link,.demos_index [role="main"] h3 a:link,.guides [role="main"] h3 a:link,.tutorial [role="main"] h3 a:link,.sites-using-susy [role="main"] h3 a:visited,.demos_index [role="main"] h3 a:visited,.guides [role="main"] h3 a:visited,.tutorial [role="main"] h3 a:visited{color:#394549}.sites-using-susy [role="main"] h4 a:link,.demos_index [role="main"] h4 a:link,.guides [role="main"] h4 a:link,.tutorial [role="main"] h4 a:link,.sites-using-susy [role="main"] h4 a:visited,.demos_index [role="main"] h4 a:visited,.guides [role="main"] h4 a:visited,.tutorial [role="main"] h4 a:visited,.sites-using-susy [role="main"] h5 a:link,.demos_index [role="main"] h5 a:link,.guides [role="main"] h5 a:link,.tutorial [role="main"] h5 a:link,.sites-using-susy [role="main"] h5 a:visited,.demos_index [role="main"] h5 a:visited,.guides [role="main"] h5 a:visited,.tutorial [role="main"] h5 a:visited,.sites-using-susy [role="main"] h6 a:link,.demos_index [role="main"] h6 a:link,.guides [role="main"] h6 a:link,.tutorial [role="main"] h6 a:link,.sites-using-susy [role="main"] h6 a:visited,.demos_index [role="main"] h6 a:visited,.guides [role="main"] h6 a:visited,.tutorial [role="main"] h6 a:visited{color:#8d1a18}.sites-using-susy [role="main"] h4 a:link::before,.demos_index [role="main"] h4 a:link::before,.guides [role="main"] h4 a:link::before,.tutorial [role="main"] h4 a:link::before,.sites-using-susy [role="main"] h4 a:visited::before,.demos_index [role="main"] h4 a:visited::before,.guides [role="main"] h4 a:visited::before,.tutorial [role="main"] h4 a:visited::before,.sites-using-susy [role="main"] h5 a:link::before,.demos_index [role="main"] h5 a:link::before,.guides [role="main"] h5 a:link::before,.tutorial [role="main"] h5 a:link::before,.sites-using-susy [role="main"] h5 a:visited::before,.demos_index [role="main"] h5 a:visited::before,.guides [role="main"] h5 a:visited::before,.tutorial [role="main"] h5 a:visited::before,.sites-using-susy [role="main"] h6 a:link::before,.demos_index [role="main"] h6 a:link::before,.guides [role="main"] h6 a:link::before,.tutorial [role="main"] h6 a:link::before,.sites-using-susy [role="main"] h6 a:visited::before,.demos_index [role="main"] h6 a:visited::before,.guides [role="main"] h6 a:visited::before,.tutorial [role="main"] h6 a:visited::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=75);opacity:.75}.sites-using-susy [role="main"] h4 a:hover::before,.demos_index [role="main"] h4 a:hover::before,.guides [role="main"] h4 a:hover::before,.tutorial [role="main"] h4 a:hover::before,.sites-using-susy [role="main"] h4 a:focus::before,.demos_index [role="main"] h4 a:focus::before,.guides [role="main"] h4 a:focus::before,.tutorial [role="main"] h4 a:focus::before,.sites-using-susy [role="main"] h4 a:active::before,.demos_index [role="main"] h4 a:active::before,.guides [role="main"] h4 a:active::before,.tutorial [role="main"] h4 a:active::before,.sites-using-susy [role="main"] h5 a:hover::before,.demos_index [role="main"] h5 a:hover::before,.guides [role="main"] h5 a:hover::before,.tutorial [role="main"] h5 a:hover::before,.sites-using-susy [role="main"] h5 a:focus::before,.demos_index [role="main"] h5 a:focus::before,.guides [role="main"] h5 a:focus::before,.tutorial [role="main"] h5 a:focus::before,.sites-using-susy [role="main"] h5 a:active::before,.demos_index [role="main"] h5 a:active::before,.guides [role="main"] h5 a:active::before,.tutorial [role="main"] h5 a:active::before,.sites-using-susy [role="main"] h6 a:hover::before,.demos_index [role="main"] h6 a:hover::before,.guides [role="main"] h6 a:hover::before,.tutorial [role="main"] h6 a:hover::before,.sites-using-susy [role="main"] h6 a:focus::before,.demos_index [role="main"] h6 a:focus::before,.guides [role="main"] h6 a:focus::before,.tutorial [role="main"] h6 a:focus::before,.sites-using-susy [role="main"] h6 a:active::before,.demos_index [role="main"] h6 a:active::before,.guides [role="main"] h6 a:active::before,.tutorial [role="main"] h6 a:active::before{filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);opacity:1}.sites-using-susy [role="main"] ul,.demos_index [role="main"] ul,.guides [role="main"] ul,.tutorial [role="main"] ul,.sites-using-susy [role="main"] ol,.demos_index [role="main"] ol,.guides [role="main"] ol,.tutorial [role="main"] ol,.sites-using-susy [role="main"] p,.demos_index [role="main"] p,.guides [role="main"] p,.tutorial [role="main"] p{margin-bottom:1.25em}.sites-using-susy [role="main"] li,.demos_index [role="main"] li,.guides [role="main"] li,.tutorial [role="main"] li{margin-bottom:.625em}.sites-using-susy [role="main"] ul,.demos_index [role="main"] ul,.guides [role="main"] ul,.tutorial [role="main"] ul{list-style:circle}.sites-using-susy [role="main"] ol,.demos_index [role="main"] ol,.guides [role="main"] ol,.tutorial [role="main"] ol{list-style:decimal}.sites-using-susy [role="main"] strong,.demos_index [role="main"] strong,.guides [role="main"] strong,.tutorial [role="main"] strong,.sites-using-susy [role="main"] code,.demos_index [role="main"] code,.guides [role="main"] code,.tutorial [role="main"] code{font-weight:700;color:#5a6d75}.sites-using-susy [role="main"] em,.demos_index [role="main"] em,.guides [role="main"] em,.tutorial [role="main"] em{font-style:italic}.sites-using-susy [role="main"] a[href^="http"]::after,.demos_index [role="main"] a[href^="http"]::after,.guides [role="main"] a[href^="http"]::after,.tutorial [role="main"] a[href^="http"]::after{font-size:.75em}.page{*zoom:1;max-width:23.5em;_width:23.5em;padding-left:1.5em;padding-right:1.5em;margin-left:auto;margin-right:auto;position:relative}.page:after{content:"";display:table;clear:both}:target .page{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(19.5122%,rgba(255,254,251,0.5)),color-stop(19.5122%,rgba(0,0,0,0)),color-stop(26.82927%,rgba(0,0,0,0)),color-stop(26.82927%,rgba(255,254,251,0.5)),color-stop(46.34146%,rgba(255,254,251,0.5)),color-stop(46.34146%,rgba(0,0,0,0)),color-stop(53.65854%,rgba(0,0,0,0)),color-stop(53.65854%,rgba(255,254,251,0.5)),color-stop(73.17073%,rgba(255,254,251,0.5)),color-stop(73.17073%,rgba(0,0,0,0)),color-stop(80.4878%,rgba(0,0,0,0)),color-stop(80.4878%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 19.5122%,rgba(0,0,0,0) 19.5122%,rgba(0,0,0,0) 26.82927%,rgba(255,254,251,0.5) 26.82927%,rgba(255,254,251,0.5) 46.34146%,rgba(0,0,0,0) 46.34146%,rgba(0,0,0,0) 53.65854%,rgba(255,254,251,0.5) 53.65854%,rgba(255,254,251,0.5) 73.17073%,rgba(0,0,0,0) 73.17073%,rgba(0,0,0,0) 80.4878%,rgba(255,254,251,0.5) 80.4878%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 19.5122%,rgba(0,0,0,0) 19.5122%,rgba(0,0,0,0) 26.82927%,rgba(255,254,251,0.5) 26.82927%,rgba(255,254,251,0.5) 46.34146%,rgba(0,0,0,0) 46.34146%,rgba(0,0,0,0) 53.65854%,rgba(255,254,251,0.5) 53.65854%,rgba(255,254,251,0.5) 73.17073%,rgba(0,0,0,0) 73.17073%,rgba(0,0,0,0) 80.4878%,rgba(255,254,251,0.5) 80.4878%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 19.5122%,rgba(0,0,0,0) 19.5122%,rgba(0,0,0,0) 26.82927%,rgba(255,254,251,0.5) 26.82927%,rgba(255,254,251,0.5) 46.34146%,rgba(0,0,0,0) 46.34146%,rgba(0,0,0,0) 53.65854%,rgba(255,254,251,0.5) 53.65854%,rgba(255,254,251,0.5) 73.17073%,rgba(0,0,0,0) 73.17073%,rgba(0,0,0,0) 80.4878%,rgba(255,254,251,0.5) 80.4878%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 19.5122%,rgba(0,0,0,0) 19.5122%,rgba(0,0,0,0) 26.82927%,rgba(255,254,251,0.5) 26.82927%,rgba(255,254,251,0.5) 46.34146%,rgba(0,0,0,0) 46.34146%,rgba(0,0,0,0) 53.65854%,rgba(255,254,251,0.5) 53.65854%,rgba(255,254,251,0.5) 73.17073%,rgba(0,0,0,0) 73.17073%,rgba(0,0,0,0) 80.4878%,rgba(255,254,251,0.5) 80.4878%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box}:target .page .off a{display:block}:target .page .on a{display:none}@media (min-width:40em){.page{max-width:56.5em;padding-left:1.5em;padding-right:1.5em;margin-left:auto;margin-right:auto}.page:after{content:"";display:table;clear:both}:target .page{background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,rgba(0,0,0,0)),color-stop(0%,rgba(255,254,251,0.5)),color-stop(7.47664%,rgba(255,254,251,0.5)),color-stop(7.47664%,rgba(0,0,0,0)),color-stop(10.28037%,rgba(0,0,0,0)),color-stop(10.28037%,rgba(255,254,251,0.5)),color-stop(17.75701%,rgba(255,254,251,0.5)),color-stop(17.75701%,rgba(0,0,0,0)),color-stop(20.56075%,rgba(0,0,0,0)),color-stop(20.56075%,rgba(255,254,251,0.5)),color-stop(28.03738%,rgba(255,254,251,0.5)),color-stop(28.03738%,rgba(0,0,0,0)),color-stop(30.84112%,rgba(0,0,0,0)),color-stop(30.84112%,rgba(255,254,251,0.5)),color-stop(38.31776%,rgba(255,254,251,0.5)),color-stop(38.31776%,rgba(0,0,0,0)),color-stop(41.1215%,rgba(0,0,0,0)),color-stop(41.1215%,rgba(255,254,251,0.5)),color-stop(48.59813%,rgba(255,254,251,0.5)),color-stop(48.59813%,rgba(0,0,0,0)),color-stop(51.40187%,rgba(0,0,0,0)),color-stop(51.40187%,rgba(255,254,251,0.5)),color-stop(58.8785%,rgba(255,254,251,0.5)),color-stop(58.8785%,rgba(0,0,0,0)),color-stop(61.68224%,rgba(0,0,0,0)),color-stop(61.68224%,rgba(255,254,251,0.5)),color-stop(69.15888%,rgba(255,254,251,0.5)),color-stop(69.15888%,rgba(0,0,0,0)),color-stop(71.96262%,rgba(0,0,0,0)),color-stop(71.96262%,rgba(255,254,251,0.5)),color-stop(79.43925%,rgba(255,254,251,0.5)),color-stop(79.43925%,rgba(0,0,0,0)),color-stop(82.24299%,rgba(0,0,0,0)),color-stop(82.24299%,rgba(255,254,251,0.5)),color-stop(89.71963%,rgba(255,254,251,0.5)),color-stop(89.71963%,rgba(0,0,0,0)),color-stop(92.52336%,rgba(0,0,0,0)),color-stop(92.52336%,rgba(255,254,251,0.5)),color-stop(100%,rgba(255,254,251,0.5)),color-stop(100%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 7.47664%,rgba(0,0,0,0) 7.47664%,rgba(0,0,0,0) 10.28037%,rgba(255,254,251,0.5) 10.28037%,rgba(255,254,251,0.5) 17.75701%,rgba(0,0,0,0) 17.75701%,rgba(0,0,0,0) 20.56075%,rgba(255,254,251,0.5) 20.56075%,rgba(255,254,251,0.5) 28.03738%,rgba(0,0,0,0) 28.03738%,rgba(0,0,0,0) 30.84112%,rgba(255,254,251,0.5) 30.84112%,rgba(255,254,251,0.5) 38.31776%,rgba(0,0,0,0) 38.31776%,rgba(0,0,0,0) 41.1215%,rgba(255,254,251,0.5) 41.1215%,rgba(255,254,251,0.5) 48.59813%,rgba(0,0,0,0) 48.59813%,rgba(0,0,0,0) 51.40187%,rgba(255,254,251,0.5) 51.40187%,rgba(255,254,251,0.5) 58.8785%,rgba(0,0,0,0) 58.8785%,rgba(0,0,0,0) 61.68224%,rgba(255,254,251,0.5) 61.68224%,rgba(255,254,251,0.5) 69.15888%,rgba(0,0,0,0) 69.15888%,rgba(0,0,0,0) 71.96262%,rgba(255,254,251,0.5) 71.96262%,rgba(255,254,251,0.5) 79.43925%,rgba(0,0,0,0) 79.43925%,rgba(0,0,0,0) 82.24299%,rgba(255,254,251,0.5) 82.24299%,rgba(255,254,251,0.5) 89.71963%,rgba(0,0,0,0) 89.71963%,rgba(0,0,0,0) 92.52336%,rgba(255,254,251,0.5) 92.52336%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 7.47664%,rgba(0,0,0,0) 7.47664%,rgba(0,0,0,0) 10.28037%,rgba(255,254,251,0.5) 10.28037%,rgba(255,254,251,0.5) 17.75701%,rgba(0,0,0,0) 17.75701%,rgba(0,0,0,0) 20.56075%,rgba(255,254,251,0.5) 20.56075%,rgba(255,254,251,0.5) 28.03738%,rgba(0,0,0,0) 28.03738%,rgba(0,0,0,0) 30.84112%,rgba(255,254,251,0.5) 30.84112%,rgba(255,254,251,0.5) 38.31776%,rgba(0,0,0,0) 38.31776%,rgba(0,0,0,0) 41.1215%,rgba(255,254,251,0.5) 41.1215%,rgba(255,254,251,0.5) 48.59813%,rgba(0,0,0,0) 48.59813%,rgba(0,0,0,0) 51.40187%,rgba(255,254,251,0.5) 51.40187%,rgba(255,254,251,0.5) 58.8785%,rgba(0,0,0,0) 58.8785%,rgba(0,0,0,0) 61.68224%,rgba(255,254,251,0.5) 61.68224%,rgba(255,254,251,0.5) 69.15888%,rgba(0,0,0,0) 69.15888%,rgba(0,0,0,0) 71.96262%,rgba(255,254,251,0.5) 71.96262%,rgba(255,254,251,0.5) 79.43925%,rgba(0,0,0,0) 79.43925%,rgba(0,0,0,0) 82.24299%,rgba(255,254,251,0.5) 82.24299%,rgba(255,254,251,0.5) 89.71963%,rgba(0,0,0,0) 89.71963%,rgba(0,0,0,0) 92.52336%,rgba(255,254,251,0.5) 92.52336%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 7.47664%,rgba(0,0,0,0) 7.47664%,rgba(0,0,0,0) 10.28037%,rgba(255,254,251,0.5) 10.28037%,rgba(255,254,251,0.5) 17.75701%,rgba(0,0,0,0) 17.75701%,rgba(0,0,0,0) 20.56075%,rgba(255,254,251,0.5) 20.56075%,rgba(255,254,251,0.5) 28.03738%,rgba(0,0,0,0) 28.03738%,rgba(0,0,0,0) 30.84112%,rgba(255,254,251,0.5) 30.84112%,rgba(255,254,251,0.5) 38.31776%,rgba(0,0,0,0) 38.31776%,rgba(0,0,0,0) 41.1215%,rgba(255,254,251,0.5) 41.1215%,rgba(255,254,251,0.5) 48.59813%,rgba(0,0,0,0) 48.59813%,rgba(0,0,0,0) 51.40187%,rgba(255,254,251,0.5) 51.40187%,rgba(255,254,251,0.5) 58.8785%,rgba(0,0,0,0) 58.8785%,rgba(0,0,0,0) 61.68224%,rgba(255,254,251,0.5) 61.68224%,rgba(255,254,251,0.5) 69.15888%,rgba(0,0,0,0) 69.15888%,rgba(0,0,0,0) 71.96262%,rgba(255,254,251,0.5) 71.96262%,rgba(255,254,251,0.5) 79.43925%,rgba(0,0,0,0) 79.43925%,rgba(0,0,0,0) 82.24299%,rgba(255,254,251,0.5) 82.24299%,rgba(255,254,251,0.5) 89.71963%,rgba(0,0,0,0) 89.71963%,rgba(0,0,0,0) 92.52336%,rgba(255,254,251,0.5) 92.52336%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-image:linear-gradient(left,rgba(0,0,0,0) 0,rgba(255,254,251,0.5) 0,rgba(255,254,251,0.5) 7.47664%,rgba(0,0,0,0) 7.47664%,rgba(0,0,0,0) 10.28037%,rgba(255,254,251,0.5) 10.28037%,rgba(255,254,251,0.5) 17.75701%,rgba(0,0,0,0) 17.75701%,rgba(0,0,0,0) 20.56075%,rgba(255,254,251,0.5) 20.56075%,rgba(255,254,251,0.5) 28.03738%,rgba(0,0,0,0) 28.03738%,rgba(0,0,0,0) 30.84112%,rgba(255,254,251,0.5) 30.84112%,rgba(255,254,251,0.5) 38.31776%,rgba(0,0,0,0) 38.31776%,rgba(0,0,0,0) 41.1215%,rgba(255,254,251,0.5) 41.1215%,rgba(255,254,251,0.5) 48.59813%,rgba(0,0,0,0) 48.59813%,rgba(0,0,0,0) 51.40187%,rgba(255,254,251,0.5) 51.40187%,rgba(255,254,251,0.5) 58.8785%,rgba(0,0,0,0) 58.8785%,rgba(0,0,0,0) 61.68224%,rgba(255,254,251,0.5) 61.68224%,rgba(255,254,251,0.5) 69.15888%,rgba(0,0,0,0) 69.15888%,rgba(0,0,0,0) 71.96262%,rgba(255,254,251,0.5) 71.96262%,rgba(255,254,251,0.5) 79.43925%,rgba(0,0,0,0) 79.43925%,rgba(0,0,0,0) 82.24299%,rgba(255,254,251,0.5) 82.24299%,rgba(255,254,251,0.5) 89.71963%,rgba(0,0,0,0) 89.71963%,rgba(0,0,0,0) 92.52336%,rgba(255,254,251,0.5) 92.52336%,rgba(255,254,251,0.5) 100%,rgba(0,0,0,0) 100%,rgba(0,0,0,0) 100%);background-position:left top;-webkit-background-origin:content;-moz-background-origin:content;background-origin:content-box;-webkit-background-clip:content;-moz-background-clip:content;background-clip:content-box}}[role="main"]{margin-bottom:1.25em}@media (min-width:40em){[role="main"]{margin-bottom:2.5em}}[role="contentinfo"]{clear:both}.guides .secondary,.tutorial .secondary{display:none}@media (min-width:40em){.guides .secondary,.tutorial .secondary{width:28.03738%;float:left;margin-right:2.80374%;display:block}.guides [role="main"],.tutorial [role="main"]{width:69.15888%;float:right;margin-right:0}}[role="banner"]{border-top-width:.1875em;border-top-style:solid;padding-top:.4375em;border-color:#dc322f;text-align:center}[role="banner"] h1{font-size:5.9375em;line-height:1.05263em}@media (min-width:40em){[role="banner"] h1{font-size:11.375em;line-height:1.04396em}}[role="banner"] h1 span{display:none}[role="banner"] h1 a:before{content:"\2039"}[role="banner"] h1 a:after{content:"\203A"}[role="banner"] h1 a:before,[role="banner"] h1 a:after{font-size:.875em;position:relative;top:-.16em;letter-spacing:-.025em}[role="banner"] h1 a:hover,[role="banner"] h1 a:focus,[role="banner"] h1 a:active{color:#dc322f}[role="banner"] h1 a:hover b,[role="banner"] h1 a:hover span,[role="banner"] h1 a:focus b,[role="banner"] h1 a:focus span,[role="banner"] h1 a:active b,[role="banner"] h1 a:active span{letter-spacing:0}[role="banner"] h1 a:hover span,[role="banner"] h1 a:focus span,[role="banner"] h1 a:active span{opacity:1}@media (min-width:40em){.fontface [role="banner"] h1 b,.fontface [role="banner"] h1 span{-webkit-transition:all 300ms;-moz-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms;display:inline-block;text-transform:uppercase;letter-spacing:-.44em}.fontface [role="banner"] h1 span{opacity:0}}[role="banner"] h2{font-size:1.25em;line-height:1.5em;margin-top:-1em;margin-bottom:.5em;display:block;position:relative;z-index:2}@media (min-width:40em){[role="banner"] h2{font-size:1.9375em;line-height:1.29032em;margin-top:-0.64516em;margin-bottom:.64516em}}[role="navigation"]{margin-bottom:1.25em;background:#eee8d5;background:rgba(238,232,213,0.5);font-style:italic}[role="navigation"] ul{margin:0;padding:0;border:0;overflow:hidden;*zoom:1}[role="navigation"] ul li{list-style-image:none;list-style-type:none;margin-left:0;display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;white-space:nowrap}[role="navigation"] a:link,[role="navigation"] a:visited{display:block;padding:.3125em .625em;color:#657b83}.guides_getting-started [role="navigation"] a:link[href*='getting-started'],.tutorial [role="navigation"] a:link[href*='getting-started'],.guides_getting-started [role="navigation"] a:visited[href*='getting-started'],.tutorial [role="navigation"] a:visited[href*='getting-started']{color:#4f6066}.guides_reference [role="navigation"] a:link[href*='reference'],.guides_reference [role="navigation"] a:visited[href*='reference']{color:#4f6066}.sites-using-susy [role="navigation"] a:link[href*='sites-using-susy'],.sites-using-susy [role="navigation"] a:visited[href*='sites-using-susy']{color:#4f6066}.demos [role="navigation"] a:link[href*='demos'],.demos [role="navigation"] a:visited[href*='demos']{color:#4f6066}[role="navigation"] a:hover,[role="navigation"] a:focus,[role="navigation"] a:active{color:#8d1a18}@media (min-width:40em){[role="navigation"]{margin-bottom:2.5em}}.grid-toggle{display:none;position:absolute;top:.5em;right:1.5em}.target .grid-toggle{display:block}.on a:link,.on a:visited,.off a:link,.off a:visited{-webkit-transition:all 300ms;-moz-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms;font-size:1.25em;line-height:1.5em;position:relative;width:1.5em;color:#f6d784}.on a:hover,.on a:focus,.on a:active,.off a:hover,.off a:focus,.off a:active{color:#657b83}.on a::before,.off a::before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);position:absolute;top:0;bottom:0;left:0;right:0;text-indent:0}.off a:link,.off a:visited{display:none;color:#dc322f}.on a{display:block}.ag-test{font-family:"FranklinGothicFSCd","Helvetica Neue",Arial,Helvetica,sans-serif;overflow:hidden;*zoom:1;margin-bottom:1.25em;clear:both;background:#fbeecb}.ag-test div{-webkit-border-radius:.25em;-moz-border-radius:.25em;border-radius:.25em;min-height:5em}.ag-test h2{padding:.625em .3125em;font-size:1em;font-weight:700;color:#394549;text-align:center}.ag-test p{font-size:.8125em;line-height:1.53846em;display:block;padding:.76923em .38462em;color:#394549;text-align:center}.ag-test strong{display:block;text-transform:uppercase;font-weight:700}.ag-test .ag1,.ag-test .ag3{background:#71dad2}.ag-test .ag2{background:#fae7b3}.ag-test .ag7{background:#f6d784}.ag-test .ag4,.ag-test .ag5,.ag-test .ag8,.ag-test .ag9{background:#ee9e9c}.ag-test .ag6{background:#f09671}.ag-test .ag10{background:#ea9fc3}.ag-test .ag1,.ag-test .ag3{min-height:22.5em}.ag-test .ag6{min-height:13.75em}.ag-test .ag1{width:17.75701%;float:left;margin-right:2.80374%;display:inline}.ag-test .ag2{width:58.8785%;float:left;margin-right:2.80374%;display:inline}.ag-test .ag3{width:17.75701%;float:right;margin-right:0;*margin-left:-1.5em;display:inline}.ag-test .ag4{width:47.61905%;float:left;margin-right:4.7619%;display:inline}.ag-test .ag5{width:47.61905%;float:right;margin-right:0;*margin-left:-1.5em;display:inline}.ag-test .ag6{width:30.15873%;float:left;margin-right:4.7619%;display:inline}.ag-test .ag7{width:65.07937%;float:right;margin-right:0;*margin-left:-1.5em;display:inline}.ag-test .ag8{width:46.34146%;float:left;margin-right:7.31707%;display:inline}.ag-test .ag9{width:46.34146%;float:right;margin-right:0;*margin-left:-1.5em;display:inline}.ag-test .ag10{clear:both}@media (min-width:50em){.ag-test + .highlight{width:48.59813%;float:left;margin-right:2.80374%}}.secondary{font-family:"FranklinGothicFSBook","Helvetica Neue",Arial,Helvetica,sans-serif}.secondary h2 a{color:#5a6d75}.secondary h2 ~ h2,.secondary h2 ~ h3{margin-top:1.25em}.secondary h2,.secondary h3{font-weight:700}.version{margin-top:1.5625em;margin-bottom:1.5625em;font-family:"CenturyOldStyleFSCaps","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif;color:#4f6066;text-transform:lowercase}.version span{color:#657b83}[role="contentinfo"]{overflow:hidden;*zoom:1;text-shadow:#b9221f 0 1px 0;background:#dc322f;color:#fbeecb;margin:0 -1.5em;padding:1.25em 1.5em}[role="contentinfo"] a:link,[role="contentinfo"] a:visited{font-family:"CenturyOldStyleFSCaps","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif;color:#f6d784}[role="contentinfo"] a:hover,[role="contentinfo"] a:focus,[role="contentinfo"] a:active{color:#fdf6e3}@media (min-width:40em){[role="contentinfo"] .colophon{width:69.15888%;float:right;margin-right:0}[role="contentinfo"] .license{width:28.03738%;float:left;margin-right:2.80374%}}[role="contentinfo"] .caps,[role="contentinfo"] .sites-using-susy [role="main"] h2,.sites-using-susy [role="main"] [role="contentinfo"] h2,[role="contentinfo"] .demos_index [role="main"] h2,.demos_index [role="main"] [role="contentinfo"] h2,[role="contentinfo"] .guides [role="main"] h2,.guides [role="main"] [role="contentinfo"] h2,[role="contentinfo"] .tutorial [role="main"] h2,.tutorial [role="main"] [role="contentinfo"] h2,[role="contentinfo"] .sites-using-susy [role="main"] h4,.sites-using-susy [role="main"] [role="contentinfo"] h4,[role="contentinfo"] .demos_index [role="main"] h4,.demos_index [role="main"] [role="contentinfo"] h4,[role="contentinfo"] .guides [role="main"] h4,.guides [role="main"] [role="contentinfo"] h4,[role="contentinfo"] .tutorial [role="main"] h4,.tutorial [role="main"] [role="contentinfo"] h4,[role="contentinfo"] .secondary h2,.secondary [role="contentinfo"] h2{font-family:"CenturyOldStyleFSCaps","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif}.colophon p{margin-bottom:1.25em}.license{font-family:"CenturyOldStyleFSCaps","Adobe Caslon Pro",Caslon,Baskerville,Palatino,"Palatino Linotype","Hoefler Text",Garamond,"URW Palladio L","Book Antiqua",Georgia,serif;text-transform:lowercase}.license a:link,.license a:visited{white-space:nowrap}.intro,.andmore{font-size:1.25em;line-height:1.5em}.intro h2,.andmore h2{font-size:1.55em;line-height:.96774em}.intro p,.andmore p{margin-bottom:1em}.intro strong,.andmore strong{font-weight:700}.intro em,.andmore em{font-style:italic}.download{font-size:1.25em;line-height:1.5em;border-width:.05em;border-style:solid;padding:.45em;margin-top:-0.5em;margin-bottom:1em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-color:#f6d784;background:#fae7b3;font-weight:700;text-align:center;text-transform:uppercase;letter-spacing:.1em}@media (min-width:40em){.download{width:48.59813%;float:right;margin-right:0}}.highlight{color:#394549;font-weight:700}.intro{margin-bottom:1em}.intro p:last-child{font-style:italic}@media (min-width:40em){.intro{width:48.59813%;float:left;margin-right:2.80374%}}.info p{margin:0}.info strong{color:#4f6066}@media (min-width:40em){.info{width:48.59813%;float:right;margin-right:0}}.andmore p:last-child{font-style:italic}@media (min-width:50em){.andmore{width:48.59813%;float:right;margin-right:0}} \ No newline at end of file diff --git a/tutorial/index.html b/tutorial/index.html index 34aa1f35..5dab44c1 100644 --- a/tutorial/index.html +++ b/tutorial/index.html @@ -12,7 +12,7 @@ - + @@ -44,51 +44,51 @@

    Responsive grids for Compass.Twitter

    Installation

    - -

    Compass

    - -

    Install from the command line:

    - -
    # command line
    +        
    +        

    Compass

    + +

    Install from the command line:

    + +
    # command line
     gem install susy
     
    - -

    Create a new Compass project:

    - -
    # command line
    +        
    +        

    Create a new Compass project:

    + +
    # command line
     compass create <project name> -r susy -u susy
     
    - -

    Or update an existing Compass project:

    - -
    # config.rb
    +        
    +        

    Or update an existing Compass project:

    + +
    # config.rb
     require "susy"
     
    - -

    Rails 3.x

    - -
    # Gemfile
    +        
    +        

    Rails 3.x

    + +
    # Gemfile
     gem "susy"
     
    - -

    You may also need:

    - -
    # Gemfile
    +        
    +        

    You may also need:

    + +
    # Gemfile
     gem 'compass', '>= 0.12.2'
     gem 'compass-rails', '>= 1.0.3'
     
    - -

    And run:

    - -
    # command line
    +        
    +        

    And run:

    + +
    # command line
     bundle install
     
    - -

    Yeoman

    - -

    Edit your Gruntfile.js at the root level of your project and look for the Compass related rules, add the following inside the options object:

    - -
    // Gruntfile.js
    +        
    +        

    Yeoman

    + +

    Edit your Gruntfile.js at the root level of your project and look for the Compass related rules, add the following inside the options object:

    + +
    // Gruntfile.js
     compass: {
       dist: {
         options: {
    @@ -97,53 +97,53 @@ 

    Yeoman

    } }
    - -

    Now create a .config.rb file at the same level as your Gruntfile with this:

    - -
    # .config.rb
    +        
    +        

    Now create a .config.rb file at the same level as your Gruntfile with this:

    + +
    # .config.rb
     require "susy"
     
    - -

    And you are good to go!

    - -

    Manual Start

    - -

    You can use this method if you're not using Compass from Terminal and/or Rails. This is going to work with CodeKit.

    - -
      + +

      And you are good to go!

      + +

      Manual Start

      + +

      You can use this method if you're not using Compass from Terminal and/or Rails. This is going to work with CodeKit.

      + +
      • Simply download the zip file from GitHub
      • -
      • Copy the contents of the "sass" folder *feel free to remove everything else
      • -
      • Paste the files in your projects "sass" folder (or whatever you call it)
      • -
      • And import Susy! ( See Usage ) -And you're good to go!
      • -
      +
    • Copy the contents of the "sass" folder *feel free to remove everything else
    • +
    • Paste the files in your projects "sass" folder (or whatever you call it)
    • +
    • And import Susy! ( See Usage ) + And you're good to go!
    • +

    Usage

    - -
    @import "susy";
    +        
    +        
    @import "susy";
     
    - -

    Settings

    - -

    Set up your default grid values: total columns, column width, and gutter width.

    - -
    $total-columns  : 12;             // a 12-column grid
    -$column-width   : 4em;            // each column is 4em wide
    -$gutter-width   : 1em;            // 1em gutters between columns
    -$grid-padding   : $gutter-width;  // grid-padding equal to gutters
    +        
    +        

    Settings

    + +

    Set up your default grid values: total columns, column width, and gutter width.

    + +
    $total-columns  : 12;             // a 12-column grid
    +$column-width   : 4em;            // each column is 4em wide
    +$gutter-width   : 1em;            // 1em gutters between columns
    +$grid-padding   : $gutter-width;  // grid-padding equal to gutters
     
    - -

    Basic Grids

    - -

    The basic Susy grid is composed using two simple mixins:

    - -
      + +

      Basic Grids

      + +

      The basic Susy grid is composed using two simple mixins:

      + +
      • Use the container() mixin to create your initial grid context.
      • -
      • Use the span-columns() mixin to declare -the width of an element on the grid.
      • -
      +
    • Use the span-columns() mixin to declare + the width of an element on the grid.
    • +

    Here's a simple page layout:

    - -
    .page {
    +        
    +        
    .page {
       // page acts as a container for our grid.
       @include container;
     
    @@ -165,20 +165,20 @@ 

    Basic Grids

    } }
    - -

    Responsive Grids

    - -

    Responsive Susy grids allow you to change the number of columns in a layout -at different window sizes, using @media-queries with min and max widths. -This requires one more mixin:

    - -
      + +

      Responsive Grids

      + +

      Responsive Susy grids allow you to change the number of columns in a layout + at different window sizes, using @media-queries with min and max widths. + This requires one more mixin:

      + +
      • Use at-breakpoint() to set different layouts -at min- and max-width breakpoints.
      • -
      + at min- and max-width breakpoints. +

    Here's a mobile-first example:

    - -
    $total-columns: 4;
    +        
    +        
    $total-columns: 4;
     
     .page {
       // Establish our default 4-column grid container.
    @@ -192,124 +192,124 @@ 

    Responsive Grids

    } }
    - -

    Advanced

    - -

    Susy is built to handle your unique markup, and any number of edge cases. -It includes the standard push() and pull() mixins, -along with other useful functions and shortcuts, -support for various grid styles, -and even bi-directional grids for multi-lingual sites. -Check the reference documentation for details.

    - -

    Troubleshooting

    - -

    Version Management

    - -

    When you are working with bundled gems and dependencies -across a number of different projects, -managing gem versions can become an issue.

    - -

    If you are working in a Ruby environment, -we recommend using RVM. -See our Rails troubleshooting -below for some basic instructions, or -dig into RVM's installation instructions.

    - -

    In a Python environment, -we recommend virtualenv -in conjunction with these -"postactivate" and "predeactivate" scripts -to add support for Ruby gems.

    - -

    Once you have that in place, -Bundler -can be used in either environment -to manage the actual installation -and updating of the gems.

    - -

    Compass Install

    - -

    The old gem and the new gem have different names, -but are required simply as susy. -That can cause a conflict if both gems are present.

    - -

    If you have installed Susy in the past, -make sure you've uninstalled older versions:

    - -
    # command line
    +        
    +        

    Advanced

    + +

    Susy is built to handle your unique markup, and any number of edge cases. + It includes the standard push() and pull() mixins, + along with other useful functions and shortcuts, + support for various grid styles, + and even bi-directional grids for multi-lingual sites. + Check the reference documentation for details.

    + +

    Troubleshooting

    + +

    Version Management

    + +

    When you are working with bundled gems and dependencies + across a number of different projects, + managing gem versions can become an issue.

    + +

    If you are working in a Ruby environment, + we recommend using RVM. + See our Rails troubleshooting + below for some basic instructions, or + dig into RVM's installation instructions.

    + +

    In a Python environment, + we recommend virtualenv + in conjunction with these + "postactivate" and "predeactivate" scripts + to add support for Ruby gems.

    + +

    Once you have that in place, + Bundler + can be used in either environment + to manage the actual installation + and updating of the gems.

    + +

    Compass Install

    + +

    The old gem and the new gem have different names, + but are required simply as susy. + That can cause a conflict if both gems are present.

    + +

    If you have installed Susy in the past, + make sure you've uninstalled older versions:

    + +
    # command line
     gem uninstall compass-susy-plugin
     # "compass-susy-plugin" was the gem name for 0.9.x and lower
     # Susy 1.0 switches to "susy" as the gem name
     
    - -

    And then install 1.0:

    - -
    # command line
    +        
    +        

    And then install 1.0:

    + +
    # command line
     gem install susy
     
    - -

    Then use Compass as normal.

    - -

    Rails 3.x Install

    - -

    We recommend you use RVM -for using Susy with Rails projects. -It has become the standard gem management system for Rails, -it's very easy to install and use, -and it helps create and manage Gemsets -among different developers working on different branches.

    - -

    Here are some RVM best practices:

    - -

    If you have installed Susy in the past, -make sure you've uninstalled older versions. -See Compass Install above.

    - -

    Install RVM -(These are basics, -if you do not have Ruby and Rails already installed in your environment, -we recommend you use RVM's installation instructions):

    - -
    # command line
    +        
    +        

    Then use Compass as normal.

    + +

    Rails 3.x Install

    + +

    We recommend you use RVM + for using Susy with Rails projects. + It has become the standard gem management system for Rails, + it's very easy to install and use, + and it helps create and manage Gemsets + among different developers working on different branches.

    + +

    Here are some RVM best practices:

    + +

    If you have installed Susy in the past, + make sure you've uninstalled older versions. + See Compass Install above.

    + +

    Install RVM + (These are basics, + if you do not have Ruby and Rails already installed in your environment, + we recommend you use RVM's installation instructions):

    + +
    # command line
     # from your system's root:
     curl -L get.rvm.io | bash -s stable
     
    - -

    Create a gemset for your site:

    - -
    # command line
    +        
    +        

    Create a gemset for your site:

    + +
    # command line
     rvm gemset create fooBar
     
    - -

    Create an .rvmrc file at your site's root:

    - -
    # .rvmrc
    +        
    +        

    Create an .rvmrc file at your site's root:

    + +
    # .rvmrc
     rvm use 1.9.3@fooBar
     # Use whatever Ruby version number your app uses
     
    - -

    Now whenever you cd into your site's root, -RVM will pick up and use that Gemset.

    - -

    cd to your site and install Bundler:

    - -
    # command line
    +        
    +        

    Now whenever you cd into your site's root, + RVM will pick up and use that Gemset.

    + +

    cd to your site and install Bundler:

    + +
    # command line
     gem install bundler
     
    - -

    Add Susy to your Gemfile -(more info on Gemfiles):

    - -
    gem "susy", "~> 1.0.7"
    +        
    +        

    Add Susy to your Gemfile + (more info on Gemfiles):

    + +
    gem "susy", "~> 1.0.8"
     
    - -

    And finally run your bundle:

    - -
    # command line
    +        
    +        

    And finally run your bundle:

    + +
    # command line
     bundle
     
    -

    + +

    + + Copyright © 2012 + + Eric A. Meyer
    + An OddBird project. +

    -