@charset "UTF-8";
/* Mixin */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.effect-1 {
  padding-top: 10px;
}

.effect-1:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #0da5f8;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.effect-1:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.effect-2 {
  padding: 10px;
}

.effect-2:before, .effect-2:after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-style: solid;
  border-color: #0da5f8;
}

.effect-2:before {
  border-width: 2px 0 2px 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.effect-2:after {
  border-width: 0 2px 0 2px;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.effect-2:hover:before, .effect-2:hover:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.effect-3 {
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 5px;
  overflow: hidden;
}

.effect-3:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #0da5f8;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.effect-3:hover:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.effect-4 {
  padding: 10px;
  display: inline-block;
  overflow: hidden;
}

.effect-4:before, .effect-4:after {
  left: 0;
  width: 100%;
  height: 2px;
  background: #0da5f8;
}

.effect-4:before {
  bottom: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.effect-4:after {
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.effect-4:hover:before, .effect-4:hover:after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.effect-5 {
  display: inline-block;
  overflow: hidden;
}

.effect-5:before, .effect-5:after {
  right: 0;
  bottom: 0;
  background: #0da5f8;
}

.effect-5:before {
  width: 100%;
  height: 2px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.effect-5:after {
  width: 2px;
  height: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.effect-5 > span {
  display: block;
  padding: 10px;
}

.effect-5 > span:before, .effect-5 > span:after {
  left: 0;
  top: 0;
  background: #0da5f8;
}

.effect-5 > span:before {
  width: 100%;
  height: 2px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.effect-5 > span:after {
  width: 2px;
  height: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.effect-5:hover:before, .effect-5:hover:after, .effect-5:hover > span:before, .effect-5:hover > span:after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.effect-6 {
  display: inline-block;
  overflow: hidden;
}

.effect-6:before, .effect-6:after {
  right: 0;
  bottom: 0;
  background: #0da5f8;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.effect-6:before {
  width: 100%;
  height: 2px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition-delay: .9s;
          transition-delay: .9s;
}

.effect-6:after {
  width: 2px;
  height: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}

.effect-6 > span {
  display: block;
  padding: 10px;
}

.effect-6 > span:before, .effect-6 > span:after {
  left: 0;
  top: 0;
  background: #0da5f8;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.effect-6 > span:before {
  width: 100%;
  height: 2px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.effect-6 > span:after {
  width: 2px;
  height: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.effect-6:hover:before, .effect-6:hover:after, .effect-6:hover > span:before, .effect-6:hover > span:after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.effect-6:hover:before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.effect-6:hover:after {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.effect-6:hover > span:before {
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}

.effect-6:hover > span:after {
  -webkit-transition-delay: .9s;
          transition-delay: .9s;
}

.effect-7 {
  display: inline-block;
  overflow: hidden;
}

.effect-7:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0da5f8;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.effect-7:after {
  content: attr(data-content);
  left: 0;
  top: 0;
  width: 0;
  margin: 12px;
  color: #0da5f8;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: width .5s ease;
  transition: width .5s ease;
}

.effect-7 > span {
  display: block;
  margin: 2px;
  padding: 10px;
  background: #0da5f8;
}

.effect-7:hover:before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.effect-7:hover:after {
  width: calc(100% - 24px);
}

.effect-8 {
  display: inline-block;
  overflow: hidden;
}

.effect-8:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0da5f8;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.effect-8:after {
  content: attr(data-content);
  top: 0;
  left: 0;
  height: 0;
  margin: 12px;
  color: #0da5f8;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: height .5s ease;
  transition: height .5s ease;
}

.effect-8 > span {
  display: block;
  margin: 2px;
  padding: 10px;
  background: #0da5f8;
}

.effect-8:hover:before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.effect-8:hover:after {
  height: calc(100% - 24px);
}

.well-login {
  display: block;
  padding: 15px;
  padding-left: 50px;
  padding-right: 50px;
  margin-top: 10px;
  border: 1px solid #005bdd;
  background-color: #eeeeee;
  -webkit-box-shadow: 0 2px 24px rgba(0, 105, 214, 0.25);
  box-shadow: 0 2px 24px rgba(0, 105, 214, 0.25);
}

.well-login .title {
  vertical-align: middle;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  font-size: 1.5em;
  margin: 0;
  color: #005bdd;
  text-transform: uppercase;
  text-align: left;
}

.w_login {
  position: relative;
  height: auto;
  text-align: center;
  overflow: hidden;
  background-color: #eeeeee;
  -webkit-box-shadow: 0 2px 24px rgba(0, 105, 214, 0.25);
  box-shadow: 0 2px 24px rgba(0, 105, 214, 0.25);
}

.w_login .title {
  vertical-align: middle;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  font-size: 1.5em;
  margin: 0;
  color: #005bdd;
  text-transform: uppercase;
  text-align: left;
}

.w_login_padding {
  padding: 15px;
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 10px;
}

.w_login_left {
  text-align: left;
}

.w_login h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 1.8em;
  line-height: 1.0em;
}

.w_login h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 1.6em;
  line-height: 1.0em;
}

.w_login h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 1.4em;
  line-height: 1.0em;
}

.w_login h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 1.2em;
  line-height: 1.0em;
}

.w_login h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 1.0em;
  line-height: 1.0em;
}

.w_login p {
  color: #9a9a90;
  color: #a8bdbd;
  line-height: 1.2em;
  font-size: 1em;
}

.w_login a {
  color: #e4e4e4;
}

.w_login a:hover {
  border-bottom: 1px dotted #999;
}

.w_login_img-container {
  position: relative;
  margin-bottom: 120px;
}

.w_login_circular {
  width: 180px;
  height: 180px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  margin-left: -90px;
  bottom: -90px;
  -webkit-box-shadow: 0 0 0 4px #fff;
  box-shadow: 0 0 0 4px #fff;
  border-radius: 50%;
  z-index: 2;
}

.w_login_circular img {
  display: inline;
  margin: 0px;
  margin-top: 0px;
  height: auto;
  width: 100%;
  -webkit-box-shadow: 0 0 0 4px #fff;
          box-shadow: 0 0 0 4px #fff;
  z-index: 5;
}

.w_login_img-quad {
  position: relative;
  margin-bottom: 95px;
}

.w_login_quad {
  width: 90px;
  height: auto;
  overflow: hidden;
  position: absolute;
  left: 50%;
  margin-top: -45px;
  margin-left: -45px;
  -webkit-box-shadow: 0 0 0 6px #fff;
  box-shadow: 0 0 0 6px #fff;
  z-index: 2;
}

.w_login_quad img {
  display: inline;
  margin: 0;
  height: auto;
  width: 100%;
  -webkit-box-shadow: 0 0 0 6px #fff;
          box-shadow: 0 0 0 6px #fff;
  z-index: 5;
}

.boxed_login {
  height: auto;
  border: 1px solid #254e82;
  border-radius: 6px;
}

.color_bg_blue {
  background-color: #254e82;
}

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Play', arial;
  font-size: 16px;
  text-align: justify;
  line-height: 1.45;
  background-color: #ffffff;
  color: #254e82;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.well {
  background-color: #ffffff;
  border-radius: 0;
  border-top: 2px solid #254e82;
  border-left: 2px solid #254e82;
  border-right: 2px solid #254e82;
  border-bottom: 2px solid #254e82;
  background-color: #ffffff;
  /*
	-webkit-box-shadow:0 1px 2px rgba(0, 105, 214, 0.5);
	-moz-box-shadow:0 1px 2px rgba(0, 105, 214, 0.5);
	box-shadow: 0px 1px 2px rgba(0, 105, 214, 5/10);
	*/
}

#retro h1 {
  color: #d7ceb2;
  text-shadow: 3px 3px 0px #2c2e38, 5px 5px 0px #5c5f72;
  font: 80px 'BazarMedium';
  letter-spacing: 10px;
}

@media (min-width: 768px) {
  /* top row */
  .col .well {
    margin-bottom: -99999px;
    padding-bottom: 99999px;
  }
  /* bottom row */
  .col-base {
    margin-top: -16px;
    /* cut off top portion of bottom wells */
  }
}

@media (max-width: 767px) {
  .row.base {
    display: none;
  }
}

.col-wrap {
  overflow: hidden;
}

.artigo ul {
  display: block;
  list-style-type: none;
  position: relative;
}

.artigo li {
  background-image: url(/recursos/imagens/diversas/ok-blue.png);
  background-repeat: no-repeat;
  background-position: 0 0%;
  padding: 3px 0 3px 30px;
  margin: .4em 0;
}

a {
  background: 0 0;
}

a:active, a:hover {
  outline: 0;
}

a {
  text-decoration: none;
}

a:focus, a:hover {
  color: #2a6496;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

svg:not(:root) {
  overflow: hidden;
}

.container {
  border: 0px solid red;
}

.imargin {
  padding: 5px;
}

.imargin img {
  display: block;
  height: 100%;
}

.imargin p {
  line-height: 0;
  margin-bottom: 0;
}

.hspc {
  height: 6px;
}

.margin-left-lg {
  margin-left: 50px;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.badge-danger {
  background-color: #d43f3a;
}

.badge-warning {
  background-color: #d58512;
}

.badge-success {
  background-color: #398439;
}

.badge-info {
  background-color: #007bbe;
}

.badge-inverse {
  background-color: #333333;
}

.label {
  padding: 10px;
}

.fbkbox {
  height: auto;
  width: 100%;
  padding: 0;
}

@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }
  blockquote, pre {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  img, tr {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 2cm .5cm;
  }
  h2, h3, p {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret, .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered td,
  .table-bordered th {
    border: 1px solid #ddd !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  margin: 13px 0;
  font-family: "Play", Arial, Helvetica, sans-serif;
  color: #254e82;
  font-weight: 700;
}

@media (min-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    margin: 20px 0;
  }
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #2f343b;
  border: 0;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #9a9a90;
}

h1 {
  font-size: 1.8em;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2em;
  }
}

h2 {
  font-size: 1.5em;
  letter-spacing: -.90;
}

@media (min-width: 768px) {
  h2 {
    font-size: 1.8em;
  }
}

h3 {
  font-size: 1.5em;
  font-weight: 300;
  color: #999;
  letter-spacing: -.75px;
  line-height: 1.25;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.8em;
  }
}

h3 a {
  color: #999;
  border: 0;
}

h3 a:hover {
  color: #9a9a90;
}

h4 {
  font-size: 1.4em;
}

@media (min-width: 768px) {
  h4 {
    font-size: 1.5em;
  }
}

h5 {
  font-size: 1.3em;
}

@media (min-width: 768px) {
  h5 {
    font-size: 1.4em;
  }
}

h6 {
  font-size: 1.1em;
  font-family: Lato,sans-serif;
  text-transform: uppercase;
  margin: 0;
  color: #9a9a90;
}

h6 a {
  color: #9a9a90;
  border: 0;
}

h6 a:hover {
  color: #9a9a90;
}

.border-red {
  border: 1px solid red;
}

.border-green {
  border: 1px solid green;
}

.border-blue {
  border: 1px solid blue;
}

.border-top-blue {
  border-top: 2px solid #254e82;
}

.border-right-blue {
  border-right: 2px solid #254e82;
}

.border-left-blue {
  border-left: 2px solid #254e82;
}

.border-all-blue {
  border: 2px solid #254e82;
}

.border-bottom-blue {
  border-top: 1px solid #254e82;
}

.boxed-e {
  background-color: #9b0c11;
  border: 1px solid #9b0c11;
  border-radius: 6px;
  overflow: hidden;
}

.boxed-s {
  background-color: #254e82;
  border: 1px solid #254e82;
  border-radius: 6px;
}

.boxed-w {
  background-color: #ffffff;
  border: 1px solid #254e82;
  border-radius: 6px;
  overflow: hidden;
}

.boxed-2w {
  background-color: #ffffff;
  border: 2px solid #254e82;
  border-radius: 6px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 0;
}

.boxed-r {
  background-color: #254e82;
  border: 1px solid #254e82;
  border-radius: 6px;
}

.padding-right {
  padding-right: 10px;
}

.padding-left {
  padding-left: 10px;
}

.nopadding {
  padding: 0;
}

.padding-xs {
  padding: 5px;
}

@media (min-width: 480px) {
  .padding-xs {
    padding: 5px;
  }
}

@media (min-width: 768px) {
  .padding-xs {
    padding: 5px;
  }
}

@media (min-width: 992px) {
  .padding-xs {
    padding: 10px;
  }
}

@media (min-width: 1200px) {
  .padding-xs {
    padding: 10px;
  }
}

.padding_top_md {
  padding-top: 5px;
}

@media (min-width: 480px) {
  .padding_top_md {
    padding-top: 5px;
  }
}

@media (min-width: 768px) {
  .padding_top_md {
    padding-top: 5px;
  }
}

@media (min-width: 992px) {
  .padding_top_md {
    padding-top: 10px;
  }
}

@media (min-width: 1200px) {
  .padding_top_md {
    padding-top: 10px;
  }
}

.nopadding-top {
  padding-top: 0;
}

.nopadding-bottom {
  padding-bottom: 0;
  margin-bottom: 0;
}

.padding-left-lg {
  padding-left: 50px;
}

.margin_top_md {
  margin-top: 5px;
}

@media (min-width: 480px) {
  .margin_top_md {
    margin-top: 5px;
  }
}

@media (min-width: 768px) {
  .margin_top_md {
    margin-top: 5px;
  }
}

@media (min-width: 992px) {
  .margin_top_md {
    margin-top: 10px;
  }
}

@media (min-width: 1200px) {
  .margin_top_md {
    margin-top: 10px;
  }
}

.margin_top_lg {
  margin-top: 25px;
}

@media (min-width: 480px) {
  .margin_top_lg {
    margin-top: 25px;
  }
}

@media (min-width: 768px) {
  .margin_top_lg {
    margin-top: 25px;
  }
}

@media (min-width: 992px) {
  .margin_top_lg {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  .margin_top_lg {
    margin-top: 40px;
  }
}

/*
.btn {
  height: auto;	
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  .caret {
    border-top-color: #fff;
  }
}

.btn-default {

  @include btn-shadow($btn-default-bg);

  &:hover {
    color: $btn-default-color;
  }

  .caret {
    border-top-color: $text-color;
  }
}


.btn-default {
  @include btn-shadow($btn-default-bg);
}

.btn-primary {
  @include btn-shadow($btn-primary-bg);
}

.btn-success {
  @include btn-shadow($btn-success-bg);
}

.btn-info {
  @include btn-shadow($btn-info-bg);
}

.btn-warning {
  @include btn-shadow($btn-warning-bg);
}

.btn-danger {
  @include btn-shadow($btn-danger-bg);
}

*/
.btn-primary--transparent {
  background: 0 0;
  color: #51ab6d;
}

.btn-info--transparent {
  background: 0 0;
  color: #6cb9d3;
}

.btn-gray--transparent {
  background: 0 0;
  color: #9a9a90;
}

.btn-danger--transparent {
  background: 0 0;
  color: #d8555e;
}

.btn-dark--transparent {
  background: 0 0;
  color: #2f343b;
}

.btn-alternative--transparent {
  background: 0 0;
  color: #8d5ca9;
}

.btn-light--transparent {
  background: 0 0;
  color: #90909a;
  border-color: #90909a;
}

.btn-warning--transparent {
  background: 0 0;
  color: #f58021;
}

.btn-transparent {
  background-color: transparent;
  border: 1px solid #9a9a90;
  color: #dfe2e4;
}

.btn-transparent:hover {
  background-color: #dfe2e4;
  border: 1px solid #dfe2e4;
  color: #51ab6d;
}

.btn_box_right {
  margin-left: 10px;
}

.tags {
  clear: both;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .tags {
    margin-bottom: 60px;
  }
}

.tags__link {
  display: inline-block;
  border: 1px solid #254e82;
  border-radius: 30px;
  margin: 5px;
  padding: 9.5px 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: Lato,sans-serif;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.tags__link:hover {
  background-color: #254e82;
  color: #fff;
}

.widget-tags {
  margin-bottom: 30px;
}

blockquote {
  border-left: 4px solid #51ab6d;
  padding: 10px 30px;
  font-weight: 800;
  font-size: 0,9em;
  font-style: italic;
  color: #254e82;
}

@media (min-width: 768px) {
  blockquote {
    font-size: 0,9em;
    margin: 15px 0;
  }
}

.blockquote__alternative {
  text-align: center;
  border-left: 0;
  padding: 10px 30px;
  position: relative;
}

@media (min-width: 768px) {
  .blockquote__alternative {
    padding: 10px 75px;
  }
}

.blockquote__alternative:before {
  position: absolute;
  content: open-quote;
  left: -15px;
  top: -30px;
  color: #dcdddd;
  font-size: 80px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .blockquote__alternative:before {
    left: 0;
    font-size: 100px;
  }
}

.blockquote__alternative p {
  font-size: 16px;
  color: #9a9a90;
  font-style: normal;
}

@media (min-width: 768px) {
  .blockquote__alternative p {
    font-size: 20px;
  }
}

blockquote p {
  font-size: 16.25px;
  font-weight: 300;
  line-height: 1.25;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote small {
  display: block;
  line-height: 1.5;
  color: #999;
}

blockquote small:before {
  content: '\2014 \00A0';
}

blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eee;
  border-left: 0;
}

blockquote.pull-right .small, blockquote.pull-right p, blockquote.pull-right small {
  text-align: right;
}

blockquote.pull-right .small:before, blockquote.pull-right small:before {
  content: '';
}

blockquote.pull-right .small:after, blockquote.pull-right small:after {
  content: '\00A0 \2014';
}

blockquote:after, blockquote:before {
  content: "";
}

.hline {
  width: 100%;
  height: 2px;
  background: #cdcf21;
}

.hline-gray {
  width: 100%;
  height: 1px;
  background: #e1e3e9;
}

.hline-red {
  width: 100%;
  height: 1px;
  background: #ff0000;
}

.hline-primary {
  width: 100%;
  height: 1px;
  background: #254e82;
}

.th_fundo {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.th_centrar {
  text-align: center;
}

.fundo {
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 10px;
  margin-bottom: 10px;
  min-height: 35px;
}

.fundo p {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.fundo :hover {
  background-color: #e1e3e9;
  color: #005bdd;
}

.padding-top-sm {
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 5px 0px 5px 0px;
}

.padding-top-0 {
  padding-top: 0;
}

.padding-top-5 {
  padding-top: 5px;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-top-15 {
  padding-top: 15px;
}

.padding-top-20 {
  padding-top: 20px;
}

.padding-top-25 {
  padding-top: 25px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-top-35 {
  padding-top: 35px;
}

.padding-top-40 {
  padding-top: 40px;
}

.padding-top-45 {
  padding-top: 45px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-top-55 {
  padding-top: 55px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-bot-0 {
  padding-bottom: 0;
}

.padding-bot-5 {
  padding-bottom: 5px;
}

.padding-bot-10 {
  padding-bottom: 10px;
}

.padding-bot-15 {
  padding-bottom: 15px;
}

.padding-bot-20 {
  padding-bottom: 20px;
}

.padding-bot-25 {
  padding-bottom: 25px;
}

.padding-bot-30 {
  padding-bottom: 30px;
}

.padding-bot-35 {
  padding-bottom: 35px;
}

.padding-bot-40 {
  padding-bottom: 40px;
}

.padding-bot-45 {
  padding-bottom: 45px;
}

.padding-bot-50 {
  padding-bottom: 50px;
}

.padding-bot-55 {
  padding-bottom: 55px;
}

.padding-bot-60 {
  padding-bottom: 60px;
}

.padding-left-20 {
  padding-left: 20px;
}

.push-top-0 {
  margin-top: 0;
}

.push-top-5 {
  margin-top: 5px;
}

.push-top-10 {
  margin-top: 10px;
}

.push-top-15 {
  margin-top: 15px;
}

.push-top-20 {
  margin-top: 20px;
}

.push-top-25 {
  margin-top: 25px;
}

.push-top-30 {
  margin-top: 30px;
}

.push-top-35 {
  margin-top: 35px;
}

.push-top-40 {
  margin-top: 40px;
}

.push-top-45 {
  margin-top: 45px;
}

.push-top-50 {
  margin-top: 50px;
}

.push-top-55 {
  margin-top: 55px;
}

.push-top-60 {
  margin-top: 60px;
}

.push-down-0 {
  margin-bottom: 0;
}

.push-down-5 {
  margin-bottom: 5px;
}

.push-down-10 {
  margin-bottom: 10px;
}

.push-down-15 {
  margin-bottom: 15px;
}

.push-down-20 {
  margin-bottom: 20px;
}

.push-down-25 {
  margin-bottom: 25px;
}

.push-down-30 {
  margin-bottom: 30px;
}

.push-down-35 {
  margin-bottom: 35px;
}

.push-down-40 {
  margin-bottom: 40px;
}

.push-down-45 {
  margin-bottom: 45px;
}

.push-down-50 {
  margin-bottom: 50px;
}

.push-down-55 {
  margin-bottom: 55px;
}

.push-down-60 {
  margin-bottom: 60px;
}

.sticky {
  position: relative;
}

.sticky:after, .sticky:before {
  z-index: 0;
  position: absolute;
  content: "";
  width: 99%;
  background: #fff;
  bottom: -3px;
  height: 3px;
  margin-left: .5%;
  border: 1px solid #254e82;
  border-top: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sticky:after {
  z-index: -1;
  width: 98%;
  bottom: -6px;
  height: 6px;
  margin-left: 1%;
}

.sticky__box {
  border-bottom: 1px dashed #e4e4e4;
  padding: 12px 0;
  background-color: #fff;
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .sticky__box {
    margin: -60px 0 60px 0;
  }
}

.sticky__circle {
  display: inline-block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: #ebeded;
  -webkit-box-shadow: 0 1px 3px #c4c5c5 inset;
  box-shadow: 0 1px 3px #c4c5c5 inset;
  margin: 0 8%;
}

@media (min-width: 768px) {
  .sticky__circle {
    margin-left: 10.6%;
    margin-right: 10.6%;
  }
}

.read-more {
  border-top: 1px solid #254e82;
  padding: 18px 5px 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  font-family: Lato,sans-serif;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.read-more__arrow {
  display: inline;
  float: right;
}

.social-icons {
  text-align: center;
  margin-bottom: 15px;
}

.mt_last_rev {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(64, 64, 64, 0)), to(white));
  background: linear-gradient(to bottom, rgba(64, 64, 64, 0) 50%, white 100%);
  padding-bottom: 10px;
}

.last_rev_fundo {
  width: 100%;
  padding: 0;
  margin: 0;
}

.last_rev_fundo p {
  line-height: 0;
  min-height: 0;
}

.last_rev_RM {
  width: 100%;
  padding-bottom: 5px;
}

.last_rev_titulo {
  width: 100%;
  font-weight: 700;
  font-size: 1.3em;
  text-align: left;
  line-height: 1.0em;
  text-shadow: 1px 1px 1px white;
}

.last_rev {
  margin-top: 0px;
  padding-top: 0px;
}

.last_rev h2 {
  font-weight: 700;
  font-size: 1.2em;
  color: #254e82;
  text-shadow: 2px 2px 0px rgba(37, 78, 130, 0.1);
}

.last_rev h3 {
  font-weight: 700;
  font-size: 1.1em;
  color: #254e82;
  text-shadow: 2px 2px 0px rgba(37, 78, 130, 0.1);
}

@media (min-width: 480px) {
  .last_rev_RM {
    width: 75%;
    padding-bottom: 5px;
  }
  .last_rev_titulo {
    font-size: 1.4em;
    line-height: 1.1em;
  }
  .last_rev h2 {
    font-size: 1.3em;
  }
  .last_rev h3 {
    font-size: 1.2em;
  }
}

@media (min-width: 992px) {
  .last_rev_RM {
    width: 66%;
    padding-bottom: 5px;
  }
  .last_rev_titulo {
    font-size: 2.0em;
    line-height: 1.6em;
  }
  .last_rev h2 {
    font-size: 1.4em;
  }
  .last_rev h3 {
    font-size: 1.3em;
  }
}

.last_rev ul {
  display: block;
  list-style-type: none;
  position: relative;
}

.last_rev li {
  background-image: url(/recursos/imagens/diversas/ok-blue.png);
  background-repeat: no-repeat;
  background-position: 0 0%;
  padding: 3px 0 3px 30px;
  margin: .4em 0;
}

.meta {
  position: relative;
  margin-bottom: 0;
  margin-bottom: 0;
  min-height: 0;
}

@media (min-width: 768px) {
  .meta {
    margin-bottom: 0;
    margin-bottom: 0;
  }
}

.meta--full-width {
  margin-top: -15px;
}

.meta--full-width
.wp-post-image {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.meta__container,
.meta__container--without-image {
  font-weight: 700;
  font-size: 14px;
  color: #999;
  padding: 30px 30px 0 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .meta__container,
  .meta__container--without-image {
    position: absolute;
    bottom: 0;
    height: 250px;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(64, 64, 64, 0)), to(white));
    background: linear-gradient(to bottom, rgba(64, 64, 64, 0) 60%, white 100%);
    color: #e4e4e4;
    padding: 65px 80px 0 20px;
    line-height: 10px;
    text-align: right;
  }
}

.meta__container a, .meta__container--without-image a {
  color: #999;
  border: 0;
}

@media (min-width: 768px) {
  .meta__container a, .meta__container--without-image a {
    color: #e4e4e4;
  }
}

.meta__container a:hover, .meta__container--without-image a:hover {
  border-bottom: 1px dotted #999;
}

@media (min-width: 768px) {
  .meta__container a:hover,
  .meta__container--without-image a:hover {
    border-bottom: 1px dotted #e4e4e4;
  }
}

.meta__container .meta__info img, .meta__container--without-image .meta__info img {
  border-radius: 50%;
  margin-right: 8px;
  margin-top: -2px;
}

.meta__container .meta__info .meta__date, .meta__container--without-image .meta__info .meta__date {
  display: block;
}

@media (min-width: 768px) {
  .meta__container .meta__info .meta__date, .meta__container--without-image .meta__info .meta__date {
    display: inline-block;
  }
}

.meta__container .meta__info .meta__author, .meta__container--without-image .meta__info .meta__author {
  margin-right: 0;
}

@media (min-width: 768px) {
  .meta__container .meta__info .meta__author, .meta__container--without-image .meta__info .meta__author {
    margin-right: 25px;
  }
}

@media (min-width: 768px) {
  .meta__container .meta__comments, .meta__container--without-image .meta__comments {
    float: right;
  }
}

.meta__container--without-image {
  position: relative;
  height: auto;
  color: #9a9a90;
  padding: 10px 0;
  background: 0 0;
  line-height: 30px;
  border-bottom: 1px solid #e4e4e4;
}

@media (min-width: 768px) {
  .meta__container--without-image {
    padding: 0;
    height: 70px;
    line-height: 70px;
  }
}

.meta__container--without-image a {
  color: #9a9a90;
}

.meta__container--without-image a:hover {
  border-bottom: 1px dotted #9a9a90;
}

.meta__quote {
  position: absolute;
  text-align: center;
  top: 12%;
  font-size: 15px;
  width: 90%;
  left: 5%;
  color: #fff;
  font-family: "Open Sans",sans-serif;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  .meta__quote {
    width: 80%;
    left: 10%;
    top: 35%;
    font-size: 24px;
  }
}

.sum-title {
  min-height: 42px;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.3em;
  border-bottom: 1px dotted #9a9a90;
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .sum-title {
    min-height: 58px;
  }
}

.art-title {
  min-height: 42px;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.6em;
  text-shadow: 1px 1px 1px rgba(14, 34, 84, 0.3);
  border-bottom: 1px dotted #9a9a90;
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .art-title {
    min-height: 58px;
  }
}

.box-sum-text {
  display: table-cell;
  width: 100%;
  height: 100%;
  padding: 0;
}

.box-sum-stats {
  display: table-cell;
  padding: 0;
  padding-bottom: 5px;
  width: 100%;
  vertical-align: bottom;
  text-align: right;
}

.box-autor {
  display: inline-block;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.col-autor {
  display: inline-block;
  width: 100%;
  text-align: right;
}

.col-autor img {
  vertical-align: middle;
  padding-left: 10px;
}

.col-autor span {
  display: inline-block;
  vertical-align: middle;
}

.topabs .box-topabs {
  width: 100%;
  font-size: 1.2em;
  font-weight: 800;
  line-height: 1.1em;
  text-align: justify;
}

.topabs a, a:visited, a:active {
  text-decoration: none;
}

.topabs .box-autor {
  display: inline-block;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.topabs .col-autor {
  display: inline-block;
  width: 100%;
  text-align: left;
}

.topabs .col-autor img {
  vertical-align: middle;
  padding-right: 10px;
  padding-left: 0;
}

.topabs .col-autor span {
  display: inline-block;
  vertical-align: middle;
}

.box-resumo {
  display: block;
  width: 100%;
  min-height: 55px;
  height: auto !important;
  padding-top: 15px;
  position: relative;
}

.box_btn_center {
  display: block;
  width: 100%;
  min-height: 55px;
  height: auto !important;
  padding-top: 15px;
  position: relative;
  text-align: center;
}

.box_btn_right {
  display: block;
  width: 100%;
  min-height: 55px;
  height: auto !important;
  padding-top: 15px;
  position: relative;
  text-align: right;
}

.box-bot-fbk {
  display: block;
  width: 100%;
  min-height: 55px;
  height: auto !important;
  padding-top: 25px;
  position: relative;
}

.box-bot {
  display: block;
  width: 100%;
  min-height: 55px;
  height: auto !important;
  padding-top: 15px;
  position: relative;
}

.box-bot-stats {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  width: 100%;
  vertical-align: bottom;
  text-align: right;
  border-top: 1px dotted #9a9a90;
}

/*
@media (max-width:992px){ .min-h-bloc_title { height: 62px; }}
@media (max-width:768px){ .min-h-bloc_title { height: 62px; }}
*/
.w-autor {
  text-align: center;
  overflow: hidden;
}

.s-autor {
  overflow: hidden;
}

.w-autor h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 1.8em;
  line-height: 1.0em;
}

.w-autor h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 1.6em;
  line-height: 1.0em;
}

.w-autor h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 1.4em;
  line-height: 1.0em;
}

.w-autor h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 1.2em;
  line-height: 1.0em;
}

.w-autor h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #ffffff;
  font-size: 1.0em;
  line-height: 1.0em;
}

.w-autor p {
  color: #9a9a90;
  color: #a8bdbd;
  line-height: 1.2em;
  font-size: 1em;
}

.w-autor a {
  color: #e4e4e4;
}

.w-autor a:hover {
  border-bottom: 1px dotted #999;
}

.w-autor_img-container {
  position: relative;
  margin-bottom: 55px;
}

.w-autor_circular {
  width: 90px;
  height: 90px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  margin-left: -45px;
  bottom: -45px;
  -webkit-box-shadow: 0 0 0 4px #fff;
  box-shadow: 0 0 0 4px #fff;
  border-radius: 50%;
  z-index: 2;
}

.w-autor_circular img {
  display: inline;
  margin: 0px;
  margin-top: -5px;
  height: auto;
  width: 100%;
  -webkit-box-shadow: 0 0 0 4px #fff;
          box-shadow: 0 0 0 4px #fff;
  z-index: 5;
}

.w-autor_img-quad {
  position: relative;
  margin-bottom: 95px;
}

.w-autor_quad {
  width: 90px;
  height: auto;
  overflow: hidden;
  position: absolute;
  left: 50%;
  margin-top: -45px;
  margin-left: -45px;
  -webkit-box-shadow: 0 0 0 6px #fff;
  box-shadow: 0 0 0 6px #fff;
  z-index: 2;
}

.w-autor_quad img {
  display: inline;
  margin: 0;
  height: auto;
  width: 100%;
  -webkit-box-shadow: 0 0 0 6px #fff;
          box-shadow: 0 0 0 6px #fff;
  z-index: 5;
}

.e-autor {
  text-align: center;
  overflow: hidden;
}

.e-autor h2 {
  color: #ffffff;
  font-size: 1.6em;
  line-height: 1.0em;
}

.e-autor h4 {
  color: #d6dc18;
  font-size: 1.2em;
  line-height: 1.0em;
}

.e-autor_img-quad {
  position: relative;
  margin-bottom: 15px;
}

.w-posts {
  font-weight: 400;
}

.w-posts h1 {
  font-size: 1.8em;
  line-height: 1.0em;
}

/*
.w-posts h2{
	font-size: 1.6em;
	line-height: 1.0em
	}
*/
.w-posts h3 {
  font-size: 1.4em;
  line-height: 1.0em;
}

.w-posts h4 {
  color: #ffffff;
  font-size: 1.2em;
  line-height: 1.0em;
}

.w-posts h5 {
  font-weight: 400;
  font-size: 1.0em;
  line-height: 1.0em;
  margin-top: 0;
  margin-bottom: 10px;
}

.w-posts p {
  color: #9a9a90;
  color: #a8bdbd;
  line-height: 1em;
  font-size: 1em;
  text-align: justify;
}

/*
.w-posts a{
	color:#e4e4e4
}
			
.w-posts a:hover{
	border-bottom:1px dotted #e6db28;
	text-decoration: none;
}

*/
.w-posts h5 {
  color: #e4e4e4;
  float: left;
  font-size: 1.0em;
  line-height: 1.0em;
  font-weight: normal;
  width: 100%;
}

.w-posts a, a > span {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.w-posts a:before, .w-posts a:after, a > span:before, a > span:after {
  content: '';
  position: absolute;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

.w-posts img {
  float: left;
  margin-right: 5px;
  width: 50px;
  border-radius: 2px;
}

.w-posts .w-posts__time {
  color: #9a9a90;
}

.w-posts .nav-tabs {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 20px;
}

.w-posts .nav-tabs > li {
  border-right: 1px solid #e0e0e0;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 50%;
  text-align: center;
  -webkit-box-shadow: 0 1px 1px -1px #e0e0e0;
  box-shadow: 0 1px 1px -1px #e0e0e0;
}

.w-posts .nav-tabs > li.active,
.w-posts .nav-tabs > li:hover {
  -webkit-box-shadow: 0 0 3px #e0e0e0 inset;
  box-shadow: 0 0 3px #e0e0e0 inset;
}

.w-posts .nav-tabs > li.active > a,
.w-posts .nav-tabs > li:hover > a {
  color: #51ab6d;
  background-color: #f8f9fa;
  border: 0;
  margin: 1px;
}

.w-posts .nav-tabs > li:last-child {
  border-right: 0;
}

.w-posts .nav-tabs > li a {
  color: #9a9a90;
  padding: 2px;
  padding-top: 5px;
  margin: 0;
}

.w-posts .nav-tabs > li a:hover {
  color: #51ab6d;
  background: #f8f9fa;
  border: 0;
  margin: 1px;
}

.widget-autor {
  text-align: center;
  overflow: hidden;
}

.widget-autor h4 {
  margin-bottom: 0px;
  color: #ffffff;
}

.widget-autor p {
  color: #9a9a90;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 30px;
}

.widget-autor__image-container {
  position: relative;
  margin-bottom: 45px;
}

@media (min-width: 768px) {
  .widget-autor__image-container {
    margin-bottom: 20px;
  }
}

.widget-autor__avatar {
  position: absolute;
  left: 50%;
  margin-left: -45px;
  bottom: -45px;
  -webkit-box-shadow: 0 0 0 8px #fff;
  box-shadow: 0 0 0 8px #fff;
  border-radius: 50%;
  z-index: 2;
}

.widget-autor__avatar--blurred {
  overflow: hidden;
  height: 75px;
}

.widget-autor__avatar--blurred:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.widget-autor__avatar--blurred > img {
  width: 100%;
  height: auto;
  -webkit-filter: blur(2px);
  filter: blur(2px);
  -webkit-filter: url(img/blur.svg#blur);
          filter: url(img/blur.svg#blur);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  margin-top: -5%;
}

.widget-autor__content {
  text-align: left;
}

@media (min-width: 768px) {
  .widget-autor__content {
    margin-bottom: 45px;
  }
}

.widget-autor__content p {
  font-family: Georgia,serif;
  font-size: 18px;
  color: #40454a;
}

.widget-autor__content h4 {
  margin: -20px 0 15px 0;
}

@media (min-width: 768px) {
  .widget-autor__content h4 {
    margin: 25px 0 30px;
  }
}

.widget-author {
  text-align: center;
  overflow: hidden;
}

.widget-author h4 {
  margin-bottom: 10px;
}

.widget-author p {
  color: #9a9a90;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 30px;
  font-family: "Open Sans",sans-serif;
}

.widget-author__image-container {
  position: relative;
  margin-bottom: 45px;
}

@media (min-width: 768px) {
  .widget-author__image-container {
    margin-bottom: 20px;
  }
}

.widget-author__avatar {
  position: absolute;
  left: 50%;
  margin-left: -45px;
  bottom: -45px;
  -webkit-box-shadow: 0 0 0 8px #fff;
  box-shadow: 0 0 0 8px #fff;
  border-radius: 50%;
  z-index: 2;
}

.widget-author__avatar--blurred {
  overflow: hidden;
  height: 75px;
}

.widget-author__avatar--blurred:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.widget-author__avatar--blurred > img {
  width: 100%;
  height: auto;
  -webkit-filter: blur(2px);
  filter: blur(2px);
  -webkit-filter: url(img/blur.svg#blur);
          filter: url(img/blur.svg#blur);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  margin-top: -5%;
}

.widget-author__content {
  text-align: left;
}

@media (min-width: 768px) {
  .widget-author__content {
    margin-bottom: 45px;
  }
}

.widget-author__content p {
  font-family: Georgia,serif;
  font-size: 18px;
  color: #40454a;
}

.widget-author__content h4 {
  margin: -20px 0 15px 0;
}

@media (min-width: 768px) {
  .widget-author__content h4 {
    margin: 25px 0 30px;
  }
}

.widget-featured-post h4 {
  margin: 9px 0 3px;
}

.widget-featured-post p {
  color: #9a9a90;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 30px;
  font-family: "Open Sans",sans-serif;
}

.widget-featured-post img {
  border-radius: 3px;
}

.widget-categories {
  font-family: Lato,sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.widget-categories ul {
  list-style: none;
  padding: 0;
  background-color: #f3f4f4;
  border: 1px solid #dfe2e4;
  border-radius: 3px;
}

.widget-categories ul li {
  position: relative;
}

.widget-categories ul li a {
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
  padding: 15px 20px;
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #dfe2e4;
}

.widget-categories ul li a:after {
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
  position: absolute;
  content: "\e080";
  font-family: "Glyphicons Halflings";
  font-weight: 400;
  color: #c6c7c2;
  right: 20px;
}

.widget-categories ul li a:hover:after {
  color: #9a9a90;
}

.widget-categories ul li:last-child a {
  border-bottom: 0;
}

.widget-categories .widget-categories__text {
  color: #9a9a90;
}

.widget-posts {
  font-family: Lato,sans-serif;
  font-weight: 700;
}

.widget-posts .nav-tabs {
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  margin-bottom: 20px;
}

.widget-posts .nav-tabs > li {
  border-right: 1px solid #e0e0e0;
  width: 50%;
  text-align: center;
  -webkit-box-shadow: 0 1px 1px -1px #e0e0e0;
  box-shadow: 0 1px 1px -1px #e0e0e0;
}

.widget-posts .nav-tabs > li.active, .widget-posts .nav-tabs > li:hover {
  -webkit-box-shadow: 0 0 3px #e0e0e0 inset;
  box-shadow: 0 0 3px #e0e0e0 inset;
}

.widget-posts .nav-tabs > li.active > a, .widget-posts .nav-tabs > li:hover > a {
  color: #51ab6d;
  background-color: #f8f9fa;
  border: 0;
  margin: 1px;
}

.widget-posts .nav-tabs > li:last-child {
  border-right: 0;
}

.widget-posts .nav-tabs > li a {
  color: #9a9a90;
  margin: 0;
}

.widget-posts .nav-tabs > li a:hover {
  color: #51ab6d;
  background: #f8f9fa;
  border: 0;
  margin: 1px;
}

.widget-posts img {
  float: left;
  margin-right: 15px;
  border-radius: 3px;
}

.widget-posts h5 {
  font-size: 14px;
  font-family: "Open Sans",sans-serif;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 10px;
}

.widget-posts .widget-posts__time {
  font-family: Lato,sans-serif;
  color: #9a9a90;
}

.widget-recent-comments ul {
  list-style: none;
  padding: 0;
  color: #9a9a90;
  font-family: Lato,sans-serif;
  font-weight: 700;
}

.widget-recent-comments ul li {
  border-top: 1px solid #e0e0e0;
  padding: 10px 0;
}

.widget-recent-comments ul li a {
  font-family: "Open Sans",sans-serif;
  border: 0;
}

.widget-tags hr {
  margin-bottom: 15px;
}

.widget-banner img {
  border-radius: 3px;
  border: 1px solid #e4e4e4;
}

#likebox-wrapper * {
  width: 100% !important;
}

.widget-facebook iframe {
  border: 0;
  overflow: hidden;
  height: 260px;
}

.widget-contact hr {
  margin-bottom: 15px;
}

.widget-contact__title {
  font-family: Lato,sans-serif;
  color: #51ab6d;
}

.widget-contact__text {
  font-family: "Open Sans",sans-serif;
  font-size: 14px;
  color: #9a9a90;
}

.widget-navigation hr {
  margin-bottom: 15px;
}

.widget-navigation .navigation li {
  float: none;
}

.widget-navigation .navigation li a {
  font-weight: 400;
  color: #51ab6d;
  padding: 5px 0;
  text-transform: none;
  border: 0;
  font-family: Lato,sans-serif;
  font-size: 14px;
}

.widget-navigation .navigation li a:hover {
  color: #418857;
}

.widget-navigation .navigation li a:after {
  display: none;
}

.irow {
  margin-bottom: 10px;
  border: 0px solid #DDD;
}

.align-vertical {
  vertical-align: middle;
}

/* Align vertically a column */
.v-align {
  float: none;
  display: inline-block;
  vertical-align: middle;
}

.fitspace {
  padding: 0px;
  margin: 0px;
}

.fitspace:first-child {
  padding-left: 0px;
  margin: 0px;
}

.fitspace:last-child {
  padding-right: 0px;
  margin: 0px;
}

.fitbotspace {
  padding: 10px;
  padding-bottom: 20px;
  margin: 0px;
}

.fitbotspace:first-child {
  padding-left: 0px;
  padding-bottom: 20px;
  margin: 0px;
}

.fitbotspace:last-child {
  padding-right: 0px;
  padding-bottom: 20px;
  margin: 0px;
}

@media (max-width: 767px) {
  .fitbotspace {
    padding: 0px;
    padding-bottom: 30px;
    margin: 0px;
  }
  .fitbotspace:first-child {
    padding: 0px;
    padding-bottom: 30px;
    margin: 0px;
  }
  .fitbotspace:last-child {
    padding: 0px;
    padding-bottom: 30px;
    margin: 0px;
  }
}

.dist-top-1 {
  margin-top: 1px;
  min-height: 1px;
}

.dist-top-2 {
  margin-top: 2px;
  min-height: 2px;
}

.dist-top-3 {
  margin-top: 3px;
  min-height: 3px;
}

.dist-top-4 {
  margin-top: 4px;
  min-height: 4px;
}

.dist-top-5 {
  margin-top: 5px;
  min-height: 5px;
}

.dist-top-6 {
  margin-top: 6px;
  min-height: 6px;
}

.dist-top-10 {
  margin-top: 10px;
  min-height: 10px;
}

.dist-top-12 {
  margin-top: 12px;
  min-height: 12px;
}

.dist-top-20 {
  margin-top: 20px;
  min-height: 20px;
}

.dist-top-40 {
  margin-top: 40px;
  min-height: 40px;
}

.space-bot-10 {
  margin: 0px;
  padding: 0px;
  height: 10px;
  min-height: 10px;
  display: block;
}

.dist-bot-5 {
  padding-bottom: 5px;
}

.dist-bot-10 {
  padding-bottom: 10px;
}

.dist-bot-20 {
  padding-bottom: 20px;
}

.dist-bot-60 {
  padding-bottom: 60px;
}

.dist-right-60 {
  padding-right: 60px;
}

.block-message {
  padding-top: 10px;
  font-family: 'Bad Script', cursive;
  font-size: 1.4em;
  font-weight: 800;
  text-align: justify;
  line-height: 1.1em;
  color: #ff0000;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.hline {
  width: 100%;
  height: 2px;
  background: #cdcf21;
}

.formconstrain {
  padding-right: 10px;
  padding-left: 10px;
}

input[type="password"]:focus,
.uneditable-input:focus {
  border-color: rgba(126, 239, 104, 0.8);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);
  outline: 0 none;
}

.picframe img {
  padding: 4px;
  margin: 0px;
  width: 100%;
  height: auto;
  /* border-radius: 4px; */
  border: 1px solid #CCC;
}

.picframe img a:hover {
  padding: 4px;
  margin: 0px;
  width: 100%;
  height: auto;
  /* border-radius: 4px; */
  border: 1px solid #005BDD;
}

.picsemframe img {
  border: 0px;
  padding: 0px;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .picsemframe img {
    border: 0px;
    padding: 4px;
    width: 75%;
    height: auto;
  }
}

.pic-crest img {
  float: left;
  padding: 0px;
}

.thumbnail {
  border-radius: 0px;
  padding: 10px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}

a.thumbnail:hover {
  border-color: #0088cc;
  background-color: #ddd;
}

.footerpicholder .thumbnail {
  padding: 5px;
}

.footerpicholder a.thumbnail:hover {
  border-color: red;
}

.boxtitleblue {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-top: 7px;
  padding-bottom: 5px;
  padding-right: 7px;
  width: 100%;
  background: #0136b6;
  border-top: 1px solid #005bdd;
  border-bottom: 1px solid #00013a;
  border-left: 1px solid #005bdd;
  border-right: 1px solid #00013a;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.boxtitleblue h1 {
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  margin: 0;
  color: #ffffff;
  font-style: normal;
  text-transform: uppercase;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.boxtitleblue h2 {
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  margin: 0;
  color: #ffffff;
  font-style: normal;
  text-transform: uppercase;
  text-align: left;
}

.boxtitleblue h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  margin: 0;
  color: #ffffff;
  font-style: normal;
  text-align: justify;
  padding-left: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.textn {
  padding-top: 10px;
  text-align: justify;
  color: #009;
}

.DatenewsBox {
  position: relative;
  /* make this relative to have the inner div absolute without breaking out */
  width: auto;
  /* fix the width or else it'll be the entire page's width */
  height: auto;
  margin: 0px;
  padding: 0px;
  border: 0px solid #0136b6;
  background-color: #fff;
}

.Datenews1-vis {
  position: absolute;
  padding: 3px 7px 3px 7px;
  left: 8;
  top: 8;
  margin-top: 4%;
  margin-left: 4%;
  background: #FFF;
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
  color: red;
  font-weight: bold;
  font-size: 1.1em;
  background-color: rgba(255, 255, 255, 0.75);
}

.Datenews1-inv {
  width: 100%;
  height: 0px;
  padding: 0px;
  margin: 0px;
  position: relative;
  background: #F00;
  overflow: hidden;
  /* Hide the text. */
  text-indent: 100%;
  white-space: nowrap;
}

.Datenews2-vis {
  font-size: 1.2em;
  color: red;
  font-size: 1.2em;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.Datenews2-inv {
  width: 100%;
  height: 0px;
  position: relative;
  background: #F00;
  overflow: hidden;
  /* Hide the text. */
  text-indent: 100%;
  white-space: nowrap;
}

.TNewsBox-Grid {
  margin-top: -10px;
  width: 100%;
  min-height: 75px;
  /* height: auto; */
  /* display: block; */
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}

.pad0 {
  padding: 0px;
}

.pad10 {
  padding: 10px;
}

.TNewsBox-Grid a {
  display: block;
  color: #0136B6;
  font-size: 1.0em;
  text-decoration: none;
  padding: 10px;
  border: 1px solid #ddd;
  min-height: 85px;
}

.TNewsBox-Grid a:hover {
  color: #0136B6;
  text-decoration: none;
  background: #eee;
  border: 1px solid #0088cc;
}

.TNewsBox-List {
  width: 100%;
  position: relative;
  display: block;
  font-weight: 600;
  color: #0136B6;
  padding-bottom: 5px;
  border-bottom: 2px solid #cdcf21;
  margin-bottom: 12px;
}

.TNewsBox-List .Title {
  display: block;
  color: #0136B6;
  font-size: 1.3em;
  line-height: 1.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.TNewsBox-List a {
  display: block;
  color: #0136B6;
  font-size: 1.3em;
  text-decoration: none;
}

.TNewsBox-List a:hover {
  color: #009feb;
  text-decoration: none;
}

.TextnewsBox {
  width: 100%;
  min-height: 100%;
  height: auto !important;
  position: relative;
  background: #9C6;
}

.TNewsBox .Title {
  display: block;
  color: #0136B6;
  font-size: 1.3em;
  line-height: 1.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.Textnews {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  height: auto !important;
  padding: 5px;
  font-weight: bold;
  font-size: 1.2em;
  background-color: rgba(55, 255, 255, 0.75);
  border-color: 1px #00C;
  border-radius: 4px;
}

.Textnews a {
  color: #00f;
}

.Textnews a:hover {
  color: #eb9b1d;
  background-color: rgba(205, 205, 205, 0.75);
}

.TOverviewBox {
  width: 100%;
  position: relative;
  display: block;
  font-size: 1.4em;
  font-weight: 500;
  color: #0136B6;
  padding-bottom: 5px;
  border-bottom: 2px solid #cdcf21;
  margin-bottom: 6px;
}

.list-group {
  padding-left: 0;
  margin-bottom: 5px;
  color: #012c95;
}

.list-group a:hover {
  border: 1px solid #005bdd;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 5px 10px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item-text {
  font-family: "Play", Arial, Helvetica, sans-serif;
  color: #012c95;
  font-size: 15px;
  font-weight: 500;
}

.list-group {
  padding-left: 0;
  margin-bottom: 5px;
  color: #012c95;
}

.list-group a:hover {
  border: 1px solid #005bdd;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 5px 10px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item-text {
  font-family: "Play", Arial, Helvetica, sans-serif;
  color: #012c95;
  font-size: 15px;
  font-weight: 500;
}

.isumvis {
  width: 100%;
  min-height: 100%;
  height: auto !important;
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
  /* background:#fff; */
}

.isuminv {
  width: 100%;
  height: 0px;
  position: relative;
  background: #F00;
  /* Hide the text. */
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.well-rm {
  /* display: block; */
  display: block;
  float: none;
  width: 100%;
  vertical-align: middle;
  padding-top: 4px;
  padding-left: 10px;
  padding-right: 4px;
  padding-bottom: 4px;
  border: 1px solid #cdcf21;
  background-color: #254e82;
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.4);
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.4);
}

.well-rm .title {
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  font-size: 1.5em;
  color: #ffffff;
  text-transform: uppercase;
  /* vertical-align: middle; */
}

.well-gold {
  display: block;
  padding: 5px;
  margin-top: 10px;
  border: 0px;
  border-bottom: 2px solid #FFF;
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  box-shadow: 0 1px 0px rgba(0, 105, 214, 0.25);
}

.well-gold .title {
  vertical-align: middle;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 2em;
  color: #005bdd;
  text-align: left;
}

/* ------------------------------------ */
.parent-element {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.element {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.social-btn {
  margin: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #005BDD;
  border-bottom: 1px solid #005BDD;
  vertical-align: top !important;
  font-size: 1px;
  margin-bottom: 10px;
}

.fb-like {
  top: 0px;
  left: 0px;
  margin: 0px;
  padding: 0px;
  vertical-align: top;
}

.twitter-share-button {
  margin-left: 10px;
  padding-left: 0px;
  padding-right: 0px;
  vertical-align: top !important;
}

.btn-lin {
  margin-left: 0px;
  display: inline-block;
}

.social-btn span {
  display: inline-block;
}

.page-wrap {
  min-height: 100%;
  /* equal to footer height */
  margin-bottom: -90px;
}

.page-wrap:after {
  content: "";
  display: block;
}

.page-wrap:after {
  height: 90px;
}

.site-footer {
  height: 90px;
}

.site-footer {
  background: orange;
}

.incletter {
  font-size: 1.6em;
}

.decletter {
  font-size: 0.7em;
}

.vspc-grid {
  min-height: 10px;
}

.vspc-list {
  min-height: 10px;
}

.vspc-newsart {
  min-height: 20px;
}

#map_secretariat {
  width: 100%;
  height: 400px;
}

#map_canvas {
  width: 100%;
  height: 400px;
}

.has-error {
  color: red;
}

.help-block {
  color: red;
}

.fill {
  min-height: 100%;
  height: 100%;
}

/* Background colors */
.bg-red,
.bg-yellow,
.bg-aqua,
.bg-blue,
.bg-light-blue,
.bg-green,
.bg-navy,
.bg-teal,
.bg-olive,
.bg-lime,
.bg-orange,
.bg-fuchsia,
.bg-purple,
.bg-maroon,
.bg-black {
  color: #f9f9f9 !important;
}

.bg-gray {
  background-color: #eaeaec !important;
}

.bg-black {
  background-color: #222222 !important;
}

.bg-red {
  background-color: #f56954 !important;
}

.bg-yellow {
  background-color: #f39c12 !important;
}

.bg-aqua {
  background-color: #00c0ef !important;
}

.bg-blue {
  background-color: #0073b7 !important;
}

.bg-light-blue {
  background-color: #3c8dbc !important;
}

.bg-green {
  background-color: #00a65a !important;
}

.bg-navy {
  background-color: #001f3f !important;
}

.bg-teal {
  background-color: #39cccc !important;
}

.bg-olive {
  background-color: #3d9970 !important;
}

.bg-lime {
  background-color: #01ff70 !important;
}

.bg-orange {
  background-color: #ff851b !important;
}

.bg-fuchsia {
  background-color: #f012be !important;
}

.bg-purple {
  background-color: #932ab6 !important;
}

.bg-maroon {
  background-color: #85144b !important;
}

/* Text colors */
.text-red {
  color: #f56954 !important;
}

.text-yellow {
  color: #f39c12 !important;
}

.text-aqua {
  color: #00c0ef !important;
}

.text-blue {
  color: #0073b7 !important;
}

.text-light-blue {
  color: #3c8dbc !important;
}

.text-green {
  color: #00a65a !important;
}

.text-navy {
  color: #001f3f !important;
}

.text-teal {
  color: #39cccc !important;
}

.text-olive {
  color: #3d9970 !important;
}

.text-lime {
  color: #01ff70 !important;
}

.text-orange {
  color: #ff851b !important;
}

.text-fuchsia {
  color: #f012be !important;
}

.text-purple {
  color: #932ab6 !important;
}

.text-maroon {
  color: #85144b !important;
}

/*Hide elements by display none only*/
.hide {
  display: none !important;
}

/* Remove borders */
.no-border {
  border: 0px !important;
}

/* Remove padding */
.no-padding {
  padding: 0px !important;
}

/* Remove margins */
.no-margin {
  margin: 0px !important;
}

/* Remove box shadow */
.no-shadow {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.timeline {
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0px;
  bottom: 0;
  width: 5px;
  background: #ddd;
  left: 45px;
  border: 1px solid #eee;
  margin: 0;
  border-radius: 2px;
}

.timeline > li {
  position: relative;
  margin-right: 10px;
  margin-bottom: 15px;
}

.timeline > li:before,
.timeline > li:after {
  display: table;
  content: " ";
}

.timeline > li:after {
  clear: both;
}

.timeline > li > .timeline-item {
  margin-top: 10px;
  border: 0px solid #dfdfdf;
  background: #fff;
  color: #555;
  margin-left: 60px;
  margin-right: 15px;
  padding: 5px;
  position: relative;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.timeline > li > .timeline-item > .time {
  color: #999;
  float: right;
  margin: 2px 0 0 0;
}

.timeline > li > .timeline-item > .timeline-header {
  margin: 0;
  color: #555;
  border-bottom: 1px solid #f4f4f4;
  padding: 5px;
  font-size: 16px;
  line-height: 1.1;
}

.timeline > li > .timeline-item > .timeline-header > a {
  font-weight: 600;
}

.timeline > li > .timeline-item > .timeline-body,
.timeline > li > .timeline-item > .timeline-footer {
  padding: 10px;
}

.timeline > li.time-label > span {
  font-weight: 600;
  padding: 5px;
  display: inline-block;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

.timeline > li > .fa,
.timeline > li > .glyphicon,
.timeline > li > .ion {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  width: 30px;
  height: 30px;
  font-size: 15px;
  line-height: 30px;
  position: absolute;
  color: #666;
  background: #eee;
  border-radius: 50%;
  text-align: center;
  left: 18px;
  top: 0;
}

/* PAGINATION */
.pagnbox {
  float: right;
}

.pagn {
  display: inline-block;
}

ul.pagn {
  margin: 0;
  margin-top: 10px;
  padding: 0;
  height: 100%;
  overflow: hidden;
  list-style-type: none;
  border: 0px solid #353535;
  max-width: 700px;
  font-size: 1.0em;
}

ul.pagn li.details {
  padding: 7px 10px 7px 10px;
}

ul.pagn li.dot {
  padding: 3px 0;
}

ul.pagn li {
  float: left;
  margin: 0px;
  padding: 0px;
  margin-left: 5px;
}

ul.pagn li:first-child {
  margin-left: auto;
}

ul.pagn li a {
  color: black;
  display: block;
  text-decoration: none;
  padding: 7px 10px 7px 10px;
}

ul.pagn li a img {
  border: none;
}

/* PAGINATION COLORS*/
ul.pagn li.details {
  color: #4862a3;
}

ul.pagn li a {
  border: solid 1px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  padding: 6px 9px 6px 9px;
}

ul.pagn li {
  padding-bottom: 1px;
}

ul.pagn li a:hover,
ul.pagn li a.active {
  color: #FFFFFF;
  box-shadow: 0px 1px #EDEDED;
  -moz-box-shadow: 0px 1px #EDEDED;
  -webkit-box-shadow: 0px 1px #EDEDED;
  text-shadow: 0px 1px #388DBE;
  border-color: #3390CA;
  background: #4862a3;
  background: -moz-linear-gradient(top, #B4F6FF 1px, #63D0FE 1px, #58B0E7);
  background: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.02, #B4F6FF), color-stop(0.02, #63D0FE), color-stop(1, #58B0E7));
}

ul.pagn li a {
  color: #0A7EC5;
  border-color: #8DC5E6;
  background: #F8FCFF;
}

/* CSS Document */
#content {
  width: 100%;
}

#pages {
  float: none;
}

.loadbox {
  height: 35px;
}

#loading {
  position: absolute;
  bottom: 5px;
}

#container .pagination {
  margin-top: 10px;
  margin-left: 15px;
  width: 100%;
  min-height: 35px;
}

#container .pagination ul li {
  display: block;
  height: 32px;
  width: 32px;
  float: left;
  border: 1px solid #3685be;
  border-radius: 3px;
  padding-top: 3px;
  margin: 2px 2px 2px 2px;
  font-family: arial;
  color: #3685be;
  text-align: center;
  font-weight: bold;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  /* box-shadow: inset 0px 1px 0px rgba(255,255,255, .8), 0px 1px 3px rgba(0,0,0, .1); */
  background-color: #f2f2f2;
}

#container .pagination ul li span {
  margin-top: 3px;
}

#container .pagination ul li:hover {
  color: #fff;
  /* background-color: #3685be; */
  background-color: #286090;
  cursor: pointer;
}

#container .pagination ul li.inactive,
#container .pagination ul li.inactive:hover {
  background-color: #ededed;
  color: #bababa;
  border: 1px solid #bababa;
  cursor: default;
}

#container .total {
  color: #3685be;
  font-size: 1em;
  text-transform: uppercase;
}

.box-top {
  background: #254e82;
  border: 0px solid #254e82;
  border-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding-bottom: 0;
}

.meta-top {
  position: relative;
  display: block;
  margin-bottom: 0;
  margin-bottom: 0;
  height: auto;
  margin: auto;
  z-index: 80;
  overflow: hidden;
}

.meta-top img {
  position: relative;
  top: 0;
  display: block;
  margin: auto;
  z-index: 81;
  height: auto;
}

.box-top-fg-box {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(64, 64, 64, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to bottom, rgba(64, 64, 64, 0) 80%, rgba(255, 255, 255, 0.3) 100%);
  padding-bottom: 10px;
  z-index: 81;
}

.box-top-bg-img {
  width: 100%;
  padding: 0;
  margin: 0;
}

.top_logo {
  width: 100%;
  padding-bottom: 5px;
  text-align: left;
}

.top_logo img {
  position: relative;
  top: 0;
  display: block;
  margin-left: -3px;
  z-index: 82;
  height: auto;
  width: 275px;
}

.top_title {
  width: 100%;
  font-weight: 700;
  font-size: 1.3em;
  margin-left: 0;
  text-align: left;
  line-height: 1.1em;
  color: #ffffff;
  text-shadow: 2px 2px 0px rgba(37, 78, 130, 0.9);
}

.rm_subtitulo {
  width: 100%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5em;
  text-align: left;
  line-height: 1.0em;
  color: #fff;
  text-shadow: 2px 2px 1px #254e82;
}

@media (min-width: 480px) {
  .top_logo img {
    width: 350px;
    padding-bottom: 1px;
  }
  .top_title {
    font-size: 1.4em;
    line-height: 1.1em;
  }
}

@media (min-width: 768px) {
  .top_logo img {
    width: 425px;
    padding-bottom: 1px;
  }
  .top_title {
    font-size: 1.6em;
    line-height: 1.2em;
  }
}

.navbarbgbox {
  position: relative;
  top: 0;
  overflow: hidden;
  background: #254e82;
  z-index: 79;
}

.navbarbgbox img {
  position: relative;
  top: 0;
  display: block;
  margin: auto;
  z-index: 80;
}

.navbarbox {
  position: relative;
  bottom: 150px;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #999;
  z-index: 81;
}

.rm_logo {
  margin: 0;
  z-index: 82;
}

.rm_logo img {
  border: 0;
  margin-top: 0;
  margin-left: -20px;
  margin-right: -5px;
  height: 100px;
  z-index: 83;
}

.tit_revista {
  position: relative;
  margin-top: 0px;
  line-height: 1.0em;
  padding: 0;
  font-size: 1.1em;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 3px 2px 2px rgba(14, 34, 84, 0.9);
}

@media (min-width: 480px) {
  .navbarbox {
    height: 125px;
  }
  .navbarbgbox {
    height: 125px;
  }
  .rm_logo img {
    width: 350px;
  }
  .tit_revista {
    font-size: 1.3em;
    margin-top: -2px;
  }
}

@media (min-width: 768px) {
  .navbarbox {
    height: 150px;
  }
  .navbarbgbox {
    height: 150px;
  }
  .rm_logo img {
    width: 450px;
  }
  .tit_revista {
    font-size: 1.6em;
    margin-top: 5px;
  }
}

.padd {
  padding: 10px;
}

.sky {
  position: relative;
  width: 100%;
  background: #ffffff url("../img/sky.jpg") no-repeat top;
  padding: 0px;
  margin: 0px;
}

.navbar-default {
  min-height: 38px;
  background-color: #254e82;
  border-color: #007bbe;
  border: 0;
  border-bottom: 1px solid #cdcf21;
  border-radius: 0;
  text-shadow: 1px 1px 0px rgba(0, 105, 214, 0.5);
  margin-bottom: 0;
}

.navbar-default .navbar-brand {
  color: #c1c2c3;
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #ffffff;
}

.navbar-default .navbar-text {
  color: #c1c2c3;
}

.navbar-default .navbar-nav > li > a {
  color: #c1c2c3;
  line-height: 28px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  padding-right: 6px !important;
  padding-left: 6px !important;
  font-weight: 500;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #ffffff;
}

.navbar-default .navbar-nav > li > .dropdown-menu {
  background-color: #254e82;
}

.navbar-default .navbar-nav > li > .dropdown-menu > li > a {
  color: #c1c2c3;
  line-height: 28px;
}

.navbar-default .navbar-nav > li > .dropdown-menu > li > a:hover, .navbar-default .navbar-nav > li > .dropdown-menu > li > a:focus {
  color: #ffffff;
  background-color: #007bbe;
}

.navbar-default .navbar-nav > li > .dropdown-menu .divider {
  background-color: #007bbe;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #ffffff;
  background-color: #007bbe;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  color: #ffffff;
  background-color: #007bbe;
}

.navbar-default .navbar-toggle {
  border-color: #007bbe;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #007bbe;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #c1c2c3;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #c1c2c3;
}

.navbar-default .navbar-link {
  color: #c1c2c3;
}

.navbar-default .navbar-link:hover {
  color: #ffffff;
}

.navbar-default .navbar-nav > li > .active {
  color: #FFFFFF;
  font-weight: 600;
}

.navbar .nav > li:first-child > a, .navbar .nav > li:first-child > a:hover, .navbar .nav > li:first-child > a:focus {
  margin-top: 0px;
  margin-left: -20px;
  padding-top: 5px !important;
}

@media (max-width: 768px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #c1c2c3;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #ffffff;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #ffffff;
    background-color: #007bbe;
  }
  .navbar .nav > li:first-child > a, .navbar .nav > li:first-child > a:hover, .navbar .nav > li:first-child > a:focus {
    padding-left: 0;
    margin-left: 0;
  }
}

.navbar-default.affix {
  position: fixed;
  z-index: 10000;
  top: 0;
  width: 100%;
}

.breadcrumb {
  padding: 2px 2px;
  margin-bottom: 2px;
  list-style: none;
  background-color: transparent;
  border-radius: 3px;
  font-weight: 700;
}

.breadcrumb > li {
  display: inline-block;
}

.breadcrumb > li + li:before {
  content: "| ";
  padding: 0 5px;
  color: #254e82;
}

.breadcrumb > .active {
  color: #fd2e42;
}

/*
.widget_posts { float: left; }
.widget_posts ul { margin: 0; padding: 0; list-style:none; }
.widget_posts ul li { float: left; width: 100%; border-bottom: 1px solid #d5d5d5; padding-top:5px; padding-bottom: 5px; }
.widget_posts ul li a { text-transform: uppercase; color: #CCC}
.widget_posts ul li a:hover { color: #cdcf21; }
.widget_posts ul li span { font-weight: 500; margin-right: 5px; }
.widget_posts ul li:last-child { border-bottom: 0; padding-bottom: 0; border-right: 0;}
*/
/* Posts */
/*
.widget_text { float: left;  }
.widget_textpic { float: right;  }
.widget_textpic a { color: #CCC;  }
.widget_textpic a:hover { color: #cdcf21;  }
*/
.footer1stbloc {
  width: 100%;
  left: 0;
  margin-left: 0;
  margin-top: 0;
  background: #0a5ba7;
  padding: 0px;
  padding-top: 30px;
  padding-bottom: 0px;
  margin-bottom: 0;
  border-top: 3px solid #005bde;
  border-bottom: 3px solid #cdcf21;
}

.footerpic {
  width: 100%;
  left: 0;
  margin-left: 0;
  padding: 0px;
  margin: 0;
}

.footertitle {
  text-align: center;
  color: #e2da41;
  font-size: 18px;
  font-weight: 800;
  margin-top: 0px;
  text-transform: uppercase;
}

.footer_distance {
  margin-top: 0.5em;
  min-height: 10px;
}

.subfooterbox {
  width: 100%;
  min-height: 90px;
  height: auto;
  left: 0;
  margin-left: 0;
  padding: 0px;
  background: #132944;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 2px solid #cdcf21;
}

.subfooterbox a {
  color: #fff;
}

.subfooterbox a:hover {
  color: #d8d8d8;
}

.subfooterbox .lefttext {
  text-align: left;
  padding-top: 4px;
  color: #999;
}

.subfooterbox .sublefttext {
  font-size: 0.8em;
}

.subfooterbox .centertext {
  text-align: center;
  padding-top: 4px;
}

.subfooterbox .righttext {
  text-align: right;
}

.subfooterbox .spacer {
  padding-right: 15px;
}

/*
.emfaddress  {
  color: #ccc;
}
.emfaddress a { color: #ccc; }
.emfaddress a:hover { color: #bcbe21; }
.emfaddress .phone { float: left; background: url('../resources/images/icons/phone.png') no-repeat center left; padding-left: 25px; margin-right: 30px; }
.emfaddress .email { float: left; background: url('../resources/images/icons/mail.png') no-repeat center left; padding-left: 25px; margin-right: 30px; }
.emfaddress .flag { float: left; background: url('../resources/images/icons/flag.png') no-repeat center left; padding-left: 25px; margin-right: 0px; }

*/
.sitemapbox {
  text-align: left;
  height: auto;
  left: 0;
  margin-left: 0;
  padding-top: 10px;
  padding-bottom: 40px;
  background: #132944;
}

.sitemapbordertop {
  border-top: 1px solid #337ab7;
}

ul.sitemap li {
  padding-top: 10px;
  width: 200px;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  font-weight: 700;
  color: #337ab7;
  /* For IE 7 */
  *display: inline;
  *zoom: 1;
}

@media (max-width: 480px) {
  .sitemap li {
    width: 480px;
  }
}

ul.sitemap li a {
  margin-top: 0px !important;
}

ul.sitemap li ul li {
  padding-top: 3px;
  clear: none;
  float: none;
  list-style: none outside none;
}

ul.sitemap li ul li a {
  text-transform: none;
  font-weight: normal !important;
  margin-top: 0 !important;
  text-decoration: none;
  color: #aaa;
}

ul.sitemap li ul li a:hover {
  color: #fff;
}

/*

.sitemap ul {
  display: inline-block;
}

.sitemap li a {
  color: $text-color;
  display: block;
  float: left;
  font-size: 1em;
  line-height: 1.4em;
  margin-left: 0px;
  width: 100%;
  text-decoration: none;
}

.sitemap > li:first-child > a, .sitemap > li:first-child > a:hover, .sitemap > li:first-child > a:focus
{
	margin-top: 0px;
	margin-left: 0px;
	padding-top: 5px !important;
	color: $text-over-footer;
}

ul.sitemap li {
    list-style: none outside none;
	text-transform: uppercase;
	font-weight: 700;
	color: $text-over-footer;
}

ul.sitemap li a {
    margin-top: 0px !important;	
}

ul.sitemap > li{
    float:left;
    margin-right:1.3em;
    min-height:11em;
}

@media (max-width: $screen-xs) {
	.sitemap > li:first-child > a, .sitemap > li:first-child > a:hover, .sitemap > li:first-child > a:focus
	{
		margin-top: 0px;
		margin-left: 0px;
		padding-top: 5px !important;
	}
	ul.sitemap > li:first-child{
		min-height:1em;
	}
}

ul.sitemap li ul li {
    clear: none;
    float: none;
    list-style: none outside none;
}
ul.sitemap li ul li a, ul.sitemap li ul li ul li a, ul.sitemap li ul li ul li ul li a {
    text-transform: none;
	font-weight: normal !important;
    margin-top: 0 !important;
	text-decoration: none;
}


*/
/*
.sitemap {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap > li {
  border: 1px solid rgba(37,78,130,0.2);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px; 
  margin: 0 0 1em 0;
}

.sitemap > li:hover {
  border: 1px solid rgba(37,78,130,1);
}

.sitemap > li > a:link, 
.sitemap > li > a:visited {
  background-color: rgba(19,41,68,0.1);
  color: rgb(0,0,0);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  padding: 0.3em;
  padding-left: 0.75em
}

.sitemap > li:hover > a:link, 
.sitemap > li:hover > a:visited {
  background-color: rgba(37,78,130,1);
  color: rgb(255,255,255);
}

.sitemap ul {
  margin: 1em 0 1em 0;
  padding: 0;
  list-style: none;
  line-height: 1.8;
}

.sitemap ul ul {
  margin: 0.5em 0 0.5em 0;
}

.sitemap ul a:link, 
.sitemap ul a:visited {
  padding: 0.75em;
  text-decoration: none;
  //color: rgb(69,80,83);
  color: rgb(37,78,130);
}

.sitemap ul ul a:link:before, 
.sitemap ul ul a:visited:before {
  content: "> ";
}
*/
/* ==================================================
  Fonts
  ================================================== */
.carousel_titulo {
  font-size: 1.3em;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;
  margin-top: 0px;
  padding-top: 0px;
  padding-bottom: 5px;
}

.carousel_texto {
  font-size: 1.0em;
  color: white;
  text-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 2px darkblue;
  margin-top: 0px;
  padding-top: 0px;
  padding-bottom: 5px;
}

.dest_title {
  font-size: 1.7em;
  font-weight: 600;
  color: #254e82;
  /* text-shadow: 1px 1px 2px black, 0 0 4px blue, 0 0 2px darkblue; */
  margin-top: 0px;
  padding-top: 0px;
  padding-bottom: 5px;
}

.text3D {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  text-transform: uppercase;
  font-family: verdana;
  font-size: 12em;
  font-weight: 700;
  color: #f5f5f5;
  text-shadow: 1px 1px 1px #919191, 1px 2px 1px #919191, 1px 3px 1px #919191, 1px 4px 1px #919191, 1px 5px 1px #919191, 1px 6px 1px #919191, 1px 7px 1px #919191, 1px 8px 1px #919191, 1px 9px 1px #919191, 1px 10px 1px #919191, 1px 18px 6px rgba(16, 16, 16, 0.4), 1px 22px 10px rgba(16, 16, 16, 0.2), 1px 25px 35px rgba(16, 16, 16, 0.2), 1px 30px 60px rgba(16, 16, 16, 0.4);
}

/* ==================================================
  Buttons
  ================================================== */
/*  
.btn {
	font-size: 0.9em;
}
*/
.btn-outline {
  background-color: transparent;
  color: inherit;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.btn-ih.btn-outline {
  color: #428bca;
}

.btn-primary.btn-outline {
  color: #254e82;
  border: 2px solid #254e82;
  border-radius: 0px;
}

.btn-success.btn-outline {
  color: #5cb85c;
}

.btn-info.btn-outline {
  color: #5bc0de;
}

.btn-warning.btn-outline {
  color: #f0ad4e;
}

.btn-danger.btn-outline {
  color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
  color: #fff;
}

.btn-custom {
  background-color: transparent;
  border-color: #ffffff;
  border-radius: 0px;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 1.0em;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active,
.btn-custom.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #254e82;
}

.btn-custom.disabled:hover,
.btn-custom.disabled:focus,
.btn-custom.disabled:active,
.btn-custom.disabled.active,
.btn-custom[disabled]:hover,
.btn-custom[disabled]:focus,
.btn-custom[disabled]:active,
.btn-custom[disabled].active,
fieldset[disabled] .btn-custom:hover,
fieldset[disabled] .btn-custom:focus,
fieldset[disabled] .btn-custom:active,
fieldset[disabled] .btn-custom.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #254e82;
}

/* ==================================================
  Mycarousel
  ================================================== */
.carousel {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 75px;
  background-color: #254e82;
}

/*  
.carousel-inner{
	overflow: visible;
}

.carousel-caption {
	padding-right: 0px;
	padding-left: 0px;
	margin-right: 0px;
	margin-left: 0px;
	bottom: -80px; 
	color: #fff;
    z-index: 2000;
}
 
.carousel-indicators {
	bottom: -10px;
	padding: 10px;
    }

.carousel-indicators li {
    }

.upup {
    margin-top: +14px;
}
*/
.myslide .carousel-control {
  width: 40px;
  font-size: 40px;
  color: #fff;
  text-shadow: none;
  text-align: center;
  -webkit-filter: none;
          filter: none;
  opacity: 1;
  z-index: 21;
}

.myslide .carousel-control span {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  width: 100%;
  text-align: left;
  display: block;
}

.myslide .carousel-caption {
  margin-top: 20px;
  margin-bottom: 20px;
  height: auto;
  background: #005C97;
  background: rgba(0, 92, 151, 0.7);
  text-align: left;
  padding: 20px;
  padding-top: 10px;
  z-index: 20;
}

@media (max-width: 768px) {
  .carousel_titulo {
    font-size: 1.1em;
    font-weight: 500;
    color: white;
    text-shadow: 1px 1px 2px black, 0 0 5px blue, 0 0 2px darkblue;
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 5px;
  }
  .d-block {
    min-height: 130px;
    width: 100%;
  }
  .myslide .carousel-caption {
    margin: 0;
    width: 100%;
    height: 115px;
    position: relative;
    top: 0px;
    left: 0px;
    padding-top: 5px;
    padding-left: 15px;
    padding-right: 15px;
    background: transparent;
    background: #005C97;
  }
}

@media (min-width: 768px) {
  .myslide .carousel-caption {
    width: 726px;
    position: absolute;
    left: 50%;
    top: 0px;
    bottom: 0;
    /* padding: 20px 0; */
    margin-left: -363px;
  }
}

@media (min-width: 992px) {
  .myslide .carousel-caption {
    width: 946px;
    position: absolute;
    left: 50%;
    top: 0px;
    bottom: 0;
    /* padding: 20px 0; */
    margin-left: -473px;
  }
}

@media (min-width: 1200px) {
  .myslide .carousel-caption {
    width: 570px;
    margin-left: -570px;
  }
}

.myslide .carousel {
  width: 100%;
  margin: 0 auto;
  /* center your carousel if other than 100% */
  padding-bottom: 0px;
}

.myslide .carousel-indicators {
  bottom: -10px;
  padding: 10px;
}

/* ==================================================
  Search
  ================================================== */
/*# sourceMappingURL=bootstrap-rm.css.map */