/**
 * NoNumber Page stylesheet
 *
 * @package         Tabs
 * @version         3.5.2
 *
 * @author          Peter van Westen <peter@nonumber.nl>
 * @link            http://www.nonumber.nl
 * @copyright       Copyright © 2014 NoNumber All Rights Reserved
 * @license         http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */
/*
 * You can override this stylesheet by creating your own in:
 * /templates/[YOUR TEMPLATE]/css/tabs/style.min.css
 */
.nn_tabs .fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.nn_tabs .fade.in {
  opacity: 1;
}
.nn_tabs .collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -moz-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
.nn_tabs .collapse.in {
  height: auto;
}
.nn_tabs > .nav {
  padding: 0;
  margin-left: 0;
  margin-bottom: 18px;
  list-style: none;
}

.nn_tabs > .nav > li.active > a span {
	color: #4e4e4e;
}

.nn_tabs > .nav > li > a {
  display: block;
  background-color: #4e4e4e;
  color: #666;
}
.nn_tabs > .nav > li > a:hover {
  text-decoration: none;
  background-color: #ffd000;
}

.nn_tabs > .nav > li > a span {
  color: #c6c6c6;
}

.nn_tabs > .nav > li > a:hover span {
  color: #4e4e4e;
}

.nn_tabs > .nav > .pull-right {
  float: right;
}
.nn_tabs .nav-tabs {
  *zoom: 1;
  border-bottom: 1px solid #ddd;
}
.nn_tabs .nav-tabs:before,
.nn_tabs .nav-tabs:after {
  display: table;
  content: "";
  line-height: 0;
}
.nn_tabs .nav-tabs:after {
  clear: both;
}
.nn_tabs .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nn_tabs .nav-tabs > li > a {
  margin-right: 2px;
  padding: 8px 12px;
  line-height: 18px;
  border: 1px solid transparent;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.nn_tabs .nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}
.nn_tabs .nav-tabs > li.active > a,
.nn_tabs .nav-tabs > li.active > a:hover {
    cursor: default;
    font-family: "Oswald",sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
}
.nn_tabs .tab-content {
  overflow: visible;
}
.nn_tabs .tab-content > .tab-pane {
  *zoom: 1;
  display: none;
}
.nn_tabs .tab-content > .tab-pane:before,
.nn_tabs .tab-content > .tab-pane:after {
  display: table;
  content: "";
  line-height: 0;
}
.nn_tabs .tab-content > .tab-pane:after {
  clear: both;
}
.nn_tabs .tab-content > .active {
  display: block;
}
.nn_tabs {
  *zoom: 1;
}
.nn_tabs:before,
.nn_tabs:after {
  display: table;
  content: "";
  line-height: 0;
}
.nn_tabs:after {
  clear: both;
}
.nn_tabs > ul.nav-tabs-sm {
  display: none;
}
.nn_tabs > ul.nav-tabs > li {
  /* Reset styles to prevent templates li styles from messing stuff up */
  margin: 0 !important;
  margin-bottom: -1px !important;
  padding: 0 !important;
  list-style: none !important;
  list-style-image: none !important;
  background: none !important;
}
.nn_tabs > ul.nav-tabs > li:before {
  content: "";
  margin: 0;
  padding: 0;
}
.nn_tabs > ul.nav-tabs > li > a {
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  text-decoration: none;
  line-height: inherit;
    font-family: "Oswald",sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
}
.nn_tabs > ul.nav-tabs > li > a:hover {
  color: #005580;
  text-decoration: none;
}
.nn_tabs > ul.nav-tabs > li > a:focus,
.nn_tabs > ul.nav-tabs > li.active > a:focus {
  outline: none;
  border-color: #eab03f #eab03f transparent #eab03f;
  -webkit-box-shadow: 0 0px 0px rgba(255, 255, 255, 0) !important;
  -moz-box-shadow: 0 -2px 2px rgba(255, 255, 255, 0) !important;
  box-shadow: 0 0px 0px rgba(255, 255, 255, 0) !important;
}
.nn_tabs > .tab-content {
  padding: 0;
  margin-bottom: 10px;
}
.nn_tabs > .tab-content > .tab-pane {
  padding: 12px 0;
  overflow-x: auto;
  overflow-y: hidden;
}
.nn_tabs > .tab-content > .tab-pane > :first-child {
  margin-top: 0;
}
.nn_tabs > .tab-content > .tab-pane > :last-child {
  margin-bottom: 0;
}
.nn_tabs > .tab-content > .tab-pane .nn_tabs-title {
  display: none;
}
.nn_tabs .nn_tabs-scroll,
.nn_tabs .nn_tabs-sm-scroll {
  position: relative;
  visibility: hidden;
}
@media (max-width: 768px) {
  .nn_tabs.nn_tabs-responsive > ul.nav-tabs-sm {
    display: block;
  }
  .nn_tabs.nn_tabs-responsive > ul.nav-tabs {
    display: none;
  }
  .nn_tabs.nn_tabs-responsive > .tab-content > .tab-pane {
    display: block;
  }
  .nn_tabs.nn_tabs-responsive > .tab-content > .tab-pane .nn_tabs-title {
    display: block;
  }
  .nn_tabs.nn_tabs-responsive .fade {
    opacity: 1;
  }
  .nn_tabs.nn_tabs-responsive.outline_content > .tab-content {
    border: none;
  }
  .nn_tabs.nn_tabs-responsive.outline_content > .tab-content > .tab-pane {
    padding: 12px 0;
  }
}
.nn_tabs.outline_content > .tab-content {
  margin-bottom: 18px;
  border: 1px solid #dddddd;
  border-top: none;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.nn_tabs.outline_content > .tab-content > .tab-pane {
  padding: 12px;
}
.nn_tabs.outline_content > ul.nav-tabs {
  margin-bottom: 0;
}
.nn_tabs.outline_handles ul.nav-tabs > li a,
.nn_tabs.outline_handles ul.nav-tabs > li a:hover {
  border: 1px solid #4e4e4e;
}
.nn_tabs.outline_handles.top > ul.nav-tabs > li a,
.nn_tabs.outline_handles.top > ul.nav-tabs > li a:hover {
  border-bottom-color: transparent;
}
.nn_tabs.outline_handles.bottom > ul.nav-tabs > li a,
.nn_tabs.outline_handles.bottom > ul.nav-tabs > li a:hover {
  border-top-color: transparent;
}
.nn_tabs.outline_handles.left > ul.nav-tabs > li a,
.nn_tabs.outline_handles.left > ul.nav-tabs > li a:hover {
  border-right-color: transparent;
}
.nn_tabs.outline_handles.right > ul.nav-tabs > li a,
.nn_tabs.outline_handles.right > ul.nav-tabs > li a:hover {
  border-left-color: transparent;
}
@media (min-width: 769px) {
  .nn_tabs.align_right > ul.nav-tabs > li {
    float: right;
  }
  .nn_tabs.align_right > ul.nav-tabs > li > a {
    margin-left: 2px;
    margin-right: 0;
  }
  .nn_tabs.align_center > ul.nav-tabs {
    text-align: center;
  }
  .nn_tabs.align_center > ul.nav-tabs > li {
    float: none;
    display: inline-block;
    *display: inline;
    /* IE7 inline-block hack */
    *zoom: 1;
    margin-left: -1px;
    margin-right: -3px;
  }
  .nn_tabs.align_justify > ul.nav-tabs {
    text-align: center;
    display: table;
    width: 100%;
    margin-bottom: -1px;
  }
  .nn_tabs.align_justify > ul.nav-tabs > .nn_tabs-scroll {
    display: table-cell;
  }
  .nn_tabs.align_justify > ul.nav-tabs > li {
    float: none;
    display: table-cell;
  }
  .nn_tabs.align_justify > ul.nav-tabs > li:last-child > a {
    margin-right: 0;
  }
  .nn_tabs.align_justify > ul.nav-tabs > li a,
  .nn_tabs.align_justify > ul.nav-tabs > li a:hover {
    margin-bottom: -1px;
    border-bottom: 1px solid transparent;
  }
  .nn_tabs.align_justify > ul.nav-tabs:before {
    display: none;
  }
  .nn_tabs.align_justify > ul.nav-tabs:after {
    display: none;
  }
  .nn_tabs.align_justify.bottom > ul.nav-tabs {
    margin-bottom: 0;
    margin-top: -1px;
  }
  .nn_tabs.align_justify.bottom > ul.nav-tabs > li a,
  .nn_tabs.align_justify.bottom > ul.nav-tabs > li a:hover {
    margin-bottom: 0;
    margin-top: -1px;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid transparent;
  }
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li {
    float: none;
  }
  .nn_tabs.top > ul.nav-tabs > li:last-child > a,
  .nn_tabs.top > ul.nav-tabs > li.active:last-child > a,
  .nn_tabs.top > ul.nav-tabs > li:last-child > a:hover,
  .nn_tabs.top > ul.nav-tabs > li.active:last-child > a:hover {
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    border-bottom: 1px solid #dddddd;
  }
  .nn_tabs.top > ul.nav-tabs > li > a {
    margin-right: 0;
  }
}
.nn_tabs.top > ul.nav-tabs > li.blue > a,
.nn_tabs.top > ul.nav-tabs > li.blue > a:hover {
  border-top: 5px solid #74b4e8;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.blue > a:hover,
.nn_tabs.top > ul.nav-tabs > li.blue.active > a {
  border-top-color: #2384d3;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.blue > a,
  .nn_tabs.top > ul.nav-tabs > li.blue > a:hover {
    border: 1px solid #74b4e8;
    border-bottom-color: transparent;
  }
}
.nn_tabs.top > ul.nav-tabs > li.primary > a,
.nn_tabs.top > ul.nav-tabs > li.primary > a:hover {
  border-top: 5px solid #74b4e8;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.primary > a:hover,
.nn_tabs.top > ul.nav-tabs > li.primary.active > a {
  border-top-color: #2384d3;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.primary > a,
  .nn_tabs.top > ul.nav-tabs > li.primary > a:hover {
    border: 1px solid #74b4e8;
    border-bottom-color: transparent;
  }
}
.nn_tabs.top > ul.nav-tabs > li.info > a,
.nn_tabs.top > ul.nav-tabs > li.info > a:hover {
  border-top: 5px solid #6fc2da;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.info > a:hover,
.nn_tabs.top > ul.nav-tabs > li.info.active > a {
  border-top-color: #2f96b4;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.info > a,
  .nn_tabs.top > ul.nav-tabs > li.info > a:hover {
    border: 1px solid #6fc2da;
    border-bottom-color: transparent;
  }
}
.nn_tabs.top > ul.nav-tabs > li.green > a,
.nn_tabs.top > ul.nav-tabs > li.green > a:hover {
  border-top: 5px solid #91c991;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.green > a:hover,
.nn_tabs.top > ul.nav-tabs > li.green.active > a {
  border-top-color: #51a351;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.green > a,
  .nn_tabs.top > ul.nav-tabs > li.green > a:hover {
    border: 1px solid #91c991;
    border-bottom-color: transparent;
  }
}
.nn_tabs.top > ul.nav-tabs > li.success > a,
.nn_tabs.top > ul.nav-tabs > li.success > a:hover {
  border-top: 5px solid #91c991;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.success > a:hover,
.nn_tabs.top > ul.nav-tabs > li.success.active > a {
  border-top-color: #51a351;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.success > a,
  .nn_tabs.top > ul.nav-tabs > li.success > a:hover {
    border: 1px solid #91c991;
    border-bottom-color: transparent;
  }
}
.nn_tabs.top > ul.nav-tabs > li.orange > a,
.nn_tabs.top > ul.nav-tabs > li.orange > a:hover {
  border-top: 5px solid #fbbf69;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.orange > a:hover,
.nn_tabs.top > ul.nav-tabs > li.orange.active > a {
  border-top-color: #f89406;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.orange > a,
  .nn_tabs.top > ul.nav-tabs > li.orange > a:hover {
    border: 1px solid #fbbf69;
    border-bottom-color: transparent;
  }
}
.nn_tabs.top > ul.nav-tabs > li.warning > a,
.nn_tabs.top > ul.nav-tabs > li.warning > a:hover {
  border-top: 5px solid #fbbf69;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.warning > a:hover,
.nn_tabs.top > ul.nav-tabs > li.warning.active > a {
  border-top-color: #f89406;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.warning > a,
  .nn_tabs.top > ul.nav-tabs > li.warning > a:hover {
    border: 1px solid #fbbf69;
    border-bottom-color: transparent;
  }
}
.nn_tabs.top > ul.nav-tabs > li.red > a,
.nn_tabs.top > ul.nav-tabs > li.red > a:hover {
  border-top: 5px solid #dd7a75;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.red > a:hover,
.nn_tabs.top > ul.nav-tabs > li.red.active > a {
  border-top-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.red > a,
  .nn_tabs.top > ul.nav-tabs > li.red > a:hover {
    border: 1px solid #dd7a75;
    border-bottom-color: transparent;
  }
}
.nn_tabs.top > ul.nav-tabs > li.danger > a,
.nn_tabs.top > ul.nav-tabs > li.danger > a:hover {
  border-top: 5px solid #dd7a75;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.danger > a:hover,
.nn_tabs.top > ul.nav-tabs > li.danger.active > a {
  border-top-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.danger > a,
  .nn_tabs.top > ul.nav-tabs > li.danger > a:hover {
    border: 1px solid #dd7a75;
    border-bottom-color: transparent;
  }
}
.nn_tabs.top > ul.nav-tabs > li.error > a,
.nn_tabs.top > ul.nav-tabs > li.error > a:hover {
  border-top: 5px solid #dd7a75;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.error > a:hover,
.nn_tabs.top > ul.nav-tabs > li.error.active > a {
  border-top-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.error > a,
  .nn_tabs.top > ul.nav-tabs > li.error > a:hover {
    border: 1px solid #dd7a75;
    border-bottom-color: transparent;
  }
}
.nn_tabs.top > ul.nav-tabs > li.grey > a,
.nn_tabs.top > ul.nav-tabs > li.grey > a:hover {
  border-top: 5px solid #b3b3b3;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.grey > a:hover,
.nn_tabs.top > ul.nav-tabs > li.grey.active > a {
  border-top-color: #808080;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.grey > a,
  .nn_tabs.top > ul.nav-tabs > li.grey > a:hover {
    border: 1px solid #b3b3b3;
    border-bottom-color: transparent;
  }
}
.nn_tabs.top > ul.nav-tabs > li.gray > a,
.nn_tabs.top > ul.nav-tabs > li.gray > a:hover {
  border-top: 5px solid #b3b3b3;
  padding-top: 4px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.nn_tabs.top > ul.nav-tabs > li.gray > a:hover,
.nn_tabs.top > ul.nav-tabs > li.gray.active > a {
  border-top-color: #808080;
}
@media (max-width: 768px) {
  .nn_tabs.top > ul.nav-tabs > li.gray > a,
  .nn_tabs.top > ul.nav-tabs > li.gray > a:hover {
    border: 1px solid #b3b3b3;
    border-bottom-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs {
  border-bottom: 0;
  margin-bottom: 18px !important;
  border-top: 1px solid #dddddd;
}
.nn_tabs.bottom > .nav-tabs > li {
  margin-top: -1px !important;
  margin-bottom: 0 !important;
}
.nn_tabs.bottom > .nav-tabs > li > a {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.nn_tabs.bottom > .nav-tabs > li > a:hover {
  border-color: transparent #dddddd #dddddd #dddddd;
}
.nn_tabs.bottom > .nav-tabs > li.active > a,
.nn_tabs.bottom > .nav-tabs > li.active > a:hover {
  border-color: transparent #dddddd #dddddd #dddddd;
}
.nn_tabs.bottom > .nav-tabs > li.blue > a,
.nn_tabs.bottom > .nav-tabs > li.blue > a:hover {
  border-bottom: 5px solid #74b4e8;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.blue > a:hover,
.nn_tabs.bottom > .nav-tabs > li.blue.active > a {
  border-bottom-color: #2384d3;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.blue > a,
  .nn_tabs.bottom > .nav-tabs > li.blue > a:hover {
    border: 1px solid #74b4e8;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs > li.primary > a,
.nn_tabs.bottom > .nav-tabs > li.primary > a:hover {
  border-bottom: 5px solid #74b4e8;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.primary > a:hover,
.nn_tabs.bottom > .nav-tabs > li.primary.active > a {
  border-bottom-color: #2384d3;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.primary > a,
  .nn_tabs.bottom > .nav-tabs > li.primary > a:hover {
    border: 1px solid #74b4e8;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs > li.info > a,
.nn_tabs.bottom > .nav-tabs > li.info > a:hover {
  border-bottom: 5px solid #6fc2da;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.info > a:hover,
.nn_tabs.bottom > .nav-tabs > li.info.active > a {
  border-bottom-color: #2f96b4;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.info > a,
  .nn_tabs.bottom > .nav-tabs > li.info > a:hover {
    border: 1px solid #6fc2da;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs > li.green > a,
.nn_tabs.bottom > .nav-tabs > li.green > a:hover {
  border-bottom: 5px solid #91c991;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.green > a:hover,
.nn_tabs.bottom > .nav-tabs > li.green.active > a {
  border-bottom-color: #51a351;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.green > a,
  .nn_tabs.bottom > .nav-tabs > li.green > a:hover {
    border: 1px solid #91c991;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs > li.success > a,
.nn_tabs.bottom > .nav-tabs > li.success > a:hover {
  border-bottom: 5px solid #91c991;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.success > a:hover,
.nn_tabs.bottom > .nav-tabs > li.success.active > a {
  border-bottom-color: #51a351;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.success > a,
  .nn_tabs.bottom > .nav-tabs > li.success > a:hover {
    border: 1px solid #91c991;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs > li.orange > a,
.nn_tabs.bottom > .nav-tabs > li.orange > a:hover {
  border-bottom: 5px solid #fbbf69;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.orange > a:hover,
.nn_tabs.bottom > .nav-tabs > li.orange.active > a {
  border-bottom-color: #f89406;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.orange > a,
  .nn_tabs.bottom > .nav-tabs > li.orange > a:hover {
    border: 1px solid #fbbf69;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs > li.warning > a,
.nn_tabs.bottom > .nav-tabs > li.warning > a:hover {
  border-bottom: 5px solid #fbbf69;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.warning > a:hover,
.nn_tabs.bottom > .nav-tabs > li.warning.active > a {
  border-bottom-color: #f89406;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.warning > a,
  .nn_tabs.bottom > .nav-tabs > li.warning > a:hover {
    border: 1px solid #fbbf69;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs > li.red > a,
.nn_tabs.bottom > .nav-tabs > li.red > a:hover {
  border-bottom: 5px solid #dd7a75;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.red > a:hover,
.nn_tabs.bottom > .nav-tabs > li.red.active > a {
  border-bottom-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.red > a,
  .nn_tabs.bottom > .nav-tabs > li.red > a:hover {
    border: 1px solid #dd7a75;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs > li.danger > a,
.nn_tabs.bottom > .nav-tabs > li.danger > a:hover {
  border-bottom: 5px solid #dd7a75;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.danger > a:hover,
.nn_tabs.bottom > .nav-tabs > li.danger.active > a {
  border-bottom-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.danger > a,
  .nn_tabs.bottom > .nav-tabs > li.danger > a:hover {
    border: 1px solid #dd7a75;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs > li.error > a,
.nn_tabs.bottom > .nav-tabs > li.error > a:hover {
  border-bottom: 5px solid #dd7a75;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.error > a:hover,
.nn_tabs.bottom > .nav-tabs > li.error.active > a {
  border-bottom-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.error > a,
  .nn_tabs.bottom > .nav-tabs > li.error > a:hover {
    border: 1px solid #dd7a75;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs > li.grey > a,
.nn_tabs.bottom > .nav-tabs > li.grey > a:hover {
  border-bottom: 5px solid #b3b3b3;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.grey > a:hover,
.nn_tabs.bottom > .nav-tabs > li.grey.active > a {
  border-bottom-color: #808080;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.grey > a,
  .nn_tabs.bottom > .nav-tabs > li.grey > a:hover {
    border: 1px solid #b3b3b3;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom > .nav-tabs > li.gray > a,
.nn_tabs.bottom > .nav-tabs > li.gray > a:hover {
  border-bottom: 5px solid #b3b3b3;
  padding-bottom: 4px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.nn_tabs.bottom > .nav-tabs > li.gray > a:hover,
.nn_tabs.bottom > .nav-tabs > li.gray.active > a {
  border-bottom-color: #808080;
}
@media (max-width: 768px) {
  .nn_tabs.bottom > .nav-tabs > li.gray > a,
  .nn_tabs.bottom > .nav-tabs > li.gray > a:hover {
    border: 1px solid #b3b3b3;
    border-top-color: transparent;
  }
}
.nn_tabs.bottom.outline_content > .tab-content {
  margin: 0;
  border: 1px solid #dddddd;
  border-bottom: none;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.nn_tabs.left > .nav-tabs,
.nn_tabs.right > .nav-tabs {
  border-bottom: 0;
  margin-bottom: 18px !important;
}
.nn_tabs.left > .nav-tabs > li,
.nn_tabs.right > .nav-tabs > li {
  float: none;
}
.nn_tabs.left > .nav-tabs > li > a,
.nn_tabs.right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}
.nn_tabs.left.outline_content > .tab-content,
.nn_tabs.right.outline_content > .tab-content {
  border: 1px solid #4e4e4e;
}
.nn_tabs.left > .nav-tabs {
  float: left;
  margin-right: 0px;
  border-right: 1px solid #4e4e4e;
}
.nn_tabs.left > .nav-tabs > li {
  margin-right: -1px !important;
  margin-bottom: 0 !important;
}
.nn_tabs.left > .nav-tabs > li > a {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.nn_tabs.left > .nav-tabs > li > a:hover {
  border-color: #4e4e4e transparent #4e4e4e #4e4e4e;
}
.nn_tabs.left > .nav-tabs > li.active > a,
.nn_tabs.left > .nav-tabs > li.active > a:hover {
  border-color: #4e4e4e transparent #4e4e4e #4e4e4e;
}
.nn_tabs.left > .nav-tabs > li.blue > a,
.nn_tabs.left > .nav-tabs > li.blue > a:hover {
  border-left: 5px solid #74b4e8;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.blue > a:hover,
.nn_tabs.left > .nav-tabs > li.blue.active > a {
  border-left-color: #2384d3;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.blue > a,
  .nn_tabs.left > .nav-tabs > li.blue > a:hover {
    border: 1px solid #74b4e8;
    border-right-color: transparent;
  }
}
.nn_tabs.left > .nav-tabs > li.primary > a,
.nn_tabs.left > .nav-tabs > li.primary > a:hover {
  border-left: 5px solid #74b4e8;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.primary > a:hover,
.nn_tabs.left > .nav-tabs > li.primary.active > a {
  border-left-color: #2384d3;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.primary > a,
  .nn_tabs.left > .nav-tabs > li.primary > a:hover {
    border: 1px solid #74b4e8;
    border-right-color: transparent;
  }
}
.nn_tabs.left > .nav-tabs > li.info > a,
.nn_tabs.left > .nav-tabs > li.info > a:hover {
  border-left: 5px solid #6fc2da;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.info > a:hover,
.nn_tabs.left > .nav-tabs > li.info.active > a {
  border-left-color: #2f96b4;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.info > a,
  .nn_tabs.left > .nav-tabs > li.info > a:hover {
    border: 1px solid #6fc2da;
    border-right-color: transparent;
  }
}
.nn_tabs.left > .nav-tabs > li.green > a,
.nn_tabs.left > .nav-tabs > li.green > a:hover {
  border-left: 5px solid #91c991;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.green > a:hover,
.nn_tabs.left > .nav-tabs > li.green.active > a {
  border-left-color: #51a351;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.green > a,
  .nn_tabs.left > .nav-tabs > li.green > a:hover {
    border: 1px solid #91c991;
    border-right-color: transparent;
  }
}
.nn_tabs.left > .nav-tabs > li.success > a,
.nn_tabs.left > .nav-tabs > li.success > a:hover {
  border-left: 5px solid #91c991;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.success > a:hover,
.nn_tabs.left > .nav-tabs > li.success.active > a {
  border-left-color: #51a351;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.success > a,
  .nn_tabs.left > .nav-tabs > li.success > a:hover {
    border: 1px solid #91c991;
    border-right-color: transparent;
  }
}
.nn_tabs.left > .nav-tabs > li.orange > a,
.nn_tabs.left > .nav-tabs > li.orange > a:hover {
  border-left: 5px solid #fbbf69;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.orange > a:hover,
.nn_tabs.left > .nav-tabs > li.orange.active > a {
  border-left-color: #f89406;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.orange > a,
  .nn_tabs.left > .nav-tabs > li.orange > a:hover {
    border: 1px solid #fbbf69;
    border-right-color: transparent;
  }
}
.nn_tabs.left > .nav-tabs > li.warning > a,
.nn_tabs.left > .nav-tabs > li.warning > a:hover {
  border-left: 5px solid #fbbf69;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.warning > a:hover,
.nn_tabs.left > .nav-tabs > li.warning.active > a {
  border-left-color: #f89406;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.warning > a,
  .nn_tabs.left > .nav-tabs > li.warning > a:hover {
    border: 1px solid #fbbf69;
    border-right-color: transparent;
  }
}
.nn_tabs.left > .nav-tabs > li.red > a,
.nn_tabs.left > .nav-tabs > li.red > a:hover {
  border-left: 5px solid #dd7a75;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.red > a:hover,
.nn_tabs.left > .nav-tabs > li.red.active > a {
  border-left-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.red > a,
  .nn_tabs.left > .nav-tabs > li.red > a:hover {
    border: 1px solid #dd7a75;
    border-right-color: transparent;
  }
}
.nn_tabs.left > .nav-tabs > li.danger > a,
.nn_tabs.left > .nav-tabs > li.danger > a:hover {
  border-left: 5px solid #dd7a75;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.danger > a:hover,
.nn_tabs.left > .nav-tabs > li.danger.active > a {
  border-left-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.danger > a,
  .nn_tabs.left > .nav-tabs > li.danger > a:hover {
    border: 1px solid #dd7a75;
    border-right-color: transparent;
  }
}
.nn_tabs.left > .nav-tabs > li.error > a,
.nn_tabs.left > .nav-tabs > li.error > a:hover {
  border-left: 5px solid #dd7a75;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.error > a:hover,
.nn_tabs.left > .nav-tabs > li.error.active > a {
  border-left-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.error > a,
  .nn_tabs.left > .nav-tabs > li.error > a:hover {
    border: 1px solid #dd7a75;
    border-right-color: transparent;
  }
}
.nn_tabs.left > .nav-tabs > li.grey > a,
.nn_tabs.left > .nav-tabs > li.grey > a:hover {
  border-left: 5px solid #b3b3b3;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.grey > a:hover,
.nn_tabs.left > .nav-tabs > li.grey.active > a {
  border-left-color: #808080;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.grey > a,
  .nn_tabs.left > .nav-tabs > li.grey > a:hover {
    border: 1px solid #b3b3b3;
    border-right-color: transparent;
  }
}
.nn_tabs.left > .nav-tabs > li.gray > a,
.nn_tabs.left > .nav-tabs > li.gray > a:hover {
  border-left: 5px solid #b3b3b3;
  padding-left: 7px;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.nn_tabs.left > .nav-tabs > li.gray > a:hover,
.nn_tabs.left > .nav-tabs > li.gray.active > a {
  border-left-color: #808080;
}
@media (max-width: 768px) {
  .nn_tabs.left > .nav-tabs > li.gray > a,
  .nn_tabs.left > .nav-tabs > li.gray > a:hover {
    border: 1px solid #b3b3b3;
    border-right-color: transparent;
  }
}
.nn_tabs.left.outline_content > .tab-content {
  -webkit-border-radius: 0 4px 4px 4px;
  -moz-border-radius: 0 4px 4px 4px;
  border-radius: 0 4px 4px 4px;
  min-height: 400px !important;
}
.nn_tabs.right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #dddddd;
}
.nn_tabs.right > .nav-tabs > li {
  margin-left: -1px !important;
  margin-bottom: 0 !important;
}
.nn_tabs.right > .nav-tabs > li > a {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.nn_tabs.right > .nav-tabs > li > a:hover {
  border-color: #dddddd #dddddd #dddddd transparent;
}
.nn_tabs.right > .nav-tabs > li.active > a,
.nn_tabs.right > .nav-tabs > li.active > a:hover {
  border-color: #dddddd #dddddd #dddddd transparent;
}
.nn_tabs.right > .nav-tabs > li.blue > a,
.nn_tabs.right > .nav-tabs > li.blue > a:hover {
  border-right: 5px solid #74b4e8;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.blue > a:hover,
.nn_tabs.right > .nav-tabs > li.blue.active > a {
  border-right-color: #2384d3;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.blue > a,
  .nn_tabs.right > .nav-tabs > li.blue > a:hover {
    border: 1px solid #74b4e8;
    border-left-color: transparent;
  }
}
.nn_tabs.right > .nav-tabs > li.primary > a,
.nn_tabs.right > .nav-tabs > li.primary > a:hover {
  border-right: 5px solid #74b4e8;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.primary > a:hover,
.nn_tabs.right > .nav-tabs > li.primary.active > a {
  border-right-color: #2384d3;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.primary > a,
  .nn_tabs.right > .nav-tabs > li.primary > a:hover {
    border: 1px solid #74b4e8;
    border-left-color: transparent;
  }
}
.nn_tabs.right > .nav-tabs > li.info > a,
.nn_tabs.right > .nav-tabs > li.info > a:hover {
  border-right: 5px solid #6fc2da;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.info > a:hover,
.nn_tabs.right > .nav-tabs > li.info.active > a {
  border-right-color: #2f96b4;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.info > a,
  .nn_tabs.right > .nav-tabs > li.info > a:hover {
    border: 1px solid #6fc2da;
    border-left-color: transparent;
  }
}
.nn_tabs.right > .nav-tabs > li.green > a,
.nn_tabs.right > .nav-tabs > li.green > a:hover {
  border-right: 5px solid #91c991;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.green > a:hover,
.nn_tabs.right > .nav-tabs > li.green.active > a {
  border-right-color: #51a351;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.green > a,
  .nn_tabs.right > .nav-tabs > li.green > a:hover {
    border: 1px solid #91c991;
    border-left-color: transparent;
  }
}
.nn_tabs.right > .nav-tabs > li.success > a,
.nn_tabs.right > .nav-tabs > li.success > a:hover {
  border-right: 5px solid #91c991;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.success > a:hover,
.nn_tabs.right > .nav-tabs > li.success.active > a {
  border-right-color: #51a351;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.success > a,
  .nn_tabs.right > .nav-tabs > li.success > a:hover {
    border: 1px solid #91c991;
    border-left-color: transparent;
  }
}
.nn_tabs.right > .nav-tabs > li.orange > a,
.nn_tabs.right > .nav-tabs > li.orange > a:hover {
  border-right: 5px solid #fbbf69;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.orange > a:hover,
.nn_tabs.right > .nav-tabs > li.orange.active > a {
  border-right-color: #f89406;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.orange > a,
  .nn_tabs.right > .nav-tabs > li.orange > a:hover {
    border: 1px solid #fbbf69;
    border-left-color: transparent;
  }
}
.nn_tabs.right > .nav-tabs > li.warning > a,
.nn_tabs.right > .nav-tabs > li.warning > a:hover {
  border-right: 5px solid #fbbf69;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.warning > a:hover,
.nn_tabs.right > .nav-tabs > li.warning.active > a {
  border-right-color: #f89406;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.warning > a,
  .nn_tabs.right > .nav-tabs > li.warning > a:hover {
    border: 1px solid #fbbf69;
    border-left-color: transparent;
  }
}
.nn_tabs.right > .nav-tabs > li.red > a,
.nn_tabs.right > .nav-tabs > li.red > a:hover {
  border-right: 5px solid #dd7a75;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.red > a:hover,
.nn_tabs.right > .nav-tabs > li.red.active > a {
  border-right-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.red > a,
  .nn_tabs.right > .nav-tabs > li.red > a:hover {
    border: 1px solid #dd7a75;
    border-left-color: transparent;
  }
}
.nn_tabs.right > .nav-tabs > li.danger > a,
.nn_tabs.right > .nav-tabs > li.danger > a:hover {
  border-right: 5px solid #dd7a75;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.danger > a:hover,
.nn_tabs.right > .nav-tabs > li.danger.active > a {
  border-right-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.danger > a,
  .nn_tabs.right > .nav-tabs > li.danger > a:hover {
    border: 1px solid #dd7a75;
    border-left-color: transparent;
  }
}
.nn_tabs.right > .nav-tabs > li.error > a,
.nn_tabs.right > .nav-tabs > li.error > a:hover {
  border-right: 5px solid #dd7a75;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.error > a:hover,
.nn_tabs.right > .nav-tabs > li.error.active > a {
  border-right-color: #bd362f;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.error > a,
  .nn_tabs.right > .nav-tabs > li.error > a:hover {
    border: 1px solid #dd7a75;
    border-left-color: transparent;
  }
}
.nn_tabs.right > .nav-tabs > li.grey > a,
.nn_tabs.right > .nav-tabs > li.grey > a:hover {
  border-right: 5px solid #b3b3b3;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.grey > a:hover,
.nn_tabs.right > .nav-tabs > li.grey.active > a {
  border-right-color: #808080;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.grey > a,
  .nn_tabs.right > .nav-tabs > li.grey > a:hover {
    border: 1px solid #b3b3b3;
    border-left-color: transparent;
  }
}
.nn_tabs.right > .nav-tabs > li.gray > a,
.nn_tabs.right > .nav-tabs > li.gray > a:hover {
  border-right: 5px solid #b3b3b3;
  padding-right: 7px;
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.nn_tabs.right > .nav-tabs > li.gray > a:hover,
.nn_tabs.right > .nav-tabs > li.gray.active > a {
  border-right-color: #808080;
}
@media (max-width: 768px) {
  .nn_tabs.right > .nav-tabs > li.gray > a,
  .nn_tabs.right > .nav-tabs > li.gray > a:hover {
    border: 1px solid #b3b3b3;
    border-left-color: transparent;
  }
}
.nn_tabs.right.outline_content > .tab-content {
  -webkit-border-radius: 4px 0 4px 4px;
  -moz-border-radius: 4px 0 4px 4px;
  border-radius: 4px 0 4px 4px;
}
