
/* start unchanged styles */
/* makes sure the third tier builds off of the highlighted second tier item */
#nav, #nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-position: outside;
    position: relative;
    z-index: 9999;
    font-weight: normal;
}

#nav ul {
    position: absolute;
    display: none;
    z-index: 9998;
}

#nav ul ul {
	top: auto;
}

/* makes the first tier display horizontally */
#nav li {
    float: left;
    position: relative;
}

/* makes all other tiers display vertically */
#nav li ul a {
    float: left;
    font-weight: normal;
}

/* hide the tiers */
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li:hover ul ul ul ul {
    display: none;
}

/* show the tiers */
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li li li li:hover ul {
    display: block;
}

/* global link styles */
#nav a:link, #nav a:active, #nav a:visited {
    display: block;
}
/* end unchanged styles */

/* start changable styles */
/* style the background of the menu, height needs to be the same as the line-height in the style below */
#nav-bg {
    background: url(../images/nav-bg.jpg) no-repeat;
    border-bottom: solid 1px #c66600;
    height: 40px;
}

/* core nav structure styles */
#nav, #nav ul {
    line-height: 40px;
}

/* global tier styles */
 #nav ul {
    width: 231px;
    top: 40px;
    left: -11px;
}

/* positions the tiers
left: needs to be the width in the style directly below + the ammount of padding in the global link styles style that. ie: 175 + 15 = 190
margin: the last margin in the list needs to be the same as the padding specified in the global link styles style */
#nav li ul ul {
    margin: 0px 0px 0px 0px;
}

#nav li ul {
    background: url(../images/nav-bot.png) no-repeat bottom center;
    padding: 0px 0px 20px 0px;
}

#nav li ul li {
    background: url(../images/nav-bg.png) repeat-y;
    width: 231px;
}

/* width of drop downs */
#nav li>ul>li>a {
    width: 168px;
}

/* global link styles */
#nav>li>a:link, #nav>li>a:active, #nav>li>a:visited {
    /* changable styles, enter in font attributes here to make them different than the page defaults */
    padding: 0px 21px;
    margin: 0px;
    font-weight: normal;
    text-decoration: none;
 }

/* first tier specfic */
a.first-tier, a {
    text-decoration: none;
    font-family: arial;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    font-family: arial;
}

a.first-tier-hover {
    text-decoration: none;
    font-family: arial;
    font-size: 14px;
    color: #ffa100;
}

/* second tier specific */
#nav>li>ul>li a {
    color: #03305c;
    text-decoration: none;
    font-size: 14px;
    line-height: 21px;
    margin-left: 21px;
    padding: 3px 12px;
}

#nav>li>ul>li a:hover {
    color: #03305c;
    background: #ced6df;
    line-height: 21px;
}

/* third tier specific */
#nav>li>ul>li>ul>li a {
}

#nav>li>ul>li>ul>li a:hover {
}

/* nav seperator, width MUST be set */
.nav-sep {
    width: 2px;
    height: 40px;
    background: url(../images/nav-sep.jpg) no-repeat;
}
/* end changable styles */
