/************************************************************************
@Name :       	Selectyze - jQuery Plugin CSS
*************************************************************************/
/** Common to every theme **/
/***************************/
.DivSelectyze {
	box-sizing: border-box;
	float:left;
	position:relative;
	width:310px;
}
.DivSelectyze .selectyzeValue {
	display:block;
	position:relative;
	text-decoration:none;
	z-index:10;
}
.DivSelectyze ul {list-style:none;}
.DivSelectyze .UlSelectize {
	display:none;
	position:absolute;
	z-index:9999;
}
.DivSelectyze li a {
	display:block;
	text-decoration:none;
}
.optgroupTitle {
	display:block;
}
/** END COMMON TO EVERY THEME **/
/*----------------------------------------------------------------------------------------------------------------------------------------
	To add your theme, be sure to have 5 CSS elements :
	.your_theme .selectyzeValue {} 		-> Appearance of your select element
	.your_theme .UlSelectize {} 			-> Appearance of the dropdown list
	.your_theme li a {} 					-> Appearance of the items into the dropdown list
	.your_theme li a:hover {} 				-> items on hover
	.your_theme .optgroupTitle {} 			-> Appearance of the optgroup label !! only if you have <optgroup> element into your list 
----------------------------------------------------------------------------------------------------------------------------------------*/
/** MAC THEME **/
/*****************/
.mac{
	border-radius: 3px;
	border: 1px solid #ccc;
}
.mac .selectyzeValue {
	box-sizing: border-box;
	color: #000000;
	font-size: 14px;
	line-height: 28px;
	height: 30px;
	background: url('../images/sprite-select-input.jpg') no-repeat right 2px;
	padding: 0px 28px 0px 15px;
	width: 308px;
}
.mac ul.UlSelectize {
	background-color: #fff;
	border: 1px solid #b7b7b7;
	border-radius: 3px;
	box-sizing: border-box;
	left: -1px;
	margin: 0px;
	top: 28px;
	width: 310px;
}
.mac li{
	line-height: 30px;
}
.mac li a {
	height: 30px;
	font-size: 14px;
	line-height: 30px;
	background-color: transparent;
	color: #000;
	padding: 0px 10px;
	border-top: 1px solid white;
	
}
.mac li a:hover {
	color: #fff;
	border-top: 1px solid #0e54ec;
	background-color:#2260f6; /* gradient bgcolors */
	background-image: -webkit-gradient(linear, left top, left bottom, from(#6289f8), to(#2260f6)); /* Saf4+, Chrome */
	background-image: -webkit-linear-gradient(top, #6289f8, #2260f6); /* Chrome 10+, Saf5.1+, iOS 5+ */
	background-image:    -moz-linear-gradient(top, #6289f8, #2260f6); /* FF3.6 */
	background-image:     -ms-linear-gradient(top, #6289f8, #2260f6); /* IE10 */
	background-image:      -o-linear-gradient(top, #6289f8, #2260f6); /* Opera 11.10+ */
	background-image:         linear-gradient(top, #6289f8, #2260f6);
}
.mac .optgroupTitle {
	background-color: #fff;
	color: #969696;
	font-size: 14px;
	margin-top: 15px;
	padding-left: 10px;
}