body  {
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px;
	margin: 0 auto; /* 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;
}
html {overflow-y: scroll;}
a {
	color:#333333;
	text-decoration:none;
}
.twoColFixLtHdr #container { 
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	height:237px;
} 
.twoColFixLtHdr img{
border:0px;
}
.SignInTitle {
	font-family: arial, helvetica, sans-serif;
	font-size: 12pt;
	font-weight: bold;
	text-align: left;
	padding:10px 0 0 0;
}
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* 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 */
}
.twoColFixLtHdr #mainContent { 
	margin: 40px 0 0 372px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#333333;
} 
.twoColFixLtHdr #mainContent a{ 
	text-decoration:underline;
}
.twoColFixLtHdr #mainContent2 {
	margin: 10px 0 0 190px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#333333;
} 
.twoColFixLtHdr #mainContent2 a{ 
	text-decoration:underline;
}
.twoColFixLtHdr #mainContent3 {
	margin: 10px 0 0 345px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#333333;
} 
.twoColFixLtHdr #mainContent3 a{ 
	text-decoration:underline;
}
.twoColFixLtHdr #login {
	margin: 40px 0 0 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#333333;
	padding:20px 0 40px 0;
}
.twoColFixLtHdr #sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* 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 */
	margin-left:8px;
	margin-top:35px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
}
.twoColFixLtHdr #sidebar4 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* 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 */
	margin-left:8px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	vertical-align:middle;
	padding: 2px 0 2px 2px;
}
#sidebar2 li{
	padding:3px 0 3px 6px;
}
#sidebar2 li:hover{
	background-color: #8ED300;
}
.submission{
	padding:1px 6px 1px 0;
	width:144px;
}
.submission:hover{
	background-color: #8ED300;
}
.menuHor{
	padding:5px 0 6px 5px;
	width:134px;
	background-color:#eeeeee;
	list-style-type:none;
	margin:1px 0 1px 0;
	float:left;
	display:inline;
	text-align:center;
	font-size:11px;
}
.menuHor:hover{
	background-color: #8ED300;
}
.submitted{
	padding:1px 6px 1px 0;
	width:144px;
	background-color: #8ED300;
}
.twoColFixLtHdr #footer {
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	text-align:center;
	padding-top: 100px;
	text-decoration:none;
	width:980px;
	margin: 0 auto;
} 
.twoColFixLtHdr #footer p {
	margin: 0 auto; /* 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 */
	text-decoration:none;
}
.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;
}
.SelectedListBoxItem {
	background-color: #8ED300;
}
h1 {
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
color:#8ED300;
}
h2 {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
font-weight:bold;
color:#666666;
}
p {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#333333;
}
h4 {
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
color:#CE6509;
}
.twoColFixLtHdr #loginCMS {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	margin-top:50px;
}
.twoColFixLtHdr #loginPMS {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */	margin-left:80px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	margin-top:50px;
}
.arquivo #containerconf { 
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 