@CHARSET "UTF-8";
/* Dropdown control */
.selectBox-dropdown {
	background-color: #FFF;
	border: solid 1px #CCC;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: normal;
	height: 30px;
	position: relative;
	width:238px !important;
	
}

.dropdownItens{ width:70px !important; }
.dataTables_length label{ display:block; line-height:20px; }

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
	border-color: #666;
}

.selectBox-dropdown .selectBox-label {
	display: block;
	height: 30px;
	left: 0;
	line-height: 30px;
	outline: none;
	overflow: hidden;
	position: absolute;
	text-indent: 10px;
	top: 0;
	width: 200px;
	cursor:pointer;
}

.selectBox-dropdown .selectBox-arrow {
	background: url(../img/select-icons.png) 0 -116px no-repeat;
	display: block;
	height: 30px;
	outline: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 33px;
	cursor:pointer;
}

.selectBox-menuShowing .selectBox-arrow {
    background: url(../img/select-icons.png) 0 -16px no-repeat !important;
}
.selectBox-dropdown:hover .selectBox-arrow {
    background: url(../img/select-icons.png) 0 -167px no-repeat !important;
}
.selectBox-menuShowing:hover .selectBox-arrow {
	background: url(../img/select-icons.png) 0 -66px no-repeat !important;
}


/* Dropdown menu */
.selectBox-dropdown-menu {
	background-color: #FFF;
	border: solid 1px #CCC;
	list-style: none;
	left: -1px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 30px;
	width: 238px;
	z-index: 9999;
	overflow-y: auto;
	cursor:pointer;
	max-height:250px;
}


/* Inline control */
.selectBox-inline {
	min-width: 150px;
	outline: none;
	border: solid 1px #BBB;
	background: #FFF;
	display: inline-block;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	overflow: auto;
}

.selectBox-inline:focus {
	border-color: #666;
}

/* Options */
.selectBox-options LI{
	padding: 0px;
}

.selectBox-options LI A {
	border-bottom: dotted 1px #d6dce0;
	display: block;
	outline: none;
	padding: 7px 10px;
	cursor:pointer;
}

.selectBox-options LI.selectBox-hover A {
	color: #0b649d;
	background-color: #eee;
}

.selectBox-options LI.selectBox-disabled A {
	color: #888;
	background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
	color: #0b649d;
}

.selectBox-options .selectBox-optgroup {
	color: #666;
	background: #EEE;
	font-weight: bold;
	line-height: 1.5;
	padding: 0 .3em;
	white-space: nowrap;
}


/* Disabled state */
.selectBox.selectBox-disabled {
	color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
	opacity: .5;
	filter: alpha(opacity=50);
	border-color: #666;
}

.selectBox-inline.selectBox-disabled {
	color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
	background-color: transparent !important;
}