/* 
    Created on : 19/12/2013, 02:44:32 PM
    Author     : Gabriel Memmel <gabimem@gmail.com>
*/
/* General megaSelectBox styles */       
.megaSelectBox {
	/*	display: inline-block;
		font-size: 12px;
		line-height: 12px;
		margin: 0 10px 0 0;
		float: left;*/
}
.megaSelectBox dt,
.megaSelectBox dd,
.megaSelectBox dd ul,
.megaSelectBox dd ul li {
	margin: 0px;
	padding: 0px;
}
.megaSelectBox dd {
	position:relative;
}
/* DT styles for sliding doors */
.megaSelectBox dt {
	height: 100%;
}
.megaSelectBox dt a {
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	font-style: inherit;
	line-height: inherit;
	text-transform: inherit;
	color: inherit;
	display:block;
	height: 100%;
	overflow: hidden;
	padding-right: 20px;
	background: url("../img/select-icon.png") center right no-repeat transparent;
}
.megaSelectBox dt a span {
	cursor:pointer;
	display:block;
	padding:2px;
	height: 22px;
	line-height: 22px;
	overflow: hidden;
}
.megaSelectBox dt a span img {
	float: left;
	margin-right: 5px;
}
.megaSelectBox dd {
	position: absolute;
	left: 0;
	width: 100%;
}
/* UL styles */
.megaSelectBox dd ul {
	background: #fff;
	display:none;
	list-style:none;
	padding: 0px;
	position: absolute;
	left: 0px;
	top: 2px;
	width: auto;
	min-width: 170px;
	z-index: 1000;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	
	-webkit-box-shadow: 0 2px 3px #999;
	-moz-box-shadow: 0 2px 3px #999;
	-ms-box-shadow: 0 2px 3px #999;
	-o-box-shadow: 0 2px 3px #999;
	box-shadow: 0 2px 3px #999;
}
.megaSelectBox span.value {
	display:none;
}
.megaSelectBox dd ul li {
	width: auto !important;
}
.megaSelectBox dd ul li a {
	padding: 5px 10px;
	display: block;
	white-space: nowrap;
	font-size: 13px !important;
	width: auto;
}
.megaSelectBox dd ul li a img {
	border: 1px solid #fff;
	vertical-align: middle;
}
.megaSelectBox dd ul li a:hover {
	background: #ddd;
}

