.switch-container {
	font: 13px/20px Verdana, sans-serif;
	color: #404040;
	/*display: block;*/
	padding: 5px 5px 5px 10px;
	line-height: 23px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.switch-container + .switch-container {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.switch {
  position: relative;
  /*float: right;*/
  float: left;
  line-height: 21px;
  width: 74px;
  overflow: hidden;
  background: #4b4b4b;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0.6) rgba(0, 0, 0, 0.45) rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  background-image: -webkit-linear-gradient(top, #4b4b4b, #494949 50%, #505050 51%, #5b5b5b);
  background-image: -moz-linear-gradient(top, #4b4b4b, #494949 50%, #505050 51%, #5b5b5b);
  background-image: -o-linear-gradient(top, #4b4b4b, #494949 50%, #505050 51%, #5b5b5b);
  background-image: linear-gradient(to bottom, #4b4b4b, #494949 50%, #505050 51%, #5b5b5b);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
}

.switch-label {
  float: left;
  width: 37px;
  font-size: 12px;
  color: #fafafa;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.8);
  text-align: center;
  text-transform: uppercase;
}

.switch-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 35px;
  background: #c8c8c8;
  border-radius: 4px;
  background-image: -webkit-linear-gradient(top, #d2d2d2, #888888);
  background-image: -moz-linear-gradient(top, #d2d2d2, #888888);
  background-image: -o-linear-gradient(top, #d2d2d2, #888888);
  background-image: linear-gradient(to bottom, #d2d2d2, #888888);
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 0 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 0 1px 1px rgba(0, 0, 0, 0.5);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}

.switch-input {
  display: none;
}
.switch-input:checked + .switch {
  background: #ff9900;
  background-image: -webkit-linear-gradient(top, #ff9900, #FFA315 51%, #FFB340);
  background-image: -moz-linear-gradient(top, #ff9900, #FFA315 51%, #FFB340);
  background-image: -o-linear-gradient(top, #ff9900, #FFA315 51%, #FFB340);
  background-image: linear-gradient(to bottom, #ff9900, #FFA315 51%, #FFB340);
  /*background-image: -webkit-linear-gradient(top, #ff9900, #FA9800 50%, #FFA315 51%, #FFB340);
  background-image: -moz-linear-gradient(top, #ff9900, #FA9800 50%, #FFA315 51%, #FFB340);
  background-image: -o-linear-gradient(top, #ff9900, #FA9800 50%, #FFA315 51%, #FFB340);
  background-image: linear-gradient(to bottom, #ff9900, #FA9800 50%, #FFA315 51%, #FFB340);*/
}
.switch-input:checked + .switch .switch-handle {
  left: 39px;
}

/* ----- RADIO BUTTONS ----- */

.regular-radio {
	display: none;
}

.regular-radio + label {
	-webkit-appearance: none;
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 9px;
	border-radius: 50px;
	display: inline-block;
	position: relative;
	cursor: pointer;
}

.regular-radio:checked + label:after {
	content: ' ';
	width: 12px;
	height: 12px;
	border-radius: 50px;
	position: absolute;
	top: 3px;
	background: #ff9900;
	box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
	text-shadow: 0px;
	left: 3px;
	font-size: 32px;
}

.regular-radio:checked + label {
	background-color: #e9ecee;
	color: #99a1a7;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1), inset 0px 0px 10px rgba(0,0,0,0.1);
}

.regular-radio + label:active, .regular-radio:checked + label:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

/* ---- SELECT WITH RADIO BUTTONS ----- */
.switch_sel {
  font: 13px/20px Verdana, sans-serif;
  color: #404040;
  position: relative;
  margin: 20px auto;
  height: 26px;
  width: 160px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
}

.switch-label_sel {
  position: relative;
  z-index: 2;
  float: left;
  width: 78px;
  line-height: 26px;
  font-size: 11px;
  color: #666;
  /*color: rgba(255, 255, 255, 0.35);*/
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.switch-label_sel:active {
  font-weight: bold;
}

.switch-label-off_sel {
  padding-left: 2px;
}

.switch-label-on_sel {
  padding-right: 2px;
}

/*
 * Note: using adjacent or general sibling selectors combined with
 *       pseudo classes doesn't work in Safari 5.0 and Chrome 12.
 *       See this article for more info and a potential fix:
 *       http://css-tricks.com/webkit-sibling-bug/
 */
.switch-input_sel {
  display: none;
}
.switch-input_sel:checked + .switch-label_sel {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.65);
  text-shadow: 0 1px rgba(255, 255, 255, 0.25);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
}
.switch-input_sel:checked + .switch-label-on_sel ~ .switch-selection_sel {
  left: 80px;
  /* Note: left: 50% doesn't transition in WebKit */
}

.switch-selection_sel {
  display: block;
  position: absolute;
  z-index: 1;
  top: 2px;
  left: 2px;
  width: 78px;
  height: 22px;
  background: #65bd63;
  border-radius: 3px;
  background-image: -webkit-linear-gradient(top, #9dd993, #65bd63);
  background-image: -moz-linear-gradient(top, #9dd993, #65bd63);
  background-image: -o-linear-gradient(top, #9dd993, #65bd63);
  background-image: linear-gradient(to bottom, #9dd993, #65bd63);
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), 0 0 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}

.switch-orange_sel .switch-selection_sel {
  background: #FF9900;
  background-image: -webkit-linear-gradient(top, #FFCA82, #ff9900);
  background-image: -moz-linear-gradient(top, #FFCA82, #ff9900);
  background-image: -o-linear-gradient(top, #FFCA82, #ff9900);
  background-image: linear-gradient(to bottom, #FFCA82, #ff9900);
}

/* ----- CHECKBOX ------ */
.regular-checkbox {
	display: none;
}

.regular-checkbox + label {
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 9px;
	border-radius: 3px;
	display: inline-block;
	position: relative;
	cursor:pointer;
}

.regular-checkbox + label:active, .regular-checkbox:checked + label:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.regular-checkbox:checked + label {
	background-color: #e9ecee;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	color: #99a1a7;
}

.regular-checkbox:checked + label:after {
	content: '\2714';
	font-size: 14px;
	position: absolute;
	top: 0px;
	left: 3px;
	color: FF9900;
	/*color: #99a1a7;*/
}

.regular-checkbox:disabled + label {
	background-color: #fafafa;
	border: 1px solid #cacece;
	/*box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);*/
	padding: 9px;
	border-radius: 3px;
	display: inline-block;
	position: relative;
	cursor:default;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=40);
	-moz-opacity: 0.40;
	opacity: 0.40;
}
.regular-checkbox:disabled + label:after {
	content: '\2714';
	font-size: 14px;
	position: absolute;
	top: 0px;
	left: 3px;
	color: FF9900;
	/*color: #99a1a7;*/
}

/* ----- SELECT BOX ----- */
.selectify {
    position: relative;
    color:#555;
	outline: none; /*Para retirar do chrome as linhas de default*/
}

.selectify .options {
	outline: none; /*Para retirar do chrome as linhas de default*/
    position:absolute;
    z-index:2;
    max-height:250px;
    overflow-y:auto;
}

.selectify .header {
	background: rgb(251,251,251); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(251,251,251,1) 0%, rgba(255,255,255,1) 75%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(251,251,251,1)), color-stop(75%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(251,251,251,1) 0%,rgba(255,255,255,1) 75%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(251,251,251,1) 0%,rgba(255,255,255,1) 75%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(251,251,251,1) 0%,rgba(255,255,255,1) 75%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(251,251,251,1) 0%,rgba(255,255,255,1) 75%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBFBFB', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
    border: 1px solid #CDCDCD;
    cursor:pointer;
	border-radius: 4px;
	outline: none; /*Para retirar do chrome as linhas de default*/
}
.selectify .header:hover {
	border: 1px solid #999;
}


.selectify .header .icon {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
	border-color: #FFAD34 transparent transparent;
    /*border-color: #999 transparent transparent;*/
    border-image: none;
    border-right: 7px solid transparent;
    border-style: solid;
    border-width: 7px;
    content: " ";
    height: 0;
    margin-left: -7px;
    position: absolute;
    width: 0;
    right: 0.5em;
    margin-top: -5px;
    position: absolute;
    top: 50%;
}

.selectify .header .selected {
    color:#444;
	font-family: Verdana, Arial;
    font-size: 12px;
    padding: 5px 10px;
}

.selectify .header.hover .selected {
    color:#000;
}

.selectify .header.hover .icon {
    border-color: #ff9900 transparent transparent;
	/*border-color: #000 transparent transparent;*/
}

.selectify .option {
    font-family: Verdana, Arial;
    font-size: 12px;
	border: 1px solid #E2E2E2;
    cursor:pointer;
    border-top:0;
    color:#333;
    padding: 5px 15px;
    background:#FFF;
}

.selectify .option.hover {
	background: #F2F2F2;
	color:#333;
    /*background:#FECA40;*/
}

.selectify .option.active {
    background:#F2F2F2;
    color:#333;
}