@charset "utf-8";

body {
	font: 14px Arial, Helvetica, sans-serif;
	/*background: #D4BF55;*/
	margin: 2px 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; 
	vertical-align: middle; 
}

.oneColElsCtrHdr #container {
	width: 900px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #ffffff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding:   0px 0px 0px 5px;
	/*border: 3px solid #7F0000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtrHdr #header { 
	background: #000000;
	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. */
} 
.oneColElsCtrHdr #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 */
}
.oneColElsCtrHdr #mainContent {
	/*background: url(img/line_heater.gif) no-repeat;*/
	padding: 3px 1px 0px 3px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0;
	border-top: 5px solid #D4BF55;
}
.oneColElsCtrHdr #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	border-top: 5px solid #000000;
	/*background: #000000;*/
	height: 50pt;
} 
.oneColElsCtrHdr #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 */
}

.boxborder {
	 border-left: 1px solid gray;
	 border-right: 1px solid gray;
	 background-color: #D4BF55;
	 padding: 3px;
}

.oneColElsCtrHdr #sidebar1 {
	float: left; 
	width: 140px; /* since this element is floated, a width must be given */
	background: #000000; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 40px 10px 20px 20px; /* top and bottom padding create visual space within this div */
	/* height: 1500px;*/
	margin: 0 10px 15px 0 ;
}

.oneColElsCtrHdr #sidebar1 td {
	color: #FFFFFF;
	font-size:14px;
	background-color: #7F0000;
}

.oneColElsCtrHdr #flt { /* 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: left;
	margin-left: 8px;
}

.fltx { /* 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: none;
	margin-right: 8px;
	border:none;
	text-align:text-bottom;
}

.fltr { 
	float: right;
	margin-left: 8px;
	border:none;
	text-align:text-bottom;
}

.fltl { 
	float: left;
	margin-right: 8px;
	border:none;
	text-align:text-bottom;
}

.flta { 
	float: right;
	margin-left: 8px;
	border:none;
	text-align:text-top;
	font-size: 12px;
	font-weight: normal;
}

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


ul  {
	list-style:square;
	margin-left:12pt;
}

h2  {  margin-bottom: 8pt; 
}

.glossymenu, .glossymenu li ul{
list-style-type: none;
margin: 0;
padding: 0;
width: 120px; /*WIDTH OF MAIN MENU ITEMS*/
border: 1px solid black;

}

.glossymenu li{
position: relative;
}

.listheight { 
	height: 3em; 
}

.glossymenu li a{
background: white url(img/glossyred.gif) repeat-x bottom left;
font: 11pt Arial, Verdana, Helvetica, sans-serif;
color: white;
display: block;
width: 100%;
padding: 5px 0px 5px 10px;
text-decoration: none;
}

.glossymenu li ul{ /*SUB MENU STYLE*/
position: absolute;
width: 210px; /*WIDTH OF SUB MENU ITEMS*/
left: 0;
top: 0;
display: none;
float: left;
}

.glossymenu li ul li{
float: left;
}

.glossymenu li ul a{
width: 200px; /*WIDTH OF SUB MENU ITEMS - 10px padding-left for A elements */
}

.glossymenu .arrowdiv{
position: absolute;
right: 1px;
background: transparent url(img/arrow.gif) no-repeat center right;
font: bold 14px Verdana, Arial;
}

.glossymenu li a:visited, .glossymenu li a:active{
color: white;
}

.glossymenu li a:hover{
background-image: url(img/glossyred2.gif);
}

/* Holly Hack for IE \*/
* html .glossymenu li { float: left; height: 1%; }
* html .glossymenu li a { height: 1%; }
/* End */