/*  ----------  MAINMENU  ----------  */

#topMenu {
	float: right;
}

#topMenu li {
	position: relative;
	display: block;
	float: left;
	line-height: 11px;
	background-image: url("../images/menu-separator.png");
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 1px;
}

#topMenu li a  {
	display: block;
	font-size: 12px;
	color: #515151;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	padding: 5px 20px 5px 5px;
	background-image: url("../images/menu-arrow.png");
	background-repeat: no-repeat;
	background-position: right 21px;
}

#topMenu li a span {
	display: block;
	font-size: 10px;
	text-transform: none;
	font-weight: normal;
	color: #76798f;
}

/*  ----------  SUBMENU LEVEL 1  ----------  */

#topMenu ul {
	position: absolute;
	left: 0px;
	top: 25px;
	z-index: 200;
	display: none; 
	/*border: 1px solid #CECECE;*/
	padding: 14px 0 0 0;
	margin: 0;
	width: 200px;
	background-image: url("../images/submenu-pointer.png");
	background-repeat: no-repeat;
	background-position: left top;
}

#topMenu ul li {
	background-image: none;	
	display: block;
	padding: 8px 5px;
	margin: 0;
	border-bottom: 1px dotted #CECECE;
	border-left: 1px solid #CECECE;
	border-right: 1px solid #CECECE;
	position: relative;
	line-height: 15px;
	width: 188px;
	background-color: #fff;
}

#topMenu ul li.last {
	border-bottom: 1px solid #CECECE;
}

#topMenu ul li.parent {
	background-image: url("../images/submenu-arrow.png");
	background-repeat: no-repeat;
	background-position: 185px 10px;
}

#topMenu ul li a {
	display: block;
	font-size: 12px;
	text-decoration: none;
	/*white-space: nowrap;*/
	padding: 0 10px 0 15px;
	margin: 0;
	text-transform: none;
	background-repeat: no-repeat;
	background-position: left 3px;
	color: #555555 !important;
	font-weight: normal;
}

#topMenu ul li:hover {
	background-color: #e3e3e3 !important;
}

/*  ----------  SUBMENU LEVEL 2  ----------  */


#topMenu ul ul {
	position: absolute;
	left: 199px;
	top: -1px;
	z-index: 200;
	display: none; 
	background-color: #fff;
	padding: 0;
	margin: 0;
	width: 198px;
	border: 1px solid #CECECE;
}

#topMenu ul ul li {
	border-left: none;
	border-right: none;
}

#topMenu ul ul li a {
	background-image: none;
}

#topMenu ul ul li.last {
	border-bottom: none;
}