/*
	SLIDER
*/

.hide { display: none; }

#slider {
    width: 730px;
    margin: -10px auto 5px auto;
    position: relative;
	/*border: 10px solid #FFF;*/
	background-color: #FFF;
}

.scroll {
	overflow: hidden;
	width: 730px;
    margin: 0 auto;
    position: relative;
}

.scrollContainer {
	position: relative;
}

.scrollContainer div.panel {
    padding: 10px;
    width: 110px;
	height: 110px;
}

#left-shadow {
	position: absolute;
	top: 0;
	left: 0;
	width: 12px;
	bottom: 0;
	background: url(../images/leftshadow.png) repeat-y;
}

#right-shadow {
	position: absolute;
	top: 0;
	right: 0;
	width: 12px;
	bottom: 0;
	background: url(../images/rightshadow.png) repeat-y;
}

.inside {
	padding: 5px;
	/*border: 1px solid #999;*/
}

.inside img {
	display: block;
	border: 1px solid #666;
	margin: 0 0 10px 0;
	width: 110px;
}

.scrollButtons {
    position: absolute;
    top: 45px;
    cursor: pointer;
}

.scrollButtons.left {
    left: -32px;
}

.scrollButtons.right {
    right: -33px;
}

/*
	MENU
*/


/* 
	LEVEL ONE
*/
ul.dropdown                         { position: relative; z-index: 9999;	margin-left: 15px; padding-top: 10px; }								
ul.dropdown li                      {
	float: left;
	zoom: 1;
	margin: 0;
	background-color: #acbb24;
	width: 140px;
	border: #ffffff 1px solid;
	text-decoration: none;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;/*letter-spacing: 2px;*/
	height: 20px;
	font-size: 100%;
	color: #fff;
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}	/* height: 20px*/							
ul.dropdown a:hover		            { color: #336699; }
ul.dropdown a:active                { color: #333366; }
ul.dropdown li a                    {
	display: block;
	padding: 3px;
	color: #fff;
	font-weight: bold;
}
ul.dropdown li:last-child a         { border-right: none; } /* Doesn't work in IE */
ul.dropdown li.hover,
ul.dropdown li:hover                { background: #336699; color: black; position: relative; }
ul.dropdown li.hover a              { color: black; }

/* 
	LEVEL TWO
*/
ul.dropdown ul 						{ width: 220px; visibility: hidden; position: absolute; top: 100%; left: 50%; }
ul.dropdown ul li 					{ height: 20; width: 250px; font-weight: normal; background: #f6f6f6; color: #000; 
									  border-bottom: 1px solid #ccc; float: none; }								                                    
ul.dropdown ul li a					{ border-right: none; width: 100%; display: inline-block; } /* IE 6 & 7 Needs Inline Block */

/* 
	LEVEL THREE
*/
ul.dropdown ul ul 					{ left: 100%; top: 0; }
ul.dropdown li:hover > ul 			{ visibility: visible; }
