body  {

	background:#FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
	font: 12px/1.75em Verdana, Tahoma, arial, sans-serif; 
	text-align: center;

}
.twoColElsLtHdr #container { 
	width: 100%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	
	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. */
} 
.twoColElsLtHdr #header { 
	padding: 0px 0px 0px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #@header instead of text, you may want to remove the padding. */
	height: 71px;
	background: #FFF;
/*	background-image:url(../images/provider_hbg.gif);*/
	background-repeat:repeat;
} 
.twoColElsLtHdr #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 */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
.twoColElsLtHdr #sidebar1 {
	float: left; 
	padding:0px;
	width: 27%; /* since this element is floated, a width must be given */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	margin-top:10px;
	margin-left:0px;
	padding-left:2px;
	min-height:500px;
}
.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {

}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sid ebar1 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.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLtHdr #mainContent {
	margin: 10px 5px 0 5px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding-left:4px;
	padding-top:4px;
	background-color:#FFFFFF;
	float:left;
	width:71%;
	
	min-height:400px;
	
} 
.twoColElsLtHdr #contentsection{
	margin: 0 0px 0 0px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	background-image:url(../images/bg.gif);
	background-repeat:repeat-x;
	background-color:#FCF8F8;
	float:left;
	width:100%;
	min-height:600px;
} 
.twoColElsLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin-top:5px;
	background:#EFEBEB;
} 
.twoColElsLtHdr #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;
}
.menus{
	background-image:url(../images/menu_strip.gif);
	background-repeat:repeat-x;
	
}

.corner { 
	background-color:#C5C5C5;
}



#mainmenu{
	float:right;
	vertical-align:bottom;
}

/* DEFAULTS */
/* links */
 a.link,  a:visited.link{	
	color: #326ea1; 
	background: inherit;
	text-decoration: none;
	font-size:13px;

}
 a.link1,  a:visited.link1{	
	color: #326ea1; 
	background: inherit;
	text-decoration: none;
	font-size:13px;

}
 a:hover.link  {
	color: #383d44;
	background: inherit;
	font-size:13px;
	border-bottom: 2px solid #dbd5c5;	
	text-decoration:none;
}

a.hglink,a:visited.hglink{
	color: #326ea1; 
	text-decoration:underline;
	font-family: verdana, Tahoma, Sans-serif;
	font-size:13px;
}
a:hover.hglink{
	color: #383d44; 
	text-decoration:underline;
	font-family: verdana, Tahoma, Sans-serif;
	font-size:13px;
}
/* headers */
h1, h2, h3 {
	font-family: 'Trebuchet MS', Tahoma, Sans-serif;
	font-weight: Bold; 	
	color: #333;		
}
h1 {
	font-size: 160%;	
	font-weight: normal;
}
h2 {
	font-size: 130%;
	text-transform: uppercase;	
}
h3 {
	font-size: 130%;	
}

h1, h2, h3, p {
	padding: 10px;		
	margin: 0;
}
/* images */
img.shaded {
	background: #FAFAFA;
   border: 1px solid #DCDCDC;
	padding: 5px;
}
img.float-right {
  	margin: 5px 0px 10px 10px;  
}
img.float-left {
  	margin: 5px 10px 10px 0px;
}
code {
  	margin: 5px 0;
  	padding: 10px;
  	text-align: left;
  	display: block;
  	overflow: auto;  
  	font: 500 1em/1.5em 'Lucida Console', 'courier new', monospace ;
  	/* white-space: pre; */
  	background: #F5F5F5;
	border-left: 3px solid #D4D4D4;
}
acronym {
  cursor: help;
  border-bottom: 1px dashed #777;
}
blockquote {
	font: bold 1.4em/1.5em 'Trebuchet MS', Tahoma, Sans-serif;	
	margin: 10px;
 	padding: 0 0 0 25px;  
    background: #F5F5F5;
	border-left: 3px solid #D4D4D4;	
	color: #444;
}
/* start - table */
table.stripeMe  {
	border-collapse: collapse;
	border:#D5D5D5 solid 0.1em;

/*	font:12px/1.75em Trebuchet MS,Verdana, Tahoma, arial, sans-serif;*/
}

.stripeMe th {

	color:#00;
	padding: 2px 2px;
	text-align: left;
	line-height: 1.5;
	font-size:13px;	
	font-family:Trebuchet MS,Geneva, Arial, Helvetica, sans-serif;
	background:#E3E3E3;

}
.stripeMe td {
	padding-left:3px;
	padding-top:2px;	
	border-bottom: 1px solid #C6C6C6;
	border-top: 1px solid #C6C6C6;
	vertical-align: top;
	font-family:Tahoma, Arial, Helvetica, sans-serif;
	font-size:13px;/*
	font: 11px/2em "Trebuchet MS", sans-serif;*/
	background:#F8F8F8;
	text-align:left;
}

.stripeMe tr.alt td {
	background:#EFEFEF;
}

.stripeMe tr.over td {
	background:#FFFFFF;
}/* end - table */

.error{
color:#FF0000;
}



input[type=text,type=password]{
	border:#CCCCCC solid 1px;
	width:130px;
	font-family:Tahoma;
	font-size:12px;
}
input{
	border:#CCCCCC solid 1px;
}
textarea{
	border:#CCCCCC solid 1px;
	font-family:Tahoma;
	font-size:12px;
}/*
INPUT:hover{
	border:#008000 solid 1px;
	outline:none;
}
INPUT:focus{
	border:#008000 solid 1px;
	outline:none;
}
a:focus{
	outline:none;
}
input[type=text]:focus{
	border:#009933 solid 1px;
}
*/
input[type=submit] ,input[type=button]
{
	border:#000000 solid 1px;
}

table.noform tr td{
	border: 0px !important;
	vertical-align: top !important;
	font: normal 12px Verdana, Geneva, Arial, Helvetica, sans-serif !important;
	padding:2px !important;
}

/* Login Box */
#imagelogin{
	width:130px;
	float:left;
}
#loginbox{
	background-color:#CCCCCC;
	width:400px;
	height:150px;
	margin-left:auto;
	margin-right:auto;
	margin-top:120px;
    opacity: .5;
    filter: alpha(opacity=50);
}
#loginbox table{
	margin-top:10px;
}
input.error{
	border:#FF0000 solid 1px;
}
label.error{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:9px;
}
#loading{	
	background-image:url(../images/ajaxbg.png);
	width:220px;
	background-repeat:no-repeat;
	height:22px;
	top:0px;
	left:40%;	
    display: block;
    position:fixed;
    z-index: 9;	
}
.cb{
	width:auto;
	height:16px;
	line-height:10px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	border:#CCCCCC solid 1px;
}
.bgfont{
	font-family:Helvetica, sans-serif;
	font-size:12px;
	font-weight:bold;
}
.smfont{
	font-family:Helvetica, sans-serif;
	font-size:12px;

}
.notice{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#999999;
	font-size:10px;
	text-align:right;
	padding-right:70px;
}
a.notice{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#999999;
	font-size:10px;
	text-align:right;
}