/**
 * Base CSS
 * This Stylesheet includes all basic styles for the site
 * Other styles for specific elements or external modules (such as JS plugins) may be broken out into separate files
 */


/* Document */
html {
    background-color: #393939;
}
body {
    font: 80%/1.8em "Trebuchet MS", Verdana, sans-serif;
    color: #444;
    line-height: 1.7em;
}
body.help {
    background-color: #fff;
    width: auto;
    padding: 20px;
}
#skip-links a {
    left: -9999px;
    position: absolute;
}
#skip-links a:hover, #skip-links a:focus {
    background-color: #ffffcc;
    border: 1px dotted #000;
    color: #222;
    left: 0px;
    padding: 3px 5px;
    position: absolute;
    top: 0px;
    z-index: 10;
}


/* Header */
#header-container {
    background: #eee;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
    background: -moz-linear-gradient(top, #fff, #eee);
    height: 70px;
    width: 100%;
    text-align: center;
}
#header-content {
    margin: 0px auto;
    text-align: left;
    position: relative;
    width: 820px;
    padding-left: 140px;
}
#header-content #banner {
    width: 140px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
}
#header-content #branding {
    font-family: "Times New Roman", serif;
    padding-left: 20px;
}
#header-content #branding #global {
    font-size: 1.2em;
    height: 20px;
    padding-top: 10px;
    line-height: 20px;
    color: #999;
    text-transform: uppercase;
}
#header-content #branding #local {
    font-size: 2em;
    text-transform: uppercase;
    color: #666;
    height: 30px;
    padding-bottom: 10px;
    line-height: 30px;
    vertical-align: middle;
}
#header-content #logout {
    position: absolute;
    top: 20px;
    right: 0px;
}



/* Navigation */
#nav-container {
    text-align: center;
    background: #444;
    /* height: 40px; */
}
#nav-content {
    text-align: left;
    margin: 0 auto;
    width: 960px;
    background: #5f5f5f;
}
#nav {
    position: relative;
    margin: 0;
    font-size: 0px;
}
#nav li.nav-item {
    font-size: 13px;
    line-height: 1.7em;
    display: inline-block;
    list-style-type: none;
    vertical-align: middle;
}
#nav li a.nav-item-link {
    font-size: .85em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    height: 40px;
    line-height: 40px;
    vertical-align: middle;
    padding: 0 11px;
}
#nav li a.nav-item-link.hover, #nav-container #nav li.nav-active a.nav-item-link.hover {
    background: #fff;
    color: #444;
}
#nav li.nav-active a.nav-item-link {
    background-color: #777;
    color: #fff;
}

#nav .nav-dropdown {
    width: 940px;
    display: none;
    position: absolute;
    left: 0px;
    top: 0px; /* this will be redefined by the JS based on the height of the #nav */
    background: #fff;
    padding: 10px;
    z-index: 5;
}
#nav .nav-dropdown-col {
    width: 280px;
    padding: 15px;
    float: left;
}
#nav .nav-dropdown-col h3.nav-dropdown-col-header {
    margin: 0px 0px 1em;
    padding-bottom: 3px;
    border-bottom: 5px solid #007993;
    text-transform: uppercase;
    color: #004352;
}



/* Site specific nav colors */
body.selfdetermined #nav-container { background-color: #6f3e83; }
body.selfdetermined #nav-content { background-color: #9868ac; }
body.selfdetermined #nav li.nav-active a.nav-item-link { background-color: #b382c8; color: #fff; }

body.curriculum #nav-container { background-color: #00588d; }
body.curriculum #nav-content { background-color: #0071b5; }
body.curriculum #nav li.nav-active a.nav-item-link { background-color: #258cca; color: #fff; } 

body.communication #nav-container { background-color: #2d7098; }
body.communication #nav-content { background-color: #4484aa; }
body.communication #nav li.nav-active a.nav-item-link { background-color: #5c92b3; color: #fff; }


/* Page */
#page-container {
    text-align: center;
    background-color: #fff;
    position: relative;
    line-height: 1.7em;
}
#page-content {
    width: 960px;
    margin: 0px auto;
    text-align: left;
    padding: 20px 0px 150px;
}
#page-content-mask {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: #222;
    zoom: 1;
    filter: alpha(opacity=70);
    opacity: 0.7;
    z-index: 2;
}
#main {
    width: 960px;
}
#page-content.with-leftnav #main {
    width: 705px;
    padding-left: 50px;
    float: left;
    border-left: 5px solid #aaa;
}
#page-content.with-sidebar #main {
    width: 600px;
    padding-right: 30px;
    float: left;
}
#page-content.with-sidebar.with-leftnav #main {
    width: 390px;
    padding: 0 15px;
    float: left;
}
#breadcrumbs {
    padding: 0px 10px 40px 10px;
}
.breadcrumb-separator {
    padding: 0px 3px;
}


/* Left nav */ 
#leftnav {
    width: 200px;
    float: left;
}
#leftnav nav ul {
    margin: 0;
    padding: 0;
}
#leftnav nav ul li {
    list-style: none;
    margin-bottom: 6px;
}
#leftnav nav ul li a {
    padding: 5px 7px;
    border-radius: 5px 0px 0px 6px;
    text-decoration: none;
    color: #444;
    display: block;
    text-align: right;
    background-color: #efefef;
}
#leftnav nav ul li a:hover, #leftnav nav ul li a:focus {
    background-color: #ddd;
}
#leftnav nav ul li a.leftnav-active {
    background-color: #aaa;
    color: #fff;
}


/* Sidebar */
#sidebar {
    width: 300px;
    padding-left: 30px;
    float: left;
}
.sidebar-item {
    background-color: #FFEEC9;
    border: 2px solid #C9B17E;
    color: #634300;
    margin-bottom: 20px;
}
.sidebar-item h3.sidebar-header {
    margin: 0;
    padding: .5em;
    font-weight: normal;
    font-size: 1.4em;
    text-transform: uppercase;
    font-family: "Georgia", serif;
    font-style: normal;
    background-color: #EFDBB1;
    color: #9E814D;
    text-align: center;
    border-bottom: 1px dashed #CCBB99;
}
.sidebar-item .sidebar-content {
    padding: 15px;
}





/* Footer */
#footer-container {
    width: 100%;
    background-repeat: repeat-x;
    background-position: top left;
    text-align: center;
    line-height: 1.7em;
}
#footer-image {
    width: 960px;
    margin: 0px auto;
    padding: 0px;
    text-align: right;
    line-height: 0px;
    position: absolute;
    top: -60px;
    right: 0px;
    z-index: 1;
}
#footer-content {
    width: 960px;
    margin: 0px auto;
    text-align: left;
    padding: 40px 0px 20px 0px;
    color: #888;
    position: relative;
}
#footer-content .footer-column {
    padding: 0;
    line-height: 1.4em;
}
#footer-content #footer-column-nav {
    float: left;
    width: 360px;
}
#footer-content #footer-column-contact {
    float: left;
    width: 520px;
    padding-left: 40px;
}
#footer-content .footer-column .footer-column-header {
    font-size: 1.2em;
    margin: 1.2em 0px .2em;
}
#footer-content .footer-column .footer-nav {
    margin: 0;
    padding: 0;
}
#footer-content #footer-column-nav ul.footer-nav li {
    list-style: none;
    padding: 0px 0px;
}
#footer-content a {
    text-decoration: none;
    color: #ccc;
}
#footer-content a:hover, #footer a:focus {
    color: #eee;
}
#footer-content hr {
    border-color: #444;
}



/**
 * View specific styles
 */
#view-content-container {
    padding: 20px;
}




/* Basic styles */
p {
    margin: 1em 0;
}
h1 {
    margin: 0px 0px 1em;
    font-size: 2.2em;
    color: #007993;
    font-family: "Georgia", serif;
    font-weight: normal;
    padding: 10px 0px;
    border-bottom: 4px solid #709FA8;
    background-repeat: no-repeat;
    background-position: top left;
}
h2 {
    font-family: "Georgia", serif;
    font-size: 1.7em;
    color: #044F5E;
    font-weight: normal;
    margin: 1.5em 0px 1em;
}
h3 {
    font-family: "Trebuchet MS", sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    font-style: italic;
    margin: 1.5em 0px .5em;    
}
h4 {
    font-family: "Trebuchet MS", sans-serif;
    font-size: 1em;
    font-style: italic;
    font-weight: bold;
    margin: 1em 15px .2em;
}
.sub-header {
    font-size: .8em;
    color: #999;
    font-style: italic;
    margin-top: .5em;
}
blockquote {
    margin: 2em 0px;
    padding: 20px 30px 20px 80px;
    font-style: italic;
    font-size: 1.2em;
    line-height: 1.5em;
    overflow: hidden;
    font-family: "Georgia", serif;
    background-image: url(../images/blockquote_bg.png);
    background-repeat: no-repeat;
    background-position: 10px 10px;
    background-color: #efefef;
    color: #333;
}
blockquote .byline {
    color: #555;
    font-size: .8em;
    font-style: normal;
    text-align: right;
    padding-right: 40px;
    margin: 1em 0px;
}
hr {
    clear: both;
    height: 0;
    border: none;
    border-top: 3px solid #999;
    margin: 20px 0px;
}
ul, ol {
    margin: .5em 0px .5em 35px;
    line-height: 1.7em;
}
ul li {
    list-style-type: disc;
}
ol li {
    list-style-type: decimal;
}
strong, b {
    font-weight: bold;
}
em, i {
    font-style: italic;
}
a {
    color: #095E9B;
}
pre {
    background-color: #efefef;
    padding: 15px;
    border: 1px dashed #bbb;
    font-family: monospace;
    font-size: 1.2em;
}
code {
    background-color: #ffff77;
    padding: 1px 4px;
    font-size: 1.2em;
    font-weight: bold;
    font-family: monospace;
}


/* Tables */
table {
    width: 100%;
    background-color: #fff;
}
table thead th {
    background-color: #eee;
    color: #444;
    border-bottom: 5px solid #ddd;
}
table tbody td, table tbody th {
    border-bottom: 1px solid #ddd;
}
table tbody th {
    font-weight: bold;
}
table th, table td {
    padding: 5px 10px;
}
/* Plain table */
table.plain {
    background-color: #eee;
}
table.plain tbody td, table.plain tbody th {
    border: none;
}
table.plain tbody th {
    text-align: right;
}

/* Images with captions */
.captioned {
    display: inline-block;
    zoom: 1;
    max-width: 250px;
    overflow: hidden;
    background-color: #efefef;
    border: 1px solid #999;
    padding: 5px;
    margin: 10px;
}
.captioned img {
    border: 1px solid #999;
}
.captioned .caption {
    border: 1px solid #999;
    padding: 5px 10px;
    line-height: 1.3em;
    font-style: italic;
    margin: 5px 0px 0px;
    background-color: #fff;
    font-size: .9em;
    color: #666;
}



/* Inserts */
.right, .left { display: inline-block; zoom: 1; }
.right {
    float: right;
    margin: 0 0 1.5em 25px;
}
.left {
    float: left;
    margin: 0 25px 1.5em 0;
}
.left .caption, .right .caption {
    
}



/**
 * Messages
 */
.message {
    padding: 5px 10px;
    background-color: #FFEEC9;
    color: #634300;
    margin: 1.5em 0px;
}
.message.error {
    background-color: #FFE8E8;
    color: #990000;
}
.message.success {
    background-color: #D6FFD3;
    color: #097700;
}


/**
 * Return to top link
 */
.anchor-top {
    clear: both;
    text-align: right;
    margin: 2em 0 3em;
    vertical-align: middle;
}
.anchor-top a {
    padding-right: 25px;
    background-image: url(../images/top.png);
    background-repeat: no-repeat;
    background-position: right 0px;
    text-decoration: none;
    color: #666;
    font-size: .85em;
    text-transform: uppercase;
}
 

/**
 * Colorbox styles
 */
a.colorbox .colorbox-html {
    display: none;
}



/* Utility styles */
a.popup .popup-icon {
    background-image: url(../images/popup_bg.png);
    background-repeat: no-repeat;
    background-position: center right;
    margin-left: 2px;
    width: 12px;
    height: 12px;
}
a.popup .popup-note {
    position: absolute;
    left: -9999px;
}


/* Layout styles */
.inline-block { display: -moz-inline-stack; display: inline-block; zoom: 1; *display: inline; }
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.hide { position: absolute; left: -9999px; }


/* Javascript styles */
.js .hidden { display: none; }
.js .offscreen { position: absolute; left: -9999px; }

