@charset "utf-8";
body {
	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: #333333;
	background-image: url(images/bg.jpg);
	background-repeat: repeat-x;
	font-family: Arial, sans-serif;
	font-size: 1em;
}
h1 {
	margin: 0;
	padding: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #333333;
	font-weight: normal;
}
h2 {
	margin: 0;
	padding: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #0000FF;
	font-size: large;
	font-weight: normal;
}
h3 {
	margin: 15px 0 0 0;
	padding: 0;
	color: #008000;
	font-weight: normal;
}
img {
	border: none;
}
sup {
	font-size: 60%;
	line-height: 1;
}
h1 sup {
	font-size: 40%;
}
.no_top_margin {
	margin-top: 0px;
}
a:link {
	color: #555;
}
a:visited {
	color: #555;
}
a:hover {
	color: #FF0000;
}
/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.oneColElsCtrHdr #container {
	width: 900px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0;
}
.oneColElsCtrHdr #container #header {
	padding: 0;  /* 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. */
	height: 170px;
	margin: 0;
} 
.oneColElsCtrHdr #container #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 #container #header #logo {
	margin: 30px 0 0 0;
	padding: 0;
	width: 178px;
	background: none;
	background-image: url(images/logo.png);
	height: 120px;
	float: left;
}
.oneColElsCtrHdr #container #header #address {
	margin: 40px 0 0 0;
	padding: 0 20px 0 0;
	width: 210px;
	background: none;
	float: right;
	text-align: right;
	font-size: 120%;
}
.oneColElsCtrHdr #container #header #navigation {
	margin: 85px 0 0 35px;
	padding: 0;
	width: 450px;
	background: none;
	float: left;
	background-repeat: no-repeat;
}
.oneColElsCtrHdr #mainContent {
	padding: 15px 20px 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColElsCtrHdr #footer {
	background:#eee;
	height: 150px;
	padding: 0;
	margin: 0;
	width: 100%;
} 
.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 */
}
.oneColElsCtrHdr #container #header #navigation ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.oneColElsCtrHdr #container #header #navigation ul li {
	list-style-type: none;
	float: left;
	margin: 0;
	border-right: solid 1px #ccc;
	padding: 0 20px 0 20px;
	vertical-align: middle;
	line-height: 50px;
}
.oneColElsCtrHdr #container #header #navigation ul li a {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: large;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: normal;
	letter-spacing: 1px;
}
.oneColElsCtrHdr #container #header #navigation ul li a:hover {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: large;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: normal;
	letter-spacing: 1px;
	color: #333;
}
.oneColElsCtrHdr #container #header #navigation ul .home a {
	color: #0000FF;
}
.oneColElsCtrHdr #container #header #navigation ul .about a {
	color: #FF0000;
}
.oneColElsCtrHdr #container #header #navigation ul .contact a {
	color: #008000;
}
.oneColElsCtrHdr #container #header #navigation ul .contact {
	margin: 0px;
	border: none;
}
.oneColElsCtrHdr #container #mainContent #left_sidebar {
	margin: 12px 0 25px 0;
	float: left;
	width: 245px;
}
.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;
}
.oneColElsCtrHdr #container #mainContent #right_content {
	margin: 0 0 25px 250px;
	border-left: solid 1px #ddd;
	padding: 0 0 0 15px;
}
.oneColElsCtrHdr #footer #footer_content {
	margin: 0 auto;
	width: 900px;
	text-align: left;
	padding: 20px 0 0 0;
	font-size: 80%;
	color: #777777;
}
.oneColElsCtrHdr #container #mainContent #left_sidebar ul {
	list-style-type: none;
	margin: 15px 0 5px 0;
	padding: 0 25px 0 5px;
}
.oneColElsCtrHdr #container #mainContent #left_sidebar ul li {
	margin: 0px;
	padding: 8px 0 11px 10px;
	border-top: solid 1px #eeeeee;
}
.oneColElsCtrHdr #footer #footer_content table tr td ul {
	margin: 0px;
	list-style: none;
	padding: 10px 0 10px 0;
}
.oneColElsCtrHdr #footer #footer_content table tr td ul li a {
	text-decoration: none;
	color: #777777;
}
.oneColElsCtrHdr #footer #footer_content table tr td ul li a:visited {
	text-decoration: none;
	color: #777777;
}
.oneColElsCtrHdr #footer #footer_content table tr td ul li a:active {
	text-decoration: none;
	color: #777777;
}
.oneColElsCtrHdr #footer #footer_content table tr td ul li a:hover {
	text-decoration: underline;
}
.oneColElsCtrHdr #container #mainContent #right_content ul li {
	margin: 0 0 10px 0;
	padding: 0;
}
.oneColElsCtrHdr #container #mainContent #right_content .flt_right {
	margin: 0 0 15px 0;
	padding: 0px;
	float: right;
	width: 100%;
	text-align: right;
}
.oneColElsCtrHdr #container #mainContent #right_content .li_no_margin li{
	margin: 0px;
}
