@charset "utf-8";
body  {
	font: 14px Arial, Helvetica, sans-serif;
	background: #663/* url(../../images/container_shadow.png) center repeat-y*/;
	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;
}



#container { 
	\width:1024px; 
	w\idth:1024px;
	background: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: 2px solid #FFF;
	border-right: 2px solid #FFF;	
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
} 
#home {
	\width:1024px; /* this will create a container 80% of the browser width */
	w\idth:1024px;
	background: url(../../images/background4.png) center repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: 2px solid #FFF;
	border-right: 2px solid #FFF;	
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;

}
#header { 
	background: url(../../images/powerbio_header_bkgrdv3.png) center no-repeat;
	padding: 0px;
	height: 97px;
} 
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 */
	font: 24px "Times New Roman", Times, serif;
	font-weight: bold;
}
h2 {
	font: 20px "Times New Roman", Times, serif;
	font-weight:bold;
}


#nav {
	height: 18px;
	text-align: center;
	margin-left: 125px;
	padding-top: 48px;
}
/*  APB Menu Style */
.apb ul{
margin: 0;
margin-top: -1px;
padding: 0;
font:12px Arial, Helvetica, sans-serif;
list-style-type: none;
border-bottom: none;
overflow: hidden;
width: 100%;
height: 18px;
}

.apb li{
display: inline;
margin: 0;
}

.apb li a{
text-decoration: underline;
float: left;
/*display: block;*/
margin: 0;
padding: 0; /*padding inside each tab*/
/*margin-top: -1px;*/
border-right: 1px solid white; /*right divider between tabs*/
color: #000;
background: none;
text-wrap: none;
text-align: center;
width: 100px;
height: 18px;
}


.apb li#last_nav a{
border-right: none; /*right divider between tabs*/
width: 100px;
text-align: center;
}


/*.apb li a:visited{
color: white;
}
*/
.apb li a:hover{
background: url(../../images/nav_hover.png) center no-repeat;
color: #FFF;
text-decoration: none;
}

.apb li#last_nav a:hover {
background: url(../../images/nav_hover.png) center no-repeat;
color: #FFF;
text-decoration: none;
}

.apb li a.selected {
background: url(../../images/nav_hover.png) center no-repeat;
color: #FFF;
text-decoration: none;
}


.apb li#last_nav a.selected{
background: url(../../images/nav_hover.png) center no-repeat;
color: #FFF;
}
table {
	border-collapse: collapse;
	}

#mainContent {
	padding: 0 1em 0 2em; /* padding here creates white space "inside the box." */
	min-height: 550px;
} 
.feature {
	background-color: #FFF;
	text-align: center;
	padding-left: 5px;
	padding-right: 5px;
	width: 250px;
	border: #666 outset medium;
}
#footer { 
	width: 1024px;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(../../images/footer_bkgrd.png) center no-repeat;
	height: 45px;
	text-align: center;
	font-size: 10px;
	color: #FFF;
} 
#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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer a {
	color: #FFF;
	font-weight: bold;
}
#footer a:hover {
	color: #6CC;
}
#footer a.visited {
	color: #FFF;
}
#foot_nav {
	padding-top: 2px;
	font-size: 11px;
}
#foot_nav {
	font-size: 11px;
}
/* Formatting Members Table */
table.members {
/*	background-color:#FFF;
*/	width: 90%;
	vertical-align: top;
}
.main_head {
	background: #06C;
	color: #FFF;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	font: "Times New Roman", Times, serif;
}
.sub_head {
	background-color:#000;
	color:#FFF;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	font: "Times New Roman", Times, serif;
}
/* Miscellaneous classes for reuse */
.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;
}

.title {
	font-size: 14px;
	font-weight: bold;
}
.red {
	color: #F00;
}
.small {
	font-size: 10px;
}
