@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: #000000;
	font-family: sans-serif;
	font-size: 85%;
	background-color: #333333;
}

#container {
	width: 990px;  /* 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: 1px solid #000000;
	text-align: left;
	margin-top: 20px;
} 
#header {
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-color: #FFFFFF;
	height: 110px;
} 

#logo {
	float: left;
	padding-top: 20px;
}

#menu {
	width: 990px;
	margin: 0 auto;
	padding: 0;
	background-image: url(../Images/Navigation.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 50px;
}

#menu ul {
	margin: 0;
	padding: 13px 0 0 20px;
	list-style: none;
	line-height: normal;
}

#menu li {
	float: left;
}

#menu a {
	display: block;
	margin-right: 3px;
	padding: 5px 20px 7px 20px;
	text-decoration: none;
	font-family: sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FFFFFF;
	border: none;
}

#menu a:hover, #menu .current_page_item a {
}

#menu a:hover {
	background: #9F6C0F;
	text-decoration: none;
}

#menu .first {
	margin-right: 3px;
	background: #9F6C0F;
}

#sidebar {
	width: 275px;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-left: 15px;
	float: left;
	font-size: 12px;
}

#sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#sidebar li {
	margin: 0;
	padding: 0;
}

#sidebar li ul {
	padding-bottom: 30px;
}

#sidebar li li {
	line-height: 35px;
	border-bottom: 1px dashed #BCBCBC;
}

#sidebar li li span {
	display: block;
	margin-top: -20px;
	padding: 0;
	font-size: 12px;
	font-style: italic;
	color: #9F6C0F;
}

#sidebar h2 {
	letter-spacing: -0.2px;
	color: #9F6C0F;
	font-size: 130%;
	font-family: sans-serif;
	padding-bottom: 8px;
}

#sidebar p {
	padding-bottom: 20px;
	text-align: justify;
}

#sidebar a{
	text-decoration: none;
	color: #333333;
	display: block;
}

#sidebar a:hover {
	font-weight: bold;
	border-right-width: 8px;
	border-right-style: solid;
	border-right-color: #9F6C0F;
	text-decoration: underline;
}

#mainContent {
	border-left-width: 0.2em;
	border-left-style: solid;
	border-left-color: #9F6C0F;
	margin-right: 0;
	margin-bottom: 30px;
	padding-right: 15px;
	padding-left: 15px;
	margin-top: 20px;
	float: right;
	width: 660px;
} 

#mainContent h1 {
	color:#9F6C0F;
	font-size: 140%;
	font-weight: bold;
	margin-bottom: 0px;
}

#mainContent h2 {
	color:#9F6C0F;
	font-size: 140%;
	font-weight: bold;
	padding-top: 20px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

#mainContent p {
	margin-top: 0px;
}

#mainContent a {
	text-decoration: underline;
	color: #9F6C0F;
	border-bottom-width: 1px;
	border-bottom-color: #9F6C0F;
	font-weight: bold;
}


#text {
	margin-right: 0;
	margin-bottom: 30px;
	padding-right: 20px;
	padding-left: 15px;
	padding-top: 20px;
} 

#text h1 {
	color:#9F6C0F;
	font-size: 160%;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9F6C0F;
}

#text h2 {
	color:#000000;
	font-size: 120%;
	font-weight: bold;
	padding-top: 20px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

#text p {
	margin-top: 0px;
	margin-bottom: 2px;
}

#text a {
	text-decoration: underline;
	color: #9F6C0F;
	border-bottom-width: 1px;
	border-bottom-color: #9F6C0F;
	font-weight: bold;
}
#footer{
	padding: 0 10px 0 20px;
	background-image: url(../Images/Footer.gif);
	height: 100px;
} 

#left_footer {
	float:left;
	padding-top: 5px;
	width: 620px;
	margin-right: 10px;
	margin-left: 10px;
	color: #FFFFFF;
	font-size: 85%;
}

#center_footer {
	padding-top: 15px;
	width: 250px;
	margin-right: 10px;
	margin-left: 10px;
	float: left;
	text-align: center;
}

#right_footer {
	padding-top: 15px;
	width: 310px;
	text-align: right;
	float: right;
	color: #FFFFFF;
	margin-left: 10px;
}

#right_footer a{
	color: #FFFFFF;
}

#right_footer a:hover{
	background: #9F6C0F;
	text-decoration: none;
}


.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;
}
.conferences {
	background-color: #333;
	width: 700px;
	color: #FFF;
	font-weight: bold;
	font-size: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.conferenceText {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333;
}
