#main
{
	position: relative;
	top: 1em;
	text-align: left;
}

#logo
{
	display: block;
	width: 150px;
	height: 62px;
	overflow: hidden;
}

#content
{
	position: relative;
	background-color: white;
	display: block;
	width: 100%;
	border-top: 1px solid #88F;
	overflow: auto;
	padding-top: 1em;
	z-index: 2;
}

/************************
Tabs
************************/
ul#menu
{
	position: absolute;
	top: 26px;
	left: 110px;
}
#menu li
{
	position: relative;
	display: inline;
	margin: 3px;
	padding: 3px;
	border: #88F 1px solid;
	color: inherit;
	background-color: #88F;
	z-index: 1;
}
#menu li a
{
	color: white;
	background-color: transparent;
	text-decoration: none;
}
#menu li.active
{
	color: #88F;
	border-bottom: white 1px solid;
	background-color: white;
	z-index: 3;
}
#menu li.active a
{
	color: #88F;
	background-color: transparent;
}

/***************************
Messages
***************************/
#main #error, #main #message
{
	border-top: #88F 1px solid;
	background-color: #DDF;
	text-align: center;
	margin: 0;
}

/***************************
Colums/sections
***************************/
#cols
{
	left: 0;
	width: 100%;
}
#col1, #col2, #col3
{
	float: left;
	width: 30%;
}
#col2
{
	margin-left: 2em;
	margin-right: 2em;
}
.section
{
	position: relative;
	border: 1px solid #888;
	padding: .5em;
	width: 100%;
	margin-top: 1em;
}
.section h2
{
	font-size: 1em;
	color: #888;
	background-color: white;
	position: absolute;
	top: -1.5em;
	left: 1.25em;
}
.section form table
{
	width: 100%;
}
.section form input[type=text]
{
	width: 75%;
}
.section form table input[type=text]
{
	width: 100%;
}

/*************************
Pretty alternating color data table
*************************/
#content table.data
{
	width: 100%;
}
#content table.data thead td
{
	font-weight: bold;
}
#content table.data td
{
	padding: .25em;
}
#content table.data td.check
{
	width: 1px; /* At least in FF, this makes it the minimum width necessary */
}
#content tr.c0
{
	background: #DDF;
	color: inherit;
}
/* This  won't work in IE6 */
#content tr.c0:hover, #content tr.c1:hover
{
	background: #88F;
	color: white;
}
#content tr.c0:hover a, #content tr.c1:hover a
{
	background: transparent;
	color: white;
}
