/* CSS Document */
/*The following lays out a UL into tabs with flexible widths*/
/*There are tabs either side, plus and On and OFF feature*/

#navigation {
   /* float:right;
	position:relative;
	top:0px;
	right:0px;*/
    line-height:normal;	
	font: 11px Tahoma, Verdana, Arial, Helvetica, sans-serif; 
    }
#navigation ul {
    margin:0;
    padding:10px 10px 0;
    list-style:none;
    }
#navigation li {
    float:left;
    margin:0;
    padding:0;
	list-style:none
    }
#navigation a {
    display:block;
	color:#600;
	text-decoration:none;
    }
#navigation a:hover {
    color:#fff;
	color:#f30
    }
#navigation li {
    float:left;
    background:url("../images/norm_right.gif") no-repeat right top;
    margin:0;
    padding:0;
    }

#navigation #current {
    background-image:url("../images/norm_right_on.gif");
    }

#navigation a {
    display:block;
    background:url("../images/norm_left.gif") no-repeat left top;
    padding:5px 28px 4px;
    }
#navigation #current a {
    background-image:url("../images/norm_left_on.gif");
    padding-bottom:5px;
    }





