/* 
 *		Horizontal, top-2-bottom menu
 *		Copyright Aleksandar Vacic, www.aplus.co.yu, some rights reserved http://creativecommons.org/licenses/by/2.0/
 */


/* - - - ADxMenu: BASIC styles - - - */

/* remove all list stylings */
.menu, .menu ul { margin: 0; padding: 0; border-color: red; list-style-type: none; display: block; }

/* move all list items into one row, by floating them */
.menu li { margin: 0; padding: 0; border: 0; display: block; float: left; }

/* define new starting point for the nested UL, thus making positioning it a piece of cake */
.menu li:hover {
	position: relative;
}

/* force the submenu items into separate rows, while still keeping float:left (which resolves IE6 white-gap problem) */
.menu 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  */
.menu li li div { top: 0; left: 0; border-style: dotted; }

/* ...and then place the submenu where it should be when shown */
.menu li li:hover div {
	left: 100%;
}

/* initialy hide all sub menus */
.menu div {
	display: none;
	position: absolute;
	z-index: 10;
}

/* display them on hover */
.menu li:hover>div {
	display: block;
}

/* -- float.clear -- force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
/* IE7 float clear: */
.menu, .menu 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 ".menu div" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
	
.menu 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 - - - */

.menu { color: navy; font-size: 12px; line-height: 13px; background-repeat: repeat; background-attachment: scroll; background-position: 0 0; position:relative; width: auto; overflow: visible; padding-right: 5px; padding-left: 5px; border-style: solid; }

.menu ul { color: navy; font-size: 12px; line-height: 13px; background-image: url(../images/hintergrund-menu.png); background-repeat: repeat; background-attachment: scroll; background-position: 100% 100%; width: 200px; overflow: visible; clip: rect(auto auto 30px auto); border-right: 1px solid green; border-bottom: 1px solid green; border-left: 1px solid green; border-top-color: green; border-top-width: 1px; }

.menu ul a:hover { color: navy; font-size: 12px; line-height: 13px; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0 0; text-decoration: underline; width: auto; overflow: visible; clip: rect(auto auto 30px auto); }

.menu ul ul { color: navy; font-size: 12px; line-height: 13px; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0 0; width: auto; overflow: visible; clip: rect(auto auto 30px auto); }

.menu li:hover>a { color: navy; font-size: 12px; line-height: 13px; background-repeat: no-repeat; background-attachment: scroll; background-position: 100% 100%; text-decoration: underline; width: auto; overflow: visible; clip: rect(auto auto 30px auto); }

.hover2 li:hover>a { color: navy; font-size: 12px; line-height: 13px; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0 0; width: auto; overflow: visible; clip: rect(auto auto 30px auto); }

.menu a { color: navy; font-size: 12px; line-height: 13px; background-image: url(../images/navbutton.gif); background-repeat: no-repeat; background-attachment: scroll; background-position: 100% 0; width: auto; overflow: visible; clip: rect(auto auto 30px auto); padding: 6px; display: block; }

.menu a:hover { color: navy; font-size: 12px; line-height: 13px; background-image: url(../images/navbutton2.gif); background-repeat: no-repeat; background-attachment: scroll; background-position: 100% 0; width: auto; overflow: visible; clip: rect(auto auto 30px auto); }

.active { color: navy; font-size: 12px; line-height: 13px; background-repeat: no-repeat; background-attachment: scroll; background-position: 100% 100%; text-decoration: underline; width: auto; overflow: visible; clip: rect(auto auto 30px auto); }

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
.menu {
	display: inline-block;
}
/* End Fix */

/*]]>*/