body{
	color: #6091AC;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
/* GENERIC */
.center-screen {
	position: absolute;
	width: 75%;
	height: 75%;
	margin: auto;
	overflow: auto;
	top: 0; left: 0; bottom: 0; right: 0;
}

.bg-full{
	background: url(../img/IMG_5950.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.content{
	padding: 10px;		
}
.lead{
	font-size: 1em;
}

/* BOX */
.box{
	background-color: #FFF;
	background: rgba(255, 255, 255, 0.9); 
	border:1px solid #ccc;
}

/* CONTENT */
.intro{
	text-align: center;
}
.intro-header{
	color: #1F215B;
}
.intro-body{
	color: #786752;
}
.intro-footer{
	padding: 10px;
}

/* BUTTON */
.btn{
	display: inline-block;
	padding: 10px;
	margin:5px;
	border:3px solid #ccc;
	background-color: transparent; 
	color: #1F215B;
	text-align: center;
	text-decoration: none;

	cursor: pointer;

    -webkit-transition:  background-color 1s ease;
    -moz-transition:  background-color 1s ease;
    -o-transition:  background-color 1s ease;
    transition:  background-color 1s ease;	
}
.btn:hover{	
	background-color: #f1f1f1;
	border-color: #aaa;	
	color: #6BB2E2;
}
.btn-primary{
	background-color: #20225E;
	border-color:#1B1C49;	
	color:#fff;
}
.btn-primary:hover{
	background-color: transparent;	
	border-color:#1B1C49;
	color: #1B1C49;
}
.btn-secondary{
	background-color: #6BB2E2;
	border-color:#4698CE; 
	color: #fff;
}
.btn-secondary:hover{
	background-color: transparent;	
	border-color:#4698CE; 
	color: #6BB2E2;
	
}
.btn-lg{
	width: 40%;
}
.btn-full{
	width: 100%;
}
/* TOP */
.top{
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	text-align: center;
}

.logo{
	display: inline-block;
	width: 170px;
	height: 120px;
	overflow: hidden;
	text-indent: -99999px;
	background:#fff url('../img/logo-brisas.png') no-repeat center;
}
/* CONTENT */
/* FOOTER */
.footer{	
	border-top:1px solid #ccc;
}
.footer-content{	
	text-align: center;
}

/* FORM */
.form{
	color: #1F215B;
}
.form legend{
}
.form-group{
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
}
.form-control{
	width: 100%;
	padding: 5px;
	border: 1px solid #ccc;
}

/* ALERT */
.alert{
	border: 1px solid #ccc;
	margin: 5px;	
}
.alert-warning{
	background-color: #f2dede;
	border-color:#ebccd1;
	color: #a94442;
}

/* MODAL */
#basic-modal-content {display:none;}
/* Overlay */
#simplemodal-overlay {background-color:#000;}

/* Container */
#simplemodal-container {height:90%; width:90%; color:#bbb; background-color:#FFF; border:4px solid #CCC; padding:12px;}
#simplemodal-container .simplemodal-data {padding:8px;}
#simplemodal-container code {background:#141414; border-left:3px solid #65B43D; color:#bbb; display:block; font-size:12px; margin-bottom:12px; padding:4px 6px 6px;}
#simplemodal-container a {color:#ddd;}
#simplemodal-container a.modalCloseImg {background:url(../img/x.png) no-repeat; width:25px; height:29px; display:inline; z-index:3200; position:absolute; top:-15px; right:-16px; cursor:pointer;}
#simplemodal-container h3 {color:#84b8d9;}