

.smoothmenu {
	font-size: 16pt;
	width: 690px;
	text-transform: uppercase;
	z-index: 9999;
	border-radius: 5px 5px;
	margin: 0 auto;
	top: 139px;
	right: 2px;
	font-family: 'Roboto', sans-serif;
	position: absolute;



}

.smoothmenu ul{
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
.smoothmenu ul li{
	background: url(../../images/menusep.html) no-repeat scroll right 9px transparent;
	display: inline;
	float: left;
	position: relative;
	
}

/*Top level menu link items style*/
.smoothmenu ul li a {
	display: block;
	padding: 10px 18px 12px 19px;
	text-decoration: none;
	font-weight: 400;
}

* html .smoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}

.smoothmenu ul li a:link, .smoothmenu ul li a:visited, .smoothmenu ul li a:active{
	color: #FFFFFF;
}

.smoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/

	color: #6C7C8A;
}

.smoothmenu ul li a:hover{
	
	color: #FA191B;
}
	
/*1st sub level menu*/
.smoothmenu ul li ul{
	position: absolute;
	left: -1px!important;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	background: #113852;
	top: 39px!important;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.smoothmenu ul li ul li{
	display: list-item;
	float: none;
	padding: 0px !important;
	background: none!important;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.smoothmenu ul li ul li ul{
	top: 0!important;
	left: 220px!important;
	
}

/* Sub level menu links style */
.smoothmenu ul li ul li a{
	font-size: 8pt;
	width: 200px; /*width of sub menus*/
	padding: 8px 10px;
	margin: 0;
	background: none;
	border-top-width: 0;
	border-bottom: 1px solid #cccccc;
	color: #FFFFFF;
}

.smoothmenu ul li ul li a:hover{
	color: #347791; /*Font color of menu items during onmouseover (hover state)*/
}

/* Holly Hack for IE \*/
* html .smoothmenu{height: 1%;} /*Holly Hack for IE7 and below*/


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	position: absolute;
	top: 20px;
	right: 12px;
}

.rightarrowclass{
	position: absolute;
	top: 12px;
	right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.shadow{ /*shadow for NON CSS3 capable browsers*/
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: silver;
}

.toplevelshadow{ /*shadow opacity for NON CSS3 capable browsers. Doesn't work in IE*/
	opacity: 0.8;
}