@charset "UTF-8";
/* CSS Document */
/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
html,body,p,div,img,h1,h2,h3,h4,li,ul,ol,dl,dd,dt,form,table,td,tr{
	margin:0px;
	padding:0px;
	border-collapse:separate;
	border-spacing:0px;
	border-top-width: medium;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: medium;
	border-top-color: #8A9DA3;
	border-bottom-color: #8A9DA3;
	text-align: left;
	color: #000;
	font-weight: normal;
}
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #fff; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	text-align: left;
}
p {
	margin-top: 5px;
	margin-bottom: 10px;
}
a {
	color: #375E37;
}
a:hover, a:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
h1 {
	margin-top: 25px;
	margin-bottom: 10px;
	color: #8A9DA3;
	font-size: 20px;
	font-weight: bold;
	text-align: right;
}
h2 {
	color: #8A9DA3;
	font-size: 16px;
	font-weight: bold;
	margin-top: 5px;
	margin-bottom: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
h3 {
	font-size: 14px;
	font-weight: bold;
	color: #375E37;
	margin: 0px;
	padding-top: 5px;
	padding-bottom: 7px;
}
h4 {
	font-size: 18px;
	font-weight: bold;
	color: #375E37;
	margin-top: 5px;
	margin-bottom: 10px;
}
ul {
	margin-left: 20px;
	
}
li {
	margin-bottom: 10px;
}

#container {
	width: 960px;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header {
	background-color: #fff;
}
#header img {
	border: none;
	padding: 10px 0px;
}

#mainContent {
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 190px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
#footer {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #8A9DA3;
	margin-top: 10px;
} 
#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 */
	font-size: 11px;
}
.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;
	border: medium solid #8A9DA3;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	padding-bottom: 0px;
	border: medium solid #899DA3;
	margin-bottom: 10px;
}
.fltrt-noborder {
	float: right;
	margin-left: 8px;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
}
.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;
}

/*TOP NAV BEGIN*/

#nav {
	height: 40px;
	color: #8A9DA3;
	background-color: #fff;
	position:relative; 
	z-index:100;
}

#nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav ul li {
	float: left;
	position: relative;
	/*width: 10em;*/
	width: 115px;
	margin-right: 5px;
	line-height: 35px;
	margin-bottom: 10px;
}
#nav ul li.overOneLine { /* use class if text is forced to two lines */
	line-height: normal;
	width: auto;
}

#nav ul a {
	display: block;
	text-decoration: none;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	margin: 0px;
	font-weight: normal;
	font-size: 13px;
	text-align: center;
	height: 35px;
	vertical-align: middle;
	background-color: #fff;
	border: 1px solid #8A9DA3;
	-webkit-border-radius: 10px; 
	-moz-border-radius: 10px;
	border-radius: 10px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html #nav ul a, * html #nav ul a:visited {width:115px; w\idth:115px;}

#nav ul a:link, #nav ul a:visited {
	color: #8A9DA3;
}
#nav ul a:hover,#nav ul a:active {
	color: #fff;
	background-color: #8A9DA3;
}


/* another hack for IE5.5 */
* html #nav li ul {top:40px;t\op:41px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#nav ul table {position:absolute; top:0; left:0; border-collapse:collapse;}

#nav ul ul {
	visibility: hidden; /* hides dropdown menus from view */
	position: absolute;
	height: 0;
	top: 40px;
	left: 0;
	width: 240px;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 9px;
	margin-top: 0px;
}
#nav ul ul li {
	margin-right:0px;
	line-height: normal;
	width: 200px;
	margin-bottom: 0px;
}
#nav ul ul a {
	font-weight: normal;
	color: #fff;
	background-color: #8A9DA3;
	padding-bottom: 3px;
	padding-top: 3px;
	padding-left: 2px;
	margin: 0;
	text-align: left;
	-webkit-border-radius: 0px;
	-moz-border-radius:  0px;
	border-radius:  0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #fff;
}
#nav ul ul a:link, #nav ul ul a:visited{
	color: #fff;
	height: auto;
}
#nav ul ul a:hover, #nav ul ul a:hover{
	color: #099;
	height: auto;
}

/* make the second level visible when hover on first level list OR link */
#nav ul li:hover ul, #nav ul a:hover ul{
	visibility:visible; 
}
/*TOP NAV END*/

/* BEGIN LEFT SIDEBAR */
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px;
	padding-top: 10px;
	padding-bottom: 15px;
	background-color: #FFF;
	margin-top: 15px;
}
#sidebar1 a {
	display: block;
	background-color: #FFF;
	color: #8A9DA3;
	text-decoration: none;
	padding: 5px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #8A9DA3;
	border-bottom-color: #8A9DA3;
}
#sidebar1 a:hover, #sidebar1 a:active, #sidebar1 a#current {
	display: block;
	background-color: #999;
	color: #587497;
	border-top-color: #8A9DA3;	
}
#sidebar1 h3 {
	padding-left: 5px;
	padding-right: 5px;
}
/* END LEFT SIDEBAR */

/* BEGIN RIGHT SIDEBAR */
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px;
	padding-top: 10px;
	padding-right: 7px;
	padding-bottom: 15px;
	padding-left: 7px;
	margin-top: 15px;
	border: 1px solid #8A9DA3;
	background-image: url(../images/onions.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#sidebar2 #address{
	color: #000;
	padding-top: 5px;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #375E37;
}
#sidebar2 #title {
	text-align: center;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #375E37;
	display: block;
}
/* END RIGHT SIDEBAR */
#container #mainContent p a strong {
	color: #FF0080;
}
#container #mainContent h3 a strong {
	color: #FF0080;
}

/* POP UP WINDOW STYLES */
.popUp  {
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}

