﻿.cur {
    _cursor: hand;
    cursor: pointer;
}
div.selectaTrigger {
	height: 10px;
	width: 186px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	font-style: italic;
	color: #747474;
	border-width: 1px;
	border-color: #cbccc6;
	border-style: solid;
	margin: 0px;
	border-radius: 3px;
	background-color: #fff;
/*	background-image: url(images/arrow-down.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
*/	padding: 8px 56px 8px 6px;
	overflow: hidden;
}
div.selectaTrigger:after {
	font-family: FontAwesome;
	content: "\f107";
	font-size: 30px;
	font-style: normal;
	text-align: center;
	line-height: 25px;
	color: #cbccc6;
	height: 25px;
	width: 40px;
	position: absolute;
	top: 32px;
	right: 1px;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}
div.selectaTrigger:hover:after {
	color: #c1171d;	
}
select.selecta {
    height: 27px;
}
div.selectaWrapper {
    border-top: 0;
    position: absolute;
    z-index: 10000;
    background: white;
    overflow: hidden;
    overflow-y: auto;
	border-right: 1px solid #eee;
	border-left: 1px solid #eee;
}
div.selectaOption {
    padding: 4px 0px 4px 8px;
    border-bottom: 1px solid #eee;
    clear: both;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
}
div.selectaOptionSelected {
    background: #f4eee1;
}
div.selectaDisabled {
    background: #555;
    color: #000;
}
div.selectaOptionOver {
    background: #f4eee1;;
}
.shadowy {
   /* -moz-box-shadow: 1px 1px 2px #000;
    -webkit-box-shadow: 1px 1px 2px #000;
    box-shadow: 1px 1px 2px #000;*/
}

@media only screen and (max-width: 850px){
div.selectaTrigger {
	width: 98% !important;
	padding-right: 0px;
	min-width: 160px;
	font-size: 16px;
}
div.selectaTrigger:after {
	top: 26px;
}
}