/*----------------------------------------------------------------------------------------------------------------------------------------------------------  
    VERTICAL LEFT COLUMN MENU STYLES
------------------------------------------------------------------------------------------------------------------------------------------------------------*/	

/* Main Menu */
#header .nav {
	clear: both;
	float: left; /* encapsulates floated children */
        position: absolute;
        top: 160px;
        left: 10px;
}

#header .nav ul {
  margin: 0;
  padding: 0;
  background: none;
  float: left; /* contain floated list items */
  list-style-type: none;
  text-align: center;
  width: 180px;
  /* The following styles should be used to remove padding around menu, but leave padding around rest of content in left column */
  position: absolute;
  left: 0;
  width: 190px;
}

#header .nav ul li {
  margin: 0;
  padding: 0;
  float: left; 
  width: 100%; /* this corrects the IE whitespace bug */
}

#header .nav ul li a {
  border-bottom: none;
  color: #FFF;
  display: block; /* to increase clickable area */
  font-size: 1.2em;
  font-weight: 600;
  padding: 0 15px;
  line-height: 2.5;
  text-decoration: none;
  text-transform: uppercase;
}

#header .nav ul li a:hover {
  text-decoration: underline;
}

#header .nav ul li a.current {
  font-weight: bold;
}