
/* 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;
}

#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;
}

/* 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 {
    height: 30px;
}

/* core nav structure styles */
#nav, #nav ul {
    line-height: 30px;
}

/* global tier styles */
 #nav ul {
    width: 165px;
    top: 30px;
}

/* 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 {
    left: 165px;
    margin: 0px 0 0 15px;
}

/* width of drop downs */
#nav li ul a {
    width: 150px;
}

/* global link styles */
#nav a:link, #nav a:active, #nav a:visited {
    /* changable styles, enter in font attributes here to make them different than the page defaults */
    padding: 0px 15px;
    text-decoration: none;
 }

/* first tier specfic */
a.first-tier {
    color: #950460;
    text-decoration: none;
    text-transform: uppercase;
}

a.first-tier-hover {
    color: #950460;
    text-decoration: none;
    text-transform: uppercase;
    background: #fff;
}

/* second tier specific */
#nav>li>ul>li a {
    color: #333;
    text-decoration: none;
    background: #fff;
}

#nav>li>ul>li a:hover {
    color: #fff;
    background: #333;
}

/* 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: 30px;
    background: url(../images/nav-sep.jpg);
}
/* end changable styles */

