/*
              Title:          drop-down menu 
      
              Author:         Global Web Limited
              Version:        47 
              Filename:       drop-down-menu.css 
              Date:           16:13 10 December 2008
              File Type:      Style Sheet
      
              Copyright:      Copyright (c) 1994-2009 Global Web Limited.
                              All rights reserved.
      
              Address:        Global Web Limited
                              Twin Spires Business Park
                              Mugiemoss Road
                              Bucksburn
                              Aberdeen
                              AB21 9BG
                              United Kingdom
      
              Telephone:      +44 1224 454000
              Fax:            +44 1224 454001
              E-mail:         support@globalweb.co.uk
      	      Web:            http://www.globalweb.co.uk/
      
      */
      


.menu {width:750px; height:32px; position:relative; z-index:100;font-family:Calibri, sans-serif;}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {float: left; position: relative; width: 65px;}
.menu li.compulsory {float: left; position: relative; width: 155px;}
.menu li.planning {float: left; position: relative; width: 111px;}
.menu li.professional {float: left; position: relative; width: 110px;}
.menu li.property {float: left; position: relative; width: 114px;}
/* style the links for the top level */


.menu a, .menu a:visited {display:block;font-size:13px;text-decoration:none; color:#fff;height:24px; background:#387A5A url(images/off-background.jpg) repeat-x top left; text-align:center; line-height:11px; padding-top: 9px;}

.menu a.higher, .menu a:visited.higher {height:29px; padding-top: 4px;}


/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:#d4d8bd;}

/* 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:33px;left:0;}

/* 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:#387A5A url(images/off-background.jpg) repeat-x top left; color:#FFF; height:25px; line-height:13px; text-align:center; width:110px;border-width:0 1px 1px 1px;padding-top: 8px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#FFF; background:#FF9062 url(images/on-background.jpg) repeat-x left;}
.menu :hover > a, .menu ul ul :hover > a {color:#FFF; background:#FF9062 url(images/on-background.jpg) repeat-x left;}

/* 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; } 
 
