@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800,300italic,400italic,600italic,700italic,800italic);

/* = Variables = */ 

$light_green: #1baf7b;
$pale_green: #acdcd0;
$light_blue: #4aadd4;
$yellow: #ffcb08;
$dark_blue: #135980;
$orange: #f58220;
$link: #f58220;
$copy: #444444;

$gutter: 30px;

$font_stack = 'Open Sans', Arial, sans-serif;

@mixin transition($speed) {
    -webkit-transition: all $speed ease-in-out;
    -moz-transition: all $speed ease-in-out;
    -o-transition: all $speed ease-in-out;
    transition: all $speed ease-in-out;
} 

@mixin transform($value) {
    -webkit-transform: $value;
    -moz-transform:    $value;
    -ms-transform:     $value;
    -o-transform:      $value;
    transform:         $value;
}

@mixin grouping(){
    &:before, &:after {
        content: '';
        display: table;
    }

    &:after {
        clear: both;
    }
}

.no_bullets {
    padding: 0;
     li:before {
        display: none;
     }
} 

/* = Base = */

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a, abbr, address, article, aside, audio, b, blockquote, body, canvas, cite,
code, dd, div, dl, dt, em, fieldset, footer, form, h1, h2, h3, h4, h5, h6,
header, html, hr, i, iframe, img, label, li, nav, object, ol, p, pre, section,
span, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, ul, video {
    border: 0;
    font-size: 1em;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

article, aside, audio, canvas, footer, header, nav, section, video {
    display: block;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 320px;
    font-family: "Open Sans", Arial, sans-serif;;
    font-size: 18px;
    line-height: 1.6667;
    color: #444;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

::-moz-selection {
    background: #fff1b5;
    text-shadow: none;
}

::selection {
    background: #fff1b5;
    text-shadow: none;
}

/* = Grouping = */
.group:before, .group:after {
    content: '';
    display: table;
}

.group:after {
    clear: both;
}

.clearfix {
    overflow: hidden;
}

.contain {
    margin: 0 auto;
    max-width: 1110px;
    padding: 0 30px;
    position: relative;
}

.lt-ie9 .contain {
    width: 1110px;
}

.columns {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.columns > * {
    display: table-cell;
    vertical-align: top;
}

.columns > hr {
    display: table-cell;
    width: 30px;
    margin: 0;
    padding: 0;
    border: none;
}


/* = Typography = */

a {
    color: #f58220;
    text-decoration: none;
}

a:hover, a:active {
    color: #ff851a;
}

a:focus {
    outline: thin dotted;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0 0 1em 0;
    padding: 0;
    line-height: 1.25;
}

h1 {
    font-size: 3em;
    line-height: 1.1;
}

h2,
h3 {
    font-size: 1.6em;
    font-weight:  700;
}

h3 {
    font-size: 1em;
}

h4 {
    font-size: 1em;
    font-weight: 600;
}

b,
strong {
    font-weight: bold;
}

i,
em {
    font-style: italic;
}

blockquote,
pre {
    margin-bottom: 1.667em;
}

pre:before,
pre:after {
    content: '';
    display: table;
}

pre:after {
    clear: both;
}

pre,
code {
    font-family: Menlo, 'Ubuntu Mono', Consolas, 'Courier New', monospace;
}

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

p,
address {
    margin: 7px 0 1.667em 0;

}

hr {
    border: 0;
    border-top: 1px solid #888888;
    display: block;
    height: 0;
    margin: 2em auto 3em;
    width: 100%;
}

ol,
ul,
dl {
    margin-bottom: 1.667em;
}

ul,
ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul {

    margin: 0 0 1.667em 0;
}

ul li {
    position:  relative;
    margin-bottom: .75em;
    line-height: 1.25;
}

ul li:before {
    content: '●';
    position: absolute;
    left: -1em;
    top: -.05em;
    display:  block; 
}

ul li ul {
    margin-top: 1em;
}

ul li ul li:before {
    font-size: .85em;
    top: .09em;
}


ol,
ul {
    padding-left: 2em;
}

ul.no_bullets,
ul.navigation,
ul.navigation ul {
    margin-left: 0;
    padding-left: 0;
}

ul.no_bullets li:before,
ul.navigation li:before {
    display: none;
}


dt {
    font-weight: bold;
    padding-left: .5em;
}

dd {
    padding-left: 2em;
}

sup,
sub {
    font-size: 80%;
}

sup {
    vertical-align: top;
}

sub {
    vertical-align: bottom;
}

blockquote {
    margin: 0 0 1.667em 0;
}

img.justified_left,
img.justified_right {
    display: block;
    width: 30%;
    float: left;
    margin: 0 30px 1.667em 0;
}

img.justified_right {
    float: right;
    margin: 0 0 1.667em 30px;
}

img.justified_center {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 auto 1.667em;
}

/* = Forms = */

form {
    margin: 0;
    padding: 0;
    border: none;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

.button,
.checkboxes,
.file,
.password,
.radios,
.reset,
.select,
.submit,
.text,
.textarea {
    margin-bottom: 1.5em;
}

label {
    cursor: pointer;
    display: block;
    font-weight: 700;
    font-size: .8em;
}

fieldset .help {
    display: block;
    font-size: .75em;
    margin: 0;
    padding: 0;
}

textarea {
    height: 12em;
    overflow: auto;
    resize: vertical;
    width: 100%;
    font-size: 1em;
    padding: .2em .5em;
    border: solid 1px #444;
}

::-webkit-input-placeholder {
   color: #1baf7b;
}

:-moz-placeholder { /* Firefox 18- */
   color: #1baf7b;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #1baf7b;  
}

:-ms-input-placeholder {  
   color: #1baf7b;  
}

.radio,
.checkbox {
    font-weight: normal;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}

input[type="file"] {
    display: block;
    font-size: 1em;
    width: 100%;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: .3em .2em;
    font-family: "Open Sans", Arial, sans-serif;
    border: solid 1px #444;
    box-shadow: inset 0px 1px 2px #eee;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -moz-appearance: button;
    -webkit-appearance: button;
    cursor: pointer;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
a.button {
    display: inline-block;
    border: none;
    padding: .3em .3em .3em .7em;
    background-color: #ffcb08;
    color: #f58220;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    font-size: .9em;
    font-family: "Open Sans", Arial, sans-serif;
    vertical-align: middle;
}




/* = Pagination = */

.pagination ul {
    text-align: center;
    margin: 2em 0;
}

.pagination ul li {
    display: inline-block;
    margin: 0 .5em 1em;
}

.pagination ul li a {
    display: block;
    padding: .5em 1em;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1em;
    color: #fff;
}

.pagination ul li.current a {

}

.pagination ul li.skipped a {

}

.pagination ul li.prev a,
.pagination ul li.next a {
    font-weight: 400;
    text-transform: lowercase;
}

/* = Messaging = */

.maintenance-alert {
    background-color: #ffcb08;
}

.success, .error, .info {
    border-radius: 4px;
    margin-bottom: 1.5em;
    padding: 1em 3.25em;
    position: relative;
}

.success {
    background: #d2f8b0;
}


.error {
    background: #ffd8d9;
}

.info {
    background: #b8e0f9;
}



/* = Tables = */

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 1.5em;
    width: 100%;
}

table caption {
    font-size: .75em;
    margin-bottom: .75em;
}

table td,
table th {
    padding: .5em 1em;
    text-align: left;
    vertical-align: top;
}

table th {
    font-weight: bold;
    background: #555;
    border: 1px solid #555;
    color: #fff;
    text-transform: uppercase;
}

table td {
    border: 1px solid #e3e3e3;
}

table tr:nth-child(even) td {
    background: #f3f3f3;
}

/* Test Grid */

.test_grid {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    background: url(/sup/img/site/test_grid.png) repeat top center transparent;
    z-index: 1001;
    display: none;
}

.showing {
    display: block;
}


/* == Overlay Navigation == */

#menu_toggle {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 270px;
    height: 90px;
    overflow: hidden;
    outline: none;
}

#menu_toggle a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 270px;
    height: 90px;
    background-image: url(/sup/img/site/show_menu.png);
    background-repeat: no-repeat;
    background-position: center center;
    text-indent: -9999px;
    overflow: hidden;
    outline: none;
    z-index: 2000;
}

#menu_toggle.showing a {
    background-image: url(/sup/img/site/close_menu.png);
}

#menu_toggle.showing span {
    left: -400px;
}

#menu_toggle span {
    display: block;
    width: 270px;
    height: 90px;
    top: 0;
    left: 0;
    position: absolute;
    background: #f58220;
    z-index: 1999;
    display: none;
    -webkit-transition: left 1s ease-in-out;
    -moz-transition: left 1s ease-in-out;
    -o-transition: left 1s ease-in-out;
    transition: left 1s ease-in-out;
}

.overlay_controls {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: auto;
    background-image: url(/sup/img/site/step_orange.png), url(/sup/img/site/gradient_overlay.png);
    background-repeat: repeat-x, repeat-x;
    background-position: bottom center, top center;
    background-size: auto, cover; 
    z-index: 1000;
    display: none;
}

.overlay_controls .contain {
    padding-top: 93px;
}

ul.navigation {
    margin-bottom: 30px;
    line-height: 0;
}

ul.navigation li {
    padding: 0;
    margin: 0;
    line-height: 0;
    min-height: 30px;
    display: block;
}

ul.navigation li a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: block;
    min-height: 30px;
    line-height: 30px;
    position: relative;
    top: 5px;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, .3);
}

ul.navigation li.primary a {
    font-size: 30px;
    font-weight: 300;
    opacity: .9;
    top: 0;
}

/* Header Search */

#overlay_search_form {
    margin-top: 27px;
    position: relative;
    margin-bottom: 60px;
}

#overlay_search_form input[type="text"] {
    height: 90px;
    background-color: rgba(101, 39, 5, .4);
    box-shadow: inset 0px 4px 2px rgba(0, 0, 0, .1);
    color: #fff;
    font-size: 48px;
    font-family: "Open Sans";
    font-weight: 200;
    padding: 0px 120px 0 30px;
    line-height: 90px;
    border: none;
    border-radius: 0;
    outline: none;
}

#overlay_search_form input[type="submit"] {
    height: 90px;
    width: 90px;
    position: absolute;
    top: 0;
    right: 0;
    text-indent: -9999px;
    overflow: hidden;
    background: url(/sup/img/site/search_icon.png) no-repeat center center;
}

#overlay_search_form input[type="text"]::-webkit-input-placeholder {
   color: #3c1e08;
}

#overlay_search_form input[type="text"]:-moz-placeholder { /* Firefox 18- */
   color: #3c1e08;  
}

#overlay_search_form input[type="text"]::-moz-placeholder {  /* Firefox 19+ */
   color: #3c1e08;  
}

#overlay_search_form input[type="text"]:-ms-input-placeholder {  
   color: #3c1e08;  
}

/* == Header == */

#header {
    background-color: #1baf7b;
}

#header .contain {
    border-bottom: double 4px #179569;
    padding: 0;
    width: 1050px;
}

#header .home_member_login {
    float: left;
    width: 45%;
}

#logo a {
    width: 542px;
    height: 120px;
    background: url(/sup/img/site/nhscpa_logo.png) no-repeat top right;
    position: relative;
    right: -30px;
    text-indent: -9999px;
    overflow: hidden;
    display: block;
    float: right;
    margin-top: 60px;
}

/* == Media Queries == */

@media screen and (max-width: 1110px) {

}

@media screen and (max-width: 1025px) {

}

@media screen and (max-width: 730px) {

}

@media screen and (max-width: 645px) { 

}

@media screen and (max-width: 485px) { 

}

@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: #000 !important;
        /* Black prints faster: h5bp.com/s */
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    pre, blockquote, tr, img, h1, h2, h3, h4, h5, h6 {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
}

/* Surgent Webinars iframe */
.surgent_webinars iframe {
	display: block;
	height:1200px;
	margin: 1em auto 3em auto;
	width:600px;
}
/* CPE sessions form */
table.sessions {
	margin-bottom: 0;
	padding: 0;
}
table.sessions th {
	background-color: #C5D3E0;
}
#choose_session_form fieldset {
	border-bottom:1px dotted #7D9069;
}
fieldset legend.preformatted {
	font-size:1.2em;
	text-transform:none;
}
fieldset div.sessions {
	padding-left: 1em;
}
fieldset div.sessions label {
	padding-left: 2em;
}
fieldset div.sessions label {
	font-size:1em;
	text-transform: none;
}
fieldset div.sessions h6 {
	color:#4E6F8C;
}
p.instructions {
	border-bottom:1px dotted #4E6F8C;
	color:#4E6F8C;
	font-size:1.2em;
}
p.instructions em {
	font-weight: bold;
}
p.submit {
	margin-top:1em;
}