* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html{
	position: relative;
   height: 100%;
}
body {
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	background: #ebebeb;
	
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Oswald", Arial, Sans-serif;
	font-weight: normal;
}

a {
	text-decoration: none;
	color:#BB1F35;
}

a:hover {
	text-decoration: underline;
}

.contenedor {
	max-width: 1000px;
	width: 90%;
	margin: auto;
}

.izquierda {
	float: left;
}

.derecha {
	float: right;
}
.clearfixe{
	clear: both;
}
/* --- Header ---*/

header {
	color:#fff;
	margin-bottom: 30px;
	background: #BB1F35;
}

header .contenedor {
	overflow: hidden;
}

header .logo {
	max-width: 300px;
}

header .logo a {
	color: #fff;
	font-family: "Oswald", Arial, Sans-serif;
	font-size: 28px;
	line-height: 70px;
}

header .logo a:hover {
	text-decoration: none;
}

header .buscar {
	display: inline-block;
	position: relative;
	margin-right: 15px;
}

header .buscar input[type="text"]{
	background: none;
	border:1px solid rgba(255,255,255,.7);
	color:rgba(255,255,255,.7);
	height: 30px;
	padding: 0 10px;
	padding-right: 32px; 
}

header .buscar input[type="text"]:hover,
header .buscar input[type="text"]:focus {
	color:#fff;
	border:1px solid #fff;
}

header .buscar .icono {
	color:rgba(255,255,255,.7);
	position: absolute;
	right: 0;
	background: none;
	border:none;
	cursor:pointer;
	padding: 6px;
	font-size: 16px;
	line-height: 16px;
}

header .buscar .icono:hover {
	color: #fff;
}

header .menu {
	display: inline-block;
}

header .menu ul {display: inline-block;
	list-style: none;
}

header .menu ul li {
	display: inline-block;
	line-height: 70px;
}

header .menu ul li a {
	color: #fff;
	display: block;
	padding: 0px 20px;
	font-weight: bold;
}

header .menu ul li a:hover {
	background: #383737;
	text-decoration: none;
}

header .menu ul li a .icono {
	margin-left: 15px;
}
ul{
	list-style-position: inside;
	padding: 5px 0 10px 0;
}
ul li{
	color: ;
}


/* --- Post --- */
.post {
	width: 100%;
	background: #fff;
	box-shadow: 0px 0px 5px rgba(0,0,0, .5);
	margin-top: 70px;
	margin-bottom: 30px;
	padding: 30px;
}

.post-cp {
	width: 50%;
	background: #fff;
	box-shadow: 0px 0px 5px rgba(0,0,0, .5);
	
	padding: 20px;
	margin: 0 auto 10px auto;
}
.post-cp p{
	top:0;
	padding: 0;
	margin: 0;
}

.post-cp:hover{
	background: rgba(204, 204, 204, .5);
	border: #383737;
}
.post article .titulo {
	font-family: "Oswald", Arial, Sans-serif;
	font-size: 28px;
	font-weight: normal;
	line-height: 28px;
	margin-bottom: 10px;
}

.post article .titulo a {
	color:#000;
}

.post article .fecha {
	color:#747474;
	font-size: 14px;
	margin-bottom: 20px;
}

.post article .thumb {
	margin-bottom: 20px;
}

.post article .thumb img {
	vertical-align: top;
	width: 100%;
}

.post article .extracto {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 20px;
}

.post article .continuar {
	color:#BB1F35;
	font-weight: bold;
}


.btn {
	padding: 15px;
	display: inline-block;
	margin: 15px 0;
	background: #595959;
	color:#fff;
	font-size: 1em;
	font-family: Arial, sans-serif, helvetica;
	border-radius: 2px;
	border:none;
}

.btn:hover {
	text-decoration: none;
	background: #BB1F35;
}

.fotos{
	
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.thumb-flex{
	width: 22%;
	margin-bottom: 30px;
	border: 5px solid rgba(115, 115, 115,0);
	-webkit-box-shadow: 2px 2px 3px rgba(166, 166, 166,.8);
	box-shadow: 2px 2px 3px rgba(166, 166, 166,.8);
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.thumb-flex:hover{
	border: 5px solid rgba(115, 115, 115,1);
}

.thumb-flex a{
	display: block;
}

.thumb-flex img{
	vertical-align: top;
	width: 100%;
}


/* --- Footer --- */
footer {
	width: 100%;
    bottom: 0;
  	position: absolute;
   

	background: #BB1F35;
	color: #fff;
}

footer .copyright {
	text-align: center;
	font-size: 14px;
	padding: 15px 0;
}

/* --- Paginacion --- */



/* --- Formularios --- */
.formulario {
	width: 100%;
	overflow: hidden;
}

.formulario select{
	border: 1px solid red;
	border-radius: 1px;
	padding: 16px;
	width: 100%;
	display: block;
	margin-bottom:20px;
	font-family:'Open Sans', sans-serif;
	font-size: 1em;
	color:red;
}
.formulario input[type="text"],
.formulario input[type="email"],
.formulario input[type="password"],
.formulario textarea {
	border: 1px solid #A8A8A8;
	border-radius: 2px;
	padding: 16px;
	width: 100%;
	display: block;
	margin-bottom:10px;
	font-family:Arial, sans-serif, helvetica;
	font-size: 1em;
	color:#141938;
}

.formulario input[type="text"]:focus,
.formulario input[type="email"]:focus,
.formulario input[type="password"]:focus,
.formulario textarea:focus {
	border: 2px solid #595959;
	padding: 15px;
}

.formulario textarea {
	max-width: 100%;
	min-width: 100%;
	min-height: 200px;
}

.formulario input[type="submit"]{
	padding: 15px;
	background: #595959;
	color:#fff;
	font-size: 1em;
	font-family: Arial, sans-serif, helvetica;
	border-radius: 2px;
	border:none;
	float: right;
	cursor: pointer;
}

.formulario input[type="submit"]:hover{
	background: #BB1F35;
}
/* --- Tables  ----- */
.table table{
	width: 100%;
	text-align: center;
	border: 1px solid black;
	border-radius: 2px;

}
table caption{
	color: white;
	background-color: #BB1F35;
}

table th{
	color: white;
    background-color: black;
    border-radius: 2px;
}


.textdef{
	width: 100%;
	height: 200px;
}

.imgjunta{
	width: 25px;
	height: 25px;
}
.clearfixe{
	clear: both;
}



