/**
 * Contao Open Source CMS
 *
 * Copyright (c) 2005-2016 Leo Feyer
 *
 * @license LGPL-3.0+
 */

.styled_select {
	display:inline;
	margin-top:1px;
	position:absolute;
	background:#fff;
	border:1px solid #aaa;
	border-radius:3px;
	padding:0 !important;
	font-family:"Trebuchet MS",Verdana,sans-serif;
	font-size:12px;
	text-align:left;
	line-height:20px;
	white-space:nowrap;
	overflow:hidden;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
.styled_select.focused {
	background-color:#ebfdd7;
}
.webkit .styled_select.focused {
	outline-offset:-2px;
	outline:auto 5px -webkit-focus-ring-color;
}
.styled_select.disabled {
	color:#bbb;
	background-color:#f9f9f9;
	border:1px solid #c8c8c8;
}
.tl_subpanel .styled_select {
	font-size:11px;
	line-height:18px;
}
.styled_select span {
	padding:0 3px;
}
.styled_select b {
	display:block;
	width:15px;
	height:100%;
	position:absolute;
	top:0;
	right:0;
	border-left:1px solid #aaa;
	background:#eee;
	background-image:-moz-linear-gradient(bottom, #ccc 0%, #eee 60%);
	background-image:-webkit-linear-gradient(bottom, #ccc 0%, #eee 60%);
	background-image:-o-linear-gradient(bottom, #ccc 0%, #eee 60%);
	background-image:-ms-linear-gradient(bottom, #ccc 0%, #eee 60%);
	background-image:linear-gradient(bottom, #ccc 0%, #eee 60%);
}
.styled_select b i {
	display:block;
	width:100%;
	height:100%;
	background:url("../images/select.gif") center center no-repeat;
}