.topmenu_container {
	height:37px; 
	background:url('../img/menu-corner-right-bottom.png'); 
	background-position:top right; 
	background-repeat: no-repeat; 
	padding-right:11px;
	margin-left: 2px; 
	float: left;
}

/* remove all list stylings */
.topmenu, .topmenu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

/* move all list items into one row, by floating them */
.topmenu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
	/*width: 80px;*/
	width: auto;
}

/* define new starting point for the nested UL, thus making positioning it a piece of cake */
.topmenu li:hover {
	position: relative;
}

/* force the submenu items into separate rows, while still keeping float:left (which resolves IE6 white-gap problem) */
.topmenu li li {
	width: 100%;
}

/* fix the position for 2nd level submenus.
	first make sure no horizontal scrollbars are visible on initial page load by sliding them all into top-left corner  */
.topmenu li li div {
	top: 0;
	left: 0;
}

/* ...and then place the submenu where it should be when shown */
.topmenu li li:hover div {
	left: 100%;
}

/* initialy hide all sub menus */
.topmenu div {
	display: none;
	position: absolute;
	z-index: 10;
}

/* display them on hover */
.topmenu li:hover>div {
	display: block;
}

/* -- float.clear -- force containment of floated LIs inside of UL */
.topmenu:after, .topmenu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
/* IE7 float clear: */
.topmenu, .topmenu ul {
	min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".topmenu div" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
	
.topmenu div {
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/		/* uncomment this if you want to see the "safe" area. you can also use to adjust the safe area to your requirement */
}

/* - - - ADxMenu: DESIGN styles - - - */

.topmenu {		/* navigation background style */
	position:relative;
	z-index:2000;
	top:0px;
	margin-top: 0px;
	margin-bottom: 0px;
	width:auto;
	color: #ffffff;
	/*background:url(../images/nav-bg.gif) 0 0 repeat;*/
	background: transparent;	 /* uncomment this if you want to use a color instead of background image */
	border: none;
}

.topmenu ul {	/* drop down menu style */
	width: 210px;
	background: #666666;
	border: none;
}

.topmenu li li:hover>div {	/* inset 2nd+ submenus, to show off overlapping */
	/*
	top: 5px;
	left: 90%;
	*/
	top: 0px;
	left: 100%;
}

.topmenu ul a:hover { /* drop down hover style (IE6 included) */
	background: #eee;
	font-weight:normal;
}

.topmenu li:hover>a { 	/* first level hover button style (IE6 excluded) */
	color: #ffffff;
	/*background: url(../images/nav2.gif) 100% 0 no-repeat;*/
	background: #999;	 /* uncomment this if you want to use a color instead of background image */
}

.hover2 li:hover>a {	/* drop down hover style (IE6 excluded) */
	color: #fff;
	background: #999;
}

.topmenu a {	/* first level button style (IE6 included) */
	color: #ffffff;
	background: #666;
	padding: 10px;
	display: block;
	text-decoration: none;
	font-weight:normal;
	font-size: 0.9em;
	/*white-space: nowrap;*/
}

.topmenu a:hover {		/* first level button hover style (IE6 included) */
	color: #ffffff;
	/*background: url(../images/nav2.gif) 100% 0 no-repeat;*/
	background: #666;	 /* uncomment this if you want to use a color instead of background image */
	text-decoration: none;
	font-weight: bold;
}

.topmenu ul a {	/* remove inheritance from submenus (IE6 included)*/
	padding-top: 6px;
	padding-bottom: 6px;
	color: #fff;
	background: #999;
	font-weight:normal;
}

.active a {	/* first level menu active state style (IE6 included) */
	color: #fff;
	/*background: url(../images/nav2.gif) 100% 0 no-repeat;*/
	background: #999;
	font-weight: bold;
	text-decoration: none;
}


.topmenu ul a:hover,
.topmenu ul .active a{
	font-weight: bold;
	color: #000;
}

.topmenu ul ul a {
	background: #cccccc;
}
.topmenu ul .active ul a{
	font-weight: normal;
	color: #000;
}
.topmenu ul ul a:hover{
	color: #1fa02c;
	font-weight: bold;
	background: #ccc;
}

.topmenu ul ul .active a {
	color: #1fa02c;
	font-weight: normal;
}

/* Fix for IE5/Mac \*//*/
.topmenu a {
	float: left;
}
.topmenu {
	display: inline-block;
}
/* End Fix */

/*]]>*/
