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

body{
	font: 100% Arial, Helvetica, sans-serif;
	background: #999999;
	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;
}

ul, li, img, html
{
	margin: 0;
	padding: 0;
}

#container {
	width: 780px;
	margin-top: 0.5em;
	margin-bottom:1em;
	margin-left: auto;
	margin-right: auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow: hidden;
} 

/* THIS STARTS THE SIDEBAR NAVIGATION SHOWN ON ALL PAGES EXCEPT THE HOME PAGE */

#sidebar {
	width:140px;
	float: left;
	margin-left: 1.5em;
	margin-top: 2em;
}

#sidebar ul#nav li {
	text-align: right;
	padding-right: .5em;
	line-height: 2.5em;
	font-size: .75em;
	list-style-image: none;
	list-style-type: none;
}

ul#nav li a{
	color: #fff;
	text-decoration: none;
}

#nav li a:hover {
	color: #014B34;
    font-weight: bold;
	text-decoration: none;
}

#sidebar ul#nav li#in a{
     color: #014B34;
     font-weight: bold;
     font-size: 1.1em;
}

#sidebar ul#nav li#in a:hover{
     color: #fff;
     font-weight: bold;
     font-size: 1.1em;
}

#header {
	padding: 0 10px 0 20px;  
} 

#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 */
}

/* BEGIN PRODUCT DESCRIPTION STYLING */

#product{
	overflow: auto;
	width: 46%;
	margin-bottom: 0.25em;
}

/*
#product p{
        border-top: 1px solid;
        padding-top: 1em;
}
*/

#product h1{
	text-align: left;
	color:#666;
	font-size: 1.1em;
	margin-top: .1em;
	margin-bottom: .5em;
	font-weight: normal;
	border-bottom: 1px solid;
    padding-bottom: 1em;
}

#product h2{
	text-align: left;
	color:#666;
	font-size: 1em;
	margin-top: .1em;
	margin-bottom: .25em;
	font-weight: normal;
}



/* DEFINE THE ACTIVE STATE OF THE FOOTER LINK ELEMENTS*/

#active a:link, #active a:visited, #active a:visited {
	color:#063;
	padding-top: .2em;
	padding-left: .25em;
	padding-right: .25em;
    font-weight: bold;
}


#active a:hover {
	background: none;
	font-weight: normal;
}

/* DEFINE THE THE FOOTER ELEMENTS*/

#footer {
	margin-top: 1em;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #F0F0EC;
	clear: both;
} 


#footer {
	text-align: center;
	line-height: 1.2em;
	font-size: .75em;
	list-style-image: none;
	list-style-type: none;
}

#footer a
{
	color: #444444;
	text-decoration: none;
}

#footer a:hover
{
	color: #014B34;
	text-decoration: none;
	font-weight: bold;
}


#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: 0px;
}
.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;
}


