/* CSS Document */


/* ********** MAIN ELEMETS   ********** */

/* Main Elements */
#content {
	width: 956px;
	background-color: #dcdcdc;
	clear: both;
}




/* --- Layout (Containers) Elements --- */
.lineClear {
	/* used to add spaces after floats */
	clear:both;
	margin: 4px 0px 0px 0px;
}

.imgLeft{
	/* Places an image to the left.  Use with text paragraphs = textRight */
	float: left;
	margin: 4px 8px 4px 8px;
	vertical-align: text-top;
	border: 1px solid #000000;
	clear: both
}
.imgLeft_Caption{
	/* Places an image in a box and to the left so you can put a caption under it.  
	Captions need to use the <span class="caption"> attribute.  Use with text paragraphs = textRight */
	float: left;
	margin: 4px 8px 4px 8px;
	text-align: center;
	clear: both
}
.imgRight {
	/* Places an image to the right.  Use with text paragraphs = textLight */
	float: right;
	margin: 4px 8px 4px 8px;
	vertical-align: text-top;
	border: 1px solid #000000;
	text-align: center;	
	clear: both
}
.imgRight_Caption {
	/* Places an image in a box and to the right so you can put a caption under it.  
	Captions need to use the <span class="caption"> attribute.  Use with text paragraphs = textLight */
	float: right;
	margin: 4px 8px 4px 8px;
	text-align: center;
	clear: both
}

.textLeft {
	/* this is to be used when you want the text to be left of a right aligned image/box */
	clear:left;
}

.textRight {
	/* this is to be used when you want the text to be right of a left aligned image/box */
	clear:right;
}


/* --- Inline Elements --- */
p {
	/* Main text paragraph "boxes"  This simply gives the proper padding for each text "box" (technically not a "box")*/
	margin: 4px 8px 4px 8px;
}

/* General link attributes */
a:link   { color: #000099; font-style: normal; text-decoration: none; text-transform: uppercase; font-size: 10px;}
a:visited   { color: #000099; font-style: normal; text-decoration: none; text-transform: uppercase; font-size: 10px;}
a:hover   { color: #990000; font-style: normal; text-decoration: none; text-transform: uppercase; font-size: 10px;}
a:active  { color: #0000FF; font-style: normal; text-decoration: none; text-transform: uppercase; font-size: 10px;}

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






/* ********** HEADER ELEMETS ********** */

body {
	margin: 0px;
	background-color: #494949;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#container {
	width: 956px;
	margin-right: auto;
	margin-left: auto;
	background-color: #dcdcdc;	
	border: 0px none;
}

#top {
	width: 956px;
	background-color: #494949;	
	border: 0px none;
}

#banner {
	width: 956px;
	border-top: 0px none #000000;
	border-right: 0px none #000000;
	border-bottom: 1px solid #000000;
	border-left: 0px none #000000;
}

#menu4 {
	width: auto; /* overall width of the bar. auto = 100% */
	margin: 0px;
	background:  url(images/menu4.gif);
	height: 32px; /* (24 + 8 padding below) */
	}
	
#menu4 a.menu4 {
	float: left;
	height: 32px;
	width: auto;
	height: 24px;
	text-decoration: none;	
	}	
	
#menu4 a.menu4:link, #menu4 a.menu4:visited {
	color: #CCC;
	display: block;
	background:  url(images/menu4.gif);
	padding: 8px 10px 0 10px;
	}
	
#menu4 a.menu4:hover {
	color: #FFF;
	background:  url(images/menu4.gif) 0 -32px;
	padding: 8px 10px 0 10px;
	}	




/* ********** FOOTER ELEMETS ********** */

#footer {
	width: 956px;
	height: 20px;
	line-height: 20px;
	background-image: url(images/footer.jpg);
	background-repeat: no-repeat;
	color: #CCCCCC;
	text-align: center;
	clear: both;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000000;
	background-color: #006699;
}
