ul {
	padding: 5px;
	margin: 10px 0;
	list-style: none;
	float: left;
	clear: left;
}

ul li
{
    float: left;
    display: inline; /*For ignore double margin in IE6*/
    margin: 0 10px;
    text-align: center;
}

ul li a
{
    text-decoration: none;
    float: left;
    color: #C5C5C5;
    cursor: pointer;
    font: 14px/22px Arial, Helvetica, sans-serif;
    width: 93px;
    font-weight: 500;
}

ul li a span {
	margin: 0 10px 0 -10px;
	padding: 1px 8px 5px 18px;
	position: relative; /*To fix IE6 problem (not displaying)*/
	float:left;
}

/*GREEN*/

ul.green li a.current, ul.green li a:hover
{
    color: #FFFFFF;
    background: no-repeat right top;
    background-color: #6F5E57;
      -webkit-border-radius: 5;
        -moz-border-radius: 5;
        border-radius: 5px;
}

ul.green li a.current span, ul.green li a:hover span {
	background: url('../images/green.png') no-repeat top left;
	  -webkit-border-radius: 5;
        -moz-border-radius: 5;
        border-radius: 5px;
}

/*BLUE*/
ul.blue li a.current, ul.blue li a:hover {
	background: url('../images/blue.png') no-repeat top right;
 	color: #0d5f83;
}

ul.blue li a.current span, ul.blue li a:hover span {
	background: url('../images/blue.png') no-repeat top left;
}

/*PINK*/
ul.pink li a:hover {
 	color: #860737;
	background: url('../images/pink.png') no-repeat top right;
}

ul.pink li a:hover span {
	background: url('../images/pink.png') no-repeat top left;
}

ul.pink li a.current {
	background: url('../images/pink.png') no-repeat top right;
 	color: #860737;
}

ul.pink li a.current span {
	background: url('../images/pink.png') no-repeat top left;
}

/*RED*/
ul.red li a:hover {
 	color: #fff;
	background: url('../images/red.png') no-repeat top right;
}

ul.red li a:hover span {
	background: url('../images/red.png') no-repeat top left;
}

ul.red li a.current {
	background: url('../images/red.png') no-repeat top right;
 	color: #fff;
}

ul.red li a.current span {
	background: url('../images/red.png') no-repeat top left;
}