/* Formulario VIP */
.form100 {
	position: relative;
	float: left;
	width: 100%;
	display: block;
}
.form50 {
	position: relative;
	float: left;
	width: 49%;
	display: block;
}
.form60 {
	position: relative;
	float: left;
	width: 65%;
	display: block;
}
.formright {
	float: right;
}
.formcenter {
	position: relative;
	width: 60%;
	margin-left: 20%;
	display: block;
}
.etiqueta {
	margin-top: 10px;
}
.envio {
	margin-top: 16px;
}
input {
	color: #ddd;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: block;
	margin-bottom: 5px;
	margin-top: 5px;
	width: 100%;
	height: 40px;
	line-height: 40px;
	font-size: 1em;
	font-weight: bold;
	background: #262626;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.3) inset, 0px 1px 0px rgba(255,255,255,0.2);
	border: 1px solid #000;
	padding: 0px 10px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input[disabled="disabled"] {
	background: #555;
}
input[type="submit"] {
	color: #ddd;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: block;
	font-size: 1em;
	line-height: 2.5em;
	font-weight: bold;
	height: 2.5em;
	width: 100%;
	text-decoration: none;
	text-shadow: 0px 1px 0px rgba(0,0,0,1);
	box-shadow: 0px 0px 1px rgba(255,255,255,.4) inset, 0px 1px 1px rgba(0,0,0,0.5);
	background: #333;
	background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#111));
	background: -webkit-linear-gradient(top, #333, #111);
	background: -moz-linear-gradient(top, #333, #111);
	background: -o-linear-gradient(top, #333, #111);
	background: -ms-linear-gradient(top, #333 0%, #111 100%);
	background: linear-gradient(to bottom, #333, #111);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	border: 1px solid #000;
}
input[type="submit"]:hover {
	cursor: pointer;
	background: #333;
	background: -webkit-gradient(linear, left top, left bottom, from(#3b3b3b), to(#191919));
	background: -webkit-linear-gradient(top, #3b3b3b, #191919);
	background: -moz-linear-gradient(top, #3b3b3b, #191919);
	background: -o-linear-gradient(top, #3b3b3b, #191919);
	background: -ms-linear-gradient(top, #3b3b3b 0%, #191919 100%);
	background: linear-gradient(to bottom, #3b3b3b, #191919);
	color: #fff;
}
input[type="submit"]:active {
	background: #222;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.4) inset;
}
textarea {
	color: #ddd;
	-webkit-appearance: none;
	-moz-appearance: none;
	display: block;
	margin: 0;
	margin-top: 5px;
	width: 100%;
	height: 150px;
	min-hight: 150px;
	max-height: 250px;
	overflow: auto;
	resize: vertical;
	border: none;
	line-height: 18px;
	font-size: 1em;
	font-weight: bold;
	background: #262626;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.3) inset, 0px 1px 0px rgba(255,255,255,0.2);
	border: 1px solid #000;
	padding: 12px 12px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input:focus {
	-webkit-box-shadow: 0 0 12px #3388cc;
	-moz-box-shadow: 0 0 12px #3388cc;
	box-shadow: 0 0 12px #3388cc;
}
textarea:focus {
	-webkit-box-shadow: 0 0 12px #3388cc;
	-moz-box-shadow: 0 0 12px #3388cc;
	box-shadow: 0 0 12px #3388cc;
}
input.error, textarea.error {
	background: #5c2424;
	background: -moz-linear-gradient(top, #5c2424 0%, #333 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5c2424), color-stop(100%, #333));
	background: -webkit-linear-gradient(top, #5c2424 0%, #333 100%);
	background: -o-linear-gradient(top, #5c2424 0%, #333 100%);
	background: -ms-linear-gradient(top, #5c2424 0%, #333 100%);
	background: linear-gradient(to bottom, #5c2424 0%, #333 100%);
}
/* Estilo botones radio y checkbox */
input[type="radio"] {
	display: none;
}
input[type=radio] + label {
	position: relative;
	display: block;
	float: left;
	width: 50%;
	height: 40px;
	margin: auto;
	margin-top: 5px;
	padding-top: 10px;
	border-color: #ddd;
	margin-left: 0px;
	text-align: center;
	font-weight: bold;
	background: #262626;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.3) inset, 0px 1px 0px rgba(255,255,255,0.2);
	border: 1px solid #000;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.marbot{
	margin-bottom: 5px;
}
input[type=radio]:checked + label {
	background-image: none;
	background-color: #3388cc;
}
input[type=radio] + label:hover {
	cursor: pointer;
}
.radio-lf {
	-webkit-border-top-left-radius: 7px;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-bottomleft: 7px;
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
}
.radio-rg {
	-webkit-border-top-right-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-radius-topright: 7px;
	-moz-border-radius-bottomright: 7px;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
}
/* Checkbox */
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label {
	position: relative;
	float: left;
	width: 49%;
	height: 40px;
	margin: auto;
	margin-top: 5px;
	padding-top: 10px;
	border-color: #ddd;
	margin-left: -1px;
	text-align: left;
	text-indent: 4%;
	font-weight: bold;
	background: #262626 url(/images/check-a.png) center right no-repeat;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.3) inset, 0px 1px 0px rgba(255,255,255,0.2);
	border: 1px solid #000;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 5px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
input[type="checkbox"]:checked + label {
	background: #3388cc url(/images/check-c.png) center right no-repeat;
}
input[type="checkbox"] + label:hover {
	cursor: pointer;
	background-image: url(/images/check-b.png);
	background-position:center right;
	background-repeat:no-repeat;
}
input[type="checkbox"].chkright + label {
	float: right;
}
input[type="checkbox"].chkfirst + label {
	margin-top: 10px;
}
input[type="checkbox"].chksecond + label {
	margin-top: 10px;
}
.ui-controlgroup-controls {
	width: 100%;
}
.ui-radio {
	width: 50%;
}
#popup {
	width: 100%;
	height: 200px;
}
#popup p {
	line-height: 150%;
}
#popup h1 {
	font-size: 100%;
	color: #C8AA50;
	font-weight: bold;
	margin-top: 50px;
	margin-bottom: 50px;
}
label {
	margin-left: 4px;
	padding-top: 10px;
	font-size: 1em;
	line-height: 1em;
}
label.advice {
	margin-bottom: 10px;
	font-size: 85%;
	color: #F00;
	line-height: 1em;
}
a.login-bottom {
	line-height: 35px;
}
@media screen and (max-width: 600px) {
input {
	width: 100%;
}
input[type="submit"] {
	width: 100%;
}
input[type="checkbox"] + label {
	width: 100%;
	margin: auto;
	text-indent: 6%;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
input[type="checkbox"].chkright + label {
	float: left;
	margin: auto;
}
input[type="checkbox"].chkfirst + label {
	float: left;
	margin: auto;
	margin-top: 5px;
}
input[type="checkbox"].chksecond + label {
	margin-top: 0;
}
input[type="checkbox"].chklast + label {
	-webkit-border-bottom-left-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-radius-bottomleft: 7px;
	-moz-border-radius-bottomright: 7px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
}
input[type="checkbox"].chkfirst + label {
	-webkit-border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-topright: 7px;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
}
textarea {
	width: 100%;
}
.form50 {
	width: 100%;
	display: block;
}
.form60 {
	width: 100%;
	display: block;
}
.formright {
	float: left;
}
.formcenter {
	width: 100%;
	margin-left: 0;
}
}
@media screen and (max-width: 490px) {
input {
	height: 40px;
	line-height: 35px;
}
label {
	font-size: 110%;
}
label.advice {
	font-size: 100%;
	color: #F00;
	line-height: 1em;
}
textarea {
	min-height: 200px;
	font-size: 1.1em;
}
input[type="submit"] {
	font-size: 130%em;
	line-height: 250%;
	height: 50px;
}
}
@media screen and (max-width: 330px) {
input {
	height: 40px;
	line-height: 35px;
	font-size: 1.1em;
}
textarea {
	font-size: 1.1em;
}
input[type="submit"] {
	font-size: 1.1em;
	line-height: 2.5em;
}
}
 @media screen and (max-width: 250px) {
input {
	font-size: 1.2em;
}
textarea {
	font-size: 1.2em;
}
input[type="submit"] {
	font-size: 1.2em;
}
}
/* SELECT Javascript */
.heapBox {
	clear: both;
	display: block;
	width: 100%;
	line-height: 35px;
	position: relative;
}
.heapBox * {
	margin: 0;
	padding: 0;
	outline: none;
	font-weight: bold;
}
.heapBox {
	margin-top: 4px;
}
.heapBox.disabled .holder {
	color: #A7B6B7;
	height: 35px;
}
#page-container .heapBox a {
	text-decoration: none;
	color: #fff;
}
#page-container .heapBox a:hover {
	text-decoration: none;
	color: #fff;
}
.heapBox .holder, .heapBox .handler {
	float: left;
	position: relative;
	z-index: 10;
}
.heapBox div.heap {
	/*display:none;*/
	position: absolute;
	list-style-type: none;
	left: 0;
	width: 100%;
	top: 37px;
	overflow: hidden;
}
.heapBox .heap .heapOptions {
	display: block;
	overflow: hidden;
	z-index: 20;
	position: relative;
}
.heapBox .heap a.sliderUp {
	display: block;
	width: 100%;
	height: 15px;
	background: #7f8c8d url(/images/select-slider-up.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-bottom: 1px solid #5c6768;
	position: absolute;
	top: 0px;
	z-index: 30;
}
.heapBox .heap a.sliderDown {
	display: block;
	width: 100%;
	height: 15px;
	background: #7f8c8d url(/images/select-slider-down.png);
	background-repeat: no-repeat;
	background-position: center center;
	border-top: 1px solid #5c6768;
	position: absolute;
	bottom: 0px;
	z-index: 30;
}
.heapBox .heap .heapOptions .heapOption {
	z-index: 20;
	position: relative;
	display: block;
	height: 35px;
}
.heapBox .heap .heapOptions .heapOption a {
	width: 100%;
	display: block;
	background: #444;
}
.heapBox .heap .heapOptions .heapOption a:hover {
	background: #3388cc;
}
.heapBox .heap .heapOptions .heapOption a.selected {
	background: #3388cc;
}
.heapBox .heap .heapOptions .heapOption a.disabled {
	color: #9CA5A5;
}
.heapBox .handler {
	width: 9%;
	height: 42px;
	background: #262626 url(/images/select-arrow.png) center no-repeat;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	-webkit-border-top-right-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-radius-topright: 7px;
	-moz-border-radius-bottomright: 7px;
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.heapBox .holder {
	width: 91%;
	overflow: hidden;
	text-indent: 20px;
	height: 42px;
	background: #262626;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
	-webkit-border-top-left-radius: 7px;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-bottomleft: 7px;
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
 @media screen and (max-width: 800px) {
.heapBox .handler {
	width: 11%;
}
.heapBox .holder {
	width: 89%;
}
}
 @media screen and (max-width: 660px) {
.heapBox .handler {
	width: 12%;
}
.heapBox .holder {
	width: 88%;
}
}
 @media screen and (max-width: 605px) {
.heapBox .handler {
	width: 9%;
}
.heapBox .holder {
	width: 91%;
}
}
@media screen and (max-width: 400px) {
.heapBox .handler {
	width: 12%;
}
.heapBox .holder {
	width: 88%;
}
}
/* Select en caso de que el JAVA este desactivado */
.selectbox select {
	width: 110%;
	height: 40px;
	border: 0;
	background-color: transparent;
	color: #ddd;
	font-weight: bold;
	font-size: 1em;
	padding: 10px 10px;
	cursor: pointer;
	-webkit-appearance: none;
}
@media screen and (max-width: 480px) {
.selectbox select {
	width: 115%;
}
}
@media screen and (max-width: 280px) {
.selectbox select {
	width: 120%;
}
}
.selectbox {
	display: block;
	height: 40px;
	margin-top: 5px;
	position: relative;
	width: 100%;
}
.selectspan {
	overflow: hidden;
	width: 100%;
	display: block;
	background: url("/images/select-arrow.png") no-repeat right #262626;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.3) inset, 0px 1px 0px rgba(255,255,255,0.2);
	border: 1px solid #000;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/* JQUERY AUTOSELECT */
.ui-helper-hidden, .ui-helper-hidden-accessible {
	display: none;
}
.ui-widget-content {
	border: 1px solid #ddd;
	background: #ddd;
	color: #333;
	z-index: 999;
}
.ui-widget-content a {
	color: #333
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
	border: 1px solid #bbb;
	background: #bbb;
	font-weight: bold;
	color: #000
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
	color: #3388cc
}
.ui-corner-all {
	border-radius: 7px;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default
}
.ui-menu {
	list-style: none;
	padding: 2px;
	margin: 0;
	display: block;
	outline: none
}
.ui-menu .ui-menu-item a.ui-state-focus, .ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	margin: -1px
}
.ui-menu .ui-menu-item a {
	text-decoration: none;
	display: block;
	padding: 2px .4em;
	line-height: 1.5;
	min-height: 0;
	font-weight: normal
}
.ui-hide {
	display: none;
}
.ui-autocomplete-loading {
	background: #262626 url('/images/ajaxload.gif') right center no-repeat;
}
.button a {
	color: #ddd;
	display: block;
	font-size: 1em;
	line-height: 2.5em;
	font-weight: bold;
	height: 2.5em;
	width: 70%;
	margin: auto;
	margin-top: 10px;
	text-decoration: none;
	box-shadow: 0px 0px 1px rgba(255,255,255,.4) inset, 0px 1px 1px rgba(0,0,0,0.5);
	background: #333;
	background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#111));
	background: -webkit-linear-gradient(top, #333, #111);
	background: -moz-linear-gradient(top, #333, #111);
	background: -o-linear-gradient(top, #333, #111);
	background: -ms-linear-gradient(top, #333 0%, #111 100%);
	background: linear-gradient(to bottom, #333, #111);
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	border: 1px solid #000;
}
.button a:hover {
	cursor: pointer;
	background: #333;
	background: -webkit-gradient(linear, left top, left bottom, from(#3b3b3b), to(#191919));
	background: -webkit-linear-gradient(top, #3b3b3b, #191919);
	background: -moz-linear-gradient(top, #3b3b3b, #191919);
	background: -o-linear-gradient(top, #3b3b3b, #191919);
	background: -ms-linear-gradient(top, #3b3b3b 0%, #191919 100%);
	background: linear-gradient(to bottom, #3b3b3b, #191919);
	color: #fff;
	text-decoration: none;
}
.button a:active {
	text-decoration: none;
	background: #222;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.4) inset;
}
@media screen and (max-width: 600px) {
.button a {
	width: 100%;
}
}
