@charset "UTF-8";
body  {
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	background: #DDCC77;
	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: #330000;
	background-image: url(../images/gradient.jpg);
	background-repeat: repeat-x;
}
.twoColFixRtHdr #container { 
	width: 780px;  /* 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: 0;
	text-align: left; /* this overrides the text-align: cen  ter on the body element. */
} 
.twoColFixRtHdr #header { 
	background: #330000; 
	padding: 0;  /* 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. */
	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 */
	width: 780px;
	border: 0;
} 
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 367px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #CCCCBB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 8px 10px 10px !important;
	margin: 0 0 15px 20px;
}
.twoColFixRtHdr #mainContent { 
	margin: 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px 10px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixRtHdr #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #DDCC77; 
} 
.twoColFixRtHdr #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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0;
}
/*General Styles --------------------------------*/
body a:link {
	color: #330000;
	}
body a:visited {
	color: #990000;
	}
body a:hover {
	color: #CC6633;
	}
h3 {
	font-size: 19px;
	}
h4 {
	font-size: 14px;
	}
img {
	border: 0;
	}
.bold {
	font-weight: bold;
	}
	
	/*Nav1 Styles --------------------------------*/
.twoColFixRtHdr #nav1 { 
	background: #FFFFFF; 
	padding: 0;  
	margin: 0;
	border: 0;
}
#nav1 ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-weight: bold;
	display: inline;
	white-space: nowrap;
	clear: both;
	font-size: 12px;
	text-align: center;
	}
#nav1 ul a {
	display: block;
	background-color: #FFFFFF;
	border-right: 1px #CCCCBB solid;
	color: #330000;
	text-decoration: none;
	float: left;
	white-space: nowrap;
	}
#nav1 ul a:link {
	padding: 3px 6px 3px 6px;
	border-bottom: 1px #CCCCBB solid;
	height: 13px;
	}
#nav1 ul a:visited {
	padding: 3px 6px 3px 6px;
	border-bottom: 1px #CCCCBB solid;
	height: 13px;
	}
#nav1 ul a:hover {
	padding: 3px 6px 3px 6px;
	border-bottom: 3px #330000 solid;
	height: 11px;
	}
	/*Nav2 Styles -------------------------------------*/
.twoColFixRtHdr #nav2 { 
	background: #FFFFFF; 
	padding: 0; 
	margin: 0;
	border: 0;
	}	
#nav2 ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-weight: bold;
	display: inline;
	white-space: nowrap;
	clear: both;
	font-size: 12px;
	text-align: center;
	}
#nav2 ul a {
	display: block;
	background-color: #FFFFFF;
	border-right: 1px #CCCCBB solid;
	color: #FFFFFF;
	text-decoration: none;
	float: left;
	white-space: nowrap;
	margin-bottom: 0px;
	}
#nav2 ul a:link {
	border-bottom: 0px #CCCCBB solid;
	padding: 3px 6px 3px 6px;
	height: 14px;
	}
#nav2 ul a:visited {
	border-bottom: 0px #CCCCBB solid;
	padding: 3px 6px 3px 6px;
	height: 14px;
	}
#nav2 ul a:hover {
	border-bottom: 3px #330000 solid;
	padding: 3px 6px 3px 6px;
	height: 11px;
	}
	
/*Main Content Styles --------------------------------------*/	
#jdLicense {
	float: left;
	margin-bottom: 10px;
	}
#logo {
	width: 176px;
	height: 180px;
	float: left;
	padding: 0 5px 10px 5px;
	}
#logo p {
	text-align: center;
	}
/*Table Styles ------------------------------------*/
#mainContent td, th{
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	}
caption {
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	margin-bottom: 4px;
	}
.whiteText {
	color: #FFFFFF;
	}	
.redText {
	color: #FF0000;
	}
.blackText {
	color: #000000;
	}
.yellowText {
	color: #FFFF00;
	}
.greenText {
	color: #009900;
	}
.burntOrange {
	background-color: #FF3300;
	}
.orange {
	background-color: #FF0000;
	}
.darkGray {
	background-color: #333333;
	}
.yellow {
	background-color: #FFFF00;
	}
.red {
	background-color: #FF0000;
	}
.metallicBlue {
	background-color: #333366;
	}
.silverGray {
	background-color: #666666;
	}
.black {
	background-color: #000000;
	}
.appleGreen {
	background-color: #009900;
	}
.safetyYellow {
	background-color: #FFCC00;
	}
.armyGreen {
	background-color: #336600;
	}
.pineGreen {
	background-color: #006633;
	}
.taupe {
	background-color: #CCCCBB;
}

/*Sidebar1 Styles -----------------------------------------*/	
#sidebar1 ul {
	margin: 0;
	padding: 0;
	text-align: center;
	list-style-type: none;
	font-weight: bold;
	display: inline;
	white-space: nowrap;
	clear: both;
	font-size: 11px;
	}
#sidebar1 ul a {
	background-color: #FFFFFF;
	padding: 3px 3px 3px 3px;
	color: #330000;
	margin: 0px 4px 4px 0px;
	text-decoration: none;
	}	
#sidebar1 ul a:link {
	color: #330000;
	height: 13px;
	padding: 3px 3px 3px 3px;
	background-color: #FFFFFF;
	border-bottom: 1px #330000 solid;
	text-decoration: none;
	}
#sidebar1 ul a:visited {
	color: #330000;
	height: 11px;
	padding: 3px 3px 3px 3px;
	background-color: #FFFFFF; 
	border-bottom: 3px #330000 solid;
	}
#sidebar1 ul a:hover {
	color: #FFFFFF;
	height: 11px;
	background-color: #330000;
	border-bottom: 3px #FFFFFF solid;
	padding-bottom: 3px;
	}
#namebadge {
	width: 156px;
	height: 70px;
	float: left;
	padding: 15px 10px 5px 5px;
	}	
#sampleL img {
	margin: 2px;
	float: left;
	}
#sampleC img {
	margin: 2px;
	}
/*Footer Styles ------------------------------------------*/
#footer p {
	font-size: 11px;
	}
/*Form Styles ------------------------------------------*/
fieldset {
	border: 1px #BBBBBB solid;
	margin: 0;
	padding: 10px;
	background: #FFFFFF;
	}
textarea {
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	font-size: 10px;
	height: 100px;
	width: 500px;
	float: left;
	margin: 6px;
	}  
input {
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	font-size: 14px;
	height: 16px;
	width: 500px;
	float: left;
	margin: 6px;
	}  
label {
	width: 200px;
	float: left;
	}                        
.button {
	width: auto;
	}
select {
	margin: 6px;
	}