

/*navigation left*/
/*TO STYLE UL SO AS NOT TO IMPLEMENT TO ALL UL ...*/
/*WRAP WITH DIV AND MAKE THE CSS OF UL WITH NAVBAR ID*/

#navleft{
     color: #ffffff;
	background-color: #470c28;
	width: 150px;
	float: left;
	margin-right: 10px;
}

#navleft ul {
    font-family: Arial, Verdana;
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}
#navleft ul li {
    display: block;
    position: relative;
    float: left;
    width: 150px;
}
#navleft li ul {
    display: none;
}
#navleft ul li a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    border-top: 1px solid #373737;
    padding: 5px 15px 5px 15px;
    background: #1e7c9a;
    margin-left: 1px;
    white-space: nowrap;
	  border-bottom: 1px solid #373737;
}
#navleft ul li a:hover {
background: #373737;
 color: #ffff00;
}
/*end navigation bar*/