 

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: #ffffff;
}
.twoColFixLtHdr #container { 
	width: 799px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 600px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image:url(images/main_bg.jpg);
	background-repeat:no-repeat;
	background-position: bottom right;
} 

#disclaimer {
	width: 799px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top:50px;
	*margin-top:80px;
	padding: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	color:white;
}
#disclaimer a {
	color:white;
	text-decoration:none;
}

.twoColFixLtHdr #header { 
	background: #DDDDDD; 
	padding: 0px 0px 0px 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. */
	border-bottom:2px solid white;
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 213px; /* 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 */
	height:480px;
	*height:450px;
	background: #999999; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin:0px;
	border-right:2px solid white;
	position:relative;
	z-index:1;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:white;
	font-weight:bold;
	
}

#sidebar1 img {
	*margin-top:-30px;
	padding:0px;

}
.twoColFixLtHdr #mainContent {
	position:relative;    /*necessary to keep relative positioned images scrolling in place in IE*/
	padding: 0 20px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left:200px;
	overflow:auto;
	width:544px;
	height:480px;
	overflow:auto;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:black;
	
} 
.twoColFixLtHdr #footer { 
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
	position:relative;
} 
.twoColFixLtHdr #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: 0px 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: 0px;
}
 

/*THIS IS THE NAVIGATION CSS*/


#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		width : 130px;
		float:left;
	}
	
	#nav {
		margin-left:15px;
		margin-bottom:15px;
		}
	
	#nav li { /* all list items */
		position : relative;
		float : left;
		line-height : 1.25em;
		margin-bottom : -1px;	
		z-index:0;
	}
	
	#nav li a {
		display : block;
		font: 100% Verdana, Arial, Helvetica, sans-serif;
		font-size:12px;
		font-weight:bold;
		text-decoration : none;
		background-color : #999999;
		padding : 0.5EM 0.5em;
		color:#353535;
		position:relative;
		z-index:0;
		width: 195px;
		w\idth : 185px;
	}
	
	#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 198px;
		margin-top : -27px;
		border:1px solid white;
		z-index:999;
	}
	
	#nav li ul li a { /* second-level list items */
		color:white;
		background-color:#6c6c6c;
		padding:0.5em 30px;
		width:100px;
		position:relative;
		z-index:999;
	}
	
	#nav li ul li a:hover { /* second-level lists hover */
		background-color:#353535;
	}
	
	#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	

	
	#nav li a:hover {
		background-color : #6c6c6c;
	}
	
	#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
		left: -999em;
	}
	
	#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
	}
	
	#content {
		margin-left : 12em;
	}
	
	.bio {
	margin-top:15px;
	*height:150px;
	
	}
	
	/*-------------------------------------*/
.transparent {
	opacity:.9;
}

.normal {background-color:#999999;}

h1 { 
	font-family:goudy, times new roman, serif;
	color:#000066;
	font-size:35px;
	}

.twoColFixLtHdr #mainContent a:link, .twoColFixLtHdr #mainContent a:visited, .twoColFixLtHdr #mainContent a:active {color: blue}     /* unvisited link */
.twoColFixLtHdr #mainContent a:hover {color: #FFFFFF}   /* mouse over link */#mainContent #di {
	bottom: 30px;
	position: absolute;
	right: 15px;
}

