/**********************************************************************/
/* 
 * TAKE THIS LINES OUT WHEN CREATING A NEW PROJECT
*/ 
/* 
* {
	border: 0;
	margin: 0;
	padding: 0
}

body {
	background-color: #fff;
	color: #000;
	font: 12px Arial, Helvetica, sans-serif; 
} */
/**********************************************************************/

div.navBar {
	background: #9eb8c7 url(../images/nav_background.gif) repeat-x;
	float: left;
	height: 24px;
	position: relative;
	width: 941px;
	z-index: 1000	
}

.menulist, .menulist  ul {
	list-style: none;
	margin: 0;
	padding: 0
}

.menulist ul {
	background-color: #D4EAF7;
	position: absolute;
	top: 24px;
	left: 0px;
	visibility: hidden;
	width: 150px
}

.menulist ul ul {
	background-color: #D4EAF7;
	left: 155px;
	top: 0
}

/*
 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 {
	border-right: 1px solid #464646;
	float: left;
	margin-right: -1px;
	position: relative	
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	border-bottom: 1px solid #fff;
	border-right: 1px solid #999;
	float: none;
	margin-right: 0;
	margin-bottom: -1px;
	padding: 0
}

.menulist ul>li:last-child {
	margin-bottom: 1px
}

/* Links inside the menu */
.menulist a, .menulist a:visited{
	color: #000;
	display: block;
	font-weight: bold;
	padding: 4px 8px;
	text-decoration: none
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	text-decoration : underline;
	background-color: #fff;
	color: #000	
}

.menulist a.highlighted {
	background-color: #fff;
	color: #000
}

.menulist a.nohover:hover, .menulist a.nohover:focus {
	text-decoration : none;
	background-color: #fff;
	color: #000	
}
/*
 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
}
/* */

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%
}
* html .menulist  ul a {
 height: 1%
}
/* End Hack */