@charset "utf-8";
/* CSS Document */

 .bad-nav {
	list-style-type: none;
	list-style-position:outside;
	position: relative;
	margin: 0;
	padding: 0px 0 0 0;
 }
  .bad-nav li{
   display: block;
   overflow: hidden;
   padding: 0;
   cursor: pointer;
   float: left;
   width: 125px;
   height: 40px;
   margin-right: 0px;
   background-image:url(bad_menu2.jpg);
   background-repeat:no-repeat;
}
.bad-nav a{
	display:block;
	height:40px;
	text-indent:-9999px;
	outline:none;
}

/*This is the offset for the background of the menu*/
#bad-home {
	background-position:0px 0px;
}
#bad-music {
	background-position:-125px 0px;
}
#bad-video {
	background-position:-250px 0px;
}
#bad-shows {
	background-position:-375px 0px;
}
#bad-bio {
	background-position:-500px 0px;
}
#bad-merch {
	background-position:-625px 0px;
}


/****These are the hover states of the menu****/
#bad-home.active, #bad-home:hover {
	background-position: 0 bottom;
}
#bad-music.active, #bad-music:hover{
	background-position: -125px bottom;
}
#bad-video.active, #bad-video:hover {
	background-position: -250px bottom;
}
#bad-shows.active, #bad-shows:hover {
	background-position: -375px bottom;
}
#bad-bio.active, #bad-bio:hover {
	background-position: -500px bottom;
}
#bad-merch.active, #bad-merch:hover {
	background-position: -625px bottom;
}


