@charset "utf-8";
/* CSS Document */

/* Global Styles */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #FFFFFF;
	background-color: #000000;
	margin: 0px;
	padding: 0px;	
}

/* Main Container */
#container {
	width: 900px;
	margin: 0 auto;
}
#container h1 {
	font-size: large;
	color: yellow;
	margin-left: 15px;
}
#container h2 {
	font-size: large;
	color: white;
	margin-left: 15px;
}
#container h3 {
	font-size: small;
	color: white;
	margin-left: 15px;
}
#container p {
	font-size: small;
}
#container a:link, #container a:visited {
	color: white;	
}
#container a:hover, #container a:active {
	color: yellow;
}
#container img {
	border-style: none;
}

/* Header */
#header {
	height: 208px;
	margin-bottom: 2px;
}

/* Main Navigation Bar*/
#navigation {
	height: 37px;
	width: 885px;
	margin: 0 auto;
	padding: 0;
}
#navigation ul{
	list-style: none;
	font-size: 12px;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
#navigation li{
	float: left;
	margin: 0;
	padding: 0;
}
#navigation li a:link, #navigation li a:visited {
	display: block;
	color: white;
	text-decoration: none;
	padding: 10px 7px;
	border: none;
}
#navigation li a:hover, #navigation li a:active {
	color: yellow;
}
#navigation li a.current {
	color: yellow;
	background-image: url(images/navcurrent.jpg); 
	background-repeat: no-repeat;	
}
#navigation li a.current:hover {
	cursor: default;
}

/*Full Content Area */
#contentfull {
	margin: 10px auto;
	width: 858px;
	padding-top: 2px;
	background-image: url(images/fullcontentbg.jpg);
	background-repeat: no-repeat;
	min-height: 394px;
}
#contentfull p {
	margin-left: 15px;
}

/* Split Content Area */
#leftContent {
	width: 425px;
	float: left;
	margin: 10px 0 0 15px;
	padding_top: 2px;
	background-image: url(images/splitcontentbg.jpg);
	background-repeat: no-repeat;
	min-height: 394px;
}
#leftContent p {
	margin-left: 15px;
	margin-right: 10px;
}

#rightContent {
	width: 425px;
	float: right;
	margin: 10px 25px 0 0;
	padding_top: 2px;
	background-image: url(images/splitcontentbg.jpg);
	background-repeat: no-repeat;
	min-height: 394px;
}
#rightContent p {
	margin-left: 15px;
	margin-right: 10px;
}

/*Footer Area*/
#footer {
	margin-bottom: 10px;
}
#footer p {
	font-size: x-small;
	text-align: center;
}
#footer p a {
	color: white;
}

/* Miscellaneous styles */

.clear { clear: both }


.orangebold {
	color: #C30;
	font-weight: bold;
}
#container #rightContent p strong {
	color: #FF0;
}
.yellowtext {
	color: #FF0;
}

