/*  
Theme Name: Vision and Change
Theme URI: http://ehrweb01.aaas.org/
Version: 2.0
Author: Chrissy Rey-Drapeau
Author URI: http://www.pongos.com
*/
@charset "UTF-8";
body {
	background: #fff;
	/*border-top:2px solid #000;*/
	color: #333;
	font-family: Arial, Verdana, sans-serif;
	/*font-family: Georgia, "Times New Roman", Times, serif;*/
	font-size:12px;
	line-height: 1.5;
	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;
}
h1, h2, h3 {
	font-weight:normal;
	letter-spacing:-1px;
	margin:0;
}
h2 {
	font-size: 12px;
}
h3 {
	color: #808080;
}
h4 {
	color: #993300;
	font-weight:bold;
	margin:0;
	padding-top: 10px;
	line-height:1.1;
}
h5 {
	font-size:12px;
	font-weight:bold;
	color:#306100;
	line-height:.9;
}
a img {
	border:0;
}
#container {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background-image: url(images/vcube_header.png);
	background-repeat: no-repeat;
	height: 162px;
}
#nav {
	background-color: #000;
	text-align: center;
	padding-left: 230px;
}
#nav a {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	font-size: 11px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#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 */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
}
#mainContent {
	margin: 0 250px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 15px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent h2 {
	font-size:1.6em;
}
#mainContent h3, h4{
	font-size:1.2em;
}
#footer {
	margin-top: 10px;
	text-align: center;
	color:#666666;
	font-size:10px;
	background-image: url(images/footerhr.png);
	background-repeat: repeat-x;
	background-position: top;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	padding-top: 2px;
}
#footer a {
	color: #B3512E;
	text-decoration: none;
}
#footer a img {
	border-style: none;
	margin: 0 20px;
}
.sidebar {
	width: 220px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sidebar a {
	color: #2956B2;
	text-decoration: none;
	font-weight: bold;
}
.sidebar li {
	margin-bottom: 10px;	
}
.sidebar .widget_search {
	background-color: #ccc;
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
}
.sidebar .widget_search div {
	padding: 10px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	text-align: center;
}
.sidebar .widget_search label {
	display: none;	
}
.sidebar .widget_search #s {
	width: 120px;	
}
.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;
}
