/*
MAIN MENU CSS Document voor i-Reserve
copyright Teqa Informatica B.V.
Basis kleuren
blauw: 		#09539F
groen:		#58AC25
lichtblauw: #e1e4f1 (lees verder)
lichtgroen:	#E5F0D8 (achtergrond nieuws), #B9D698 (tweede kleur logo), #F4F9F0 (footerbalk)
Achtergrond	#F5F5FA
*/

/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu {width:800px; height:20px; position:relative; z-index:100;border-right:0px solid #000; font-family:Geneva, Arial, Helvetica, sans-serif;float:left;top:-10px;}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0px;margin:0px;list-style:none!important;}
.menu ul ul {width:135px;}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {float:left;width:135px;position:relative;list-style:none!important;margin-left:20px;}

.menu li ul li {margin-left:0px;}

/* style the links for the top level */
.menu a, .menu a:visited {display:block;font-size:12px;text-decoration:none; color:#fff; width:124px; height:20px; border-right:5px solid #58AC25; background:#58AC25; padding-left:10px; line-height:19px; font-weight:bold;}

/* style the ACTIVE links for the top level */
.menu a.active, .menu a.active:visited {display:block;font-size:12px;text-decoration:none; color:#fff; width:124px; height:20px; border-right:5px solid #58AC25; background:#09539F; padding-left:10px; line-height:19px; font-weight:bold;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0;top:19px;left:0; width:135px;border-top:1px solid #58AC25;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {background:#e1e4f1; color:#09539F; height:auto; line-height:1em; padding:5px 10px; width:117px;border: solid 1px #58AC25; border-top-width:0px; font-size:11px;}

/* style the top level hover */
.menu a:hover{color:#09539F;}
.menu :hover > a {color:#09539F;}

/* style the ACTIVE top level hover */
.menu a.active:hover{background: #09539F; color: #ffffff; border-right: 5px solid #58AC25;}
.menu :hover > a.active {background: #09539F; color: #ffffff; border-right: 5px solid #58AC25;}

/* style the second level hover */
.menu ul ul a:hover{color:#fff; background-color:#58AC25;}
.menu ul ul :hover > a {color:#58AC25; background-color:#fff;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{visibility:visible; }

