/* CSS Document */


*{
	margin: 0px;
	padding: 0px;
}

/*MENU CONTROLS THE ENTIRE BAR PLUS DROPDOWN - THIS CREATES OUR PLACEMENT*/
#menu {
	font-family:Arial, Helvetica, sans-serif;
	width: 412px;
/*	clear: left;*/
	margin-left: 300px;
	padding-top: 84px;
	/*margin-top: -48px;*/
	/*margin-left: 305px;*/
}

#menu ul {
	list-style-type: none;
}

#menu a {
	display: block;
	width: 103px;
}

li {
	float: left;
	position: relative;
	width: 103px;
}

li ul {
	display:none;/*DROPDOWN DOES NOT WORK IN IE 6 UNLESS THIS STYLE IS REMOVED*/
}

/*THIS WORKS FOR FF - NEED JS TO WORK IN IE B/C DOESN'T RECOGNIZE HOVER*/
li:hover ul,li.over ul{
	display: block;
	position: absolute;
}

#home_tab {
	background-image:url(../images/slices/home_tab.gif);
	display: block;
	line-height: 40px;
	width: 103px;
	background-repeat: no-repeat;
	text-indent: -5000px;
}

#home_tab:hover {
	background-image:url(../images/slices/home_hover_tab.gif);
	display: block;
	width: 103px;
	background-repeat: no-repeat;
	margin-top: 2px;
	line-height: 32px;
}

#about_tab {
	background-image:url(../images/slices/about_tab.gif);
	display: block;
	line-height: 40px;
	width: 103px;
	background-repeat: no-repeat;
	text-indent: -5000px;
}

#about_tab:hover{
	background-image:url(../images/slices/about_hover_tab.gif);
	display: block;
	margin-top: 2px;
	line-height: 32px;
	width: 103px;
	background-repeat: no-repeat;
}

#basket_tab{
	background-image:
	url(../images/slices/basket_tab.gif);
	display:block;
	width:103px;
	line-height:26px;
	text-indent:-5000px;
}

#basket_tab:hover {
	background-image:url(../images/slices/basket_hover_tab2.gif);
}

#contact_tab {
	background-image:url(../images/slices/contact_tab.gif);
	display: block;
	line-height: 40px;
	width: 104px;
	background-repeat: no-repeat;
	text-indent: -5000px;
}

#contact_tab:hover{
	background-image:url(../images/slices/contact_hover_tab.gif);
	display: block;
	margin-top: 2px;
	line-height: 32px;
	width: 103px;
	background-repeat: no-repeat;
}

/*THIS CONTROLS THE DROPDOWN IN THE BASKET LINK*/
li ul li a {
	background-color: #553d16;
	color: #7eb1a9;
	margin:0px;
	padding:0px;
	border: thin solid #896d3b;
	text-decoration: none;
	font-size: small;
	text-align: center;
	line-height:18px;
	text-transform: uppercase;
}

li {
	margin:0px;
	padding:0px;
	line-height:20px;
}

li ul li a:hover {
	background-color: #7eb1a9;
	color: #553d16;
	text-decoration: none;
}
