/* CSS Document */
#wrapper {
	text-align: left;
	margin: auto;
	width: 798px;
	position: relative;
	
}

a {
	color:#00703A;
	text-decoration:none;
	
}
a:hover {
	color:#66CC00;
	text-decoration:underline
}
body, HTML {
	height:100%;
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	margin: 0;
	padding: 0;
	color: #000000;
	text-align: center;
}
#mast {
	background-color:#4F7116;
	border-bottom:#4F7116 solid 2px;
	height: 108px;
	background-image: url(images/interactive_mast.gif);
	background-repeat: no-repeat;
}
#nav {
	height:20px;
	width: 800px;
	float: right;
	z-index: 999;
	background-repeat: no-repeat;
	background-image: url(images/nav_bg.gif);
}
#links {
	height:20px;
	font-weight: bold;
	padding-top: 0px;
	width: 800px;
	float: left;
}

#footer { font-size:10px; color:#666666; padding-top:10px;}
#mediaContainer td {
	padding: 5px 0 0 0;
	font-size:10px
}
.twoColHybLtHdr #container {
	width: 997px;
	background: #FFFFFF;
	margin: 0 auto;
	border: 1px solid #999999;
	text-align: left;
	position: relative;
}

.twoColHybLtHdr #sidebar1 {
	float: left;
	width: 195px;
	background: #EBEBEB;
	vertical-align:top;
margin: 0 0 0 0;}
.twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #sidebar1 p {
	margin-left: 10px;
	margin-right: 10px;
}
.twoColHybLtHdr #mainContent {
	margin: 0 25px 0 18em;
	width:750px;
}
.twoColHybLtHdr #footer {
	padding: 0 10px;
	background:#DDDDDD;
}
.twoColHybLtHdr p {
	margin: 0;
	padding: 5px 0 0 0;
}
.header {
	font-size:16px;
	font-weight:bold
}
.catagoryTitle {
	font-size:18px;
	font-weight:bold;
	border-bottom:#999999 solid 1px;
	padding:20px 0 5px 0;
}
.catagorySubTitle {
	font-size:14px;
	font-weight:bold;
	border-bottom:#999999 solid 1px;
	padding:15px 0 0 0;
}
.catagoryBody {
	padding:5px 0 10px 0;
}
.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;
}
.date {
	color: #FFFFFF;
	padding-left: 10px;
	font-size: 10px;
	padding-bottom: 15px;
}

/*[if IE]>
<style type="text/css"> 
place css fixes for all versions of IE in this conditional comment
.twoColHybLtHdr #sidebar1 { padding-top: 30px; }
.twoColHybLtHdr #mainContent { zoom: 1; padding-top: 15px; }
 the above proprietary zoom property gives IE the hasLayout it may need to avoid several bugs 
</style>
<![endif]
 */
/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want!
All you have to do is ensure the script has the correct CSS property name
(like 'visibility' or 'display') that changes to show/hide menus.

If you want to extend this layout, one good resource for UL/LI formatting is:
    http://www.alistapart.com/articles/taminglists/
Alternatively, you can use any other CSS dropdown layout instead. More here:
    http://www.alvit.de/css-showcase/
Consult your favourite CSS reference for customising fonts/borders/etc.

Otherwise, you can just change the #RGB border/background colours where
suitable to customise for your site -- easy :).

*/



/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	margin: 0px 0px 0px 0px;
	padding: 1px 5px 0px 5px;
	list-style: none;
	height: 19px;
	background-color:#7CB816;
	background-image: url(images/nav_bg.jpg);
	background-repeat: no-repeat;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 8px; /* space between top menu and dropdown. I'm using ems and px to allow people to zoom their font */
 left: -1px;
 z-index: 9999;
/*width: 750px;*/
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: -1px; margin-top: 5px;
 left: 148px;

}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
	float: left;
	display: block;
	position: relative;
	/*background: #00984f;*/
	/*border: 1px solid #330;*/
	height:19px;
	margin-right: -1px;
	padding:0px 5px 0px 5px;
	
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
	
 padding: 2px 5px 0px 5px;
	color: #FFF;
	text-decoration: none;
	height: 19px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color: #336600;
	background-color: #6B9C16;
	padding:1px 5px 2px 5px;
	text-decoration: none;
	height: 19px;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #03793f;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */
