#sgl-nav {
    height: 20px;
	float: right;
	border-left: 1px dotted white;
	padding: 0;
    margin: 0;
}
#sgl-nav ul {
    padding: 0;
    margin: 0;
	font-size: 1m;
}
#sgl-nav ul li {
    float: left;
    display: inline;
	height: 19px;
    margin: 0;
	padding: 0;
    border: 1px dotted white;
	border-bottom: none;
	border-left: none;
}
#sgl-nav ul li a {
    display: block;
    position: relative;
    padding: 0.1em 1em;
    font-size: 0.9em;
    font-weight: normal;
    color: #FFB09D;
    text-align: center;
    text-decoration: none;
}
#sgl-nav ul li a:hover {
    color: #EC8D89;
}
#sgl-nav ul li.current a {
    color: #FFFFFF;
}
#sgl-nav ul li.current a:visited {
    color: #FFFFFF;
}
/* hide the sublevels */
#sgl-nav ul ul {
    display: none;
}
#sgl-nav ul li.current ul {
    position: absolute;
    left: 0;
    display: block;
    /* use max-width emulation hack from
     * http://www.svendtofte.com/code/max_width_in_ie/, using the IE5.0+ dynamic
     * properties syntax, see
     * http://msdn.microsoft.com/workshop/author/dhtml/overview/recalc.asp */
    _width: expression(document.body.clientWidth);
    padding: 0;
    background-color: #e5f1ff;
}
#sgl-nav ul li.current li {
    padding: 0.4em 0;
}
#sgl-nav ul li.current li a {
    /* hide first pipe */
    left: -0.1em;
    padding: 0 1em;
    font-weight: normal;
    font-size: 1.1em;
    color: #006699;
    border-right: none;
    border-left: 0.1em solid #006699;
}
/* hide 3rd or more levels */
#sgl-nav ul ul ul li {
    display: none;
}
