/************************************************************************
*************************************************************************
@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:left;



}

.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;
}
label {float:left;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:#6d7262;
		width:296px;
		height:37px;
		background: url(../images/bg_mac.png) no-repeat;
		padding-left:15px;
		margin-bottom:12px;
	
	}

	.mac .UlSelectize {
		top:35px;
		left:2px;
		width:288px;
		background-color:#fff;
		border:1px solid #74933c;
		
	}

	.mac li a {
		height:20px;
		font:13px/20px Arial;
		background-color:transparent;
		color:#6d7262;
		padding-left:10px;
		
		
	}

	.mac li a:hover {
		color:#000;
		
		background-color:#b5d47c;/** gradient bgcolors */
		 /* Saf4+, Chrome */
		
	}
	
	.mac .optgroupTitle {
		margin-top:15px;
		font-size:13px;
		padding-left:10px;
		background-color:#fff;
		color:#969696;
	}
	
	
	