@charset "utf-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	margin: 0; 
	padding: 0;
	text-align: center; 
	color: #000000;
}
.main #container {
	width: 100%; 
	min-width:240px;
} 
.main #header {
	padding:5px;
	background-repeat: no-repeat;
	min-height: 50px;
	text-align: right; /* this overrides the text-align: center on the body element. */
	vertical-align: baseline;
	background-color: #FFFFFF;
	background-image: url('logo.png');
	background-repeat: no-repeat;
	background-position: left center;
	white-space: nowrap
} 

.main #menu {
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: left top;
	text-align: left; /* this overrides the text-align: center on the body element. */
	vertical-align: baseline;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #00b300;
	margin-bottom: 10px;
	padding-bottom: 5px;
} 

.menu-item {
	font-size:100%;
	font-weight:bold;
	font-variant:small-caps;
}

#leftbar .menu-item {
	margin-top:10px;
	margin-bottom:10px;
	
}

.main #leftbar {
	float: left;
	min-width: 180px; /* since this element is floated, a width must be given */
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
	text-align:left;
	border: thin solid #EEEEEE;
	font-size: 80%;
	text-transform: capitalize;
}
.main #leftbar h3, .main #leftbar p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.side-formheader {
	font-size:100%;
	font-weight:bold;
	font-variant:small-caps;
	padding: 5px;
	color:#00b300;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.main #mainContent { 
	margin: 0 20px 0 200px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
} 
.main #fullContent { 
	margin: 0 20px 0 20px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
} 
.main #fullContentLeft {
	float:left;
	margin: 0 20px 0 20px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
} 
.main #fullContentRight { 
    float:left;
	margin: 0 20px 0 20px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
}
.main #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.main #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 */
}

/* 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;
}

table
{
	padding: 3px;
	border: thin solid #EEEEEE;
	font-size: 80%;
}

.ok {
	color:#006600;
}
.error {
	color:#00b300;
}

.head-cell{
	text-align:left;
}
.command-cell{
	padding:2px;
	vertical-align:middle;
}
.data-cell{
	font-weight:bold;
	vertical-align:middle;
	text-align: left;
}
.error-cell{
	font-size: 80%;
	vertical-align:middle;
}

a{
	color:#00b300;
}

a.inactive{
	color:#999999;
}

th{
font-size:110%;
font-weight:bold;
text-align:center;
}
#message-center {
	display: block;
	height: 120px;
	width: 500px;
	margin: auto;
	text-align: left;
	padding: 0px;
}

div.cblockmenu {
    background-color: white;
    border: 1px solid #00b300;
    display: block;
    left: 0;
    position: absolute;
    top: 0;
}

td.ip
{
	width:20px;
	text-align:left;
}
td.formlabel
{
	text-align:right;
	font-weight:bold;
}
td.formdata
{
	text-align:left;
}
img.ico
{
	border:0px;
	padding:0px;
	margin:0px;
}

.list tr.even
{
	background-color:#EEEEEE;
}
.list tr.odd
{
	background-color:#FFFFFF;
}
.list td.label
{
	text-align:right;
}
.list td.data
{
	text-align:left;
}
.button
{
    background: none repeat scroll 0 0 #AD0000;
    color: #FFFFFF;
    float: left;
    line-height: 90%;
    padding: 3px 8px;
	margin: 3px;
    text-align: center;
}
div.hoverexpand {
	border: 1px solid #00b300;
	padding: 1px;
	background: white;
	width: 100px;
	height: 12px;	
	overflow: hidden;
}

div.hoverexpand:hover {
	position: absolute;
	width: auto;
	height: auto;	
	overflow: visible;
}
div.hoverexpand pre {
	margin: 0;
	font-size:11px;
}
div.memberlogs{
	padding-left:10px;
}

.memberlogs a {color:#666666;}