/* *************************************************************************** */ 
/*Credits: By Santosh Setty (http://webdesigninfo.wordpress.com) */
/*Posted to: Dynamic Drive CSS Library (http://www.dynamicdrive.com/style/) */

.glossymenu{
	position: relative;
	padding: 0 0 0 5px;
	margin: 0 auto 0 auto;
	background: url(images/menub_bg.gif) repeat-x; /*tab background image path*/
	height: 43px;
	list-style: none;
	vertical-align: middle;
}

.glossymenu li
{
    float:left;
}

.glossymenu li a{
    float:left;
    display:inline;
	display: block;
	color:#303030;
	text-decoration: none;
	font-family: Arial,"MS Sans Serif",Geneva,sans-serif;
	font-size: 14px;
	/* font-weight: bold; */
	padding: 0 8px 0 8px;
	height: 42px;
	line-height: 48px;
	text-align: center;
	cursor: pointer;	
}

.glossymenu li a:visited {
    text-decoration:none; /* Otherwise visited links are underlined in IE6 */
}

.glossymenu li a b
{
    height: 41px;
    float:left;
	display: block;
	padding: 0 5px 0 5px;  /*Padding of menu items*/
	color:#000000;
}
    
.glossymenu li.current a, .glossymenu li a:hover{
	color: #333;
	background: url(images/menu_red_down_arrow.gif) no-repeat; /*left tab image path*/
	background-position:  center top;
}

.glossymenu li.current a b{
	color: #333;
	background: url(images/menu_red_underline.gif) repeat-x; /*right tab image path*/
	background-position:  center top;
}

.glossymenu li a:hover b{
	color: #333;
	background: url(images/menub_hover_red_underline.gif) repeat-x; /*right tab image path*/
	background-position:  center top;
}

/* *************************************************************************** */ 
