@charset "UTF-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	float: left;
	width: 960px;
 	height: 45px;
 	background: #fff url('images/navigation.jpg') repeat-x 0 0; 
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff;
	text-align:right;
}
.text_10px {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	text-decoration: none;
	color: #C3C3C30;
}
.text_10px a, .text_10px a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
	color: #7e7e7e;
}
.text_10px a:hover{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;
	color: #7e7e7e;

}
.text_12px {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	text-decoration: none;
	color: #C3C3C30;
}
.text_12px a, .text_12px a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	color: #7e7e7e;
}
.text_12px a:hover{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	color: #7e7e7e;

}
.text_10px_white {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #fff;
}
.text_10px_white a, .text_10px_white a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #fff;
}
.text_10px_white a:hover{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #B30838;

}
.text_12px_white {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #fff;
}
.text_12px_white a, .text_12px_white a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
}
.text_12px_white a:hover{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #B30838;

}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* top nav 

.home, .home a {
	float:left;
	height:45px;
	width:366px;
	text-align:center;
	color:white;
	display:block;
	background: url("images/navigation.jpg") 0px 0px  no-repeat;
	vertical-align: middle;
}
.home_down, .home_down a {
	float:left;
	height:45px;
    width:366px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") 0px -45px  no-repeat;
	}
.home a:hover {
	float:left;
	height:45px;
    width:366px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") 0px -45px  no-repeat;
}.about, .about a {
	float:left;
	height:45px;
	width:78px;
	text-align:center;
	color:white;
	display:block;
	background: url("images/navigation.jpg") -366px 0px  no-repeat;
	vertical-align: middle;
}
.about_down, .about_down a {
	float:left;
	height:45px;
    width:78px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -366px -45px  no-repeat;
	}
.about a:hover {
	float:left;
	height:45px;
    width:78px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -366px -45px  no-repeat;
}
.news, .news a {
	float:left;
	height:45px;
	width:122px;
	text-align:center;
	color:white;
	display:block;
	background: url("images/navigation.jpg") -444px 0px  no-repeat;
	vertical-align: middle;
}
.news_down, .news_down a {
	float:left;
	height:45px;
	width:122px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -444px -45px  no-repeat;
	}
.news a:hover {
	float:left;
	height:45px;
	width:122px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -444px -45px  no-repeat;
}
.projects, .projects a {
	float:left;
	height:45px;
	width:94px;
	text-align:center;
	color:white;
	display:block;
	background: url("images/navigation.jpg") -566px 0px  no-repeat;
	vertical-align: middle;
}
.projects_down, .projects_down a {
	float:left;
	height:45px;
	width:94px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -566px -45px  no-repeat;
	}
.projects a:hover {
	float:left;
	height:45px;
	width:94px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -566px -45px  no-repeat;
}
.involved, .involved a {
	float:left;
	height:45px;
	width:110px;
	text-align:center;
	color:white;
	display:block;
	background: url("images/navigation.jpg") -660px 0px  no-repeat;
	vertical-align: middle;
}
.involved_down, .involved_down a {
	float:left;
	height:45px;
	width:110px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -660px -45px  no-repeat;
	}
.involved a:hover {
	float:left;
	height:45px;
	width:110px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -660px -45px  no-repeat;
}
.contact, .contact a {
	float:left;
	height:45px;
	width:102px;
	text-align:center;
	color:white;
	display:block;
	background: url("images/navigation.jpg") -770px 0px  no-repeat;
	vertical-align: middle;
}
.contact_down, .contact_down a {
	float:left;
	height:45px;
	width:102px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -770px -45px  no-repeat;
	}
.contact a:hover {
	float:left;
	height:45px;
	width:102px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -770px -45px  no-repeat;
}
.partners, .partners a {
	float:left;
	height:45px;
	width:88px;
	text-align:center;
	color:white;
	display:block;
	background: url("images/navigation.jpg") -878px 0px  no-repeat;
	vertical-align: middle;
}
.partners_down, .partners_down a {
	float:left;
	height:45px;
	width:88px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -878px -45px  no-repeat;
	}
.partners a:hover {
	float:left;
	height:45px;
	width:88px;
    text-align:center;
    color:white;
    display:block;
    background: url("images/navigation.jpg") -878px -45px  no-repeat;
}

*/


/*dropdown*/

* {padding:0; margin:0}
.dropdown {float:left; padding-right:0px; font-size:10px; text-align:left}
.dropdown dt {width:110px; border:0px solid #9ac1c9; padding:0px; font-weight:bold; font-size:10px; cursor:pointer}
.dropdown dt:hover {background:#000)}
.dropdown dd {position:absolute; overflow:hidden; width:120px; display:none; background:#fff; z-index:200; opacity:0}
.dropdown ul {width:120px; border:0px solid #9ac1c9; list-style:none; border-top:none}
.dropdown li {display:inline}
.dropdown a, .dropdown a:active, .dropdown a:visited {display:block; padding:5px; color:#333; text-decoration:none; background:#eaf0f2; width:120px}
.dropdown a:hover {background:#d9e1e4; color:#000}
.dropdown .underline {border-bottom:0px solid #b9d6dc}

.dropdown_projects {float:left; vertical-align:bottom; padding-right:0px; font-size:10px; text-align:left; a }
.dropdown_projects dt {width:94px; border:0px solid #9ac1c9; padding:0px; font-weight:bold; font-size:10px; cursor:pointer}
.dropdown_projects dt:hover {background:#000)}
.dropdown_projects dd {position:absolute; overflow:hidden; width:120px; display:none; background:#fff; z-index:200; opacity:0}
.dropdown_projects ul {width:120px; border:0px solid #9ac1c9; list-style:none; border-top:none}
.dropdown_projects li {display:inline}
.dropdown_projects a, .dropdown_projects a:active, .dropdown_projects a:visited {display:block; padding:5px; color:#333; text-decoration:none; background:#eaf0f2; width:120px}
.dropdown_projects a:hover {background:#d9e1e4; color:#000}
.dropdown_projects .underline {border-bottom:0px solid #b9d6dc}