/* CSS Document */

/*---Navigation---*/

#nav {
    padding: 0;
    width: 600px;
    height: 49px;
    list-style: none;
	padding-left:340px;
}    
#nav li {
    float: left;
    height: 49px;
    list-style: none;
}
#nav span {
    position: absolute;
    top: -9999px;
}

/* Home */
.nav_home {
    width: 75px;
    height: 49px;
    background: url(../images/nav.png) 0 0 no-repeat;
    display: block;
}
.nav_home:hover {
    height: 49px;
    background: url(../images/nav.png) 0 -49px no-repeat;
}

/* Shop */
.nav_shop {
    width: 69px;
    height: 49px;
    background: url(../images/nav.png) -75px 0 no-repeat;
    display: block;
}
.nav_shop:hover {
    height: 49px;
    background: url(../images/nav.png) -75px -49px no-repeat;
}

/* Process */
.nav_process {
    width: 118px;
    height: 49px;
    background: url(../images/nav.png) -144px 0 no-repeat;
    display: block;
}
.nav_process:hover {
    height: 49px;
    background: url(../images/nav.png) -144px -49px no-repeat;
}

/* Special Offers */
.nav_offers {
    width: 131px;
    height: 49px;
    background: url(../images/nav.png) -261px 0 no-repeat;
    display: block;
}
.nav_offers:hover {
    height: 49px;
    background: url(../images/nav.png) -261px -49px no-repeat;
}

/* Basket */
.nav_basket {
    width: 78px;
    height: 49px;
    background: url(../images/nav.png) -392px 0 no-repeat;
    display: block;
}
.nav_basket:hover {
    height: 49px;
    background: url(../images/nav.png) -392px -49px no-repeat;
}

/* Contact */
.nav_contact {
    width: 103px;
    height: 49px;
    background: url(../images/nav.png) -470px 0 no-repeat;
    display: block;
}
.nav_contact:hover {
    height: 49px;
    background: url(../images/nav.png) -470px -49px no-repeat;
}

/* Active Pages */
body.home .nav_home {
	background: url(../images/nav.png) 0 -49px no-repeat;
}
body.shop .nav_shop {
	 background: url(../images/nav.png) -75px -49px no-repeat;
}
body.process .nav_process {
	background: url(../images/nav.png) -144px -49px no-repeat;
}
body.offers .nav_offers {
	background: url(../images/nav.png) -261px -49px no-repeat;
}
body.basket .nav_basket {
	background: url(../images/nav.png) -392px -49px no-repeat;
}
body.contact .nav_contact {
	background: url(../images/nav.png) -470px -49px no-repeat;
}
