﻿@charset "utf-8";
@borderColor: #e5e5e5;
@mainColor: #ff0000;
@accessoryColor: #000;

.navbar-fixed-top, .navbar-fixed-bottom {
  z-index: 9000;
}

.navbar {
  border: 0px;

  border-radius: 0px;
  margin-bottom: 0px;
  box-shadow: none;
  background: none;
}

/*公用菜单样式*/
#mainmenu {
  .navbar {
    min-height: 100px;

    .navbar-nav {
      margin-top: 30px;
      > li {
        text-align: left;
        > a {
          text-shadow: none;
          font-size: 1em;
          font-weight: normal;
          padding: 10px 20px
        }
        > ul {
          > li {
            border: 0px;
            > a {
              color: #555;
              padding: 8px 15px;
              font-weight: normal
            }
          }
        }
      }
    }

    .navbar-toggle {
      border: 0px;
      margin-top: 10px;
    }

  }

  .navmenu-brand {
    padding: 0px 15px
  }

}

.dropdown-menu {
  padding-top: 0px;
  padding-bottom: 0px;
  box-shadow: none;
  border-radius: 0px;
}

.dropdown-menu:after, .dropdown-menu:before {
  bottom: 100%;
  left: 30%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.dropdown-submenu {
  position: relative;
  > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
  }
  &:hover {
    > .dropdown-menu {
      display: block;
    }

    > a:after {
      border-left-color: #fff;
    }
  }
  > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
  }

  &.pull-left {
    float: none;
    .dropdown-menu {
      left: -100%;
      margin-left: 10px;
      -webkit-border-radius: 6px 0 6px 6px;
      -moz-border-radius: 6px 0 6px 6px;
      border-radius: 6px 0 6px 6px;
    }

  }
}

/*********************************普通模式*********************************************/

#mainmenu .navbar-default {
  box-shadow: none;
  background: none;

  .navbar-brand {
    color: #fff;
    padding: 0px 15px;
  }

  .navbar-toggle:hover, .navbar-toggle:focus {
    background-color: #f5f5f5 !important;
  }
  .navbar-nav > li {
    > a {
      border: 1px solid transparent;
      color: #333;
      &:hover, &:focus, &:active {
        color: @accessoryColor
      }
    }
    > .dropdown-menu {

      margin-top: 0px;
      border-radius: 5px;
      &:after {
        border-color: rgba(213, 0, 0, 0);
        border-bottom-color: #fff;
        border-width: 10px;
        margin-left: -10px;
      }
      &:before {
        border-color: rgba(25, 245, 0, 0);
        border-bottom-color: #ccc;
        border-width: 11px;
        margin-left: -11px;
      }
    }

  }

}

/*********************************反色模式*********************************************/
#mainmenu .navbar-inverse {
  background: @accessoryColor;

  .navbar-offcanvas {
    background: none;
  }
  .navbar-nav {
    > li {
      &.active {
        > a {

          background: @accessoryColor;
          color: #fff;
        }
      }

      > a {
        color: #fff;
        &:hover {
          color: @mainColor;
        }
      }

      > .dropdown-menu {

        margin-top: 0px;
        border-radius: 5px;
        &:after {
          border-color: rgba(213, 0, 0, 0);
          border-bottom-color: #fff;
          border-width: 10px;
          margin-left: -10px;
        }
        &:before {
          border-color: rgba(25, 245, 0, 0);
          border-bottom-color: #ccc;
          border-width: 11px;
          margin-left: -11px;
        }
      }

    }
  }
  .navbar-link {
    color: #fff
  }
  .navbar-brand {
    color: #fff;
    padding-top: 0px;
    padding-bottom: 0px;
    height: auto;
  }
  .navbar-toggle {
    &:hover, &:focus {
      background-color: @accessoryColor !important;
    }
  }
}

#subMenu {
  background: @accessoryColor;
}

#subMenu .navbar-inverse {
  min-height: 66px;
  .navbar-offcanvas {
    background: none;
  }
  .navbar-nav {
    > li {
      > a {
        color: #fff;
        padding-top: 16px;
        min-height: 66px;
        &:hover, &:focus {
          color: #fff;
          background: @mainColor;
        }
        &.active {
          color: #fff;
          background: @mainColor;
        }
      }
    }
  }
}

/*折叠装态*/
#mainmenu .offcanvas.in {
  width: 200px;
  border-left-color: #ccc;
  background: #fff;
  .navbar-nav {
    > li > a {
      color: #333;
      border-bottom: 1px solid @borderColor;
      border-left: 0px;
      border-right: 0px;
      padding-top: 8px;
      padding-bottom: 8px;

      &:hover, &:focus {
        background: none;
        background-color: #f5f5f5;
        box-shadow: none;
        border-radius: 0px;
        border: 0px;
        border-bottom: 1px solid @borderColor;
      }

    }
    li li a {
      padding-left: 25px;
    }

    > .open > a, > .active > a {
      background: none;
      background-color: #f5f5f5;
      box-shadow: none;
      border-radius: 0px;
      border: 0px;
      border-bottom: 1px solid @borderColor;
    }

    .open .dropdown-menu > li > a {
      &:hover, &:focus {
        background-color: #f5f5f5;
      }
    }

  }

  .dropdown-menu {
    > li {
      > a {
        color: #333;
        border-bottom: 1px solid @borderColor;
        border-left: 0px;
        border-right: 0px;
        padding-top: 8px;
        padding-bottom: 8px

      }
    }
  }

}

.modal {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.8;
}


.mixItUp .mix {
  display: none;
}

#sns {
  color: #fff;
}

.catitem {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  .overbg {
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    position: absolute;
    transition: all 1s easeInOut 0s;
    -moz-transition: all 1s ease-in-out	 0s;
    -webkit-transition: all 1s ease-in-out	 0s;
    -o-transition: all 1s ease-in-out	 0s;
  }
  .text {
    position: absolute;
    left: 0px;
    top: 40%;
    text-align: center;
    width: 100%;
    font-size:1.2em;
    color:#fff;

  }
  &:hover
  {
    .overbg {opacity:0;}
    .text {color:@mainColor}
  }
}

/***********通用样式**********/
.cat {
  display: block;
  box-shadow: 1px 1px 10px -1px #333;

  .pic {
    display: block;
    img {

      border-radius: 10px 10px 0px 0px;
    }
  }

  .text-block {
    background: #fff;
    padding: 15px 20px;
    border-radius: 0px 0px 10px 10px;

    .title {
      display: inline-block;
      font-size: 1.2em;
      font-weight: normal;
      margin-bottom: 10px;
    }
    .summary {
      color: #666;
    }
  }

}

html, body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  font-family: "Myriad-Web", Helvetica, "MyriadPro", "STXiHei", "Microsoft Yahei", "微软雅黑", arial, sans-serif;
  -webkit-text-size-adjust: none;
  font-size: 14px;
  overflow-x: hidden;
  color: #333;
}

body {
  background-color: #fff;
  position: relative;
  margin: 0px auto;
  padding: 0px;
  height: 100%;
  overflow-y: scroll
}

.opacity-button {
  border: 0px;
  background: none;
  padding: 0px;
}

label {
  font-weight: normal
}

.graytext {
  color: #666;
}

.dblline {
  line-height: 2em;
}

.articles a {
  display: block;
  line-height: 2.1em;
  padding-left: 15px;
  background: url(/images/rect.jpg) no-repeat left 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.radius {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.radius15 {
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}

#scrollNews {
  position: relative;
  top: -200px;
  left: 0px;
  width: 100%;
  background: #fff;
  z-index: 2000;
  text-align: center;
  opacity: 0;
  border-bottom: 1px solid #d8d8d8;
  background-color: #fff;
  text-align: center;
}

#scrollNews_close {
  position: absolute;
  right: 10px;
  top: 5px;
}

.radius-circle {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;

}

.home_header {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.gotop:hover {
  text-decoration: none;
}

.border-top {
  border-top: 1px solid @borderColor
}

.border-bottom {
  border-bottom: 1px solid @borderColor
}

.input-xs {
  height: 24px;
  text-indent: 5px;
  border: 0px;
  background: #f2f2f2;
  color: #555;
  border: 1px solid @borderColor;
  background: #fff;
}

.stButton span {
  height: 24px !important;;
}

.margintp {
  margin-top: 10px
}

.margin2xtp {
  margin-top: 20px
}

.margin3xtp {
  margin-top: 30px
}

.margin4xtp {
  margin-top: 40px
}

.marginbt {
  margin-bottom: 10px
}

.margin2xbt {
  margin-bottom: 20px
}

.margin3xbt {
  margin-bottom: 30px
}

.margin4xbt {
  margin-bottom: 40px
}

.fa-lg {
  font-size: 1.3em;
}

.linkbutton {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #d0d0d0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background: #fff;
  color: #444;
  border-radius: 4px;
  &:hover {
    text-decoration: none;
    color: #fff;
    background: #005fd3;
    border: 1px solid #005fd3
  }
}

.whitebutton {
  display: inline-block;
  padding: 5px 10px;
  background: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  &:hover {
    text-decoration: none;
    color: #fff;
    background: @accessoryColor;
  }
}

.whitetext, .whitetext * {
  color: #fff;
  line-height: 1.6em;
}

.border {
  border: 1px solid @borderColor
}

.picshadow {
  box-shadow: 1px 1px 15px 0px #b17400;
}

.summarytext {
  color: #777;
  line-height: 160%;
}

a {
  color: #333;
  &:hover {
    color: @accessoryColor
  }
}

.article {
  .title {
    color: #333;
  }
  .datetime {
    color: #333;
    margin-top: 10px;
  }
  .summary {
    color: #555;
    margin-top: 10px;
  }
}

.form-group {
  margin-bottom: 10px
}

.header1 {
  font-size: 1.8em;
  color: #555;
  font-family: Myriad-CnWeb;
  padding-bottom: 20px;
  background: url(/images/header1bg.jpg) no-repeat center bottom
}

.header2 {
  font-weight: bold;
  font-size: 1.2em;
  margin: 15px auto;
  color: @accessoryColor;
}

.moretext {
  margin-top: 20px;
  margin-bottom: 15px;
}

.moretext a {
  color: #777;
}

.whitebg {
  background: #fff;
}

.btn-sample {
  border: 1px solid #ccc;
  background: transparent;
  padding: 8px 20px;
  margin: 5px 3px;
  text-decoration: none;
  &:hover, &.active {
    background: @accessoryColor;
    border: 1px solid @accessoryColor;
    color: #fff;
    text-decoration: none;
  }
}

.modal {
  z-index: 90000
}

#prodRecommend {
  border-bottom: 0px;
  margin-bottom: -10px;
}

#prodRecommend.nav-tabs > li > a:hover {
  background: none;
  border-color: transparent
}

#prodRecommend.nav-tabs > li.active > a {
  background: url(/images/downarrow.png) center bottom no-repeat;
  border: 0px;
}

/***********顶部效果**********/
#topbar {
  background-color: @accessoryColor;
  a {

    .icon {
      color: #fff;
      &:hover {
        color: @mainColor;
      }
    }

  }

}

/***********首页效果**********/

.prod {
  text-align: center;
  display: block;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  cursor: pointer;
  .pic {
    border: 1px solid #e0e0e0;
    display: block;
  }
  .title {
    margin-top: 15px;
    display: inline-block;
  }

}

.overitem {
  text-align: center;
  display: block;
  position: relative;
  cursor: pointer;

  .overlay {
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    display: none;
    cursor: hand;
    .bg {
      height: 100%;
      background: #000;
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      opacity: 0.8;
      z-index: 800
    }
    .text {
      color: #fff;
      padding: 40px 20px;
      height: 100%;
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      z-index: 1000;
      .header {
        font-size: 2em;
        margin-bottom: 20px
      }
      .summary {
        line-height: 200%;
        text-align: left;
      }
    }
  }

  &:hover {
    .overlay {
      display: block
    }
  }
  .title {
    height: 60px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    text-align: center;
    font-size: 1.8em;
    color: #000;
  }
}

/***********页面部件**********/

#page_title {
  font-size: 1.4em;
  color: @accessoryColor;
  margin: 20px auto;
  font-weight: normal;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 25px;
}

#page_content {
  margin: 20px auto;
  p, div, td {
    line-height: 180%
  }
}

#page_body {
  margin-top: 20px;
  min-height: 600px;
  position: relative;
}

#prevPage {
  position: absolute;
  left: 0px;
  top: 300px;
  z-index: 10000;
  a {
    color: #ccc;
  }
}

#nextPage {
  position: absolute;
  right: 0px;
  top: 300px;
  z-index: 10000;
  a {
    color: #ccc;
  }

}

#right_panel {
  padding: 20px 0px;
  vertical-align: top

}

#content_panel {
  min-height: 600px;
}

.floaterTop {
  background: #fff;
}

.banner {
  border-bottom: 1px solid #e0e0e0
}

/***********页脚**********/
#footer_div {
  background: #f8f8f8;
  border-top: 1px solid #efefef;
  color: #666;
  a {
    color: #666;
    &:hover {
      text-decoration: none;
      color: @accessoryColor
    }
  }

  .footer_link {
    color: #666;
    line-height: 72px;
    padding-left: 20px;
    padding-right: 20px;
    display: table-cell;
  }
  .icon_link {
    line-height: 72px;;
    display: inline-block;
    color: #999;
    padding-left: 10px;
    padding-right: 10px;
    &:hover {
      color: @accessoryColor
    }
  }

  #footer_nav {
    padding: 25px 0px;
    h5 {
      font-weight: normal;
      font-size: 1.2em;
      color: #000;
    }
    a {
      display: inline-block;
      line-height: 200%;
    }

  }
  #footer {
    line-height: 30px;
    padding: 10px 0px;
    background: @accessoryColor;
    * {
      color: #fff;
    }
    #seotext {
      text-align: right
    }
  ;
  }
}

.icon {
  display: inline-block;
  text-align: center;
  padding-left: 5px;
  color: #999;
  i {
    margin-right: 5px;
    color: #999;
  }
  &:hover {
    color: @accessoryColor;
    i {
      text-decoration: none;
      color: @accessoryColor;
    }
  }
}

/***********侧导航**********/
#left_panel {
  width: 220px;
  padding-top: 30px;
  vertical-align: top;
  #LeftNavPanel {
    margin: 10px auto;
    background: #fff;
    #leftheader {
      height: 45px;
      line-height: 45px;
      text-indent: 15px;
      background: @accessoryColor;
      font-size: 1.2em;
      color: #fff;
    }

    #leftNav {
      border-right: 1px solid #e5e5e5;
      border-left: 1px solid #e5e5e5;

      ul {
        list-style: none;
        margin: 0px;
        clear: both;
        padding: 0px;
        ul {
          margin: 0px 0px;
          li a {
            font-size: 13px;
            padding: 5px 0px;
            padding-left: 15px;
            padding-right: 5px;
            border-top: 0px;
            border-right: 0px;
            border-bottom: 1px solid #efefef;
            margin-bottom: 0px;
            text-indent: 20px;
            background: url(/images/menu-right.png) no-repeat 20px center;
            &:hover {
              background: url(/images/menu-right1.png) no-repeat 17px center;

            }
          }

          ul li a {
            text-indent: 35px
          }

        }

        li {
          a {
            display: block;
            padding: 7px 0px;
            line-height: 20px;
            border-bottom: 1px solid #e5e5e5;
            text-align: left;
            text-indent: 25px;
            &:hover {
              text-decoration: none;
              background: #fff;
              border-left: 3px solid @accessoryColor;
              margin-right: -1px;

            }

          }

        }

      }

    }

  }

}

/*---------------浮动层-------------------*/

.floater {
  z-index: 20000;
  position: absolute
}

#rightFloater {
  border: 1px solid #dedede;
  a {

    display: block;
    padding: 5px 5px;
    border-bottom: 1px solid #dedede;
    background: #fff;
    color: #666;
    text-align: center;

    &:hover {
      text-decoration: none;
      background: @accessoryColor;
      color: #fff
    }
    &:last-child {
      margin-bottom: 0px;
    }

  }
}

/*---------------版面样式-------------------*/
.List {
  padding-left: 15px;
  padding-right: 15px;
}

.titleList {
  padding-left: 0px;
  padding-right: 0px;
  .item {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid @borderColor;
    .title {
      line-height: 40px;
      a {
        background: url(/images/news2.png) no-repeat left 2px;
        text-indent: 25px;
        display: block;
        &:hover {
          color: #004986
        }
      }
    }
    .time {
      color: #666;
      padding: 0px;
    }
    .content {
      margin-left: 25px;
    }
    .summary {
      margin-top: 5px;
      color: #888;
    }
    .tag {
      margin-top: 10px;
      color: #999;
      a {
        color: #666666;
      }
    }
    .download a {
      color: #666;
      display: block;
      background: url(/images/pdf.png) no-repeat left 2px;
      text-indent: 22px;
      margin-top: 10px
    }

  }
}

.topBottom .item {
  background: #fff;
  position: relative;
  margin-bottom: 30px;
  .pic {
    display: block;
    position: relative;
    overflow: hidden;
    .playicon {
      height: 100%;
      background: url(/images/play.png) no-repeat center center;
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      display: none;
      cursor: hand;
    }
    .overlay {
      height: 100%;
      background: @accessoryColor;
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      display: none;
      cursor: hand;
      opacity: 0.2
    }
  }
  .text-block {
    background: #f8f8f8;
    padding: 10px;
    border: 1px solid @borderColor;
    border-top: 0px;

    .title {
      line-height: 25px;
      display: block;
      font-size: 1em;
      color: @accessoryColor;
    }
    .summary {
      line-height: 20px !important;
      color: #888;
      text-align: left;
      margin-top: 10px;
      p, div, li {
        color: #555;
      }
      ul {
        margin: 5px 0px;
        padding-left: 20px;
      }
    }

  }
  .title {
    line-height: 30px;
    display: block;
    font-size: 1em;
  }
  .summary {
    line-height: 20px !important;
    color: #888;
    text-align: left;
    margin-top: 10px;
    p, div, li {
      color: #555;
    }
    ul {
      margin: 5px 0px;
      padding-left: 20px;
    }
  }
  &:hover {
    .pic {

      img {
        transform: scale(1.1);
        transition: all 1s ease 0s;
        -webkit-transform: scale(1.1);
        -webkit-transform: all 1s ease 0s;
      }

      .overlay {
        display: block
      }
    }

    .text-block {
      background: @accessoryColor;
      .title {
        color: #fff;
      }
      .summary {
        color: #eee;
        p, div li {
          color: #eee;
        }
      }
    }

  }
}

.topBottom1 .item {
  background: #fff;
  position: relative;
  margin-bottom: 30px;
  .block {
    width: 100%;
    height: 100%;
    .overlay {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0px;
      top: 0px;
      background: #fff;
      opacity: 0.7
    }
    .pic {
      display: block;
    }
    .text-block {
      padding: 10px;
    }
    .title {
      line-height: 25px;
    }
    .summary {
      color: #de0f05;
      line-height: 20px !important;
      color: #999;
      text-align: left;
      min-height: 50px;
      margin-top: 10px;
    }
    .tag {
      margin-top: 10px;
      color: #999;
    }

  }
}

.gallery {
  padding-left: 15px;
  padding-right: 15px;
  .item {
    padding-left: 1px;
    padding-right: 1px;
    margin-bottom: 10px;
    .title {
      margin-top: 5px;
    }
  }
}

.leftright .item {
  .pic {
    background: #fff;
    display: block;
    padding: 5px;
  }
  .title {
    line-height: 25px;
  }
  .summary {
    color: #999;
    text-align: left;
    min-height: 50px;
    margin-top: 10px;
    p, div, li {
      color: #666;
    }
    ul {
      margin: 5px 0px;
      padding-left: 20px;
    }
  }
  .tag {
    margin-top: 10px;
    color: #999;
  }
  .more {
    margin-top: 20px;
  }
}

.cascade > .item {
  margin-bottom: 20px;
  > .header {
    font-weight: bold;
    color: #555;
  }
  > .titleList > .item {
    padding: 5px 0px;
  }
  > .more {
    margin-top: 10px;
  }
}

#shareButtons {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 210px;
  height: 36px;
  border: 1px solid #d0d0d0;
  text-align: right;
  padding-top: 4px;
  background: #fff;
  display: none;
}

/*bootstrap样式覆写*/

.thumb-pager a {
  display: inline-block;
  border: 1px solid @borderColor;
  margin-right: 5px;
  margin-bottom: 5px;
}

.thumb-pager .cycle-pager-active {
  border: 1px solid #004bbe;
}

.tooltip-inner {
  max-width: 500px;
  padding: 3px 8px;
  color: #333;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #d0d0d0
}

.tooltip.top .tooltip-arrow {
  border-top-color: #d0d0d0;
}

.tooltip.top-left .tooltip-arrow {
  border-top-color: #d0d0d0;
}

.tooltip.top-right .tooltip-arrow {

  border-top-color: #d0d0d0;
}

.tooltip.right .tooltip-arrow {
  border-right-color: #d0d0d0;
}

.tooltip.left .tooltip-arrow {
  border-left-color: #d0d0d0;
}

.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #d0d0d0;
}

.tooltip.bottom-left .tooltip-arrow {
  border-bottom-color: #d0d0d0;
}

.tooltip.bottom-right .tooltip-arrow {
  border-bottom-color: #d0d0d0;
}

.affix {
  position: fixed;
  z-index: 1000;
  width: 240px;
  top: 30px
}

.affix-bottom {
  position: absolute;
}

.affix-top {
  width: 240px;
}

.desctext {
  color: #888;
  font-size: 1.1em;
  margin-top: 10px;
}

blockquote {
  font-size: 1em;
}

.cycle-slideshow-responsive, .cycle-slideshow-responsive * {
  BOX-SIZING: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box
}

.cycle-slideshow-responsive {
  POSITION: relative;
  MIN-WIDTH: 200px;
  PADDING-BOTTOM: 0px;
  PADDING-LEFT: 0px;
  width: 100%;
  PADDING-RIGHT: 0px;
  PADDING-TOP: 0px
}

.cycle-slideshow-responsive > IMG {
  POSITION: absolute;
  PADDING-BOTTOM: 0px;
  PADDING-LEFT: 0px;
  WIDTH: 100%;
  PADDING-RIGHT: 0px;
  DISPLAY: block;
  TOP: 0px;
  PADDING-TOP: 0px;
  LEFT: 0px;
  cursor: hand;
}

#buttons {
  position: absolute;
  bottom: 100px;
  z-index: 2100;
  text-align: center;
  margin: 0px auto;
  width: 100%;
  a {
    display: inline-block;
    margin: 0px 5px;
  }
}

#pager_prev, #pager_prev:visited {
  display: block;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 40px;
  height: 40px;
  background: #000;
  z-index: 2000;
  text-align: center;
  line-height: 20px;
  padding-top: 5px;
  opacity: 0.3;
  text-decoration: none;
  .radius;
}

#pager_prev:hover, #pager_prev:focus, #pager_prev:active {
  text-decoration: none;
  opacity: 0.8;
}

#pager_next, #pager_next:visited {
  display: block;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #000;
  z-index: 2000;
  text-align: center;
  line-height: 20px;
  padding-top: 5px;
  opacity: 0.3;
  .radius;
  text-decoration: none;

}

#pager_next:hover, #pager_next:active, #pager_next:focus {
  text-decoration: none;
  opacity: 0.8;
}

.cycle-pager {
  text-align: center;
  width: 100%;
  z-index: 500;
  position: absolute;
  bottom: 10px !important;
  overflow: hidden;
}

.cycle-pager-bottom {
  text-align: center;
  width: 100%;
  z-index: 500;
  position: relative;
  margin-top: 15px;
}

.cycle-pager span {
  font-family: arial;
  font-size: 36px;
  width: 12px;
  margin-left: 5px;
  margin-right: 5px;
  height: 12px;
  line-height: 12px;
  display: inline-block;
  color: transparent;
  cursor: pointer;
  border: 1px solid @mainColor;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.cycle-pager span.cycle-pager-active {
  color: transparent;
  background: @mainColor;
}

@media (max-width: 740px) {
  html, body, .dropdown-menu {
    font-size: 13px;
  }

  #mainmenu .navbar-nav > .open > .dropdown-menu > .dropdown-submenu > .dropdown-menu {
    display: block;
  }

  #mainmenu .navbar-nav > .open > .dropdown-menu > .dropdown-submenu > .dropdown-menu a,
  #mainmenu .navbar-nav > .open > .dropdown-menu > .dropdown-submenu > .dropdown-menu a:hover,
  #mainmenu .navbar-nav > .open > .dropdown-menu > .dropdown-submenu > .dropdown-menu a:focus {
    text-indent: 15px;
  }

  #footer_div #footer #seotext {
    text-align: left;
  }

  #subMenu {
    background: @accessoryColor;
    .navbar-inverse {
      .navbar-offcanvas {
        background: none;
      }
      .navbar-nav {
        > li {
          > a {
            color: #fff;
            min-height: 28px;
            padding-top: 4px;
            &:hover, &:focus, &.active {
              color: #fff;
              background: @mainColor
            }
          }
        }
      }
    }
  }

}

@media (max-width: 1200px) {

  #mainmenu .navbar .navbar-nav > li > a {
    padding: 10px 5px;
  }

}

@media (min-width: 768px) {

  html, body, .dropdown-menu {
    font-size: 13px;
  }

  #mainmenu .navbar-nav > li.dropdown:hover > .dropdown-menu {
    display: block;
  }

  #mainmenu .navbar-right .dropdown-menu {
    left: 0px;
    right: auto;
  }

}

@media (min-width: 1400px) {

  html, body, .dropdown-menu {
    font-size: 14px;
  }

  .container {
    width: 1280px;
  }
}

@media (min-width: 1600px) {

  .container {
    width: 1480px;
  }
}