/* reset browsers */
    * {
        margin: 0;
        padding: 0;

        font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    }

    img {
        border: none;
    }
/* end reset browsers */

/* tools */
    .clear {
        clear: both;
    }
    
    .group:after {
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }
/* end tools */

/* typography */
    body {
        font-size: 62.5%;
    }
    h1 {
        font-size: 210%;
        letter-spacing: -1px;
        color: #333;
    }
    h1 small {
        display: block;
        font-size: 0.7em;
        font-weight: normal;
    }
    h1 em {
        display: block;
        font-size: 130%;
        font-style: normal;
        margin: 0 0 1em;
    }
    h2 {
        margin-top: 1em;
        font-size: 150%;
        font-weight: bold;
    }
    h3 {
        margin-top: 1em;
    }
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0.8em;
        line-height: 1.15;
    }
    h4 {
        font-size: 120%;
        font-weight: bold;
    }
    
    p,
    li {
        line-height: 1.5em;
    }
    
    p,
    ol,
    ul {
        margin: 1em 0;
    }
    
    ol,
    ul {
        margin-left: 1em;
    }
    
    li {
        margin: 0.55em 0 0.55em 2em;
    }
    
    table {
        margin: 0 0 1.1em;
        border-collapse: collapse;
    }
    td,
    th {
        padding: 0.25em 2em 0.25em 0;
    }
    
    textarea {
        font: 100%/120% Verdana, Geneva, Arial, Helvetica, sans-serif;
    }
    a:link {
        color: #235C9A;
    }
    a:hover {
        color: #507AB2;
    }
    
    .accessibility {
        text-indent: -9000px;
        height: 0;
        margin: 0;
    }
/* end typography */

/* messages */
    p.message {
        clear: both;
            
        background: none;
        color: #333;
        
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;        
    }
    
    p.message,
    div.errors,
    ul.errors {
        margin: 1em 0;
        padding: 0.5em 1em;
    }
    div#content div.errors ul {
        margin: 0;
    }
    
    div.errors,
    p.error,
    ul.errors {
        background: #EABA76;
    }
    p.notice {
        background: #BFEBBF;
    }
/* end messages */

/* layout */
    body, html {
        height: 100%; /* see http://www.alistapart.com/articles/footers */
    }
    
    body {
        padding: 0 3%;
        background: #d2cfb9 url("../images/body-bg.png") repeat-x;
        
        text-align: left;
        font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
        font-size: 76%;
        line-height: 1.5em;
        
        color: #262626;
    }
    body.landing,
    body.no-top-nav {
        background: #d2cfb9 url("../images/body-bg.png") repeat-x 0 -43px;
    }

    div#wrapper {
        position: relative;
        min-height: 100%;
        min-width: 70em;
        max-width: 90em;

        background: white;
    }

    body.clean div#wrapper {
        background-image: none;
    }
    body.clean div#wrapper div.content-main {
        margin-right: 0;
    }
    
    div#header p,
    div#header ol,
    div#header ul,
    ul#main-nav,
    ul#secondary-nav,
    div#footer p,
    div#footer ol,
    div#footer ul {
        margin: 0;
    }
    
    /* header */
        div#header {
            height: 73px;
            background: url("../images/header-bg.png") repeat-x;
        }
        div#header a.logo {
            position: absolute;
            top: 16px;
            left: 1.7em;

            width: 249px;
            height: 35px;

            background-image: url("../images/logo-trans.png");
            background-repeat: no-repeat;
            text-indent: -9000px;
            outline: 0;
        }
        div#header a.login {
            position: absolute;
            top: 19px;
            right: 1.7em;

            width: 109px;
            height: 35px;
            
            background-image: url("../images/login-button-trans.png");
            text-indent: -9000px;
            outline: 0;
        }        
    /* end header */
    
    /* navigation */
        ul#main-nav {
            height: 3.47em;
            padding-left: 1.7em;
            border-top: 1px solid #4569A9;

            list-style: none;
        }
        ul#main-nav,
        ul#main-nav li {
            margin: 0;
            background: #314E87 url("../images/main-nav-bg.png") repeat-x;
        }
        ul#main-nav li {
            float: left;
            width: auto;
            
            border-left: 1px solid #2F4B82;
            padding: 1em 0;

            font-size: 95%;
            font-weight: bold;
            text-transform: uppercase;
        }
        ul#main-nav li.current {
            background: #314E87;
        }
        ul#main-nav li:last-child {
            border-right: 1px solid #2F4B82;
        }
        ul#main-nav a:hover {
            text-decoration: underline;
        }
        ul#main-nav a {
            padding: 1em;
            color: white;
            text-decoration: none;
        }
        ul#main-nav li.current a {
            color: #E1E0C7;
        }
        
        ul#secondary-nav {
            position: absolute;
            top: 35px;
            right: 0.7em;

            list-style: none;
            font-size: 90%;
        }
        body.landing ul#secondary-nav,
        body.no-top-nav ul#secondary-nav {
            top: 38px;
        }
        ul#secondary-nav li {
            float: left;
            width: auto;
            
            margin: 0;
            border-left: 1px solid white;
            padding: 0 1em;
            
            line-height: 1.2em;
        }
        ul#secondary-nav li:first-child {
            border-left: none;
        }
        ul#secondary-nav a {
            color: white;
            text-decoration: none;
        }
        ul#secondary-nav a:hover {
            text-decoration: underline;
        }
    /* end navigation */
    
    /* main and secondary content */
        div#content {
            position: relative;
            clear: both;
            padding: 1.2em 1.7em 7em;
			width: auto;
        }
        div#content div.content-main {
            margin-right: 0;
        }
        div.sidebar {
            position: absolute;
            top: 0.8em;
            right: 0;
            bottom: 0;
            left: 66%;
            
            padding: 1.5em 2.5em 1em 1.5em;
        }
        div.sidebar h2 {
            margin-top: 0.4em;

            font-size: 120%;
        }

        body.landing div#content,
        body.no-top-nav div#content {
            top: 0;
            padding-top: 1.2em;
        }
        body.landing div.sidebar,
        body.no-top-nav div.sidebar {
            padding-top: 1.1em;
        }

        div#content div.shaded-box {
            background: white url("../images/boxout-contrast-grey-gradient.png") repeat-x top left;
            padding: 1em;
        }
        div#content div.shaded-box h2 {
            margin-top: 0;
        }

        div#content div.light-blue-box {
            border-top: 1px solid #cccccc;
            background-color: #fafafa;
            padding: 1em;
            border-top: 

        }

        div#content div.icon {
            height: 51px;
            padding-left: 60px;
        }
        div#content div.icon h2 {
            margin: 0; padding: 14px 0 0 0;
        }
        div#content div.icon.film {
            background: transparent url("../images/icon-video-51x51-trans.png") no-repeat top left;
        }
        div#content div.icon.document {
            background: transparent url("../images/icon-document-51x51-trans.png") no-repeat top left;
        }
        div#content div.icon.document-star {
            background: transparent url("../images/icon-document-star-51x51-trans.png") no-repeat top left;
        }
        div#content div.icon.folder {
            background: transparent url("../images/icon-folder-51x51-trans.png") no-repeat top left;
        }

    /* end main and secondary content */

    /* Sidebar content */
        div#content div.sidebar div.newsletter.box {
            border: 1px solid #cccccc;
            margin: 0 0 1em 0;
        }
        div#content div.sidebar div.newsletter.box p.buttons {
            margin-bottom: 0.5em;
        }

        div#content div.sidebar div.promo {
            border: 3px solid #d6d6d6;
            background: url("../images/sidebar/business-blogging-book-ad.png") no-repeat bottom right;
            height: 214px;
            padding: 18px 160px 18px 18px;
        }

        div#content div.sidebar div.promo.recipe {
            background: url("../images/sidebar/web-content-recipe-book-ad.png") no-repeat bottom right;
        }
        
        div#content div.sidebar div.promo h2 {
            color: white;
            font-size: 200%;
            font-style: italic;
            display: block;
            margin: 0;
        }
        div#content div.sidebar div.promo.recipe h2 {
            font-size: 180%;
        }
        div#content div.sidebar div.promo p {
            margin: 0.5em 0;
            color: white;
        }
        div#content div.sidebar div.promo a.marketing {
            display: block;
            margin-top: 1.5em;
        }

    /* end Sidebar content */
    /* footer */
        div#pre-footer {
            clear: both;
            display: block;
            width: 100%;
            height: 6em;
        }
        div#footer {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            
            border-top: 1px solid #DFDFDF;
            padding: 1.3em 1.7em 1.7em 1.7em;
        
            background: white;
            font-size: 85%;
            color: #555;
        }
        div#footer ul {
            margin: auto;
            margin-bottom: 2em;
            list-style: none;
        }
        div#footer li {
            float: left;
            width: auto;
            margin: 0 0.75em 0 0;
            padding-right: 0.75em;
            border-right: 1px solid #BDBCBA;
        }
        div#footer li:last-child {
            border-right: none;
        }
        div#footer p {
            clear: both;
        }
    /* end footer */

    /* popup page */
        body.popup div#wrapper {
            min-width: 40em;
        }
    /* end popup page*/
/* end layout */

/* components shared between apps */
    /* forms */
        form p {
            clear: left;
            float: left;
            width: 100%;
            
            margin: 0.6em 0;
        }
        form p.buttons {
            margin: 0.7em 0 2em 0;
        }
        form p.buttons span.privacy {
            font-size: 90%;
        }

        form p label {
            float: left;
            width: auto;
            
            margin-right: 1.5em;
        }
        form p.multi-line-checkbox input[type=checkbox] {
            float: left;
            margin-right: 0.4em;
        }
        form label.required {
            font-weight: bold;
        }

        form input.text,
        form label.text input,
        form textarea {
            display: block;
            
            margin-top: 0.25em;
        }
        form input.text.inline,
        form label.text.inline input {
            display: inline;
        }
        form input.text,
        form label.text input,
        form textarea {
            border: 1px solid #A3A08C;
            padding: 3px;

            font-size: 105%;
        }
        form input.text:focus,
        form label.text input:focus,
        form textarea:focus {
            border: 1px solid #7F7B64;
            background-color: #F5F3E7;
        }
    /* end forms */

    /* newsletter sign up */
        /* re-usable element */
            div.newsletter.box {
                padding: 0.5em 0.75em 0.75em;

                background: #FFF url("../images/newsletter-signup-bg.png") no-repeat bottom right;
            }
            div.newsletter p {
                margin-top: 0;
                margin-bottom: 0.6em;
                font-size: 95%;
            }
            div.newsletter label {
                margin-top: 0.5em;
            }
            div.newsletter p.buttons span.privacy {
                display: block;
                margin-top: 1em;
            }
        /* end re-usable element */

        /* home page */
            body.home div#content-home div.newsletter {
                float: right;
                width: 23%;

                margin: 0;
                border-top: 1px solid #ccc;
            }
        /* end home page */

        /* side bar */
            div#marketing div.newsletter p {
                margin-top: 0;
            }
        /* end side bar */

        /* within page content */
            div.signup input.text {
                width: 20em;
            }
        /* end within page content */
    /* end newsletter sign up */

    /* buttons (and/or links) */
        a.marketing {
            display: block;
            
            width: 193px;
            height: 31px;
            
            padding-top: 0.38em;
            
            color: white;
            font-size: 110%;
            font-weight: bold;
            text-decoration: none;
            text-align: center;
            
            background: url("../images/action-button-trans.png") no-repeat;
        }
        a.marketing:hover {
            background: url("../images/action-button-active-trans.png") no-repeat;
        }

        a.marketing.small {
            width: 108px;

            background: url("../images/action-button-small-trans.png") no-repeat;
        }
        a.marketing.small:hover {
            background: url("../images/action-button-small-active-trans.png") no-repeat;
        }
        a.marketing.large {
            width: 421px;

            background: url("../images/action-button-large-trans.png") no-repeat;
        }
        a.marketing.large:hover {
            background: url("../images/action-button-large-active-trans.png") no-repeat;
        }

        div#content p.textad {
            font-size: 140%;
            padding: .3em 2em;
            text-align: center;
            font-weight: bold;
            background-color: #efefef;
            margin: 0;
        }

    /* end buttons */
    
    /* testimonials */
        /* testimonials */
            blockquote.testimonial {
                margin: 1em 0;
            }
            blockquote.testimonial p span.author {
                display: block;
                font-weight: bold;
            }
            blockquote.testimonial p span.url {
                display: block;

                font-size: 90%;
                font-weight: normal;                
            }
            blockquote.testimonial cite {
                display: block;

                text-align: right;
            }

            /* sidebar layout */
                div.sidebar div.testimonials h2,
                div.sidebar blockquote.testimonial {
                    border-bottom: 1px solid #ccc;
                    padding-bottom: 1em;
                }
                div.sidebar blockquote.testimonial {
                    margin: 0 0 1em 0;

                    font-size: 93%;
                }
                div#content div.sidebar blockquote.testimonial p {
                    margin: 0.5em 0 0 0;
                    color: #666;
                }
                div.sidebar blockquote.testimonial cite {
                    text-align: right;
                }
                div.sidebar blockquote.testimonial span.url {
                    text-align: right;
                }
            /* end sidebar layout */
        /* end testimonials */
    /* end testimonials */

    /* search results table */
        h2.results {
            background: white url("../images/light-blue-title-gradient.png") repeat-x bottom left;
            color: black;
            font-size: 140%;
            padding: 8px 13px;
            text-align: left;
            border-top: 1px solid #cccccc;
            margin: 2em 0 0 0;
        }
        h2.results .unemphasised {
            font-weight: normal;
            font-size: 71%;
        }
        table.results { border-collapse: collapse; }
        table.results th {text-align: left;}
        table.results thead tr.subhead2 th {
            background: #dce1eb;
            color: black;
            font-size: 100%;
        }
        table.results thead tr.subhead th {
            background: #fbfcfd;
            color: black;
            font-size: 100%;
        }
        table.results thead {
            border: none;
            border-bottom: 1px solid black;
        }
        table.results tr.even td {
            background: #f3f5f8;
        }
        table.results td.i { width: 1px; }
        table.results td.k { width: 94%; }
        table.results td.s { width: 5%; }
        table.results td, table.results th {
            padding: 5px 13px 5px 13px;
        }

div._suggestion-tool-table {
	width: 450px;
	padding: 10px;
}

div._suggestion-tool-table table {
	border-collapse:collapse;
	padding: 0;
	margin: 0;
}

div._suggestion-tool-table th {
	padding: 5px;
	padding-left: 20px;
	font-size: 1em;
	background: #BEAA88;
	color: #fff;
}

div._suggestion-tool-table td {
	padding: 8px;
	padding-left: 20px;
	font-weight: normal;
}

    /* end search results table */

/* end components shared between apps */

/* start sales pages */

  body.signup div#content h1 { font-size: 225%; }
  body.signup div#content h2 { font-size: 115%; margin: .4em 0;}
  body.signup div#content p { margin: 0;}
  body.signup div#content form fieldset { border: none; width: 100%; margin: 0; padding: 0;}
  body.signup div#content form fieldset h2 { display: block; font-weight: bold; font-size: 150%; background-color: #ededed; padding: .3em 1em .5em .5em; margin: 1.5em 0 .3em 0;}
  body.signup div#content form p { margin: 0.6em 0;}
  body.signup div#content form textarea { height: 11em; overflow: auto;}
  body.signup div#content div input.activate { 
      display: inline;
      width: auto;
      height: auto;
      padding: 0.5em;
      
      color: white;
      font-size: 150%; 
      font-weight: bold;
      text-decoration: none;
      text-align: center;

      background: #ef873e;

      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
  }
  
  body.signup div#content div.guarantee { background-color: #eee7b9; padding: 1em 1.2em; margin: 1em 0; clear: left; }
  body.signup div#content div.guarantee h3 { margin: 0 0 0.3em 0; }
  body.signup div#content div.guarantee p { float: none; margin: 0;}

/* end sales pages */

div.img {
  display: inline;
  float: left;
  width: auto;
  overflow: hidden;
  margin: 5px 15px 15px 0;
  text-align: right; 
 }

div#content-body-wrapper { position: relative; clear:inherit; }
div#content-body { margin-right: 35.5%; }
div#content-body-wrapper div.sidebar { padding-top: 0; }
div#content-body-wrapper div.sidebar div.call-to-action { margin-top: 0; }

div#content div.content-main h1 em {
  display: inline;
  color: #bf8726;
  font-size: 100%; }
div#content div.content-main img {
  border: none;
  margin: 0 1em 1em 0; }
div#content div.content-main div.key-points {
  width: auto;
  float: none;
  border: none;
  background: none;
  color: inherit; }
  div#content div.content-main div.key-points h2 {
    margin: inherit;
    border: inherit;
    padding: inherit; }
div#content div.content-main div.offer-body {
  clear: both; }
div.call-to-action {
  background: transparent url(../images/call-to-action-bg.png) repeat-x scroll center bottom;
  border: 1px solid #c4c4c4;
  margin: 3em 0;
  padding: 0 1em; }
  div#content div.content-main div.call-to-action h2 {
    font-size: 230%;
    margin: 0.5em 0; }
  div#content div.content-main div.call-to-action div.price {
    font-size: 140%; }
    div#content div.content-main div.call-to-action div.price em {
      font-style: normal;
      font-weight: bold;
      font-size: 160%;
      color: #bf8726; }
  div#content div.content-main div.call-to-action a.marketing {
    color: #14355D; }
  div#content div.content-main div.call-to-action h3 {
    font-size: 175%;
    padding-top: 0.5em;
    margin: 0.5em 0 0;
    border-top: solid 1px #c4c4c4; }
div#content div.content-main div.sidebar ul {
  list-style: none; }
 div#content div.content-main div.sidebar ul li {
    margin: 0; }
div#content div.content-main div.sidebar h3 {
  font-size: 150%; }
div#content div.content-main div.contact {
  font-weight: bold;
  font-size: 110%; }
  div#content div.content-main div.contact p {
    margin-top: 0; }
  div#content div.content-main div.contact ul {
    list-style: none; }
    div#content div.content-main div.contact ul li {
      margin: 0; }
 div#content div.content-main div.contact ul li span {
    font-weight: normal; }

div.content-main table {
  margin: 0 0 1em 0;
  border-collapse: collapse; }
  div.content-main table tr {
    border-bottom: 1px dotted #999ea6; }
  div.content-main table thead tr {
    border-bottom: 2px solid #999ea6; }
  div.content-main table th,
  div.content-main table td {
    padding: 0.1em 1em; }
  div.content-main table th {
    font-size: 95%;
    font-weight: bold; }


