@charset "utf-8";
/* CSS Document */


/*NUEVO*/

/* ---- input ---- */

input[type="text"] {
  font-size: 20px;
}

/* ---- button ---- */

.button {
  display: inline-block;
  padding: 0.5em;
  margin-bottom: 10px;
  background:#fff;
  border: none;
  color: #222;
  font-family: sans-serif;
  font-size: 16px;
  text-shadow: 0 1px white;
  cursor: pointer;
    border-radius: 0;
}

.button:hover {
  padding: 0.5em;
  color: white;
  vertical-align:top;
  background:#F0A22D;
}

.button:active,
.button.is-checked {
  background-color: #2B5162;
}

.button.is-checked {
  color: white;
  text-shadow: 0 -1px hsla(0, 0%, 0%, 0.8);
}

.button:active {
  box-shadow: inset 0 1px 10px hsla(0, 0%, 0%, 0.8);
}

/* ---- button-group ---- */

.button-group:after {
  content: '';
  display: block;
  clear: both;
}

.button-group .button {
  border-radius: 0;
  margin-left: 0;
  margin-right: 1px;
}

.button-group .button:first-child { border-radius:0; }
.button-group .button:last-child { border-radius:0; }

/* ---- grid ---- */

.grid {
  border: 1px solid #2B5162;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}


/* ---- .element-item ---- */

.element-item {
  position: relative;
  float: left;
  width: 32.5%;
  margin: 5px;
  padding: 10px;
  color: #262524;
  background:#f5f5f5;
}

.element-item > * {
  margin: 0;
  padding: 0;
}

.element-item ul{
	list-style:none;
}

/* ---- REVISTA ---- */

.isotope-item {
    z-index: 2;
}
.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}
.isotope,
.isotope .isotope-item {
  /* change duration value to whatever you like */

    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}
.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}
.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}

.filtrar {
    padding: 0.5em;  font-size: 18px; cursor:pointer;
}

.filtrar li {
	float: none;
    display: inline-block;
	text-align:center;
}

.filtrar li a {
	display: block;
	padding:5px 20px;		
	text-decoration:none;

	cursor: pointer;
	color: #666666;
}


.filtrar li a:hover {
  padding:5px 20px;	
  color: white;
  vertical-align:top;
  background:#F0A22D;
}

.filtrar li a.actual {
    background: none repeat scroll 0 0 #2B5162;
    border-radius: 0px;
    color: #FFFFFF;
}