
/*
 Here's a demo stylesheet used to format a menu and its content.
 Feel free to alter the menu layout however you want!
 All you have to do is ensure the script has the correct CSS property name
 (like 'visibility' or 'display') that changes to show/hide menus.
 
 If you want to extend this layout, one good resource for UL/LI formatting is:
 http://www.alistapart.com/articles/taminglists/
 Alternatively, you can use any other CSS dropdown layout instead. More here:
 http://www.alvit.de/css-showcase/
 Consult your favourite CSS reference for customising fonts/borders/etc.
 
 Otherwise, you can just change the #RGB border/background colours where
 suitable to customise for your site -- easy :).
 
 */
/* HORIZONTAL FREESTYLE MENU LAYOUT */
/* All <ul> tags in the menu including the first level */
.menulist {
    width: 595px;
    height: 42px;
    background: transparent url(../img/nav-bg.png) 0 0 repeat-x;
    margin: 50px 0 0 0;
    padding: 0;
    list-style: none;
}

.menulist li.top {
    float: left;
    position: relative;
}

.menulist li.top a {
    display: block;
    padding: 10px 0;
    margin: 0 11px;
    text-indent: -9999px;
}

.menulist a#nav-about {
    background: url(../img/nav-about-bg.png) 0 0 no-repeat;
    width: 63px;
}

.menulist a#nav-home {
    background: url(../img/nav-home-bg.png) 0 0 no-repeat;
    width: 65px;
}

.menulist a#nav-services {
    background: url(../img/nav-services-bg.png) 0 0 no-repeat;
    width: 74px;
}

.menulist a#nav-resources {
    background: url(../img/nav-resources-bg.png) 0 0 no-repeat;
    width: 88px;
}

.menulist a#nav-news {
    background: url(../img/nav-news-bg.png) 0 0 no-repeat;
    width: 54px;
}

.menulist a#nav-contact {
    background: url(../img/nav-contact-bg.png) 0 0 no-repeat;
    width: 93px;
}


/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
    display: none;
    position: absolute;
    top: 40px;
    margin-top: 13px; /* I'm using ems and px to allow people to zoom their font */
    left: 0;
    width: 150px;
    background: #c1d7d9;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.menulist ul a.inside {
    padding: 5px 10px;
    display: block;
    border-bottom: 1px solid #376B89;
    color: #000;
    margin: 0 !important;
    text-decoration: none;
    font-weight: bold;
    text-indent: 0px;
}






/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
    top: -1px;
    margin-top: 0;
    left: 148px;
}

