/*********************************************************************

jQuery UI DropDown v1.0
http://uraniuminteractive.com

Copyright 2011, Frank Parent for Uranium Interactive
Free to use and abuse under the MIT license.
http://www.opensource.org/licenses/mit-license.php

**********************************************************************/

 /* The dropdown container */


.ddContainer a, .firstDDcontainer a {
	display:block;
	cursor:default;
	text-decoration:none;
 }
 
 .ddOptionList li a {
	background-color:#fff;
	padding-right:4px;
	color:#333;
}
 
 .ddContainer  a.selected, .firstDDcontainer  a.selected {
	background-color: #3399ff;
	color: #fff;
}
 
 /* The dropdown toggle button */
.ddToggle {
	height:18px;
	position:relative;
	display:block;
	border:1px solid #000;
	padding:0 18px 0 4px;
	line-height:18px;
	background-color:#fff;
}

/* The dropdown arrow in the toggle box */
.ddToggle span {
    height:14px;
	background:url(/sujet/olympiques-londres-2012/_img/fleche-dropdown.gif) no-repeat;
	display:block;
	width:14px; 
	position:absolute;
	top:2px; right:4px;
}

/* The dropdown option list */
.ddOptionList {
	background-color:#fff;
	border-right:solid 1px #000;
	border-bottom:solid 1px #000;
	border-left:solid 1px #000;
	list-style-type:none;
	padding:0;
	margin:0;
	position:absolute;
	left:0;
	z-index:999;
	width:169px !important;
}
			
.ddOptionList li.optgroup {
	font-style:italic;
	font-weight:bold;
	cursor:default;
}

