@charset "utf-8";
body  {
	font: Verdana, Arial, Helvetica, sans-serif;
	background: #d3c5d2;
	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;
	font-size: 11px;
	
	background-repeat:repeat;
}

h3 {
color:#3e2583; font-weight:bold; margin: 10px 0px 5px 0px;
}

TD.blueGreyHeaderBox {
	border: 1px solid #a1a1a1;
	color: #000000;
	vertical-align:top;
}

INPUT.TEXT{ 
	background: #C04ADB;
	color : #FFFFFF;
	border: 1px solid black;
	font: 10px 'Trebuchet MS',Verdana,Tahoma,Arial,Helvetica;
}

Input.SELECT {
	background: #C04ADB;
	color : #FFFFFF;
	border: 1px solid black;
	font: 10px 'Trebuchet MS',Verdana,Tahoma,Arial,Helvetica;

}

a {
color: #990099;
}


a:Hover {
color: #333333;
}

.twoColFixLtHdr #container1 {
background-image:url(/images/black_sidemenu_bg.jpg);

}


.twoColFixLtHdr #container {
	width: 998px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #CD99CC;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-right: 1px solid #000000;
	border-left: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */

} 
.twoColFixLtHdr #header { 
	background: #E4D8E4;
	background-image:url(images/header_bg.jpg);
	background-repeat:repeat-x;
	padding: 0;
	margin: 0;
	text-align:center;
	height:100px;
	border-bottom: 1px solid #000000;
} 

.twoColFixLtHdr #HeadContainer {
	width: 998px; 
	padding: 0;
	margin: 0;
	text-align:center;
} 


.twoColFixLtHdr #sidebar1 {
	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 */
	background: #CD99CC; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	font-size: 11px;
	font-family: Verdana,Tahoma,Arial,Helvetica;
	margin:0;
}


.twoColFixLtHdr #sidebarContent {
	padding: 8px 7px 15px 13px;
}

.twoColFixLtHdr H1 {
	margin: 0;
	padding: 10px 0;
	font-weight: bold;
		font-size: 15px;
	font-family: Verdana,Tahoma,Arial,Helvetica;
}


.twoColFixLtHdr #sidebar1 H1 {
	margin: 0;
	padding: 10px 0;
	color: #ffffff;
	font-weight: bold;
		font-size: 11px;
	font-family: Verdana,Tahoma,Arial,Helvetica;
}


.twoColFixLtHdr #mainContent {
	padding: 10px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 10px 10px 0 200px;
	font-size: 12px;
	font-family: Verdana,Tahoma,Arial,Helvetica;
	line-height:125%;
} 

.twoColFixLtHdr #mainContentAdmin {
	padding: 10px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 10px 10px 0 10px;
	font-size: 12px;
	font-family: Verdana,Tahoma,Arial,Helvetica;
	background-color:#FFFFFF;
	line-height:135%;
} 

.twoColFixLtHdr #mainContent2 {
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 10px 10px 0 200px;
	font-size: 12px;
	font-family: Verdana,Tahoma,Arial,Helvetica;
	background-color:#FFFFFF;
	line-height:135%;
} 

.twoColFixLtHdr #mainContentMiva {
	padding: 10px 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #FFFFFF;
	margin: 10px 10px 0 200px;
	min-height: 500px;
	font-size: 11px;
	font-family: Verdana,Tahoma,Arial,Helvetica;
} 


.twoColFixLtHdr #topNav {
	margin: 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. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height: 31px;
} 


.twoColFixLtHdr #footer { 
	padding: 10px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#E4D8E4;
	background-image:url(images/footer_bg.jpg);
	background-repeat:repeat-x;
	text-align:center;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	height: 100%;
	height:100px;
} 

.twoColFixLtHdr #footContainer {
	width: 998px; 
	padding: 0;
	margin: 0;
	text-align:center;
	font-family:Verdana, Arial, Helvetica, sans-serif;
} 


.twoColFixLtHdr #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 */
}
.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;
}


.tableForms th{border-bottom:1px solid #889399;border-right:1px solid #FFF;padding:0 10px;background:url("/images/tableTH_bkg.gif") repeat-x;vertical-align:middle;height:24px;text-align:center; color:#000000;}
.tableForms td{padding:5px;border-right:1px solid #E5E5E5;border-bottom:1px solid #E5E5E5;line-height:1.2em;vertical-align:top; text-align:left;}
.tableForms th.collapse,.tableForms td.collapse{padding:0;width:21px;}
.tableForms td.collapse{border-right:none;}
.tableForms td.lastColumn{border-right:none;}
.tableForms th.first{text-align:left;}
.tableForms td.lastRow{padding:10px 10px 5px 10px;vertical-align:top; text-align:center; border-right:none; background-color:#EEEEEE}
/*.tableForms tr.altRow{background-color:#eef6ee} */
.tableForms tr.altRow{background-color:#FFEEFF;} 
.tableForms tr.breakRow{background-color:#DDDDDD} 



.tableinstructions td{padding:5px;line-height:1.2em;vertical-align:top; text-align:left;}
.tableinstructions th.collapse,.tableCat td.collapse{padding:0;width:21px;}
.tableinstructions td.collapse{border-right:none;}
.tableinstructions tr {border-bottom:1px solid #333333;}

.tableCat td{padding:5px;line-height:1.2em;vertical-align:bottom; text-align:center}
.tableCat th.collapse,.tableCat td.collapse{padding:0;width:21px;}
.tableCat td.collapse{border-right:none;}


.tableCat2 td{padding:5px 20px; border:1px solid #ffffff;line-height:1.2em;vertical-align:bottom; text-align:center}
.tableCat2 th.collapse,.tableCat2 td.collapse{padding:0;width:21px;}
.tableCat2 td.collapse{border-right:none;}
.tableCat2 td.mainRow{min-height:120px; height:120px; border-bottom:none;}
.tableCat2 td.altRow{ border-top:none;} 
.tableCat2 tr.breakRow{background-color:#DDDDDD} 