/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	margin: 0px;
	padding: 0px 0px 0px 0px;
	list-style: none;
	margin: 0px 0px 0px 0px;
	color:#FFFFFF;
	border:none
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	left: 0px;
	width: 180px;
	margin: 0px 0px 0px 0px;
}

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

/*
 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-image: url(images/navBg.png);*/
	background-color: #0E405F;
	border: 0px solid #330;
	margin-right: 0px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

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

/* Links inside the menu */
.menulist a {
	display: block;
	padding: 6px 18px 6px 12px;
	color: #FFF;
	text-decoration: none;
	/*height:23px; NEED TO FIGURE OUT HOW TO DO THIS WOUT HEIGHT*/
	margin: 0px 0px 0px 0px;
	border:none;
}
/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color: #FFF;
	background-color: #0C3650;
	border:none;
}
.menulist a.highlighted {
	color: #FFF;
	background-color: #000;
	border:none
	/*background-image: url(images/navBgOver.png);*/
 }

/*
 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);
    }
*/

.menulist a#nav1 {
	background-image: url(/images/nav/btn1.png);
	padding: 0px;
	margin: 0px 0px 0px 0px;
}
.menulist a#nav1:hover, .menulist a.highlighted#nav1, .menulist a:focus#nav1 {
	background-image: url(/images/nav/btn1_f2.png);
	padding: 0px;
}
.menulist #nav1On {
	background-image: url(/images/nav/btn1On.png);
	padding: 0px;
	margin: 0px 0px 0px 0px;
}
.menulist a#nav2 {
	background-image: url(/images/nav/btn2.png);
	padding: 0px;
}
.menulist a#nav2:hover, .menulist a.highlighted#nav2, .menulist a:focus#nav2 {
	background-image: url(/images/nav/btn2_f2.png);
	padding: 0px;
}
.menulist #nav2On {
	background-image: url(/images/nav/btn2On.png);
	padding: 0px;
	margin: 0px 0px 0px 0px;
}
.menulist a#nav3 {
	background-image: url(/images/nav/btn3.png);
	padding: 0px;
}
.menulist a#nav3:hover, .menulist a.highlighted#nav3, .menulist a:focus#nav3 {
	background-image: url(/images/nav/btn3_f2.png);
	padding: 0px;
}
.menulist #nav3On {
	background-image: url(/images/nav/btn3On.png);
	padding: 0px;
	margin: 0px 0px 0px 0px;
}
.menulist a#nav4 {
	background-image: url(/images/nav/btn4.png);
	padding: 0px;
}
.menulist a#nav4:hover, .menulist a.highlighted#nav4, .menulist a:focus#nav4 {
	background-image: url(/images/nav/btn4_f2.png);
	padding: 0px;
}
.menulist #nav4On {
	background-image: url(/images/nav/btn4On.png);
	padding: 0px;
	margin: 0px 0px 0px 0px;
}
.menulist a#nav5 {
	background-image: url(/images/nav/btn5.png);
	padding: 0px;
}
.menulist a#nav5:hover, .menulist a.highlighted#nav5, .menulist a:focus#nav5 {
	background-image: url(/images/nav/btn5_f2.png);
	padding: 0px;
}
.menulist #nav5On {
	background-image: url(/images/nav/btn5On.png);
	padding: 0px;
	margin: 0px 0px 0px 0px;
}
.menulist a#nav6 {
	background-image: url(/images/nav/btn6.png);
	padding: 0px;
}
.menulist a#nav6:hover, .menulist a.highlighted#nav6, .menulist a:focus#nav6 {
	background-image: url(/images/nav/btn6_f2.png);
	padding: 0px;
}
.menulist #nav6On {
	background-image: url(/images/nav/btn6On.png);
	padding: 0px;
	margin: 0px 0px 0px 0px;
}
.menulist a#nav7 {
	background-image: url(/images/nav/btn7.png);
	padding: 0px;
}
.menulist a#nav7:hover, .menulist a.highlighted#nav7, .menulist a:focus#nav7 {
	background-image: url(/images/nav/btn7_f2.png);
	padding: 0px;
}
.menulist #nav7On {
	background-image: url(/images/nav/btn7On.png);
	padding: 0px;
	margin: 0px 0px 0px 0px;
}

/* 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 *+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*+html .menulist ul li {
 float: left;
 height: 1%;
}
*+html .menulist ul a {
 height: 1%;
}
* html .menulist ul li {
 float: left;
 height: 1%;
}

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

.image {
 margin:0px 0px 0px 0px;
 padding:0px 0px 0px 0px;
 border:0px;
}
