/************************************************************************
*************************************************************************
@Name :       	Selectyze - jQuery Plugin CSS
@Revison :    	1.0
@Date : 		19/12/2011
@Author:     	Mickael SURREL - ALPIXEL Agency - (www.myjqueryplugins.com - www.alpixel.fr) 
@License :		 Open Source - MIT License : http://www.opensource.org/licenses/mit-license.php
 
**************************************************************************
*************************************************************************/

/***************************/
/** Common to every theme **/
/***************************/
.DivSelectyze {
	position:relative;
	width:253px;
	/*float:right;*/
	/*margin-top:15px;*/
}

.DivSelectyze .selectyzeValue {
	position:relative;
	z-index:10;
	display:block;
	text-decoration:none;
}

.DivSelectyze ul {list-style:none;}
.DivSelectyze .UlSelectize {
	position:absolute;
	z-index:9999;
	display:none;
}

.DivSelectyze li a {
	display:block;
	text-decoration:none;
}

.optgroupTitle {
	display:block;
}
/*******************************/
/** END COMMON TO EVERY THEME **/
/*******************************/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/




/*----------------------------------
 You can add your own theme below !!
 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 
 
 
 that's all ! \o/
----------------------------------*/
	
	
	/*****************/
	/** MAC THEME **/
	/*****************/
	.mac .selectyzeValue {
		font: 13px/35px Arial;
		color: #000;
		width: 244px;
		height: 35px;
		background: url('bg_mac.png') no-repeat;
		padding-left: 15px
	}
	
	.mac > a:hover {
		color: #000 !important;
	}

	.mac .UlSelectize {
		top: 36px;
		left: 0px;
		width: 244px;
		background-color: #fff;
		border: 1px solid #b7b7b7;
	}
	
	.mac .UlSelectize li {
		background-color: #fff;
		padding: 10px;
		border-bottom: 1px solid #b7b7b7;
	}
	
	.mac .UlSelectize li a {
		width: 222px;
		height: 25px;
		font:13px/20px Arial;
		color: #000;
	}
	
	.mac .UlSelectize li a:hover {
		color: #c72b29;
	}

	/*.mac li a {
		width: 221px;
		height:20px;
		font:13px/20px Arial;
		background-color:transparent;
		color: #000;
		padding-left:10px;
		border-top:1px solid white;
		
	}

	.mac li a:hover {
		color:#fff;
		border-top:1px solid #0e54ec;
		background-color:#fff
	}
	
	.mac .optgroupTitle {
		margin-top:15px;
		font-size:13px;
		padding-left:10px;
		background-color:#fff;
		color:#969696;
	}*/