@charset "UTF-8";
body  {
	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: #666666;
	font-family: Helvetica, Arial, san-serif;
	font-size: 11px;
	background-color: #fdfde6;
	background-image: url(images/bg.jpg);
	background-repeat: repeat;
}
p {
	font-family: Helvetica, Arial, san-serif;
	font-size: 1em;
	color: #666666;
	line-height: 160%;
}
.10ptText {
	font-family: Helvetica, Arial, san-serif;
	font-size: 0.8em;
}
.twoColFixRtHdr #container {
	width: 842px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFFFFF;
	background-image: url(images/mainBG.jpg);
	background-repeat: repeat-y;
} 
.twoColFixRtHdr #header {
	background-color: #e7e9bb;
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
	height: 171px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.twoColFixRtHdr #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 220px;
	background-color: #FFFFFF;
	background-image: url(images/sideBar.jpg);
	background-repeat: no-repeat;
	padding-top: 200px;
	padding-right: 25px;
	padding-bottom: 0px;
	margin-top: 25px;
	margin-right: 5px;
	padding-left: 35px;
	height: 350px;
}
.twoColFixRtHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 190px;
	background-color: #e6e8b8;
	background-image: url(images/additionalInfo.jpg);
	background-repeat: no-repeat;
	padding-top: 0px;
	padding-right: 25px;
	padding-bottom: 0px;
	margin-top: 25px;
	margin-right: 25px;
	padding-left: 25px;
}
ol {
	list-style-type: square;
}
.navigation {
	background-color: #daeffd;
	margin: 0px;
	padding: 0px;
	background-image: url(images/nvBG.jpg);
	background-repeat: repeat-y;
	position: relative;
}
ul {
	padding-top: 5px;
	list-style-type: none;
	padding-bottom: 5px;
	margin: 0px;
}
li {
	color: #666666;
	list-style-type: square;
	display: inline;
	padding-right: 5px;
	padding-left: 5px;
	margin: 0px;
}
.listItemsSquare {
	list-style-type: square;
}
a:link {
	font-family: Helvetica, Arial, san-serif;
	font-size: 1em;
	color: #666666;
	text-decoration: none;
}
h5 {
	font-size: 11px;
	font-weight: bold;
}
a:hover {
	color: #986C2B;
}
a:visited {
	color: #666666;
	text-decoration: none;
}
a:active {
	color: #666666;
}
.twoColFixRtHdr #mainContent {
	margin-top: 0;
	margin-right: 300px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 30px;
} 
.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #e6e8b9;
	background-image: url(images/footerBG.jpg);
	background-repeat: repeat-y;
} 
.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: 10px 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;
}



/* Staff Page ------------------------------------- */


div.staff-bio {
	float: left; /* Set a float to contain a float */
	margin: 0 0 10px 0;
}

div.staff-bio img {
	float: left; 
	margin: 10px 15px 15px 0;
}



