﻿@charset "utf-8";
@import url(css/boilerplate.css);

@-ms-viewport {
    width: device-width;
    zoom: 1.0;
}

/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
    max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
    width: 100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
    clear: both;
    margin-left: 0;
    width: 100%;
    float: left;
    display: block;
}

.fluidList {
    list-style: none;
    list-style-image: none;
    margin: 0;
    padding: 0;
}

/* Mobile Layout: 568px and below. */

.gridContainer {
    margin-left: auto;
    margin-right: auto;
    width: 86.45%;
    padding-left: 2.275%;
    padding-right: 2.275%;
    clear: none;
    float: none;
}

.wrapper {
    background-color: #f4f3f0;
}

header {
    margin-top: 10px;
    margin-bottom: 10px;
}

.logo_section {
    width: 100%;
    text-align: center;
}

.header_section {
    width: 100%;
    clear: both;
    margin-left: 0;
    text-align: center;
}

    .header_section a {
        margin-right: 5px;
        margin-left: 5px;
        font-size: 0.85em;
    }

        .header_section a.larger_link {
            font-size: 1em;
            font-weight: bold;
        }

    .header_section .vSeparator {
        color: #1868b3;
        margin-right: 2px;
        margin-left: 2px;
    }

.header_signin {
    border-bottom: 1px solid #d8d6d5;
    padding-bottom: 5px;
}

.header_links, .header_search {
    padding: 6px 0;
}

.header_links {
    border-bottom: 1px solid #d8d6d5;
}

    .header_links a, .header_search a {
        color: #858585;
        text-transform: uppercase;
    }

        .header_links a:hover, .header_search a:hover {
            color: #757575;
        }

        .header_links a.social_link > img {
            height: 24px;
        }

nav {
    border-radius: 5px;
    background-image: -moz-linear-gradient(top, #00588d 0%, #004376 100%); /* Mozilla Firefox */
    background-image: -o-linear-gradient(top, #00588d 0%, #004376 100%); /* Opera */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #00588d), color-stop(1, #004376)); /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-linear-gradient(top, #00588d 0%, #004376 100%); /* Webkit (Chrome 11+) */
    background-image: linear-gradient(to bottom, #00588d 0%, #004376 100%); /* W3C Markup, IE10 Release Preview */
    background-color: #004376;
}

.breadcrumbs_section {
    width: 100%;
    clear: both;
    margin: 10px 0;
}

footer {
    border-top: 2px solid #278eb9;
}

.bottom_section {
    width: 100%;
    clear: both;
    margin-left: 0;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #d8d6d5;
    color: #727272;
    font-size: 0.85em;
}

    .bottom_section a {
        color: #727272;
    }

    .bottom_section .add_margin {
        margin-right: 10px;
    }

    .bottom_section a:hover {
        color: #626262;
    }

.span_full {
    width: 100%;
    clear: both;
    margin-left: 0;
}

.span_twothirds {
    width: 100%;
}

.span_onethird {
    width: 100%;
    clear: both;
    margin-left: 0;
}

.span_onethird_left {
    width: 100%;
}

.span_twothirds_right {
    width: 100%;
    clear: both;
    margin-left: 0;
}

.span_quarter {
    width: 100%;
    clear: both;
    margin-left: 0;
}

.span_quarter_left {
    width: 100%;
}

.span_threequarters_right {
    width: 100%;
    clear: both;
    margin-left: 0;
}

/* scroll to top */
#scrollToPageTop {
    display: none; /* in case JavaScript is disabled */
    position: fixed;
    bottom: 25px;
    right: 35px;
}

    #scrollToPageTop a, #scrollToPageTop a:link {
        display: block;
        color: #fff;
        font-size: 0.9em;
        opacity: 0.7;
        padding: 8px 25px;
        border-radius: 15px;
        background-image: -moz-linear-gradient(top, #00588d 0%, #004376 100%); /* Mozilla Firefox */
        background-image: -o-linear-gradient(top, #00588d 0%, #004376 100%); /* Opera */
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #00588d), color-stop(1, #004376)); /* Webkit (Safari/Chrome 10) */
        background-image: -webkit-linear-gradient(top, #00588d 0%, #004376 100%); /* Webkit (Chrome 11+) */
        background-image: linear-gradient(to bottom, #00588d 0%, #004376 100%); /* W3C Markup, IE10 Release Preview */
        background-color: #004376;
        -moz-transition: opacity 650ms ease;
        -o-transition: opacity 650ms ease;
        -webkit-transition: opacity 650ms ease;
        transition: opacity 650ms ease;
    }

        #scrollToPageTop a:hover {
            opacity: 0.9;
            text-decoration: none;
        }

/* NOAH form layout styles */
.FormArea, .FormRow, .FormLabelCol, .FormHelpCol, .FormControlCol, .FormButtons {
    display: inline-block;
}

.FormArea {
    width: 100%;
    max-width: 900px;
}

.FormRow {
    width: 100%;
    margin-top: 6px;
}

.FormLabelCol {
    float: left;
    width: 100%;
}

.FormHelpCol {
    display: none;
    float: left;
    width: 5%;
    text-align: center;
}

.FormControlCol {
    float: left;
    width: 92%;
}

.FormButtons {
    width: 100%;
    margin-top: 25px;
}

.FormControl {
    width: 100%;
}

/* FormButton, FormButtonSecondary - match dnnPrimaryAction and dnnSecondaryAction styles from boilerplace.css */
input.FormButton, input.FormButton:active, .FormButton, .FormButton:active, a.FormButton, a.FormButton:active {
    font-size: 1em;
    background: #004376;
    color: #fff;
    border: 1px solid #004376;
}

    input.FormButton:hover, .FormButton:hover, a.FormButton:hover {
        background: #00588d;
        color: #fff;
        border-color: #00588d;
    }

input.FormButtonSecondary, input.FormButtonSecondary:active, .FormButtonSecondary, .FormButtonSecondary:active, a.FormButtonSecondary, a.FormButtonSecondary:active {
    font-size: 1em;
    background: #cfcfcf;
    border: 1px solid #ccc;
    color: #333;
    box-shadow: none;
}

    input.FormButtonSecondary:hover, .FormButtonSecondary:hover, a.FormButtonSecondary:hover {
        background: #dfdfdf;
        border-color: #ddd;
        color: #555;
    }

    .FormButton[disabled], .FormButton[disabled]:hover, .FormButton[disabled]:active, .FormButtonSecondary[disabled], .FormButtonSecondary[disabled]:hover, .FormButtonSecondary[disabled]:active {
        background: #dddddd;
        color: #999;
        cursor: not-allowed;
        text-decoration: none;
        border: 1px solid #dddddd;
    }

.FormHelpImage {
    background-image: url(/images/helpI-icn-grey.png);
    width: 14px;
    height: 13px;
    border-style: none;
}

/* helpers */
.spacing_top {
    display: block;
    margin-top: 5.2631%;
}

.spacing_bottom {
    display: block;
    margin-bottom: 5.2631%;
}

.spacing_left {
    display: block;
    margin-left: 5.2631%;
}

.spacing_right {
    display: block;
    margin-right: 5.2631%;
}

.zeroMargin_mobile {
    margin-left: 0;
}

.hide_mobile {
    display: none;
}

/* Tablet Layout: 569px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 569px) {

    .gridContainer {
        width: 90.675%;
        padding-left: 1.1625%;
        padding-right: 1.1625%;
        clear: none;
        float: none;
        margin-left: auto;
    }

    .logo_section {
        width: 35.8974%;
        text-align: left;
    }

    .header_section {
        width: 61.5384%;
        clear: none;
        margin-left: 2.5641%;
        text-align: right;
    }

    .header_signin {
        display: block;
    }

    /* site search */
    .search_section {
        display: block;
        width: 100%;
    }

    .search_wrapper {
        float: right;
        display: block;
        border-radius: 15px;
        border: 1px solid #c4c4c4;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 3px 5px;
        background-image: url(assets/search_glass.png);
        background-repeat: no-repeat;
        background-position: left center;
        height: 25px;
        width: 200px;
    }

        .search_wrapper .NormalTextBox {
            float: left;
            display: block;
            font-size: 0.9em;
            line-height: 1em;
            color: #a3a3a3;
            outline: none;
            border: none;
            background-color: transparent;
            border-radius: 15px;
            padding: 0;
            margin: 2px 0;
            width: 145px;
        }

            .search_wrapper .NormalTextBox:focus {
                border: none;
                background-color: transparent;
            }

        .search_wrapper a.dnnSearchBoxClearText {
            margin-top: 1px !important;
        }

    a.site_search {
        float: right;
        display: inline-block;
        background-image: url(assets/search_go.png);
        background-repeat: no-repeat;
        background-position: right center;
        width: 16px;
        height: 16px;
    }

    .breadcrumbs_section {
        width: 100%;
        clear: both;
        margin-left: 0;
    }

    .span_full {
        width: 100%;
        clear: both;
        margin-left: 0;
    }

    .span_twothirds {
        width: 61.5384%;
    }

    .span_onethird {
        width: 35.8974%;
        clear: none;
        margin-left: 2.5641%;
    }

    .span_onethird_left {
        width: 35.8974%;
    }

    .span_twothirds_right {
        width: 61.5384%;
        clear: none;
        margin-left: 2.5641%;
    }

    .span_tablet_third {
        width: 100%;
        clear: both;
        margin-left: 0;
    }

    .span_quarter {
        width: 48.7179%;
        clear: none;
        margin-left: 2.5641%;
    }

    .span_quarter_left {
        width: 100%;
    }

    .span_threequarters_right {
        width: 100%;
        clear: both;
        margin-left: 0;
    }

    /* NOAH form styles */
    .FormLabelCol {
        float: left;
        width: 30%;
    }

    .FormHelpCol {
        display: inline-block;
    }

    .FormControlCol {
        float: left;
        width: 60%;
    }

    /* helpers */
    .spacing_top {
        display: block;
        margin-top: 2.5641%;
    }

    .spacing_bottom {
        display: block;
        margin-bottom: 2.5641%;
    }

    .spacing_left {
        display: block;
        margin-left: 2.5641%;
    }

    .spacing_right {
        display: block;
        margin-right: 2.5641%;
    }

    .hide_tablet {
        display: none;
    }

    .zeroMargin_tablet {
        margin-left: 0;
    }
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

    .gridContainer {
        width: 88.5%;
        max-width: 1232px;
        padding-left: 0.75%;
        padding-right: 0.75%;
        margin: auto;
        clear: none;
        float: none;
        margin-left: auto;
    }

    .logo_section {
        width: 23.7288%;
    }

    .header_section {
        width: 74.5762%;
        margin-left: 1.6949%;
        clear: none;
    }

    /* site search */
    .search_section {
        display: block;
        float: right;
        width: auto;
    }

    .breadcrumbs_section {
        width: 100%;
        clear: both;
        margin-left: 0;
    }

    .span_full {
        width: 100%;
        clear: both;
        margin-left: 0;
    }

    .span_twothirds {
        width: 66.1016%;
    }

    .span_onethird {
        width: 32.2033%;
        margin-left: 1.6949%;
        clear: none;
    }

    .span_onethird_left {
        width: 32.2033%;
    }

    .span_twothirds_right {
        width: 66.1016%;
        margin-left: 1.6949%;
        clear: none;
    }

    .span_quarter {
        width: 23.7288%;
        margin-left: 1.6949%;
        clear: none;
    }

    .span_quarter_left {
        width: 23.7288%;
    }

    .span_threequarters_right {
        width: 74.5762%;
        margin-left: 1.6949%;
        clear: none;
    }

    /* helpers */
    .spacing_top {
        display: block;
        margin-top: 1.6949%;
    }

    .spacing_bottom {
        display: block;
        margin-bottom: 1.6949%;
    }

    .spacing_left {
        display: block;
        margin-left: 1.6949%;
    }

    .spacing_right {
        display: block;
        margin-right: 1.6949%;
    }

    .zeroMargin_desktop {
        margin-left: 0;
    }

    .hide_desktop {
        display: none;
    }
}

/* additional website styles */
.orage_text, a.orage_text {
    color: #ff8c00;
}

a.blue_box_link {
    display: block;
    font-size: 1.1em;
    background-color: #00578b;
    color: #fff;
    padding: 8px 15px;
}

    a.blue_box_link:hover {
        background-color: #004375;
        text-decoration: none;
    }
