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

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: 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;
}
a, a:visited, a:active, a:hover { color:#0086C7 }
.twoColElsLtHdr #container {
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	width: 960px;
	margin: auto;
} 
.twoColElsLtHdr #header {
	background-color: #FFFFFF;
	margin-bottom: 15px;
} 
.twoColElsLtHdr #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 */
}
.twoColElsLtHdr #sidebar {
	float: left;
	width: 180px; /* since this element is floated, a width must be given */
	background: #9ec3d2; /* the background color will be displayed for the length of the content in the column, but no further. */
	padding-right: 10px;
	padding-left: 10px;
}
h3 {
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight:bold;
	color: #0086C7;
}
p {
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}
h1 {
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight:bold;
	color: #0086C7;
}
.twoColElsLtHdr #mainContent {
	padding-left: 220px;
	padding-right: 50px;
} 
.twoColElsLtHdr #container #sidebar li {
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.twoColElsLtHdr #footer {
	background-color: #FFFFFF;
	height: 60px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #0086C7;
	border-bottom-color: #0086C7;
	margin-top: 20px;
	text-align: center;
	font-size: .7em;
        font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
} 
/* Miscellaneous classes for reuse */
.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;
}
.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;
}

#bug {text-align: center; float: right; margin-left: 10px; margin-bottom: 10px; min-height: 150px; height: 150px; max-width: 125px; min-width: 125px; width: 125px; text-shadow: 2px 2px 5px #b9b9b9; font-weight: bold; font-size: 12px; font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
 }
#bug a {
 	color: black;
 	text-decoration: none;
 }

