/* RESET */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin: 0; padding: 0; border: 0; outline: 0; font-style: inherit; font-size: 100%; font-family: inherit;}
* {box-sizing: border-box;}
table {border-collapse: collapse; border-spacing: 0;}
caption, th, td {text-align: left; font-weight: normal;}
form legend {display: none;}
blockquote:before, blockquote:after, q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
ol, ul {list-style: none;}
i {font-style: normal;}

.clear {clear: both;}
a {text-decoration: none;}
/* RESET */

@font-face {
	font-family: "bebas";
	src: url('../fonts/BebasNeueRegular.otf');
}
@font-face {
	font-family: "bebas light";
	src: url('../fonts/BebasNeueLight.otf');
}
@font-face {
	font-family: "bebas thin";
	src: url('../fonts/BebasNeueThin.otf');
}
@font-face {
	font-family: "bebas book";
	src: url('../fonts/BebasNeueBook.otf');
}
@font-face {
	font-family: "bebas bold";
	src: url('../fonts/BebasNeueBold.otf');
}
@font-face {
	font-family: "open";
	src: url('../fonts/OpenSans-Regular.ttf');
}
@font-face {
	font-family: "open-bold";
	src: url('../fonts/OpenSans-Bold.ttf');
}

html {
	overflow-x: hidden;
	background-color: #fff;
}
body {
	overflow-x: hidden;
	position: relative;
	width: 100%;
	/*max-width: 1080px;*/
	margin: 0 auto !important;
	font-family: Helvetica, Lucida Sans, Lucida Grande, Arial;
	/*background-color: rgba(96,208,228,1);*/
}
/* RESPONSIVE */
@media screen and (min-width: 0px) and (max-width: 600px) {
	body {
		padding-top: 80px;
	}
}

::selection {
	background: rgba(93,141,181,1);
	color: #fff;
}

/* PAGINACI�N */
.pagination {
	width: 100%;
	bottom: 0;
	margin-top: 50px;
    text-align: center;
    font-family: "open";
	font-size: 18px;
}
.pagination .button-pagination {	
	padding: 8px 14px;
    margin-right: 10px;
    text-align: center;
    text-transform: uppercase;
    cursor: default;
	background-color: #C39000;
    border: 1px solid #C39000;
    color: #FFF;
	border-radius: 5px;
}
.pagination .button-confirm {
	padding: 8px 14px;
    margin-right: 10px;
    background-color: #EEE;
    border: 1px solid #EEE;  
    color: #999;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
	border-radius: 5px;
}
.pagination .button-confirm:hover {
    background-color: #C39000;
    border: 1px solid #C39000;
    color: #FFF;
}
/* /PAGINACI�N */

/* BOTONES */
.onoffswitch {
    position: relative;
	float: left;
	width: 50px;
	margin: 20px 0;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    height: 30px; padding: 0; line-height: 30px;
    border: 2px solid #CCCCCC; border-radius: 30px;
    background-color: #FFFFFF;
    transition: background-color 0.1s ease-in;
}
.onoffswitch-label:before {
    content: "";
    display: block; width: 30px; margin: 0px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
    right: 15px;
    border: 2px solid #CCCCCC; border-radius: 30px;
    transition: all 0.1s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label {
    background-color: #C39000;
}
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
   border-color: #C39000;
}
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
    right: 0px; 
}

.button_filter {
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 5px;
	padding: 8px 12px;
	background-color: rgba(93,141,181,1);
    border: 1px solid rgba(93,141,181,1);
	background-color: #EEE;
    border: 1px solid #EEE;
	border-radius: 15px;
    color: #999;
    font-family: "bebas";
	font-size: 16px;
	letter-spacing: 1.2px;
	text-align: center;
    cursor: pointer;
}
.button_filter:hover {
	background-color: rgb(162 19 21);
    border: 1px solid rgb(162 19 21);
    color: #FFF;
}
.button_filter_active {
	background-color: rgb(162 19 21);
    border: 1px solid rgb(162 19 21);
    color: #FFF;
}

.button {
    display: inline-block;
    padding: 5px;
    background-color: #cfcfcf;
    font-family: "open";
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
.button_blue {
    background-color: rgba(93,141,181,1);
}
.button_blue:hover {
    background-color: rgba(10,84,139,1);
}

.button_blue_form {
    width: 90%;
	max-width: 500px;
	margin: 10px auto;
	border-radius: 5px;
	background-color: rgba(93,141,181,1);
}
.main_body .inner_main_body .button_blue_form p {
	margin: 0;
	padding: 0;
    line-height: 50px;
	text-align: center;
	font-family: 'bebas bold';
	font-size: 20px;
	color: #FFF;
}
.button_blue_form:hover {
    background-color: rgba(10,84,139,1);
}



/* /BOTONES */

strong {
	font-family: "open-bold";
	font-weight: normal;
}
em {
	font-style: italic;
}

.highlight { background-color: yellow }
/*
Azul base: rgba(96,208,228,1)
*/