@charset "UTF-8";



body {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #003366;
	margin: 0;
	padding: 0;
	color: #000;
}



#body_bg	{
}


#canvas	{
	width:100%;
	padding:0px;
	margin:0px;
	float:left;
	background: #f1f1f1 url(img/banner.png) top left repeat-x;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin:0px;
	padding: 3px 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight:lighter;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
	text-decoration:none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
#container {
	width: 1000px;
	background: transparent;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
#header {
	padding: 0px;
	width:1000px;
	height:146px;  
	float:left;
}

#header	#nav		{
	width:1000px; 
	float:right; 
	text-align:right; 
	border-right:1px solid #000;
}
/*
#header	#nav		a:link	{
	color:#fff;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif lighter;
	text-decoration:none;
	text-align:center;
	padding:4px 10px 4px 10px;
	width:150px;
	border-left:1px solid #000;
	float:right;
}
#header	#nav		a:visited	{
	color:#fff;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif lighter;
	text-decoration:none;
	border-left:1px solid #000;
	text-align:center;
	padding:4px 10px 4px 10px;
	width:150px;
	float:right;
}
#header	#nav		a:hover	{
	color:#ffff00;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif lighter;
	text-decoration:none;
	text-align:center;
	padding:4px 10px 5px 10px;
	width:150px;
	float:right;
	background-color:#333;
}
*/

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

#content {

	padding: 30px 10px;
	width:1000px;
	min-height:500px;
	float:left;
	background-color:transparent;
	border:0px solid #003366;
	border-top:0px;
	border-bottom:0px;
}

/* ~~ The footer ~~ */
#footer {
	padding: 5px 0px;
	position:absolute;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	text-align:center; 
	height:250px; 
	background-color:#003366;
	
	position: relative;
	margin-top: -150px; /* negative value of footer height */
	height: 150px;
	clear:both;} 

/*Opera Fix*/
body:before {
	content:"";
	height:100%;
	float:left;
	width:0;
	margin-top:-32767px;/
}

#ft_bod	{
	width:980px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	
}

#footer		h3	a:link	{
	text-decoration:none;
	color:#fff;
}
#footer		h3	a:visited	{
	text-decoration:none;
	color:#fff;
}
#footer		h3	a:hover	{
	text-decoration:none;
	color:#ff0000;
}


#footer		h4	{
	text-decoration:none;
	color:#ffff00;
}


#footer		#nav		{
	width:940px; float:left; background:#003366; height:23px; padding-top:5px; text-align:center; padding-right:40px;
}

#footer		#nav		a:link	{
	color:#fff;
	font:10px "Lucida Sans Unicode", "Lucida Grande", sans-serif lighter;
	text-decoration:none;
	margin:0px 10px;
	 background:#003366;
}
#footer		#nav		a:visited	{
	color:#fff;
	font:10px "Lucida Sans Unicode", "Lucida Grande", sans-serif lighter;
	text-decoration:none;
	margin:0px 10px;
	 background:#003366;
}
#footer		#nav		a:hover	{
	color:#ff0000;
	font:10px "Lucida Sans Unicode", "Lucida Grande", sans-serif lighter;
	text-decoration:underline;
	margin:0px 10px;
	 background:#003366;
}


/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


#round_box	{
	border: 1px solid #a7a7a7;
background-color: #fff;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;

}



#round_box_grey	{
	border: 1px solid #a7a7a7;
background-color: #ccc;
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
padding:5px;

}




#round_box_steel	{
	border: 1px solid #C1C1C1;
background-color: #C3CBDE;
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
padding:5px;

}



input.black	{
	border:1px solid #000;
	background-color:#fff;
	color:#003366;
}

/* HORIZONTAL SCROLLING MENU*/

div.sc_menu {

	/* Set it so we could calculate the offsetLeft */

	position: relative;

	height: 145px;

	width: 500px;

	overflow: auto;

}

ul.sc_menu {

	display: block;

	height: 110px;

	/* max width here, for users without javascript */	

	width: 1500px;	

	padding: 15px 0 0 15px; 

	/* removing default styling */

	margin: 0;

	background: url('navigation.png');		

	list-style: none;

}

.sc_menu li {

	display: block;

	float: left;	

	padding: 0 4px;

}

.sc_menu a {

	display: block;

	text-decoration: none;

}

.sc_menu span {

	display: none;

	margin-top: 3px;

	

	text-align: center;

	font-size: 12px;	

	color: #fff;

}

.sc_menu a:hover span {

	display: block;

}

.sc_menu img {

	border: 3px #fff solid;	

    -webkit-border-radius: 3px;

    -moz-border-radius: 3px;

}

.sc_menu a:hover img {

	filter:alpha(opacity=50);	

	opacity: 0.5;

}





/* Here are styles for the back button, don't look at them */

#back {

	display: block;

	width: 500px;

	text-align: center;

	color: #003469;

	font-size: 16px;

}

h1.error	{
	font:24px "Lucida Sans Unicode", "Lucida Grande", sans-serif lighter;
	color:#ff0000;
	text-align:center;
}

