/*RESET*/
html, body, header, main, footer, section, article, iframe, div, p, form, input, ul, li, h1, h2, h3, table, th, td {
	margin: 0px;
	padding: 0px;
}
body {
	font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
	background: #eceff1;
    
}
li {
	list-style: none;
}
a {
    color: #555555;
    text-decoration: none;
    cursor: pointer;
}
.clear {
	clear: both;
}
/*RESET*/
/*GENERALES*/
header {
    width: 100%;
    height: 50px;
    position: fixed;
    background: #fff;
    box-shadow: 1px 1px 1px #ccc;
	z-index: 1000;
}
header .logo {
    height: 50px;
	position: absolute;
	padding-left: 60px;
	line-height: 50px;
	font-size: 15px;
	color: #555555;
    background-image: url(../images/logo_gn.png);
    background-size: contain;
	background-repeat: no-repeat;
}
@media screen and (max-width: 450px) {
	header .logo span {
		display: none;
	}
}
header .content {
	position: relative;
}
header .config {
	right: 10px;
	position: absolute;
}
header .config .user {
	line-height: 50px;
	display: block;
	float: left;
	margin-right: 10px;
	color: #555555;
}
header .config .notifications {
	width: 40px;
	height: 50px;
	display: block;
	float: left;
	position: relative;
	margin-right: 15px;
	background-image: url(../images/icon_notifications.svg);
	background-size: 25px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
header .config .notifications em {
	position: absolute;
	width: 10px;
	height: 10px;
	right: 5px;
	top: 15px;
	border-radius: 50%;
	background-color: #f44336;
}
header .config .notifications .list {
	width: 250px;	
	height: 250px;	
	position: absolute;
	display: none;
	box-sizing: border-box;
	right: 0px;
	bottom: -250px;
	background: #fff;
	box-shadow: 0px 0px 5px #ccc;
	border: 15px solid #fff;
}
header .config .notifications .list li a {
	display: block;
	padding: 10px;
	margin-bottom: 1px;
	font-size: 13px;
	color: #fff;
	font-style: italic;
	background: #b0bec5;
	border-radius: 5px;
}
header .config .notifications .list li a.read {
	color: #868686;
	background: #eff2f4;
}
header .config .notifications .list li a span {
	font-weight: 700;
	font-size: 11px;
	margin-right: 5px;
	opacity: .7;
}
header .config .logout a { 
	height: 40px;
	float: left;
	display: block;
	color: #fff;
	margin-top: 5px;
	line-height: 40px;
	padding: 0px 10px;
	border-radius: 5px;
	background-color: #b0bec5;
}
nav.desktop {
	height: 100px;
	text-align: center;
	background-color: #eff2f4;
}
@media screen and (max-width: 650px) {
	nav.desktop {
		display: none;
	}
}
nav.desktop li {
	margin: 10px;
	display: inline-block;
}
nav.desktop li a {
	width: 130px;
	height: 80px;
	display: block;
	box-sizing: border-box;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	line-height: 35px;
	text-align: center;
	padding: 45px 10px 0px 10px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 1);	
	border: 1px solid #fff;
	transition: background 1s ease;
}
nav.desktop li a:hover {
    border: 1px solid #fff;
    cursor: pointer;
}
nav.desktop li a.miperfil {
	background-image: url(../images/nav_miperfil.svg);
	background-size: 29px;
	background-repeat: no-repeat;
	background-position: center 10px;
}
nav.desktop li a.miperfil.active {
	color: #fff;
	background-image: url(../images/nav_miperfil-active.svg);
	background-color: #0B69AF;
}
nav.desktop li a.suscripciones {
	background-image: url(../images/nav_suscripciones.svg);
	background-size: 40px;
	background-repeat: no-repeat;
	background-position: center 12px;
}
nav.desktop li a.suscripciones.active {
	color: #fff;
	background-image: url(../images/nav_suscripciones-active.svg);
	background-color: #0B69AF;
}
nav.desktop li a.boletines {
	background-image: url(../images/nav_boletines.svg);
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: center 14px;
}
nav.desktop li a.boletines.active {
	color: #fff;
	background-image: url(../images/nav_boletines-active.svg);
	background-color: #0B69AF;
}
nav.desktop li a.ayuda {
	background-image: url(../images/nav_ayuda.svg);
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: center 14px;
}
nav.desktop li a.ayuda.active {
	color: #fff;
	background-image: url(../images/nav_ayuda-active.svg);
	background-color: #0B69AF;
}
nav.phone {
	height: 60px;
	padding-top: 50px;
	position: relative;
	background-color: #eff2f4;
	z-index: 1000;
}
@media screen and (min-width: 651px) {
	nav.phone {
		display: none;
	}
}
nav.phone > ul {
	width: 250px;
	height: 40px;
	position: absolute;
	top: 60px;
	left: calc(50% - 125px);
}
nav.phone > ul > li {
	height: 40px;	
	position: relative;
	padding-left: 40px;
	color:#fff;
	text-transform: uppercase;
	line-height:40px;	
	font-weight: 500;
	font-size: 13px;
	background-color: #0B69AF;
	border-radius: 5px;
	cursor: pointer;
}
nav.phone > ul > li span {
	position: absolute;
	width: 25px;
	height: 15px;
	right: 5px;
	top: 12px;
	background-image: url(../images/arrow_down.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 15px;
}
nav.phone .submenu {
	width: 100%;
	display: none;
	position: absolute;
	left: 0;
	margin-top: 1px;
	background: #fff;
}
nav.phone .submenu li a {
	height: 40px;
	margin-bottom: 1px;
	padding-left: 40px;	
	display: block;
	color: #fff;
	line-height: 40px;
	background-color: #b0bec5;
	border-radius: 5px;	
}
nav.phone li, nav.phone li a {
	background-repeat: no-repeat;
	background-position: 10px;	
}
nav.phone .miperfil {
	background-size: 15px;	
	background-image: url(../images/nav_miperfil-active.svg);
}
nav.phone .suscripciones {
	background-size: 18px;	
	background-image: url(../images/nav_suscripciones-active.svg);
}
nav.phone .boletines {
	background-size: 15px;	
	background-image: url(../images/nav_boletines-active.svg);
}
nav.phone .ayuda {
	background-size: 16px;	
	background-image: url(../images/nav_ayuda-active.svg);
}
main {
    padding: 68px 0 50px 0;
    background: #fff;
}
main.white {
    background: #fff;
}
main.gray {
    background-image: url(../images/bg70_2.png);
    background-repeat: no-repeat;
    background-position: l;
    background-size: cover; 
}
main .content {
    width: 80%;
	max-width: 800px;
    margin: auto;
}
main .content.intro {
	padding: 10%;
}
main .center {
	text-align: center;
}
main p {
	margin-bottom: 15px;
}
main p a {
    text-decoration: underline;
}
main h1 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 100;
}
main h1 span a {
	width: 30px;
	height: 40px;
	display: block;
	float: left;
	margin-right: 15px;
	background-color: #b0bec5;
	background-image: url(../images/arrow_back.svg);
	background-size: 15px;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 5px;
}
main h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 400;
}

main form .question {
    margin-bottom: 25px;
}
main form p {
	margin-bottom: 20px;
}
.alert,
main form p.alert {
	color: red;
	font-weight: 700;
}
main form .question p {
    font-size: 16px;
    font-weight: 500;
}
main form label {
    min-height: 25px;
    padding: 10px;
    margin-bottom: 5px;
    display: block;
    line-height: 25px;
    background: #fff;
    border-radius: 4px;
}
main form input[type="radio"] {
    float: left;
    margin: 5px 10px 0 0;
}
main form input[type="password"],
main form input[type="text"] {
	width: 100%;
    height: 45px;
    padding: 10px;
    //margin-bottom: 5px;
	box-sizing: border-box;
    display: block;
	font-size: 16px;
	font-weight: 100;
    line-height: 25px;
    background: #fff;
	border: none;
    border-radius: 4px;
    cursor: pointer;
	border: 1px solid #fff;
}
main form input[type="password"].alert,
main form input[type="text"].alert {
	border: 1px solid red;
	}
main form input[type="text"]:focus	
 {
	background:#fff;
	}	

.btn,
main form button[type="button"] {
		height: 50px;
		padding: 0 20px 0 20px;
		color: #fff;
		line-height: 50px;
		text-transform: uppercase;
		font-size: 18px;
		font-weight: 100;
		font-family: 'Roboto', sans-serif;
		background: #0B69AF;
		border: none;
		border-radius: 4px;
		cursor: pointer;
		}
main form button[type="submit"] {
    height: 50px;
    padding: 0 20px 0 20px;
    color: #fff;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
    background: #0B69AF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#frmSuscribirme {
    width: 100%;
    overflow: hidden;
    background-color: #f7f9fa;
    padding: 90px 0 40px 0;
    text-align: center;
    float: left;
}
#frmNuevoUsuario{
   padding-top:0px;
}
#frmPersonal input[type="text"]{
	width: 100% !important;
    height: 45px !important;
    padding: 10px !important;
    margin-bottom: 5px !important;
	box-sizing: border-box !important;
    display: block !important;
	font-size: 16px !important;
	font-weight: 100 !important;
    line-height: 25px !important;
    background: #fff !important;
	border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
	border: 1px solid #fff !important;
}
#frmSuscribirme input[type="text"] {
    width: 100% !important;
    height: 30px !important;
    font-size: 18px !important;
    background-color: #f2f2f2 !important;
    padding: 10px !important;
    border-radius: 4px !important;
    border:none;
    line-height: 20px !important;
}
#frmPreguntas,
#frmPersonal {
    width: 100%;
    overflow: hidden;
    background-color: #f7f9fa;
    text-align: center;
    float: left;
	margin-top:-80px;
	border: 0px;
    box-shadow: none; 
}
#frmPreguntas {
   text-align:left;
}
.actions {
	width: 95%;
	margin: 25px auto 0 auto;
}
.actions li a {
	display: block;
	height: 35px;
	margin: 5px 0;
	padding-left: 40px;
	color: #fff;
	line-height: 35px;
	font-size: 14px;
	background-color: rgba(126, 140, 147, 1);
	background-repeat: no-repeat;
	border-radius: 5px;
	transition: background 1s ease;
}
.actions li a.editInfo {
	background-image: url(../images/icon_editInfo.png);
	background-position: 11px center;
}
.actions li a.changePassword {
	background-image: url(../images/icon_changePassword.png);
	background-position: 12px center;
}
.actions li a.editEmails {
	background-image: url(../images/icon_editEmails.png);
	background-position: 10px center;
}
.actions li a.payService {
	background-image: url(../images/icon_payService.png);
	background-position: 11px center;
}
.actions li a.changePayment {
	background-image: url(../images/icon_changePayment.png);
	background-position: 12px center;
}
.actions li a.editBeneficiaries {
	background-image: url(../images/icon_editBeneficiaries.png);
	background-position: 10px center;
}
.actions li a.changeAddress {
	background-image: url(../images/icon_changeAddress.png);
	background-position: 11px center;
}
.actions li a.suspendService {
	background-image: url(../images/icon_suspendService.png);
	background-position: 12px center;
}
.actions li a.clubnacion {
	background-image: url(../images/icon_userClubnacion.png);
	background-position: 10px center;
}
.actions li a:hover {
	background-color: rgba(176, 190, 197, .7);
}
/*GENERALES*/
/*BLOQUES*/
form {
	margin: 30px auto;
    padding: 20px;
    background: #f4f7f8;
    border-radius: 4px;
	border: 1px solid #fff;
	box-shadow: 0px 1px 3px #a8a6a6;
}
form.intro {
	max-width: 350px;
}
form.default {
	max-width: 450px;
}
form a {
	text-decoration: underline;
}
form p {
	margin-bottom: 10px;
}
form .image {
	width: 80px;
	height: 80px;
	position: relative;
	margin: 0 auto 70px auto;
	border-radius: 5px;
	background-color: #eff2f4;
	border: 1px solid #fff;
}
form .image span a {
	width: 150px;
	height: 35px;
	position: absolute;
	bottom: -40px;
	left: -35px;
	text-align: center;
	line-height: 35px;
	color: #fff;
	text-decoration: none;
	background: #b0bec5;
	border-radius: 5px;
}
form p.alert {
	margin-bottom: 20px;
	color: #e84848;
	font-weight: 400;
}
form p.user {
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 300;
	text-align: center;
}
form label {
    min-height: height: 25px;
	color: #505050;	
    padding: 10px;
    margin-bottom: 20px;
    display: block;
    line-height: 25px;
    font-weight: 300;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #fff;
}
::-webkit-input-placeholder {
    color: #505050;
    
}
form input[type="radio"], form input[type="checkbox"] {
    float: left;
    margin: 5px 10px 0 0;
}
form input[type="text"], form input[type="password"], form input[type="date"], form select, form textarea {
	width: 100%;
    height: 50px;
    padding: 10px;
    margin-bottom: 20px;
	box-sizing: border-box;
    display: block;
	color: #505050;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 300;
    line-height: 50px;
    background: #fff;
	border: 1px solid #fff;
    border-radius: 4px;
	box-shadow: inset 0px 0px 5px #dbd6d6;
    cursor: pointer;
}
form textarea {
	height: 120px;
	line-height: normal;
}
form input[type="text"].double, form input[type="password"].double, form input[type="date"].double, form select.double {
	width: 48%;
}
form input[type="text"].double.left, form input[type="password"].double.left, form input[type="date"].double.left, form select.double.left {
	float: left;
}
form input[type="text"].double.right, form input[type="password"].double.right, form input[type="date"].double.right, form select.double.right {
	float: right;
}
form input.alert, form label.alert {
	border: 1px solid #e84848;
}
form button[type="submit"] {
	width: 100%;
    height: 50px;
	margin: 0 0 20px 0;
    padding: 0 20px 0 20px;
    color: #fff;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    background: #0B69AF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
form .text {
	padding: 15px;
	position: relative;
	margin-bottom: 20px;
	font-style: italic;
	font-size: 13px;
	color: #919191;
	background: #fff;
	border-radius: 5px;
}
form .text .options {
	top: 17px;
	right: 10px;
	position: absolute;
}
form .text .options li {
	width: 15px;
	height: 15px;
	margin-left: 10px;
	display: inline-block;
	cursor: pointer;
	background-size: 15px;
	cursor: pointer;
}
form .text .options li.edit {
	background-image: url(../images/btn_edit.svg);
}
form .text .options li.delete {
	background-image: url(../images/btn_delete.svg);
}
form .text em {
	font-style: normal;
	font-weight: 600;
	margin-right: 5px;
	color: rgba(141, 198, 63, 1);	
}
footer {
    margin: 20px 0 20px 0;
}
footer .content {
    width: 80%;
    margin: auto;
    text-align: center;
    font-size: 13px;    
}
footer .content p {
    margin-bottom: 15px;
}
footer .content a {
    text-decoration: underline;
}
#miPerfil {
	width: 95%;
	max-width: 350px;
	margin: 0 auto 35px auto;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, .15);
}
#miPerfil .image {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px auto;
	border-radius: 5px;
	background-color: #eff2f4;
}
#miPerfil .name {
	font-size: 24px;
	font-weight: 200;
}
#miPerfil .mainEmail {
	margin: 15px 0;
}
#miPerfil .mainEmail p {
	margin-bottom: 3px;
	font-size: 16px;
	font-weight: 500;
}
#miPerfil .mainEmail p.green {
	color: #00ae25;
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
}
#miPerfil .otherEmail {
	margin: 15px 0;
}
#miPerfil .otherEmail p {
	font-size: 13px;
	margin-bottom: 1px;
	font-weight: 400;
}
#miPerfil .info p {
	font-size: 13px;	
	margin-bottom: 1px;
	font-weight: 400;	
}
#suscripciones {
	text-align: center;
	margin-bottom: 25px;
}
#suscripciones > li {
	width: 95%;
	max-width: 300px;
	display: inline-block;
	vertical-align: top;
	margin: 15px;
	padding: 20px;
	text-align: left;
	background: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, .15);	
}
#suscripciones > li .image {
	display: block;
	margin-bottom: 20px;
	text-align: center;
}
#suscripciones > li .title {
	display: block;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 16px;
}
#suscripciones > li .product {
	display: block;
}
#suscripciones > li .green {
	color: #00ae25;
}
#suscripciones > li .red {
	color: #f44336;
}
/*GENERALES*/
/*BLOQUES*/
form {
	margin: 30px auto;
    padding: 20px;
    background: #f4f7f8;
    border-radius: 4px;
	border: 1px solid #fff;
	box-shadow: 0px 1px 3px #a8a6a6;
}
form.intro {
	max-width: 350px;
}
form.default {
	max-width: 450px;
}
form a {
	text-decoration: underline;
}
form p {
	margin-bottom: 5px;
}
form p.alert {
	margin-bottom: 20px;
	color: #e84848;
	font-weight: 400;
}
form p.user {
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 300;
	text-align: center;
}
form label {
    min-height: height: 25px;
	color: #505050;	
    padding: 10px;
    margin-bottom: 20px;
    display: block;
    line-height: 25px;
    font-weight: 300;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #fff;
}
::-webkit-input-placeholder {
    color: #505050;
    
}
form input[type="radio"], form input[type="checkbox"] {
    float: left;
    margin: 5px 10px 0 0;
}
form input[type="text"], form input[type="password"], form input[type="date"], form select {
	width: 100%;
    height: 50px;
    padding: 10px;
    margin-bottom: 20px;
	box-sizing: border-box;
    display: block;
	color: #505050;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 300;
    line-height: 50px;
    background: #fff;
	border: 1px solid #fff;
    border-radius: 4px;
	box-shadow: inset 0px 0px 5px #dbd6d6;
    cursor: pointer;
}
form input[type="text"].double, form input[type="password"].double, form input[type="date"].double, form select.double {
	width: 48%;
}
form input[type="text"].double.left, form input[type="password"].double.left, form input[type="date"].double.left, form select.double.left {
	float: left;
}
form input[type="text"].double.right, form input[type="password"].double.right, form input[type="date"].double.right, form select.double.right {
	float: right;
}
form input.alert, form label.alert {
	border: 1px solid #e84848;
}
.boton {
    width: 84px;
	height: 40px;
    text-align: center;
	color: #FFFFFF;
	text-transform: uppercase;
	line-height: 40px;
	font-weight: 100;
	background-color: #7dbe31;
	border-radius: 6px;
    margin: auto;
    display: inline-block;
}
.boton p{
color:#FFFFFF;
}
form input[type="submit"],
form button[type="button"],
form button[type="submit"] {
	width: 100%;
    height: 50px;
	margin: 0 0 20px 0;
    padding: 0 20px 0 20px;
    color: #fff;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    background: #0B69AF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
main .logos {
	width: 80%;
	max-width: 500px;
	height: 82px;
	margin: 40px auto 0 auto;
	background-image: url(../images/logos_gn.png);
	background-size: contain;
	background-repeat: no-repeat;
}
@media screen and (max-width: 700px) {
	main .logos {
		width: 100%;
	}
}
#sliderFaq {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
#sliderFaq a:link{
    color:#000000;
    font-weight: 300;
    text-decoration: underline;
}
#sliderFaq .controls {
    margin: 0 0 30px 0;
}
#sliderFaq .controls ul.tabs {
    text-align: center;
}
#sliderFaq .controls ul.tabs li {
    display: inline-block;
    margin: 0 5px 0 5px;
}
#sliderFaq .controls ul.tabs li a {
    height: 40px;
    display: block;
    padding: 0 15px 0 45px;
    color: #fff;
    line-height: 40px;
    font-size: 14px;
    font-weight: 200;
    text-align: left;
    text-decoration: none;    
    background-color: #babdbf;
    background-repeat: no-repeat;
    border-radius: 6px;
    transition: background 0.5s ease 0s;
    cursor: pointer;
}
#sliderFaq .controls ul.tabs li a.ln {
    background-image: url(../images/logo_LN01.png);
}
#sliderFaq .controls ul.tabs li a.ef {
    background-image: url(../images/logo_EF01.png);
}
#sliderFaq .controls ul.tabs li a:hover, #sliderFaq .controls ul.tabs li a.current {
    background-color: #5e6060;
}
#sliderFaq .pages .page {
    width: 100%;
	display: none;
}
#sliderFaq .menu ul.arrows {
    position: relative;
}
#sliderFaq .menu ul.arrows li  {
    width: 35px;
    height: 35px;
    position: absolute;
    top: -5px;
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    opacity: .5;
    transition: opacity 0.5s ease 0s;
}
#sliderFaq .menu ul.arrows li.backward {
    left: -45px;
    background-image: url(../images/arrow_backward.png);
}
#sliderFaq .menu ul.arrows li.forward {
    right: -45px;
    background-image: url(../images/arrow_forward.png);
}
#sliderFaq .menu ul.arrows li:a:link {
        opacity: 1;
}`
#sliderFaq .menu ul.buttons {
    margin: 20px 0 0 0;
    text-align: center;
}
#sliderFaq .menu ul.buttons li {
    width: 10px;
    height: 10px;
    margin: 5px;
    display: inline-block;
    border-radius: 10px;
    background: #000;    
    cursor: pointer;
    opacity: .5;
}
#sliderFaq .menu ul.buttons li.current {
    opacity: 1;
}
#sliderFaq .items ul.questions li {
    float: left;
    position: relative;
    margin: 0 auto 20px auto;
}
#sliderFaq .items ul.questions li img {
    position: absolute;
    left: 0;
}
#sliderFaq .items ul.questions li .text {
    float: left;
    margin-left: 90px;
}
#sliderFaq .items ul.questions li .question {
    display: block;
    position: relative;
    padding: 10px;
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 13px;
    background: #fff;
    border-radius: 6px;
}
#sliderFaq .items ul.questions li .question em {
    width: 8px;
    height: 13px;
    position: absolute;
    left: -8px;
    background: url(../images/bg_faq-arrow.png);
}
#sliderFaq .items ul.questions li .answer {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}
#modals h1 {
	margin: 20px 0;
	font-size: 24px;
	font-weight: 100;
}
#modals h2 {
	margin: 20px 0;
	font-size: 18px;
	font-weight: 400;
}
#modals p {
	margin-bottom: 20px;
}
#modals a {
    text-decoration: underline;
    color: #000;
}
#modals .faq li {
    margin-top: 15px;
    padding: 10px;
    background: #eceff1;
    border-radius: 4px;
}
#modals .faq li .question {
    display: block;
    padding: 10px;
    font-weight: 300;
    font-size: 18px;
    background: #fff;
    border-radius: 4px;
}
#modals .faq li .answer {
    display: block;
    padding: 10px;
}
#modals .contract {
	max-height: 450px;
}
@media screen and (max-width: 700px) {
	#modals .contract {
		max-height: 250px;
	}
}
.link a {
    width: 200px;
	height: 45px;
    display: inline-block;
    margin: 5px 25px 5px 25px;
	padding: 0 15px;
	color: #fff;
	text-transform: uppercase;
	line-height: 45px;
	font-weight: 300;
    text-align: center;
    text-decoration: none!important; 
	background-color: #0B69AF;
	border-radius: 5px;
	transition: background 0.3s ease;
}
#topbar {
    width: 97.6%;
    overflow: hidden;
    text-align: center;
    padding: 5px;
    /*cursor: pointer;*/
    float: left;
    background-color: #f7f9fa;
    padding: 30px;
    margin-bottom: 20px;
	position:relative;
	z-index: 99;
}
#topbar  > li p a:link {
    color: #FFFFFF;
}
#topbar li a {
    width: 140px;
	height: 46px;
    text-align: center;
    display: block;
	color: #FFFFFF;
	text-transform: uppercase;
	line-height: 45px;
	font-weight: 100;
	background-color: #7dbe31;
	border-radius: 6px;
}
#topbar input[type="text"] {
	width: 240px;
    height: 45px;
    padding: 10px;
    margin-bottom: 5px;
	box-sizing: border-box;
    display: block;
	font-size: 16px;
	font-weight: 100;
    line-height: 25px;
    background: #ECEFF1;
	border: none;
    border-radius: 4px;
    cursor: pointer;
}
#headbar {
    width: 100%;
    height: 42px;
    background-color: #7dbe31;
    float: left;  
}
#topbar .field {
    width: 200px;
    margin-right: 30px;
    display: inline-block;
}
#headbar .pic {
    text-align: left;
    height: 30px;
    width: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    margin: 7px;
    float: left;
    padding-top: 3px;
}
#headbar .p {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 400;
    line-height: 40px;
    float: left;
    padding-top: 2px;
}
#topbar .pic {
    text-align: left;
    height: 76px;
    /*width: 210px;*/
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}
#topbar .avatar {
    height: 76px;
    width: 76px;
    margin-right: 10px;
    float: left;
}
#medio{
    width: 100%;
    height: 36px;
    background-color: #002C58;
    padding: 6px 0 0 10px;
    float: left;
    line-height: 41px;
}
#marca {
    height: 28px;
    float: left;
}
#medio h1 {
    font-size: 12px;
    height: 20px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 5px;
    float: left;
    display: inline-block;
}
#medio h1 a:link{
    color: #FFFFFF;
    text-decoration: underline;
}
#medio h1 a:hover{
    color: #FFFFFF;
    text-decoration: none;
}
#medio h1 a:visited{
    color: #FFFFFF;
    text-decoration: none;
    color:#FFFFFF;
}
dt {display:none;}
.download li {
	display: inline-block;
}
.download li a {
    padding: 0 20px 0 20px;
    color: #fff;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
    background: #0b69af;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 15px;
	text-decoration:none !important;
}
.download li a span {
	margin-left: 5px;
}
#starApp {
	position: relative;
	margin: 50px 0 0 0;
}
#starApp .image {
	position: absolute;
	right: 0;
	bottom: -80px;
}
#starApp .info {
	width: 70%;
}
#starApp .info h1 {
	margin: 0 0 10px 0;
	font-size: 34px;
	font-weight: 700;
	text-transform: uppercase;
    color: #fff
}
#starApp .info p {
	margin-bottom: 20px;
}
#starApp .info p a {
	color: #898989;	
	text-decoration: underline;
	cursor: pointer;
	transition: all .5s ease;	
}
#starApp .info p a:hover {
	color: #000;
}
@media screen and (max-width: 700px) {
	#starApp {
		margin: 40px 0 0 0;	
		padding-bottom: 225px;
	}
	#starApp .image {
		left: 0;
	}	
	#starApp .info {
		margin-left: 0;
	}
	#starApp .info {
		width: 100%;
	}	
}
@media screen and (max-width: 400px) {
	#topbar {
		width: 100%;
	}	
}
#listnews {
	margin: 25px auto;
	text-align: center;
}
#listnews > li {
    background-color:  #b1b1b1;
	width: 240px;
	padding: 20px;
	margin: 15px calc(-4px + 15px);
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	border-radius: 6px;
	box-shadow: 0px 0px 7px #bfbfbf;
	height: 335px;
    overflow: hidden;
    color: #fff;
}
#listnews > li span {
	min-height: 95px;
	padding-bottom: 10px;
	display: block;
	font-size: 17px;
	text-align: left;
	line-height: 20px;
	font-weight: 600;
    color: #fff;
	border-bottom: 1px solid #eff2f4;
}
#listnews > li span img {
	float: left;
	margin-right: 10px;
}
#listnews > li p {
	margin: 20px 0 25px;
    color: #fff;
}
#listnews > li p a {
	color: #898989;
	text-decoration: underline;
	cursor: pointer;
	transition: all .5s ease;
}
#listnews > li p a:hover {
	color: #fff;
}