@charset "utf-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #F5F5F5;
	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;
}
.general #container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height:600px;
	background: #FFFFFF;
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-bottom:1px solid #CCCCCC;
	border-right:1px solid #CCCCCC;
} 
.general #header { 
	height:148px;
	width:1000px;
}
.general #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 246px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height:452px;
	margin:0;
	padding:0;
}
.general #sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 240px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height:452px;
	margin:0;
	padding:0;
}
.general #mainContent { 
	float:left;
	margin:0;
	padding:0;
	width:514px;
	height:452px;
}
select{
	font-family:verdana;
	font-size:10px;
	color:#666666;
	height:21px;
	width:180px;
	*width:200px;
	_width:200px;
	border:1px solid #FFFFFF;
}
input{
	font-family:verdana;
	font-size:10px;
	color:#666666;
	height:18px;
	width:180px;
	border:2px solid #FFFFFF;
	_border:1px solid #FFFFFF;
	*border:1px solid #FFFFFF;
/*
hacks:
* IE 7
_ IE 6
*/
}
