/* 
    Document   : style
    Created on : Sep 10, 2011, 11:46:28 PM
    Author     : Opal
    Description:
        Purpose of the stylesheet follows.
*/

* {
    margin: 0;
    padding: 0;
}
html {
	min-height: 100%;
}

body {
    background: repeat-x url("../images/background.jpg") #2265ac;
	background-position: 100% 100%;
    font-size: 12px;
    font-family: Helvetica,Arial,Verdana,sans-serif;
	min-height: 100%;
}

div#wrapper {
    width: 935px;
    margin: 0 auto;
}

/* Header */
div#header {
    width: 850px;
    height: 94px;
    margin: 30px auto;
}

div#logo {
    float: left;
}

div#menu {
    margin: 32px 0;
    float: right;
}

div#menu_border_left {
    background: url("../images/bg_menu_border_left.png") no-repeat;
    display: block;
    width: 5px;
    height: 30px;
    float: left;
}

div#menu_content {
    background: url("../images/bg_menu.gif") repeat-x;
    height: 30px;
    display: block;
    float: left;
}

div#menu_border_right {
    background: url("../images/bg_menu_border_right.png") no-repeat;
    display: block;
    width: 5px;
    height: 30px;
    float: left;
}

/* Menu */
ul#menu li {
    padding: 9px;
    color: #fff;
    font-weight: bold;
    float: left;
    list-style: none;
    position: relative;
}

ul#menu li a, ul#menu li a:visited {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

ul#menu li a:hover, ul#menu li:hover {
    color: #fdba31;
}

ul#menu li.active, ul#menu li a.active {
    color: #fdba31;
}

ul#menu li ul {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: #1163a9;
}

ul#menu li ul li{
    display: block;
    padding: 9px;
    color: #fff;
    font-weight: bold;
    list-style: none;
}

ul#menu li:hover ul {
    display: block;
}


/* Greybox */
div#greybox {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

div#greybox_border_left {
    background: url("../images/bg_greybox_border_left.png") no-repeat;
    width: 15px;
    height: 150px;
    display: block;
    float: left;
}

div#greybox_content {
    background: #eff3f3;
    width: 845px;
    height: 150px;
    display: block;
    float: left;
    padding: 0 30px;
}

div#greybox_border_right {
    background: url("../images/bg_greybox_border_right.png") no-repeat;
    width: 15px;
    height: 150px;
    display: block;
    float: left;
}

/* Content */
div#content {
    width: 905px;
    min-height: 250px;
    overflow: auto;
    display: block;
    background: #fff;
	padding: 15px;
}

/* Footer */
div#footer {
    width: 100%;
    height: 50px;
    overflow: hidden;
    margin: 0 0 30px 0;
}

div#footer_border_left {
    background: url("../images/bg_footer_border_left.png") no-repeat;
    width: 15px;
    height: 50px;
    display: block;
    float: left;
}

div#footer_content {
    background: #2b88c6;
    width: 905px;
    height: 50px;
    display: block;
    float: left;
}

div#footer_border_right {
    background: url("../images/bg_footer_border_right.png") no-repeat;
    width: 15px;
    height: 50px;
    display: block;
    float: left;
}

div.footer {
    text-align: center;
    margin: 10px 0 0 0;
}

div.footer_icons {
    margin: 10px;
    width: 50px;
    float: right;
}

.clear {
    clear: both;
}

.center {
    text-align: center;
}

.small {
	font-size: 8px;
}


/* Styles */
p {
    margin: 10px 0;
}

a, a:visited, a:hover {
    border: none;
	color: #2B88C6;
}

img {
    border: none;
}

ul {
	list-style-position: inside;
}

ol {
	list-style-position: inside;
}

h1 {
    margin: 25px 0 10px 0;
    color: #2b88c6;
    font-size: 20px;
    font-weight: bold;
}

h2 {
    margin: 10px 0;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

h3 {
    margin: 20px 0 10px 0;
    color: #2b88c6;
    font-size: 16px;
    font-weight: bold;
}
ul.form {
    list-style: none;
    list-style-position: inside;
}

ul.footer {
    list-style: none;
    list-style-position: inside;
}

ul.footer li {
    padding: 0 10px;
    color: #fff;
    margin: 0;
    text-align: center;
    display: inline;
}

p.footer {
    color: #fff;
    margin: 5px;
}

ul#homepage_programs li {
    color: #195194;
    font-style: italic;
    background: url("../images/bg_homepage_programs_list.png") no-repeat;
    width: 167px;
    height: 17px;
    padding: 3px 0 3px 12px;
    margin: 0 0 2px 0;
    list-style-position: inside;
}

.homepage_buttons {
    text-align: center;
}

.blue {
    color: #2b88c6;
}


/* -------------------------------------------------------------------------- */
/* Gallery */

.main_image {
    width: 700px;
    height: 500px;
    float: right;
    position: relative;
    overflow: hidden; /*--Overflow hidden allows the description to toggle/tuck away as it slides down--*/
}

.main_image h2 {
    color: #2b88c6;
    font-size: 16px;
    font-weight: bold;
}

.main_image .desc{
    position: absolute;
    bottom: 0;
    left: 0; /*--Stick the desc class to the bottom of our main image container--*/
    width: 100%;
    display: none; /*--Hide description by default, if js is enabled, we will show this--*/
}
.main_image .block{
    width: 100%;
    background: #111;
    border-top: 1px solid #000;
}
.main_image a.collapse { /*--This is our hide/show tab--*/
    background: url(../images/btn_collapse.gif) no-repeat left top;
    height: 27px;
    width: 93px;
    text-indent: -99999px;
    position: absolute;
    top: -27px;
    right: 20px;
}
.main_image a.show {background-position: left bottom;}

.image_thumb {
    float: left;
    width: 100px;
    background: #f0f0f0;
    border-right: 1px solid #fff;
    border-top: 1px solid #ccc;
}
.image_thumb img {
    border: 1px solid #ccc;
    background: #fff;
    float: left;
}
.image_thumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.image_thumb ul li{
    margin: 0;
    padding: 12px 10px;
    background: #f0f0f0 url(nav_a.gif) repeat-x;
    float: left;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #fff;
    border-right: 1px solid #ccc;
}
.image_thumb ul li.hover { /*--Hover State--*/
    background: #ddd;
    cursor: pointer;
}
.image_thumb ul li.active { /*--Active State--*/
    background: #fff;
    cursor: default;
}
html .image_thumb ul li h2 {
    font-size: 1.5em;
    margin: 5px 0;
    padding: 0;
}

.image_thumb ul li .block {display: none;}/*--Hide the description on the list items--*/
