/* 
Title: Vertical CSS menu with a behavior file.
Author: Stefan Vervoort
Blog: http://www.divitodesign.com/blog/ 
Article: http://www.divitodesign.com/blog/2008/01/vertical-css-menu-with-a-behavior-file/
*/

body {
    behavior: url(css/csshover.htc);
}

p a {
    color: #183B4D;
    text-decoration:underline!important;
}

a {
    color:#183B4D;
    text-decoration:none;
}
p a:hover{text-decoration: none!important;}

ul#nav {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #183B4D;
    font-weight: bold;
}
ul#nav span{
    padding-right: 12px;
}
ul#nav li a {
    display: block;
    font-weight: bold;
    padding-right: 12px;
/*    padding: 2px 10px;
    background:#f9f9f9;*/
}

ul#nav li a:hover{
/*    background:#888;*/
    color:#fff;
}

ul#nav li {
    float: left;
    position: relative;
    width: 100px;
    text-align: right;
/*    border:1px solid #ccc;*/
}

ul#nav li.current a{
    background:#ddd;
}

ul#nav li.current a:hover{
    background:#888;
}

li ul {
    list-style: none;
    display: none;
    position: absolute;
    width:90px;
    top: 0;
    left: 0;
    font-weight: normal;
    padding: 1px 0 10px 0;
    margin-left:-1px;
}

ul#nav li ul.sub li{
    border-width:0 1px 1px 1px!important;
    background-image: none;
}

ul#nav li ul.sub li a{
    font-weight: normal!important;	
}
li>ul {
    top: auto;
    left: auto;
}

li:hover ul, li.over ul {
    display: block;
}
