@charset "UTF-8";
body  {
	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: justify; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #222222;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: lighter;
	line-height: 16px;
}
.thrColFixHdr #container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #header {
	background-color: #DDDDDD;
	background-image: url(images/header_inside_2.png);
	height: 150px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.thrColFixHdr #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 */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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 */
	background-color: #EEEEEE;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #990000;
	text-align: left;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 240px; /* 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 */
	background-color: #FFFFFF;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #990000;
}
.thrColFixHdr #mainContent {
	width: 440px;
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	text-align: justify;
} 
.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
} 
.thrColFixHdr #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;
}
.thrColFixHdr #menu {
	height: 100px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
	background-image: url(images/aline.png);
	background-position: bottom;
	background-repeat: no-repeat;
}
.thrColFixHdr #top {
	height: 90px;
	text-align: left;
	margin: 0px;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 15px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #990000;
	padding-bottom: 5px;
}
.thrColFixHdr  #headerin {
	background-color: #DDDDDD;
	background-image: url(images/header_inside_2.png);
	height: 150px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
}
a img {
 border: none;
}

ul.vert {
	background-color: #DDDDDD;
	width: 150px;
	padding: 0;
	margin: 0;
	list-style-type: square;
}

ul.vert li {
	display: inline;
}

ul.vert a {
	display: block;
	text-decoration: none;
	font-size: small;
	line-height: 0px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-top-color: #BBBBBB;
	border-right-color: #BBBBBB;
	border-bottom-color: #EEEEEE;
	border-left-color: #BBBBBB;
	border-bottom-style: solid;
	margin: 0px;
	font-weight: normal;
	background-color: #EEEEEE;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 5px;
}

ul.vert a:hover  {
	display: block;
	text-decoration: none;
	font-size: small;
	line-height: 0px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-top-color: #BBBBBB;
	border-right-color: #BBBBBB;
	border-bottom-color: #BBBBBB;
	border-left-color: #BBBBBB;
	border-bottom-style: solid;
	background-color: #EEEEEE;
	margin: 0px;
	font-weight: normal;
	color: #555555;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 5px;
}

  
