#tabs{
	padding-right:20px;	/* The right most tab will be padded 20px from its right */
	margin:0px;
	float:right;		/* For right aligned tabs */
}
#tabs a{
	background:#043f02 url(../images/icons/left_tab.gif) top left no-repeat;	/* Background image is positioned top, left */
	color:#FFF;
	padding-left:5px;	/* Change this padding according to the size of image slices used to create tab */
	text-decoration:none;
}
#tabs a:hover{
	background:#089103 url(../images/icons/hover_left_tab.gif) top left no-repeat;
	color:#000;
	text-decoration:none;
}
#tabs a span{
	background:#043f02 url(../images/icons/right_tab.gif) top right no-repeat;	/* Note the position of background image */
	color:#FFF;
	padding-right:15px;
}
#tabs a:hover span{
	background:#089103 url(../images/icons/hover_right_tab.gif) top right no-repeat;
	color:#000;
}
#tabs li{
	list-style:none;
	float:left;
	padding-left:3px;
}
#tabs b{	/* This class will be applied on selected tab */
	background:#e8e8e8 url(../images/icons/selected_left_tab.gif) top left no-repeat;
	color:#000;
	padding-left:5px;	
	font-weight:normal;
}
#tabs b span{
	background:#e8e8e8 url(../images/icons/selected_right_tab.gif) top right no-repeat;
	color:#000;
	padding-right:15px;	
}
#tabs span{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	padding:6px;
	cursor:pointer;
}
#tabs a,#tabs a span,#tabs b,#tabs b span,#tabs i,#tabs i span,#tabs ul,#tabs ul span{
	display:block;		/* Set display to block, otherwise background images will not work*/
	float:left;
}

#tabs i{	/* This class will be applied on home tab */
	background:#e8e8e8 url(../images/icons/home_left_tab.gif) top left no-repeat;
	color:#000;
	padding-left:5px;	
	font-weight:normal;
}

#tabs i span{
	background:#e8e8e8 url(../images/icons/home_right_tab.gif) top right no-repeat;
	color:#000;
	padding-right:10px;	
}

#tabs ul{	/* This class will be applied on navigation tabs */
	background:#00ff00 url(../images/icons/home_left_tab.gif) top left no-repeat;
	color:#fff;
	padding-left:5px;	
	font-weight:normal;
}

#tabs ul span{
	background:#00ff00 url(../images/icons/home_right_tab.gif) top right no-repeat;
	color:#fff;
	padding-right:10px;	
}



