@charset "utf-8";
body  {
	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;
	background-image: url(images/wafflebackground.jpg);
	background-repeat: repeat;
	font-family: Calibri, calibri, verdana, arial;
	font-size: 100%;
	background-color: #FFFFFF;
}
.twoColFixLtHdr #container {
	width: 980px; /* the auto margins (in conjunction with a width) center the page */
	border: thick solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #d2e6f0;
} 
.twoColFixLtHdr #header {
	background-image: url(images/banner.jpg);
	height: 158px;
	width: 980px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-repeat: no-repeat;
} 
.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 #navbar {
	background-image: url(images/navbackground.jpg);
	height: 25px;
	width: 980px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-repeat: repeat-x;
	text-align: center;
	border-top-width: thick;
	border-right-width: thick;
	border-bottom-width: thick;
	border-left-width: thick;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	color: #FFFFFF;
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	background-image: none;
	background-repeat: repeat-x;
	background-position: bottom;
	margin: 0px;
	text-align: center;
	height: 100%;
	padding: 0px;
}
.twoColFixLtHdr #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
	background-color: #FFFFFF;
	padding: 20px;
	overflow: auto;
} 
.twoColFixLtHdr #mainContent a{
	color: #7786BF;
}
.twoColFixLtHdr #bannerpic {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 180px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
}


.twoColFixLtHdr #footer {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	text-align: right;
	color: #7786BF;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	font-size: 90%;
	text-decoration: none;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
.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;
}
.dropbox {
	width: 100px;
	border: thick solid #CCCCCC;
	background-color: #FFFFFF;
	margin: auto;
	padding: 7px;
}

.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;
}
h1 {
	font-family: Tahoma, calibri, verdana, arial;
	font-size: 160%;
	color: #71279A;
}
h2 {
	font-family: Calibri, Verdana;
	font-size: 110%;
	margin: 0px;
	padding: 0px;
	font-weight: bold;
}
h3 {
	font-family: Tahoma, calibri, verdana, arial;
	font-size: 110%;
	color: #71279A;
	padding-top: 10px;
	background-color: #D2E6F0;
	text-align: center;
	margin-top: 20px;
	padding-bottom: 10px;
}
h4 {
	font-family: Calibri, Verdana;
	font-size: 130%;
	margin: 0px;
	padding: 0px;
	color: #000000;
	text-align: right;
	font-weight: bold;
}
.style2 {
	font-size: 100%;
	font-family: Cambria, Georgia;
}
a:link {
	color: #ffffff;
	text-decoration: none;
	font-size: 100%;
	font-family: Calibri, calibri, verdana, arial;
}
a:visited {
	color: #ffffff;
	text-decoration: none;
	font-size: 100%;
	font-family: Calibri, calibri, verdana, arial;
}
a:hover {
	color: #ffffff;
	text-decoration: none;
	font-size: 100%;
	font-family: Calibri, calibri, verdana, arial;
}
a:active {
	color: #ffffff;
	text-decoration: none;
	font-size: 100%;
	font-family: Calibri, calibri, verdana, arial;
}
a.normal:link {
	color: #000000;
	text-decoration: none;
	font-size: 100%;
}
a.sidebar:link {
	color: #000099;
	text-decoration: underline;
	font-size: 100%;
	text-align: left;
}
a.sidebar:active {
	color: #000099;
	text-decoration: underline;
	font-size: 100%;
	text-align: left;
}
a.sidebar:visited {
	color: #000099;
	text-decoration: underline;
	font-size: 100%;
	text-align: left;
}
a.sidebar:hover {
	color: #000099;
	text-decoration: underline;
	font-size: 100%;
	text-align: left;
}
a.sidebar1:link {
	color: #000099;
	text-decoration: underline;
	font-size: 100%;
	text-align: left;
}
a.sidebar1:active {
	color: #000099;
	text-decoration: underline;
	font-size: 100%;
	text-align: left;
}
a.sidebar1:visited {
	color: #000099;
	text-decoration: underline;
	font-size: 100%;
	text-align: left;
}
a.sidebar1:hover {
	color: #000099;
	text-decoration: underline;
	font-size: 100%;
	text-align: left;
}
a.footer:link {
	color: #666666;
	text-decoration: underline;
	text-align: left;
}
a.footer:active {
	color: #666666;
	text-decoration: underline;

	text-align: left;
}
a.footer:visited {
	color: #666666;
	text-decoration: underline;

	text-align: left;
}
a.footer:hover {
	color: #666666;
	text-decoration: underline;

	text-align: left;
}

#LoginDiv
{
    float: left;
    width: 260px;
    height: 300px;
    display: block;
    margin: 20px 20px;
    _margin: 20px 10px;
    padding: 0;
}

.LoginPanel span
{
    display: block;
    width: 100px;
    float: left;
    clear: left;
	color: black;
	font-family: calibri, verdana, arial;
	font-size: 100%;
	margin-bottom: 5px;    
	margin-top: 3px;
}

#LoginDiv input
{
    width: 150px;
    float: right;
    margin-bottom: 5px;
}

#LoginDiv a
{
    display: inline;
	color: black;
    float: left;
    margin-top: 5px;
}

.LoginMessage
{
    width: 400px;
	color: black;
	font-family: calibri, verdana, arial;
	font-size: 100%;      
    margin-top: 20px;       
}




#FormContainer
{
	float: left;
	width: 400px;
	padding: 10px;
	font-family: calibri, verdana, arial;
	margin-left: 150px;
}

.FormLeft
{
    float: left;
    display: block;
    width: 150px;  
}

.FormRight
{
    float: right;
    display: block;
    width: 200px;   
}

.FormFullWidth
{
    float: left;
    width: 400px;   
}

.FormRow
{
    margin: 0;
    padding: 2px;
    width: 400px;
    display: block;  
    font-size: 100%; 
    float: left;
}

#SubmitClass
{
    margin-top: 25px;   
}

#SmallP
{
    font-size: 90%;
    width: auto;   
    font-family: arial;
	color: black;
	display: block;
	float: none;
	margin: 0;
	padding: 0;
}

.AspLabel
{
    font-weight: normal;
}

.AspLabel2
{
}

.AspText 
{
    font-weight: normal;
    font-family: calibri, verdana, arial; 
}

.AspText2
{
    font-family: calibri, verdana, arial; 
    width: 200px;
}

.AspText3
{
    height: 150px;
    width: 200px;
    font-family: calibri, verdana, arial; 
}


/* Accordion */

#AccDiv
{
	width: 740px;
	height: 360px;
	margin: auto;
	padding: 0;
	overflow: hidden;
	text-align: center;
}

.accordionHeader
{
	border: 1px solid #333333;
	color: RGB(75,75,75);
	background-color: #d2e6f0;
	font-family: Arial, Sans-Serif;
	font-size: 12px;
	font-weight: bold;
	cursor: pointer;
	width: 650px;
	text-align: center;
	overflow: hidden;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	margin: auto;
}

#master_content .accordionHeader a
{
	color: #FFFFFF;
	background: none;
	text-decoration: none;
	    overflow: hidden;

}

#master_content .accordionHeader a:hover
{
	background: none;
	text-decoration: underline;
	    overflow: hidden;

}

.accordionHeaderSelected
{
	border: 1px solid #333333;
	color: RGB(50,50,50);
	background-color: #954fa4;
	font-family: Calibri, Arial, Sans-Serif;
	font-size: 90%;
	font-weight: bold;
	padding: 5px;
	cursor: pointer;
	width: 650px;
	text-align: center;
	overflow: hidden;
	margin: auto;
}

#master_content .accordionHeaderSelected a
{
	color: #FFFFFF;
	background: none;
	text-decoration: none;
	    overflow: hidden;

}

#master_content .accordionHeaderSelected a:hover
{
	background: none;
	text-decoration: underline;
	overflow: hidden;
}

.accordionContent
{
	background-color: #FFFFFF;
	padding: 5px;
	width: 650px;
	font-family: Calibri, Arial;
	font-size: 90%;
	color: RGB(100,100,100);
	overflow: hidden;
    *width: 196px;
	margin: auto;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
}