/******************************************************************
Site Name: 
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* reset.css */
/* line 3, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline; }

/* line 4, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
body {
  line-height: 1.5; }

/* line 5, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
table {
  border-collapse: separate;
  border-spacing: 0; }

/* line 6, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
caption, th, td {
  text-align: left;
  font-weight: normal; }

/* line 7, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
table, td, th {
  vertical-align: middle; }

/* line 8, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
blockquote:before, blockquote:after, q:before, q:after {
  content: ""; }

/* line 9, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
blockquote, q {
  quotes: "" ""; }

/* line 10, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
a img {
  border: none; }

/* line 11, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
a {
  text-decoration: none; }

/* line 12, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
img {
  outline: none; }

/* line 13, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
em, i {
  font-style: italic; }

/* line 16, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
.left {
  float: left; }

/* line 17, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
.right {
  float: right; }

/* line 18, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
.clear {
  clear: both; }

/* line 19, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_reset.scss */
.hide {
  display: none; }

/* @include css-gradient(#dfdfdf,#f8f8f8); */
/* @include flexbox(); */
/* @include flex-direction(column); */
/* @include order(1); */
/* @include flex(1); */
/* Main Styles */
/* line 7, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
body {
  background-image: url(../../images/bg.png);
  background-position: top center;
  background-repeat: repeat-x;
  background-color: #FFFFFF;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 62.5%; }

/* line 19, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
body.hr {
  background: #37383c url(../../images/body-hr-bg.jpg) top center repeat-x; }

/* line 28, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important; }

/* line 47, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main ul {
  /*max-width: 350px;*/
  margin: 15px 0 0 15px; }
  /* line 50, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
  .content main ul li {
    list-style-image: url(../../images/content-bullet.png);
    color: #7d7d7d;
    font-size: 1.3em;
    letter-spacing: -0.03em;
    line-height: 17px;
    margin-bottom: 10px; }

/* line 63, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main h1 {
  font-size: 1.9em;
  font-family: Helvetica Neue, Helvetica;
  line-height: 20px;
  color: #cc092f;
  font-weight: bold; }

/* line 81, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main h1 a, .content main h2 a {
  color: #cc092f; }

/* line 85, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main h1 a:hover, .content main h2 a:hover {
  border-bottom: 1px dotted #cc092f; }

/* line 89, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main h2 {
  font-size: 2.1em;
  line-height: 20px;
  color: #cc092f;
  margin: 20px 0 0 0; }

/* line 97, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main h3 {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 20px;
  color: #cc092f;
  margin: 10px 0 0 0; }

/* line 107, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main h3 a {
  color: #cc092f; }

/* line 115, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main h3 a:hover {
  border-bottom: 1px dotted #cc092f; }

/* line 123, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main p {
  font-size: 1.3em;
  line-height: 20px;
  color: #333333;
  margin: 10px 0 0 0; }

/* line 137, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main p.no-margin {
  margin: 0; }

/* line 145, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main p a {
  color: #cc092f; }

/* line 153, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main p a:hover {
  color: #E70033;
  border-bottom: 1px dotted #E70033; }

/* line 163, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main p a.arrow {
  /* background: url(../../images/accent-arrow-red.png) 0px 13px no-repeat; */
  background: url(../../images/content-bullet.png) right center no-repeat;
  padding: 0 12px 0 0;
  color: #cc092f; }

/* line 177, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main body.hr .content .callout h2 {
  background: url(../../images/callout-header-hr-bg.png) repeat-x;
  color: #ffffff; }

/* line 190, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main .gallery-box {
  display: none; }

/* line 196, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main .article {
  margin-top: 13px; }
  /* line 198, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
  .content main .article img {
    box-shadow: 5px 5px 5px #dbdbdb;
    -moz-box-shadow: 5px 5px 5px #dbdbdb;
    -webkit-box-shadow: 5px 5px 5px #dbdbdb;
    margin: 20px 20px 20px 0; }
  /* line 205, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
  .content main .article img.featured {
    float: left; }
  /* line 210, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
  .content main .article .date {
    font-size: 1.5em;
    color: #7d7d7d; }

/* line 221, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main .eventheader {
  margin-left: 220px; }

/* line 229, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main img.eventimage {
  float: left;
  margin-top: 20px;
  clear: both; }

/* line 241, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main .event {
  float: right;
  width: 440px;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 20px;
  margin: 20px 20px 0 0; }

/* line 257, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main .event.last {
  border: none;
  padding-bottom: 60px; }

/* line 267, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main .event h2 {
  font-size: 1.5em;
  font-weight: bold; }

/* line 277, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content main .event p {
  margin-top: 0; }

/* Misc Styles */
/* line 300, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.download-box {
  background: #f3f2ed url(../../images/download-bg.png) repeat-x;
  padding: 15px;
  margin: 13px 0 25px 0;
  border: 1px solid #e6e6e6;
  -webkit-box-shadow: 0 0 5px #eaeaea;
  -moz-box-shadow: 0 0 10px #eaeaea;
  box-shadow: 0 0 10px #eaeaea; }

/* line 320, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.download-box.small {
  width: 181px;
  margin: 0 0 20px 20px; }

/* line 330, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.download-box h1 {
  margin-top: 12px; }

/* line 338, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.content .download-box h2 {
  font-size: 17px;
  font-weight: bold;
  margin-top: 3px; }

/* line 350, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.download-box a img {
  margin: 0 10px 0px 0; }

/* line 361, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
#altcontent {
  display: none; }

/* line 369, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.page-id-439 .content main .dataTables_wrapper {
  font-size: 12px; }

/* line 372, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.page-id-439 .content main .dataTables_wrapper .row {
  width: 100%;
  margin: 0;
  margin-bottom: 12px; }

/* line 377, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.wpdm-button-area .btn {
  padding: 8px !important;
  line-height: 20px !important; }

/* line 382, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
.cf::after {
  content: '';
  display: block;
  clear: both; }

@media only screen and (max-width: 639px) {
  /* line 398, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_base.scss */
  .content main h2 {
    font-size: 2.4em;
    line-height: 30px; } }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
#linkbar {
  border-top-right-radius: 7px;
  -webkit-border-top-right-radius: 7px;
  -moz-border-radius-topright: 7px;
  border-top-right-radius: 7px;
  -webkit-border-top-right-radius: 7px;
  -moz-border-radius-topright: 7px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #525252; }
  /* line 15, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
  #linkbar .menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-direction: normal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0; }
    /* line 20, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
    #linkbar .menu > li {
      list-style: none;
      -webkit-box: 1;
      -moz-box: 1;
      -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
      flex: 1 0 auto;
      position: relative; }
      /* line 24, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
      #linkbar .menu > li > a {
        padding: 9px 0 10px 0;
        border-left: 1px solid #787878;
        color: #CC092F;
        font-size: 1.8em;
        font-weight: 400;
        letter-spacing: 0.07em;
        text-align: center;
        display: block;
        text-transform: uppercase;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,e5e5e5+100 */
        background: #ffffff;
        /* Old browsers */
        background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 );
        /* IE6-9 */ }
      /* line 42, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
      #linkbar .menu > li:hover a {
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e5e5e5+0,ffffff+100 */
        background: #e5e5e5;
        /* Old browsers */
        background: -moz-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #e5e5e5 0%, #ffffff 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #e5e5e5 0%, #ffffff 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5e5e5', endColorstr='#ffffff',GradientType=0 );
        /* IE6-9 */ }
      /* line 51, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
      #linkbar .menu > li.current-menu-item a,
      #linkbar .menu > li.current-menu-ancestor a {
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#de768a+0,d24c66+51,c72444+52,b61333+100 */
        background: #de768a;
        /* Old browsers */
        background: -moz-linear-gradient(top, #de768a 0%, #d24c66 51%, #c72444 52%, #b61333 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #de768a 0%, #d24c66 51%, #c72444 52%, #b61333 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #de768a 0%, #d24c66 51%, #c72444 52%, #b61333 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#de768a', endColorstr='#b61333',GradientType=0 );
        /* IE6-9 */
        color: white; }
      /* line 62, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
      #linkbar .menu > li:last-child a {
        border-right: none;
        border-top-right-radius: 7px;
        -webkit-border-top-right-radius: 7px;
        -moz-border-radius-topright: 7px; }
      /* line 68, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
      #linkbar .menu > li:first-child a {
        border-top-left-radius: 7px;
        -webkit-border-top-left-radius: 7px;
        -moz-border-radius-topleft: 7px; }
      /* line 74, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
      #linkbar .menu > li .sub-menu {
        background-color: #f2f2ea;
        z-index: 3;
        position: absolute;
        width: 100%;
        display: none; }
        /* line 80, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
        #linkbar .menu > li .sub-menu li {
          list-style: none; }
          /* line 82, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
          #linkbar .menu > li .sub-menu li a {
            font-family: Arial, Helvetica, sans-serif;
            display: block;
            background: none;
            color: #CC092F;
            text-transform: none;
            text-align: left;
            font-size: 14px;
            padding: 5px 15px; }
            /* line 91, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
            #linkbar .menu > li .sub-menu li a:hover {
              color: #FFFFFF;
              background-color: #2d2d2d; }
          /* line 96, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
          #linkbar .menu > li .sub-menu li.current-menu-item a {
            color: #FFFFFF;
            background-color: #ba8c23; }
      /* line 103, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
      #linkbar .menu > li:hover .sub-menu {
        display: block; }
      /* line 107, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
      #linkbar .menu > li#menu-item-485 a {
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ba8c23+0,cc9f35+100 */
        background: #ba8c23;
        /* Old browsers */
        background: -moz-linear-gradient(top, #ba8c23 0%, #cc9f35 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #ba8c23 0%, #cc9f35 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #ba8c23 0%, #cc9f35 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba8c23', endColorstr='#cc9f35',GradientType=0 );
        /* IE6-9 */
        color: #FFF; }
  @media only screen and (min-width: 640px) and (max-width: 840px) {
    /* line 123, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
    #linkbar .menu > li > a {
      font-size: 1.4em; } }

/* line 133, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
.store-btn {
  display: none; }

@media only screen and (min-width: 640px) {
  /* line 156, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
  .hide-on-desktop {
    display: none !important; } }

@media only screen and (max-width: 639px) {
  /* line 159, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
  .hide-on-mobile {
    display: none !important; }
  /* line 160, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
  #header {
    z-index: 5;
    position: relative; }
  /* line 161, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
  #linkbar {
    position: absolute;
    z-index: 2;
    right: 0px;
    left: 0px;
    border-radius: 0;
    border: none;
    overflow: hidden;
    bottom: 0;
    top: 0;
    background-color: black;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,454545+100 */
    background: #000000;
    /* Old browsers */
    background: -moz-linear-gradient(top, #000000 0%, #454545 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #000000 0%, #454545 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #000000 0%, #454545 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#454545',GradientType=0 );
    /* IE6-9 */ }
    /* line 189, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
    #linkbar.open {
      transform: translateY(0%); }
    /* line 192, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
    #linkbar .menu {
      padding-right: 13px;
      padding-left: 13px;
      padding-bottom: 30px;
      padding-top: 60px;
      display: block; }
      /* line 199, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
      #linkbar .menu > li {
        display: block;
        margin-bottom: 6px; }
        /* line 203, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
        #linkbar .menu > li:hover .sub-menu {
          display: none; }
        /* line 206, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
        #linkbar .menu > li.open .sub-menu {
          display: block; }
        /* line 209, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
        #linkbar .menu > li > a {
          border: none;
          text-align: left;
          border-radius: 0 !important;
          -webkit-border-radius: 0 !important;
          -moz-border-radius: 0 !important;
          padding: 9px 20px 11px 20px;
          font-size: 20px; }
        /* line 219, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
        #linkbar .menu > li .sub-menu {
          position: relative;
          display: none; }
        /* line 228, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
        #linkbar .menu > li .toggle-submenu {
          position: absolute;
          right: 10px;
          color: red;
          font-size: 12px;
          z-index: 1;
          top: 25px;
          transform: translateY(-50%); }
          /* line 236, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
          #linkbar .menu > li .toggle-submenu:after {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            content: "\f078";
            color: #CC092F;
            display: block;
            font-size: 20px; }
          /* line 244, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
          #linkbar .menu > li .toggle-submenu:hover:after {
            color: #CC092F; }
        /* line 248, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
        #linkbar .menu > li.open .toggle-submenu:after {
          content: "\f077"; }
        /* line 251, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
        #linkbar .menu > li.current-menu-item .toggle-submenu:after,
        #linkbar .menu > li.current-menu-ancestor .toggle-submenu:after {
          color: #FFF; }
  /* line 261, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
  .menu-toggle {
    display: inline-block;
    cursor: pointer;
    float: left;
    padding-top: 16px; }
  /* line 268, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
  .menu-toggle .bar1, .menu-toggle .bar2, .menu-toggle .bar3 {
    width: 14px;
    height: 2px;
    background-color: #FFF;
    margin: 3px 0;
    transition: 0.4s; }
  /* Rotate first bar */
  /* line 277, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
  .menu-toggle.open .bar1 {
    -webkit-transform: rotate(-45deg) translate(-3px, 5px);
    transform: rotate(-45deg) translate(-3px, 5px); }
  /* Fade out the second bar */
  /* line 283, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
  .menu-toggle.open .bar2 {
    opacity: 0; }
  /* Rotate last bar */
  /* line 288, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
  .menu-toggle.open .bar3 {
    -webkit-transform: rotate(45deg) translate(-2px, -4px);
    transform: rotate(45deg) translate(-2px, -4px); }
  /* line 299, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
  .store-btn {
    display: block;
    float: right;
    text-transform: uppercase;
    color: #FFF;
    padding: 2px 23px 4px 23px;
    border-radius: 4px;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    margin-right: 4px;
    background-color: #ca9d34; }
    /* line 311, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_topnav.scss */
    .store-btn:hover {
      background-color: #ebc46b; } }

/*
div.dropdown {
	display: none;
	width: 200px;
	position: absolute;	
	z-index: 10;
	left: 50%;
}
	
.dropdown.dark {	
	top: 0;
	margin: 34px 0 0 281px;
}

.dropdown.dark #header-dropdown-active-area {
	position: absolute;
	top: -32px;
	left: 50%;	margin-left: -25px;
}

#capabilities-dropdown {
	margin-left: -289px;	
}

#fielded-systems-dropdown {
	margin-left: -97px;	
}
#about-npc-dropdown {
	margin-left: 95px;	
}

.dropdown ul li {
	list-style:none;
	width: 200px;	
	background: #545454;
}

.dropdown.light ul li {
	list-style:none;
	width: 200px;	
	background: #f3f2e9;
}

.dropdown ul li:hover {
	background: #c30026;
}

.dropdown.light ul li:hover {
	background: #2d2d2d;	
}

.dropdown ul li a {
	padding: 5px 10px;	
	color: #fff;
	font-size: 1.3em;
	width: 180px;
	display: block;
}

.dropdown.light ul li a {
	color: #c30026;	
}

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

.dropdown ul li.first a {
	padding: 10px 10px 5px 10px;		
}

.dropdown ul li.last a {
	padding: 10px 5px 10px 10px;		
}
*/
/* line 1, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_utility-nav.scss */
#header #menu-utility-links {
  float: right;
  padding-top: 10px;
  padding-right: 10px;
  clear: right;
  margin-right: -10px; }
  /* line 7, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_utility-nav.scss */
  #header #menu-utility-links li {
    display: inline-block; }
    /* line 9, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_utility-nav.scss */
    #header #menu-utility-links li a {
      /*background: url(../../images/accent-arrow-red.png) 0px 12px no-repeat;*/
      background: url(../../images/content-bullet.png) right center no-repeat;
      padding: 10px 13px 10px 10px;
      font-size: 1.1em;
      color: #fff;
      text-transform: uppercase;
      /*
			&:after{
				font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f105";
				display: inline-block;
			    font-style: normal;
			    font-variant: normal;
			    text-rendering: auto;
			    -webkit-font-smoothing: antialiased;
			    font-size: 1.5em;
    			color: red;
			    margin-left: 5px;
			    vertical-align: -2px;
			}
			*/ }
      /* line 16, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_utility-nav.scss */
      #header #menu-utility-links li a:hover {
        text-decoration: underline; }
    /* line 34, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_utility-nav.scss */
    #header #menu-utility-links li.current-menu-item a {
      color: #cc092f; }

/* MOBILE */
@media only screen and (max-width: 639px) {
  /* line 43, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_utility-nav.scss */
  #header #menu-utility-links {
    display: none !important; } }

/* line 3, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav {
  width: 229px;
  float: left;
  margin: 0px 12px 0 0;
  padding-bottom: 161px;
  background: url(../../images/secondary-nav-footer-bg.png) bottom repeat-x; }

/* line 19, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav ul li {
  list-style: none;
  width: 230px;
  margin-bottom: 2px; }

/* line 31, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav ul li.last {
  margin-bottom: 0px; }

/* line 39, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav ul li a {
  background: url(../../images/secondary-nav-bg.png) repeat-x;
  font-size: 1.5em;
  color: #ffffff;
  line-height: 16px;
  padding: 13px 0 13px 12px;
  width: 217px;
  height: 16px;
  display: block;
  font-family: Arial; }

/* line 63, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav ul li a:hover {
  opacity: .9;
  filter: alpha(opacity=90); }

/* line 73, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav ul li.current_page_item a {
  background: url(../../images/secondary-nav-active-bg.png) repeat-x;
  font-weight: bold; }

/* line 83, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav ul li.current_page_item a:hover {
  opacity: 1.0; }

/* line 91, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav ul li ul {
  margin: 2px 0; }

/* line 99, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav ul li ul li a, #secondary-nav ul li.current_page_item ul li a {
  background: url(../../images/secondary-nav-sub-nav-bg.png) top right no-repeat;
  font-size: 1.5em;
  color: #343333;
  font-weight: normal;
  line-height: 16px;
  margin-left: 8px;
  padding: 13px 0 13px 13px;
  width: 209px;
  height: 16px;
  display: block; }

/* line 125, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav ul li ul li.current_page_item a {
  background: url(../../images/secondary-nav-sub-nav-active-bg.png) top right no-repeat;
  color: #fff;
  font-weight: bold; }

/* line 137, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav ul li ul li a:hover {
  opacity: .9; }

/* line 145, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_secondary-nav.scss */
#secondary-nav ul li ul li.current_page_item a:hover {
  color: #fff;
  background: url(../../images/secondary-nav-sub-nav-active-over-bg.png) top right no-repeat; }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_breadcrumbs.scss */
#breadcrumbs {
  padding: 7px 9px 7px 12px;
  width: 940px;
  /* background: #a6a6a6 url(../../images/breadcrumbs-bg.png) top repeat-x;	 */
  font-size: 1.2em;
  line-height: 10px;
  color: #000; }
  /* line 9, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_breadcrumbs.scss */
  #breadcrumbs a {
    color: #000;
    text-decoration: underline; }
  /* line 14, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_breadcrumbs.scss */
  #breadcrumbs .active {
    color: #ffffff; }
  /* line 18, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_breadcrumbs.scss */
  #breadcrumbs a:hover {
    text-decoration: none; }

/* line 25, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_breadcrumbs.scss */
body.hr #breadcrumbs {
  width: 940px;
  background: url(../../images/breadcrumbs-hr-bg.png) top repeat-x; }

@media only screen and (max-width: 639px) {
  /* line 33, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_breadcrumbs.scss */
  #breadcrumbs {
    display: none; } }

/* line 3, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
#container {
  max-width: 962px;
  padding: 0 20px;
  margin: 0px auto; }
  @media only screen and (max-width: 639px) {
    /* line 3, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
    #container {
      padding: 0; } }

/* line 14, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
.content {
  overflow: hidden;
  width: 100%;
  background-color: #FFFFFF;
  padding: 0 0 45px 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative; }
  /* line 23, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
  .content:after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f0f0f0+100 */
    background: #ffffff;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #f0f0f0 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, #f0f0f0 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, #f0f0f0 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f0f0f0',GradientType=0 );
    /* IE6-9 */ }
  /* line 42, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
  .content main {
    padding: 20px;
    padding-top: 11px;
    display: block; }
    /* line 48, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
    .content main.has-sidebar {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -moz-box-direction: normal;
      -moz-box-orient: horizontal;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; }
      /* line 51, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
      .content main.has-sidebar .leftcol {
        width: 66%;
        margin-right: 20px; }
      /* line 55, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
      .content main.has-sidebar .rightcol {
        width: 34%; }
    /* line 59, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
    .content main.constrained-width {
      max-width: 680px;
      margin: auto; }

@media only screen and (max-width: 639px) {
  /* line 73, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
  .content main {
    display: block; }
    /* line 77, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
    .content main.has-sidebar {
      display: block; }
      /* line 79, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
      .content main.has-sidebar .leftcol {
        width: 100%;
        margin-right: 0; }
      /* line 83, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
      .content main.has-sidebar .rightcol {
        width: 100%; } }

/* line 100, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_content.scss */
.page-id-439 .content main {
  width: auto;
  max-width: inherit;
  padding: 12px 20px 45px 20px; }

/*
		#home-sidebar {

			background: #545454 url(../../images/sidebar-bg.png) bottom center repeat-x;

			width: 240px;

			float: left;

			padding-bottom: 45px;

		}

		

		body.hr #home-sidebar {

			background: #242424 none;	

		}

			

			#home-sidebar h2 {

				color: white;

				background: url(../../images/sidebar-bullet.png) center left no-repeat;

				padding: 0 0 0 15px;

				font-size: 15px;

				margin: 25px 25px 0px 15px;

				text-transform: uppercase;

			}

			

			#home-sidebar h4 {

				font-size: 1.5em;

				color: #cc092f;

				font-weight: bold;

				margin: 10px 25px 0px 15px;

			}

			

			#home-sidebar p {

				font-size: 1.3em;

				color: #fff;

				margin: 0 25px 0px 15px;

			}

			

			#home-sidebar ul {

				width: 190px;

				margin: 23px 12px 20px 28px;	

			}

			

				#home-sidebar ul li {

					list-style-image: url(../../images/sidebar-bullet.png);

					color: #ebebeb;

					line-height: 20px;

					margin-bottom: 35px;

				}

				

					#home-sidebar ul li a {

						color: #ebebeb;

						font-size: 1.3em;

						line-height: 20px;						

					}

					

					#home-sidebar ul li a:hover {

						border-bottom: 1px dotted #ebebeb;	

					}

				
*/
/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_hero.scss */
.content .pagetitle {
  background-color: #d9d6c5;
  color: #cc092f;
  padding: 0.1em 0.4em;
  font-size: 2.8em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  margin: 0;
  margin-top: 24px;
  margin-bottom: 48px;
  -webkit-box-shadow: -8px 10px 16px -5px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: -8px 10px 16px -5px rgba(0, 0, 0, 0.35);
  box-shadow: -8px 10px 16px -5px rgba(0, 0, 0, 0.35); }

/* line 21, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_hero.scss */
.content h3.pagetitle {
  font-size: 2.0em; }

/* line 25, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_hero.scss */
.content .subtitle {
  font-size: 1.9em;
  line-height: 20px;
  margin: 0;
  margin-bottom: 20px;
  color: #cc092f; }

/* line 32, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_hero.scss */
.content .hero {
  width: 100%;
  height: 32em;
  background-size: cover;
  background-position: center center;
  position: relative; }
  /* line 38, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_hero.scss */
  .content .hero .pagetitle {
    margin-top: 2.1em; }
  @media only screen and (max-width: 1022px) {
    /* line 32, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_hero.scss */
    .content .hero {
      font-size: 0.98vw; } }
  @media only screen and (max-width: 510px) {
    /* line 32, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_hero.scss */
    .content .hero {
      height: 19em;
      font-size: 1em; }
      /* line 48, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_hero.scss */
      .content .hero h2.pagetitle {
        margin-top: 0.4em; } }

/*
.content .pagetitle {
	background: url(../../images/page-name-bg.png) top right;
	color: #cc092f;
	font-size: 2.5em;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 2px 16px 21px 10px;
	margin: 22px 0 0 0;
	float: left;
}
*/
/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
#header {
  /* MOBILE */ }
  /* line 4, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
  #header h1.logo {
    background-image: url(../../images/logo-top.png);
    background-size: contain;
    height: 89px;
    text-indent: -200%;
    overflow: hidden;
    width: 247px;
    float: left;
    margin: 0px 0 0 65px; }
  /* line 15, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
  #header form.searchform {
    float: right; }
    /* line 17, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
    #header form.searchform input[type=text] {
      background: #3a3a3a;
      border: 1px solid #777777;
      padding: 2px 5px;
      color: white; }
  @media only screen and (max-width: 639px) {
    /* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
    #header {
      padding: 0 13px; }
      /* line 30, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
      #header h1.logo {
        width: 135px;
        height: 49px;
        margin: 3px 0 0px 18px; }
      /* line 37, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
      #header form.searchform input[type=text] {
        padding: 7px 5px; }
      /* line 40, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
      #header form.searchform button[type=submit] {
        padding: 7px 12px; }
      /* line 43, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
      #header form.searchform button[type=submit] {
        margin-left: 8px;
        color: #FFFFFF;
        font-size: 17px;
        background: transparent;
        padding: 5px 0px; }
        /* line 49, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
        #header form.searchform button[type=submit]:after {
          content: "\f002"; }
        /* line 52, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
        #header form.searchform button[type=submit]:active {
          color: #FFFFFF; }
        /* line 55, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
        #header form.searchform button[type=submit]:hover {
          color: #CC092F; } }
  @media only screen and (max-width: 520px) {
    /* line 66, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
    #header form.searchform .mobile-wrapper {
      display: none;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      margin: 0;
      padding: 11px;
      background-color: black; }
      /* line 75, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
      #header form.searchform .mobile-wrapper input[type=text] {
        width: calc(100% - 38px);
        display: block;
        width: calc(100% - 38px); }
      /* line 81, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
      #header form.searchform .mobile-wrapper button[type=submit] {
        display: inline-block;
        margin-left: -28px; }
      /* line 86, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
      #header form.searchform .mobile-wrapper .mobile-close {
        display: block;
        float: right;
        color: #FFF;
        font-size: 17px;
        margin: 6px 5px; }
        /* line 92, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
        #header form.searchform .mobile-wrapper .mobile-close:active {
          color: #FFFFFF; }
        /* line 95, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
        #header form.searchform .mobile-wrapper .mobile-close:hover {
          color: #CC092F; }
    /* line 100, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_header.scss */
    #header form.searchform.open .mobile-wrapper {
      display: block; } }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
#footer {
  margin: 25px 0;
  padding: 19px 0 0 0;
  border-top: 1px solid #d8d8d8;
  font-size: 1.2em;
  color: #8c8c8c; }
  /* line 10, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
  #footer .footer-menu-container > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    list-style: none; }
    /* line 13, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
    #footer .footer-menu-container > ul > li {
      margin-right: 25px;
      -webkit-box: 1;
      -moz-box: 1;
      -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
      flex: 1 0 auto;
      font-weight: bold;
      line-height: 14px;
      margin-bottom: 8px; }
      /* line 19, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
      #footer .footer-menu-container > ul > li a {
        color: #8c8c8c; }
        /* line 22, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
        #footer .footer-menu-container > ul > li a:hover {
          text-decoration: underline; }
      /* line 29, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
      #footer .footer-menu-container > ul > li ul {
        list-style: none;
        margin-top: 10px; }
        /* line 32, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
        #footer .footer-menu-container > ul > li ul li {
          font-weight: normal;
          line-height: 14px;
          margin-bottom: 8px; }
  /* line 43, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
  #footer .footer-menu-container li.current-menu-item > a {
    color: #cc092f; }
    /* line 45, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
    #footer .footer-menu-container li.current-menu-item > a:hover {
      text-decoration: none;
      cursor: default; }
  /* line 51, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
  #footer .copyright {
    color: #b8b8b8; }
  /* line 54, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
  #footer a#footer-home-link {
    background: url(../../images/logo-footer.png) left no-repeat;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    margin: 7px 0 15px 0;
    padding: 15px 0 15px 59px;
    color: #808080;
    display: block; }
  @media only screen and (max-width: 639px) {
    /* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
    #footer {
      padding-left: 13px;
      padding-right: 13px;
      margin-left: 20px;
      margin-right: 20px; }
      /* line 73, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
      #footer .footer-menu-container > ul {
        display: block; }
        /* line 75, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_footer.scss */
        #footer .footer-menu-container > ul > li {
          margin-bottom: 30px; } }

/* line 3, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
.content.page .callout {
  margin-top: 12px; }

/* line 12, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
.content main .callout {
  background: #fff url(../../images/callout-body-bg.png) bottom center repeat-x;
  border: 1px solid #e6e6e6;
  -webkit-box-shadow: 0 0 10px #eaeaea;
  -moz-box-shadow: 0 0 10px #eaeaea;
  box-shadow: 0 0 10px #eaeaea;
  margin: 25px 0 0 0;
  padding-bottom: 7px; }
  /* line 22, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout h2 {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e7e6db+0,d9d6c5+100 */
    background: #e7e6db;
    /* Old browsers */
    background: -moz-linear-gradient(top, #e7e6db 0%, #d9d6c5 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #e7e6db 0%, #d9d6c5 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #e7e6db 0%, #d9d6c5 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e6db', endColorstr='#d9d6c5',GradientType=0 );
    /* IE6-9 */
    padding: 7px 9px 9px 9px;
    font-size: 1.5em;
    letter-spacing: 0.07em;
    line-height: 19px;
    text-transform: uppercase;
    margin-top: 0 !important; }
  /* line 40, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout h3 {
    padding: 5px 9px 0 9px;
    margin-bottom: -5px;
    font-weight: normal;
    font-size: 13px; }
  /* line 48, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout p {
    padding: 15px 9px 9px 9px;
    margin-top: 0; }
  /* line 52, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout p.extra {
    padding-top: 20px; }
  /* line 56, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout.press-release {
    margin: 0 0 20px 20px; }
  /* line 61, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout.news h3 {
    margin-bottom: 2px;
    font-weight: bold;
    line-height: 18px; }
  /* line 66, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout.news p.date {
    color: #7d7d7d; }
  /* line 70, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout.news p {
    padding-top: 0;
    padding-bottom: 0; }
  /* line 76, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout img {
    float: left;
    margin: 4px 9px 0px 0; }
  /* line 81, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout ul {
    padding: 0 10px; }
  /* line 85, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout ul li a {
    font-size: 15px;
    line-height: 17px;
    color: #cc092f; }
  /* line 92, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout.sitemap {
    margin-bottom: 40px; }
  /* line 96, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
  .content main .callout ul.sitemap {
    margin: 10px; }
    /* line 98, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
    .content main .callout ul.sitemap li {
      list-style: none;
      margin-bottom: 7px; }
    /* line 103, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
    .content main .callout ul.sitemap li ul li a {
      text-decoration: underline;
      list-style: none;
      font-size: 12px;
      font-weight: normal; }
    /* line 110, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
    .content main .callout ul.sitemap li ul li a:hover {
      text-decoration: none; }
    /* line 114, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
    .content main .callout ul.sitemap li > a {
      font-size: 12px;
      text-decoration: none;
      font-weight: bold; }
    /* line 120, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_callout.scss */
    .content main .callout ul.sitemap li ul {
      margin-top: 6px; }

/* line 1, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
.form-group {
  display: block;
  clear: both;
  padding: 8px; }
  /* line 5, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
  .form-group label {
    width: 210px;
    display: inline-block;
    float: left;
    text-align: right;
    display: block;
    font-weight: bold;
    font-size: 1.3em;
    font-weight: bold;
    color: #808080;
    margin-right: 20px;
    min-height: 10px; }
  /* line 18, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
  .form-group .form-item {
    float: left;
    width: calc(100% - 230px); }
    /* line 21, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
    .form-group .form-item .wpcf7-not-valid-tip {
      clear: left;
      font-size: 14px; }
  /* line 28, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
  .form-group input[type=text],
  .form-group input[type=email],
  .form-group select,
  .form-group textarea {
    border: 1px solid #d9d9d9;
    padding: 4px 8px;
    width: calc(100% - 18px);
    max-width: 280px;
    color: #808080;
    display: inline;
    font-size: 1.3em; }
  /* line 49, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
  .form-group textarea {
    font-family: Arial;
    padding: 4px 8px;
    height: 150px; }

/* line 57, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
.wpcf7-submit {
  background-color: #cc092f;
  background-color: #d2001a;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#bc0017), to(#d2001a));
  background-image: -webkit-linear-gradient(top, #bc0017, #d2001a);
  background-image: -moz-linear-gradient(top, #bc0017, #d2001a);
  background-image: -o-linear-gradient(top, #bc0017, #d2001a);
  background-image: linear-gradient(to bottom, #bc0017, #d2001a);
  color: #FFF;
  font-weight: bold;
  border-radius: 3px;
  padding: 10px 20px;
  font-size: 16px;
  border: none; }

/* line 68, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
.wpcf7-response-output {
  border: none;
  font-size: 16px;
  background-color: lightgrey; }
  /* line 72, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
  .wpcf7-response-output.wpcf7-validation-errors, .wpcf7-response-output.wpcf7-acceptance-missing {
    border: 2px solid #f7e700; }
  /* line 76, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
  .wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7-response-output.wpcf7-aborted {
    border: 2px solid #ff0000; }

/* Contact Page */
/* line 90, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
.wpcf7 {
  padding: 20px 0 40px 0;
  background: #f5f4f0;
  margin: 20px 0 30px 0; }

@media only screen and (max-width: 550px) {
  /* line 103, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
  .form-group label {
    width: 100%;
    float: none;
    text-align: left;
    margin-right: 0px; }
  /* line 109, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_forms.scss */
  .form-group .form-item {
    float: none;
    width: 100%; } }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_searchform.scss */
form.searchform {
  clear: right;
  margin-top: 10px; }
  /* line 6, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_searchform.scss */
  form.searchform .form-group {
    padding: 0;
    display: inline-block; }
  /* line 10, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_searchform.scss */
  form.searchform input[type=text] {
    padding: 2px 5px;
    font-size: 1.2em;
    float: left;
    font-family: Helvetica Neue, Helvetica, sans-serif; }
  /* line 16, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_searchform.scss */
  form.searchform input[type=image] {
    margin: 2px 0 0 5px; }
  /* line 19, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_searchform.scss */
  form.searchform button[type=submit], form.searchform .mobile-wrapper .mobile-submit {
    outline: none;
    margin-left: 8px;
    font-weight: 900;
    color: #CC092F;
    font-size: 14px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,b2b2b2+100 */
    background: #ffffff;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #b2b2b2 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, #b2b2b2 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, #b2b2b2 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b2b2b2',GradientType=0 );
    /* IE6-9 */
    border-radius: 5px;
    cursor: pointer;
    border: none;
    padding: 3px 10px;
    vertical-align: top; }
    /* line 38, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_searchform.scss */
    form.searchform button[type=submit]:after, form.searchform .mobile-wrapper .mobile-submit:after {
      font-family: "Font Awesome 5 Free";
      content: "\f054";
      display: block; }
  /* line 45, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_searchform.scss */
  form.searchform .mobile-wrapper button[type=submit] {
    display: none; }
  /* line 48, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/modules/_searchform.scss */
  form.searchform .mobile-close {
    display: none; }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
.content.home .callout.news {
  margin-bottom: 30px; }

/* line 6, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
#home-hero {
  height: inherit !important; }
  /* line 8, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
  #home-hero .the-content {
    font-family: "purista-web",sans-serif;
    background-color: #cc092f;
    color: #FFFFFF;
    font-size: 21px;
    padding-bottom: 15px; }
    /* line 14, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
    #home-hero .the-content h1 {
      background-color: #cc092f;
      font-size: 21px;
      line-height: 23px;
      -webkit-box-shadow: 0px 0px 8px 5px rgba(0, 0, 0, 0.35);
      -moz-box-shadow: 0px 0px 8px 5px rgba(0, 0, 0, 0.35);
      box-shadow: 0px 0px 8px 5px rgba(0, 0, 0, 0.35);
      position: relative;
      padding: 14px 23px;
      text-transform: uppercase;
      font-weight: 600; }
    /* line 26, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
    #home-hero .the-content p {
      padding: 17px 23px 0px 23px;
      line-height: 19px;
      text-transform: uppercase;
      font-size: 16px; }
    /* line 32, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
    #home-hero .the-content a {
      color: #FFFFFF;
      display: block;
      text-transform: uppercase;
      font-size: 16px;
      margin-left: 23px; }
      /* line 38, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
      #home-hero .the-content a i {
        margin-left: 4px; }
      /* line 41, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
      #home-hero .the-content a:hover {
        text-decoration: underline; }
  /* line 46, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
  #home-hero .the-image {
    -webkit-box: 2;
    -moz-box: 2;
    -webkit-flex: 2 0 auto;
    -ms-flex: 2 0 auto;
    flex: 2 0 auto;
    background-image: url(../../images/military-home.jpg);
    background-size: cover;
    background-position: center center;
    height: 0;
    padding-bottom: 50%; }
  @media only screen and (min-width: 640px) {
    /* line 6, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
    #home-hero {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      height: 39.1em; }
      /* line 59, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
      #home-hero .the-content {
        padding: 15px;
        width: 214px;
        font-size: 16px;
        padding: 22px 15px; }
        /* line 65, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
        #home-hero .the-content h1 {
          width: 141%;
          font-size: 35px;
          padding: 4px 15px 15px 15px;
          line-height: 36px;
          font-weight: 400; }
        /* line 72, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
        #home-hero .the-content p {
          padding: 17px 0 0 12px;
          line-height: 22px;
          font-size: 17px; }
        /* line 77, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
        #home-hero .the-content a {
          margin-top: 10px;
          margin-left: 12px;
          font-weight: 700; }
      /* line 83, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_home.scss */
      #home-hero .the-image {
        height: inherit;
        padding-bottom: 0; } }

/* line 4, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
.staff .staff-list {
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 0;
  width: 100%;
  max-width: inherit; }

/* line 11, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
.staff .entry {
  width: 33.33%;
  display: inline-block;
  vertical-align: top;
  font-size: 0.9em;
  margin-bottom: 20px;
  list-style: none; }
  /* line 18, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
  .staff .entry .entry-padding {
    padding: 0 10px;
    position: relative; }
  /* line 23, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
  .staff .entry .staff-image {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    height: 0;
    padding-bottom: 140%; }
  /* line 31, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
  .staff .entry img {
    width: 100%;
    max-width: 100%;
    box-shadow: 5px 5px 5px #dbdbdb;
    -moz-box-shadow: 5px 5px 5px #dbdbdb;
    -webkit-box-shadow: 5px 5px 5px #dbdbdb;
    filter: progid:DXImageTransform.Microsoft.dropShadow(color=#dbdbdb, offX=5, offY=5, positive=true);
    margin-right: 20px; }
  /* line 41, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
  .staff .entry .entrytitle, .staff .entry .clientheader, .staff .entry .eventheader {
    color: #cc092f;
    background: #e5e3d9;
    padding: 5px 8px;
    font-size: 1.8em; }
  /* line 48, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
  .staff .entry h2 {
    font-size: 1.8em;
    margin-top: 5px;
    font-weight: bold;
    margin-top: 0; }
  /* line 54, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
  .staff .entry p {
    margin-top: 0; }
  /* line 58, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
  .staff .entry p a.read-more {
    background: url(../../images/content-bullet.png) right 2px no-repeat;
    padding: 0px 15px 0 0; }
  /* line 63, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
  .staff .entry p a.read-more:hover {
    border-bottom: 1px dotted #CC092F; }

@media only screen and (max-width: 639px) {
  /* line 68, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
  .staff .entry {
    width: 50%; } }

@media only screen and (max-width: 400px) {
  /* line 73, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_staff.scss */
  .staff .entry {
    width: 100%; } }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
.history .entry {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 25px;
  margin-bottom: 10px;
  list-style: none; }
  /* line 8, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
  .history .entry .entry-padding {
    padding: 0 10px; }
  /* line 12, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
  .history .entry h2 {
    margin-bottom: 16px; }
  /* line 16, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
  .history .entry:first-child {
    margin-top: -33px; }
  /* line 20, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
  .history .entry:last-child {
    margin-bottom: 0px;
    border-bottom: none; }
  /* line 26, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
  .history .entry .img {
    width: 33.33%;
    margin-right: 23px;
    float: left; }
    /* line 30, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
    .history .entry .img img {
      max-width: 100%;
      width: 100%;
      height: auto;
      box-shadow: 5px 5px 5px #dbdbdb;
      -moz-box-shadow: 5px 5px 5px #dbdbdb;
      -webkit-box-shadow: 5px 5px 5px #dbdbdb;
      filter: progid:DXImageTransform.Microsoft.dropShadow(color=#dbdbdb, offX=5, offY=5, positive=true); }
  /* line 41, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
  .history .entry .entrytitle {
    color: #cc092f;
    background: #e5e3d9;
    background-color: #D9D6C5;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ECEBE2), to(#D9D6C5));
    background-image: -webkit-linear-gradient(top, #ECEBE2, #D9D6C5);
    background-image: -moz-linear-gradient(top, #ECEBE2, #D9D6C5);
    background-image: -o-linear-gradient(top, #ECEBE2, #D9D6C5);
    background-image: linear-gradient(to bottom, #ECEBE2, #D9D6C5);
    padding: 5px 8px;
    font-size: 1.8em;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px; }
  /* line 51, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
  .history .entry .excerpt {
    line-height: 22px;
    font-size: 1.4em;
    margin-left: calc(33.33% + 23px); }
    /* line 55, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
    .history .entry .excerpt a.read-more {
      margin-top: 11px;
      display: inline-block;
      background: url(../../images/content-bullet.png) right center no-repeat;
      padding: 0px 15px 0 0;
      color: #cc092f; }
      /* line 61, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
      .history .entry .excerpt a.read-more:hover {
        border-bottom: 1px dotted #CC092F; }
    /* line 65, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
    .history .entry .excerpt p {
      font-size: inherit; }

@media only screen and (max-width: 639px) {
  /* line 73, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
  .history .entry {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 39px;
    padding-bottom: 34px; }
    /* line 79, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
    .history .entry h2 {
      -webkit-box-ordinal-group: 3;
      -moz-box-ordinal-group: 3;
      -webkit-order: 2;
      -ms-flex-order: 2;
      order: 2; }
    /* line 82, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
    .history .entry .img {
      -webkit-box-ordinal-group: 2;
      -moz-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
      width: 100%;
      margin-right: 0px;
      float: none;
      max-width: 350px;
      margin: auto;
      margin-bottom: 5px; }
    /* line 92, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
    .history .entry .entrytitle {
      font-size: 2em;
      display: block;
      margin-bottom: 8px;
      font-family: "purista-web",sans-serif; }
    /* line 98, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
    .history .entry .excerpt {
      line-height: 24px;
      font-size: 1.6em;
      -webkit-box-ordinal-group: 4;
      -moz-box-ordinal-group: 4;
      -webkit-order: 3;
      -ms-flex-order: 3;
      order: 3;
      margin-left: 0; }
      /* line 103, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_history.scss */
      .history .entry .excerpt a.read-more {
        margin-top: 4px; } }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
.news .entry {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 25px;
  margin-bottom: 10px;
  list-style: none; }
  /* line 8, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
  .news .entry .entry-padding {
    padding: 0 10px; }
  /* line 12, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
  .news .entry h2 {
    margin-bottom: 16px; }
  /* line 16, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
  .news .entry:first-child {
    margin-top: -33px; }
  /* line 20, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
  .news .entry:last-child {
    margin-bottom: 0px;
    border-bottom: none; }
  /* line 26, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
  .news .entry .img {
    width: 33.33%;
    margin-right: 23px;
    float: left; }
    /* line 30, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
    .news .entry .img img {
      max-width: 100%;
      width: 100%;
      height: auto;
      box-shadow: 5px 5px 5px #dbdbdb;
      -moz-box-shadow: 5px 5px 5px #dbdbdb;
      -webkit-box-shadow: 5px 5px 5px #dbdbdb;
      filter: progid:DXImageTransform.Microsoft.dropShadow(color=#dbdbdb, offX=5, offY=5, positive=true); }
  /* line 41, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
  .news .entry .entrytitle, .news .entry .clientheader, .news .entry .eventheader {
    color: #cc092f;
    background: #e5e3d9;
    padding: 5px 8px;
    font-size: 1.8em; }
  /* line 47, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
  .news .entry .excerpt {
    line-height: 22px;
    font-size: 1.4em;
    margin-left: calc(33.33% + 23px); }
    /* line 51, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
    .news .entry .excerpt .entrytitle {
      font-size: 1.3em;
      font-weight: 500;
      display: inline-block;
      margin-bottom: 8px; }
    /* line 57, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
    .news .entry .excerpt a.read-more {
      margin-top: 11px;
      display: inline-block;
      background: url(../../images/content-bullet.png) right center no-repeat;
      padding: 0px 15px 0 0;
      color: #cc092f; }
      /* line 63, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
      .news .entry .excerpt a.read-more:hover {
        border-bottom: 1px dotted #CC092F; }

@media only screen and (max-width: 639px) {
  /* line 72, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
  .news .entry {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 39px;
    padding-bottom: 34px; }
    /* line 78, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
    .news .entry h2 {
      -webkit-box-ordinal-group: 3;
      -moz-box-ordinal-group: 3;
      -webkit-order: 2;
      -ms-flex-order: 2;
      order: 2; }
    /* line 81, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
    .news .entry .img {
      -webkit-box-ordinal-group: 2;
      -moz-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
      width: 100%;
      margin-right: 0px;
      float: none;
      max-width: 350px;
      margin: auto;
      margin-bottom: 5px; }
    /* line 90, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
    .news .entry .excerpt {
      line-height: 24px;
      font-size: 1.6em;
      -webkit-box-ordinal-group: 4;
      -moz-box-ordinal-group: 4;
      -webkit-order: 3;
      -ms-flex-order: 3;
      order: 3;
      margin-left: 0; }
      /* line 95, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
      .news .entry .excerpt .entrytitle {
        font-size: 1.3em;
        font-weight: 500;
        display: block;
        margin-bottom: 8px;
        background-color: #D9D6C5;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#ECEBE2), to(#D9D6C5));
        background-image: -webkit-linear-gradient(top, #ECEBE2, #D9D6C5);
        background-image: -moz-linear-gradient(top, #ECEBE2, #D9D6C5);
        background-image: -o-linear-gradient(top, #ECEBE2, #D9D6C5);
        background-image: linear-gradient(to bottom, #ECEBE2, #D9D6C5);
        font-family: "purista-web",sans-serif; }
      /* line 103, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_news.scss */
      .news .entry .excerpt a.read-more {
        margin-top: 4px; } }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
.policies .entry {
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 25px;
  margin-bottom: 10px;
  list-style: none; }
  /* line 8, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
  .policies .entry .entry-padding {
    padding: 0 10px; }
  /* line 12, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
  .policies .entry h2 {
    margin-bottom: 16px; }
  /* line 16, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
  .policies .entry:first-child {
    margin-top: -33px; }
  /* line 20, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
  .policies .entry:last-child {
    margin-bottom: 0px;
    border-bottom: none; }
  /* line 27, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
  .policies .entry .entrytitle, .policies .entry .clientheader, .policies .entry .eventheader {
    color: #cc092f;
    background: #e5e3d9;
    padding: 5px 8px;
    font-size: 1.8em; }
  /* line 33, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
  .policies .entry .excerpt {
    line-height: 22px;
    font-size: 1.4em; }
    /* line 36, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
    .policies .entry .excerpt .entrytitle {
      font-size: 1.3em;
      font-weight: 500;
      display: inline-block;
      margin-bottom: 8px; }
    /* line 42, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
    .policies .entry .excerpt a.read-more {
      margin-top: 11px;
      display: inline-block;
      background: url(../../images/content-bullet.png) right center no-repeat;
      padding: 0px 15px 0 0;
      color: #cc092f; }
      /* line 48, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
      .policies .entry .excerpt a.read-more:hover {
        border-bottom: 1px dotted #CC092F; }

@media only screen and (max-width: 639px) {
  /* line 57, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
  .policies .entry {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 39px;
    padding-bottom: 34px; }
    /* line 63, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
    .policies .entry h2 {
      -webkit-box-ordinal-group: 3;
      -moz-box-ordinal-group: 3;
      -webkit-order: 2;
      -ms-flex-order: 2;
      order: 2; }
    /* line 66, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
    .policies .entry .img {
      -webkit-box-ordinal-group: 2;
      -moz-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
      width: 100%;
      margin-right: 0px;
      float: none;
      max-width: 350px;
      margin: auto;
      margin-bottom: 5px; }
    /* line 75, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
    .policies .entry .excerpt {
      line-height: 24px;
      font-size: 1.6em;
      -webkit-box-ordinal-group: 4;
      -moz-box-ordinal-group: 4;
      -webkit-order: 3;
      -ms-flex-order: 3;
      order: 3;
      margin-left: 0; }
      /* line 80, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
      .policies .entry .excerpt .entrytitle {
        font-size: 1.3em;
        font-weight: 500;
        display: block;
        margin-bottom: 8px;
        background-color: #D9D6C5;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#ECEBE2), to(#D9D6C5));
        background-image: -webkit-linear-gradient(top, #ECEBE2, #D9D6C5);
        background-image: -moz-linear-gradient(top, #ECEBE2, #D9D6C5);
        background-image: -o-linear-gradient(top, #ECEBE2, #D9D6C5);
        background-image: linear-gradient(to bottom, #ECEBE2, #D9D6C5);
        font-family: "purista-web",sans-serif; }
      /* line 88, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_policies.scss */
      .policies .entry .excerpt a.read-more {
        margin-top: 4px; } }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_clients.scss */
.clients .pagetitle {
  text-transform: none;
  display: inline-block;
  width: auto;
  line-height: 2;
  font-size: 18px;
  letter-spacing: initial;
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: #D9D6C5;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ECEBE2), to(#D9D6C5));
  background-image: -webkit-linear-gradient(top, #ECEBE2, #D9D6C5);
  background-image: -moz-linear-gradient(top, #ECEBE2, #D9D6C5);
  background-image: -o-linear-gradient(top, #ECEBE2, #D9D6C5);
  background-image: linear-gradient(to bottom, #ECEBE2, #D9D6C5); }

/* line 13, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_clients.scss */
.clients .bodycopy {
  font-size: 1.5em;
  line-height: 24px;
  color: #626262;
  margin: 0 0 25px 0; }
  /* line 18, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_clients.scss */
  .clients .bodycopy p {
    line-height: inherit;
    font-size: inherit; }

/* line 24, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_clients.scss */
.clients .client-list .client {
  list-style: none !important;
  text-align: center;
  width: 157px;
  margin: 0;
  width: 33.33%;
  display: inline-block;
  vertical-align: top;
  color: #333 !important;
  margin-bottom: 20px; }
  /* line 34, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_clients.scss */
  .clients .client-list .client img {
    box-shadow: 0 0 8px #e0e0e0;
    -webkit-box-shadow: 0 0 8px #e0e0e0; }
  /* line 38, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_clients.scss */
  .clients .client-list .client .name {
    font-weight: bold; }
  /* line 41, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_clients.scss */
  .clients .client-list .client .detail {
    font-size: 0.8em; }

@media only screen and (max-width: 639px) {
  /* line 48, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_clients.scss */
  .clients .pagetitle {
    display: block; }
  /* line 52, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_clients.scss */
  .clients .client-list .client {
    width: 50%; } }

@media only screen and (max-width: 420px) {
  /* line 59, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_clients.scss */
  .clients .client-list .client {
    width: 100%; } }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
.the-gallery .entry {
  margin-bottom: 40px; }
  /* line 4, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
  .the-gallery .entry .gallery {
    margin-left: -10px;
    margin-right: -10px; }
    /* line 8, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
    .the-gallery .entry .gallery .gallery-item {
      margin-top: 10px;
      text-align: center;
      width: 25%;
      display: inline-block;
      vertical-align: top; }
      /* line 15, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
      .the-gallery .entry .gallery .gallery-item .gallery-icon,
      .the-gallery .entry .gallery .gallery-item .gallery-caption {
        padding-left: 10px;
        padding-right: 10px; }
      /* line 21, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
      .the-gallery .entry .gallery .gallery-item .gallery-caption {
        margin-left: 0;
        font-size: 12px; }
      /* line 26, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
      .the-gallery .entry .gallery .gallery-item img {
        border: 2px solid #cfcfcf;
        width: 100%; }
      /* line 30, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
      .the-gallery .entry .gallery .gallery-item a:hover img {
        border: 2px solid #cc092f; }

@media only screen and (max-width: 740px) {
  /* line 39, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
  .the-gallery .entry .gallery .gallery-item {
    width: 33.33%; } }

@media only screen and (max-width: 500px) {
  /* line 44, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
  .the-gallery .entry .gallery .gallery-item {
    width: 50%; } }

@media only screen and (max-width: 360px) {
  /* line 49, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
  .the-gallery .entry .gallery .gallery-item {
    width: 100%; } }

/* line 55, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
.gallery-title .title {
  text-align: left;
  font-size: 14px;
  margin-right: 45px; }
  /* line 59, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
  .gallery-title .title b {
    display: block;
    font-size: 1.3em;
    color: #cc092f; }

/* line 65, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_gallery.scss */
.gallery-title .counter {
  position: absolute;
  right: 0;
  bottom: 0; }

/* line 1, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
.capability-listing {
  margin-top: 20px; }
  /* line 3, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
  .capability-listing .entry {
    border-top: 1px solid #e4e4e4;
    border-bottom: none;
    padding-bottom: 26px;
    margin: 0; }
    /* line 9, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
    .capability-listing .entry .pagetitle-link {
      display: block; }
    /* line 12, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
    .capability-listing .entry .pagetitle {
      font-size: 26px;
      font-weight: 400;
      font-family: "purista-web",sans-serif;
      padding: 12px;
      margin-bottom: 20px;
      display: block !important;
      -webkit-box-shadow: none !important;
      -moz-box-shadow: none !important;
      box-shadow: none !important; }
    /* line 24, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
    .capability-listing .entry .img {
      height: 0;
      padding-bottom: 66%;
      margin-bottom: 30px;
      width: 100%;
      background-size: cover;
      background-position: center center;
      -webkit-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.5);
      -moz-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.5);
      box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.5); }
    /* line 37, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
    .capability-listing .entry .excerpt {
      font-size: 16px;
      padding: 0 10px; }
      /* line 40, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
      .capability-listing .entry .excerpt h2 {
        font-weight: 400;
        font-size: 1.5em;
        margin-top: 10px;
        margin-bottom: 10px; }
      /* line 46, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
      .capability-listing .entry .excerpt ul, .capability-listing .entry .excerpt li, .capability-listing .entry .excerpt p {
        font-size: inherit;
        line-height: inherit; }
      /* line 50, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
      .capability-listing .entry .excerpt a.read-more {
        font-size: 1em;
        background-position: right center;
        font-size: 0.7em; }
  @media only screen and (min-width: 640px) {
    /* line 62, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
    .capability-listing .entry .pagetitle {
      margin-bottom: 18px;
      display: inline-block !important; }
    /* line 66, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
    .capability-listing .entry .img {
      float: left;
      width: 213px;
      height: 150px;
      padding-bottom: 0;
      float: left;
      margin-right: 20px;
      margin-bottom: 0px;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none; }
    /* line 78, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
    .capability-listing .entry .excerpt {
      padding: 0;
      font-size: 14px;
      margin-left: 234px; }
      /* line 82, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_capabilities.scss */
      .capability-listing .entry .excerpt h2 {
        margin-top: 0;
        font-size: 1.4em; } }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/pages/_search.scss */
.search-results .entry {
  border-bottom: 1px solid #e4e4e4;
  margin-top: 25px;
  padding-bottom: 25px; }

/* line 2, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #linkbar-mask-top {
  position: absolute;
  top: 62px;
  left: 50%;
  margin: 0 0 0 -495px;
  z-index: 2; }

/* line 10, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #linkbar-mask-bottom {
  position: absolute;
  top: 99px;
  left: 50%;
  margin: 0 0 0 -495px;
  z-index: -1; }

/* line 18, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #header form#search input[type=image] {
  margin: 0px 0 0 5px; }

/* line 22, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #ie-content-shadow-full {
  width: 1000px;
  position: absolute;
  top: 172px;
  left: 50%;
  margin: 0 0 0 -501px;
  line-height: 0;
  z-index: -1; }

/* line 32, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #ie-content-shadow-page {
  width: 760px;
  position: absolute;
  top: 172px;
  left: 50%;
  margin: 0 0 0 -260px;
  line-height: 0;
  z-index: -1; }

/* line 42, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #ie-content-shadow-full .stretcher {
  background: url(images/ie-shadow-nine-sixty-middle.png) repeat-y; }

/* line 46, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #ie-content-shadow-page .stretcher {
  background: url(images/ie-shadow-seven-twenty-middle.png) repeat-y; }

/* line 50, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #page-topper, .lt-ie9 #home-topper {
  position: absolute;
  top: 136px;
  left: 50%;
  margin: 0 0 0 -260px;
  line-height: 0;
  z-index: 0; }

/* line 59, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #home-topper {
  width: 1000px;
  left: 50%;
  margin: 0 0 0 -501px; }

/* line 69, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #linkbar a {
  background: url(images/ie-linkbar-button-bg.png) repeat-x;
  padding: 13px 0 10px 0;
  width: 239px;
  border-bottom: 1px solid #525252;
  border-right: 1px solid #787878;
  float: left;
  color: #CC092F;
  text-align: center;
  text-transform: uppercase; }

/* line 81, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #linkbar a.active {
  background: url(images/linkbar-button-active-bg.png);
  border-bottom: 1px solid #5f0e1b;
  width: 239px;
  color: white; }

/* line 88, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #linkbar a.active:hover {
  background: url(images/linkbar-button-active-bg.png);
  color: white; }

/* line 93, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #linkbar a.last {
  border-right: none;
  width: 241px; }

/* line 101, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 #linkbar a:hover {
  background-position: 0px 56px; }

/* line 105, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 .content pageheader, .lt-ie9 .content .pageheader {
  top: 222px; }

/* line 109, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie9 .content pageheader.first, .lt-ie9 .content .pageheader.first {
  top: 178px; }

/* line 123, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie8 #linkbar-mask-top {
  position: absolute;
  top: 62px;
  left: 50%;
  margin: 0 0 0 -496px;
  z-index: 2; }

/* line 131, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie8 #linkbar a.last {
  width: 241px; }

/* line 135, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie8 #linkbar-mask-bottom {
  position: absolute;
  top: 99px;
  left: 50%;
  margin: 0 0 0 -496px;
  z-index: -1; }

/* line 143, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie8 #header form#search input[type=image] {
  margin: 0px 0 0 5px; }

/* line 147, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie8 #ie-content-shadow-full {
  margin: 0 0 0 -502px; }

/* line 151, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie8 #ie-content-shadow-page {
  margin: 0 0 0 -261px; }

/* line 155, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie8 #ie-content-shadow-full img, .lt-ie8 #ie-content-shadow-page img {
  margin: 0 0 -3px 0;
  padding: 0; }

/* line 160, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie8 .dropdown.dark {
  top: 0;
  margin: 34px 0 0 281px; }

/* line 165, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie8 #header #top-linkbar a.dropdown {
  height: 32px;
  padding-bottom: 0px;
  padding-left: 13px; }

/* line 171, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.lt-ie8 .content .callout p.extra {
  margin-top: 20px;
  padding-top: 2px; }

/* line 182, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.ie9 #ie-content-shadow-full {
  display: none; }

/* line 186, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.ie9 #ie-content-shadow-page {
  display: none; }

/* line 190, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.ie9 #ie-content-shadow-full img, .ie9 #ie-content-shadow-page img {
  display: none; }

/* line 194, D:/Dropbox/Work/Supervox/NPC_Robotics/npcrobotics.com/html/wp-content/themes/npc/library/scss/global/_ie.scss */
.ie9 img#linkbar-mask-top, .ie9 img#linkbar-mask-bottom {
  display: none; }

/*********************
PAGE SPECIFIC
each of these stylesheets should be wrapped in a body class specific to one page.
*********************/

/*# sourceMappingURL=style.css.map */