.navigation{
	font: bold 1.1em Comic Sans MS, sans-serif;
	background: #ff9be6;
	border: 1px solid #DFEEF7;
	border-color: #DFEEF7;
	width: 100%;
	height: 40px;
}

.navigation ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

/*Top level list items*/
.navigation ul li{
	z-index: 100;
	position: relative;
	display: inline;
	float: left;
}

/*Top level menu link items style*/
.navigation ul li a{
	display: block;
	background: #ff9be6; /*background of tabs (default state)*/
	color: white;
	border-right: 1px solid #FFF;
	line-height: 40px;
	padding: 0 22px;
	color: #FFF;
	text-decoration: none;
}

.navigation ul li a.selected {
	background: #ff33e6;
}


* html .navigation ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}

.navigation ul li a:link, .navigation ul li a:visited{
	color: white;
}

.navigation ul li a:hover{
	background: #ff9be6; /*tab link background during hover state*/
	background-position: left bottom; 
	color: #8080FF;
}

.navigation ul li a.selected {
	background: #ff33e6;
	color: white;
	background-position: left bottom;
}
	
/*1st sub level menu*/
.navigation ul li ul{
	z-index: 100;
	position: absolute;
	left: 0;
	display: block;
	visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.navigation ul li ul li{
	z-index: 100;
	display: list-item;
	float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.navigation ul li ul li ul{
	z-index: 100;
	top: 0;
}

/* Sub level menu links style */
.navigation ul li ul li a{
	z-index: 100;
	font: 0.9em Comic Sans MS, sans-serif;
	padding: 5px;
	margin: 0;
	width: 182px; /*width of sub menus*/
	border: 1px solid #FFF;
	border-bottom: none;
}

.navigation ul li ul li a:hover{ /*sub menus hover style*/
	background: #ff9be6; /*tab link background during hover state*/
	background-position: left bottom; 
	color: #8080FF;
}

.navigation ul li ul li ul li a{
	border-left: none;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
z-index: 100;
position: absolute;
top: 12px;
right: 7px;
}

.rightarrowclass{
z-index: 100;
position: absolute;
top: 6px;
right: 5px;
}



