/*-----------------------------------------------------
// SmoothMenu for Opencart v1.5.3  
// Created by villagedefrance                          
// contact@villagedefrance.net                                                                      
//-----------------------------------------------------
*/

.smooth {
	display: inline-block;
	background: #FCFCFC;
	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 #DDD;
	-webkit-box-shadow: 0 2px 2px silver;
	-moz-box-shadow: 0 2px 2px silver;
	box-shadow: 0 2px 2px silver;
}
/* Top level list items */
.smooth li {
	position: relative;
	display: block;
	width: 100%;
	float: left;
}
.smooth li a {
	display: block;
	background: #FCFCFC;
	padding: 6px 0px 6px 8px;
	border-left: 0px;
	border-top: 1px solid #DDD;
	color: #374853;
	line-height: 18px;
	text-decoration: none;
	/* white-space: nowrap; */
}
.smooth li a:link, .smooth ul li a:visited{
	color: #374853;
}
.smooth li a:hover{
	position: static;
	height: auto;			/* fixes IE7 'sticky bug' */
	background: #E7E7E7;
	color: #374853;
	text-decoration: none;
	cursor: pointer;
}
.smooth li a.selected{ 
	font-weight: bold;
	background: #E7E7E7;
}
#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: #F4F4F4;
	padding: 6px 0px 6px 8px;
	border-left: 0px;
	color: #374853;
	line-height: 18px;
	text-decoration: none;
	white-space: nowrap;
}
.smooth li li a:link, .smooth ul li li a:visited{
	color: #374853;
}
.smooth li li a:hover{
	position: static;
	height: auto;			/* fixes IE7 'sticky bug' */
	background: #E7E7E7;
	color: #374853;
	text-decoration: none;
	cursor: pointer;
}
.smooth li li a.selected{ 
	font-weight: normal;
	background: #E7E7E7;
}
#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;
	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: silver;
}
.toplevelshadow {
	opacity: 0.8;
}
/* Custom Box */
.box-smooth {
	padding: 5px 0px;
	margin:0px 0px 10px 0px;
	background-color: #F4F4F4;
	border: 1px solid #DDD;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}