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

#navbar{
	background-color: #373737;
}

#navbar ul {
    font-family: Arial, Verdana;
    font-size: 14px;
    margin: 0;
    padding: 0px auto;
    list-style: none;

 
}
#navbar ul li {
    display: block;
    position: relative;
    float: left;
}
#navbar li ul {
    display: none;
}
#navbar 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;
}
#navbar ul li a:hover {
background: #373737;
 color: #ffff00;
}
/*end navigation bar*/