/*
 * Menu container settings
 * Applies to the first level menu container
 */
.wgint {
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
}

/*
 * Menu container settings
 * Applies to second (or more) level menu containers
 */
.wgint ul {
	background-color: #FFFFFF;
	border-top: 1px solid #CCC;
	border-right: 1px solid #CCC;
	border-bottom: 0px;
	border-left: 1px solid #CCC;			
}
/*
 * Menu items settings
 * Applies to all menu items in all menu containers
 */
.wgint li {
	border-bottom: 1px solid #CCC;
	width: 199px;
}

/*
 * Menu items settings
 * Applies to second (or more) level menu items
 */
.wgint ul li {
 	width: 199px;
}

/*
 * Menu link settings
 * Applies to links that are to be found within the menu items, no matter the menu level
 */
.wgint a {
	border-bottom: 2px solid #FFFFFF;
	color: #333;
	cursor: pointer;	
	line-height: 18px;	
	padding: 3px 10px 1px 10px;
	text-decoration: none;
}

/*
 * Menu link settings
 * Applies to links located in the second (or more) level menu items
 */
.wgint ul a {
	border-bottom: 2px solid #FFFFFF;
	color: #333;
	cursor: pointer;	
	line-height: 18px;	
	padding: 3px 10px 1px 10px;
	text-decoration: none;
}


/*****************************************************************************
* 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
 */
.wgint li.selected {
	border-bottom: 1px solid #999;
}

/*
 * Selected menu item
 * Applies to second (or more) level selected menu items
 */
.wgint ul li.selected {
	border-bottom: 1px solid #999;
}

/*
 * Selected links
 * Applies to selected links in all menu items
 */
.wgint a.selected {
	border-bottom: 2px solid #999;
	color: #333;
	background-color: #D9D9D9;
}

/*
 * Selected links
 * Applies to selected links located in the second (or more) level menu items
 */
.wgint ul a.selected {

}


/***************************************************************************
* 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
 */
.wgint li.hover {
	border-bottom: 1px solid #CCC;
}
  
/*
 * Mouse over on menu items
 * Applies to second (or more) level menu items
 */
.wgint ul li.hover {
	border-bottom: 1px solid #CCC;
}

/*
 * Mouse over on links
 * Applies to all links in all menu items
 */
.wgint a.hover {
	border-bottom: 2px solid #CCC;
	background: #F1F1F1;
	/*color:#FF6600;*/
}

/*
 * Mouse over on links
 * Applies to links located in the second (or more) level menu items
 */
.wgint ul a.hover {
}


/******************************************************************************
* 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
 */
.wgint .arrow {
	background-image:url(img/arrow_right.gif);
	background-repeat: no-repeat;
	background-position: 185px 9px;
}

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus located in the second (or more) level
 */
.wgint .hover ul .arrow,
.wgint ul .arrow {
	background-image:url(img/arrow_right.gif);
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus on mouse over
 */
.wgint .hover .arrow {
	background-image: url(img/arrow_down.gif);
	background-repeat: no-repeat;
	background-position: 185px 9px;
}

/* 
 * 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
 */
.wgint ul .hover .arrow {
	background-image: url(img/arrow_down.gif);
}
/*************************************************************************
* This is the LAYOUT style definition for the CSS menu                   *
* DO NOT alter this section, unless you know what you're doing           *
*************************************************************************/
div.vertical {
	clear: both;
}
div.vertical br {
	clear: both;
}
div.vertical ul {
	margin: 0px;
	padding: 0px;
	display: block;
	float: left;
	clear: both;
}
div.vertical li {
	list-style-type: none;
	display: block;
	float: left;
	clear: both;
	text-align: left;
    position: static;
}
div.vertical li img {
	border: none;
}
div.vertical a {
	clear: both;
	display: block;
	margin: 0px;
}
div.vertical ul li ul {
	position: absolute;
	left: -5000px;
	top: -5000px;
	visibility: hidden;
	clear: both; 
}
div.vertical ul li ul li {
	clear: both; 
}

div.vertical ul li ul li a {
	clear: both;
}
.hasImg,
.hasImg a {
	padding: 0px !important;
	margin:	0px	!important;
	border:	none !important;
	outline: none !important;
	background:	transparent !important;
	width: auto !important;
}
