/************************************************************************
*************************************************************************
@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:188px;
	float:left;
	margin-top:0px;
}

.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/
----------------------------------*/

	
	
	/****************/
	/** FORMULA 1 THEME **/
	/****************/
	.formula1 .selectyzeValue {
		font-family: SkyTextMedium, Helvetica;
		color: #ffffff;
		font-size: 14px;
		text-shadow:1px 1px 0px #000000;
		text-align:left;
		width:176px;
		height:45px;
		background:url('/etc/designs/skysport/library/static/images/formula1/select_bg.png') left center no-repeat;
		line-height: 45px;
		padding-left: 12px;
	}

	.formula1 .UlSelectize {
		top:36px;
		left:2px;
		width:190px;
		background-color:#222222
	}

	.formula1 li a {
		font:12px/20px Arial;
		background-color:transparent;
		color:#fff;
		text-align: left;
		padding:3px 0px 3px 10px;
	}

	.formula1 li a:hover {
		background-color:#3e3d3d;
	}
	
	.formula1 .optgroupTitle {
		margin-top:15px;
		font-size:17px;
		font-style:italic;
		padding-left:10px;
		background-color:#3e3d3d;
		color:#fff;
		font-weight:700
	}