@charset "UTF-8";
.thrColAbsHdr #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 900px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #332f38;
} 

.thrColAbsHdr #header { 
	height: 240px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	background: #504359; 
	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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColAbsHdr #sidebar1 {
	position: absolute;
	top: 270px;
	left: 0;
	width: 140px; /* 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: #332f38; /* padding keeps the content of the div away from the edges */
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 30px;
}
.thrColAbsHdr #sidebar1 h4 {
	margin-top: 30px;
	margin-bottom: 4px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #CCCCCC;
}
.thrColAbsHdr #sidebar1 p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	font-size: 80%;
	line-height: 14px;
	margin-top: 0px;
	margin-bottom: 16px;
}
.thrColAbsHdr #sidebar2 {
	position: absolute;
	top: 270px;
	right: 0;
	width: 140px; /* 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: #332f38; /* padding keeps the content of the div away from the edges */
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 20px;
}
.thrColAbsHdr #sidebar2 h3 {
	margin-top: 0px;
	margin-bottom: 0px;
}
.thrColAbsHdr #mainContent {
	margin-top: 0;
	margin-right: 190px;
	margin-bottom: 0;
	margin-left: 180px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
.thrColAbsHdr #footer {
	background: #504359;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 10;
	padding-left: 20px;
} 
.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 */
}
.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;
}
a {
	color: #99ccb8;
}
a:hover {
	color: #FFCC33;
}
#menu ul {
	background-color: #9999FF;
	margin: 0px;
	float: left;
	width: 100%;
}
#menu li {
	float: left;
	list-style-type: none;	
}
#menu a {
	width: 12em;
	display: block;
	padding: 6px;
	margin-right: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	text-align: center;
	background-image: url(images/MenuGradient.png);
	background-repeat: repeat-x;
	font-weight: bold;
}
#foot ul {
	margin: 0px;
	float: left;
}
#foot li {
	display: block;
	padding: 0px;
	float: left;
	list-style-type: none;
}
#foot a {
	width: 20em;
	display: block;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
	text-align: center;
	font-size: 75%;
	padding: 6px;
	font-weight: bold;
}
h2 {
	color: #999999;
}
h5 {
	margin-top: 18px;
	margin-bottom: 4px;
	color: #999999;
}
p {
	font-size: 85%;
	line-height: 130%;
}
.clientList {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	margin-top: 0px;
	margin-bottom: 12px;
	color: #999999;
}
.sidebarNotation {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #99ccb8;
	margin-bottom: 4px;
	text-align: center;
}

