/* ==========================================================================
  Styles - used to import and order stylesheets
========================================================================== */
/* ==========================================================================
  Variables
========================================================================== */
/* ==========================================================================
  Mixins
========================================================================== */
/**** **** **** **** ****

BORDER RADIUS -

USAGE: @include border-radius(10px);
**** **** **** **** ****/
/**** **** **** **** ****

BOX SHADOW -

USAGE: @include box-shadow(1px 1px 1px 1px rgba(0,0,0,.5));
**** **** **** **** ****/
/**** **** **** **** ****

GRADIENT -

USAGE: @include css-gradient(#dfdfdf, #f8f8f8);
**** **** **** **** ****/
/**** **** **** **** ****

HORIZONTAL GRADIENT -

USAGE: @include css-horizontal-gradient(#dfdfdf, #f8f8f8);
**** **** **** **** ****/
/**** **** **** **** ****

RADIAL GRADIENT -

USAGE: @include css-radial-gradient(#dfdfdf, #f8f8f8);
**** **** **** **** ****/
/**** **** **** **** ****

TRANSITION -

USAGE: @include transition(all 0.2s ease-in-out);
**** **** **** **** ****/
/**** **** **** **** ****

TRANSFORM -

USAGE: @include transform(scale(1.1));
**** **** **** **** ****/
/**** **** **** **** ****

ANIMATION DELAY -

USAGE: @include animation-delay(1s);
**** **** **** **** ****/
/**** **** **** **** ****

ANIMATION DURATION -

USAGE: @include animation-duration(1s);
**** **** **** **** ****/
/**** **** **** **** ****

ANIMATION FILL MODE -

USAGE: @include animation-fill-mode(both);
**** **** **** **** ****/
/**** **** **** **** ****

ANIMATION NAME -

USAGE: @include animation-name(fadeIn);
**** **** **** **** ****/
/**** **** **** **** ****

BREAKPOINTS -

USAGE: @include breakpoint(mobile) {}
**** **** **** **** ****/
/* ==========================================================================
  Animations
========================================================================== */
.animate, .popover-list li.show > i:before, .popover, .tab-content {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  -o-animation-duration: 0.2s;
  animation-duration: 0.2s; }

/**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****
  Fade In Down
**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****/
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px); }

  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }

@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px); }

  100% {
    opacity: 1;
    -o-transform: translateY(0); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px); }

  100% {
    opacity: 1;
    transform: translateY(0); } }

/**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****
  Fade In Up
**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****/
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px); }

  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px); }

  100% {
    opacity: 1;
    -o-transform: translateY(0); } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); }

  100% {
    opacity: 1;
    transform: translateY(0); } }

/**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****
  Fade In
**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-o-keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

/**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****
  Turn
**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****/
@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(45deg); } }

@-moz-keyframes turn {
  0% {
    -moz-transform: rotate(0deg); }

  100% {
    -moz-transform: rotate(45deg); } }

@-o-keyframes turn {
  0% {
    -o-transform: rotate(0deg); }

  100% {
    -o-transform: rotate(45deg); } }

@keyframes turn {
  0% {
    transform: rotate(0deg); }

  100% {
    transform: rotate(45deg); } }

/* ==========================================================================
  Based on - normalize.css v1.1.1 | MIT License | git.io/normalize
========================================================================== */
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden] {
  display: none; }

abbr[title] {
  border-bottom: 1px dotted; }

dfn {
  font-style: italic; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  height: 1px;
  border: 0;
  margin: 70px 0;
  padding: 0;
  background-color: #aaa;
  background-image: -webkit-linear-gradient(left, white, #aaaaaa, #aaaaaa, #aaaaaa, white);
  background-image: -moz-linear-gradient(left, white, #aaaaaa, #aaaaaa, #aaaaaa, white);
  background-image: -ms-linear-gradient(left, white, #aaaaaa, #aaaaaa, #aaaaaa, white);
  background-image: -o-linear-gradient(left, white, #aaaaaa, #aaaaaa, #aaaaaa, white);
  background-image: linear-gradient(left, white, #aaaaaa, #aaaaaa, #aaaaaa, white); }
  hr.solid {
    background-image: none;
    margin: 50px 0; }
  @media (min-width: 980px) and (max-width: 1199px) {
    hr {
      margin: 40px 0; } }
  @media (min-width: 768px) and (max-width: 979px) {
    hr {
      margin: 40px 0; } }
  @media (max-width: 767px) {
    hr {
      margin: 0 0 50px; } }

mark {
  background: #ff0;
  color: #000; }

pre {
  margin: 1em 0; }

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: none; }
  q:before, q:after {
    content: '';
    content: none; }

sub,
sup {
  font-size: 55%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.7em; }

sub {
  bottom: -0.25em; }

dl,
menu,
ol {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

menu,
ol {
  padding: 0 0 0 40px; }

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  vertical-align: middle; }

iframe {
  max-width: 100%; }

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

figure {
  margin: 0; }

::-moz-selection {
  background: #007deb;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #007deb;
  color: #fff;
  text-shadow: 0 1px 1px #333; }

/* ==========================================================================
  Grid - Based on the Twitter Bootstrap
========================================================================== */
.full-width {
  position: relative;
  width: 100%; }

.container {
  position: relative;
  width: 940px;
  margin-right: auto;
  margin-left: auto;
  *zoom: 1; }
  .container:before, .container:after {
    display: table;
    content: ""; }
  .container:after {
    clear: both; }

.row {
  margin-left: -20px;
  *zoom: 1; }
  .row:before, .row:after {
    display: table;
    content: ""; }
  .row:after {
    clear: both; }

[class*="span"] {
  float: left;
  margin-left: 20px;
  min-height: 1px; }

.span12 {
  width: 940px; }

.span11 {
  width: 860px; }

.span10 {
  width: 780px; }

.span9 {
  width: 700px; }

.span8 {
  width: 620px; }

.span7 {
  width: 540px; }

.span6 {
  width: 460px; }

.span5 {
  width: 380px; }

.span4 {
  width: 300px; }

.span3 {
  width: 220px; }

.span2 {
  width: 140px; }

.span1 {
  width: 60px; }

.offset12 {
  margin-left: 980px; }

.offset11 {
  margin-left: 900px; }

.offset10 {
  margin-left: 820px; }

.offset9 {
  margin-left: 740px; }

.offset8 {
  margin-left: 660px; }

.offset7 {
  margin-left: 580px; }

.offset6 {
  margin-left: 500px; }

.offset5 {
  margin-left: 420px; }

.offset4 {
  margin-left: 340px; }

.offset3 {
  margin-left: 260px; }

.offset2 {
  margin-left: 180px; }

.offset1 {
  margin-left: 100px; }

/**** **** **** **** ****
  Large Screen
**** **** **** **** ****/
@media (min-width: 1200px) {
  .row {
    margin-left: -30px; }

  [class*="span"] {
    margin-left: 30px; }

  .container {
    width: 1170px; }

  .span12 {
    width: 1170px; }

  .span11 {
    width: 1070px; }

  .span10 {
    width: 970px; }

  .span9 {
    width: 870px; }

  .span8 {
    width: 770px; }

  .span7 {
    width: 670px; }

  .span6 {
    width: 570px; }

  .span5 {
    width: 470px; }

  .span4 {
    width: 370px; }

  .span3 {
    width: 270px; }

  .span2 {
    width: 170px; }

  .span1 {
    width: 70px; }

  .offset12 {
    margin-left: 1230px; }

  .offset11 {
    margin-left: 1130px; }

  .offset10 {
    margin-left: 1030px; }

  .offset9 {
    margin-left: 930px; }

  .offset8 {
    margin-left: 830px; }

  .offset7 {
    margin-left: 730px; }

  .offset6 {
    margin-left: 630px; }

  .offset5 {
    margin-left: 530px; }

  .offset4 {
    margin-left: 430px; }

  .offset3 {
    margin-left: 330px; }

  .offset2 {
    margin-left: 230px; }

  .offset1 {
    margin-left: 130px; } }
/**** **** **** **** ****
  Medium Screen
**** **** **** **** ****/
@media (min-width: 768px) and (max-width: 979px) {
  .container {
    width: 724px; }

  .span12 {
    width: 724px; }

  .span11 {
    width: 662px; }

  .span10 {
    width: 600px; }

  .span9 {
    width: 538px; }

  .span8 {
    width: 476px; }

  .span7 {
    width: 414px; }

  .span6 {
    width: 352px; }

  .span5 {
    width: 290px; }

  .span4 {
    width: 228px; }

  .span3 {
    width: 166px; }

  .span2 {
    width: 104px; }

  .span1 {
    width: 42px; }

  .offset12 {
    margin-left: 764px; }

  .offset11 {
    margin-left: 702px; }

  .offset10 {
    margin-left: 640px; }

  .offset9 {
    margin-left: 578px; }

  .offset8 {
    margin-left: 516px; }

  .offset7 {
    margin-left: 454px; }

  .offset6 {
    margin-left: 392px; }

  .offset5 {
    margin-left: 330px; }

  .offset4 {
    margin-left: 268px; }

  .offset3 {
    margin-left: 206px; }

  .offset2 {
    margin-left: 144px; }

  .offset1 {
    margin-left: 82px; } }
/**** **** **** **** ****
  Small Screen
**** **** **** **** ****/
@media (max-width: 767px) {
  .container {
    width: auto; }
  .row {
    margin-left: 0; }

  [class*="span"] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 50px; } }
  @media (max-width: 767px) and (max-width: 767px) {
    .container {
      padding-right: 20px;
      padding-left: 20px; } }

/* ==========================================================================
  Typography
========================================================================== */
@font-face {
  font-family: 'FontAwesome';
  src: url("/fonts/fontawesome-webfont.eot?v=3.2.1");
  src: url("/fonts/fontawesome-webfont.eot?#iefix&v=3.2.1") format("embedded-opentype"), url("/fonts/fontawesome-webfont.woff?v=3.2.1") format("woff"), url("/fonts/fontawesome-webfont.ttf?v=3.2.1") format("truetype"), url("/fonts/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1") format("svg");
  font-weight: normal;
  font-style: normal; }

/**** **** **** **** ****
  Base
**** **** **** **** ****/
html {
  background: #fff;
  color: #000;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  -webkit-backface-visibility: hidden; }

html,
button,
input,
select,
textarea {
  color: #525252;
  font-family: "museo-sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300; }

/**** **** **** **** ****
  P's & UL's
**** **** **** **** ****/
p {
  margin: 0 0 24px; }
  p:last-child {
    margin-bottom: 0; }

ul,
ol {
  padding: 0;
  margin: 0 0 24px;
  list-style: none; }
  ul:last-child,
  ol:last-child {
    margin-bottom: 0; }
  ul.highlight,
  ol.highlight {
    font-size: 16px;
    font-weight: 700; }
    @media (min-width: 980px) and (max-width: 1199px) {
      ul.highlight,
      ol.highlight {
        font-size: 15px;
        font-weight: 500; } }
  ul.styled,
  ol.styled {
    list-style: disc;
    padding-left: 37px; }
    ul.styled li,
    ol.styled li {
      margin-bottom: 12px; }

/**** **** **** **** ****
  Links
**** **** **** **** ****/
a {
  color: #f27e00;
  text-decoration: none; }
  a:focus, a:active, a:hover {
    outline: 0;
    color: #333333; }
  a .icon-caret-right {
    color: #333333;
    position: relative;
    right: -4px; }
    @media (min-width: 768px) and (max-width: 979px) {
      a .icon-caret-right {
        display: none; } }
  a.bw img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%); }
  a.bw:hover img, a.bw:focus img {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    filter: grayscale(0); }
  .firefox a.bw img {
    opacity: .7; }
  .firefox a.bw:hover img, .firefox a.bw:focus img {
    opacity: 1; }

.read-more {
  font-size: 20px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .read-more {
      font-size: 18px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .read-more {
      font-size: 16px; } }
  .read-more:after {
    font-family: FontAwesome;
    content: "\f0da";
    position: relative;
    bottom: -1px;
    right: -10px;
    color: #333333; }

/**** **** **** **** ****
  Headlines
**** **** **** **** ****/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0;
  font-family: "museo-sans", helvetica, sans-serif;
  font-weight: 900;
  color: #333333;
  text-transform: none; }

h1, .h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 15px;
  text-transform: uppercase; }
  @media (min-width: 980px) and (max-width: 1199px) {
    h1, .h1 {
      font-size: 45px;
      margin: 0 0 15px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    h1, .h1 {
      font-size: 40px;
      margin: 0 0 15px; } }
  @media (max-width: 767px) {
    h1, .h1 {
      font-size: 35px;
      margin: 0 0 10px; } }

h2, .h2 {
  font-size: 36px;
  line-height: 1.3;
  margin: 0 0 12px;
  font-weight: 700; }
  @media (min-width: 980px) and (max-width: 1199px) {
    h2, .h2 {
      font-size: 33px;
      margin: 0 0 10px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    h2, .h2 {
      font-size: 30px;
      margin: 0 0 10px; } }
  @media (max-width: 767px) {
    h2, .h2 {
      font-size: 23px;
      margin: 0 0 10px; } }

h3, .h3 {
  font-size: 36px;
  line-height: 1.3;
  margin: 0 0 12px;
  font-weight: 700; }
  @media (min-width: 980px) and (max-width: 1199px) {
    h3, .h3 {
      font-size: 25px;
      margin: 0 0 15px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    h3, .h3 {
      font-size: 22px;
      margin: 0 0 10px; } }
  @media (max-width: 767px) {
    h3, .h3 {
      font-size: 20px;
      margin: 0 0 10px; } }
  h3.subhead, .h3.subhead {
    margin: 0 0 10px; }

h4, .h4 {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 12px;
  font-weight: 700; }
  @media (min-width: 980px) and (max-width: 1199px) {
    h4, .h4 {
      font-size: 20px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    h4, .h4 {
      font-size: 18px; } }
  @media (max-width: 767px) {
    h4, .h4 {
      font-size: 18px; } }

h5, .h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 12px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    h5, .h5 {
      font-size: 18px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    h5, .h5 {
      font-size: 16px; } }
  @media (max-width: 767px) {
    h5, .h5 {
      font-size: 16px; } }

h6, .h6 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 12px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    h6, .h6 {
      font-size: 17px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    h6, .h6 {
      font-size: 16px; } }
  @media (max-width: 767px) {
    h6, .h6 {
      font-size: 15px; } }

/**** **** **** **** ****
  Extras
**** **** **** **** ****/
strong {
  font-weight: 700; }

small {
  font-size: 14px; }

blockquote {
  margin: 0;
  font-style: italic;
  color: #666; }

time {
  font-size: 14px;
  color: #777;
  font-weight: 500; }
  @media (min-width: 980px) and (max-width: 1199px) {
    time {
      font-size: 13px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    time {
      font-size: 13px; } }

/******* ******* *******
Fade In
******* ******* *******/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@-o-keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

/******* ******* *******
Fade Out
******* ******* *******/
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-moz-keyframes fadeOut {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@-o-keyframes fadeOut {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }

  100% {
    opacity: 0; } }

/******* ******* *******
Fade In Up
******* ******* *******/
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(5px); }

  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }

@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(5px); }

  100% {
    opacity: 1;
    -o-transform: translateY(0); } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(5px); }

  100% {
    opacity: 1;
    transform: translateY(0); } }

/******* ******* *******
Fade In Down
******* ******* *******/
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px); }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }

@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-10px); }

  100% {
    opacity: 1;
    -moz-transform: translateY(0); } }

@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-10px); }

  100% {
    opacity: 1;
    -o-transform: translateY(0); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-10px); }

  100% {
    opacity: 1;
    transform: translateY(0); } }

/* ==========================================================================
  Forms
========================================================================== */
form {
  margin: 0; }

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical; }

fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px; }

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  outline: none;
  vertical-align: baseline;
  *vertical-align: middle; }

button,
input {
  line-height: normal; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible; }

button[disabled],
html input[disabled] {
  cursor: default; }

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  *height: 13px;
  *width: 13px; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #ccc;
  font-size: 13px;
  padding: 6px 8px;
  -webkit-box-shadow: none;
  box-shadow: none; }
  input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* ==========================================================================
  Tables
========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0; }
  table li {
    padding: 0 0 10px 0; }
    table li:last-of-type {
      padding: 0; }

th {
  background: #333333;
  font-size: 21px;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  font-weight: 300;
  padding: 30px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    th {
      font-size: 17px;
      padding: 20px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    th {
      font-size: 16px;
      padding: 20px; } }
  @media (max-width: 767px) {
    th {
      padding: 8px 5px;
      font-size: 11px; } }

td {
  border: 1px solid #bbb;
  padding: 30px;
  width: 33.3333%;
  vertical-align: top;
  position: relative; }
  @media (min-width: 980px) and (max-width: 1199px) {
    td {
      padding: 20px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    td {
      padding: 20px; } }
  @media (max-width: 767px) {
    td {
      padding: 8px 5px;
      font-size: 10px; } }

.compare td ul {
  list-style:disc; }

/*
.no-firefox tr:last-of-type td {
  border: none;
  padding-bottom: 40px; }
  .no-firefox tr:last-of-type td:before, .no-firefox tr:last-of-type td:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#aaaaaa), to(white));
    background-image: -webkit-linear-gradient(top, #aaaaaa, white);
    background-image: -moz-linear-gradient(top, #aaaaaa, white);
    background-image: -o-linear-gradient(top, #aaaaaa, white);
    background-image: linear-gradient(to bottom, #aaaaaa, white); }
  .no-firefox tr:last-of-type td:after {
    display: none; }
  .no-firefox tr:last-of-type td:last-child:after {
    display: block;
    left: auto;
    right: -1px; }
*/

.solid tr:last-of-type td {
  border: 1px solid #bbb;
  padding-bottom: 30px; }
  .solid tr:last-of-type td:before, .solid tr:last-of-type td:after {
    content: "";
    display: none; }
  .solid tr:last-of-type td:last-child:after {
    display: none; }

/* ==========================================================================
  Header
========================================================================== */
.logo {
  width: 100%;
  margin: 37px 0 0 0;
  display: block; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .logo {
      margin-top: 42px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .logo {
      margin-top: 40px; } }
  @media (max-width: 767px) {
    .logo {
      float: left;
      margin: 0;
      width: auto; } }

header {
  padding: 25px 0;
  font-weight: 500; }
  header h1, header h2 {
    margin: 0; }
  header nav {
    text-align: right;
    text-transform: uppercase; }
    header nav li {
      display: inline-block;
      margin-left: 25px; }
      header nav li.first {
        margin-left: 0; }
      @media (min-width: 980px) and (max-width: 1199px) {
        header nav li {
          margin-left: 13px; } }
      @media (min-width: 768px) and (max-width: 979px) {
        header nav li {
          margin-left: 10px; } }
      @media (max-width: 767px) {
        header nav li {
          margin: 0 3px; } }
  @media (max-width: 767px) {
    header {
      padding: 0 0 20px; }
      header [class*="span"] {
        margin: 0; } }
  header.header-main {
    position: relative;
    z-index: 10000;
    padding: 20px 0;
    height: 119px; }
    @media (max-width: 767px) {
      header.header-main {
        height: auto;
        padding: 10px 0; } }

.nav-social-btn {
  text-align: right;
  position: relative; }
  .nav-social-btn i {
    color: #fff; }
  .nav-social-btn a {
    background: #007deb;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 5px 0 0 0; }
    .nav-social-btn a:hover, .nav-social-btn a:focus {
      color: #fff;
      background: #333333; }
  @media (max-width: 767px) {
    .nav-social-btn {
      text-align: center; }
      .nav-social-btn a {
        width: 40px;
        height: 40px;
        font-size: 24px;
        padding: 7px 0 0 0; } }

.nav-subpage {
	text-transform:none;
}

.header-subpage {
  padding: 18px 0;
  height: 54px;
  width: 100%;
  line-height: 1;
  margin-bottom: 50px;
  background-color: #de7300;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f27e00), to(#de7300));
  background-image: -webkit-linear-gradient(top, #f27e00, #de7300);
  background-image: -moz-linear-gradient(top, #f27e00, #de7300);
  background-image: -o-linear-gradient(top, #f27e00, #de7300);
  background-image: linear-gradient(to bottom, #f27e00, #de7300);
  -webkit-box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.2); }
  .header-subpage li {
    margin-left: 50px; }
  .header-subpage a {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    position: relative; }
    .header-subpage a:hover, .header-subpage a:focus {
      color: #333333; }
      .header-subpage a:hover:after, .header-subpage a:focus:after {
        color: #fff; }
    .header-subpage a.active:after {
      font-family: FontAwesome;
      content: "\f0d8";
      position: absolute;
      left: 50%;
      bottom: -33px;
      width: 24px;
      margin-left: -12px;
      font-size: 38px; }
      @media (min-width: 980px) and (max-width: 1199px) {
        .header-subpage a.active:after {
          bottom: -35px; } }
  @media (min-width: 980px) and (max-width: 1199px) {
    .header-subpage {
      margin-bottom: 30px;
      padding: 20px 0;
      height: 58px; }
      .header-subpage a {
        font-size: 16px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .header-subpage {
      margin-bottom: 20px;
      padding: 20px 0;
      height: 56px; }
      .header-subpage li {
        margin-left: 25px; }
      .header-subpage a {
        font-size: 15px; } }
  @media (max-width: 767px) {
    .header-subpage {
      padding: 5px;
      height: auto; }
      .header-subpage nav {
        display: none; } }
  .lt-ie9 .header-subpage li {
    margin-left: 30px; }

.header-blog {
  margin-bottom: 40px;
  padding: 11px 0 9px;
  position: relative;
  -webkit-box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  background-color: #0070bb;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#007bec), to(#0070bb));
  background-image: -webkit-linear-gradient(top, #007bec, #0070bb);
  background-image: -moz-linear-gradient(top, #007bec, #0070bb);
  background-image: -o-linear-gradient(top, #007bec, #0070bb);
  background-image: linear-gradient(to bottom, #007bec, #0070bb); }
  .header-blog h1,
  .header-blog h2 {
    color: #fff;
    font-size: 34px;
    text-align: center;
    margin: 0;
    line-height: 1; }
    .header-blog h1 a,
    .header-blog h2 a {
      color: #fff; }
      .header-blog h1 a:hover, .header-blog h1 a:focus,
      .header-blog h2 a:hover,
      .header-blog h2 a:focus {
        color: #333333; }
  @media (max-width: 767px) {
    .header-blog {
      margin-bottom: 30px; }
      .header-blog nav {
        display: none; }
      .header-blog h1,
      .header-blog h2 {
        font-size: 28px; } }

.nav-primary {
  font-size: 20px; }
  .nav-primary a {
    color: #333333; }
    .nav-primary a:hover, .nav-primary a:focus, .nav-primary a.active {
      color: #f27e00; }
  .nav-primary li {
    position: relative;
    padding: 5px 0; }
  .nav-primary .dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    width: 180px;
    margin-left: -90px;
    text-align: center;
    background-color: #fff;
    padding: 10px 20px;
    border: 1px solid #bbb;
	text-transform: none;
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15); }
    @media (min-width: 980px) and (max-width: 1199px) {
      .nav-primary .dropdown-menu {
        top: 35px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .nav-primary .dropdown-menu {
        top: 35px; } }
    .nav-primary .dropdown-menu.show {
      display: block;
      -webkit-animation-duration: 0.2s;
      -moz-animation-duration: 0.2s;
      -o-animation-duration: 0.2s;
      animation-duration: 0.2s;
      -webkit-animation-fill-mode: both;
      -moz-animation-fill-mode: both;
      -o-animation-fill-mode: both;
      animation-fill-mode: both;
      -webkit-animation-name: fadeInUp;
      -moz-animation-name: fadeInUp;
      -o-animation-name: fadeInUp;
      animation-name: fadeInUp; }
    .nav-primary .dropdown-menu li {
      padding: 0;
      margin: 0;
	  display:block; }
      .nav-primary .dropdown-menu li:first-of-type a {
        -webkit-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0; }
      .nav-primary .dropdown-menu li:first-of-type a:before {
        content: "";
        display: block;
        background: #fff;
        border: 1px solid #bbb;
        border-right: none;
        border-bottom: none;
        position: absolute;
        top: -17px;
        left: 50%;
        margin-left: -6px;
        width: 12px;
        height: 12px;
        z-index: 9;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }
        @media (min-width: 980px) and (max-width: 1199px) {
          .nav-primary .dropdown-menu li:first-of-type a:before {
            top: -18px; } }
        @media (min-width: 768px) and (max-width: 979px) {
          .nav-primary .dropdown-menu li:first-of-type a:before {
            top: -16px; } }
    .nav-primary .dropdown-menu a {
      font-size: 16px;
      line-height: 1;
      display: block;
      padding: 5px 0; }
      @media (min-width: 768px) and (max-width: 979px) {
        .nav-primary .dropdown-menu a {
          padding: 5px 0; } }
  @media (min-width: 980px) and (max-width: 1199px) {
    .nav-primary {
      font-size: 19px;
      position: relative;
      bottom: -6px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .nav-primary {
      font-size: 16px;
      position: relative;
      bottom: -2px; } }
  @media (max-width: 767px) {
    .nav-primary {
      font-size: 15px;
      margin: 0;
      display: none; } }

.nav-secondary {
  height: 29px;
  font-size: 11px;
  margin-top: 2px;
  margin-bottom: 11px; }
  .nav-secondary li {
    margin-left: 8px; }
  .nav-secondary a {
    color: #666; }
    .nav-secondary a:hover, .nav-secondary a:focus {
      color: #f27e00; }
  @media (max-width: 767px) {
    .nav-secondary {
      display: none; } }

.nav-phone {
  display: none;
  font-size: 30px;
  position: absolute;
  float: right;
  top: 10px;
  right: 0;
  z-index: 5000;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .nav-phone .hide-show-nav {
    margin: 0 20px 0 0;
    color: #333333; }
    .nav-phone .hide-show-nav:hover, .nav-phone .hide-show-nav:focus {
      color: #f27e00; }
  .nav-phone ul {
    background: #333333;
    font-size: 18px;
    display: none;
    float: left;
    text-align: left;
    width: 100%;
    padding: 20px 20px 0 20px; }
    .nav-phone ul a {
      color: #fff; }
      .nav-phone ul a:hover, .nav-phone ul a:focus, .nav-phone ul a:active {
        color: #f27e00; }
    .nav-phone ul li {
      display: block;
      width: 50%;
      float: left;
      margin: 0 0 30px; }
    .nav-phone ul ul {
      font-size: 15px;
      text-transform: none;
      margin: 5px 0 0 0;
      float: none;
      padding: 0; }
      .nav-phone ul ul li {
        display: block;
        margin: 0 0 2px;
        width: 100%; }
  .nav-phone.show ul {
    display: block; }
  @media (max-width: 767px) {
    .nav-phone {
      display: block; } }

/* ==========================================================================
  Main
========================================================================== */
.main li {
  margin: 0 0 5px 0; }
.main .highlight li {
  margin: 0 0 10px 0; }

/* ==========================================================================
  Footer
========================================================================== */
footer {
  font-size: 14px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    footer {
      font-size: 13px; } }

.footer-primary {
  background: #333333;
  padding: 40px 0 40px;
  margin-top: 50px; }
  .footer-primary ul {
    display: block;
    float: left;
    width: 20%; }
    .footer-primary ul.two-grid li.first {
      width: 100%; }
  .footer-primary li {
    margin: 0 0 5px; }
  .footer-primary h5 {
    margin: 0 0 15px; }
  .footer-primary a {
    color: #fff; }
    .footer-primary a:hover, .footer-primary a:focus {
      color: #f27e00; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .footer-primary {
      padding: 55px 0; } }
  @media (max-width: 767px) {
    .footer-primary {
      padding: 20px 0; }
      .footer-primary ul {
        width: 100%;
        float: left;
        margin: 0 0 30px; }
        .footer-primary ul:last-of-type {
          margin: 0; }
        .footer-primary ul.two-grid li {
          width: 50%;
          float: left; }
      .footer-primary li {
        width: 50%;
        display: block;
        float: left; }
        .footer-primary li:first-of-type {
          width: 100%;
          margin: 0 0 5px; }
      .footer-primary h5 {
        margin: 0; } }

.footer-secondary {
  color: #999;
  padding: 25px 0 40px; }
  .footer-secondary li {
    display: inline-block; }
  .footer-secondary a {
    color: #999; }
    .footer-secondary a:hover, .footer-secondary a:focus {
      color: #f27e00; }

.nav-footer-secondary li {
  border-right: 1px solid #999;
  line-height: 1;
  padding-right: 8px;
  margin-right: 5px; }
  .nav-footer-secondary li.last {
    border-right: none;
    padding-right: 0;
    margin-right: 0; }
@media (max-width: 767px) {
  .nav-footer-secondary {
    text-align: center; } }

.nav-footer-social {
  text-align: right;
  position: relative;
  top: -7px; }
  .nav-footer-social li {
    margin-left: 2px; }
  .nav-footer-social a {
    background: #007deb;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 5px 0 0 0; }
    .nav-footer-social a:hover, .nav-footer-social a:focus {
      color: #fff;
      background: #333333; }
  @media (max-width: 767px) {
    .nav-footer-social {
      text-align: center; }
      .nav-footer-social a {
        width: 40px;
        height: 40px;
        font-size: 24px;
        padding: 7px 0 0 0; } }

/* ==========================================================================
  Sticky footer bar
========================================================================== */
#sticky_cta {
    height: 50px;
    position: relative;
    text-align: center;
}
#sticky_cta .floater {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.5);
    bottom: -1px;
    left: 0;
    overflow: hidden;
    padding-top: 15px;
    position: fixed;
    transition: all 0.3s ease 0s;
    white-space: nowrap;
    width: 100%;
    z-index: 2000;
}
#sticky_cta a:hover {
    z-index: 2;
}
.action-basic {
    position: relative;
}
.action-basic, .action-basic:visited, .action-basic:hover, .action-basic:focus {
    -moz-user-select: none;
    cursor: pointer;
    display: inline-block;
    font-family: "soleil","Lucida Grande","Lucida Sans Unicode","Nimbus Sans L",Arial,sans-serif;
    font-weight: normal;
    line-height: normal;
    margin: 0 10px;
    outline: medium none;
    padding: 5px 20px 8px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}
.action-basic:active {
    top: 1px;
}
.action-basic.btn_bkgrd {
    background: none repeat scroll 0 0 #03a0d8;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 0 3px #03a0d8;
    color: white;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.action-basic.btn_bkgrd:hover, .action-basic.btn_bkgrd:focus, .action-basic.btn_bkgrd.hover {
    background: none repeat scroll 0 0 #04b2f0;
    box-shadow: 0 0 0 3px #04b2f0;
}
.action-basic.btn_bkgrd:active {
    background: none repeat scroll 0 0 #00b0ef;
    box-shadow: 0 0 0 3px #00b0ef;
}

/* ==========================================================================
  Buttons
========================================================================== */
.btn {
  font-size: 18px;
  color: #fff;
  padding: 12px 55px;
  text-align: center;
  display: inline-block;
  border: 1px solid #082843;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
  .btn:hover, .btn:focus {
    color: #fff;
    border: 1px solid #0a3355; }
  .btn i {
    position: relative;
    right: -20px;
    bottom: -2px;
    font-size: 23px;
    color: #fff; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .btn {
      font-size: 14px;
      padding: 10px 55px; }
      .btn i {
        font-size: 20px;
        right: -5px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .btn {
      font-size: 12px;
      padding: 10px 55px; }
      .btn i {
        display: none; } }
  @media (max-width: 767px) {
    .btn {
      display: block;
      text-align: center;
      width: 100%; } }

.btn-orange {
  background-color: #d36e00;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f27e00), to(#d36e00));
  background-image: -webkit-linear-gradient(top, #f27e00, #d36e00);
  background-image: -moz-linear-gradient(top, #f27e00, #d36e00);
  background-image: -o-linear-gradient(top, #f27e00, #d36e00);
  background-image: linear-gradient(to bottom, #f27e00, #d36e00); }
  .btn-orange:hover, .btn-orange:focus {
    background-color: #e87900;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ff8807), to(#e87900));
    background-image: -webkit-linear-gradient(top, #ff8807, #e87900);
    background-image: -moz-linear-gradient(top, #ff8807, #e87900);
    background-image: -o-linear-gradient(top, #ff8807, #e87900);
    background-image: linear-gradient(to bottom, #ff8807, #e87900); }

.btn-white {
  color: #CE6200;
  background-color: #dedede;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#dedede));
  background-image: -webkit-linear-gradient(top, white, #dedede);
  background-image: -moz-linear-gradient(top, white, #dedede);
  background-image: -o-linear-gradient(top, white, #dedede);
  background-image: linear-gradient(to bottom, white, #dedede); }
  .btn-white:hover, .btn-white:focus {
    color: #CE6200;
    background-color: #d1d1d1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#d1d1d1));
    background-image: -webkit-linear-gradient(top, #f2f2f2, #d1d1d1);
    background-image: -moz-linear-gradient(top, #f2f2f2, #d1d1d1);
    background-image: -o-linear-gradient(top, #f2f2f2, #d1d1d1);
    background-image: linear-gradient(to bottom, #f2f2f2, #d1d1d1); }
  .btn-white i {
    color: #CE6200; }

/* ==========================================================================
  Icons
========================================================================== */
.social-share,
.social-facebook {
  background: url(/img/structure/icon-social-sprite.png) no-repeat -2px -2px;
  display: block;
  text-indent: -999em;
  overflow: hidden;
  height: 20px;
  width: 49px; }

.social-facebook {
  background-position: -58px -3px;
  width: 57px; }

/**** **** **** **** **** **** ****
FONT AWESOME
**** **** **** **** **** **** ****/
[class^="icon-"],
[class*=" icon-"] {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
  display: inline;
  width: auto;
  height: auto;
  line-height: normal;
  vertical-align: baseline;
  background-image: none;
  background-position: 0% 0%;
  background-repeat: repeat;
  margin-top: 0; }
  [class^="icon-"]:before,
  [class*=" icon-"]:before {
    text-decoration: inherit;
    display: inline-block;
    speak: none; }

.icon-glass:before {
  content: "\f000"; }

.icon-music:before {
  content: "\f001"; }

.icon-search:before {
  content: "\f002"; }

.icon-envelope-alt:before {
  content: "\f003"; }

.icon-heart:before {
  content: "\f004"; }

.icon-star:before {
  content: "\f005"; }

.icon-star-empty:before {
  content: "\f006"; }

.icon-user:before {
  content: "\f007"; }

.icon-film:before {
  content: "\f008"; }

.icon-th-large:before {
  content: "\f009"; }

.icon-th:before {
  content: "\f00a"; }

.icon-th-list:before {
  content: "\f00b"; }

.icon-ok:before {
  content: "\f00c"; }

.icon-remove:before {
  content: "\f00d"; }

.icon-zoom-in:before {
  content: "\f00e"; }

.icon-zoom-out:before {
  content: "\f010"; }

.icon-power-off:before,
.icon-off:before {
  content: "\f011"; }

.icon-signal:before {
  content: "\f012"; }

.icon-gear:before,
.icon-cog:before {
  content: "\f013"; }

.icon-trash:before {
  content: "\f014"; }

.icon-home:before {
  content: "\f015"; }

.icon-file-alt:before {
  content: "\f016"; }

.icon-time:before {
  content: "\f017"; }

.icon-road:before {
  content: "\f018"; }

.icon-download-alt:before {
  content: "\f019"; }

.icon-download:before {
  content: "\f01a"; }

.icon-upload:before {
  content: "\f01b"; }

.icon-inbox:before {
  content: "\f01c"; }

.icon-play-circle:before {
  content: "\f01d"; }

.icon-rotate-right:before,
.icon-repeat:before {
  content: "\f01e"; }

.icon-refresh:before {
  content: "\f021"; }

.icon-list-alt:before {
  content: "\f022"; }

.icon-lock:before {
  content: "\f023"; }

.icon-flag:before {
  content: "\f024"; }

.icon-headphones:before {
  content: "\f025"; }

.icon-volume-off:before {
  content: "\f026"; }

.icon-volume-down:before {
  content: "\f027"; }

.icon-volume-up:before {
  content: "\f028"; }

.icon-qrcode:before {
  content: "\f029"; }

.icon-barcode:before {
  content: "\f02a"; }

.icon-tag:before {
  content: "\f02b"; }

.icon-tags:before {
  content: "\f02c"; }

.icon-book:before {
  content: "\f02d"; }

.icon-bookmark:before {
  content: "\f02e"; }

.icon-print:before {
  content: "\f02f"; }

.icon-camera:before {
  content: "\f030"; }

.icon-font:before {
  content: "\f031"; }

.icon-bold:before {
  content: "\f032"; }

.icon-italic:before {
  content: "\f033"; }

.icon-text-height:before {
  content: "\f034"; }

.icon-text-width:before {
  content: "\f035"; }

.icon-align-left:before {
  content: "\f036"; }

.icon-align-center:before {
  content: "\f037"; }

.icon-align-right:before {
  content: "\f038"; }

.icon-align-justify:before {
  content: "\f039"; }

.icon-list:before {
  content: "\f03a"; }

.icon-indent-left:before {
  content: "\f03b"; }

.icon-indent-right:before {
  content: "\f03c"; }

.icon-facetime-video:before {
  content: "\f03d"; }

.icon-picture:before {
  content: "\f03e"; }

.icon-pencil:before {
  content: "\f040"; }

.icon-map-marker:before {
  content: "\f041"; }

.icon-adjust:before {
  content: "\f042"; }

.icon-tint:before {
  content: "\f043"; }

.icon-edit:before {
  content: "\f044"; }

.icon-share:before {
  content: "\f045"; }

.icon-check:before {
  content: "\f046"; }

.icon-move:before {
  content: "\f047"; }

.icon-step-backward:before {
  content: "\f048"; }

.icon-fast-backward:before {
  content: "\f049"; }

.icon-backward:before {
  content: "\f04a"; }

.icon-play:before {
  content: "\f04b"; }

.icon-pause:before {
  content: "\f04c"; }

.icon-stop:before {
  content: "\f04d"; }

.icon-forward:before {
  content: "\f04e"; }

.icon-fast-forward:before {
  content: "\f050"; }

.icon-step-forward:before {
  content: "\f051"; }

.icon-eject:before {
  content: "\f052"; }

.icon-chevron-left:before {
  content: "\f053"; }

.icon-chevron-right:before {
  content: "\f054"; }

.icon-plus-sign:before {
  content: "\f055"; }

.icon-minus-sign:before {
  content: "\f056"; }

.icon-remove-sign:before {
  content: "\f057"; }

.icon-ok-sign:before {
  content: "\f058"; }

.icon-question-sign:before {
  content: "\f059"; }

.icon-info-sign:before {
  content: "\f05a"; }

.icon-screenshot:before {
  content: "\f05b"; }

.icon-remove-circle:before {
  content: "\f05c"; }

.icon-ok-circle:before {
  content: "\f05d"; }

.icon-ban-circle:before {
  content: "\f05e"; }

.icon-arrow-left:before {
  content: "\f060"; }

.icon-arrow-right:before {
  content: "\f061"; }

.icon-arrow-up:before {
  content: "\f062"; }

.icon-arrow-down:before {
  content: "\f063"; }

.icon-mail-forward:before,
.icon-share-alt:before {
  content: "\f064"; }

.icon-resize-full:before {
  content: "\f065"; }

.icon-resize-small:before {
  content: "\f066"; }

.icon-plus:before {
  content: "\f067"; }

.icon-minus:before {
  content: "\f068"; }

.icon-asterisk:before {
  content: "\f069"; }

.icon-exclamation-sign:before {
  content: "\f06a"; }

.icon-gift:before {
  content: "\f06b"; }

.icon-leaf:before {
  content: "\f06c"; }

.icon-fire:before {
  content: "\f06d"; }

.icon-eye-open:before {
  content: "\f06e"; }

.icon-eye-close:before {
  content: "\f070"; }

.icon-warning-sign:before {
  content: "\f071"; }

.icon-plane:before {
  content: "\f072"; }

.icon-calendar:before {
  content: "\f073"; }

.icon-random:before {
  content: "\f074"; }

.icon-comment:before {
  content: "\f075"; }

.icon-magnet:before {
  content: "\f076"; }

.icon-chevron-up:before {
  content: "\f077"; }

.icon-chevron-down:before {
  content: "\f078"; }

.icon-retweet:before {
  content: "\f079"; }

.icon-shopping-cart:before {
  content: "\f07a"; }

.icon-folder-close:before {
  content: "\f07b"; }

.icon-folder-open:before {
  content: "\f07c"; }

.icon-resize-vertical:before {
  content: "\f07d"; }

.icon-resize-horizontal:before {
  content: "\f07e"; }

.icon-bar-chart:before {
  content: "\f080"; }

.icon-twitter-sign:before {
  content: "\f081"; }

.icon-facebook-sign:before {
  content: "\f082"; }

.icon-camera-retro:before {
  content: "\f083"; }

.icon-key:before {
  content: "\f084"; }

.icon-gears:before,
.icon-cogs:before {
  content: "\f085"; }

.icon-comments:before {
  content: "\f086"; }

.icon-thumbs-up-alt:before {
  content: "\f087"; }

.icon-thumbs-down-alt:before {
  content: "\f088"; }

.icon-star-half:before {
  content: "\f089"; }

.icon-heart-empty:before {
  content: "\f08a"; }

.icon-signout:before {
  content: "\f08b"; }

.icon-linkedin-sign:before {
  content: "\f08c"; }

.icon-pushpin:before {
  content: "\f08d"; }

.icon-external-link:before {
  content: "\f08e"; }

.icon-signin:before {
  content: "\f090"; }

.icon-trophy:before {
  content: "\f091"; }

.icon-github-sign:before {
  content: "\f092"; }

.icon-upload-alt:before {
  content: "\f093"; }

.icon-lemon:before {
  content: "\f094"; }

.icon-phone:before {
  content: "\f095"; }

.icon-unchecked:before,
.icon-check-empty:before {
  content: "\f096"; }

.icon-bookmark-empty:before {
  content: "\f097"; }

.icon-phone-sign:before {
  content: "\f098"; }

.icon-twitter:before {
  content: "\f099"; }

.icon-facebook:before {
  content: "\f09a"; }

.icon-github:before {
  content: "\f09b"; }

.icon-unlock:before {
  content: "\f09c"; }

.icon-credit-card:before {
  content: "\f09d"; }

.icon-rss:before {
  content: "\f09e"; }

.icon-hdd:before {
  content: "\f0a0"; }

.icon-bullhorn:before {
  content: "\f0a1"; }

.icon-bell:before {
  content: "\f0a2"; }

.icon-certificate:before {
  content: "\f0a3"; }

.icon-hand-right:before {
  content: "\f0a4"; }

.icon-hand-left:before {
  content: "\f0a5"; }

.icon-hand-up:before {
  content: "\f0a6"; }

.icon-hand-down:before {
  content: "\f0a7"; }

.icon-circle-arrow-left:before {
  content: "\f0a8"; }

.icon-circle-arrow-right:before {
  content: "\f0a9"; }

.icon-circle-arrow-up:before {
  content: "\f0aa"; }

.icon-circle-arrow-down:before {
  content: "\f0ab"; }

.icon-globe:before {
  content: "\f0ac"; }

.icon-wrench:before {
  content: "\f0ad"; }

.icon-tasks:before {
  content: "\f0ae"; }

.icon-filter:before {
  content: "\f0b0"; }

.icon-briefcase:before {
  content: "\f0b1"; }

.icon-fullscreen:before {
  content: "\f0b2"; }

.icon-group:before {
  content: "\f0c0"; }

.icon-link:before {
  content: "\f0c1"; }

.icon-cloud:before {
  content: "\f0c2"; }

.icon-beaker:before {
  content: "\f0c3"; }

.icon-cut:before {
  content: "\f0c4"; }

.icon-copy:before {
  content: "\f0c5"; }

.icon-paperclip:before,
.icon-paper-clip:before {
  content: "\f0c6"; }

.icon-save:before {
  content: "\f0c7"; }

.icon-sign-blank:before {
  content: "\f0c8"; }

.icon-reorder:before {
  content: "\f0c9"; }

.icon-list-ul:before {
  content: "\f0ca"; }

.icon-list-ol:before {
  content: "\f0cb"; }

.icon-strikethrough:before {
  content: "\f0cc"; }

.icon-underline:before {
  content: "\f0cd"; }

.icon-table:before {
  content: "\f0ce"; }

.icon-magic:before {
  content: "\f0d0"; }

.icon-truck:before {
  content: "\f0d1"; }

.icon-pinterest:before {
  content: "\f0d2"; }

.icon-pinterest-sign:before {
  content: "\f0d3"; }

.icon-google-plus-sign:before {
  content: "\f0d4"; }

.icon-google-plus:before {
  content: "\f0d5"; }

.icon-money:before {
  content: "\f0d6"; }

.icon-caret-down:before {
  content: "\f0d7"; }

.icon-caret-up:before {
  content: "\f0d8"; }

.icon-caret-left:before {
  content: "\f0d9"; }

.icon-caret-right:before {
  content: "\f0da"; }

.icon-columns:before {
  content: "\f0db"; }

.icon-sort:before {
  content: "\f0dc"; }

.icon-sort-down:before {
  content: "\f0dd"; }

.icon-sort-up:before {
  content: "\f0de"; }

.icon-envelope:before {
  content: "\f0e0"; }

.icon-linkedin:before {
  content: "\f0e1"; }

.icon-rotate-left:before,
.icon-undo:before {
  content: "\f0e2"; }

.icon-legal:before {
  content: "\f0e3"; }

.icon-dashboard:before {
  content: "\f0e4"; }

.icon-comment-alt:before {
  content: "\f0e5"; }

.icon-comments-alt:before {
  content: "\f0e6"; }

.icon-bolt:before {
  content: "\f0e7"; }

.icon-sitemap:before {
  content: "\f0e8"; }

.icon-umbrella:before {
  content: "\f0e9"; }

.icon-paste:before {
  content: "\f0ea"; }

.icon-lightbulb:before {
  content: "\f0eb"; }

.icon-exchange:before {
  content: "\f0ec"; }

.icon-cloud-download:before {
  content: "\f0ed"; }

.icon-cloud-upload:before {
  content: "\f0ee"; }

.icon-user-md:before {
  content: "\f0f0"; }

.icon-stethoscope:before {
  content: "\f0f1"; }

.icon-suitcase:before {
  content: "\f0f2"; }

.icon-bell-alt:before {
  content: "\f0f3"; }

.icon-coffee:before {
  content: "\f0f4"; }

.icon-food:before {
  content: "\f0f5"; }

.icon-file-text-alt:before {
  content: "\f0f6"; }

.icon-building:before {
  content: "\f0f7"; }

.icon-hospital:before {
  content: "\f0f8"; }

.icon-ambulance:before {
  content: "\f0f9"; }

.icon-medkit:before {
  content: "\f0fa"; }

.icon-fighter-jet:before {
  content: "\f0fb"; }

.icon-beer:before {
  content: "\f0fc"; }

.icon-h-sign:before {
  content: "\f0fd"; }

.icon-plus-sign-alt:before {
  content: "\f0fe"; }

.icon-double-angle-left:before {
  content: "\f100"; }

.icon-double-angle-right:before {
  content: "\f101"; }

.icon-double-angle-up:before {
  content: "\f102"; }

.icon-double-angle-down:before {
  content: "\f103"; }

.icon-angle-left:before {
  content: "\f104"; }

.icon-angle-right:before {
  content: "\f105"; }

.icon-angle-up:before {
  content: "\f106"; }

.icon-angle-down:before {
  content: "\f107"; }

.icon-desktop:before {
  content: "\f108"; }

.icon-laptop:before {
  content: "\f109"; }

.icon-tablet:before {
  content: "\f10a"; }

.icon-mobile-phone:before {
  content: "\f10b"; }

.icon-circle-blank:before {
  content: "\f10c"; }

.icon-quote-left:before {
  content: "\f10d"; }

.icon-quote-right:before {
  content: "\f10e"; }

.icon-spinner:before {
  content: "\f110"; }

.icon-circle:before {
  content: "\f111"; }

.icon-mail-reply:before,
.icon-reply:before {
  content: "\f112"; }

.icon-github-alt:before {
  content: "\f113"; }

.icon-folder-close-alt:before {
  content: "\f114"; }

.icon-folder-open-alt:before {
  content: "\f115"; }

.icon-expand-alt:before {
  content: "\f116"; }

.icon-collapse-alt:before {
  content: "\f117"; }

.icon-smile:before {
  content: "\f118"; }

.icon-frown:before {
  content: "\f119"; }

.icon-meh:before {
  content: "\f11a"; }

.icon-gamepad:before {
  content: "\f11b"; }

.icon-keyboard:before {
  content: "\f11c"; }

.icon-flag-alt:before {
  content: "\f11d"; }

.icon-flag-checkered:before {
  content: "\f11e"; }

.icon-terminal:before {
  content: "\f120"; }

.icon-code:before {
  content: "\f121"; }

.icon-reply-all:before {
  content: "\f122"; }

.icon-mail-reply-all:before {
  content: "\f122"; }

.icon-star-half-full:before,
.icon-star-half-empty:before {
  content: "\f123"; }

.icon-location-arrow:before {
  content: "\f124"; }

.icon-crop:before {
  content: "\f125"; }

.icon-code-fork:before {
  content: "\f126"; }

.icon-unlink:before {
  content: "\f127"; }

.icon-question:before {
  content: "\f128"; }

.icon-info:before {
  content: "\f129"; }

.icon-exclamation:before {
  content: "\f12a"; }

.icon-superscript:before {
  content: "\f12b"; }

.icon-subscript:before {
  content: "\f12c"; }

.icon-eraser:before {
  content: "\f12d"; }

.icon-puzzle-piece:before {
  content: "\f12e"; }

.icon-microphone:before {
  content: "\f130"; }

.icon-microphone-off:before {
  content: "\f131"; }

.icon-shield:before {
  content: "\f132"; }

.icon-calendar-empty:before {
  content: "\f133"; }

.icon-fire-extinguisher:before {
  content: "\f134"; }

.icon-rocket:before {
  content: "\f135"; }

.icon-maxcdn:before {
  content: "\f136"; }

.icon-chevron-sign-left:before {
  content: "\f137"; }

.icon-chevron-sign-right:before {
  content: "\f138"; }

.icon-chevron-sign-up:before {
  content: "\f139"; }

.icon-chevron-sign-down:before {
  content: "\f13a"; }

.icon-html5:before {
  content: "\f13b"; }

.icon-css3:before {
  content: "\f13c"; }

.icon-anchor:before {
  content: "\f13d"; }

.icon-unlock-alt:before {
  content: "\f13e"; }

.icon-bullseye:before {
  content: "\f140"; }

.icon-ellipsis-horizontal:before {
  content: "\f141"; }

.icon-ellipsis-vertical:before {
  content: "\f142"; }

.icon-rss-sign:before {
  content: "\f143"; }

.icon-play-sign:before {
  content: "\f144"; }

.icon-ticket:before {
  content: "\f145"; }

.icon-minus-sign-alt:before {
  content: "\f146"; }

.icon-check-minus:before {
  content: "\f147"; }

.icon-level-up:before {
  content: "\f148"; }

.icon-level-down:before {
  content: "\f149"; }

.icon-check-sign:before {
  content: "\f14a"; }

.icon-edit-sign:before {
  content: "\f14b"; }

.icon-external-link-sign:before {
  content: "\f14c"; }

.icon-share-sign:before {
  content: "\f14d"; }

.icon-compass:before {
  content: "\f14e"; }

.icon-collapse:before {
  content: "\f150"; }

.icon-collapse-top:before {
  content: "\f151"; }

.icon-expand:before {
  content: "\f152"; }

.icon-euro:before,
.icon-eur:before {
  content: "\f153"; }

.icon-gbp:before {
  content: "\f154"; }

.icon-dollar:before,
.icon-usd:before {
  content: "\f155"; }

.icon-rupee:before,
.icon-inr:before {
  content: "\f156"; }

.icon-yen:before,
.icon-jpy:before {
  content: "\f157"; }

.icon-renminbi:before,
.icon-cny:before {
  content: "\f158"; }

.icon-won:before,
.icon-krw:before {
  content: "\f159"; }

.icon-bitcoin:before,
.icon-btc:before {
  content: "\f15a"; }

.icon-file:before {
  content: "\f15b"; }

.icon-file-text:before {
  content: "\f15c"; }

.icon-sort-by-alphabet:before {
  content: "\f15d"; }

.icon-sort-by-alphabet-alt:before {
  content: "\f15e"; }

.icon-sort-by-attributes:before {
  content: "\f160"; }

.icon-sort-by-attributes-alt:before {
  content: "\f161"; }

.icon-sort-by-order:before {
  content: "\f162"; }

.icon-sort-by-order-alt:before {
  content: "\f163"; }

.icon-thumbs-up:before {
  content: "\f164"; }

.icon-thumbs-down:before {
  content: "\f165"; }

.icon-youtube-sign:before {
  content: "\f166"; }

.icon-youtube:before {
  content: "\f167"; }

.icon-xing:before {
  content: "\f168"; }

.icon-xing-sign:before {
  content: "\f169"; }

.icon-youtube-play:before {
  content: "\f16a"; }

.icon-dropbox:before {
  content: "\f16b"; }

.icon-stackexchange:before {
  content: "\f16c"; }

.icon-instagram:before {
  content: "\f16d"; }

.icon-flickr:before {
  content: "\f16e"; }

.icon-adn:before {
  content: "\f170"; }

.icon-bitbucket:before {
  content: "\f171"; }

.icon-bitbucket-sign:before {
  content: "\f172"; }

.icon-tumblr:before {
  content: "\f173"; }

.icon-tumblr-sign:before {
  content: "\f174"; }

.icon-long-arrow-down:before {
  content: "\f175"; }

.icon-long-arrow-up:before {
  content: "\f176"; }

.icon-long-arrow-left:before {
  content: "\f177"; }

.icon-long-arrow-right:before {
  content: "\f178"; }

.icon-apple:before {
  content: "\f179"; }

.icon-windows:before {
  content: "\f17a"; }

.icon-android:before {
  content: "\f17b"; }

.icon-linux:before {
  content: "\f17c"; }

.icon-dribbble:before {
  content: "\f17d"; }

.icon-skype:before {
  content: "\f17e"; }

.icon-foursquare:before {
  content: "\f180"; }

.icon-trello:before {
  content: "\f181"; }

.icon-female:before {
  content: "\f182"; }

.icon-male:before {
  content: "\f183"; }

.icon-gittip:before {
  content: "\f184"; }

.icon-sun:before {
  content: "\f185"; }

.icon-moon:before {
  content: "\f186"; }

.icon-archive:before {
  content: "\f187"; }

.icon-bug:before {
  content: "\f188"; }

.icon-vk:before {
  content: "\f189"; }

.icon-weibo:before {
  content: "\f18a"; }

.icon-renren:before {
  content: "\f18b"; }

/* ==========================================================================
  Pieces
========================================================================== */
/**** **** **** **** **** **** **** **** ****
  Utility Grids
**** **** **** **** **** **** **** **** ****/
.two-grid > li {
  width: 50%;
  float: left; }
  @media (max-width: 767px) {
    .two-grid > li {
      width: 100%;
      float: none; } }

.three-grid {
  width: 100%;
  display: block; }
  .three-grid > li {
    width: 33.3334%;
    float: left;
    display: block;
    padding: 0 15px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .three-grid > li {
        padding: 0 10px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .three-grid > li {
        padding: 0 10px; } }
    @media (max-width: 767px) {
      .three-grid > li {
        width: 100%;
        float: none;
        padding: 0;
        margin: 0 0 20px; } }

.one-three {
  float: left;
  width: 33.333%;
  padding-right: 30px;
  min-height: 1px; }
  .one-three.last {
    padding-right: 0; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .one-three {
      padding-right: 20px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .one-three {
      padding-right: 20px; } }
  @media (max-width: 767px) {
    .one-three {
      width: 100%;
      float: none;
      padding: 0;
      margin: 0 0 20px; } }

.two-three {
  float: left;
  width: 66.6666%;
  min-height: 1px;
  padding-right: 30px; }
  .two-three.last {
    padding-right: 0; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .two-three {
      padding-right: 20px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .two-three {
      padding-right: 20px; } }
  @media (max-width: 767px) {
    .two-three {
      width: 100%;
      float: none;
      padding: 0;
      margin: 0 0 20px; } }

.three-three {
  float: left;
  width: 100%;
  min-height: 1px; }
  @media (max-width: 767px) {
    .three-three {
      float: none; } }

.four-grid {
  width: 100%;
  display: block; }
  .four-grid > li {
    width: 25%;
    float: left;
    display: block;
    padding: 0 15px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .four-grid > li {
        padding: 0 10px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .four-grid > li {
        padding: 0 10px; } }

.five-grid {
  width: 100%;
  display: block; }
  .five-grid > li {
    width: 20%;
    float: left;
    display: block;
    padding: 0 15px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .five-grid > li {
        padding: 0 10px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .five-grid > li {
        padding: 0 10px; } }

/**** **** **** **** **** **** **** **** ****
  Decoration
**** **** **** **** **** **** **** **** ****/
.borders li {
  position: relative; }
  .borders li:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: white;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#aaaaaa), to(white));
    background-image: -webkit-linear-gradient(top, #aaaaaa, white);
    background-image: -moz-linear-gradient(top, #aaaaaa, white);
    background-image: -o-linear-gradient(top, #aaaaaa, white);
    background-image: linear-gradient(to bottom, #aaaaaa, white); }
  .borders li.last:after {
    display: none; }
@media (max-width: 767px) {
  .borders li {
    height: auto !important;
    margin: 0;
    padding: 0 0 20px;
    border-bottom: 1px solid #bbb; }
    .borders li:after {
      display: none; } }

#rb_true{
    border-right:1px solid #aaaaaa;
	border-image: -webkit-gradient(linear, left top, left bottom, from(#aaaaaa), to(white));
    border-image: -webkit-linear-gradient(top, #aaaaaa, white);
    border-image: -moz-linear-gradient(top, #aaaaaa, white);
    border-image: -o-linear-gradient(top, #aaaaaa, white);
    border-image: linear-gradient(to bottom, #aaaaaa, white); }

.outline {
  border: 1px solid #bbb; }
  .outline h3 {
    margin-bottom: 15px; }
  .outline p {
    margin: 0 0 30px; }
  @media (min-width: 768px) and (max-width: 979px) {
    .outline h3 {
      margin-bottom: 5px; }
    .outline p {
      margin: 0 0 15px;
      font-size: 14px; } }
  @media (max-width: 767px) {
    .outline {
      padding: 20px !important; }
      .outline img {
        width: 100%; } }

/**** **** **** **** **** **** **** **** ****
  List Layout
**** **** **** **** **** **** **** **** ****/
.inline {
  width: 100%;
  display: block; }
  .inline li {
    display: block;
    float: left;
    margin-right: 15px; }
    .inline li:last-of-type {
      margin-right: 0; }
  @media (max-width: 767px) {
    .inline li {
      float: none;
      margin: 0 0 15px 0; }
      .inline li:last-of-type {
        margin-bottom: 0; } }

.inline-three li {
  width: 33.333%;
  padding: 0 5px;
  margin: 0; }
  .inline-three li:first-of-type {
    padding: 0 10px 0 0; }
  .inline-three li:last-of-type {
    padding: 0 0 0 10px; }
  @media (max-width: 767px) {
    .inline-three li {
      width: 100%;
      display: block;
      float: none;
      padding: 0;
      margin: 0 0 10px 0; }
      .inline-three li:first-of-type {
        padding: 0; }
      .inline-three li:last-of-type {
        padding: 0; } }
.inline-three a {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0; }
  .inline-three a i {
    right: -8px; }

.btn-block {
  display: block;
  width: 100%; }
  .btn-block li {
    display: block;
    width: 100%;
    margin: 0 0 10px; }
    .btn-block li:last-of-type {
      margin-bottom: 0; }
  .btn-block .btn {
    display: block;
    width: 100%;
    padding: 8px 12px;
    text-align: left; }
    .btn-block .btn i {
      float: right;
      margin-right: 20px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .btn-block .btn {
        padding: 8px 0;
        text-align: center; }
        .btn-block .btn i {
          float: none;
          margin: 0; } }

/**** **** **** **** **** **** **** **** ****
  Box Layout
**** **** **** **** **** **** **** **** ****/
blockquote li {
  margin: 4px 0 0 0;
  font-style: normal;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #333333; }
  blockquote li:first-of-type {
    color: #007deb; }

.highlight-box .middle {
  height: 154px;
  text-align: center; }
  @media (min-width: 768px) and (max-width: 979px) {
    .highlight-box .middle {
      height: 120px; } }
  .highlight-box .middle.blue h3 {
    color: #fff; }
.highlight-box .border-bottom {
  padding-bottom: 1px; }
.highlight-box h3 {
  margin: 0; }
  .highlight-box h3 span {
    font-size: 95px;
    display: block;
    line-height: .9; }
  @media (min-width: 768px) and (max-width: 979px) {
    .highlight-box h3 {
      font-size: 18px; } }
.highlight-box .content {
  display: block;
  width: 100%;
  padding: 20px;
  font-size: 13px; }
  @media (min-width: 768px) and (max-width: 979px) {
    .highlight-box .content {
      padding: 10px; } }
.highlight-box ul {
  margin: 0 0 20px; }
  .highlight-box ul:last-of-type {
    margin: 0; }
.highlight-box li {
  margin: 0 0 3px 0; }
.highlight-box .btn-block li {
  margin: 0 0 10px; }
  .highlight-box .btn-block li:last-of-type {
    margin-bottom: 0; }
.highlight-box .btn-block .btn {
  padding: 12px 18px; }
.highlight-box .btn {
  display: block;
  padding: 12px 0; }
.highlight-box strong {
  font-size: 14px;
  text-transform: uppercase; }
  .highlight-box strong span {
    text-transform: none;
    font-size: 12px; }
.highlight-box blockquote {
  font-size: 16px;
  margin: 0 0 20px; }
  .highlight-box blockquote p {
    margin: 0 0 10px; }
  .highlight-box blockquote li {
    display: block;
    margin: 0; }
.highlight-box p {
  margin: 0 0 15px; }
@media (max-width: 767px) {
  .highlight-box .middle {
    margin-bottom: 20px; }
  .highlight-box .border-bottom {
    border: none; }
  .highlight-box .content {
    padding: 0; } }

.resource-box {
  padding-bottom: 30px;
  border-bottom: 1px solid #bbb; }
  .resource-box .resource-headline {
    border-bottom: 1px solid #bbb;
    padding: 15px 20px 13px; }
    .resource-box .resource-headline h2 {
      font-size: 16px;
      margin: 0;
      font-weight: 600;
      line-height: 1; }
    .resource-box .resource-headline li {
      margin: 0; }
      .resource-box .resource-headline li:last-of-type {
        float: right;
        position: relative;
        bottom: -5px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .resource-box .resource-headline {
        padding: 20px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .resource-box .resource-headline {
        padding: 10px; }
        .resource-box .resource-headline li:last-of-type {
          bottom: -2px; } }
    @media (max-width: 767px) {
      .resource-box .resource-headline {
        padding: 20px; }
        .resource-box .resource-headline li:last-of-type {
          bottom: -2px; } }
  .resource-box .resource-content h3 {
    font-size: 24px;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 12px; }
  .resource-box .resource-content p,
  .resource-box .resource-content ul {
    font-size: 16px;
    margin-bottom: 12px; }
  .resource-box .resource-content ul {
    list-style: disc;
    padding-left: 32px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .resource-box .resource-content h3 {
      font-size: 18px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .resource-box .resource-content h3 {
      font-size: 16px;
      margin: 0 0 5px; }
    .resource-box .resource-content p {
      font-size: 15px; } }

.info-box {
  border: 1px solid #bbb; }

.info-headline {
  border-bottom: 1px solid #bbb;
  padding: 20px 40px; }
  .info-headline h4 {
    margin: 0; }
  .info-headline li {
    margin: 0; }
    .info-headline li:last-of-type {
      float: right;
      position: relative;
      bottom: -5px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .info-headline {
      padding: 20px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .info-headline {
      padding: 10px; }
      .info-headline li:last-of-type {
        bottom: -2px; } }
  @media (max-width: 767px) {
    .info-headline {
      padding: 20px; }
      .info-headline li:last-of-type {
        bottom: -2px; } }

.info-content {
  padding: 40px; }
  .info-content h4 {
    text-transform: none;
    margin: 0 0 8px; }
    .info-content h4 a {
      color: #333333; }
      .info-content h4 a:hover, .info-content h4 a:focus {
        color: #f27e00; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .info-content {
      padding: 20px; }
      .info-content h4 {
        font-size: 18px;
        margin: 0 0 5px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .info-content {
      padding: 10px; }
      .info-content h4 {
        font-size: 16px;
        margin: 0 0 5px; }
      .info-content p {
        font-size: 15px; } }
  @media (max-width: 767px) {
    .info-content {
      padding: 20px; } }

.news-content li {
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px solid #ccc; }
  .news-content li:last-of-type {
    border-bottom: none;
    margin: 0;
    padding: 0; }
.news-content .read-more {
  margin: 20px 10px 0 0; }

.event-content time {
  display: block;
  float: left;
  clear: none;
  width: 55px;
  height: 55px;
  color: #fff;
  background: #666;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  padding: 7px 0 0 0;
  font-size: 18px; }
  @media (min-width: 768px) and (max-width: 979px) {
    .event-content time {
      font-size: 14px;
      width: 50px;
      height: 50px; } }
.event-content .right {
  clear: none;
  width: 77%; }
.event-content li {
  margin: 0 0 30px; }
  .event-content li:last-of-type {
    margin: 0; }
.event-content h6 {
  text-transform: none;
  margin: 0; }

.promo-box .btn {
  margin-right: 15px; }
  .promo-box .btn:last-of-type {
    margin-right: 0; }
@media (max-width: 767px) {
  .promo-box .btn:last-of-type {
    margin-top: 15px; } }

/**** **** **** **** **** **** **** **** ****
  Popovers
**** **** **** **** **** **** **** **** ****/
.popover-list {
  text-transform: uppercase;
  color: #007deb; }
  .popover-list li {
    margin: 0 0 8px 0;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    padding-left: 30px; }
    .popover-list li:hover, .popover-list li:focus {
      color: #333333; }
    .popover-list li.show > i:before {
      -webkit-animation-duration: 0.1s;
      -moz-animation-duration: 0.1s;
      -o-animation-duration: 0.1s;
      animation-duration: 0.1s;
      -webkit-animation-name: turn;
      -moz-animation-name: turn;
      -o-animation-name: turn;
      animation-name: turn; }
  .popover-list i {
    color: #f27e00;
    font-size: 18px;
    margin-right: 10px;
    bottom: -2px;
    position: relative;
    margin-left: -29px; }
  @media (min-width: 768px) and (max-width: 979px) {
    .popover-list {
      font-size: 15px; } }

.popover {
  text-transform: none;
  cursor: default;
  color: #525252;
  font-size: 16px;
  font-weight: 300;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 360px;
  padding: 0 0 10px 0;
  display: none; }
  .show .popover {
    display: block;
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown; }
  @media (max-width: 767px) {
    .popover {
      width: 100%; } }

.popover-content {
  background: #fff;
  padding: 15px;
  border: 1px solid #bbb;
  font-size: 14px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3); }
  .popover-content p {
    margin: 0 0 10px; }
  .popover-content:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #bbb;
    border-top: none;
    border-left: none;
    position: absolute;
    left: 20%;
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); }
  .popover-content i {
    color: #333333; }
  .lt-ie9 .popover-content:after {
    display: none; }

.search {
  position: relative;
  top: -2px; }
  .search .searchinput {
    padding-right: 25px; }
    .search .searchinput.full-width {
      width: 100%;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box; }
  .search button {
    border: 0;
    background: none;
    padding: 0;
    position: absolute;
    right: 7px;
    top: 6px;
    font-size: 15px; }

.site-map ul {
  display: block;
  float: left;
  width: 20%; }
  .site-map ul.two-grid li.first {
    width: 100%; }
.site-map li {
  margin: 0 0 5px; }
.site-map h5 {
  margin: 0 0 15px; }
.site-map a {
  color: #333; }
  .site-map a:hover, .site-map a:focus {
    color: #f27e00; }

/* ==========================================================================
  Sliders
========================================================================== */
/**** **** **** **** ****
  General Slider
**** **** **** **** ****/
.slider {
  position: relative;
  padding-top: 45px;
  margin-top: -45px; }
  .slider .span3 img {
    max-height: 220px; }
  .slider h5 {
    text-transform: none; }
  .slider .slidesjs-container {
    overflow: hidden;
    height: 500px !important; }
  .slider .slidesjs-pagination {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000; }
    .slider .slidesjs-pagination li {
      display: inline-block;
      margin: 0 0 0 4px; }
    .slider .slidesjs-pagination a {
      font-size: 14px;
      color: #bbb; }
      .slider .slidesjs-pagination a:hover i:before, .slider .slidesjs-pagination a:focus i:before, .slider .slidesjs-pagination a.active i:before {
        content: "\f10c"; }
  .slider p {
    margin: 0 0 10px; }
  @media (max-width: 767px) {
    .slider {
      height: 850px;
      margin-top: 30px;
      overflow: hidden; }
      .slider .span7 p {
        display: none; }
      .slider .slidesjs-container {
        height: 850px !important; }
      .slider .slidesjs-pagination {
        top: 0;
        left: 0; }
        .slider .slidesjs-pagination li {
          margin: 0 4px 0 0; }
      .slider img {
        width: 100%;
        margin: 0 0 -25px; }
      .slider h5 {
        margin: 0 0 20px; } }

.slide .row {
  margin-top: 40px; }
.slide blockquote {
  margin-bottom: 10px; }
@media (min-width: 980px) and (max-width: 1199px) {
  .slide .row {
    margin-top: 30px; } }
@media (max-width: 767px) {
  .slide {
    padding: 40px 20px 0;
    overflow: hidden; }
    .slide .row {
      margin-top: 0; } }

/**** **** **** **** ****
  Hero Slider - homepage
**** **** **** **** ****/
.hero-slider {
  position: relative;
  height: 440px; }
  .hero-slider .slidesjs-pagination {
    position: absolute;
    bottom: 45px;
    left: 50%;
    margin-left: -36px;
    z-index: 1000;
    font-size: 16px; }
    .hero-slider .slidesjs-pagination li {
      display: inline-block;
      margin: 0 2px; }
    .hero-slider .slidesjs-pagination a {
      color: #525252; }
      .hero-slider .slidesjs-pagination a:hover, .hero-slider .slidesjs-pagination a:focus, .hero-slider .slidesjs-pagination a.active {
        color: #ccc; }
  .hero-slider .cta {
    width: 100%;
    height: 85px;
    background: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: right;
    padding: 15px 0;
    font-size: 17px; }
    .hero-slider .cta ul {
      margin: 0;
      padding: 0; }
    .hero-slider .cta li {
      margin: 0 0 5px; }
      .hero-slider .cta li:last-of-type {
        margin: 0; }
    .hero-slider .cta a {
      color: #333; }
      .hero-slider .cta a:hover, .hero-slider .cta a:focus {
        color: #f27e00; }
      .hero-slider .cta a i {
        margin-left: 10px; }
    .hero-slider .cta .inner {
      width: 960px;
      margin: 0 auto; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .hero-slider {
      height: 400px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .hero-slider {
      height: 390px; }
      .hero-slider .cta .inner {
        width: 724px; } }
  @media (max-width: 767px) {
    .hero-slider {
      height: 400px; }
      .hero-slider .slidesjs-pagination {
        left: 20px;
        margin-left: 0; }
      .hero-slider .cta .inner {
        width: 100%;
        padding-right: 20px; } }
  .lt-ie9 .hero-slider .slidesjs-pagination {
    bottom: 25px; }

.hero-slide {
  padding: 0;
  height: 440px;
  background-color: #0070bb;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#007bec), to(#0070bb));
  background-image: -webkit-linear-gradient(top, #007bec, #0070bb);
  background-image: -moz-linear-gradient(top, #007bec, #0070bb);
  background-image: -o-linear-gradient(top, #007bec, #0070bb);
  background-image: linear-gradient(to bottom, #007bec, #0070bb);
  -webkit-box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 2px 3px 0 rgba(0, 0, 0, 0.2); }
  .hero-slide .slide-inner {
    background: url(/img/slides/bg-slide-logo.png) no-repeat center 50%;
    height: 440px;
    padding: 40px 0 0 0; }
  .hero-slide .container {
    position: relative; }
  .hero-slide .content {
    float: left;
    width: 490px; }
    .hero-slide .content ul {
      list-style: disc;
      padding-left: 17px;
      float: left;
      margin: 0;
      font-size: 20px; }
    .hero-slide .content li {
      margin: 0 0 4px; }
  .hero-slide h2 {
    margin: 0 0 10px;
    color: #fff;
    font-weight: 500;
    font-size: 45px;
    display: block; }
    span .hero-slide h2.hero-slide-2 {
      font-size: 100px;
      display: block;
      float: left;
      margin-right: 5px; }
  .hero-slide img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1500; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .hero-slide {
      height: 400px; }
      .hero-slide .slide-inner {
        height: 400px; }
      .hero-slide .content {
        width: 400px;
        font-size: 20px; }
      .hero-slide h2 {
        font-size: 37px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .hero-slide {
      height: 390px; }
      .hero-slide .slide-inner {
        height: 390px; }
      .hero-slide .content {
        width: 355px;
        font-size: 16px; }
      .hero-slide h2 {
        font-size: 28px; } }
  @media (max-width: 767px) {
    .hero-slide {
      height: 400px; }
      .hero-slide .slide-inner {
        height: 430px; }
      .hero-slide .content {
        width: 100%;
        padding: 0;
        font-size: 18px; }
      .hero-slide h2 {
        font-size: 28px; }
      .hero-slide img {
        display: none; } }

.hero-slide-real-time .slide-inner {
  padding: 0;
  background: #023a5b url(/img/slides/background-real-time.jpg) no-repeat 50% 0; }
.hero-slide-real-time .content {
  width: 580px;
  padding-top: 60px;
  float: right; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .hero-slide-real-time .content {
      width: 500px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .hero-slide-real-time .content {
      padding-top: 70px;
      width: 400px; } }
  @media (max-width: 767px) {
    .hero-slide-real-time .content {
      padding-top: 50px;
      width: 100%; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .hero-slide-real-time .content ul {
      font-size: 16px; } }
  @media (max-width: 767px) {
    .hero-slide-real-time .content ul {
      font-size: 14px; } }
@media (min-width: 768px) and (max-width: 979px) {
  .hero-slide-real-time h2 {
    font-size: 25px; } }
@media (max-width: 767px) {
  .hero-slide-real-time h2 {
    font-size: 25px; } }
.hero-slide-real-time img {
  width: 400px;
  top: 0;
  left: auto;
  right: -10px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .hero-slide-real-time img {
      width: 330px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .hero-slide-real-time img {
      width: 280px;
      left: auto;
      right: -10px;
      top: -20px; } }
.lt-ie9 .hero-slide-real-time img {
  left: -200px; }

.hero-slide-spc .slide-inner {
  background: url(/img/slides/bg-slide-logo-2.png) no-repeat center 50%; }
.hero-slide-spc .content {
  float: left; }
.hero-slide-spc img {
  width: 450px;
  top: 5px;
  left: auto;
  right: 0; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .hero-slide-spc img {
      width: 330px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .hero-slide-spc img {
      width: 280px;
      left: auto;
      right: -10px;
      top: -20px; } }
.lt-ie9 .hero-slide-spc img {
  left: -200px; }

.hero-slide-1 {
  background-color: #ce6100;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f17300), to(#ce6100));
  background-image: -webkit-linear-gradient(top, #f17300, #ce6100);
  background-image: -moz-linear-gradient(top, #f17300, #ce6100);
  background-image: -o-linear-gradient(top, #f17300, #ce6100);
  background-image: linear-gradient(to bottom, #f17300, #ce6100); }
  .hero-slide-1 .content {
    float: right; }
  .hero-slide-1 img {
    width: 560px;
    top: 0;
    right: auto;
    left: -130px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .hero-slide-1 img {
        width: 450px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .hero-slide-1 img {
        width: 350px;
        top: 20px; } }
  .lt-ie9 .hero-slide-1 img {
    left: -320px; }

.hero-slide-2 .slide-inner {
  background: url(/img/slides/bg-slide-logo-2.png) no-repeat center 50%; }
.hero-slide-2 .content {
  float: right; }
.hero-slide-2 img {
  width: 400px;
  top: 0;
  right: auto;
  left: -10px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .hero-slide-2 img {
      width: 330px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .hero-slide-2 img {
      width: 280px;
      left: -70px;
      top: -20px; } }
.lt-ie9 .hero-slide-2 img {
  left: -200px; }

.hero-slide-3 {
  background-color: #ce6100;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f17300), to(#ce6100));
  background-image: -webkit-linear-gradient(top, #f17300, #ce6100);
  background-image: -moz-linear-gradient(top, #f17300, #ce6100);
  background-image: -o-linear-gradient(top, #f17300, #ce6100);
  background-image: linear-gradient(to bottom, #f17300, #ce6100); }
  .hero-slide-3 img {
    width: 440px;
    top: 10px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .hero-slide-3 img {
        width: 360px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .hero-slide-3 img {
        width: 320px;
        right: -60px; } }
  .lt-ie9 .hero-slide-3 img {
    right: -160px; }

.hero-slide-4 .slide-inner {
  background: url(/img/slides/bg-slide-logo-2.png) no-repeat center 50%; }
.hero-slide-4 h2 {
  font-size: 52px; }
.hero-slide-4 img {
  right: -20px; }
.hero-slide-4 .position {
  position: absolute;
  right: 0;
  top: 250px; }
@media (min-width: 980px) and (max-width: 1199px) {
  .hero-slide-4 h2 {
    font-size: 45px; }
  .hero-slide-4 img {
    width: 380px; }
  .hero-slide-4 .position {
    top: 200px;
    right: -10px;
    font-size: 20px; } }
@media (min-width: 768px) and (max-width: 979px) {
  .hero-slide-4 h2 {
    font-size: 42px; }
  .hero-slide-4 img {
    width: 320px;
    right: -80px; }
  .hero-slide-4 .position {
    font-size: 18px;
    top: 170px;
    right: -80px; } }
@media (max-width: 767px) {
  .hero-slide-4 h2 {
    font-size: 28px; }
  .hero-slide-4 .position {
    display: none; } }
.lt-ie9 .hero-slide-4 img {
  right: -160px; }
.lt-ie9 .hero-slide-4 .position {
  right: -130px; }


.hero-slide-6 {
  background-color: #2562b8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0980c8), to(#2562b8));
  background-image: -webkit-linear-gradient(top, #0980c8, #2562b8);
  background-image: -moz-linear-gradient(top, #0980c8, #2562b8);
  background-image: -o-linear-gradient(top, #0980c8, #2562b8);
  background-image: linear-gradient(to bottom, #0980c8, #2562b8); }
.hero-slide-6 .slide-inner {
  background: url(/img/slides/bg-slide-wave-light-blue.png) no-repeat center 50%; }
.hero-slide-6 .content {
	width: 550px; }
.hero-slide-6 h2 {
  font-size: 36px; }
.hero-slide-6 #span_mt {
	color:#b9b8b8;
	font-size:24px;
	font-weight:900; }
.hero-slide-6 #mm {
	padding:10px 5px 5px 100px;
	font-size:30px;
	font-weight:bold; }
.hero-slide-6 #button_area {
	padding:10px 0px 5px 90px; }
.hero-slide-6 #button1 {
	float:left;font-size:17px;margin-right:50px;width:169px;height:40px;background-image:url(/img/slides/btn_border1.png);background-repeat:no-repeat;padding:6px 5px 0px 40px; }
.hero-slide-6 #button2 {
	float:left;font-size:17px;margin-right:50px;width:185px;height:40px;background-image:url(/img/slides/btn_border2.png);background-repeat:no-repeat;padding:7px 5px 0px 8px; }
.hero-slide-6 #button3 {
	float:left;font-size:17px;margin-right:50px;width:169px;height:40px;background-image:url(/img/slides/btn_border1.png);background-repeat:no-repeat;padding:6px 5px 0px 25px; }
  .hero-slide-6 img {
    width: 360px;
	right: 20px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .hero-slide-6 img {
        width: 280px;
		right: -50px; }
	  .hero-slide-6 h2 {
    	font-size: 30px; }
	  .hero-slide-6 #span_mt {
		  font-size:24px; }
	  .hero-slide-6 #mm {
		  font-size:24px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .hero-slide-6 .content {
		  width: 500px; }
	  .hero-slide-6 img {
        width: 210px;
        right: -90px;
		top: 30px; }
	  .hero-slide-6 h2 {
    	font-size: 26px; }
	  .hero-slide-6 #span_mt {
		  font-size:18px; }
	  .hero-slide-6 #mm {
		  font-size:22px; }
	  .hero-slide-6 #button1 {
		  margin-right:5px; }
	  .hero-slide-6 #button3 {
		  display:block;
		  margin-bottom:10px; } }
	@media (max-width: 767px) {
  	  .hero-slide-6 .content {
		  width: 300px; }
	  .hero-slide-6 h2 {
    	font-size: 20px; }
	  .hero-slide-6 #span_mt {
		  color:#b9b8b8;
		  font-size:14px;
		  font-weight:900;; }
	  .hero-slide-6 #mm {
		  padding:5px 5px 0px 5px;
		  font-size:22px;
		  font-weight:bold; }
	  .hero-slide-6 #button_area {
		  padding:0px 0px 5px 40px; }
	  .hero-slide-6 #button1 {
		  display:block;
		  margin-bottom:10px; }
	  .hero-slide-6 #button2 {
		  text-align: center; }
	  .hero-slide-6 #button3 {
		  display:block;
		  margin-bottom:10px; } }
  .lt-ie9 .hero-slide-6 img {
    right: -160px; }

.hero-slide-7 {
  background-color: #ce6100;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f17300), to(#ce6100));
  background-image: -webkit-linear-gradient(top, #f17300, #ce6100);
  background-image: -moz-linear-gradient(top, #f17300, #ce6100);
  background-image: -o-linear-gradient(top, #f17300, #ce6100);
  background-image: linear-gradient(to bottom, #f17300, #ce6100); }
.hero-slide-7 .content {
	width: 600px; }
.hero-slide-7 h2 {
  font-size: 40px;
  padding-top: 20px; }
.hero-slide-7 .content ul {
	padding-top: 20px;
	font-size: 19px; }
  .hero-slide-7 img {
    width: 400px;
    top: 10px;
	right: 50px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .hero-slide-7 img {
        width: 320px;
		right: -40px; }
	  .hero-slide-7 h2 {
		  font-size: 30px;
		  font-weight:bold; }
	  .hero-slide-7 .content ul {
		  padding-top: 10px;
		  font-size: 16px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .hero-slide-7 .content {
		  width: 500px; }
	  .hero-slide-7 img {
		  width: 240px;
		  right: -70px;
		  top: 40px; }
	  .hero-slide-7 h2 {
		  font-size: 26px;
		  font-weight:bold; }
	  .hero-slide-7 .content ul {
		  padding-top: 10px;
		  font-size: 16px; } }
	@media (max-width: 767px) {
  	  .hero-slide-7 .content {
		  width: 300px; }
	  .hero-slide-7 h2 {
		  font-size: 20px;
		  font-weight:bold; }
	  .hero-slide-7 .content ul {
		  padding-top: 15px;
		  font-size: 12px; } }
  .lt-ie9 .hero-slide-7 img {
    right: -160px; }

.hero-slide-8 {
  background-color: #2562b8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0980c8), to(#2562b8));
  background-image: -webkit-linear-gradient(top, #0980c8, #2562b8);
  background-image: -moz-linear-gradient(top, #0980c8, #2562b8);
  background-image: -o-linear-gradient(top, #0980c8, #2562b8);
  background-image: linear-gradient(to bottom, #0980c8, #2562b8); }
.hero-slide-8 .slide-inner {
  background: url(/img/slides/bg-slide-wave-light-blue.png) no-repeat center 50%; }
.hero-slide-8 .content {
	width: 550px; }
.hero-slide-8 h2 {
  font-size: 40px;
  padding-top: 20px; }
  .hero-slide-8 .content ul {
	padding: 20px 0px 0px 40px;
	font-size: 19px; }
  .hero-slide-8 img {
    width: 307px;
    top: 10px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .hero-slide-8 img {
        width: 240px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .hero-slide-8 .content {
		  width: 460px; }
	  .hero-slide-8 img {
		  width: 200px;
		  right: -60px;
		  top: 50px; }
	  .hero-slide-8 h2 {
		  font-size: 26px;
		  font-weight:bold; }
	  .hero-slide-8 .content ul {
		  padding-top: 15px;
		  font-size: 16px; } }
	@media (max-width: 767px) {
  	  .hero-slide-8 .content {
		  width: 300px; }
	  .hero-slide-8 h2 {
		  font-size: 24px;
		  font-weight:bold; }
	  .hero-slide-8 .content ul {
		  padding-top: 15px;
		  font-size: 14px; } }
  .lt-ie9 .hero-slide-8 img {
    right: -160px; }

.hero-slide-9 {
  background-color: #0a395a;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0f5282), to(#0a395a));
  background-image: -webkit-linear-gradient(top, #0f5282, #0a395a);
  background-image: -moz-linear-gradient(top, #0f5282, #0a395a);
  background-image: -o-linear-gradient(top, #0f5282, #0a395a);
  background-image: linear-gradient(to bottom, #0f5282, #0a395a); }
.hero-slide-9 .slide-inner {
  background: url(/img/slides/bg-slide-wave-dk-blue.png) no-repeat center 50%; }
.hero-slide-9 .content {
	width: 550px; }
.hero-slide-9 h2 {
  font-size: 40px;
  padding-top: 20px; }
  .hero-slide-9 .content ul {
	padding: 20px 0px 0px 40px;
	font-size: 19px; }
  .hero-slide-9 img {
    width: 310px;
    top: 10px;
	right: 20px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .hero-slide-9 img {
        width: 240px;
		top: 30px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .hero-slide-9 .content {
		  width: 500px; }
	  .hero-slide-9 img {
        width: 200px;
		top: 50px; }
	  .hero-slide-9 h2 {
		  font-size: 26px;
		  font-weight:bold; }
	  .hero-slide-9 .content ul {
		  padding-top: 15px;
		  font-size: 16px; } }
	@media (max-width: 767px) {
  	  .hero-slide-9 .content {
		  width: 300px; }
	  .hero-slide-9 h2 {
		  font-size: 24px;
		  font-weight:bold; }
	  .hero-slide-9 .content ul {
		  padding-top: 15px;
		  font-size: 14px; } }
  .lt-ie9 .hero-slide-9 img {
    right: -160px; }

.hero-slide-10 .slide-inner {
  background: url(/img/slides/bg-slide-logo-2.png) no-repeat center 50%; }
.hero-slide-10 h2 {
  font-size: 40px;
  font-weight: bold;
  padding-top: 20px; }
  .hero-slide-10 .content ul {
	padding: 5px 0px 0px 40px;
	font-size: 19px; }
  .hero-slide-10 img {
    width: 400px;
    top: 10px; }
  .hero-slide-10 #link_button {
	  float:left;font-size:17px;margin:0px 50px 0px 685px;width:169px;height:40px;background-image:url(/img/slides/btn_border1.png);background-repeat:no-repeat;padding:6px 5px 0px 33px;}
    @media (min-width: 980px) and (max-width: 1199px) {
      .hero-slide-10 img {
        width: 320px; }
	  .hero-slide-10 h2 {
		  font-size: 32px;
		  font-weight:bold; }
	  .hero-slide-10 .content ul {
		  padding-top: 10px;
		  font-size: 16px; }
	  .hero-slide-10 #link_button {
		  margin: 0px 50px 0px 525px;;
		  padding: 6px 5px 0px 33px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .hero-slide-10 .content {
		  width: 500px; }
	  .hero-slide-10 img {
        width: 280px;
        right: -60px; }
	  .hero-slide-10 h2 {
		  font-size: 26px;
		  font-weight:bold; }
	  .hero-slide-10 .content ul {
		  padding-top: 15px;
		  font-size: 14px; }
	  .hero-slide-10 #link_button {
		  margin: 30px 50px 0px 425px;
		  padding: 6px 5px 0px 33px; } }
	@media (max-width: 767px) {
  	  .hero-slide-10 .content {
		  width: 300px; }
	  .hero-slide-10 h2 {
		  font-size: 22px;
		  font-weight:bold; }
	  .hero-slide-10 .content ul {
		  padding-top: 15px;
		  font-size: 12px; }
	  .hero-slide-10 #link_button {
		  margin: 30px 0px 0px 50px;
		  padding: 6px 0px 0px 0px;
		  text-align: center; } }
  .lt-ie9 .hero-slide-10 img {
    right: -160px; }

.hero-slide-11 {
  background-color: #ce6100;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f17300), to(#ce6100));
  background-image: -webkit-linear-gradient(top, #f17300, #ce6100);
  background-image: -moz-linear-gradient(top, #f17300, #ce6100);
  background-image: -o-linear-gradient(top, #f17300, #ce6100);
  background-image: linear-gradient(to bottom, #f17300, #ce6100); }
.hero-slide-11 .content {
  width: 600px; }
.hero-slide-11 img {
  width: 325px;
  top: 20px; }
.hero-slide-11 h2 {
  font-size: 34px;
  padding-top: 40px;
  margin-right: 100px; }
.hero-slide-11 #reptitle {
  padding: 10px 0px 5px 0px;
  font-size: 20px;
  margin: 0; }
.hero-slide-11 #button1 {
  float:left;font-size:17px;width:169px;height:40px;background-image:url(/img/slides/btn_border1.png);background-repeat:no-repeat;padding:7px 5px 0px 38px; }
.hero-slide-11 #button2 {
  float:left;font-size:17px;margin-right:50px;width:185px;height:40px;background-image:url(/img/slides/btn_border2.png);background-repeat:no-repeat;padding-top:7px;text-align:center; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .hero-slide-11 img {
        width: 260px; }
	  .hero-slide-11 h2 {
		  font-size: 26px; }
	  .hero-slide-11 #reptitle {
		  font-size: 18px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .hero-slide-11 .content {
		  width: 470px; }
	  .hero-slide-11 img {
		  width: 200px; }
	  .hero-slide-11 h2 {
		  font-size: 22px; }
	  .hero-slide-11 #reptitle {
		  font-size: 16px; }
	  .hero-slide-11 #button2 {
		  margin-right:20px; } }
	@media (max-width: 767px) {
  	  .hero-slide-11 .content {
		  width: 400px; }
	  .hero-slide-11 h2 {
		  font-size: 20px; }
	  .hero-slide-11 #button2 {
		  display:block;
		  margin-bottom:10px; } }
  .lt-ie9 .hero-slide-11 img {
    right: -160px; }

.hero-slide-collaborate-2014 .slide-inner {
  background: url(/img/slides/bg-slide-logo-2.png) no-repeat center 50%; }
.hero-slide-collaborate-2014 h2 {
 }
.hero-slide-collaborate-2014 img {
  right: -20px; }
.hero-slide-collaborate-2014 .position {
  position: absolute;
  right: 0;
  top: 250px; }
@media (min-width: 980px) and (max-width: 1199px) {
  .hero-slide-collaborate-2014 h2 {
}
  .hero-slide-collaborate-2014 img {
    width: 380px; }
  .hero-slide-collaborate-2014 .position {
    top: 200px;
    right: -10px;
    font-size: 20px; } }
@media (min-width: 768px) and (max-width: 979px) {
  .hero-slide-collaborate-2014 h2 {
}
  .hero-slide-collaborate-2014 img {
    width: 320px;
    right: -80px; }
  .hero-slide-collaborate-2014 .position {
    font-size: 18px;
    top: 170px;
    right: -80px; } }
@media (max-width: 767px) {
  .hero-slide-collaborate-2014 h2 {
}
  .hero-slide-collaborate-2014 .position {
    display: none; } }
.lt-ie9 .hero-slide-collaborate-2014 img {
  right: -160px; }
.lt-ie9 .hero-slide-collaborate-2014 .position {
  right: -130px; }


.hero-slide-collaborate-2014 .slide-inner {
  background: url(/img/slides/bg-slide-logo-2.png) no-repeat center 50%; }
.hero-slide-collaborate-2014 h2 {
 }
.hero-slide-collaborate-2014 img {
  right: -20px; }
.hero-slide-collaborate-2014 .position {
  position: absolute;
  right: 0;
  top: 250px; }
@media (min-width: 980px) and (max-width: 1199px) {
  .hero-slide-collaborate-2014 h2 {
}
  .hero-slide-collaborate-2014 img {
    width: 380px; }
  .hero-slide-collaborate-2014 .position {
    top: 200px;
    right: -10px;
    font-size: 20px; } }
@media (min-width: 768px) and (max-width: 979px) {
  .hero-slide-collaborate-2014 h2 {
}
  .hero-slide-collaborate-2014 img {
    width: 320px;
    right: -80px; }
  .hero-slide-collaborate-2014 .position {
    font-size: 18px;
    top: 170px;
    right: -80px; } }
@media (max-width: 767px) {
  .hero-slide-collaborate-2014 h2 {
}
  .hero-slide-collaborate-2014 .position {
    display: none; } }
.lt-ie9 .hero-slide-collaborate-2014 img {
  right: -160px; }
.lt-ie9 .hero-slide-collaborate-2014 .position {
  right: -130px; }

.hero-slide-17 {
  background-color: #ce6100;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f17300), to(#ce6100));
  background-image: -webkit-linear-gradient(top, #f17300, #ce6100);
  background-image: -moz-linear-gradient(top, #f17300, #ce6100);
  background-image: -o-linear-gradient(top, #f17300, #ce6100);
  background-image: linear-gradient(to bottom, #f17300, #ce6100); }
.hero-slide-17 .content {
	width: 700px; }
.hero-slide-17 h2 {
  font-size: 32px;
  padding-top: 20px; }
.hero-slide-17 #subhead {
	font-weight:bold;
	font-size:22px;
	padding-bottom:5px;
	margin:0; }
.hero-slide-17 .content ul {
	padding-top: 20px;
	font-size: 19px; }
  .hero-slide-17 img {
    width: 250px;
    top: 40px;
	right: 50px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .hero-slide-17 img {
        width: 200px;
		top: 50px;
		right: -40px; }
	  .hero-slide-17 h2 {
		  font-size: 26px;
		  font-weight:bold; }
	  .hero-slide-17 #subhead {
		  font-size: 18px; }
	  .hero-slide-17 .content ul {
		  padding-top: 10px;
		  font-size: 16px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .hero-slide-17 .content {
		  width: 500px; }
	  .hero-slide-17 img {
		  width: 160px;
		  right: -70px;
		  top: 60px; }
	  .hero-slide-17 h2 {
		  font-size: 22px;
		  font-weight:bold; }
	  .hero-slide-17 #subhead {
		  font-size: 16px; }
	  .hero-slide-17 .content ul {
		  padding-top: 10px;
		  font-size: 14px; } }
	@media (max-width: 767px) {
  	  .hero-slide-17 .content {
		  width: 300px; }
	  .hero-slide-17 h2 {
		  font-size: 16px;
		  font-weight:bold; }
	  .hero-slide-17 #subhead {
		  font-size: 14px; }
	  .hero-slide-17 .content ul {
		  padding-top: 15px;
		  font-size: 12px; } }
  .lt-ie9 .hero-slide-17 img {
    right: -160px; }

.hero-slide-19 {
  background-color: #0a395a;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0f5282), to(#0a395a));
  background-image: -webkit-linear-gradient(top, #0f5282, #0a395a);
  background-image: -moz-linear-gradient(top, #0f5282, #0a395a);
  background-image: -o-linear-gradient(top, #0f5282, #0a395a);
  background-image: linear-gradient(to bottom, #0f5282, #0a395a); }
.hero-slide-19 .slide-inner {
  background: url(/img/slides/bg-slide-wave-dk-blue.png) no-repeat center 50%; }
.hero-slide-19 .content {
	width: 550px; }
.hero-slide-19 h2 {
  font-size: 30px;
  font-weight: bold;
  padding-top: 20px; }
  .hero-slide-19 .content ul {
	padding: 20px 0px 0px 40px;
	font-size: 19px; }
  .hero-slide-19 img {
    width: 260px;
    top: 40px;
	right: 20px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .hero-slide-19 img {
        width: 220px;
		right: 0px; }
	  .hero-slide-19 h2 {
		font-size: 26px;
	    font-weight: bold; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .hero-slide-19 .content {
		  width: 450px; }
	  .hero-slide-19 img {
        width: 180px;
		right: 0px; }
	  .hero-slide-19 h2 {
		  font-size: 22px;
		  font-weight: bold; }
	  .hero-slide-19 .content ul {
		  padding-top: 15px;
		  font-size: 16px; } }
	@media (max-width: 767px) {
  	  .hero-slide-19 .content {
		  width: 300px; }
	  .hero-slide-19 h2 {
		  font-size: 16px;
		  font-weight: bold; }
	  .hero-slide-19 .content ul {
		  padding-top: 15px;
		  font-size: 12px; } }
  .lt-ie9 .hero-slide-19 img {
    right: -160px; }

.hero-slide-20 {
  background-color: #ce6100;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f17300), to(#ce6100));
  background-image: -webkit-linear-gradient(top, #f17300, #ce6100);
  background-image: -moz-linear-gradient(top, #f17300, #ce6100);
  background-image: -o-linear-gradient(top, #f17300, #ce6100);
  background-image: linear-gradient(to bottom, #f17300, #ce6100); }
.hero-slide-20 .content {
	width: 550px; }
.hero-slide-20 h2 {
  font-size: 30px;
  font-weight: bold;
  padding-top: 20px; }
.hero-slide-20 #subhead {
	font-weight:bold;
	font-size:22px;
	padding-bottom:5px;
	margin:0; }
.hero-slide-20 .content ul {
	padding: 10px 0px 0px 40px;
	font-size: 18px; }
.hero-slide-20 img {
    width: 260px;
    top: 40px;
	right: 20px; }
.hero-slide-20 #button_area {
	margin:140px 0px 5px 20px; }
  .hero-slide-20 #button1 {
	float:left;font-size:17px;margin-right:50px;width:169px;height:40px;background-image:url(/img/slides/btn_border1.png);background-repeat:no-repeat;padding:7px 5px 0px 32px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .hero-slide-20 img {
        width: 220px;
		right: 0px; }
	  .hero-slide-20 h2 {
		font-size: 26px;
	    font-weight: bold; }
	  .hero-slide-20 #subhead {
		  font-size: 18px; }
	  .hero-slide-20 .content ul {
		  font-size: 16px; }
	  .hero-slide-20 #button_area {
		  margin:125px 0px 5px 20px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .hero-slide-20 .content {
		  width: 450px; }
	  .hero-slide-20 img {
        width: 180px;
		right: 0px; }
	  .hero-slide-20 h2 {
		  font-size: 22px;
		  font-weight: bold; }
	  .hero-slide-20 #subhead {
		  font-size: 16px; }
	  .hero-slide-20 .content ul {
		  padding-top: 15px;
		  font-size: 16px; }
	  .hero-slide-20 #button_area {
		  margin:125px 0px 5px 20px; }
	  .hero-slide-20 #button1 {
		  margin-right:5px; } }
	@media (max-width: 767px) {
  	  .hero-slide-20 .content {
		  width: 300px; }
	  .hero-slide-20 h2 {
		  font-size: 17px;
		  font-weight: bold; }
	  .hero-slide-20 #subhead {
		  font-size: 14px; }
	  .hero-slide-20 .content ul {
		  padding-top: 10px;
		  font-size: 13px; }
	  .hero-slide-20 #button_area {
		  margin:135px 0px 5px 20px; }
	  .hero-slide-20 #button1 {
		  display:block;
		  margin-bottom:10px; } }
  .lt-ie9 .hero-slide-20 img {
    right: -160px; }


/* ==========================================================================
  Tabs
========================================================================== */
.tab-wrap {
  border-top: 1px solid #bbb;
  position: relative;
  width: 100%;
  margin: 72px 0 40px;
  background: #fff; }
  .tab-wrap:before, .tab-wrap:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(white));
    background-image: -webkit-linear-gradient(top, #bbbbbb, white);
    background-image: -moz-linear-gradient(top, #bbbbbb, white);
    background-image: -o-linear-gradient(top, #bbbbbb, white);
    background-image: linear-gradient(to bottom, #bbbbbb, white); }
  .tab-wrap:after {
    left: auto;
    right: 0; }

.tab-wrap-large {
  width: 100%;
  margin: 72px 0 20px;
  padding-top: 50px;
  position: relative;
  border-top: none; }
  .tab-wrap-large:before, .tab-wrap-large:after {
    content: "";
    display: block;
    width: 50%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #bbbbbb;
    background-image: -webkit-gradient(linear, left top, right top, from(white), to(#bbbbbb));
    background-image: -webkit-linear-gradient(left, white, #bbbbbb);
    background-image: -moz-linear-gradient(left, white, #bbbbbb);
    background-image: -o-linear-gradient(left, white, #bbbbbb);
    background-image: linear-gradient(to right, white, #bbbbbb); }
  .tab-wrap-large:after {
    left: 50%;
    background-color: white;
    background-image: -webkit-gradient(linear, left top, right top, from(#bbbbbb), to(white));
    background-image: -webkit-linear-gradient(left, #bbbbbb, white);
    background-image: -moz-linear-gradient(left, #bbbbbb, white);
    background-image: -o-linear-gradient(left, #bbbbbb, white);
    background-image: linear-gradient(to right, #bbbbbb, white); }
  .no-generatedcontent .tab-wrap-large {
    border-top: 1px solid #bbb; }
  .tab-wrap-large .nav-tab {
    position: relative;
    top: -45px; }
    .firefox .tab-wrap-large .nav-tab {
      top: -44px; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .tab-wrap-large .nav-tab {
        top: -49px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .tab-wrap-large .nav-tab {
        top: -50px; } }
    .no-generatedcontent .tab-wrap-large .nav-tab {
      top: -46px; }
    .tab-wrap-large .nav-tab li {
      font-size: 18px; }
      .tab-wrap-large .nav-tab li:hover img, .tab-wrap-large .nav-tab li.active img {
        -webkit-filter: grayscale(0);
        -moz-filter: grayscale(0);
        filter: grayscale(0); }
      @media (min-width: 980px) and (max-width: 1199px) {
        .tab-wrap-large .nav-tab li {
          font-size: 16px; } }
      @media (min-width: 768px) and (max-width: 979px) {
        .tab-wrap-large .nav-tab li {
          font-size: 15px; } }
    .tab-wrap-large .nav-tab img {
      max-width: 138px;
      margin: 0 15px;
      -webkit-filter: grayscale(100%);
      -moz-filter: grayscale(100%);
      filter: grayscale(100%); }
      @media (min-width: 980px) and (max-width: 1199px) {
        .tab-wrap-large .nav-tab img {
          max-width: 120px;
          max-height: 60px; } }
      @media (min-width: 768px) and (max-width: 979px) {
        .tab-wrap-large .nav-tab img {
          max-width: 120px;
          max-height: 60px; } }
  @media (min-width: 980px) and (max-width: 1199px) {
    .tab-wrap-large {
      margin-top: 100px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .tab-wrap-large {
      margin-top: 100px; } }
  @media (max-width: 767px) {
    .tab-wrap-large:before, .tab-wrap-large:after {
      content: "";
      display: block;
      width: 1px;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background-color: white;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#bbbbbb), to(white));
      background-image: -webkit-linear-gradient(top, #bbbbbb, white);
      background-image: -moz-linear-gradient(top, #bbbbbb, white);
      background-image: -o-linear-gradient(top, #bbbbbb, white);
      background-image: linear-gradient(to bottom, #bbbbbb, white); }
    .tab-wrap-large:after {
      left: auto;
      right: 0; } }
  .lt-ie9 .tab-wrap-large {
    border: 1px solid #bbb; }
    .lt-ie9 .tab-wrap-large:before, .lt-ie9 .tab-wrap-large:after {
      display: none; }

.tab-wrap-news {
  margin-top: 72px;
  border: 1px solid #bbb; }
  .tab-wrap-news:before, .tab-wrap-news:after {
    display: none; }
  .tab-wrap-news .nav-tab {
    text-align: left;
    margin-left: -1px; }
  .tab-wrap-news .tab-content {
    padding: 0; }
  .tab-wrap-news .tab-row {
    border-bottom: 1px solid #bbb;
    padding: 30px;
    margin: 0; }
    .tab-wrap-news .tab-row:last-of-type {
      border: none; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .tab-wrap-news .tab-row {
        padding: 20px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .tab-wrap-news .tab-row {
        padding: 10px; } }
  .tab-wrap-news h5 {
    text-transform: none;
    margin: 10px 0; }
    .tab-wrap-news h5 a {
      color: #333333; }
      .tab-wrap-news h5 a:hover, .tab-wrap-news h5 a:focus {
        color: #f27e00; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .tab-wrap-news {
      margin-top: 45px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .tab-wrap-news {
      margin-top: 42px; } }
  @media (max-width: 767px) {
    .tab-wrap-news {
      border: none; }
      .tab-wrap-news .nav-tab {
        margin-left: 0; }
        .tab-wrap-news .nav-tab li {
          padding: 10px 20px; }
      .tab-wrap-news .tab-content {
        border: 1px solid #bbb; }
      .tab-wrap-news .tab-row {
        padding: 20px; }
        .tab-wrap-news .tab-row img {
          width: 30%;
          margin: 0 0 10px; } }

.tab-wrap-resources .tab-row:last-of-type .resource-box {
  border: none;
  padding-bottom: 0; }

.nav-tab-image {
  margin-top: 170px;
  padding-top: 10px; }
  .nav-tab-image .nav-tab {
    top: -49px; }
    .no-generatedcontent .nav-tab-image .nav-tab {
      top: -50px; }
    .firefox .nav-tab-image .nav-tab {
      top: -48px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .nav-tab-image {
      margin-top: 120px; }
      .nav-tab-image .nav-tab {
        top: -45px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .nav-tab-image {
      margin-top: 120px; }
      .nav-tab-image .nav-tab {
        top: -48px; } }
  .lt-ie9 .nav-tab-image .nav-tab {
    top: -57px; }
    .lt-ie9 .nav-tab-image .nav-tab li {
      padding-right: 5px;
      padding-left: 5px; }

.nav-tab,
.nav-tab-resources {
  text-align: center;
  margin-top: -73px; }
  .nav-tab li,
  .nav-tab-resources li {
    display: inline-block;
    border: 1px solid #fff;
    border-bottom: transparent;
    font-size: 21px;
    color: #f27e00;
    text-transform: uppercase;
    padding: 20px 25px;
    margin-right: -5px;
    z-index: 1;
    position: relative;
    background: #fff;
    cursor: pointer; }
    .nav-tab li:before,
    .nav-tab-resources li:before {
      content: "";
      display: block;
      width: 1px;
      height: 100%;
      position: absolute;
      left: 0;
      bottom: 0;
      background-color: #bbbbbb;
      background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#bbbbbb));
      background-image: -webkit-linear-gradient(top, white, #bbbbbb);
      background-image: -moz-linear-gradient(top, white, #bbbbbb);
      background-image: -o-linear-gradient(top, white, #bbbbbb);
      background-image: linear-gradient(to bottom, white, #bbbbbb); }
    .nav-tab li:first-of-type:before,
    .nav-tab-resources li:first-of-type:before {
      display: none; }
    .nav-tab li:hover, .nav-tab li:focus, .nav-tab li.active,
    .nav-tab-resources li:hover,
    .nav-tab-resources li:focus,
    .nav-tab-resources li.active {
      color: #333333; }
    .nav-tab li.active,
    .nav-tab-resources li.active {
      z-index: 2;
      border: 1px solid #bbb;
      border-bottom: 1px solid #fff; }
      .nav-tab li.active:before,
      .nav-tab-resources li.active:before {
        display: none; }
      .nav-tab li.active + li:before,
      .nav-tab-resources li.active + li:before {
        display: none; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .nav-tab,
    .nav-tab-resources {
      margin-top: -46px; }
      .nav-tab li,
      .nav-tab-resources li {
        font-size: 16px;
        padding: 10px 15px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .nav-tab,
    .nav-tab-resources {
      margin-top: -43px; }
      .nav-tab li,
      .nav-tab-resources li {
        font-size: 14px;
        padding: 10px 10px; } }
  @media (max-width: 767px) {
    .nav-tab li,
    .nav-tab-resources li {
      margin: 0 0 -1px;
      display: block;
      width: 100%;
      border: 1px solid #bbb;
      font-size: 17px;
      padding: 6px 0; }
      .nav-tab li.active,
      .nav-tab-resources li.active {
        border: 1px solid #bbb; }
      .nav-tab li:before,
      .nav-tab-resources li:before {
        display: none; } }
  .lt-ie9 .nav-tab, .lt-ie9
  .nav-tab-resources {
    margin-top: -66px; }
    .lt-ie9 .nav-tab li, .lt-ie9
    .nav-tab-resources li {
      font-size: 16px; }

.nav-tab-resources {
  margin-top: -69px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .nav-tab-resources {
      margin-top: -47px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .nav-tab-resources {
      margin-top: -43px; } }
  .nav-tab-resources a {
    color: #f27e00; }
    .nav-tab-resources a:hover, .nav-tab-resources a:focus {
      color: #333333; }
  .nav-tab-resources li {
    cursor: default;
    font-size: 18px; }
    .nav-tab-resources li:hover, .nav-tab-resources li:focus, .nav-tab-resources li.active {
      color: #f27e00; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .nav-tab-resources li {
        font-size: 17px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .nav-tab-resources li {
        font-size: 14px; } }
  .nav-tab-resources .active a {
    color: #333333; }

.tab-content {
  padding: 10px 0;
  display: none; }
  .tab-content.show {
    display: block;
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn; }
  @media (max-width: 767px) {
    .tab-content {
      padding: 0 20px; } }

.tab-row {
  margin: 30px 0 0;
  padding: 0 30px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .tab-row {
      padding: 0 20px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .tab-row {
      padding: 0 20px; } }
  @media (max-width: 767px) {
    .tab-row {
      padding: 0; }
      .tab-row img {
        width: 100%; } }

/* ==========================================================================
  Home
========================================================================== */
.callout {
  width: 100%;
  color: #fff;
  font-size: 24px;
  position: relative;
  overflow: hidden; }
  .callout .span10 {
    position: relative; }

.home .three-grid li {
  padding: 10px 30px 42px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .home .three-grid li {
      padding: 10px 20px 42px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .home .three-grid li {
      padding: 70px 15px 42px; } }
  @media (max-width: 767px) {
    .home .three-grid li {
      padding: 50px; } }
.home .three-grid h4 {
  font-size: 22px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .home .three-grid h4 {
      font-size: 20px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .home .three-grid h4 {
      font-size: 17px; } }
@media (max-width: 767px) {
  .home .three-grid p {
    margin: 0 0 10px; } }
.lt-ie9 .home .three-grid li.second {
  border-right: 1px solid #bbb;
  border-left: 1px solid #bbb; }

.nav-social {
  display: block;
  position: relative;
  text-align: center;
  margin: 60px 0; }
  .nav-social:before, .nav-social:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    height: 1px;
    width: 41%;
    background-color: #aaaaaa;
    background-image: -webkit-gradient(linear, left top, right top, from(white), to(#aaaaaa));
    background-image: -webkit-linear-gradient(left, white, #aaaaaa);
    background-image: -moz-linear-gradient(left, white, #aaaaaa);
    background-image: -o-linear-gradient(left, white, #aaaaaa);
    background-image: linear-gradient(to right, white, #aaaaaa); }
  .nav-social:after {
    left: auto;
    right: 0;
    background-color: white;
    background-image: -webkit-gradient(linear, left top, right top, from(#aaaaaa), to(white));
    background-image: -webkit-linear-gradient(left, #aaaaaa, white);
    background-image: -moz-linear-gradient(left, #aaaaaa, white);
    background-image: -o-linear-gradient(left, #aaaaaa, white);
    background-image: linear-gradient(to right, #aaaaaa, white); }
  .nav-social li {
    display: inline-block;
    margin: 0 2px; }
  .nav-social a {
    color: #fff;
    background: #888;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    display: block;
    width: 35px;
    height: 35px;
    font-size: 20px;
    padding: 7px 0 0 0; }
    .nav-social a:hover, .nav-social a:focus {
      background: #f27e00; }
  @media (min-width: 768px) and (max-width: 979px) {
    .nav-social:before, .nav-social:after {
      width: 35%; } }
  @media (max-width: 767px) {
    .nav-social {
      display: none; } }

/* ==========================================================================
  Subpages
========================================================================== */
/**** **** **** **** **** **** **** **** ****
  General Subpage
**** **** **** **** **** **** **** **** ****/
.subpage .main {
  background: url(/img/structure/kaminario-gray.png) no-repeat center bottom;
  padding-bottom: 150px; }
@media (max-width: 767px) {
  .subpage .main {
    padding-bottom: 100px; } }

/**** **** **** **** **** **** **** **** ****
  Flash Array - Architecture
**** **** **** **** **** **** **** **** ****/
.arch-graph {
  margin-top: -4px; }

/**** **** **** **** **** **** **** **** ****
  Company - About
**** **** **** **** **** **** **** **** ****/
.nav-sub-social {
  display: block;
  position: relative;
  text-align: center;
  margin: 0 0 40px;
  padding: 15px 0; }
  .nav-sub-social li {
    display: inline-block;
    margin: 0 4px; }
  .nav-sub-social a {
    color: #fff;
    background: #888;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    display: block;
    width: 45px;
    height: 45px;
    font-size: 26px;
    padding: 9px 0 0 0; }
    .nav-sub-social a:hover, .nav-sub-social a:focus {
      background: #f27e00; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .nav-sub-social {
      margin: 0 0 20px; }
      .nav-sub-social a {
        font-size: 22px;
        height: 40px;
        width: 40px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .nav-sub-social {
      margin: 0 0 20px; }
      .nav-sub-social li {
        margin: 0 2px; }
      .nav-sub-social a {
        font-size: 18px;
        height: 30px;
        width: 30px;
        padding: 6px 0 0 0; } }

.address {
  margin: 0 0 10px; }
  .address li {
    margin: 0; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .address {
      margin: 0 0 5px; } }

/**** **** **** **** **** **** **** **** ****
  Company - Our Team
**** **** **** **** **** **** **** **** ****/
.team-grid {
  text-align: center;
  color: #868686;
  line-height: 1.3; }
  .team-grid h6 {
    color: #f27e00;
    margin: 15px 0 0;
    text-transform: none; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .team-grid h6 {
        margin-bottom: 5px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .team-grid h6 {
        margin-bottom: 5px; } }
    @media (max-width: 767px) {
      .team-grid h6 {
        margin-bottom: 5px; } }
  .team-grid > li {
    position: relative;
    cursor: pointer; }
    .team-grid > li:hover img, .team-grid > li:focus img {
      opacity: .7; }
    .team-grid > li:hover h6, .team-grid > li:focus h6 {
      color: #333333; }
    @media (min-width: 980px) and (max-width: 1199px) {
      .team-grid > li {
        font-size: 15px; } }
    @media (min-width: 768px) and (max-width: 979px) {
      .team-grid > li {
        font-size: 13px; } }
    @media (max-width: 767px) {
      .team-grid > li {
        width: 100%;
        display: block;
        float: none;
        padding-bottom: 70px;
        font-size: 13px;
        margin: 0 0 50px; }
        .team-grid > li:last-of-type {
          margin-bottom: 0; } }
  .team-grid nav {
    width: 100%;
    margin: 20px auto 0;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0; }
    .team-grid nav:before, .team-grid nav:after {
      content: "";
      display: block;
      width: 100%;
      height: 1px;
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      background-color: #bbb;
      background-image: -webkit-gradient(linear, left top, right top, color-stop(0%, white), color-stop(50%, #bbbbbb), color-stop(100%, white));
      background-image: -webkit-linear-gradient(left, white 0%, #bbbbbb 50%, white 100%);
      background-image: -moz-linear-gradient(left, white 0%, #bbbbbb 50%, white 100%);
      background-image: -o-linear-gradient(left, white 0%, #bbbbbb 50%, white 100%);
      background-image: linear-gradient(to right, white 0%, #bbbbbb 50%, white 100%); }
    .team-grid nav:after {
      top: auto;
      bottom: 0; }
    .team-grid nav li {
      margin: 0 3px;
      padding: 0;
      display: inline-block; }
    .team-grid nav a {
      color: #fff;
      background: #888;
      -webkit-border-radius: 100%;
      border-radius: 100%;
      display: block;
      width: 20px;
      height: 20px;
      font-size: 12px;
      padding: 3px 0 0 0; }
      .team-grid nav a:hover, .team-grid nav a:focus {
        background: #f27e00; }
      @media (max-width: 767px) {
        .team-grid nav a {
          width: 35px;
          height: 35px;
          font-size: 20px;
          padding: 4px 0 0 0; } }

.team-member-target {
  padding: 30px;
  border: 1px solid #bbb; }
  .team-member-target.show {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .team-member-target {
      padding: 20px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .team-member-target {
      padding: 20px; } }
  @media (max-width: 767px) {
    .team-member-target {
      padding: 20px; } }

/**** **** **** **** **** **** **** **** ****
  Company - Investors
**** **** **** **** **** **** **** **** ****/
.investor {
  margin-bottom: 50px; }
  .investor h3 {
    margin: 0 0 5px; }
  .investor a {
    text-transform: uppercase;
    margin: 0 0 15px;
    display: block; }
  .investor p {
    margin: 0; }
  @media (min-width: 768px) and (max-width: 979px) {
    .investor .middle {
      border: none; } }

/**** **** **** **** **** **** **** **** ****
  Company - News & Events
**** **** **** **** **** **** **** **** ****/
.sidebar {
  border: 1px solid #bbb; }
  .sidebar h6 {
    display: block;
    border-bottom: 1px solid #bbb;
    padding: 15px 20px;
    margin: 0; }
  @media (min-width: 768px) and (max-width: 979px) {
    .sidebar h6 {
      padding: 10px;
      font-size: 15px; } }

.sidebar-row,
.event-post {
  border-bottom: 1px solid #bbb;
  padding: 20px 0 30px; }
  .sidebar-row:last-of-type,
  .event-post:last-of-type {
    border: none; }
  .sidebar-row .details,
  .event-post .details {
    color: #f27e00;
    font-weight: 700;
    font-size: 18px;
    padding: 0 20px;
    margin: 0 0 10px;
    line-height: 1.3; }
    .sidebar-row .details li,
    .event-post .details li {
      margin: 0; }
      .sidebar-row .details li:first-of-type,
      .event-post .details li:first-of-type {
        margin-bottom: 6px; }
    .sidebar-row .details time,
    .event-post .details time {
      margin: 0; }
    .sidebar-row .details a,
    .event-post .details a {
      color: #333333; }
      .sidebar-row .details a:hover, .sidebar-row .details a:focus,
      .event-post .details a:hover,
      .event-post .details a:focus {
        color: #f27e00; }
  .sidebar-row p,
  .event-post p {
    padding: 0 20px;
    font-size: 14px;
    margin: 0; }
  .sidebar-row .location,
  .event-post .location {
    background: #eee;
    padding: 10px 65px 10px 20px;
    font-size: 14px;
    position: relative;
    margin: 20px 0 0 0; }
    .sidebar-row .location ul,
    .event-post .location ul {
      margin: 0; }
    .sidebar-row .location li,
    .event-post .location li {
      margin: 0;
      line-height: 1.3; }
      .sidebar-row .location li:first-of-type,
      .event-post .location li:first-of-type {
        font-size: 15px;
        font-weight: 500;
        margin: 0 0 6px; }
    .sidebar-row .location a,
    .event-post .location a {
      position: absolute;
      right: 20px;
      top: 50%;
      margin-top: -28px;
      text-align: center; }
      .sidebar-row .location a i,
      .event-post .location a i {
        background: #fff;
        -webkit-border-radius: 100%;
        border-radius: 100%;
        width: 35px;
        height: 35px;
        display: block;
        font-size: 26px;
        padding: 4px 0 0 0; }
      .sidebar-row .location a span,
      .event-post .location a span {
        font-size: 10px;
        text-transform: uppercase;
        color: #777;
        font-weight: 700; }
  .sidebar-row .btn,
  .event-post .btn {
    display: block;
    margin: 30px 20px 0;
    padding: 10px 0; }
  .sidebar-row .view-all,
  .event-post .view-all {
    display: block;
    text-align: right;
    margin: 10px 20px 0 0;
    font-size: 18px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .sidebar-row .location a,
    .event-post .location a {
      position: relative;
      right: auto;
      top: auto;
      margin: 10px auto 0;
      display: block; }
      .sidebar-row .location a i,
      .event-post .location a i {
        margin: 0 auto; }
    .sidebar-row .view-all,
    .event-post .view-all {
      font-size: 16px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .sidebar-row,
    .event-post {
      padding: 10px 0; }
      .sidebar-row .details,
      .event-post .details {
        padding: 0 10px; }
      .sidebar-row p,
      .event-post p {
        padding: 0 10px; }
      .sidebar-row .location,
      .event-post .location {
        padding: 10px; }
        .sidebar-row .location a,
        .event-post .location a {
          position: relative;
          right: auto;
          top: auto;
          margin: 10px auto 0;
          display: block; }
          .sidebar-row .location a i,
          .event-post .location a i {
            margin: 0 auto; }
      .sidebar-row .view-all,
      .event-post .view-all {
        font-size: 15px;
        margin: 0 10px 0 0; } }
  @media (max-width: 767px) {
    .sidebar-row,
    .event-post {
      padding: 20px; }
      .sidebar-row .details,
      .event-post .details {
        padding: 0; }
      .sidebar-row p,
      .event-post p {
        padding: 0; }
      .sidebar-row .btn,
      .event-post .btn {
        margin: 20px auto 0; }
      .sidebar-row .view-all,
      .event-post .view-all {
        margin-right: 0; } }

.event-post .details {
  padding: 0; }
.event-post p {
  padding: 0;
  font-size: 16px; }
.event-post .location {
  width: 50%;
  float: left; }
.event-post .btn {
  width: 40%;
  float: right;
  margin: 35px 0 0; }
@media (min-width: 980px) and (max-width: 1199px) {
  .event-post .location {
    width: 55%;
    float: left; }
    .event-post .location a {
      display: inline;
      position: absolute;
      top: 50%;
      right: 20px;
      margin-top: -28px; }
  .event-post .btn {
    width: 37%; } }
@media (min-width: 768px) and (max-width: 979px) {
  .event-post .location {
    width: 100%;
    float: none; }
    .event-post .location a {
      display: inline;
      position: absolute;
      top: 50%;
      right: 20px;
      margin-top: -28px; }
  .event-post .btn {
    width: 100%;
    float: none;
    margin: 20px 0 0 0; } }
@media (max-width: 767px) {
  .event-post .location {
    width: 100%;
    float: none; }
  .event-post .btn {
    width: 100%;
    float: none;
    margin: 20px 0 0 0; } }

.excerpt-read-more {
  display: block;
  text-transform: capitalize;
  margin-top: 25px; }

/**** **** **** **** **** **** **** **** ****
  Subpage - Detail Pages
**** **** **** **** **** **** **** **** ****/
.subpage-detail h1 {
  margin: 0; }
.subpage-detail time {
  display: block;
  margin: 0 0 25px 0; }
.subpage-detail .sidebar-row .details {
  margin: 0; }

/* ==========================================================================
  Blog
========================================================================== */
/**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****
  Blog Landing Page
**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****/
/**** **** **** **** ****
  Featured Post
**** **** **** **** ****/
.featured-post {
  margin-bottom: 30px;
  overflow: hidden;
  background-color: #efefef;
  padding: 0; }
  .featured-post h6 {
    color: #777;
    font-size: 16px;
    margin-top: 6px;
    margin-bottom: 0; }
  .featured-post h4 a {
    color: #333333; }
    .featured-post h4 a:hover, .featured-post h4 a:focus {
      color: #f27e00; }
  .featured-post .one-three {
    background: #fff;
    height: 220px;
    width: 272px;
    overflow: hidden;
    margin-right: 30px;
    padding: 0; }
  .featured-post .slider {
    position: relative;
    height: 260px;
    margin: 0;
    padding: 0; }
    .featured-post .slider .slidesjs-pagination {
      top: 4px;
      right: 15px; }
      @media (max-width: 767px) {
        .featured-post .slider .slidesjs-pagination {
          top: -30px; } }
    .featured-post .slider .slidesjs-slide {
      padding: 20px; }
    .featured-post .slider img {
      margin: 0;
      height: auto;
      width: auto;
      min-width: 100%; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .featured-post {
      height: 203px; }
      .featured-post .one-three {
        height: 163px;
        width: 208px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .featured-post {
      height: 167px; }
      .featured-post .one-three {
        height: 127px;
        width: 156px; }
      .featured-post h6 {
        font-size: 14px; }
      .featured-post h3 {
        font-size: 19px; } }
  @media (max-width: 767px) {
    .featured-post {
      display: none; } }

/**** **** **** **** ****
  Post List - Blog Landing Page
**** **** **** **** ****/
.post-list .pagination {
  padding: 20px 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1; }
  .post-list .pagination li {
    display: inline-block;
    margin: 0 1px;
    padding: 0 7px 0 0; }
    .post-list .pagination li:nth-last-child(2) {
      padding: 0; }
    .post-list .pagination li.prev, .post-list .pagination li.next {
      margin: 0;
      padding: 0;
      border: none;
      float: left;
      width: 45px;
      min-height: 1px;
      display: block; }
    .post-list .pagination li.next {
      float: right; }
  .post-list .pagination a.active {
    color: #525252; }
@media (min-width: 768px) and (max-width: 979px) {
  .post-list .pagination {
    padding: 20px 10px;
    font-size: 15px; } }
@media (max-width: 767px) {
  .post-list {
    padding: 0 !important; }
    .post-list .pagination {
      position: relative;
      padding-bottom: 50px; }
      .post-list .pagination li.prev, .post-list .pagination li.next {
        position: absolute;
        bottom: 20px;
        right: 20px; }
      .post-list .pagination li.prev {
        right: auto;
        left: 20px; } }

.single-post ul {
  list-style: disc;
  padding-left: 35px; }
.single-post h5 {
  margin-bottom: 20px; }
.single-post .post-header {
  margin-bottom: 25px; }
  .single-post .post-header ul {
    list-style: none;
    padding-left: 0; }

.post {
  border-bottom: 1px solid #bbb;
  padding: 40px 30px; }
  .post:last-of-type {
    border-bottom: none; }
  .post p:last-of-type {
    margin: 0 0 10px; }
  .post h5 a {
    color: #333333; }
    .post h5 a:hover, .post h5 a:focus {
      color: #f27e00; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .post {
      padding: 20px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .post {
      padding: 20px 10px; } }
  @media (max-width: 767px) {
    .post {
      padding: 20px; } }

.post-header {
  margin: 0 0 10px; }
  .post-header img {
    float: left; }
  .post-header .right {
    width: 513px; }
  .post-header h5 {
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 0 0 15px;
    margin: 0 0 15px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .post-header .right {
      width: 403px; }
    .post-header h5 {
      font-size: 16px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .post-header {
      margin: 0 0 15px; }
      .post-header .right {
        width: 307px; }
      .post-header h5 {
        font-size: 15px;
        padding: 0 0 5px;
        margin: 0 0 5px; } }
  @media (max-width: 767px) {
    .post-header {
      margin: 0 0 15px; }
      .post-header img {
        width: 20%; }
      .post-header .right {
        width: 75%; } }
  .lt-ie9 .post-header .right {
    width: 390px; }

.meta {
  font-size: 14px;
  font-weight: 500;
  float: left; }
  .meta li {
    display: inline-block;
    margin: 0 13px 0 0; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .meta {
      font-size: 13px; }
      .meta li {
        margin: 0 10px 0 0; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .meta {
      font-size: 13px;
      margin: 0 0 10px; }
      .meta li {
        margin: 0 10px 0 0; } }

.share {
  float: right; }
  .share li {
    display: block;
    float: left;
    margin: 0 0 0 10px;
    height: 20px; }
  @media (min-width: 768px) and (max-width: 979px) {
    .share {
      float: left; }
      .share li {
        margin: 0 10px 0 0; } }

/**** **** **** **** ****
  Blog Sidebar - Blog Landing Page
**** **** **** **** ****/
.blog-sidebar .section {
  padding: 20px 30px;
  border-bottom: 7px solid #f3f3f3; }
  .blog-sidebar .section:last-of-type {
    border: none; }
  .blog-sidebar .section p {
    margin: 0; }
  .blog-sidebar .section a {
    color: #666;
    font-size: 14px;
    font-weight: 500; }
    .blog-sidebar .section a:hover, .blog-sidebar .section a:focus {
      color: #f27e00; }
.blog-sidebar h6 {
  font-size: 16px;
  font-weight: 700;
  color: #333; }
.blog-sidebar .list li {
  line-height: 1.2;
  margin-bottom: 10px; }
.blog-sidebar .list .text-right {
  display: block;
  margin-top: 20px; }
.blog-sidebar iframe {
  width: 208px;
  height: 117px;
  max-width: 100%; }
.blog-sidebar .two-grid li:nth-child(2n) {
  padding-left: 5px; }
@media (min-width: 980px) and (max-width: 1199px) {
  .blog-sidebar .section {
    padding: 20px; }
  .blog-sidebar a {
    font-size: 13px; }
  .blog-sidebar .two-grid li {
    display: block;
    width: 100%; }
    .blog-sidebar .two-grid li:nth-child(2n) {
      padding-left: 0; } }
@media (min-width: 768px) and (max-width: 979px) {
  .blog-sidebar .section {
    padding: 10px; }
  .blog-sidebar a {
    font-size: 13px; }
  .blog-sidebar .two-grid li {
    display: block;
    width: 100%; }
    .blog-sidebar .two-grid li:nth-child(2n) {
      padding-left: 0; } }
@media (max-width: 767px) {
  .blog-sidebar {
    padding: 0 !important; }
    .blog-sidebar .section {
      padding: 20px; }
    .blog-sidebar iframe {
      width: 100%; }
    .blog-sidebar .two-grid li {
      display: block;
      width: 100%; }
      .blog-sidebar .two-grid li:nth-child(2n) {
        padding-left: 0; } }

.subscribe {
  display: block;
  border-bottom: 1px solid #ccc;
  padding: 20px 30px;
  margin-bottom: 0; }
  .subscribe li {
    display: block;
    float: left; }
    .subscribe li:last-of-type {
      float: right; }
  .subscribe .rss {
    background: #f27e00;
    display: block;
    height: 45px;
    width: 45px;
    text-align: center;
    font-size: 28px;
    padding: 9px 0 0 0;
    -webkit-border-radius: 100%;
    border-radius: 100%; }
    .subscribe .rss:hover, .subscribe .rss:focus {
      background: #333333; }
    .subscribe .rss i {
      color: #fff; }
  .subscribe .btn {
    padding: 9px 20px;
    text-align: center; }
    .subscribe .btn i {
      right: -10px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .subscribe {
      padding: 20px; }
      .subscribe .rss {
        width: 40px;
        height: 40px;
        font-size: 26px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .subscribe {
      padding: 10px; }
      .subscribe li:last-of-type {
        margin: 5px 0 0 0; }
      .subscribe .rss {
        width: 34px;
        height: 34px;
        font-size: 22px; }
      .subscribe .btn {
        padding: 7px 18px; } }
  @media (max-width: 767px) {
    .subscribe {
      padding: 20px; }
      .subscribe li {
        width: 50%; }
        .subscribe li:last-of-type {
          margin: 0; }
      .subscribe .btn {
        width: 100%; } }

/**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****
  Blog Detail Page
**** **** **** **** **** **** **** **** **** **** **** **** **** **** ****/
.blog-single .post {
  padding: 0;
  border: none; }
  .blog-single .post img.right {
    margin: 20px 0 20px 30px; }
  .blog-single .post img.left {
    margin: 20px 30px 20px 0; }
.blog-single h2 {
  display: block;
  border-bottom: 1px solid #ccc;
  padding: 0 0 10px;
  margin: 0 0 10px; }

.social-links li {
  display: inline-block;
  position: relative;
  margin: 0 0 0 5px;
  height: 21px; }
  .social-links li.twitter {
    width: 90px; }
  .social-links li.facebook {
    margin-left: 0;
    margin-right: 6px; }
    .social-links li.facebook iframe {
      max-width: 500px; }
  .social-links li.linkedin {
    top: -2px; }

.main .post table {
  border-collapse: collapse;
  border-spacing: 0; }
.main .post th {
  background: #333333;
  font-size: 21px;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  font-weight: 300;
  padding: 30px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .main .post th {
      font-size: 17px;
      padding: 20px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .main .post th {
      font-size: 16px;
      padding: 20px; } }
  @media (max-width: 767px) {
    .main .post th {
      padding: 8px 5px;
      font-size: 11px; } }
.main .post td {
  border: 1px solid #bbb;
  padding: 15px;
  vertical-align: top;
  position: relative;
  font-size: 16px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .main .post td {
      padding: 15px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .main .post td {
      padding: 15px; } }
  @media (max-width: 767px) {
    .main .post td {
      padding: 8px 5px;
      font-size: 10px; } }

/* ==========================================================================
  Classes
========================================================================== */
/**** **** **** **** ****
  Alignment
**** **** **** **** ****/
.left {
  float: left; }

.right {
  float: right; }

.middle {
  display: table;
  width: 100%;
  text-align: center; }

.middle-inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%; }

.bottom-align {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 25px; }
  @media (min-width: 768px) and (max-width: 979px) {
    .bottom-align {
      bottom: 10px; } }
  @media (max-width: 767px) {
    .bottom-align {
      position: relative;
      bottom: auto;
      left: auto; } }

/**** **** **** **** ****
  Text
**** **** **** **** ****/
.text-center {
  text-align: center; }

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

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

.highlight {
  font-size: 18px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .highlight {
      font-size: 16px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .highlight {
      font-size: 15px; }
      .highlight i {
        display: none; } }

.text-blue {
  color: #007deb; }

.text-orange {
  color: #f27e00; }

/**** **** **** **** ****
  Backgrounds
**** **** **** **** ****/
.gradient {
  background-color: #efefef;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(#efefef));
  background-image: -webkit-linear-gradient(top, white, #efefef);
  background-image: -moz-linear-gradient(top, white, #efefef);
  background-image: -o-linear-gradient(top, white, #efefef);
  background-image: linear-gradient(to bottom, white, #efefef); }
  .lt-ie9 .gradient {
    background-color: #efefef; }

.gradient-radial {
  background-color: white;
  background-image: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #efefef));
  background-image: -webkit-radial-gradient(center, ellipse cover, white 0%, #efefef 100%);
  background-image: -moz-radial-gradient(center, ellipse cover, white 0%, #efefef 100%);
  background-image: -o-radial-gradient(center, ellipse cover, white 0%, #efefef 100%);
  background-image: radial-gradient(ellipse at center, white 0%, #efefef 100%); }
  .lt-ie9 .gradient-radial {
    background-color: #efefef; }

.blue {
  background: #007deb; }

.black {
  background: #211F20; }

.product-bg {
  padding-bottom: 30px;
  background-image: url(/img/structure/product.png);
  background-repeat: no-repeat;
  background-position: 82% 100%;
  background-position: calc(100% - 100px) 100%; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .product-bg {
      background-size: 50%;
      background-position: calc(100% - 80px) 95%; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .product-bg {
      background-size: 50%;
      background-position: calc(100% - 80px) 95%; } }
  @media (max-width: 767px) {
    .product-bg {
      background-image: none; } }

/**** **** **** **** ****
  Borders
**** **** **** **** ****/
.border-bottom {
  border-bottom: 1px solid #bbb; }

/**** **** **** **** ****
  Spacing
**** **** **** **** ****/
.padding {
  padding: 25px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .padding {
      padding: 15px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .padding {
      padding: 10px; } }
  @media (max-width: 767px) {
    .padding {
      padding: 0; } }

.padding-top {
  padding-top: 25px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .padding-top {
      padding-top: 15px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .padding-top {
      padding-top: 10px; } }
  @media (max-width: 767px) {
    .padding-top {
      padding-top: 0; } }

.padding-bottom {
  padding-bottom: 25px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .padding-bottom {
      padding-bottom: 15px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .padding-bottom {
      padding-bottom: 10px; } }
  @media (max-width: 767px) {
    .padding-bottom {
      padding-bottom: 0; } }

.margin {
  margin: 50px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .margin {
      margin: 25px; } }
  @media (max-width: 767px) {
    .margin {
      margin: 20px; } }

.margin-top {
  margin-top: 50px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .margin-top {
      margin-top: 25px; } }
  @media (max-width: 767px) {
    .margin-top {
      margin-top: 20px; } }

.margin-bottom {
  margin-bottom: 50px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .margin-bottom {
      margin-bottom: 25px; } }
  @media (max-width: 767px) {
    .margin-bottom {
      margin-bottom: 20px; } }

.no-margin {
  margin: 0 !important; }

.pull-up {
  margin-top: -20px; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .pull-up {
      margin-top: -10px; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .pull-up {
      margin-top: -10px; } }
  @media (max-width: 767px) {
    .pull-up {
      margin-top: -5px; } }

/**** **** **** **** ****
  Hide
**** **** **** **** ****/
.hide {
  display: none; }

@media (min-width: 980px) and (max-width: 1199px) {
  .low-res-hide {
    display: none;
    visibility: hidden; } }
@media (min-width: 768px) and (max-width: 979px) {
  .tablet-hide {
    display: none;
    visibility: hidden; } }
@media (max-width: 767px) {
  .mobile-hide {
    display: none;
    visibility: hidden; } }

.visually-hidden {
  visibility: hidden;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0; }

/**** **** **** **** ****
  Show
**** **** **** **** ****/
.low-res-show {
	display: none; }
.tablet-show {
	display: none; }
.mobile-show {
	display: none; }
@media (min-width: 980px) and (max-width: 1199px) {
  .low-res-show {
    display: inline-block; } }
@media (min-width: 768px) and (max-width: 979px) {
  .tablet-show {
    display: inline-block; } }
@media (max-width: 767px) {
  .mobile-show {
    display: inline-block; } }


/**** **** **** **** ****
  Smart Padding
**** **** **** **** ****/
@media (max-width: 767px) {
  .mobile-padding {
    display: block;
	margin-bottom:60px; } }


/**** **** **** **** ****
  Utilites
**** **** **** **** ****/
.relative {
  position: relative; }

.block {
  display: block; }

.break {
  display: block; }
  @media (min-width: 980px) and (max-width: 1199px) {
    .break {
      display: inline; } }
  @media (min-width: 768px) and (max-width: 979px) {
    .break {
      display: inline; } }
  @media (max-width: 767px) {
    .break {
      display: inline; } }

.clearfix, .inline, .resource-box, .news-content li, .event-content li, .tab-row, .team-grid, .team-member-target, .event-post, .post-header, .blog-sidebar .section, .subscribe {
  *zoom: 1; }
  .clearfix:before, .inline:before, .resource-box:before, .news-content li:before, .event-content li:before, .tab-row:before, .team-grid:before, .team-member-target:before, .event-post:before, .post-header:before, .blog-sidebar .section:before, .subscribe:before, .clearfix:after, .inline:after, .resource-box:after, .news-content li:after, .event-content li:after, .tab-row:after, .team-grid:after, .team-member-target:after, .event-post:after, .post-header:after, .blog-sidebar .section:after, .subscribe:after {
    content: "";
    display: table; }
  .clearfix:after, .inline:after, .resource-box:after, .news-content li:after, .event-content li:after, .tab-row:after, .team-grid:after, .team-member-target:after, .event-post:after, .post-header:after, .blog-sidebar .section:after, .subscribe:after {
    clear: both; }

.ir {
  display: block;
  overflow: hidden;
  direction: ltr;
  text-align: left;
  text-indent: -999em; }

@media print {
  /* ==========================================================================
    Print
  ========================================================================== */
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  /*
  * Don't show links for images, or javascript/internal links
  */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group;
    /* h5bp.com/t */ }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }



/**** **** **** **** ****
  Homepage
**** **** **** **** ****/
#h_section_title {font-size:22px;font-weight:bold;color:#333;}
#no-borders td:before, #no-borders td:after, li#no-borders:before, li#no-borders:after {content:none;}
#why_kam td {border:none;padding:0;margin:0;text-align:center;vertical-align:top;}
#why_kam td a{color:#333;}
#twitter_bkgrd {margin:10px 0px 0px 130px;width:940px;height:140px;background-image:url(/img/homepage/twitter_bkgrd_box.png);background-repeat:no-repeat;}
#h_blog_header {height:60px;background-image:url(/img/homepage/blog_header.png);background-repeat:no-repeat;padding:15px 0px 0px 20px;}
#h_blog_header a {color:#fff;}
#h_twitter_header {height:60px;background-image:url(/img/homepage/twitter_header.png);background-repeat:no-repeat;padding:15px 0px 5px 20px;}
#h_twitter_header a {color:#fff;}
#h_ss_header {height:60px;background-image:url(/img/homepage/success_stories_header.png);background-repeat:no-repeat;padding:15px 0px 5px 80px;}
#h_ss_header a {color:#fff;}
#h_ev_section {height:60px;background-image:url(/img/homepage/events_bkgrd.png);background-repeat:no-repeat;padding:9px 0px 5px 25px;}
#h_ev_section a {color:#fff;}
#h_ev_title_header {font-weight:bold;font-size:17px;padding-right:10px;}
#ss_title {font-size:18px;font-weight:bold;color:#333;}
.h_title_bar {font-weight:bold;font-size:20px;}
#home_links a {color:#000;}
#home_links a:hover {color:#666;}
#blog_header_hp {height:60px;background-image:url(/img/homepage/blog_hp.png);background-repeat:no-repeat;padding:15px 0px 0px 20px;margin:0;}
#blog_header_hp a {color:#fff;}
#twitter_header_hp {height:60px;background-image:url(/img/homepage/blog_hp.png);background-repeat:no-repeat;padding:15px 0px 0px 20px;margin:0;}
#twitter_header_hp a {color:#fff;}
#img_border_hp {border:1px solid #CCC;}
.h_news_date {color:#999;font-size:12px;}
.more_link {text-decoration:underline;}


/**** **** **** **** ****
  Solutions
**** **** **** **** ****/
#solns_table tr, td {
	padding:20px; }
.soln_title {
	font-weight:bold;
	font-size:22px; }
.soln_title a {
	color:#666; }
.soln_logo {
	text-align:center;
	height:100px; }


/**** **** **** **** ****
  Features
**** **** **** **** ****/
.section_title {
	font-weight:bold;
	color:#ce591f; }
.subsection_title {
	font-size:22px;
	font-weight:bold; }
.subsection_title a {
	color:#555; }
.hr_min {
	margin: 30px 0px 30px 0px; }
.inline_icon {
	float:left;
	padding-right:20px;
	width:120px; }
.inline_image {
	float:left;
	padding-right:20px;
	width:200px; }
#features_main_banner_icons {
	text-align:center; }
#features_main_banner_icons img {
	width:120px;
	margin-right:10px; }
#features_banner_icons {
	text-align:center; }
#features_banner_icons img {
	width:100px;
	margin-right:8px; }


/**** **** **** **** ****
  Features Sidebar
**** **** **** **** ****/
.gray {
	background:#343433; }
#sidebar_title {
	color:#fff;
	height:44px;
	font-size:26px;
	font-weight:bold;
	text-align:center; }
#sidebar_title a {
	color:#fff; }
#features_sidebar_icons img {
	width:60px; }
#features_sidebar_icons a {
	color:#555;
	font-size:16px;
	font-weight:500; }


/**** **** **** **** ****
  Resources (Explore)
**** **** **** **** ****/
#resources_bkgrd {
	width:976px;
	height:248px;
	background-image:url(/img/resources/bkgrd_related_resources.png);
	background-repeat:no-repeat;
	padding:200px 25px 10px 225px; }
#rr_content_list ul li {
	display:inline; }
#rr_content_list ul li a{
	color:#ffffff; }


/**** **** **** **** ****
  Flash-Array page
**** **** **** **** ****/
#feature_illus a {color:#555;font-weight:bold;}
#feature_illus td:before, #feature_illus td:after {content:none;}
#feature_illus td {border:0;padding:10px;width:33%;font-size:15px;}
#feature_illus td img {width:160px;padding-left:25px;}
#feature_illus ul {list-style:disc;margin-bottom:5px;padding-left:20px;}
#feature_illus ul li {padding:0;}
.prod_section_title {font-weight:bold;color:#ce591f;}

/**** **** **** **** ****
  Live Chat
**** **** **** **** ****/
a.click-desk-visitor {visibility:hidden !important;}
.cdw-chat-header-avatar {visibility:hidden !important;}
.cd-mob-chat-widget { display: none !important; }

