/*-----------------------------------------------------
// SmoothMenu for Opencart v1.5.5   							
// Created by villagedefrance                          			
// contact@villagedefrance.net        							
//-----------------------------------------------------
// Theme Black
//-----------------------------------------------------
*/

.smooth {
	display: inline-block;
	background: #222;
	width: 100%;
	height: auto;
	margin-bottom: 0px;	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
}
.smooth ul {
	list-style: none;
	margin-top: 0px;
	padding: 0px;
	border-bottom: 1px solid #999;
	-webkit-box-shadow: 0 2px 2px #999;
	-moz-box-shadow: 0 2px 2px #999;
	box-shadow: 0 2px 2px #999;
}
/* Top level list items */
.smooth li {
	position: relative;
	display: block;
	width: 100%;
	float: left;
}
.smooth li a {
	display: block;
	background: #222;
	padding: 6px 0px 6px 8px;
	border-left: 0px;
	border-top: 1px solid #999;
	color: #EEE;
	line-height: 18px;
	text-decoration: none;
	/* white-space: nowrap; */
}
.smooth li a:link, .smooth ul li a:visited{
	color: #EEE;
}
.smooth li a:hover{
	position: static;
	height: auto;			/* fixes IE7 'sticky bug' */
	background: #555;
	color: #FFF;
	text-decoration: none;
	cursor: pointer;
}
.smooth li a.selected{ 
	font-weight: bold;
	background: #444;
}
#smooth li {
	display: block;
	padding: 0px;
}
/* First level list items */
.smooth li li {
	position: relative;
	display: block;
	width: 100%;
	float: left;
}
.smooth li li a {
	display: block;
	background: #333;
	padding: 6px 0px 6px 8px;
	border-left: 0px;
	color: #EEE;
	line-height: 18px;
	text-decoration: none;
	white-space: nowrap;
}
.smooth li li a:link, .smooth ul li li a:visited{
	color: #EEE;
}
.smooth li li a:hover{
	position: static;
	height: auto;			/* fixes IE7 'sticky bug' */
	background: #555;
	color: #FFF;
	text-decoration: none;
	cursor: pointer;
}
.smooth li li a.selected{ 
	font-weight: normal;
	background: #555;
}
#smooth li li {
	display: block;
	padding: 0px;
}
/* 1st sub level menu */
.smooth ul li li ul {
	display: none; 		/* collapses all sub menus */
	position: absolute;	/* Note: "position:static;" for full dropdown */
	float: none;
	visibility: hidden;
	left: 0px;
}
/* 2nd sub level menu */
.smooth ul li ul li {
	display: list-item;
	float: none;
	z-index: 160;
}
.smooth ul li ul li a {
	font-size: 12px;
	font-weight: normal;
	min-width: 166px; 		/* Default:166px */
	padding: 5px 0px 5px 12px;
	margin: 0px;
	border-top: 0px;
	cursor: pointer;
}
/* Arrows & Shadows */
.downarrowclass {
	position: absolute;
	top: 12px;
	right: 7px;
}
.rightarrowclass {
	position: absolute;
	top: 9px;
	right: 7px;
}
.shadow {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 0px;
	height: 0px;
	background: #555;
}
.toplevelshadow {
	opacity: 0.8;
}
/* Custom Box */
.box-smooth {
	padding: 5px 0px;
	margin:0px 0px 10px 0px;
	background: #222;
	border: 1px solid #999;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}