@charset "UTF-8";
/* CSS Document */

@charset "UTF-8";
body {
	font: 100% Arial, Helvetica, sans-serif;
	background-image: url(images/background.jpg);
	background: #aec2c9;
	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: #404040;
	line-height: 1em;
}
a {
	font-weight: bold;
	color: #165a8f;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

#container {
	width: 800px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #FFFFFF url(images/header.jpg) no-repeat bottom;
	width: 800px;
	height: 175px; 
	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. */
}
#topmenu {
	background: #FFFFFF url(images/topmenu.gif) repeat-x;
	width:550px;
	height: 25px;
	margin-left: 250px;
	color: #fefefe;
	font-size: 11px;
	text-transform:uppercase;
	text-align: center;
	margin-bottom:10px;
}
#topmenu a {
	color: #fefefe;
	padding: 5px 5px 3px 5px;
	text-decoration: none;
}
#topmenu a:hover {
	color: #fefefe;
	text-decoration: underline;
}
#mainContent {
	border: 10px solid #f4a94e;
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	height: auto;
}
#sidebar {
	padding: 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #fefefe;
	width: 200px;
	height: auto;
	float: left;
}
#sidebar .navbox {
	margin: 0;
	display: block;
	background: #fefefe url(images/navbars.gif) no-repeat;
	width: 200px;
	height: 85px;
}
#sidebar a {
	color: #404040;
	text-decoration: none; 
}
#sidebar a:hover {
	color: #f4a94e;
}
#sidebar p {
	font-size: 90%;
	font-family: Georgia, "Times New Roman", Times, serif;
	padding: 5px;
}
#sidebar img {
	border: none;
}
#sidebar .center {
	text-align: center;
	font: "Trebuchet MS", Verdana, Arial, sans-serif;
	font-size:12px;
	line-height: 12px;
}
#content {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 5px 5px 5px 215px;
	width: auto;
	height: auto;
	background: #f8f8f2;
	border: 3px solid #ededdf;
}
#content p {
	display: block;
	padding: 5px;
}
#content p.rightPic{
	background:url(images/girlwithflower.jpg) 0 0 no-repeat;
	width:192px;
	height:288px;
	float:right;
	margin:0 5px 5px 5px;
	border: #6898ad solid 2px;
	padding: 0;
}
#content h1 {
	text-transform: uppercase;
	padding: 5px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 100%;
}
#content h2 {
	text-transform: none;
	padding: 5px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 100%;
}
#content img {
	border: none;
}

#content .transform {
	text-transform:lowercase;
}

#content .center {
	text-align: center;
}

#content p.groupfoto {
	border: #6898ad solid 2px;
}

#bios {
	padding: 15px;
	font-size:14px;
	border-bottom: solid 1px #414141;
}

#bios .image_floatleft{
	float: left;
	border: 0;
	padding: 5px;
}

#footer {
	background:#404040;
	color: #fefefe;
}
#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 */
	text-align: center;
	line-height: 1.2em;
	font-size: 75%;
}
#footer a {
	color: #fefefe;
	text-decoration:none;
}
