/**
 * master.css (using css tpl + includes)
 **/

/*
aside-color = #f3fad0
aside-width = 280px
bgcolor = #fefced
bodycolor = #fefced
bodyWidth = 960px
main-width = 620px
selection = #ff5e99
*/
/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */
/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


/*ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }*/

/* Remove margins for navigation lists */
/*nav ul, nav li { margin: 0; }*/

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #ff5e99; color:#fff; text-shadow: none; }
::selection { background: #ff5e99; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #ff5e99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }
/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:14px/21px sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }


/* Personnal stuff here */
@font-face {
	font-family: 'FertigoProRegular';
	src: url('/assets/fonts/fertigo_pro-webfont.eot');
	src: local('â˜º'), url('/assets/fonts/fertigo_pro-webfont.woff') format('woff'), url('/assets/fonts/fertigo_pro-webfont.ttf') format('truetype'), url('/assets/fonts/fertigo_pro-webfont.svg#webfontsqpr6a1x') format('svg');
	font-weight: normal;
	font-style: normal;
}

#main { line-height: 1.5em }
    #main h1,#main h2,#main h3,#main h4,#main h5,#main h6 { color: #898d3a }
    #main h1:first-letter,#main h2:first-letter,#main h3:first-letter,
    #main h4:first-letter,#main h5:first-letter,#main h6:first-letter { text-transform: uppercase }
    #main h1 { margin-bottom: 42px; }
    #main h1, #main h2 { font: 30px/42px FertigoProRegular; }
    #main h3 { font-size: 16px }
    
    #main p { margin: 21px 0 }
    /*#main h1:first-of-type + p { text-indent: 0 }
    #main h1 + p:first-letter {
        font: 40px bold verdana;
        text-transform: uppercase;
        float: left;
        margin: 6px 4px 0 40px;
        text-shadow: 1px 1px 0 #fff
    }*/
    
    /*#main h1 + p,#main h2 + p,#main h3 + p,#main h4 + p,#main h5 + p,#main h6 + p { text-indent: 20px }*/
    
/* TODO */    
    /*#main q { margin: 0 15px; border: 1px dashed blue; display: block; padding: 10px; }
    #main q:before, #main q:after {
        color: blue;
        font: 1.5em italic verdana;
    }*/
    #main q:before { content: "« "; margin-left: 20px; }
    #main q:after { content: " »" }
    
    /*#main code { background: green; }
    #main cite { background: orange; }

    #main dl { background: pink; }
    #main ul { background: grey; }
    #main ol { background: yellow; }*/
    #main ul { list-style: disc inside; margin: 0 0 21px 15px; }

/* aside */
#aside { font-size: 11px }

    #aside h1,#aside h2,#aside h3 { font-size: 13px }
/**************************
00 - Styling back defaults (minimal.css ?)
**************************/
input:focus {
    background: rgb(10,20,30);
    background: rgba(10,20,30,.5);
}
html,
body {
    margin: 0;
    padding: 0;
    background: #fefced;
}
html { height: 100% }
body {
    height: auto;
    margin: 0 auto;
    margin-top: 5px;
    overflow: auto;
    overflow-x: none; /**/
    width: 100%;
}

html, body, #top { background: #fefced url(/assets/img/body-bg.jpg) repeat-x top left }
body, #top { background-position: 0 -5px }
/**************************
01 - HEADER
**************************/
#top {
    background: #a8ab9a;
    background-image: url(/assets/img/body-bg.jpg) repeat-x top left;
    width: 960px;
    margin: 0 auto;
    -webkit-border-radius: 10px 10px 0 0;
       -moz-border-radius: 10px 10px 0 0;
            border-radius: 10px 10px 0 0;
}
    #top hgroup { height: 85px }
        #top h1, #top h2 { margin-left: 150px }
        #top h1 a {
            /**/
            color: #f7f5ac;
            font: 48px/63px "Trebuchet MS";
            font-weight: bold;
            text-decoration: none;
            color: #fefcec;
            text-shadow: 1px 1px 0 #000;
            /**/
        }
        #top img {
            position: absolute;
            z-index: 1;
        }

    #slides {
        background: #607890;
        height: 246px;
        overflow: hidden;
        position: relative;
        z-index: 0;
        -webkit-box-shadow: 0 -1px 3px #000;
           -moz-box-shadow: 0 -1px 3px #000;
             -o-box-shadow: 0 -1px 3px #000;
                box-shadow: 0 -1px 3px #000;
        -webkit-border-radius: 10px 10px 0 0;
           -moz-border-radius: 10px 10px 0 0;
                border-radius: 10px 10px 0 0;
    }
    #slides > img {
        -webkit-border-radius: 10px 10px 0 0;
           -moz-border-radius: 10px 10px 0 0;
                border-radius: 10px 10px 0 0;
    }
/**************************
02 - NAV
**************************/
#nav {
    background: #f3fad0;
    width: 960px;
    margin: 0 auto;
    height: 42px;
    line-height: 42px;
}
    #nav ul {
        background: #898d3a;
        background-image: -moz-linear-gradient(-90deg, #5b5e45 , #a8ab9a );
        background-image: -webkit-gradient(linear, 0 top, 0 bottom, from( #5b5e45 ), to( #a8ab9a ));
        display: inline-block;
        height: 42px;
        line-height: 42px;
        list-style: none;
        overflow: hidden;
        text-align: center;
        width: 960px;
        -webkit-border-radius: 0 0 10px 10px;
           -moz-border-radius: 0 0 10px 10px;
                border-radius: 0 0 10px 10px;
    }
        #nav li {
            display: inline-block;
            height: 42px;
            line-height: 42px;
            margin-left: 10px;
        }
        .ie6 #nav li,.ie7 #nav li { float: left }
        #nav li:first-of-type { margin: 0 }
            #nav li a:first-letter { text-transform: uppercase }
            #nav li a {
                display: inline-block;
                padding: 0 10px;
                /**/
                font: 16px/42px "Trebuchet MS";
                font-weight: bold;
                text-decoration: none;
                color: #fefcec;
                text-shadow: 1px 1px 0 #a8ab9a,
                            -1px -1px 1px #5b5e45;
                /**/
            }
            #nav li a:hover,#nav li a:active,#nav li a.active {
                background: transparent;
                color: #d0245d;
                -webkit-transition: color 1s ease;
                   -moz-transition: color 1s ease;
                     -o-transition: color 1s ease;
                        transition: color 1s ease;
            }


/**************************
03 - CONTENT
**************************/
div.mc {
    background: #fefced url(/assets/img/content-bg.png) repeat-y top left;
    min-height: 100%;
    margin: 0 auto;
    padding: 42px 0 63px;
    overflow: auto;
    width: 960px;
}
#main {
    float: left;
    margin-left: 10px;
    width: 640px;
}

/* 03a-links */
#main a { color: #d0245d }
#main a:hover, #main a:visited { text-decoration: none }
#main a:active {
    background: #d0245d;
    color: #fefced;
}
#main a:visited { font-style: italic }
#main a:visited:hover { text-decoration: underline }

#main ol {
    margin-left: 25px;
    list-style: decimal;
}

/* 03b-articles */
#main article {
    overflow: auto;
    clear: left;
    margin: 21px 0 42px;
    overflow: hidden;
}
#main article:last-of-type { border: 0 none }
    #main article footer {
        font-size: 12px;
        opacity: 0.7;
    }
    #main article img {
        background: #d0245d;
        border: 4px solid #d0245d;
        display: block;
        height: 231px;
        margin-top: 8px;
        width: 590px;
    }

    .read {
        line-height: 42px;
        text-align: right;
    }
    #main .read a {
        background: #d0245d;
        background-image: -moz-linear-gradient(-90deg, #d0245d , #8c183f );
        background-image: -webkit-gradient(linear, 0 top, 0 bottom, from( #d0245d ), to( #8c183f ));
        border: 1px solid #8c183f;
        border-right-color: #d0245d;
        border-bottom-color: #d0245d;
        letter-spacing: 1px;
        padding: 5px;
        -webkit-border-radius: 10px;
           -moz-border-radius: 10px;
                border-radius: 10px;
        -webkit-box-shadow: 2px 2px 2px #807e77;
           -moz-box-shadow: 2px 2px 2px #807e77;
             -o-box-shadow: 2px 2px 2px #807e77;
                box-shadow: 2px 2px 2px #807e77;
        /**/
        color: #fefced;
        font: 14px/21px "Trebuchet MS";
        text-decoration: none;
        font-weight: bold;
        text-shadow: 2px 2px 2px #d0245d,
                    -1px -1px 0 #8c183f;
        /**/
    }
    #main .read a:hover {
        background-image: -moz-linear-gradient(-90deg, #8c183f , #d0245d );
        background-image: -webkit-gradient(linear, 0 top, 0 bottom, from( #8c183f ), to( #d0245d ));
        border: 1px solid #d0245d;
        border-right-color: #8c183f;
        border-bottom-color: #8c183f;
        -webkit-box-shadow: 1px 1px 1px #807e77;
           -moz-box-shadow: 1px 1px 1px #807e77;
             -o-box-shadow: 1px 1px 1px #807e77;
                box-shadow: 1px 1px 1px #807e77;
        text-shadow: none;
    }

    .pageNav {
        opacity: 0.7;
        overflow: hidden;
        -webkit-transition: opacity .5s ease;
           -moz-transition: opacity .5s ease;
             -o-transition: opacity .5s ease;
                transition: opacity .5s ease;
    }
    .pageNav:hover {
        opacity: 1;
        -webkit-transition: opacity .5s ease;
           -moz-transition: opacity .5s ease;
             -o-transition: opacity .5s ease;
                transition: opacity .5s ease;
    }
        .pageNav ol {
            background: #f3fad0;
            border: 1px solid #23231d;
            line-height: 42px;
            overflow: hidden;
            text-align: center;
            -webkit-border-radius: 10px;
               -moz-border-radius: 10px;
                    border-radius: 10px;
        }
            .pageNav li { display: inline-block }
            .pageNav li.active, .pageNav li a { padding: 0 10px }
            .ie6 .pageNav li, .ie7 .pageNav li { display: inline }
                .pageNav li a {
                    background: #f3fad0;
                    display: inline-block;
                    text-decoration: none;
                }
                #main .pageNav li a:hover, .pageNav li.active {
                    background: #23231d;
                    color: #fefced;
                }

    /* metas article full page */
    #meta {
        font-size: 10px;
        line-height: 21px;
        margin: 42px 0 0;
        text-align: right;
    }

    /* commentaires */
    #comments h3 { margin: 42px 0 0 }
    #main #comments article { padding-bottom: 21px }
    #main #comments article:first-of-type { border: 0 none }
        /* post metas */
        #main #comments article footer {
            background: #f3fad0;
            border: 1px dashed #a8ab9a;
            border-left: 0 none;
            border-right: 0 none;
            opacity: 1;
            width: 100%;
            padding: 9px 0 10px 15px;
            overflow: auto;
        }
            #main #comments article img {
                background: #d0245d;
                border: 4px solid #d0245d;
                float: left;
                height: 50px;
                margin: 0;
                width: 50px;
            }
            #comments footer .meta {
                float: left;
                margin-left: 15px;
            }
        #comments article footer + p { margin-left: 88px }

        #comments h5 {
            border-top: 1px solid #000;
            padding: 21px 0 20px;
        }

        /* error/success msgs */
        .quip-success,.quip-error {
            padding: 21px;
            margin-bottom: 42px
        }
        .quip-success {
            background: #90ee90;
            border: 1px solid green;
        }
        .quip-error {
            background: #ee6363;
            border: 1px solid red;
        }

        #valid-preview {
            margin-bottom: 42px;
            text-align: right;
        }        
            #comments button {
                /*background: #fefced;*/
                clear: none !important;
                /*float: right;*/
                border: 1px solid #898d3a;
                text-align: center;
            }


/* produits */
.prod-cat {
    margin: 42px 0 0;
    clear: both;
    line-height: 21px;
    overflow: auto;
}
    /* titre h2 */
    /*.produit-categorie {}*/
    .prod-cat img {
        background: #d0245d;
        border: 4px solid #d0245d;
        display: block;
        height: 200px;
        line-height: 200px;
        text-align: center;
        width: 590px;
    }
    .produit-intro {
        clear: both;
        margin-top: 26px;
    }
    
    /* container liste des produits d'une cat */
    .prod-list {
        margin-top: 21px;
        overflow: auto;
    }
        /* détail produit */
        .prod-list .odd {
            clear: left;
            float: left
        }
        .prod-list .even { float: right }
        .prod-list .produit:first-of-type,.prod-list .produit:first-of-type h4 {
            -webkit-border-radius: 10px 0 0 0;
               -moz-border-radius: 10px 0 0 0;
                    border-radius: 10px 0 0 0;
        }
        .prod-list .produit:nth-of-type(2),.prod-list .produit:nth-of-type(2) h4 {
            -webkit-border-radius: 0 10px 0 0;
               -moz-border-radius: 0 10px 0 0;
                    border-radius: 0 10px 0 0;
        }
            .produit h4 {
                background: #898d3a;
                text-indent: 20px;
                color: #f3facf !important;
            }
            /*.produit ul { background: red !important; overflow: auto; }*/
            .produit ul {
                background: #f3facf !important;
                margin: 0 !important;
                overflow: auto;
                padding: 21px 0;
                width: 300px;
            }
                .produit li {
                    background: #f3facf;
                    list-style: none;
                    padding-left: 25px;
                }
                .produit li:before {
                    content: "►";
                    color: #898d3a;
                    margin-right: 5px;
                }
                .produit li:hover:before { color: #fefced }
                .produit li:first-of-type {
        }
        .prod-list hr {
            clear: both;
            border: 0 none;/*
            border-color: red;
            background: red;
            display:block;*/
            float:left;
            display: hidden;
            height: 21px;
        }

/* contact */
#form {
    /*background: red;*/
    /*width: 100%;*/
}
    #form input,#form textarea {
        border: 1px solid #898d3a;
        float: right;
        margin: 0 15px 0 0;
        width: 65%;
    }
    #form label {
        background: #898d3a;
        clear: left;
        color: #fefced;
        display: block;
        float: left;
        margin: 0 0 6px;
        text-indent: 20px;
        width: 30%;
        -webkit-border-radius: 10px 0 0 10px;
           -moz-border-radius: 10px 0 0 10px;
                border-radius: 10px 0 0 10px;
    }
        #form label span {
            /*background: blue;*/
            color: red;
            display: block;
            font-size: 10px !important;
            line-height: 15px;
            width: 100%;
            -webkit-border-radius: 0 0 0 10px;
               -moz-border-radius: 0 0 0 10px;
                    border-radius: 0 0 0 10px;
        }
    /*#form input { line-height: 42px }*/
    #form input.error { border: 1px solid red }
    #form input:focus, #form textarea:focus { background: #898d3a }
    #form textarea {
        padding: 0;
        resize: vertical;
    }
    #form input[type=submit],#comments button {
        background: #fefced;
        width: 32.5%;
        clear: both;
        line-height: 18px;
        margin: 21px 15px 0 0;
        padding: 11px 0 10px;
        -webkit-border-radius: 10px;
           -moz-border-radius: 10px;
                border-radius: 10px;
        -webkit-transition: background 1s ease,
                            color 1s ease,
                            border-radius 1s ease;
           -moz-transition: background 1s ease,
                            color 1s ease,
                            border-radius 1s ease;
             -o-transition: background 1s ease,
                            color 1s ease,
                            border-radius 1s ease;
                transition: background 1s ease,
                            color 1s ease,
                            border-radius 1s ease;
    }
    #form input[type=submit]:hover,#comments button:hover {
        background: #898d3a;
        color: #fefced;
        -webkit-transition: background 1s ease,
                            color 1s ease,
                            border-radius 1s ease;
           -moz-transition: background 1s ease,
                            color 1s ease,
                            border-radius 1s ease;
             -o-transition: background 1s ease,
                            color 1s ease,
                            border-radius 1s ease;
                transition: background 1s ease,
                            color 1s ease,
                            border-radius 1s ease;
    }
    .csstransitions #form input[type=submit]:hover,.csstransitions #comments button {
        -webkit-border-radius: 0;
           -moz-border-radius: 0;
                border-radius: 0;
    }

/* links */
#main .link { border-top: 1px dotted #000; line-height: 20px }
#main .link:first-of-type { border: 0 none; line-height: 21px }
#main .link-desc { padding: 0 0 0 25px }

/* legal */
#main dl {
    /*background: red;*/
    margin: 21px 0;
    overflow: auto;
}
#main dt {
    /*background: blue;*/
    background: #f3fad0;
    float: left;
    font-weight: bold;
    text-indent: 10px;
    width: 220px;
}
#main dd {
    /*background: green;*/
    float: left;
    margin-left: 20px;
    width: 400px;
}

/**************************
XX - ASIDE
**************************/
#aside {
    background: #f3fad0;
    float: right;
    font-size: 11px;
    padding-bottom: 42px;
    width: 290px;
}
    #aside h1,#aside h2,#aside h3,#aside h4,#aside h5,#aside h6 {
        background: #898d3a;
        color: #f3facf;
        padding: 8px 10px 13px;
        margin: 0 0 21px;
    }
    
    #aside p {
        margin: 0 15px 21px;
    }
    #aside img {
        border: 1px solid #898d3a;
    }
    #aside ul { margin: 0 0 21px 0 }
        #aside li {
            list-style: none
        }
            #aside li a {
                display: block;
                text-decoration: none;
                text-indent: 20px;
            }
            #aside li a:hover { text-indent: 25px }

/**************************
XX - FOOTER
**************************/
#footer {
    background: #23231d url(/assets/img/footer-top.jpg) repeat-x 0 0;
    padding-top: 10px;
    clear: both;
}
    #footer-wrap, #copyright {
        margin: 0 auto;
        width: 960px;
    }
    #footer-wrap {
        background: url(/assets/img/saunier_footer.png) no-repeat 0 0;
        height: auto;
        overflow: auto;
    }
        #go-top {
            background: #23231d;
            clear: both;
            display:block;
            height: 21px;
            position: absolute;
            margin: -21px 70px 0 790px;
            text-align: center;
            text-decoration: none;
            width: 100px;
            -webkit-border-radius: 10px 10px 0 0;
               -moz-border-radius: 10px 10px 0 0;
                    border-radius: 10px 10px 0 0;
            -webkit-box-shadow: 1px -1px 1px #666;
               -moz-box-shadow: 1px -1px 1px #666;
                 -o-box-shadow: 1px -1px 1px #666;
                    box-shadow: 1px -1px 1px #666;
        }
        /*#go-top:hover:before {
            content: "^";
            color: #e790a4;
            font-size: 24px;
            font-weight: bold;
            line-height: 21px;
            text-shadow: 1px 1px 0 #a7a39a;
            margin: 15px 0 0 -15px;
        }
        #go-top:hover {
            color: red;
        }*/
        #footer-wrap h1 {
            color: #e69f6c;
            text-shadow: 2px 2px 1px #000;
            font: 22px/32px "Trebuchet MS";
            font-weight: bold;
            letter-spacing: 2px;
        }
        #footer-wrap h1:first-letter { text-transform: capitalize }
        #footer-wrap nav {
            float: left;
            width: 280px
        }
            #footer-wrap nav ul { margin: 21px 0 0 10px }
                    #footer-wrap nav a {
                        /*background: rgba(10,20,30,.5);*/
                        border: 0 none;
                        border-bottom: 1px dashed #58594f;
                        display: block;
                        font-weight: bold;
                        height: 20px;
                        line-height: 20px;
                        text-decoration: none;
                        text-indent: 10px;
                    }
                    #footer-wrap nav a:first-letter { text-transform: capitalize }
                    #footer-wrap nav li:last-of-type a { border: 0 none }
                    #footer-wrap nav a:hover {
                        background: #edecdb;
                        color: #d0245d;
                        text-indent: 25px;
                        font-weight: bold;
                        text-shadow: 1px 1px 0 #000;
                        -webkit-transition: background 1s ease, color 1s ease, text-indent .5s ease;
                           -moz-transition: background 1s ease, color 1s ease, text-indent .5s ease;
                             -o-transition: background 1s ease, color 1s ease, text-indent .5s ease;
                                transition: background 1s ease, color 1s ease, text-indent .5s ease;
                    }
        #location {
            float: right;
            margin: 0 10px 0 0;
            width: 580px;
        }
            #location div {
                float: left;
                margin: 21px 0;
            }
            #location div + div {
                float: right;
                text-align: right;
                margin: 21px 40px 21px 0;
            }
            #location div + div, #location div + div > a {
                color: #d0245d;
                font-weight: bold;
                text-decoration: none;
                text-shadow: 1px 1px 0 #000;
            }
            #location div + div > a:hover {
                color: #607890;
                -webkit-transition: color .5s ease;
                   -moz-transition: color .5s ease;
                     -o-transition: color .5s ease;
                        transition: color .5s ease;
            }
            #location .plan {
                background: #d0245d;
                /*border: 1px solid #d0245d;*/
                clear: left;
                display: block;
                height: 160px;
                line-height: 160px;
                overflow: hidden;
                text-align: center;
                width: 540px;
                -webkit-background-clip: border;
                   -moz-background-clip: border;
                        background-clip: border;
                -webkit-border-radius: 10px;
                   -moz-border-radius: 10px;
                        border-radius: 10px;
            }
    #copyright {
        clear: both;
        padding: 21px 0 0;
        text-align: center
    }