@charset "UTF-8";
/* CSS Document */

body  {
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	background: white;
	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;
	line-height: 1.2em;
}

h1
	{
		font-family: Arial, Helvetica, sans-serif;
		font-size: x-large;
	}
	
	h2
	{
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	font-style: italic;
	font-weight: normal;
	letter-spacing:0.25em;
	word-spacing:0.4em;
	color: #660033;
	}
	
	h3
	{
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	text-align:center;
	}
	
	.admin
	{
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	text-align:center;
	color: #660033;
	}
	
	p.footer{
	padding: 0;
	margin:0;
	text-align: center;
	background-color: none;
	clear: both;
	color: #333333;
	text-transform: uppercase;
	font-size: 9px;
	}
	
	#jumpMenu{
	float: left;
	margin: 20px 0 0 0 ;
	display: block;
	width: 160px;
	background: white;
	text-align: left;
	}


/*Begin Combined Elements*/
#footerWrapper, 
#container2 { 
	background: none;/*this changes the background behind the banner and nav bar, footer and side bars. It keeps color schemes consistent without haveing to change multiple elements.*/
	color: #333333;
	margin: 0px;
	padding: 0px;
	}
	
#sidebar1{
background: none;
}

 
	
	#sidebar2 { 
	border-left: #660033 1px solid;
	background: none;
	}
	
	
	#secondarynav ul li a, 
#secondarynav3 ul li a{
color: #660033;	
background: white;
border: #660033 1px solid;
display: block;
}

#secondarynav ul li ul a, 
#secondarynav3 ul li ul a{
color: white;	
background: #666666;
border:1px #660033 solid;
display: block;
}

#container2 {
	margin: 0 auto;
	border-bottom: 1px #660033 solid;
}

#largeContainer{
margin-top: 0px;
}

/*End Combined Elements*/


/*!BEGIN One column Design*/

.oneColFixCtrHdr #container {
	width: 800px; 
	background:none; 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr #container3 {
	width: 800px; 
	background-color: #FFF; 
	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. */
}

.oneColFixCtrHdr #header {
	width: 800px;
	background: white; 
	padding: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. */
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: none;
	margin: 0 auto;
	min-height: 600px;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
}
.oneColFixCtrHdr #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 */
}

/*!End One column Design*/

/*!BEGIN Two column Left Design*/

.twoColFixLtHdr #container { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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 #container3{
	width: 800px; 
	background-color: #FFF; 
	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 { 
	padding: 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. */
} 

.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 */
	padding: 0px;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 250px; /* 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 20px 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height: 500px;
} 
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.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;
}

/*!End Two column Left Design*/

/*!BEGIN Two column Right Design*/
.twoColFixRtHdr #container {
	width: 800px; 
	background-color: #FFF; 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.twoColFixRtHdr #container3 {
	width: 800px; 
	background-color: #FFF; 
	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. */
}

.twoColFixRtHdr#header {
	width: 800px;
	background: #DDDDDD; 
	padding: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. */
}

.twoColFixRtHdr #sidebar1 {
	float: right; /* 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 */
	padding: 0px;
	margin-top: 15px;
}
.twoColFixRtHdr #mainContent { 
	margin-left:0px; /* the right margin on this div element creates the column down the right 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. */
	margin-right:250px;
	padding-right: 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-top: 20px;
} 
.twoColFixRtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 
.twoColFixRtHdr #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 */
}

.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;
}
/*!End Two column Right Design*/

/*!BEGIN Three column Design*/
.thrColAbsHdr #container { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
} 



.thrColAbsHdr #container3{
	width: 800px; 
	background-color: #FFF; 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}

.thrColAbsHdr #container4 { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
} 

.thrColAbsHdr #header { 
	background: white; 
	padding: 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. */
} 

.thrColAbsHdr #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 */
}
.thrColAbsHdr #sidebar1 {
	float: left;
	width: 200px;
}
.thrColAbsHdr #sidebar2 {
	float: right;
	width: 165px; /* 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 */
	min-height: 600px;
	padding-left: 10px; /* padding keeps the content of the div away from the edges */
}

.thrColAbsHdr #sidebar2 ul{
margin-left: -15px;
}

.thrColAbsHdr #sidebar2 h3{
margin-bottom: 0px;
}


.thrColAbsHdr #mainContent { 
	margin-right: 170px;
	margin-left: 205px;
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.thrColAbsHdr #sideContent{
	font-size: 11px;
	color: white;
	display: block;
	padding: 1px 4px 1px 4px;
	border: #999999 1px solid;
	background: #660033
}

.thrColAbsHdr #sideContent a{
	font-size: 11px;
	color: white;
	text-decoration: none;
	}
	
.thrColAbsHdr #sideContent a:hover{
	text-decoration: underline;
	}
	
.thrColAbsHdr #sideContent h3{
	margin-left: -10px;
	}

.thrColAbsHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	
} 
.thrColAbsHdr #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 */
}

.bold
{
	font-size: 14px;
	font-weight: bold;
	color: #660033;
}

