/* MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	font-family:Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	font-weight:bold;
	font-size:14px;
	padding-left:5px;
	margin: 0px;
	width: 170px;
	list-style: none;
}

/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
.menulist ul {/*Menu Background*/
	display: none;
	position: absolute;
	top:0px;
	left: 170px;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist li, .menulist a {/*Menu Parent Link*/

 position: relative;
 background-image:url(../images/line.gif);
 background-position:bottom;
 background-repeat:repeat-x;
  /*background:#336699;*/
 margin-bottom: -1px;
 margin-top:-1px;

 }
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a:link, .menulist a:visited {
 display: block;
 padding: 8px 8px 8px 20px;
 color:#ffffff;
 text-decoration: none;
 background-image:url(../images/icon.gif);
 background-repeat:no-repeat;
 background-position:4px 10px;
}

.menulist a:active {
	/*background:#FF9900;*/
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus, .menulist a.highlighted {
 color:#660000;
 /*background:#4876A3;*/
 text-decoration:none;
}

.menuSubList li{
	list-style-type:none;
	background-image:none;

}

.menuSubList a, .menuSubList a:link, .menuSubList a:visited, .menuSubList a:active{
	background-color:#CC6600;
	border: 1px solid #ffffff;
	font-size:12px;
	list-style-type:none;
	background-image:none;
	padding: 8px 8px 8px 10px;
}

.menuSubList a:hover{
	background-color:#FF9900;
	font-size:12px;
	list-style-type:none;
	background-image:none;
}
/*.menulist a.highlighted {
 color: #FFFFFF;
 background: #3D7DF9;
}
*/
/*
 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);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
	float: right;
}

/*
 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 li {
 float: left;
 height: 1%;
}
*+html .menulist a {
 height: 1%;
}
* html .menulist li {
 float: left;
 height: 1%;
}

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

.oialist{
	padding:1px 0px 0px 15px;
	margin:1px 0px 0px 15px;
}
.oialist li{
	padding:0px 0px 2px 0px;
	margin:0px 0px 2px 0px;
}

.oialist2{
	padding:5px 0px 0px 5px;
	margin:5px 0px 0px -10px;
}
.oialist2 li{
	list-style:disc;
	padding:0px 0px 8px 0px;
	margin:0px 0px 8px 0px;
}
.oiatitle{
	font-size: 14px;
	font-weight: bold;
}

.font_email{
	color:#FFFFFF;
	font-size:11px;
	padding:3px;
}

.font_email2{
	color:#FFFFFF;
	font-size:11px;
}

.font_email3{
	color:#CC6600;
	font-size:12px;
}


