/*************************************************************************
* This is the SKIN style definition for the CSS menu.                    *
* Feel free to customize this section.                                   *
*************************************************************************/

/*
 * Menu container settings
 * Applies to the first level menu container
 */
.simple2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
 	font-weight: normal;
}

/*
 * Menu container settings
 * Applies to second (or more) level menu containers
 */
.simple2 ul {
	border: 1px solid #afafaf;
}

/*
 * Menu items settings
 * Applies to all menu items in all menu containers
 */
.simple2 li {
	background-image: none;
	width: auto;
	border: 0px solid #afafaf;

}

/*
 * Menu items settings
 * Applies to second (or more) level menu items
 */
.simple2 ul li {
	background-image: none;
	background-color: #E0E0E0;
 	width: 162px;
 	border: none;
}

/*
 * Menu link settings
 * Applies to links that are to be found within the menu items, no matter the menu level
 */
.simple2 a {
	text-decoration: none;
	color: #002B5A;
	line-height: 11px;
	padding: 0px 0px 0px 4px;
	border-left: solid 0px #c0c0c0;
	cursor: pointer;
}

/*
 * Menu link settings
 * Applies to links located in the second (or more) level menu items
 */
.simple2 ul a {
 	border: none;
 	border-bottom: solid 0px #c0c0c0;
 	color: #336699;
	line-height: normal;
	padding: 5px;
}

/***************************************************************************
* In this section, we will define what happens when mouse-overing an item  *
***************************************************************************/
/*
 * Mouse over on menu items
 * Applies to all menu items in all menu containers
 */
.simple2 li.hover {
	background-position: 0px 12px !important;
}
  
/*
 * Mouse over on menu items
 * Applies to second (or more) level menu items
 */
.simple2 ul li.hover {
  	background-color: #336699;
  	background-image: none;
}

/*
 * Mouse over on links
 * Applies to all links in all menu items
 */
.simple2 a.hover {
}

/*
 * Mouse over on links
 * Applies to links located in the second (or more) level menu items
 */
.simple2 ul a.hover {
  	color: #FFFFFF !important;
	text-decoration: underline;
}
/*****************************************************************************
* In this section, we will define what happens wh
