﻿.ddsmoothmenu
{
    /*float: left;*/
}

.ddsmoothmenu ul
{
	/*clear: both;*/
	z-index: 100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
.ddsmoothmenu ul li
{
	position: relative;
	display: inline;
	float: left;
	z-index: 5;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a
{
	display: block;
	/*background of menu items (default state)*/
	/*background: url(../../Images/Header/ForwardSlash.jpg);*/
	background-position: right center;
	background-repeat: no-repeat;	
	padding: 4px 20px 5px 10px;
	text-decoration: none;	
    color: #7c8194;
}

* html .ddsmoothmenu ul li a
{
	/*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
    /*margin-left:200px;*/
}

.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited
{
    color: gray; /*#000000;*/
	/*font-family: Calibri, Arial;*/
    font-family: Segoe UI light, Segoe UI, Arial, Tahoma, sans-serif;
	font-size: 12pt;
	font-weight: 600;
	/*background-color: #000000;*/
	/*sub menu background color*/
}

.ddsmoothmenu ul li a.selected
{
	/*CSS class that's dynamically added to the currently active menu items' LI A element*/
	/*background: #facf60;*/
	color: white;
}

.ddsmoothmenu ul li a:hover
{
    /*background of menu items during onmouseover (hover state)*/
	color: #000000;
}

/*1st sub level menu*/
.ddsmoothmenu ul li ul
{
	position: absolute; /* this is correct and needs to remain absolute */
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
	border: solid 1px #a4a4a4;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li
{
    color: #a4a4a4;
	background-color: #20242F;
	display: list-item;
	float: none;
}

.ddsmoothmenu ul li ul li.selected, .ddsmoothmenu ul li ul li:hover
{
	/*background-color: #facf60;*/
	display: list-item;
	float: none;
}

.ddsmoothmenu ul li ul li a.selected, .ddsmoothmenu ul li ul li a:hover
{
	/*background: #ECBA2E;*/
	color: #000000;
}

.ddsmoothmenu ul li ul li ul li a
{
	border-left: solid 10px #c0c0c0;
}

.ddsmoothmenu ul li ul li ul li a.selected, .ddsmoothmenu ul li ul li ul li a:hover
{
	border-left: solid 10px #c0c0c0;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul
{
	top: 0;
}	

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a
{
	border-left: solid 10px #facf60;
	width: 180px; /*width of sub menus*/
	padding: 5px;
	margin: 0;
	border-top-width: 0;
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu
{
	height: 1%;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass
{
	position: absolute;
	top: 9px;
	right: 7px;
}

.rightarrowclass
{
	position: absolute;
	top: 6px;
	right: 5px;
}

/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow
{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: silver;
}

.toplevelshadow
{
	/*shadow opacity. Doesn't work in IE*/
	opacity: 0.8;
}