div#optionSelect
{
	border: 1px solid #b7dcf2;
	border-radius: .6em;
	background: linear-gradient(to bottom, #ddefff, #c6e5ff);
	box-shadow: 0 .1em .35em rgba(20, 80, 122, .12);
	margin-bottom: .8em;
	font-size: inherit;
	font-family: inherit;
	color: #10405f;
}
table#optionSelect
{
	width: 100%;
	border: none;
	border-collapse: separate;
	border-spacing: 0;
	background: transparent;
	font-size: inherit;
	font-family: inherit;
}
#optionSelect td
{
	padding: .4em .65em;
	vertical-align: top;
}
#optionSelect h3
{
	margin: 0;
	font-size: inherit;
	font-weight: bold;
	color: #10405f;
	letter-spacing: .02em;
}
#optionSelectSubTab td
{
	padding: 0;
}
/* Separateur vertical : filet dans le ton de la barre plutot qu'un trait gris */
td#optionSelectSeparation
{
	border-right: 1px solid #8cc3e3;
}

table#optionSelectOptionsSup td {
	padding: 0 .5em;
	white-space: nowrap;
}

/* Champs de saisie : meme traitement que dans les tables de fiche */
#optionSelect input[type="text"],
#optionSelect input[type="password"],
#optionSelect select,
#optionSelect textarea
{
	border: 1px solid #b7dcf2;
	border-radius: .35em;
	padding: .2em .4em;
	font-size: inherit;
	font-family: inherit;
	color: #000000;
	background-color: #ffffff;
	transition: border-color .15s ease, box-shadow .15s ease;
}
#optionSelect input[type="text"]:hover,
#optionSelect input[type="password"]:hover,
#optionSelect select:hover,
#optionSelect textarea:hover
{
	border-color: #5a9fd4;
}
#optionSelect input[type="text"]:focus,
#optionSelect input[type="password"]:focus,
#optionSelect select:focus,
#optionSelect textarea:focus
{
	outline: none;
	border-color: #3a7ab8;
	box-shadow: 0 0 0 .15em rgba(58, 122, 184, .3);
}
#optionSelect input[disabled],
#optionSelect input[readonly],
#optionSelect select[disabled],
#optionSelect textarea[disabled],
#optionSelect textarea[readonly]
{
	background-color: #eef7fd;
	border-color: #cbe4f5;
	color: #666666;
}
#optionSelect input[type="checkbox"],
#optionSelect input[type="radio"]
{
	vertical-align: middle;
	margin-right: .25em;
}

/* Boutons de la barre */
#optionSelect input[type="submit"],
#optionSelect input[type="button"],
#optionSelect button
{
	border: 1px solid #b7dcf2;
	border-radius: .35em;
	padding: .2em .7em;
	font-size: inherit;
	font-family: inherit;
	color: #10405f;
	background: linear-gradient(to bottom, #ffffff, #eef7fd);
	cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease;
}
#optionSelect input[type="submit"]:hover,
#optionSelect input[type="button"]:hover,
#optionSelect button:hover
{
	background: #ffffff;
	border-color: #5a9fd4;
}

#optionSelect a
{
	color: #10405f;
	text-decoration: none;
}
#optionSelect a:hover
{
	text-decoration: underline;
}
#optionSelect img
{
	vertical-align: middle;
}
