/* -------------------------------------------------------------
  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)

------------------------------------------------------------- */
/*
@mixin font-face($fontFamily: myFont, $eotFileSrc: 'myFont.eot', $woffFileSrc: 'myFont.woff', $ttfFileSrc: 'myFont.ttf', $svgFileSrc: 'myFont.svg', $svgFontID: '#myFont') {
  font-family: $fontFamily;
  src: url($eotFileSrc)  format('eot'),
       url($woffFileSrc) format('woff'),
       url($ttfFileSrc)  format('truetype'),
       url($svgFileSrc + $svgFontID) format('svg');
}*/
body {
  color: #585858;
  font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif; }

h2,
h1 {
  font-size: 24px; }

table thead {
  background-color: #070650;
  color: #FFFFFF; }
table tr.even, table tr.odd {
  background-color: #f4f4f4; }

#logo-row {
  padding-top: 17px;
  padding-bottom: 12px; }

.main-menu-wrap {
  background-color: #070650;
  color: #FFFFFF;
  text-transform: uppercase; }
  .main-menu-wrap a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600; }
  .main-menu-wrap #main-menu {
    margin-bottom: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around; }
    .main-menu-wrap #main-menu li {
      padding: 18px 0px 12px;
      font-weight: 400;
      font-size: 18px;
      display: inline-block; }
      .main-menu-wrap #main-menu li.active, .main-menu-wrap #main-menu li.active-trail {
        background-color: #ffcd00; }
        .main-menu-wrap #main-menu li.active a.active, .main-menu-wrap #main-menu li.active-trail a.active {
          color: #070650; }

.btn-default {
  background: #070650;
  text-shadow: 0 0 0;
  color: #FFFFFF;
  border: 0px solid transparent; }

.navbar-toggle {
  padding: 7px;
  margin: 0 0 0 11px;
  background: #070650; }
  .navbar-toggle .icon-bar {
    background-color: #FFFFFF; }

#carousel-hover {
  position: relative;
  margin-top: -65px;
  z-index: 10;
  display: none; }

.front #carousel-hover {
  display: block; }

table {
  width: 100%; }
  table td, table th {
    padding: 5px 10px; }

/* Fade transition for carousel items */
.carousel .item {
  left: 0 !important;
  -webkit-transition: opacity 1s;
  /*adjust timing here */
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s; }

.carousel-control {
  background-image: none !important;
  /* remove background gradients on controls */ }

/* Fade controls with items */
.next.left,
.prev.right {
  opacity: 1;
  z-index: 1; }

.active.left,
.active.right {
  opacity: 0;
  z-index: 2; }

.region-footer #block-system-main-menu {
  background: #070650 url("../img/footerbg.png") bottom center no-repeat;
  background-size: contain;
  padding-top: 42px;
  padding-bottom: 75px;
  margin-top: 30px;
  color: #FFFFFF; }
  .region-footer #block-system-main-menu a {
    color: #FFFFFF; }
  .region-footer #block-system-main-menu li,
  .region-footer #block-system-main-menu ul {
    list-style: none inside none; }
  .region-footer #block-system-main-menu .menu .menu .menu {
    display: none; }

.view-cover img {
  max-width: 100%;
  width: 100%; }

.field-name-share {
  line-height: 34px;
  background-color: #f4f4f4;
  margin-top: 2em;
  margin-bottom: 15px;
  overflow: hidden; }
  .field-name-share a.print, .field-name-share ul {
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 0;
    border-right: 5px solid #FFFFFF; }
  .field-name-share a {
    color: #585858; }
    .field-name-share a .glyphicon {
      margin-right: 5px; }

.social {
  zoom: .9;
  margin-left: 0px;
  margin-bottom: 0px; }
  .social li {
    padding-left: 1px;
    padding-right: 1px;
    text-indent: 9000px; }
    .social li.intro {
      text-indent: 0px;
      padding-left: 10px; }
    .social li a {
      position: relative; }
  .social .fb, .social .tw, .social .gp {
    display: block;
    width: 20px;
    height: 34px;
    background-image: url("../img/social.png");
    background-repeat: no-repeat;
    background-position: top left; }
  .social .tw {
    background-position: -39px 0; }
  .social .gp {
    background-position: -78px 0; }

.breadcrumbs {
  font-size: 12px;
  margin-bottom: 6px;
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 5px solid #ffca06; }
  .breadcrumbs a {
    color: #585858; }

.page-header {
  margin-top: 0; }

.region-footer .block-menu .content > .menu > li {
  margin-bottom: 1em !important;
  display: inline-block;
  min-height: 175px; }
  .region-footer .block-menu .content > .menu > li > a {
    font-size: 1.5em; }

.region-footer .block-menu ul, .region-footer .block-menu li,
.menu-block-1 ul,
.menu-block-1 li {
  list-style: none inside none !important;
  margin: 0 !important;
  padding: 0; }
.region-footer .block-menu .container > .menu .col-sm-4,
.menu-block-1 .container > .menu .col-sm-4 {
  padding-right: 15px;
  padding-left: 15px; }

.in-evidenza,
.banner {
  padding: 8px;
  background: #f4f4f4;
  text-align: center;
  border-bottom: 2px solid #FFFFFF;
  display: block;
  border-top: 4px solid #070650;
  margin-top: 1em;
  color: #585858;
  font-weight: 600; }

.banner {
  border: 1px solid #585858; }

.menu-block-1 li {
  padding: 8px;
  background: #f4f4f4;
  border-bottom: 2px solid #FFFFFF; }
  .menu-block-1 li a {
    color: #585858;
    font-weight: 600; }
  .menu-block-1 li.active-trail, .menu-block-1 li.active {
    position: relative;
    background: #4eb3dd; }
    .menu-block-1 li.active-trail .menu li, .menu-block-1 li.active .menu li {
      background: transparent; }
      .menu-block-1 li.active-trail .menu li a.active-trail.active, .menu-block-1 li.active .menu li a.active-trail.active {
        font-weight: 800; }
    .menu-block-1 li.active-trail:after, .menu-block-1 li.active:after {
      left: 100%;
      top: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-color: rgba(0, 157, 224, 0);
      border-left-color: #4eb3dd;
      border-width: 10px;
      margin-top: -10px; }
    .menu-block-1 li.active-trail a, .menu-block-1 li.active a {
      color: #FFFFFF; }
  .menu-block-1 li .menu {
    margin-left: 15px !important; }
    .menu-block-1 li .menu li.active-trail:after, .menu-block-1 li .menu li.active:after {
      border-width: 0px; }
    .menu-block-1 li .menu li.last {
      border-width: 0px; }
    .menu-block-1 li .menu a {
      font-weight: 400; }

.front #home-center .pane-block .pane-title {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 10px; }
.front #home-center .pane-block .second-container {
  background: #f4f4f4;
  padding: 20px; }
.front #home-center .pane-block.pane-views-news-block-2 .second-container {
  padding: 0 20px; }
  .front #home-center .pane-block.pane-views-news-block-2 .second-container .bottom {
    padding: 15px 0px; }
.front .pane-block.pane-views-news-block-1 .pane-content .node {
  margin-bottom: 30px; }
.front .pane-block .pane-node .pane-content .node h2 a,
.front .pane-block .pane-node .pane-content .node h2,
.front .pane-block .pane-content .second-container h2 a,
.front .pane-block .pane-content .second-container h2 {
  font-size: 18px;
  color: #070650;
  margin-top: 0; }
.front .pane-block .pane-node .pane-content .node img,
.front .pane-block .pane-content .second-container img {
  width: 100%; }
.front .pane-block .pane-node .pane-content .node .open .event-wrap,
.front .pane-block .pane-content .second-container .open .event-wrap {
  position: relative; }
.front .pane-block .pane-node .pane-content .node .open .event-wrap:after,
.front .pane-block .pane-content .second-container .open .event-wrap:after {
  content: " ";
  border: solid transparent;
  border-top-color: #4eb3dd;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-width: 10px;
  left: 50%;
  bottom: -30px;
  margin-left: -10px; }
.front .pane-block .pane-node .pane-content .node .open .event-label:hover .event-wrap:after,
.front .pane-block .pane-content .second-container .open .event-label:hover .event-wrap:after {
  border-top-color: rgba(78, 179, 221, 0.3); }
.front .pane-block .pane-node .pane-content .node .open .event-label,
.front .pane-block .pane-content .second-container .open .event-label {
  background: #4eb3dd;
  margin: 0 -20px;
  padding: 10px 0;
  color: #FFFFFF; }
  .front .pane-block .pane-node .pane-content .node .open .event-label h2,
  .front .pane-block .pane-content .second-container .open .event-label h2 {
    color: #FFFFFF; }
.front .pane-block .pane-node .pane-content .node .event-label:hover,
.front .pane-block .pane-content .second-container .event-label:hover {
  background: rgba(78, 179, 221, 0.3); }
.front .pane-block .pane-node .pane-content .node .event-label,
.front .pane-block .pane-content .second-container .event-label {
  margin: 0 -20px;
  cursor: pointer;
  padding: 10px 0; }
  .front .pane-block .pane-node .pane-content .node .event-label .col-sm-2,
  .front .pane-block .pane-content .second-container .event-label .col-sm-2 {
    padding-left: 5px !important;
    padding-right: 5px !important; }
  .front .pane-block .pane-node .pane-content .node .event-label h2,
  .front .pane-block .pane-content .second-container .event-label h2 {
    margin-bottom: 0; }
.front .pane-node .pane-content .node h2 {
  margin: 0 !important; }
.front #node-4 h2 {
  display: none; }
.front #home-bottom {
  margin-top: 90px; }
.front .giallo {
  background-image: url("../img/microscopio.png"); }
.front .verdec {
  background-image: url("../img/mano.png"); }
.front .verdes {
  background-image: url("../img/albero.png"); }
.front .petrolio {
  background-image: url("../img/casa.png"); }
.front .giallo,
.front .verdec,
.front .verdes,
.front .petrolio {
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-top: 10px;
  padding-bottom: 125px;
  text-align: center;
  min-height: 23em;
  cursor: pointer; }
.front .region-footer #block-system-main-menu {
  margin-top: 0px; }

.language-switcher-locale-url {
  line-height: 31px;
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }
  .language-switcher-locale-url > li {
    display: inline-block;
    padding-left: 5px;
    opacity: .4;
    -webkit-transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    -ms-transition: opacity .15s ease-in-out;
    -o-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out; }
    .language-switcher-locale-url > li:hover {
      opacity: .7; }
    .language-switcher-locale-url > li.active {
      opacity: 1; }

.giallo,
.verdec,
.verdes,
.petrolio {
  color: #FFFFFF;
  -webkit-transition: margin-top .5s;
  /* Safari */
  transition: margin-top  .6s; }
  .giallo a,
  .verdec a,
  .verdes a,
  .petrolio a {
    color: #FFFFFF; }
  @media screen and (min-width: 992px) {
    .giallo:hover,
    .verdec:hover,
    .verdes:hover,
    .petrolio:hover {
      margin-top: -25px; } }

.giallo {
  background-color: #ffcd00; }

.verdec {
  background-color: #92BC00; }

.verdes {
  background-color: #00935C; }

.petrolio {
  background-color: #367084; }

.giallo:hover {
  background-color: #e6b900; }

.verdec:hover {
  background-color: #7ea300; }

.verdes:hover {
  background-color: #00c67c; }

.petrolio:hover {
  background-color: #458fa8; }

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%; }

.main-menu-wrap #main-menu li {
  padding: 12px 25px; }

.upcoming-date {
  text-transform: uppercase; }

.view-mode-home_eventi .upcoming-date span {
  display: block;
  text-align: center;
  color: #9d9d9d;
  line-height: 1em; }
  .view-mode-home_eventi .upcoming-date span.month {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: -4px; }
  .view-mode-home_eventi .upcoming-date span.day {
    font-size: 2em; }

.view-mode-home_eventi.open .upcoming-date span {
  color: #FFFFFF; }

.page-notizie .view-id-news .node {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee; }
  .page-notizie .view-id-news .node h2 {
    margin-top: 0;
    font-size: 18px;
    padding-right: 48px; }

.view .node-teaser {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee; }
  .view .node-teaser h2 {
    margin-top: 0;
    font-size: 18px; }

.view .node-teaser.node-article h2 {
  padding-right: 48px; }

.page-node.node-type-article #block-block-3 {
  display: none; }

.field-name-field-allegati {
  margin-bottom: 5px; }
  .field-name-field-allegati tr {
    border-bottom-width: 0px !important; }

.field-name-field-tags .field-item {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
  float: right;
  margin-left: 5px; }
  .view-mode-home .field-name-field-tags .field-item {
    float: none;
    display: block;
    margin: 0 -6px .5em !important;
    text-align: left;
    border-radius: 0px; }
  .tag-news .field-name-field-tags .field-item {
    background-color: #207ea5; }
  .tag-events .field-name-field-tags .field-item {
    background-color: #4eb3dd; }
  .tag-procurement-and-notices .field-name-field-tags .field-item {
    background-color: #0f3d50; }

.page-node.node-type-article .page-header {
  margin-bottom: 0;
  border-bottom-width: 0; }
.page-node.node-type-article .node.view-mode-full .field-name-submitted-by {
  background: #4eb3dd;
  color: #FFFFFF;
  margin-bottom: 1em;
  padding: 0 10px; }
.page-node.node-type-article .node.view-mode-full.tag-news .field-name-submitted-by {
  background-color: #207ea5; }
.page-node.node-type-article .node.view-mode-full.tag-events .field-name-submitted-by {
  background-color: #4eb3dd; }
.page-node.node-type-article .node.view-mode-full.tag-procurement-and-notices .field-name-submitted-by {
  background-color: #0f3d50; }

@media (max-width: 960px) {
  .main-menu-wrap #main-menu li {
    padding: 12px 8px; } }
@media (min-width: 1200px) {
  #carousel-hover {
    position: relative;
    margin-top: -85px; } }
@media (max-width: 991px) {
  .navbar-header {
    float: none; }

  .navbar-left, .navbar-right {
    float: none !important; }

  .navbar-toggle {
    display: block; }

  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); }

  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px; }

  .navbar-collapse.collapse {
    display: none !important; }

  .navbar-nav {
    float: none !important;
    margin-top: 7.5px; }

  .navbar-nav > li {
    float: none; }

  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px; }

  .collapse.in {
    display: block !important; }

  .main-menu-wrap #main-menu li {
    display: block;
    padding: 8px 15px; }

  .menu-block-1 li.active::after {
    content: none; } }
@media (max-width: 768px) {
  .carousel-inner {
    display: none; }

  #carousel-hover {
    margin-top: 0px;
    border-top: 5px solid #ffcd00; }

  .region-sidebar-first {
    border-bottom: 5px solid #ffcd00;
    margin-bottom: 2em; } }
.tag-news thead tr {
  background-color: #207ea5; }

.tag-eventi thead tr {
  background-color: #4eb3dd; }

.tag-appalti thead tr {
  background-color: #0f3d50; }

.tag-news thead th {
  border-bottom-color: #207ea5; }

.tag-eventi thead th {
  border-bottom-color: #4eb3dd; }

.tag-appalti thead th {
  border-bottom-color: #0f3d50; }

.field-name-share.field .field-label {
  padding: 5px 10px;
  background-color: #4eb3dd;
  color: #FFFFFF;
  line-height: 20px; }

.tag-news .field-name-share.field .field-label {
  background-color: #207ea5; }

.tag-appalti .field-name-share.field .field-label {
  background-color: #0f3d50; }

.field-name-field-cover img {
  width: 100%;
  max-height: 280px;
  margin-bottom: 1em; }

.field-name-body img {
  max-width: 100%;
  height: auto; }

.node.view-mode-home_eventi .field-name-node-link {
  border-bottom: 2px solid white;
  padding-bottom: 1em; }

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td,
.table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  border-right: 1px solid #ddd; }

.table > tbody {
  border-bottom: 1px solid #ddd; }

.table > tbody > tr,
.table > tfoot > tr, .table > thead > tr {
  border-left: 1px solid #ddd; }

#block-block-7 {
  text-align: right;
  line-height: 39px; }
  #block-block-7 .twitter-link {
    display: block;
    width: 39px;
    height: 39px;
    margin-left: 10px;
    background-image: url(../img/twitter.png);
    background-repeat: no-repeat;
    background-position: top left; }

.region-header {
  min-width: 140px; }
  .region-header ul {
    text-align: right; }

#carousel-home .carousel-inner .item {
  transition-property: opacity; }
#carousel-home .carousel-inner .item,
#carousel-home .carousel-inner .active.left,
#carousel-home .carousel-inner .active.right {
  opacity: 0; }
#carousel-home .carousel-inner .active,
#carousel-home .carousel-inner .next.left,
#carousel-home .carousel-inner .prev.right {
  opacity: 1; }
#carousel-home .carousel-inner .next,
#carousel-home .carousel-inner .prev,
#carousel-home .carousel-inner .active.left,
#carousel-home .carousel-inner .active.right {
  left: 0;
  transform: translate3d(0, 0, 0); }
#carousel-home .carousel-control {
  z-index: 2; }

.nav-justified {
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 5px; }
  .nav-justified > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
    font-weight: bold;
    color: #777;
    text-align: center;
    background-color: #e5e5e5;
    /* Old browsers */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e5e5e5));
    background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%);
    background-image: -o-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%);
    background-image: linear-gradient(to bottom, #f5f5f5 0%, #e5e5e5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e5e5e5',GradientType=0 );
    /* IE6-9 */
    background-repeat: repeat-x;
    /* Repeat the gradient */
    border-bottom: 1px solid #d5d5d5; }

.nav-justified > .active > a,
.nav-justified > .active > a:hover,
.nav-justified > .active > a:focus {
  background-color: #ddd;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15); }

.nav-justified > li:first-child > a {
  border-radius: 5px 5px 0 0; }

.nav-justified > li:last-child > a {
  border-bottom: 0;
  border-radius: 0 0 5px 5px; }

@media (min-width: 768px) {
  .nav-justified {
    max-height: 52px; }

  .nav-justified > li > a {
    border-right: 1px solid #d5d5d5;
    border-left: 1px solid #fff; }

  .nav-justified > li:first-child > a {
    border-left: 0;
    border-radius: 5px 0 0 5px; }

  .nav-justified > li:last-child > a {
    border-right: 0;
    border-radius: 0 5px 5px 0; } }
.map-overlay {
  position: absolute;
  z-index: 1000;
  display: block;
  width: 100%;
  bottom: 0px; }

.node-type-article .region-highlighted {
  display: none; }

.region-sidebar-first .menu-mlid-659,
.region-sidebar-first .menu-mlid-660,
.region-sidebar-first .menu-mlid-661,
.region-sidebar-first .menu-mlid-625,
.region-sidebar-first .menu-mlid-626,
.region-sidebar-first .menu-mlid-629,
.region-sidebar-first .menu-mlid-630,
.region-sidebar-first .menu-mlid-631,
.region-sidebar-first .menu-mlid-632,
.region-sidebar-first .menu-mlid-633,
.region-sidebar-first .menu-mlid-634,
.region-sidebar-first .menu-mlid-635,
.region-sidebar-first .menu-mlid-636,
.region-sidebar-first .menu-mlid-623,
.region-sidebar-first .menu-mlid-624 {
  display: none; }

.field-name-body .row {
  margin-left: 0px;
  margin-right: 0px;
  text-align: center; }

/*# sourceMappingURL=layout.css.map */
