#sgl-nav {
    height: 50px;
    font-size: 0.75em;
}
#sgl-nav ul {
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: #d9d9d9;
    z-index: 100;
}
#sgl-nav ul li {
    position: relative;
    float: left;
    margin: 0;
    /* IE :hover silly javascript workaround */
    behavior: url(themes/default/css/listItemHover.htc);
}
#sgl-nav ul li a {
    display: block;
    position: relative;
    padding: 0.2em 1.5em;
    background-color: #d9d9d9;
    font-size: 1.3em;
    font-weight: bold;
    color: #3E4B78;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.05em;
    border-right: 0.1em solid #3E4B78;
}
#sgl-nav ul li a:hover {
    color: #FFFFFF;
    text-decoration: underline;
    background-color: #3E4B78;
}
/* This one doesn't affect IE */
#sgl-nav ul li:hover > ul {
    display: block;
}
#sgl-nav ul ul li {
    width: 100%;
}
#sgl-nav ul ul li a {
    border: 1px solid #3E4B78;
    border-top: none;
    padding: 0.2em;
    font-size: 1.1em;
    color: #3E4B78;
    background-color: #d9d9d9;
    width: 100%;
}
#sgl-nav ul ul li a:hover {
    background-color: #3E4B78;
    text-decoration: none;
}
#sgl-nav ul ul li:first-child > a {
    border-top: 1px solid #3E4B78;
}
/*hide all sublevels*/
#sgl-nav ul ul {
    display: none;
}
#sgl-nav ul ul ul {
    top: 0.6em;
    left: 100%;
}

