/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* VERTICAL 2 COLORS at percent */
/* BACKGROUND COVER */
/* BACKGROUND GRADIENT */
/* BACKGROUND HORIZONTAL */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
/* PLACEHOLDER */
/*
.foo {
  @include placeholder {
    color: green;
  }
}
*/
.container-fluid {
  max-width: 960px; }

.ar {
  text-align: right; }

.fr {
  float: right; }

.ac {
  text-align: center; }

.font-light {
  font-weight: 300; }

.btn {
  text-transform: uppercase; }
  .btn.btn-default:hover {
    background: #fbfbfb; }

input::-webkit-input-placeholder {
  color: #1c2343; }
input:-moz-placeholder {
  color: #1c2343; }
input::-moz-placeholder {
  color: #1c2343; }
input:-ms-input-placeholder {
  color: #1c2343; }

.mixText span {
  font-style: italic; }

h1 a:hover, .h1 a:hover {
  color: inherit; }

h2 a:hover, .h2 a:hover {
  color: inherit; }

h3 a:hover, .h3 a:hover {
  color: inherit; }

table {
  border-collapse: collapse;
  color: #555555; }
  table td {
    padding: 5px 10px; }
  table tbody tr {
    background: #fff; }
    table tbody tr:nth-child(even) {
      background: #f6f6f6; }
  table tbody td {
    border: 1px solid #e2e2e2; }
  table thead, table tr:first-child {
    background: #414141;
    color: #fff; }
    table thead td, table tr:first-child td {
      vertical-align: middle; }

.articulo-texto img {
  float: left;
  max-width: 50%;
  height: auto;
  display: inline-block;
  margin: 15px 15px 15px 0px; }
  .articulo-texto img:first-child {
    margin-top: 0px; }
  .articulo-texto img.full {
    max-width: 100%;
    float: none; }
  @media (max-width: 959px) {
    .articulo-texto img {
      max-width: 100%;
      float: none; } }
.articulo-texto:after {
  clear: both;
  content: "";
  display: block; }

.alertContainer {
  display: block;
  margin-top: 15px;
  margin-bottom: 0px;
  text-align: right; }
  .alertContainer .alert-info {
    display: inline-block;
    padding: 8px 15px 8px 15px;
    text-align: left;
    margin-bottom: 0px;
    margin-left: 15px; }
    .alertContainer .alert-info .close {
      margin-top: -2px;
      margin-left: 15px; }

.hidden-mobileMenu {
  display: block !important; }

.visible-mobileMenu {
  display: none !important; }

@media (max-width: 767px) {
  .hidden-mobileMenu {
    display: none !important; }

  .visible-mobileMenu {
    display: block !important; } }
html {
  color: #414141;
  font-size: 14px;
  font-family: "Asap", Helvetica, Arial, sans-serif; }
  html.overlayMode {
    overflow: hidden; }

body {
  font-size: 14px;
  font-family: "Asap", Helvetica, Arial, sans-serif;
  background-color: #fff; }
  body.overlayMode {
    overflow: hidden; }
  @media (max-width: 959px) {
    body {
      background-image: url("../img/pattern.gif");
      background-repeat: repeat;
      background-position: top left; } }

main {
  display: block; }
  @media (max-width: 767px) {
    main {
      padding-top: 60px; } }

section {
  padding: 8px 0px; }

ul li {
  list-style: none;
  padding: 0em; }

a {
  color: inherit;
  outline: 0;
  text-decoration: none; }

p, li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: #414141; }
  p a, li a {
    text-decoration: underline; }
    p a.btn, li a.btn {
      text-decoration: none; }
    p a:hover, li a:hover {
      color: #b20a3e; }

form .error {
  font-weight: 400;
  color: #b20a3e; }
form .right-inner-addon {
  position: relative; }
form .right-inner-addon input {
  padding-right: 60px; }
form .right-inner-addon {
  position: absolute;
  right: 0px;
  padding: 8px 10px 2px;
  background: transparent;
  pointer-events: none;
  border: 0px none; }
  form .right-inner-addon i {
    font-size: 29px; }
form #form-error-alert {
  display: none; }
form .captcha-container {
  padding: 15px;
  background: #f6f6f6; }
  form .captcha-container:after {
    clear: both; }
  form .captcha-container .captcha-img {
    float: none; }
form .btn-primary {
  margin-right: 8px; }
form textarea {
  resize: vertical;
  min-height: 120px; }
form .checkbox.bases {
  background: #e4e4e4;
  margin-top: 15px;
  margin-bottom: 30px;
  padding-top: 8px;
  padding-bottom: 8px; }
form.form-inline-responsive {
  display: table; }
  form.form-inline-responsive .form-group {
    display: table-cell;
    width: 100%; }
  form.form-inline-responsive .form-control {
    display: inline-block;
    vertical-align: middle; }
  form.form-inline-responsive button {
    margin-left: 8px; }

header #mobileMenu {
  position: fixed;
  z-index: 90;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5); }
  header #mobileMenu.mobileNavOpen {
    position: fixed;
    overflow-y: scroll;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px; }
header .mobileNavMenuHeader {
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  background: #1c2343;
  z-index: 100;
  min-height: 60px;
  position: relative; }
  header .mobileNavMenuHeader .logoLink {
    font-size: 14px;
    color: #fff;
    display: inline-block; }
    header .mobileNavMenuHeader .logoLink img {
      display: inline-block;
      width: 115px;
      max-width: 56%;
      margin-top: -10%; }
  header .mobileNavMenuHeader a {
    font-size: 2.5rem;
    margin-right: 2rem; }
  header .mobileNavMenuHeader a.backToTop {
    float: right;
    margin-right: 1rem;
    color: #fff; }
  header .mobileNavMenuHeader #mobileMenuToggle {
    min-width: 35px;
    text-align: center;
    color: #fff; }
  @media (max-width: 767px) {
    header .mobileNavMenuHeader a {
      font-size: 2.6rem;
      margin-right: 1.5rem; } }
  @media (max-width: 479px) {
    header .mobileNavMenuHeader .logoLink img {
      margin-top: -7%; } }
header #mobileMenuContainer {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 85;
  width: 100%;
  top: -1000px; }
  header #mobileMenuContainer .mobileNav {
    width: 100%;
    background: #3487c7;
    -webkit-box-shadow: 2px 14px 15px rgba(0, 0, 0, 0.7);
    -khtml-box-shadow: 2px 14px 15px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 2px 14px 15px rgba(0, 0, 0, 0.7);
    -ms-box-shadow: 2px 14px 15px rgba(0, 0, 0, 0.7);
    -o-box-shadow: 2px 14px 15px rgba(0, 0, 0, 0.7);
    box-shadow: 2px 14px 15px rgba(0, 0, 0, 0.7);
    padding-top: 68px;
    padding-bottom: 8px; }
    header #mobileMenuContainer .mobileNav a {
      color: #fff;
      font-size: 14px;
      display: block;
      width: 100%;
      padding: 8px 15px;
      border-top: 1px solid #eeeeee;
      font-weight: 400;
      font-size: 16px; }
      header #mobileMenuContainer .mobileNav a:first-child {
        border-top: none; }
      header #mobileMenuContainer .mobileNav a:hover {
        color: #fff; }
    header #mobileMenuContainer .mobileNav .search {
      background: #fff;
      padding: 8px 15px;
      color: #1c2343; }
      header #mobileMenuContainer .mobileNav .search .title {
        font-family: "Playfair Display", Times, serif;
        font-size: 16px; }
        header #mobileMenuContainer .mobileNav .search .title span {
          font-weight: 600; }
header .jumbo {
  background-position: center center;
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='{$img-uri}', sizingMethod='scale')";
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  text-align: center; }
  header .jumbo img {
    display: inline-block;
    margin: 60px 0; }
header .menuContainer {
  background-color: #b5c2d7; }
header .menu {
  text-align: justify; }
  header .menu li {
    display: inline-block; }
  header .menu ul {
    max-height: 40px; }
    header .menu ul:after {
      content: '';
      display: inline-block;
      width: 100%;
      position: relative;
      height: 0px; }
    header .menu ul a {
      font-size: 16px;
      color: #1c2343;
      text-decoration: none;
      font-weight: 600;
      padding: 2px 0px; }
      header .menu ul a:hover, header .menu ul a:focus {
        text-decoration: underline;
        background: transparent; }
header .headerQuote {
  position: relative;
  background-color: #eeeeee;
  padding: 15px 0px;
  z-index: 99;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4); }
  header .headerQuote .quote p.autor {
    font-family: "Playfair Display", Times, serif;
    font-style: italic; }
  header .headerQuote .social {
    color: #1c2343;
    font-size: 29px; }
    header .headerQuote .social #shareFb:hover {
      color: #3b5998; }
    header .headerQuote .social #shareTw:hover {
      color: #55acee; }

footer {
  background: #3487c7;
  padding: 30px 0px;
  text-align: center;
  color: #fff; }
  footer .menu, footer .copyright {
    display: inline-block;
    max-width: 768px; }
  footer .menu {
    font-weight: 600; }
    footer .menu a:before {
      content: " - "; }
    footer .menu a:first-child:before {
      content: ""; }
    footer .menu a:hover {
      color: #fff; }
  footer .copyright {
    margin-top: 15px;
    font-size: 12px;
    color: #fff; }

#formNews {
  display: table; }
  #formNews .form-group {
    display: table-cell;
    width: 100%; }
  #formNews .form-control {
    display: inline-block;
    vertical-align: middle; }
  #formNews button {
    margin-left: 8px; }

div.submenuRow {
  margin-bottom: 30px; }

div.submenuContainer {
  width: 100%;
  position: relative;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    div.submenuContainer {
      margin-top: -30px;
      margin-bottom: 30px;
      overflow: hidden; } }

ul.submenu {
  color: #555555;
  width: 100%; }
  ul.submenu.subFixed {
    position: fixed;
    top: 30px; }
  ul.submenu a {
    text-decoration: none;
    color: #555555; }
    ul.submenu a:hover {
      text-decoration: underline; }
    ul.submenu a.selected {
      color: #296c9f;
      pointer-events: none; }
  ul.submenu li {
    position: relative;
    margin-top: 0em;
    margin-bottom: 0em; }
    ul.submenu li.sub {
      overflow: hidden; }
      ul.submenu li.sub ul a {
        padding-left: 26px; }
      ul.submenu li.sub:before {
        font-family: Material-Design-Iconic-Font;
        font-size: 2em;
        display: inline-block;
        position: absolute;
        top: 0.20em;
        right: 0.3em;
        pointer-events: none; }
      ul.submenu li.sub.subOpen:before {
        content: "\f2f2"; }
      ul.submenu li.sub.subClose:before {
        content: "\F2F6"; }
      ul.submenu li.sub li.sub ul a {
        padding-left: 38px; }
  ul.submenu a {
    display: block;
    padding: 8px;
    background: #eeeeee;
    min-height: 48px;
    margin-bottom: 2px;
    padding: 14px;
    text-decoration: underline; }
    ul.submenu a.active {
      color: #b20a3e;
      background: #f6f6f6;
      pointer-events: none;
      text-decoration: none; }
    ul.submenu a.focus {
      color: inherit;
      text-decoration: none; }
    ul.submenu a.volver {
      background: #b20a3e;
      color: #fff;
      padding: 14px; }

main {
  padding-bottom: 30px; }
  main .main-contenido {
    margin-top: 30px; }

/* papers y events */
.papers h1 {
  margin-bottom: 30px; }
.papers h3 {
  font-size: 16px;
  color: #1c2343;
  margin: 0px;
  margin-bottom: 8px; }
  .papers h3 a {
    text-decoration: none; }
    .papers h3 a:hover {
      text-decoration: underline; }
.papers p {
  margin: 0px; }
.papers .paper {
  position: relative;
  border-top: #3487c7 1px solid;
  padding: 17px 0px; }
  .papers .paper:first-child {
    border-top: none;
    padding-top: 0px; }
  .papers .paper .autor {
    color: #3487c7;
    margin-bottom: 8px; }
  .papers .paper .img-responsive {
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    -khtml-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); }
  .papers .paper .download {
    position: absolute;
    bottom: 4px;
    right: 0px;
    display: inline-block;
    text-decoration: none; }
    .papers .paper .download p {
      font-size: 12px;
      display: inline-block;
      text-decoration: underline;
      margin-bottom: 8px; }
    .papers .paper .download img {
      display: inline-block;
      vertical-align: baseline;
      margin-bottom: -8px; }
    .papers .paper .download:hover p {
      color: #b20a3e; }
  .papers .paper .download-inline {
    float: right;
    display: inline-block;
    text-decoration: none;
    margin: 0px 15px 8px 0px; }
    .papers .paper .download-inline p {
      font-size: 12px;
      display: inline-block;
      text-decoration: underline;
      margin-bottom: 8px; }
    .papers .paper .download-inline img {
      display: inline-block;
      vertical-align: baseline;
      margin-bottom: -8px; }
    .papers .paper .download-inline:hover p {
      color: #b20a3e; }
  .papers .paper .paperId {
    color: #727277; }
  .papers .paper.dispatch .titleBlock {
    margin-bottom: 15px; }
  .papers .paper.dispatch .type {
    margin-bottom: 8px; }
  .papers .paper.dispatch .copete {
    margin-bottom: 8px; }
  @media (max-width: 479px) {
    .papers .paper .imagen {
      margin-bottom: 15px; }
      .papers .paper .imagen img {
        max-width: 70%;
        display: inline-block; } }
.papers .more {
  display: inline-block;
  font-weight: 600;
  color: #1c2343;
  margin: 30px 0px 0px 0px;
  font-size: 16px; }

.events h1 {
  margin-bottom: 30px; }
.events .listadoActividades {
  position: relative;
  z-index: 77;
  background: #f8f8f8;
  padding-top: 30px; }
.events .actividad {
  margin: 0px;
  padding: 2px 0px; }
.events .actividad:nth-child(even) {
  background: #ecf4fa; }
.events .fecha {
  padding: 8px 15px 15px 30px;
  border-right: 2px #fff solid; }
  .events .fecha p {
    color: #3487c7; }
  .events .fecha .dia, .events .fecha .mes, .events .fecha .anio {
    font-family: "Playfair Display", Times, serif;
    margin: 0px;
    font-weight: 600; }
  .events .fecha .dia {
    font-size: 26px; }
  .events .fecha .mes {
    margin-top: -4px; }
  .events .fecha .anio {
    margin-top: -4px; }
.events .content .texto {
  margin-bottom: 0px; }
.events .content .cta {
  color: #727277;
  font-size: 12px;
  margin-top: 0px; }
  .events .content .cta:hover {
    color: #b20a3e; }
.events .more {
  display: inline-block;
  font-weight: 600;
  color: #1c2343;
  margin: 30px 0px 0px 0px;
  font-size: 16px; }

/*
PIE HOME
 */
.pieHome {
  overflow: hidden;
  -webkit-box-shadow: 0px -8px 10px rgba(0, 0, 0, 0.1);
  -khtml-box-shadow: 0px -8px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px -8px 10px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0px -8px 10px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px -8px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px -8px 10px rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  margin-top: 30px; }
  .pieHome h2 {
    color: #fff;
    padding: 15px 30px;
    margin-bottom: 30px;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    -khtml-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); }
    .pieHome h2 a:hover {
      color: #fff; }
  .pieHome h3 {
    font-size: 16px;
    color: #1c2343;
    margin: 0px; }
  .pieHome .papers h2 {
    background: #1c2343;
    margin-left: -150%;
    padding-left: 150%; }
  .pieHome .events h2 {
    position: relative;
    z-index: 78;
    background: #3487c7;
    margin-right: -150%;
    padding-right: 150%;
    margin-bottom: 0px; }

/*
ASIDE
 */
aside {
  padding-top: 30px; }
  aside .asideDestacado {
    overflow: hidden;
    margin-bottom: 26px;
    text-align: center; }
    aside .asideDestacado img {
      display: inline-block;
      -webkit-border-radius: 10px;
      -khtml-border-radius: 10px;
      -moz-border-radius: 10px;
      -ms-border-radius: 10px;
      -o-border-radius: 10px;
      border-radius: 10px; }
  aside .donate {
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    display: block;
    background-color: #eeeeee;
    padding: 8px 15px; }
    aside .donate .title {
      font-size: 32px;
      font-family: "Playfair Display", Times, serif;
      color: #1c2343;
      font-weight: 600;
      margin: 0px; }
    aside .donate .text {
      font-size: 28px;
      color: #3487c7;
      margin: 0px;
      line-height: 32px; }
    aside .donate:hover {
      text-decoration: none; }
      aside .donate:hover .text {
        color: #1c2343; }
  aside .asideForm .title {
    font-size: 24px;
    font-family: "Playfair Display", Times, serif; }
    aside .asideForm .title span {
      font-weight: 600; }
  aside .searchByBox {
    margin-top: 30px;
    background: #eeeeee;
    padding-bottom: 4px; }
    aside .searchByBox .title {
      background: #b20a3e;
      color: #fff;
      font-family: "Playfair Display", Times, serif;
      padding: 8px 15px; }
    aside .searchByBox .subTitle {
      color: #b20a3e;
      padding-left: 15px; }
    aside .searchByBox .searchByList {
      margin-bottom: 15px;
      padding-right: 15px; }
      aside .searchByBox .searchByList .searchByItem {
        display: inline-block;
        margin-left: 15px; }

/*
SECCION ARTICULOS CON LISTADO Y PAGINADOS AL PIE
 */
.articulos h2 a:hover {
  color: #b20a3e; }
.articulos .articulo {
  margin: 0px;
  padding: 18px 0px;
  border-top: 1px solid #b20a3e; }
  .articulos .articulo:first-child {
    margin-top: 0px;
    border-top: none; }
  .articulos .articulo .volanta {
    margin-top: 0px;
    margin-bottom: 4px; }
  .articulos .articulo .autor {
    margin-bottom: 0px; }
  .articulos .articulo h3 {
    margin-top: 0px; }
    .articulos .articulo h3 a {
      text-decoration: none; }
      .articulos .articulo h3 a:hover {
        text-decoration: underline; }
  .articulos .articulo .volanta, .articulos .articulo .autor {
    color: #727277;
    font-size: 12px; }
  .articulos .articulo .link {
    font-size: 12px;
    margin-top: -8px;
    margin-bottom: 8px;
    display: block; }
  @media (max-width: 479px) {
    .articulos .articulo .imagen {
      margin-bottom: 8px; } }
.articulos .more {
  display: inline-block;
  font-weight: 600;
  color: #1c2343;
  margin: 30px 0px 0px 0px;
  font-size: 16px; }

/*
CONTENEDOR PARA ARTICULOS
 */
.contenedor-texto {
  margin-top: 30px; }
  .contenedor-texto .volanta {
    margin-bottom: 0px; }
  .contenedor-texto h2, .contenedor-texto h1 {
    margin-top: 8px; }
  .contenedor-texto .link {
    display: block;
    margin-top: -8px;
    font-size: 12px;
    margin-bottom: 8px; }
  .contenedor-texto .tags {
    margin-top: 15px; }
    .contenedor-texto .tags li {
      display: inline-block;
      padding: 4px 8px;
      background: #eeeeee;
      color: #414141; }
  .contenedor-texto .copete {
    font-style: italic; }
  .contenedor-texto .autor {
    font-size: 12px;
    color: #727277; }
  .contenedor-texto hr {
    width: 20%;
    border-bottom: none;
    border-top: 1px solid #a6a6a9; }
  .contenedor-texto .short {
    margin-top: 0px; }

.founder {
  clear: both;
  margin-bottom: 30px; }
  .founder .founderImg {
    float: none;
    max-width: 100%; }
  .founder .volanta {
    margin-top: 0px; }

/*# sourceMappingURL=styles.css.map */
