/*************************************************************************
* 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: Verdana, 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: #0E5599;
	line-height: 11px;
	padding: 0px 7px;
	border-left: solid 1px #BACBDB;
	cursor: pointer;
}

/*
 * Menu link settings
 * Applies to links located in the second (or more) level menu items
 */
.simple2 ul a {
 	border: none;
 	border-bottom: 1px solid silver;
 	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 when a menu item is selected  *
*****************************************************************************/
/*
 * Selected menu item
 * Applies to selected menu items in all menu containers
 */
.simple2 li.selected {
	background-position: 0px 22px;
}

/*
 * Selected menu item
 * Applies to second (or more) level selected menu items
 */
.simple2 ul li.selected {
}

/*
 * Selected links
 * Applies to selected links in all menu items
 */
.simple2 a.selected {
}

/*
 * Selected links
 * Applies to selected links located in the second (or more) level menu items
 */
.simple2 ul a.selected {
	color: #555555;
}
/******************************************************************************
* In this section, we will define the menu arrows behavior                    *
* An arrow is inserted next to the menu item when the menu item has sub-menus *
******************************************************************************/

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus
 */
.simple2 .arrow {
	background-image: none;
	background-repeat: no-repeat;
	background-position: right center;
}

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus located in the second (or more) level
 */
.simple2 .hover ul .arrow,
.simple2 ul .arrow {
	background-image: none;
	background-repeat: no-repeat;
	background-position: right center;
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus on mouse over
 */
.simple2 .hover .arrow {
	background-image: none;
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus located in the second (or more) level on mouse over
 */
.simple2 ul .hover .arrow {
	background-image: none;
}
