@charset "UTF-8";
body  {
	font: 16px Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
}

#subheader {
	background-color:#666;
	width:100%;
	height:30px;
	text-align:center;
	vertical-align:middle;
}

h1 {
	text-align:center;
	line-height: 150%;
	font:Georgia, "Times New Roman", Times, serif;
	font-size:24px;
}

h2{
	text-align:center;
	font:Georgia, "Times New Roman", Times, serif;
	font-size:16px;
}

h3 {
	font:Arial, Helvetica, sans-serif;
	font-size:16px;
}

h4 {
	font:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	font-weight:normal;
	font-style:italic;
}

p {
	font:Georgia, "Times New Roman", Times, serif;
	font-size:12px;
}

.thrColAbsHdr #container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #ebebeb;
	margin: 0 auto 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 5px double #6e6323;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #header { 
	height: 230px;
	background: white; 
	padding: 0 10px 0 20px;  /* 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. */
	margin:0;
	color:#6e6323;
} 
.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 {
	position: relative;
	float:left;
	width: 150px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
	color:#333;
	margin:0;
}

.thrColAbsHdr #sidebar1 a{
	color:#6e6323;
	text-decoration:none;
}

.thrColAbsHdr #sidebar1 a:hover{
	text-decoration:underline;
}

.thrColAbsHdr #sidebar2 {
	position:relative;
	float:right;
	width: 150px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
	right:0;
	color:#333;
}

.thrColAbsHdr #sidebar1 ul{
	list-style:none;
	margin:0;
	padding:0;
}

.thrColAbsHdr #sidebar1 ul li{
	color: #6e6323;
	margin:0;
	padding-left:25px;
	line-height:200%;
	background:url(images/checkbox_1.png) no-repeat 0 0;
	font-size: 12px;
	font-weight:bold;
}

.thrColAbsHdr #sidebar2 a{
	color:#6e6323;
	text-decoration:underline;
}

.thrColAbsHdr #sidebar2 a:hover{
	text-decoration:none;
}

.thrColAbsHdr #sidebar2 ul{
	list-style:none;
	margin:0;
	padding:0;
}

.thrColAbsHdr #sidebar2 ul li{
	color: #6e6323;
	margin:0;
	padding-left:25px;
	line-height:200%;
	background:url(images/checkbox_1.png) no-repeat 0 0;
	font-size: 12px;
	font-weight:bold;
}


.thrColAbsHdr #mainContent { 
	font:Georgia, "Times New Roman", Times, serif;
	font-size:12px;
	margin: 0 180px 0 180px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 15px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align:justify;
	background-color:white;
	height:1000px;

}

.thrColAbsHdr #mainContent li{
	line-height:175%;
}

.thrColAbsHdr #mainContent a{
	text-decoration:none;
	color:#6e6323;
}

.thrColAbsHdr #mainContent a:hover{
	text-decoration:underline;
}

.footer { 
	padding: 10px 0 10px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	margin:0;
	height:20px;
	width: 100%;
	text-align:center;
	font-size:12px;
} 

.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;
}
	
	

	/***********************************************************************************************
	
	Copyright (c) 2005 - Alf Magne Kalleland post@dhtmlgoodies.com
	
	Get this and other scripts at www.dhtmlgoodies.com
	
	You can use this script freely as long as this copyright message is kept intact.
	
	***********************************************************************************************/
	
	.bodyText{
		padding-left:10px;
		padding-right:10px;
		border-top:1px solid white;	
	}
	.bodyText p{
		margin-top:5px;
	}
	#mainContainer{
		width:760px;
		height:600px;
		border:1px solid white;
		margin:0 auto;
		padding-top:85px;	
	}
	#mainMenu{
		background-color: #6e6323;	/* Background color of main menu */
		color: white;
		text-align:center;
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Fonts of main menu items */
		font-size:0.9em;	/* Font size of main menu items */
		border-bottom:1px solid white;	/* Bottom border of main menu */
		height:30px;	/* Height of main menu */
		position:relative;	/* Don't change this position attribute */
		
	}
	#mainMenu a{
		padding-left:8px;	/* Spaces at the left of main menu items */
		padding-right:8px;	/* Spaces at the right of main menu items */
		padding-top:3px;
		font-weight:bold;
		/* Don't change these two options */
		position:absolute;
		bottom:-2px;	/* Change this value to -2px if you're not using a strict doctype */
		text-decoration:none;
	}
	#submenu{		
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font  of sub menu items */
		background-color: #666;	/* Background color of sub menu items */
		width:100%;	/* Don't change this option */
	}	
	
	#submenu div{
		white-space:nowrap;	/* Don't change this option */
		
	}
	/*
	Style attributes of active menu item 
	*/
	#mainMenu .activeMenuItem{
		/* Border options */
		border-left:1px solid white;
		border-top:1px solid white;
		border-right:1px solid white;		
		background-color: #666;	/* Background color */
		color: white;
		
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	
	#mainMenu .activeMenuItem img{
		position:absolute;
		bottom:0px;
		right:0px;
	}
		
	/*
	Style attributes of inactive menu items
	*/
	#mainMenu .inactiveMenuItem{		
		color: white;	/* Text color */
		cursor:pointer;	/* Cursor like a hand when the user moves the mouse over the menu item */
	}
	
	#submenu a{	
		text-decoration:none;	/* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
		padding-left:5px;	/* Space at the left of each sub menu item */
		padding-right:5px;	/* Space at the right of each sub menu item */
		color: #999;	/* Text color */
		font-size:0.9em; 
	}
	
	#submenu a:hover{
		color: white;	/* Red color when the user moves the mouse over sub menu items */
	}
	

