/*************************************************************************
* 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
 */
.modern_violet {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
 	font-weight: bold;
}

/*
 * Menu container settings
 * Applies to second (or more) level menu containers
 */
.modern_violet ul {
	font-weight: bold;
}

/*
 * Menu items settings
 * Applies to all menu items in all menu containers
 */
.modern_violet li {
	background-color: #D2C8B5;
}

/*
 * Menu items settings
 * Applies to second (or more) level menu items
 */
.modern_violet ul li {
	spacing: 3px;
	width: 100px;
	text-align:left;
}

/*
 * Menu link settings
 * Applies to links that are to be found within the menu items, no matter the menu level
 */
.modern_violet a {
	text-decoration: none;
	color: #ffffff;
	cursor: pointer;
	padding:0px 0px 0px 0px;
}

/*
 * Menu link settings
 * Applies to links located in the second (or more) level menu items
 */
.modern_violet ul a {
	line-height: 20px;
}


/***************************************************************************
* 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
 */
.modern_violet li.hover {
}
  
/*
 * Mouse over on menu items
 * Applies to second (or more) level menu items
 */
.modern_violet ul li.hover {
}

/*
 * Mouse over on links
 * Applies to all links in all menu items
 */
.modern_violet a.hover {
	color:#000000 !important;
}

/*
 * Mouse over on links
 * Applies to links located in the second (or more) level menu items
 */
.modern_violet ul a.hover {
  	color:#000000 !important;
}

/*****************************************************************************
* 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
 */
.modern_violet li.selected {
}

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

/*
 * Selected links
 * Applies to selected links in all menu items
 */
.modern_violet a.selected {
	color:#000000;
}

/*
 * Selected links
 * Applies to selected links located in the second (or more) level menu items
 */
.modern_violet ul a.selected {
	color: #000000;
	font-weight: bold;
}


/******************************************************************************
* 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
 */
.modern_violet .arrow {
}

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus located in the second (or more) level
 */
.modern_violet .hover ul .arrow,
.modern_violet ul .arrow {
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus on mouse over
 */
.modern_violet .hover .arrow {
}

/* 
 * 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
 */
.modern_violet ul .hover .arrow {
}
/*************************************************************************
* This is the LAYOUT style definition for the CSS menu                   *
* DO NOT alter this section, unless you know what you're doing           *
*************************************************************************/
div.horizontal {
	width:100%;
	height:35px;
	clear: both;
}
div.horizontal br {
	clear: both;
}
div.horizontal ul {
	margin-top: 7px;
	padding: 0px;
	display: block;
	float: left;
	clear: both;
}
div.horizontal li {
	list-style-type: none;
	display: block;
	float: left;
	clear: none;
	/*text-align: center;*/
    position: static;
	border-right: 1px solid #ffffff;
}
div.horizontal li img {
	border: none;
}
div.horizontal a {
	clear: both;
	display: block;
	margin: 0px;
}
div.horizontal ul li ul {
	position: absolute;
	margin-top:15px;
	left: -5000px;
	top: -5000px;
	visibility: hidden;
	clear: both;
}
div.horizontal ul li ul li {
	clear: both; 
	border: 0px;
	
}
div.horizontal ul li ul li a {
	clear: both;
	margin:3px 0px 0px 8px
}
.hasImg,
.hasImg a {
	padding: 0px !important;
	margin:	0px	!important;
	border:	none !important;
	outline: none !important;
	background:	transparent !important;
	width: auto !important;
}