/* Vert nav */


#vertical-nav .block-title{
    border: none;
}

.vertnav{
	margin: 0;
    padding: 0;
}

.vertnav li {
    overflow: hidden;
}

.vertnav li a {
    text-transform: uppercase;
}

.block .vertnav li.even {
    overflow: hidden;
    background: #fff;
}

.vertnav ul li {
 	border-bottom: none;
	text-transform: none;
    position: relative;
}

/* This controls the indent for each sublist */
.vertnav ul {
    padding: 0;
    margin: 0;
    clear: both;
}

.vertnav ul ul {
    padding: 5px 0 0 10px;
}

.vertnav a.vertnavlink {
    padding: 6px 25px 6px 10px;
    margin: 0;
    display: inline-block;
}
/* Provide space for our own "bullet" inside the link */
.vertnav li a.expandlink {
    background: url(../images/nav_closed.png) left no-repeat;
    margin: 0;
    width: 10px;
    height: 10px;
    position: absolute;
    display: block;
    top: 7px;
}

/* Show "bullets" in the links, depending on the class of the
   LI that the link's in */
.vertnav li.open a.expandlink {
    background: url(../images/nav_open.png) center left no-repeat;
}
.vertnav li.closed a.expandlink {
   background: url(../images/nav_closed.png) center left no-repeat;
}

.vertnav li.open > a.vertnavlink,
.vertnav li.active > a.vertnavlink{
    background: #e5e5e5;
}

.vertnav li.open > a.vertnavlink,
.vertnav li.active > a.vertnavlink{
    background: #e5e5e5;
}

.vertnav li.open li.active a {
    background: transparent;
    font-weight: bold;
}

/* Actually show and hide sublists */
.vertnav li.open ul {
    display: block;
}
.vertnav li.closed ul {
    display: none;
}


