﻿/**
 * Micron Track 3
 * Author: Pasquale Scerbo  [pscerbo@extractable.com]
 */
@import url("normalize.css");
@import url("main.css");
@import url("colorbox.css");
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* Drop Shadow */
/**
 USAGE:

 .block {
    //CSS declarations for `.block`

	@include element('element') {
		//CSS declarations for `.block__element`
	}

	@include modifier('modifier') {
		//CSS declarations for `.block--modifier`

		@include element('element') {
			//CSS declarations for `.block--modifier__element`
		}
	}
}

*/
/*
 * Variables
 */
/* Badge Colors */
/*
 * Grid
 */
.col {
  text-align: left; }
  .col.one {
    float: left;
    width: 80px; }
  .col.offsetOne {
    margin-left: 80px; }
  .col.two {
    float: left;
    width: 160px; }
  .col.offsetTwo {
    margin-left: 160px; }
  .col.three {
    float: left;
    width: 240px; }
  .col.offsetThree {
    margin-left: 240px; }
  .col.four {
    float: left;
    width: 320px; }
  .col.five {
    float: left;
    width: 400px; }
  .col.six {
    float: left;
    width: 480px; }
  .col.seven {
    float: left;
    width: 560px; }
  .col.eight {
    float: left;
    width: 640px; }
  .col.offsetEight {
    margin-left: 640px; }
  .col.nine {
    float: left;
    width: 720px; }
  .col.ten {
    float: left;
    width: 800px; }
  .col.eleven {
    float: left;
    width: 880px; }
  .col.twelve {
    float: left;
    width: 960px; }

/*
	Profiling directive styles
*/
#angular-profiler {
  position: fixed;
  top: 40px;
  right: 40px;
  background-color: white;
  width: 300px;
  height: auto;
  z-index: 10000;
  border: solid 1px grey;
  font-size: 0.8em;
  text-align: left; }
  #angular-profiler .wrap {
    padding: 20px; }

/**
 * Defaults
 */
body {
  background: #FFF;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif; }

h1, h2, h3 {
  margin: 0;
  padding: 0; }

#page {
  width: 100%;
  overflow-x: hidden; }

.cleaner {
  clear: both; }

.clear20 {
  clear: both;
  height: 20px; }

.clear30 {
  clear: both;
  height: 30px; }

.clear40 {
  clear: both;
  height: 40px; }

a {
  color: #016abe;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

/* Base */
.container {
  width: 960px;
  margin: 0 auto;
  position: relative; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }

.mymenu {
  width: 960px;
  margin: 0 auto; }
  .mymenu:before, .mymenu:after {
    content: " ";
    display: table; }
  .mymenu:after {
    clear: both; }

/**
 * Forms Defaults
 */
input[type=text],
input[type=email],
input[type=number],
input[type=password] {
  float: left;
  width: 322px;
  height: 32px;
  margin: 0 10px 20px 10px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #cccccc;
  text-indent: 10px;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif; }

input[type=submit], input[type=button] {
  text-transform: uppercase;
  background: #016abe;
  color: #FFF;
  padding: 12px 25px;
  border: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif; }

/* Contact Form at bottom of pages */
.quickContact {
  margin: 0 auto;
  text-align: center; }
  .quickContact:before, .quickContact:after {
    content: " ";
    display: table; }
  .quickContact:after {
    clear: both; }
  .quickContact input[type=submit] {
    margin-top: 18px; }
  .quickContact .five input[type=text].error,
  .quickContact .five input[type=email]
  input[type=number].error {
    border: 1px solid red;
    margin-top: 0 !important;
    margin-right: 10px; }
  .quickContact .five:nth-child(2n+1) {
    text-align: right; }
    .quickContact .five:nth-child(2n+1) .error {
      margin: -10px 0 30px 70px; }
    .quickContact .five:nth-child(2n+1) input[type=text] {
      float: right; }
  .quickContact label.error {
    display: none !important; }

/* Checkbox and Radio Button Styling */
input[type="checkbox"] {
  visibility: hidden;
  position: absolute; }

input[type="checkbox"] + label {
  display: inline-block;
  cursor: pointer;
  margin-bottom: 5px; }
  input[type="checkbox"] + label:before {
    display: inline-block;
    content: "";
    width: 19px;
    height: 19px;
    margin: -1px 8px 0 0;
    vertical-align: middle;
    background: url("img/checkbox.png") left top no-repeat; }

input[type="checkbox"]:checked + label:before {
  background: url("img/checkbox.png") left -19px no-repeat; }

input[type="checkbox"]:indeterminate + label:before {
  background: url("img/checkbox.png") left -37px no-repeat; }

input[type="radio"] {
  display: none; }

input[type="radio"] + label {
  cursor: pointer;
  margin-bottom: 10px;
  display: block; }
  input[type="radio"] + label:before {
    display: inline-block;
    content: "";
    width: 22px;
    height: 20px;
    margin: -1px 8px 0 0;
    vertical-align: middle;
    background: url("img/radio.png") left top no-repeat; }

input[type="radio"]:checked + label:before {
  background: url("img/radio.png") left -20px no-repeat; }

/* Error Messages Styling */
label.error {
  color: red;
  float: left;
  padding: 10px 0;
  margin: 10px 0; }
  label.error:before, label.error:after {
    content: " ";
    display: table; }
  label.error:after {
    clear: both; }

/* Selectbox Styling */
span.selectbox {
  font-size: 13px;
  background-color: #00457c;
  color: #FFF;
  padding: 8px 7px;
  border: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 0 0 10px 10px; }

span.selectbox.changed {
  background-color: #FFF; }

.customSelectInner[style] {
  background: url("img/arrow-down-select.png") no-repeat center right;
  padding-right: 40px;
  width: auto !important; }

.invalid {
  display: none; }

textarea {
  width: 100%;
  border: 1px solid #cccccc;
  resize: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 150px;
  margin-bottom: 20px;
  padding: 10px;
  line-height: 20px; }

.support-form-group {
  display: block;
  /*
  select {
  	width: auto;
  }
  .selectbox {
  	width: 265px !important;
  	margin-left: 0px;
  }
  .customSelectInner[style] {
  	width: 255px !important;
  }
  */ }
  .support-form-group:before, .support-form-group:after {
    content: " ";
    display: table; }
  .support-form-group:after {
    clear: both; }
  .support-form-group p {
    margin-bottom: 5px !important;
    margin-top: 15px !important; }
  .support-form-group .input-support {
    float: none !important;
    width: 322px;
    height: 32px;
    margin: 0 0 10px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #cccccc;
    text-indent: 10px;
    font-size: 12px; }
  .support-form-group .label-support {
    width: 95px;
    display: inline-block; }

#supportFBGA .searchBtn {
  margin: 0 0 0 99px !important; }

.searchBtn {
  padding: 12px 25px;
  width: 140px; }

.error_message {
  color: red !important; }

/* Checkboxs and Radio Buttons for IE8 */
.lt-ie9 .partsCatalog .ng-scope {
  clear: both;
  display: block; }
  .lt-ie9 .partsCatalog .ng-scope:before, .lt-ie9 .partsCatalog .ng-scope:after {
    content: " ";
    display: table; }
  .lt-ie9 .partsCatalog .ng-scope:after {
    clear: both; }
.lt-ie9 input[type="checkbox"] {
  visibility: visible !important;
  display: inline-block !important;
  float: left !important;
  position: relative; }
.lt-ie9 input[type="checkbox"] + label {
  float: left;
  margin-right: 0 !important;
  margin-bottom: 10px;
  display: inline-block;
  margin-left: 5px; }
  .lt-ie9 input[type="checkbox"] + label:before {
    display: none; }
.lt-ie9 input[type="radio"] {
  visibility: visible !important;
  display: inline-block !important;
  float: left !important;
  position: relative; }
.lt-ie9 input[type="radio"] + label {
  float: left;
  margin-right: 0 !important;
  margin-bottom: 10px;
  display: inline-block;
  margin-left: 5px; }
  .lt-ie9 input[type="radio"] + label:before {
    display: none; }

.selectricWrapper {
  position: relative;
  cursor: pointer; }

.selectricResponsive {
  width: 100%; }

.selectric {
  border: 0;
  height: 32px;
  background: #006abf;
  position: relative;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 30px 0 0 !important;
  padding: 6px;
  font-size: 12px;
  line-height: 18px;
  color: #FFF;
  min-height: 18px;
  text-indent: 10px;
  line-height: 32px; }

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 36px;
  height: 30px;
  border-left: 1px solid #4d97d2;
  background: url("img/arrow-down-select.png") no-repeat 0 0;
  text-indent: -9999px; }

.selectric .button:after {
  display: none !important; }

/*
.selectric .button:after {
	content: " ";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 0;
	height: 0;
	border: 4px solid transparent;
	border-top-color: #BBB;
	border-bottom: none;
}


.selectricHover .selectric {
	border-color: #CCC;
}

.selectricHover .selectric .button {
	color: #888;
}

.selectricHover .selectric .button:after {
	border-top-color: #888;
}
*/
.selectricOpen {
  z-index: 9999; }

.selectricOpen .selectric {
  border-color: #CCC;
  background: #006abf;
  z-index: 9999; }

.selectricOpen .selectricItems {
  display: block; }

.selectricDisabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-touch-callout: none;
  user-select: none; }

.selectricHideSelect {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0; }

.selectricHideSelect select {
  position: absolute;
  left: -100%;
  display: none; }

.selectricInput {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important; }

.selectricTempShow {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important; }

.selectricItems {
  display: none;
  position: absolute;
  overflow: auto;
  top: 100%;
  left: 0;
  background: #F9F9F9;
  border: 1px solid #CCC;
  z-index: 9998;
  box-shadow: 0 0 10px -6px; }

.selectricItems ul, .selectricItems li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  min-height: 20px; }

.selectricItems li {
  display: block;
  padding: 5px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #EEE;
  color: #666;
  cursor: pointer; }

.selectricItems li.selected {
  background: #EFEFEF;
  color: #444;
  border-top-color: #E0E0E0; }

.selectricItems li:hover {
  background: #F0F0F0;
  color: #444; }

.selectricItems li.disabled {
  background: #F5F5F5;
  color: #BBB;
  border-top-color: #FAFAFA;
  cursor: default; }

/*
* Toolbar
*/
#toolbar {
  width: 100%;
  background: #e0e0e0;
  height: 30px;
  z-index: 1500;
  position: relative;
  /*
  a.user {
  	float: right;
  	background: #c9c9c9;
  	border-left: 0;
  	padding: 7px 20px 7px 20px;
  	font-size: 11px;
  	color: $micronBlue;
  	text-decoration: none;
  	font-weight: 600;
  	&:before {
  		float: left;
  		content: "";
  		width: 13px;
  		height: 13px;
  		margin-top: 2px;
  		background: url('img/icon-sprite.png') no-repeat -16px 0;
  		margin-right: 10px;
  	}
  }
  */ }
  #toolbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: right;
    padding-top: 7px;
    /* Country Dropdown */ }
    #toolbar ul li {
      float: left;
      font-size: 11px;
      font-weight: 600;
      padding: 0 10px;
      border-left: 1px solid #aaa;
      position: relative; }
      #toolbar ul li:first-child {
        border-left: 0; }
      #toolbar ul li.dropdown {
        padding-bottom: 8px; }
      #toolbar ul li a {
        color: #00457c;
        text-decoration: none; }
        #toolbar ul li a:hover {
          text-decoration: underline; }
        #toolbar ul li a.global {
          padding-left: 5px; }
          #toolbar ul li a.global:before {
            content: '';
            background: url("img/icon-sprite.png") no-repeat 0 0;
            margin-top: 2px;
            width: 12px;
            height: 12px;
            float: left; }
        #toolbar ul li a .unlocked {
          width: 12px;
          margin: 0 3px 0 5px; }
      #toolbar ul li.user {
        position: relative;
        padding: 0;
        border-left: 0;
        margin-top: -3px; }
        #toolbar ul li.user a {
          background: #c9c9c9;
          padding: 7px 10px; }
          #toolbar ul li.user a:before {
            display: inline-block;
            content: "";
            width: 13px;
            height: 13px;
            margin-top: 2px;
            background: url("img/icon-sprite.png") no-repeat -16px 0 #c9c9c9;
            margin-right: 10px; }
    #toolbar ul .countryDropdown {
      border-top: 5px solid #00457c;
      background: #f7f7f7;
      position: absolute;
      margin-top: 8px;
      width: 335px;
      padding: 20px;
      left: 0;
      display: none;
      -moz-border-radius: 0 0 5px 5px;
      -webkit-border-radius: 0 0 5px 5px;
      border-radius: 0 0 5px 5px; }
      #toolbar ul .countryDropdown .colOne {
        display: table-cell;
        text-align: left;
        width: 110px;
        vertical-align: top;
        border-right: 1px solid #dadada; }
      #toolbar ul .countryDropdown .colTwo {
        display: table-cell;
        width: 185px;
        padding: 0 0 0 20px;
        vertical-align: top; }
        #toolbar ul .countryDropdown .colTwo p {
          margin: 0 0 18px 0; }
      #toolbar ul .countryDropdown ul.flags {
        margin: 0;
        padding: 0;
        list-style: none;
        float: left; }
        #toolbar ul .countryDropdown ul.flags li {
          clear: both;
          margin: 0 0 8px 0;
          padding: 0;
          border-left: 0; }
          #toolbar ul .countryDropdown ul.flags li a span {
            display: inline-block;
            width: 20px;
            margin-right: 8px; }
            #toolbar ul .countryDropdown ul.flags li a span img {
              max-width: 100%; }

/*
* Header
*/
header {
  width: 100%;
  background: #FFF;
  position: relative;
  z-index: 1000; }
  header:before, header:after {
    content: " ";
    display: table; }
  header:after {
    clear: both; }
  header .mymenu {
    height: 100px; }

/* When the header is sticky */
.is-sticky header {
  border-bottom: 5px solid #e0e0e0; }

#breadcrumb {
  position: absolute;
  width: 100%;
  z-index: 300; }
  #breadcrumb .container {
    width: 960px;
    margin-top: 30px; }
    #breadcrumb .container ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      #breadcrumb .container ul li {
        display: inline-block;
        font-size: 12px;
        font-weight: 600;
        color: #FFF; }
        #breadcrumb .container ul li a {
          color: #FFF;
          font-weight: 400;
          text-decoration: none;
          margin-right: 3px; }
          #breadcrumb .container ul li a:after {
            content: "";
            width: 6px;
            height: 9px;
            background: url("img/icon-sprite.png") no-repeat -94px 0;
            display: inline-block;
            margin-left: 7px; }
          #breadcrumb .container ul li a:hover {
            text-decoration: underline; }

#socialBar {
  position: absolute;
  width: 100%;
  z-index: 250;
  margin-top: 37px; }
  #socialBar .container {
    width: 960px;
    text-align: right; }
    #socialBar .container ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      #socialBar .container ul li {
        display: inline-block;
        font-size: 0;
        /* inline-block fix */
        /* Fix for IE7 */
        zoom: 1;
        *display: inline; }
        #socialBar .container ul li a {
          color: #fff;
          text-decoration: none;
          display: block;
          background: #006abf;
          -moz-border-radius: 5px;
          -webkit-border-radius: 5px;
          border-radius: 5px;
          width: 30px;
          height: 30px;
          margin-left: 1px;
          float: left;
          text-indent: 99999px;
          overflow: hidden;
          font-size: 12px;
          font-weight: 700; }
          #socialBar .container ul li a.greenBtn {
            background: #2aab3b;
            text-indent: 0;
            width: auto !important;
            padding: 7px 20px; }
          #socialBar .container ul li a.gplus {
            background: url("img/icon-social-sprite.png") no-repeat 0 0 #006abf; }
          #socialBar .container ul li a.linkedin {
            background: url("img/icon-social-sprite.png") no-repeat -30px 0 #006abf; }
          #socialBar .container ul li a.twitter {
            background: url("img/icon-social-sprite.png") no-repeat -60px 0 #006abf; }
          #socialBar .container ul li a.facebook {
            background: url("img/icon-social-sprite.png") no-repeat -90px 0 #006abf; }

/**
 * Menu
 */
nav ul.megamenu {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
  margin: 40px 10px 0 0;
  display: none;
  /**
   * Main Menu Hover
   */
  /**
   * Dropdown Container
   */ }
  nav ul.megamenu:before, nav ul.megamenu:after {
    content: " ";
    display: table; }
  nav ul.megamenu:after {
    clear: both; }
  nav ul.megamenu li {
    float: left;
    margin-right: 0px; }
    nav ul.megamenu li:first-child {
      margin-left: 0; }
    nav ul.megamenu li.clear-fix {
      float: none;
      clear: both;
      margin: 0px;
      padding: 0px;
      height: 0px;
      font-size: 0px;
      line-height: 0px; }
  nav ul.megamenu a.mm-item-link:link,
  nav ul.megamenu a.mm-item-link:visited {
    display: inline-block;
    color: #00457c;
    font-weight: 600;
    z-index: 600;
    height: 60px;
    padding: 10px 8px 0 8px;
    margin: 0;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0; }
    nav ul.megamenu a.mm-item-link:link:after,
    nav ul.megamenu a.mm-item-link:visited:after {
      content: "";
      width: 10px;
      height: 10px;
      margin-left: 5px;
      display: inline-block;
      background: url("img/arrow-down-menu.png") no-repeat right 3px; }
  nav ul.megamenu a.mm-item-link-hover:link,
  nav ul.megamenu a.mm-item-link-hover:visited {
    color: #FFF;
    background: #014d8e; }
    nav ul.megamenu a.mm-item-link-hover:link:after,
    nav ul.megamenu a.mm-item-link-hover:visited:after {
      content: "";
      width: 10px;
      height: 10px;
      margin-left: 5px;
      display: inline-block;
      background: url("img/arrow-down-menu-white.png") no-repeat right 3px; }
  nav ul.megamenu li.noDropdown a.mm-item-link:link:after,
  nav ul.megamenu li.noDropdown a.mm-item-link:visited
  a.mm-item-link-hover:link:after,
  nav ul.megamenu li.noDropdown a.mm-item-link-hover:visited:after {
    display: none; }
  nav ul.megamenu div.mm-item-content {
    padding: 0px;
    z-index: 500;
    /**
     * Default Menu Wrapper Styles
     * Styles are different for each dropdown menu
    */
    /**
     * Product Dropdown
     */
    /**
     * Solutions Dropdown
     */
    /**
     * Support Dropdown
     */
    /**
     * About Dropdown
     */
    /**
     * Resources Dropdown
     */ }
    nav ul.megamenu div.mm-item-content .mm-content-base {
      color: #FFF;
      position: absolute;
      z-index: 11;
      background: #FFF;
      border-top: 10px solid #014d8e;
      -moz-border-radius: 0 0 5px 5px;
      -webkit-border-radius: 0 0 5px 5px;
      border-radius: 0 0 5px 5px;
      -webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ;
      -moz-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ;
      box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ; }
      nav ul.megamenu div.mm-item-content .mm-content-base p {
        font-size: 12px;
        margin: 0 0 18px 0; }
      nav ul.megamenu div.mm-item-content .mm-content-base a {
        text-decoration: none;
        color: #016abe;
        font-size: 13px; }
        nav ul.megamenu div.mm-item-content .mm-content-base a:hover {
          text-decoration: underline; }
    nav ul.megamenu div.mm-item-content.products .mm-content-base {
      padding: 25px 30px 0 30px;
      color: #000;
      margin-left: -200px;
      width: 840px; }
      nav ul.megamenu div.mm-item-content.products .mm-content-base h2 {
        font-size: 22px;
        color: #000;
        font-weight: 300;
        line-height: 26px;
        margin-bottom: 5px; }
      nav ul.megamenu div.mm-item-content.products .mm-content-base .colOne {
        float: left;
        width: 333px;
        margin-right: 30px;
        vertical-align: top; }
        nav ul.megamenu div.mm-item-content.products .mm-content-base .colOne .innerCol {
          float: left;
          width: 150px;
          margin-right: 15px; }
      nav ul.megamenu div.mm-item-content.products .mm-content-base .colTwo {
        float: left;
        vertical-align: top;
        width: 185px; }
      nav ul.megamenu div.mm-item-content.products .mm-content-base .colThree {
        float: left;
        vertical-align: top;
        width: 230px; }
      nav ul.megamenu div.mm-item-content.products .mm-content-base ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        nav ul.megamenu div.mm-item-content.products .mm-content-base ul li {
          font-size: 13px;
          margin-bottom: 20px;
          font-weight: 600; }
          nav ul.megamenu div.mm-item-content.products .mm-content-base ul li a {
            color: #016abe;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none; }
            nav ul.megamenu div.mm-item-content.products .mm-content-base ul li a:hover {
              text-decoration: underline; }
          nav ul.megamenu div.mm-item-content.products .mm-content-base ul li p {
            margin-top: 0; }
          nav ul.megamenu div.mm-item-content.products .mm-content-base ul li ul {
            margin-top: 3px; }
            nav ul.megamenu div.mm-item-content.products .mm-content-base ul li ul li {
              margin-bottom: 3px;
              display: block !important;
              width: 153px;
              float: none; }
              nav ul.megamenu div.mm-item-content.products .mm-content-base ul li ul li a {
                font-weight: 400;
                font-size: 12px;
                display: block; }
    nav ul.megamenu div.mm-item-content.solutions .mm-content-base {
      padding: 25px 30px 25px 30px;
      color: #000;
      display: table;
      margin-left: -305px;
      width: 800px; }
      nav ul.megamenu div.mm-item-content.solutions .mm-content-base h2 {
        font-size: 22px;
        color: #000;
        font-weight: 300;
        line-height: 26px;
        margin-bottom: 10px; }
      nav ul.megamenu div.mm-item-content.solutions .mm-content-base ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        nav ul.megamenu div.mm-item-content.solutions .mm-content-base ul li {
          font-size: 13px;
          float: none; }
          nav ul.megamenu div.mm-item-content.solutions .mm-content-base ul li a {
            color: #016abe;
            font-weight: 400;
            font-size: 12px;
            text-decoration: none;
            display: block;
            margin-bottom: 3px; }
            nav ul.megamenu div.mm-item-content.solutions .mm-content-base ul li a:hover {
              text-decoration: underline; }
          nav ul.megamenu div.mm-item-content.solutions .mm-content-base ul li p {
            margin-top: 0; }
      nav ul.megamenu div.mm-item-content.solutions .mm-content-base .tableRow {
        display: table-row;
        margin-right: 25px;
        vertical-align: top; }
        nav ul.megamenu div.mm-item-content.solutions .mm-content-base .tableRow .innerCol {
          display: table-cell;
          vertical-align: top; }
          nav ul.megamenu div.mm-item-content.solutions .mm-content-base .tableRow .innerCol.one {
            width: 186px;
            float: left; }
          nav ul.megamenu div.mm-item-content.solutions .mm-content-base .tableRow .innerCol.two {
            width: 250px;
            float: left; }
          nav ul.megamenu div.mm-item-content.solutions .mm-content-base .tableRow .innerCol.three {
            width: 180px;
            padding-right: 20px;
            float: left; }
          nav ul.megamenu div.mm-item-content.solutions .mm-content-base .tableRow .innerCol.last {
            padding-left: 25px;
            border-left: 1px solid #d9d9d9; }
            nav ul.megamenu div.mm-item-content.solutions .mm-content-base .tableRow .innerCol.last ul li a {
              font-weight: 700;
              font-size: 14px; }
            nav ul.megamenu div.mm-item-content.solutions .mm-content-base .tableRow .innerCol.last ul li ul {
              margin-top: 7px; }
              nav ul.megamenu div.mm-item-content.solutions .mm-content-base .tableRow .innerCol.last ul li ul li a {
                font-weight: 400;
                font-size: 12px; }
    nav ul.megamenu div.mm-item-content.support .mm-content-base {
      padding: 25px 30px 25px 30px;
      color: #000;
      display: table;
      margin-left: -375px;
      width: 700px; }
      nav ul.megamenu div.mm-item-content.support .mm-content-base h2 {
        font-size: 22px;
        color: #000;
        font-weight: 300;
        line-height: 26px;
        margin-bottom: 10px; }
      nav ul.megamenu div.mm-item-content.support .mm-content-base ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        nav ul.megamenu div.mm-item-content.support .mm-content-base ul li {
          font-size: 13px;
          float: none; }
          nav ul.megamenu div.mm-item-content.support .mm-content-base ul li a {
            color: #016abe;
            font-weight: 400;
            font-size: 12px;
            text-decoration: none;
            display: block;
            margin-bottom: 3px; }
            nav ul.megamenu div.mm-item-content.support .mm-content-base ul li a:hover {
              text-decoration: underline; }
          nav ul.megamenu div.mm-item-content.support .mm-content-base ul li p {
            margin-top: 0; }
      nav ul.megamenu div.mm-item-content.support .mm-content-base .tableRow {
        display: table-row;
        margin-right: 25px;
        vertical-align: top; }
        nav ul.megamenu div.mm-item-content.support .mm-content-base .tableRow .innerCol {
          display: table-cell;
          vertical-align: top; }
          nav ul.megamenu div.mm-item-content.support .mm-content-base .tableRow .innerCol.one {
            width: 260px;
            float: left; }
          nav ul.megamenu div.mm-item-content.support .mm-content-base .tableRow .innerCol.two {
            width: 225px;
            float: left; }
          nav ul.megamenu div.mm-item-content.support .mm-content-base .tableRow .innerCol.three {
            width: 143px;
            padding-right: 20px;
            float: left; }
          nav ul.megamenu div.mm-item-content.support .mm-content-base .tableRow .innerCol ul li a {
            font-weight: 700;
            font-size: 14px; }
          nav ul.megamenu div.mm-item-content.support .mm-content-base .tableRow .innerCol ul li ul {
            margin-top: 7px; }
            nav ul.megamenu div.mm-item-content.support .mm-content-base .tableRow .innerCol ul li ul li a {
              font-weight: 400;
              font-size: 12px; }
          nav ul.megamenu div.mm-item-content.support .mm-content-base .tableRow .innerCol a.btn {
            float: left;
            color: #FFF; }
    nav ul.megamenu div.mm-item-content.about .mm-content-base {
      padding: 25px 30px 25px 30px;
      color: #000;
      display: table;
      margin-left: -545px;
      width: 760px; }
      nav ul.megamenu div.mm-item-content.about .mm-content-base h2 {
        font-size: 22px;
        color: #000;
        font-weight: 300;
        line-height: 26px;
        margin-bottom: 10px; }
      nav ul.megamenu div.mm-item-content.about .mm-content-base ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        nav ul.megamenu div.mm-item-content.about .mm-content-base ul li {
          font-size: 13px;
          float: none; }
          nav ul.megamenu div.mm-item-content.about .mm-content-base ul li a {
            color: #016abe;
            font-weight: 400;
            font-size: 12px;
            text-decoration: none;
            display: block;
            margin-bottom: 3px; }
            nav ul.megamenu div.mm-item-content.about .mm-content-base ul li a:hover {
              text-decoration: underline; }
          nav ul.megamenu div.mm-item-content.about .mm-content-base ul li p {
            margin-top: 0; }
      nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow {
        display: table-row;
        margin-right: 25px;
        vertical-align: top; }
        nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol {
          display: table-cell;
          vertical-align: top; }
          nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol.one {
            width: 150px;
            border-right: 1px solid #d9d9d9;
            float: left; }
          nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol.two {
            float: left;
            padding: 0 20px; }
            nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol.two .video {
              float: left;
              width: 308px;
              height: 169px;
              overflow: hidden;
              position: relative;
              padding-top: 40px; }
              nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol.two .video img.poster {
                position: absolute;
                top: 0;
                left: 0; }
              nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol.two .video img.play {
                width: 66px;
                height: 66px;
                margin-bottom: 10px; }
                nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol.two .video img.play img {
                  max-width: 100%; }
              nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol.two .video a {
                position: absolute;
                width: 308px;
                height: 169px;
                text-align: center;
                color: #FFF;
                text-decoration: none;
                font-size: 20px; }
                nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol.two .video a:hover {
                  text-decoration: none; }
          nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol.three {
            width: 200px;
            float: left; }
          nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol ul li a {
            font-weight: 700;
            font-size: 14px; }
          nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol ul li ul {
            margin-top: 7px; }
            nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol ul li ul li a {
              font-weight: 400;
              font-size: 12px; }
          nav ul.megamenu div.mm-item-content.about .mm-content-base .tableRow .innerCol a.btn {
            float: left;
            color: #FFF; }
    nav ul.megamenu div.mm-item-content.resources .mm-content-base {
      padding: 25px 30px 25px 30px;
      color: #000;
      display: table;
      margin-left: -560px;
      width: 800px; }
      nav ul.megamenu div.mm-item-content.resources .mm-content-base h2 {
        font-size: 22px;
        color: #000;
        font-weight: 300;
        line-height: 26px;
        margin-bottom: 10px; }
      nav ul.megamenu div.mm-item-content.resources .mm-content-base ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        nav ul.megamenu div.mm-item-content.resources .mm-content-base ul li {
          font-size: 13px;
          float: none; }
          nav ul.megamenu div.mm-item-content.resources .mm-content-base ul li a {
            color: #016abe;
            font-weight: 400;
            font-size: 12px;
            text-decoration: none;
            display: block;
            margin-bottom: 3px; }
            nav ul.megamenu div.mm-item-content.resources .mm-content-base ul li a:hover {
              text-decoration: underline; }
          nav ul.megamenu div.mm-item-content.resources .mm-content-base ul li p {
            margin-top: 0; }
      nav ul.megamenu div.mm-item-content.resources .mm-content-base .tableRow {
        display: table-row;
        margin-right: 25px;
        vertical-align: top; }
        nav ul.megamenu div.mm-item-content.resources .mm-content-base .tableRow .innerCol {
          display: table-cell;
          vertical-align: top; }
          nav ul.megamenu div.mm-item-content.resources .mm-content-base .tableRow .innerCol.one {
            width: 186px;
            float: left; }
          nav ul.megamenu div.mm-item-content.resources .mm-content-base .tableRow .innerCol.two {
            width: 250px;
            float: left; }
          nav ul.megamenu div.mm-item-content.resources .mm-content-base .tableRow .innerCol.three {
            width: 180px;
            padding-right: 20px;
            float: left; }
          nav ul.megamenu div.mm-item-content.resources .mm-content-base .tableRow .innerCol.last {
            padding-left: 25px;
            border-left: 1px solid #d9d9d9; }
            nav ul.megamenu div.mm-item-content.resources .mm-content-base .tableRow .innerCol.last ul li a {
              font-weight: 700;
              font-size: 14px; }
            nav ul.megamenu div.mm-item-content.resources .mm-content-base .tableRow .innerCol.last ul li ul {
              margin-top: 7px; }
              nav ul.megamenu div.mm-item-content.resources .mm-content-base .tableRow .innerCol.last ul li ul li a {
                font-weight: 400;
                font-size: 12px; }
    nav ul.megamenu div.mm-item-content .mm-js-shadow {
      /**
       * Dropdown Menu dropshadow
       * Not being used, but leaving it here just in case
       */
      background: #555;
      position: absolute;
      z-index: 10; }

/* SRC */
.src nav:before, .src nav:after {
  content: " ";
  display: table; }
.src nav:after {
  clear: both; }
.src nav ul.megamenu > li {
  margin-right: 0px !important; }
  .src nav ul.megamenu > li div.mm-item-content.support .mm-content-base {
    margin-left: -325px; }
  .src nav ul.megamenu > li div.mm-item-content.about .mm-content-base {
    margin-left: -445px; }

#followNavBar {
  width: 100%;
  background: #016abe;
  position: relative;
  z-index: 500;
  font-size: 0; }
  #followNavBar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 55px;
    text-align: center;
    display: table;
    margin: 0 auto;
    max-width: 960px; }
    #followNavBar ul li {
      display: table-cell;
      line-height: 16px;
      text-align: center;
      vertical-align: middle;
      position: relative;
      clear: both; }
      #followNavBar ul li:first-child:before {
        content: "";
        width: 0;
        top: 15%;
        height: 70%;
        border-width: 0 1px 0 0;
        border-style: solid;
        border-color: #398aca;
        position: absolute;
        left: 0px; }
      #followNavBar ul li:after {
        content: "";
        width: 0;
        top: 15%;
        height: 70%;
        border-width: 0 1px 0 0;
        border-style: solid;
        border-color: #398aca;
        position: absolute;
        right: -1px; }
      #followNavBar ul li.active {
        background: #ed8917; }
        #followNavBar ul li.active:after {
          position: absolute;
          bottom: -8px;
          width: 100%;
          left: 0;
          z-index: 100;
          content: "";
          height: 8px;
          background: url("img/arrow-tab-down-orange.png") no-repeat center top;
          z-index: 150;
          margin-right: -2px;
          top: initial;
          border-width: 0; }
        #followNavBar ul li.active:before {
          display: none; }
      #followNavBar ul li a {
        font-size: 14px;
        color: #FFF;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        position: relative;
        z-index: 100;
        margin-left: -2px;
        padding: 10px 20px;
        vertical-align: middle;
        display: table-cell; }
        #followNavBar ul li a.active {
          background: #ed8917; }

#search {
  float: right;
  height: 100px;
  width: 162px;
  padding-top: 44px;
  position: relative; }
  #search input[type=text] {
    float: left;
    width: 162px;
    height: 32px;
    border: 1px solid #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 12px;
    color: #333;
    text-indent: 12px;
    padding-right: 35px;
    margin: 0; }
  #search input[type=submit] {
    width: 30px;
    height: 30px;
    float: left;
    margin-left: -31px;
    padding: 0;
    background: url("img/btn-search.png") no-repeat;
    text-indent: -9999px;
    border: 0;
    margin-top: 1px; }
  #search .searchContainer {
    width: 400px;
    max-height: 500px;
    overflow-x: hidden;
    padding: 15px 15px 0 15px;
    position: absolute;
    border-top: 3px solid #014d8e;
    top: 100px;
    right: 0px;
    background: #FFF;
    z-index: 1000;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    -webkit-box-shadow: 1px 5px 10px #ccc ;
    -moz-box-shadow: 1px 5px 10px #ccc ;
    box-shadow: 1px 5px 10px #ccc ;
    font-size: 0; }
    #search .searchContainer:before, #search .searchContainer:after {
      content: " ";
      display: table; }
    #search .searchContainer:after {
      clear: both; }
    #search .searchContainer label {
      float: left;
      width: 80px;
      margin-top: 8px;
      color: #666; }
    #search .searchContainer .results {
      float: none;
      width: 100%;
      display: block;
      margin-bottom: 10px; }
      #search .searchContainer .results .thumb {
        display: inline-block;
        width: 95px;
        vertical-align: top; }
      #search .searchContainer .results .desc {
        display: inline-block;
        width: 235px;
        margin-right: 15px;
        font-size: 14px;
        vertical-align: top; }
        #search .searchContainer .results .desc h4 {
          margin: 0 0 5px 0;
          padding: 0;
          font-size: 14px; }
        #search .searchContainer .results .desc p {
          margin: 0 0 10px 0;
          font-size: 14px; }
    #search .searchContainer h3 {
      font-size: 15px;
      margin-bottom: 15px; }
    #search .searchContainer p {
      margin: 0 0 20px 0;
      font-size: 14px; }
    #search .searchContainer input[type=text] {
      width: 100%;
      margin-bottom: 20px; }
    #search .searchContainer input[type=button] {
      text-transform: uppercase;
      background: #016abe;
      color: #FFF;
      padding: 12px 25px;
      border: 0;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      font-weight: 700;
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      text-indent: 0 !important;
      margin-bottom: 20px;
      float: right; }
    #search .searchContainer ul {
      margin: 0;
      padding: 0;
      list-style: none;
      margin-bottom: 20px; }
      #search .searchContainer ul li {
        margin-bottom: 7px;
        font-size: 13px; }
        #search .searchContainer ul li a {
          font-weight: 400; }
    #search .searchContainer .selectbox {
      width: 100%;
      margin-left: 0;
      margin-bottom: 20px; }
      #search .searchContainer .selectbox .customSelect .customSelectInner {
        width: 100%; }
      #search .searchContainer .selectbox .customSelectInner[style] {
        width: 100% !important; }
    #search .searchContainer hr {
      background-color: #ccc;
      border-width: 0;
      color: #444;
      height: 1px;
      line-height: 0;
      margin: 10px 0 20px 0;
      page-break-after: always;
      text-align: center;
      width: auto; }
    #search .searchContainer .seeAll {
      width: 100%;
      text-align: center;
      border-top: 1px solid #CCC;
      padding-top: 20px; }

#searchSrc {
  float: right;
  height: auto;
  width: 162px;
  position: relative; }
  #searchSrc input[type=text] {
    float: left;
    width: 162px;
    height: 32px;
    border: 1px solid #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 12px;
    color: #333;
    text-indent: 12px;
    padding-right: 35px;
    margin: 0; }
  #searchSrc input[type=submit] {
    width: 30px;
    height: 30px;
    float: left;
    margin-left: -31px;
    padding: 0;
    background: url("img/btn-search.png") no-repeat;
    text-indent: -9999px;
    border: 0;
    margin-top: 1px; }
  #searchSrc .searchContainer {
    width: 380px;
    padding: 15px 15px 0 15px;
    position: absolute;
    border-top: 3px solid #014d8e;
    top: 37px;
    right: 0px;
    background: #F4F4F4;
    z-index: 1;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    font-size: 0; }
    #searchSrc .searchContainer:before, #searchSrc .searchContainer:after {
      content: " ";
      display: table; }
    #searchSrc .searchContainer:after {
      clear: both; }
    #searchSrc .searchContainer label {
      float: left;
      width: 80px;
      margin-top: 8px;
      color: #666; }
    #searchSrc .searchContainer .results {
      width: 100%;
      display: block;
      margin-bottom: 10px; }
      #searchSrc .searchContainer .results .thumb {
        display: inline-block;
        width: 95px;
        margin-right: 15px;
        vertical-align: top; }
      #searchSrc .searchContainer .results .desc {
        display: inline-block;
        width: 230px;
        font-size: 14px;
        vertical-align: top; }
        #searchSrc .searchContainer .results .desc h4 {
          margin: 0 0 10px 0;
          padding: 0; }
        #searchSrc .searchContainer .results .desc p {
          margin: 0 0 20px 0; }
    #searchSrc .searchContainer h3 {
      font-size: 15px;
      margin-bottom: 15px; }
    #searchSrc .searchContainer p {
      margin: 0 0 20px 0;
      font-size: 14px; }
    #searchSrc .searchContainer input[type=text] {
      width: 100%;
      margin-bottom: 20px; }
    #searchSrc .searchContainer input[type=button] {
      text-transform: uppercase;
      background: #016abe;
      color: #FFF;
      padding: 12px 25px;
      border: 0;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      font-weight: 700;
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      text-indent: 0 !important;
      margin-bottom: 20px;
      float: right; }
    #searchSrc .searchContainer ul {
      margin: 0;
      padding: 0;
      list-style: none;
      margin-bottom: 20px; }
      #searchSrc .searchContainer ul li {
        margin-bottom: 7px;
        font-size: 14px; }
        #searchSrc .searchContainer ul li a {
          font-weight: 600; }
    #searchSrc .searchContainer .selectbox {
      width: 100%;
      margin-left: 0;
      margin-bottom: 20px; }
      #searchSrc .searchContainer .selectbox .customSelect .customSelectInner {
        width: 100%; }
      #searchSrc .searchContainer .selectbox .customSelectInner[style] {
        width: 100% !important; }
    #searchSrc .searchContainer hr {
      background-color: #ccc;
      border-width: 0;
      color: #444;
      height: 1px;
      line-height: 0;
      margin: 10px 0 20px 0;
      page-break-after: always;
      text-align: center;
      width: auto; }

/* Banners */
#banner {
  width: 100%;
  position: relative;
  /* Banner with video in background and video link */ }
  #banner img.bannerImage {
    display: none; }
  #banner .container {
    height: 405px; }
  #banner .title {
    font-size: 48px;
    font-weight: 400;
    color: #FFF;
    line-height: 1.1em;
    margin-bottom: 10px; }
  #banner p {
    font-size: 18px;
    color: #FFF;
    margin: 0 0 18px 0; }
  #banner .ads {
    float: right;
    background: url("img/bg-banner-ads.png") repeat;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    margin: 5px 0; }
    #banner .ads .subTitle {
      font-size: 13px;
      color: #FFF;
      opacity: 0.6;
      margin-bottom: 7px; }
    #banner .ads .title {
      font-size: 16px;
      color: #FFF;
      font-weight: 700;
      margin: 0;
      padding: 0;
      line-height: 1.3em; }
      #banner .ads .title a {
        color: #FFF;
        text-decoration: none; }
        #banner .ads .title a:hover {
          text-decoration: underline; }
  #banner.videoBanner {
    height: 390px;
    position: relative;
    text-align: center;
    overflow: hidden; }
    #banner.videoBanner #video_background {
      position: absolute;
      top: 0px;
      right: 0px;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: 1;
      overflow: hidden; }
    #banner.videoBanner .container {
      position: relative;
      z-index: 20; }
      #banner.videoBanner .container .col {
        text-align: center; }
    #banner.videoBanner a.play {
      margin-bottom: 30px;
      display: block; }
    #banner.videoBanner a.promoBox {
      -moz-border-radius: 8px;
      -webkit-border-radius: 8px;
      border-radius: 8px;
      font-size: 12px;
      line-height: 18px;
      width: 400px;
      display: block;
      background-color: #333;
      padding: 20px;
      color: #ccc;
      display: inline-block;
      text-decoration: none; }

.module {
  padding: 0;
  position: relative; }
  .module .lgBanners {
    position: relative;
    /*Intro*/
    /*CTA*/ }
    .module .lgBanners .intro {
      position: absolute;
      z-index: 100;
      width: 100%;
      text-align: center;
      padding-top: 55px; }
      .module .lgBanners .intro h2 {
        color: #FFF;
        font-size: 38px;
        font-weight: 300;
        margin: 0 0 20px 0;
        padding: 0;
        line-height: 1.3; }
      .module .lgBanners .intro p {
        color: #FFF;
        font-size: 18px;
        margin: 0 0 18px 0; }
    .module .lgBanners .cta {
      position: absolute;
      z-index: 100;
      bottom: 85px;
      width: 100%;
      text-align: center; }
    .module .lgBanners .lgbanners {
      position: relative; }
      .module .lgBanners .lgbanners.center {
        text-align: center; }
      .module .lgBanners .lgbanners .container .col {
        text-align: left; }
      .module .lgBanners .lgbanners.slick-slider {
        margin-bottom: 0; }
        .module .lgBanners .lgbanners.slick-slider .slick-track {
          height: 650px; }
          .module .lgBanners .lgbanners.slick-slider .slick-track .banner {
            position: relative; }
            .module .lgBanners .lgbanners.slick-slider .slick-track .banner .asBg {
              display: none; }
    .module .lgBanners .banner {
      padding-top: 225px;
      color: #FFF; }
      .module .lgBanners .banner .container {
        padding: 0; }
        .module .lgBanners .banner .container h4 {
          font-size: 18px;
          font-weight: 600;
          margin: 0 0 8px 0;
          padding: 0; }
        .module .lgBanners .banner .container p {
          font-size: 16px;
          margin: 0 0 10px 0;
          padding: 0; }
        .module .lgBanners .banner .container a {
          font-size: 16px;
          font-weight: 600; }
    .module .lgBanners.light .intro h2 {
      color: #00233f; }
    .module .lgBanners.light .intro p {
      color: #000 !important; }
    .module .lgBanners.light .banner {
      color: #000; }
      .module .lgBanners.light .banner .container h4 {
        color: #016abe; }
      .module .lgBanners.light .banner .container p {
        color: #000 !important; }

/**
 *  SubPages Banner
 */
.subBanner {
  width: 100%;
  overflow: visible;
  background: #00457c;
  position: relative;
  padding-top: 115px; }
  .subBanner img.bannerBg {
    display: none; }
  .subBanner .container {
    margin-top: -18px;
    padding-top: 0px;
    font-size: 16px;
    color: #FFF;
    font-weight: 400; }
    .subBanner .container h1 {
      font-size: 32px;
      font-weight: 300;
      color: #FFF;
      margin-bottom: 35px; }
    .subBanner .container h2 {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 5px; }
    .subBanner .container p {
      font-size: 16px;
      color: #FFF;
      font-weight: 400;
      line-height: 1.5em;
      margin: 0 0 45px 0; }
    .subBanner .container.center {
      text-align: center; }
      .subBanner .container.center h1 {
        font-size: 48px;
        font-weight: 400;
        color: #FFF;
        line-height: 1.2em;
        margin-bottom: 35px; }
      .subBanner .container.center h2 {
        color: #FFF;
        font-size: 24px;
        font-weight: 300;
        margin-bottom: 8px; }
    .subBanner .container .featured {
      margin-top: -10px;
      width: 280px;
      float: right;
      text-align: left;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      background: url("img/bg-banner-featured.png") repeat;
      padding: 13px 18px; }
      .subBanner .container .featured span {
        font-size: 13px;
        color: #FFF;
        opacity: 0.5;
        display: block;
        margin-bottom: 5px; }
      .subBanner .container .featured h3 {
        font-size: 16px;
        font-weight: 700;
        color: #FFF; }
        .subBanner .container .featured h3 a {
          color: #FFF;
          text-decoration: none; }
          .subBanner .container .featured h3 a:hover {
            text-decoration: underline; }
  .subBanner.dark {
    background: #002f58; }
  .subBanner.compact {
    padding-top: 55px; }
    .subBanner.compact h1 {
      margin-bottom: 15px; }
  .subBanner.landing {
    height: 390px;
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-top: 50px; }
    .subBanner.landing .container {
      position: relative;
      z-index: 20; }

/**
 * Buttons
 */
a.btn {
  padding: 16px 21px;
  color: #FFF !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  background: #016abe;
  display: inline-block;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none; }
  a.btn.lightBlue {
    background: #5a9ed5; }
  a.btn.darkBlue {
    background: #003e72; }
  a.btn.spacer {
    margin: 0 7px; }
  a.btn.green {
    background: #2aab3b; }
  a.btn.white {
    background: #FFF; }
  a.btn:hover {
    text-decoration: none !important; }
  a.btn.hide {
    float: right;
    margin-top: -40px;
    color: #FFF !important;
    padding: 5px 20px 5px 15px; }
    a.btn.hide:before {
      content: "";
      width: 13px;
      height: 8px;
      background: url("img/up-down-arrows.png") no-repeat 0 0;
      display: inline-block;
      margin-right: 10px; }
    a.btn.hide.show:before {
      content: "";
      width: 13px;
      height: 8px;
      background: url("img/up-down-arrows.png") no-repeat 0 -8px;
      display: inline-block;
      margin-right: 10px; }

/* Btn styles for sitecore styler
 * These styles should match the above. */
a.btn-lightBlue {
  padding: 16px 21px;
  color: #FFF !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  background: #5a9ed5;
  display: inline-block;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none; }
a.btn-darkBlue {
  padding: 16px 21px;
  color: #FFF !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  background: #003e72;
  display: inline-block;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none; }
a.btn-green {
  padding: 16px 21px;
  color: #FFF !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  background: #2aab3b;
  display: inline-block;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none; }
a.btn-white {
  padding: 16px 21px;
  color: #FFF !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  background: #FFF;
  display: inline-block;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none; }

.cta a.btn {
  color: #FFF; }

.btnFeatured {
  padding: 8px 15px 8px 35px;
  color: #00233f;
  font-weight: 600;
  font-size: 16px;
  margin-right: 15px;
  background: url("img/icon-badges-sprite.png") no-repeat -240px 6px #FFF;
  display: inline-block;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none; }

/**
 * Page Modules
 */
.module {
  width: 100%;
  margin: 0 auto;
  background: #00457c; }
  .module:before, .module:after {
    content: " ";
    display: table; }
  .module:after {
    clear: both; }
  .module .sectionBg {
    display: none; }
  .module .container {
    padding: 50px 0; }
    .module .container.center {
      text-align: center; }
      .module .container.center h2 {
        color: #FFF;
        font-size: 38px;
        font-weight: 300;
        margin: 0 0 20px 0;
        padding: 0;
        line-height: 1.3; }
        .module .container.center h2:empty {
          display: none; }
      .module .container.center h3 {
        color: #016abe;
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 10px; }
      .module .container.center p {
        margin: 0 0 18px 0; }
      .module .container.center .desc {
        padding: 0 30px;
        margin-bottom: 25px;
        text-align: center;
        width: 100%;
        float: left; }
        .module .container.center .desc p {
          color: #FFF;
          font-size: 18px;
          margin: 0 0 18px 0; }
      .module .container.center a.btn.more {
        float: right;
        padding: 5px 10px;
        margin-top: 20px;
        font-size: 12px; }
      .module .container.center .moreContent {
        width: 640px;
        display: block;
        margin: 20px auto;
        text-align: center;
        margin-bottom: 30px; }
        .module .container.center .moreContent:before, .module .container.center .moreContent:after {
          content: " ";
          display: table; }
        .module .container.center .moreContent:after {
          clear: both; }
        .module .container.center .moreContent p {
          font-size: 14px;
          line-height: 1.6em; }
    .module .container > h2 {
      font-weight: 300; }
    .module .container > h3 {
      font-weight: 400;
      margin-top: 30px;
      color: #00457c; }
    .module .container.full a {
      font-weight: 600; }
    .module .container.full br {
      line-height: 1.7em; }
    .module .container.full .underline {
      text-decoration: underline; }
    .module .container.full ul.alpha {
      list-style: lower-alpha; }
      .module .container.full ul.alpha li {
        margin-bottom: 5px; }
    .module .container.full ol li {
      margin-bottom: 5px; }
    .module .container.full .form {
      margin-top: 40px;
      float: left; }
      .module .container.full .form label {
        display: block; }
      .module .container.full .form input[type=submit] {
        margin-top: 20px; }
    .module .container[ng-app="fullSearchApp"] {
      padding: 0; }
  .module.white {
    background: #FFF; }
    .module.white .container h2 {
      color: #00457c; }
    .module.white .container .desc p {
      color: #000; }
  .module.split {
    background: url("img/bg-split-gray.gif") repeat-x; }
    .module.split .container h2 {
      color: #00457c; }
    .module.split .container .desc p {
      color: #000; }
  .module.gray {
    background: #f4f4f4; }
    .module.gray .container h2 {
      color: #00457c; }
    .module.gray .container .desc p {
      color: #000; }
  .module.blue {
    background: #016abe; }
    .module.blue .container p {
      color: #FFF; }
    .module.blue .container a {
      color: #FFF;
      text-decoration: none; }
      .module.blue .container a:hover {
        text-decoration: underline; }
  .module.medBlue {
    background: #002f58; }
    .module.medBlue .container {
      color: #FFF;
      font-size: 18px; }
      .module.medBlue .container h2 {
        color: #FFF; }
  .module.darkBlue {
    background: #00233f; }
    .module.darkBlue .container {
      color: #FFF;
      font-size: 18px; }
      .module.darkBlue .container h2 {
        color: #FFF; }
  .module .video {
    margin-bottom: 25px; }
    .module .video .desc {
      clear: both; }
      .module .video .desc h4 {
        color: #016abe;
        font-weight: 700;
        font-size: 17px !important;
        margin-bottom: 10px; }
      .module .video .desc p {
        font-size: 16px !important;
        font-weight: 400;
        line-height: 1.5em; }
    .module .video a.play {
      float: left;
      display: block;
      margin-bottom: 25px;
      position: relative;
      z-index: 49; }
      .module .video a.play:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 50;
        width: 100%;
        height: 100%;
        background: url("img/video-play.png") no-repeat center center; }
  .module .locationStats {
    margin-top: 50px;
    margin-bottom: 20px; }
    .module .locationStats ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      .module .locationStats ul li {
        display: inline-block;
        font-weight: 300;
        color: #97aec1;
        font-size: 48px;
        background: url("img/locations-dot.png") no-repeat 0 33px;
        padding-left: 35px;
        padding-right: 30px; }
        .module .locationStats ul li span {
          color: #FFF;
          font-weight: 700; }
        .module .locationStats ul li:first-child {
          padding-left: 0;
          background: none; }
        .module .locationStats ul li:last-child {
          padding-right: 0; }
  .module .module > .container {
    padding: 0; }
    .module .module > .container > .resource-wrap {
      margin-top: 0px; }

#newsStrip {
  margin: 3px auto;
  width: 100%;
  max-width: 1600px;
  text-align: center;
  font-size: 0;
  overflow: hidden; }
  #newsStrip:before, #newsStrip:after {
    content: " ";
    display: table; }
  #newsStrip:after {
    clear: both; }
  #newsStrip ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    max-width: 1600px; }
    #newsStrip ul li {
      display: inline-block;
      float: left;
      margin-right: 0.125%;
      margin-left: 0.1875%;
      width: 19.75%;
      font-size: 16px;
      color: #00457c; }
      #newsStrip ul li:first-child {
        margin-left: 0; }
      #newsStrip ul li:last-child {
        margin-right: 0; }
      #newsStrip ul li.first {
        margin-right: 0; }
      #newsStrip ul li.last {
        margin-right: 0; }
      #newsStrip ul li .newsItem {
        width: 100%;
        font-size: 16px;
        color: #FFF;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        overflow: hidden;
        position: relative; }
        #newsStrip ul li .newsItem img {
          position: relative;
          width: 100%;
          max-width: 100%; }
        #newsStrip ul li .newsItem a {
          position: absolute;
          width: 100%;
          background: url("img/bg-newsStrip.png") repeat;
          bottom: 0;
          left: 0;
          padding: 12px 10px;
          color: #FFF;
          font-weight: 700;
          text-decoration: none; }
          #newsStrip ul li .newsItem a:hover {
            text-decoration: none; }
      @media screen and (min-width: 1301px) and (max-width: 1460px) {
        #newsStrip ul li .newsItem {
          font-size: 14px; } }
    #newsStrip ul.four li {
      width: 24.75%;
      margin-right: 0.125%;
      margin-left: 0.125%; }
      @media screen and (min-width: 1025px) and (max-width: 1300px) {
        #newsStrip ul.four li .newsItem {
          font-size: 14px; } }
      @media screen and (min-width: 961px) and (max-width: 1024px) {
        #newsStrip ul.four li .newsItem {
          font-size: 12px; } }
    #newsStrip ul.three li {
      width: 33.0625%;
      margin-right: 0.125%;
      margin-left: 0.125%; }
      @media screen and (min-width: 768px) and (max-width: 960px) {
        #newsStrip ul.three li .newsItem {
          font-size: 12px; } }

/**
 * Micron Carousels
 */
.slider {
  /* Featured Videos */ }
  .slider .col {
    overflow: hidden;
    text-align: center; }
  .slider a {
    color: #016abe;
    text-decoration: none; }
    .slider a h3 {
      font-size: 16px; }
  .slider .slick-prev {
    left: -25px;
    width: 22px;
    height: 37px;
    background: url("img/arrows-carousel.png") no-repeat 0 0; }
    .slider .slick-prev.slick-disabled {
      background: url("img/arrows-carousel.png") no-repeat 0 -40px; }
  .slider .slick-next {
    right: -25px;
    width: 22px;
    height: 37px;
    background: url("img/arrows-carousel.png") no-repeat -26px 0; }
    .slider .slick-next.slick-disabled {
      background: url("img/arrows-carousel.png") no-repeat -26px -40px; }
  .slider.videos {
    margin-bottom: 40px;
    margin-top: 30px; }
    .slider.videos .col {
      background: none; }
    .slider.videos .slick-track {
      height: 240px;
      overflow: hidden; }
    .slider.videos h3 {
      font-size: 18px;
      color: #FFF !important;
      font-weight: 300 !important; }
    .slider.videos a {
      position: relative; }
      .slider.videos a:after {
        content: "";
        width: 80px;
        height: 80px;
        background: url("img/video-play.png") no-repeat 0 0;
        float: left;
        margin-top: -45%;
        margin-left: 38%;
        position: relative;
        z-index: 100; }
      .slider.videos a .videoThumb {
        position: relative;
        z-index: 50;
        width: 290px;
        margin: 0 auto 17px auto;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px; }
    .slider.videos .slick-prev,
    .slider.videos .slick-next {
      top: 77px; }
    .slider.videos .slick-prev {
      background: url("img/arrows-carousel-white.png") no-repeat 0 0; }
      .slider.videos .slick-prev.slick-disabled {
        background: url("img/arrows-carousel-white.png") no-repeat 0 -40px; }
    .slider.videos .slick-next {
      background: url("img/arrows-carousel-white.png") no-repeat -26px 0; }
      .slider.videos .slick-next.slick-disabled {
        background: url("img/arrows-carousel-white.png") no-repeat -26px -40px; }
  .slider.singleItem .item .col.eight {
    margin: 0 auto;
    float: none;
    overflow: hidden;
    color: #FFF; }
  .slider.singleItem .item .mainImage {
    width: 100%;
    overflow: hidden;
    background: #FFF;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px; }
    .slider.singleItem .item .mainImage a.play {
      float: left;
      display: block;
      position: relative;
      z-index: 49; }
      .slider.singleItem .item .mainImage a.play:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 50;
        width: 100%;
        height: 100%;
        background: url("img/video-play.png") no-repeat center center; }
    .slider.singleItem .item .mainImage img {
      overflow: hidden;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      border-radius: 10px; }
  .slider.singleItem .item a {
    color: #FFF;
    text-decoration: none; }
    .slider.singleItem .item a:hover {
      text-decoration: underline; }
  .slider.singleItem .item h3 {
    font-weight: 600;
    color: #FFF;
    font-size: 18px;
    margin: 0; }
  .slider.singleItem .item h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 13px 0; }
  .slider.singleItem .item p {
    font-size: 16px;
    font-weight: 300;
    margin: 0 0 18px 0; }
  .slider.imageScroller {
    margin-bottom: 1px;
    margin-top: 40px;
    margin-bottom: 40px; }
    .slider.imageScroller .col {
      background: none;
      text-align: center; }
    .slider.imageScroller h3 {
      font-size: 18px;
      color: #FFF !important;
      font-weight: 300; }
    .slider.imageScroller a {
      position: relative; }
      .slider.imageScroller a .imgThumb {
        position: relative;
        z-index: 50;
        width: 215px;
        margin: 0 auto 17px auto;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px; }
    .slider.imageScroller .slick-prev,
    .slider.imageScroller .slick-next {
      top: 57px; }
    .slider.imageScroller .slick-prev {
      background: url("img/arrows-carousel-white.png") no-repeat 0 0; }
      .slider.imageScroller .slick-prev.slick-disabled {
        background: url("img/arrows-carousel-white.png") no-repeat 0 -40px; }
    .slider.imageScroller .slick-next {
      background: url("img/arrows-carousel-white.png") no-repeat -26px 0; }
      .slider.imageScroller .slick-next.slick-disabled {
        background: url("img/arrows-carousel-white.png") no-repeat -26px -40px; }
  .slider.blogScroller {
    margin-bottom: 1px;
    margin-top: 40px;
    margin-bottom: 40px; }
    .slider.blogScroller .col {
      background: none;
      text-align: center; }
    .slider.blogScroller h3 {
      font-size: 14px;
      color: #FFF !important;
      font-weight: 600 !important;
      margin-bottom: 4px !important; }
    .slider.blogScroller span {
      color: #FFF;
      font-weight: 300; }
    .slider.blogScroller .imgThumb {
      position: relative;
      z-index: 50;
      width: 130px;
      height: 130px;
      margin: 0 auto 8px auto;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px; }
      .slider.blogScroller .imgThumb img {
        max-width: 100%; }
    .slider.blogScroller a {
      position: relative; }
    .slider.blogScroller .slick-prev,
    .slider.blogScroller .slick-next {
      top: 57px; }
    .slider.blogScroller .slick-prev {
      background: url("img/arrows-carousel-white.png") no-repeat 0 0; }
      .slider.blogScroller .slick-prev.slick-disabled {
        background: url("img/arrows-carousel-white.png") no-repeat 0 -40px; }
    .slider.blogScroller .slick-next {
      background: url("img/arrows-carousel-white.png") no-repeat -26px 0; }
      .slider.blogScroller .slick-next.slick-disabled {
        background: url("img/arrows-carousel-white.png") no-repeat -26px -40px; }
  .slider.srcScroller {
    margin-bottom: 1px;
    margin-top: 40px;
    margin-bottom: 40px; }
    .slider.srcScroller .col {
      background: none;
      text-align: center; }
    .slider.srcScroller .item {
      width: 308px;
      height: 380px;
      border: 1px solid #d9d9d9;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      margin: 0 auto;
      text-align: left;
      padding: 18px 17px;
      background: #FFF; }
      .slider.srcScroller .item:before, .slider.srcScroller .item:after {
        content: " ";
        display: table; }
      .slider.srcScroller .item:after {
        clear: both; }
      .slider.srcScroller .item .thumb {
        width: 273px;
        height: 145px;
        margin-bottom: 10px;
        text-align: center;
        overflow: hidden; }
        .slider.srcScroller .item .thumb.icon {
          background: #00457c; }
        .slider.srcScroller .item .thumb img {
          max-width: 100%;
          max-height: 100%;
          margin: 0 auto; }
      .slider.srcScroller .item .info {
        width: 272px;
        height: 107px;
        overflow: hidden;
        margin-bottom: 12px; }
        .slider.srcScroller .item .info h3 {
          font-size: 16px;
          color: #016abe;
          font-weight: 700;
          margin-bottom: 5px; }
        .slider.srcScroller .item .info p {
          font-size: 14px;
          color: #000;
          margin: 0 0 12px 0; }
      .slider.srcScroller .item .meta {
        font-size: 12px;
        color: #00457c;
        text-transform: uppercase;
        margin-bottom: 8px; }
        .slider.srcScroller .item .meta.date {
          color: #333;
          margin-bottom: 5px; }
      .slider.srcScroller .item a.btn {
        margin-top: 8px;
        padding: 10px 15px;
        margin-right: 0;
        font-size: 12px; }
        .slider.srcScroller .item a.btn.green {
          margin-left: 5px; }
    .slider.srcScroller .slick-prev,
    .slider.srcScroller .slick-next {
      top: 165px; }
    .slider.srcScroller .slick-prev {
      left: -30px;
      background: url("img/arrows-carousel.png") no-repeat 0 0; }
      .slider.srcScroller .slick-prev.slick-disabled {
        background: url("img/arrows-carousel.png") no-repeat 0 -40px; }
    .slider.srcScroller .slick-next {
      right: -30px;
      background: url("img/arrows-carousel.png") no-repeat -26px 0; }
      .slider.srcScroller .slick-next.slick-disabled {
        background: url("img/arrows-carousel.png") no-repeat -26px -40px; }

ul.customControls {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 40px;
  position: absolute;
  bottom: 0;
  z-index: 100;
  width: 100%;
  text-align: center; }
  ul.customControls:before, ul.customControls:after {
    content: " ";
    display: table; }
  ul.customControls:after {
    clear: both; }
  ul.customControls li {
    display: inline-block;
    position: relative; }
    ul.customControls li .prev {
      cursor: pointer;
      width: 11px;
      height: 18px;
      background: url("img/controls-banner-sliders.png") no-repeat 0 0; }
    ul.customControls li .next {
      cursor: pointer;
      width: 11px;
      height: 18px;
      background: url("img/controls-banner-sliders.png") no-repeat -69px 0; }
    ul.customControls li ul.slick-dots {
      position: relative;
      bottom: 0; }
      ul.customControls li ul.slick-dots li {
        display: inline-block;
        float: left;
        width: 16px;
        height: 18px;
        background: url("img/controls-banner-sliders.png") no-repeat -23px 0; }
        ul.customControls li ul.slick-dots li button:before {
          content: " " !important; }
        ul.customControls li ul.slick-dots li.slick-active {
          background: url("img/controls-banner-sliders.png") no-repeat -39px 0; }

.module .lgBanners.light ul.customControls li .prev {
  background: url("img/controls-banner-sliders.png") no-repeat 0 -18px; }
.module .lgBanners.light ul.customControls li .next {
  background: url("img/controls-banner-sliders.png") no-repeat -69px -18px; }
.module .lgBanners.light ul.customControls li ul.slick-dots {
  position: relative;
  bottom: 0; }
  .module .lgBanners.light ul.customControls li ul.slick-dots li {
    background: url("img/controls-banner-sliders.png") no-repeat -23px -18px; }
    .module .lgBanners.light ul.customControls li ul.slick-dots li.slick-active {
      background: url("img/controls-banner-sliders.png") no-repeat -39px -18px; }

.module.white .container .singleItem .col {
  text-align: left; }
  .module.white .container .singleItem .col h3 {
    font-size: 18px;
    margin-bottom: 8px; }
    .module.white .container .singleItem .col h3 a {
      font-size: 18px; }
  .module.white .container .singleItem .col p {
    font-size: 16px;
    margin: 0 0 18px 0; }
  .module.white .container .singleItem .col a {
    color: #016abe;
    font-size: 16px; }
  .module.white .container .singleItem .col .alertDesc {
    padding-top: 20px; }
.module.white .container ul.customControls li .prev {
  background: url("img/controls-banner-sliders.png") no-repeat 0 -18px; }
.module.white .container ul.customControls li .next {
  background: url("img/controls-banner-sliders.png") no-repeat -69px -18px; }
.module.white .container ul.customControls li ul.slick-dots {
  position: relative;
  bottom: 0; }
  .module.white .container ul.customControls li ul.slick-dots li {
    background: url("img/controls-banner-sliders.png") no-repeat -23px -18px; }
    .module.white .container ul.customControls li ul.slick-dots li.slick-active {
      background: url("img/controls-banner-sliders.png") no-repeat -39px -18px; }

/**
 * LinkedIn Feed (Home Page)
 */
ul.linkedInFeed {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #2780c8;
  margin: 0 -25px 45px -25px; }
  ul.linkedInFeed > li {
    clear: both;
    border-top: 1px solid #2780c8;
    text-align: left;
    padding: 25px; }
    ul.linkedInFeed > li .title a {
      font-size: 18px;
      font-weight: 600;
      text-decoration: none;
      color: #FFF; }
      ul.linkedInFeed > li .title a:hover {
        text-decoration: underline; }
    ul.linkedInFeed > li:hover {
      background: #00457c; }
    ul.linkedInFeed > li .meta {
      float: right;
      font-size: 12px;
      font-weight: 300; }
      ul.linkedInFeed > li .meta a {
        color: #FFF;
        font-weight: 600;
        text-decoration: none; }
        ul.linkedInFeed > li .meta a:hover {
          text-decoration: underline; }
      ul.linkedInFeed > li .meta .date {
        padding-left: 25px;
        color: #FFF; }

#mainMessage {
  background: #016abe;
  width: 100%;
  position: relative;
  z-index: 100; }
  #mainMessage .container {
    position: relative;
    padding: 25px 0;
    text-align: center; }
    #mainMessage .container h2 {
      font-size: 40px;
      font-weight: 300;
      color: #fff;
      margin-bottom: 18px; }
    #mainMessage .container a.more {
      color: #FFF;
      font-weight: 600;
      font-size: 18px;
      text-decoration: none;
      display: inline-block;
      margin-bottom: 0px; }
      #mainMessage .container a.more:before {
        display: block;
        content: "";
        z-index: 1;
        margin-bottom: -72px;
        width: 100%;
        height: 60px;
        background: url("img/arrow-message-down.png") no-repeat center top; }

.module .gridWrap {
  font-size: 0;
  margin: 0 auto;
  width: 960px;
  text-align: center; }
  .module .gridWrap:before, .module .gridWrap:after {
    content: " ";
    display: table; }
  .module .gridWrap:after {
    clear: both; }
  .module .gridWrap .item {
    font-size: 16px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 225px;
    margin-left: 20px;
    margin-bottom: 25px; }
    .module .gridWrap .item:nth-child(3n+1) {
      margin-left: 20px; }
    .module .gridWrap .item .nth-child3 {
      margin-left: 0; }
    .module .gridWrap .item h3 {
      font-size: 18px;
      font-weight: 300 !important;
      color: #FFF;
      margin: 0 0 5px 0;
      padding: 0;
      line-height: 1.5em; }
    .module .gridWrap .item a {
      text-decoration: none !important;
      color: #FFF !important; }
      .module .gridWrap .item a h3 {
        color: #FFF !important; }
    .module .gridWrap .item .thumb {
      width: 100%;
      overflow: hidden;
      margin-bottom: 10px;
      -moz-border-radius: 0.5em;
      -webkit-border-radius: 0.5em;
      border-radius: 0.5em; }
      .module .gridWrap .item .thumb img {
        max-width: 100%; }
  .module .gridWrap.four .item {
    max-width: 220px;
    margin-left: 15px; }
    .module .gridWrap.four .item:nth-child(3n+1) {
      margin-left: 15px !important; }
    .module .gridWrap.four .item:nth-child(4n+1) {
      margin-left: 0 !important; }
    .module .gridWrap.four .item h3 {
      font-size: 18px;
      font-weight: 300;
      color: #FFF; }
  .module .gridWrap.five .item {
    max-width: 170px;
    margin-left: 15px; }
    .module .gridWrap.five .item:nth-child(4n+1) {
      margin-left: 15px !important; }
    .module .gridWrap.five .item:nth-child(5n+1) {
      margin-left: 0 !important; }
    .module .gridWrap.five .item h3 {
      font-size: 18px;
      font-weight: 300;
      color: #FFF; }
.module.white .gridWrap .item h3 {
  color: #000; }
.module.white .gridWrap .item a h3 {
  color: #000 !important; }

/* Partner Logos */
.logoGridWrap {
  margin-top: 30px; }
  .logoGridWrap:before, .logoGridWrap:after {
    content: " ";
    display: table; }
  .logoGridWrap:after {
    clear: both; }
  .logoGridWrap .item {
    float: left;
    width: 150px;
    margin-left: 12px; }
    .logoGridWrap .item:nth-child(6n+1) {
      margin-left: 0; }
    .logoGridWrap .item.first {
      margin-left: 0; }
    .logoGridWrap .item .thumb {
      width: 100%;
      height: 135px;
      float: left;
      background: #FFF;
      float: left;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      border-radius: 10px;
      overflow: hidden; }
      .logoGridWrap .item .thumb img {
        max-width: 100%; }
    .logoGridWrap .item h3 {
      display: inline-block;
      text-align: center;
      width: 100%;
      font-size: 18px;
      font-weight: 300;
      margin-top: 15px;
      color: #FFF; }

/* IE8 */
/*.lt-ie9 {
	.module {
		.gridWrap {
			.item {
				max-width: 220px;
			}
		}
	}
}*/
.results {
  font-size: 22px;
  color: #000;
  font-weight: 300;
  text-align: left; }

.tableTitle {
  font-weight: 300;
  color: #000;
  font-size: 22px;
  text-align: left;
  margin-bottom: -10px;
  padding-left: 3px; }

#partsTableScrollbar {
  width: 100%;
  height: 40px;
  background-color: #d9d9d9;
  position: absolute;
  z-index: 10;
  border-bottom: solid 1px #CCC; }
  #partsTableScrollbar.fixed {
    position: fixed; }
  #partsTableScrollbar.hide {
    display: none; }
  #partsTableScrollbar.show-header {
    height: 40px; }
    #partsTableScrollbar.show-header .mini-header {
      display: block; }
  #partsTableScrollbar #moveLeft, #partsTableScrollbar #moveRight {
    width: 12px;
    height: 20px;
    display: inline-block;
    text-indent: -9999px;
    cursor: pointer;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 6px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #partsTableScrollbar #moveLeft {
    left: 20px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAASCAYAAABvqT8MAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowODgwMTE3NDA3MjA2ODExODIyQUJENzE5Nzc5MzQ4MSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5QjE0RUI3RkJBQUUxMUU0Qjc0RjgwRTA2NjU0RDg2QyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5QjE0RUI3RUJBQUUxMUU0Qjc0RjgwRTA2NjU0RDg2QyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Q0EwQjRBRkRCQUE3MTFFNEI3NEY4MEUwNjY1NEQ4NkMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Q0EwQjRBRkVCQUE3MTFFNEI3NEY4MEUwNjY1NEQ4NkMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4Y82DDAAABGElEQVR42mL8//8/AymAiYFEwAJj2CbUMzx58oqBgZUFWZ4RiHsYPn9zLMgMycqP9jwBl70HVPzs/lMGBjZWZA2dQFzE8PELw5sPn62AbIQGNpDJIMUIDZVAXAqV3MvCzLQInx9SgbgNyj4PxPFA/AaXhgggngJl3wTicCB+iiuUPIF4NsgRUEVhQHwbV7A6AvFCIOYB4mdQxZfwxUMIEItC2SBTjxGKuBogXgtl2wPxKiDmxqfhPRDHAfFKKD8UiBdBnYgzaXwD4gSoQhAIAuJlQMyLLy39gMYDTJMvVJMwioZfv/+ACBj+BcSpQDwPyvf58/dfHEriU5IRAwc+UuL7BcQZQPwZmPgcRAR4T4BTI83zA0CAAQAOwlP9TQjI5QAAAABJRU5ErkJggg=="); }
  #partsTableScrollbar #moveRight {
    right: 20px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAASCAYAAABvqT8MAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowODgwMTE3NDA3MjA2ODExODIyQUJENzE5Nzc5MzQ4MSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo5QjE0RUI4N0JBQUUxMUU0Qjc0RjgwRTA2NjU0RDg2QyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo5QjE0RUI4NkJBQUUxMUU0Qjc0RjgwRTA2NjU0RDg2QyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChNYWNpbnRvc2gpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Q0EwQjRBRkRCQUE3MTFFNEI3NEY4MEUwNjY1NEQ4NkMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Q0EwQjRBRkVCQUE3MTFFNEI3NEY4MEUwNjY1NEQ4NkMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4KzEE0AAABK0lEQVR42mL8//8/AymAkWwNtgn1DU+evApkYGUpAXJ3o6j6/I2hIDOEIT/ak4EFJnbvyavQZ/efajGwsa4Ccn2B+Ahcw8cvDG8+fAYzmWBibKwsRUDiMxALAPFyINYGYgYYZmFmQtUABDuBOBOIfwOxDBCvBmIFdD8wofGXAnE+lK0JxGuBWAqfBhCYDsTVULYR1BABfBpAoA2IO4D4DxA7APF8IBbGpwEEtgExLJICgFgXnwZLIF4OxMAgYvgJxPFAfBCXBlsgXgfE0kD8A4hTgXgRzDYWNMXOQAyKOCEg/gbESUC8ElkBsgYnqCRI8VeoM9aiWw/X8Ov3n8lAAhQSX6CK1zEgJBn+/P2HqkFJRmwtGwPDX2Diq4CGEEriExHgpTB5EwsAAgwA27lTE9hV4SIAAAAASUVORK5CYII="); }
  #partsTableScrollbar p {
    text-align: center;
    padding: 18px 12px;
    text-transform: uppercase;
    font-size: 14px; }
  #partsTableScrollbar .button-wrap {
    position: absolute;
    top: 7px;
    right: 0; }
  #partsTableScrollbar .label {
    height: 100%;
    position: relative; }
  #partsTableScrollbar .bar {
    height: 20px;
    background-color: #016abe;
    position: absolute;
    top: 12px;
    z-index: 20;
    border-radius: 4px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  #partsTableScrollbar .handle {
    margin-left: 4px;
    margin-right: 4px;
    width: 120px;
    height: 12px;
    background-color: #002f58;
    position: absolute;
    z-index: 21;
    top: 4px;
    left: 0;
    border-radius: 4px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    #partsTableScrollbar .handle:hover {
      cursor: pointer;
      background-color: #00457c; }
  #partsTableScrollbar .mini-header {
    display: none;
    position: absolute;
    height: 20px;
    bottom: 0px;
    width: 100%; }
    #partsTableScrollbar .mini-header .row {
      margin: 0;
      padding: 0;
      font-size: 10px; }
    #partsTableScrollbar .mini-header .item {
      display: block;
      float: left;
      height: 20px;
      color: white;
      background-color: #002f58;
      padding-bottom: 4px;
      padding-top: 4px; }
      #partsTableScrollbar .mini-header .item span {
        display: block;
        text-align: center;
        border-bottom: solid 1px #00457c; }
    #partsTableScrollbar .mini-header .viewport {
      float: left;
      position: relative;
      overflow: hidden; }
      #partsTableScrollbar .mini-header .viewport .wrap {
        width: auto; }

.partsTable, .micronPart {
  width: 100%;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #FFF;
  border: 1px solid #d9d9d9;
  margin-top: 25px;
  margin-bottom: 25px; }
  .partsTable a, .micronPart a {
    color: #016abe;
    text-decoration: none; }
    .partsTable a:hover, .micronPart a:hover {
      text-decoration: underline; }
    .partsTable a.btn, .micronPart a.btn {
      color: #FFF;
      padding: 6px 15px;
      font-size: 12px; }
      .partsTable a.btn.green, .micronPart a.btn.green {
        color: #FFF !important; }
  .partsTable table, .micronPart table {
    width: 100%;
    position: relative;
    border-collapse: collapse; }
    .partsTable table tr th, .micronPart table tr th {
      background: #002f58;
      font-size: 17px;
      color: #FFF;
      border-bottom: 4px solid #016abe;
      font-weight: 400;
      padding: 20px 10px;
      border-left: 1px solid #57738c;
      overflow: hidden; }
      .partsTable table tr th.first, .micronPart table tr th.first {
        border-left: 0;
        width: 250px; }
      .partsTable table tr th.buttons, .micronPart table tr th.buttons {
        width: 160px; }
    .partsTable table tr td, .micronPart table tr td {
      text-align: center;
      color: #000;
      font-size: 13px;
      border-left: 1px solid #f0f0f0;
      padding: 20px 10px;
      vertical-align: top; }
      .partsTable table tr td span, .partsTable table tr td strong, .micronPart table tr td span, .micronPart table tr td strong {
        font-size: 16px;
        font-weight: 600;
        display: block; }
      .partsTable table tr td.first, .micronPart table tr td.first {
        border-left: 0;
        width: 275px; }
      .partsTable table tr td.last, .micronPart table tr td.last {
        white-space: nowrap; }
      .partsTable table tr td.title, .micronPart table tr td.title {
        text-align: left;
        padding: 20px 10px 20px 20px;
        font-size: 16px;
        font-weight: 700;
        width: 480px; }
        .partsTable table tr td.title span, .micronPart table tr td.title span {
          font-size: 13px;
          font-weight: 400;
          display: block;
          color: #000; }
      .partsTable table tr td ul, .micronPart table tr td ul {
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: left;
        margin-top: 0; }
        .partsTable table tr td ul li, .micronPart table tr td ul li {
          list-style: disc;
          margin-bottom: 5px;
          margin-left: 20px; }
    .partsTable table tr.even, .micronPart table tr.even {
      background: #edf5fb; }
      .partsTable table tr.even td, .micronPart table tr.even td {
        border-left: 1px solid #e5eaed; }

.partsTable table tr td:last-child {
  text-align: left; }

.micronPart table tr td {
  border-bottom: 1px solid #f0f0f0 !important;
  text-align: left !important; }

/* Specs Table */
.specsTable {
  width: 100%;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #FFF;
  border: 1px solid #d9d9d9;
  margin-top: 25px;
  text-align: left;
  margin-bottom: 50px; }
  .specsTable .partStatus {
    background: #2aab3b;
    padding: 20px;
    font-weight: 600;
    color: #FFF;
    font-size: 16px; }
    .specsTable .partStatus .statusNote {
      margin-top: 3px;
      font-size: 14px !important;
      float: right;
      color: #FFF;
      font-weight: 300; }
  .specsTable table {
    width: 100%;
    border-collapse: collapse; }
    .specsTable table tr.firstRow td {
      border-top: 0; }
    .specsTable table tr th {
      background: #002f58;
      padding: 10px 18px;
      border-left: 1px solid #57738c;
      color: #FFF;
      font-weight: 600;
      font-size: 14px;
      text-align: center; }
      .specsTable table tr th.first {
        border-left: 0;
        background: #FFF; }
    .specsTable table tr td {
      padding: 14px 18px;
      font-size: 14px;
      border: 1px solid #e8e8e8;
      border-width: 1px 0 0 1px; }
      .specsTable table tr td.first {
        border-left: 0; }
      .specsTable table tr td a.btn {
        margin-top: 0 !important; }
      .specsTable table tr td.production {
        background: #1a961a;
        color: #FFF;
        font-weight: 600; }
      .specsTable table tr td.factory {
        background: #d06211;
        color: #FFF;
        font-weight: 600; }
      .specsTable table tr td.partName {
        background: #002f58;
        width: 111px;
        color: #FFF;
        font-weight: 600; }
      .specsTable table tr td.partDesc {
        background: #FFF;
        width: 128px; }
    .specsTable table.orderableParts td {
      text-align: center; }
      .specsTable table.orderableParts td.first {
        text-align: left;
        border-left: 0; }

/* Featured Products Table */
.featuredTable {
  width: 100%;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #FFF;
  border: 1px solid #d9d9d9;
  margin-top: 25px; }
  .featuredTable table {
    width: 100%;
    border-collapse: collapse; }
    .featuredTable table tr td {
      padding: 22px;
      text-align: left; }
      .featuredTable table tr td .thumb {
        background: #FFF;
        width: 100%;
        min-width: 100px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        overflow: hidden; }
      .featuredTable table tr td a {
        text-decoration: none;
        color: #016abe; }
        .featuredTable table tr td a:hover {
          text-decoration: underline; }
        .featuredTable table tr td a.seeAll {
          font-size: 14px;
          font-weight: 600; }
      .featuredTable table tr td h3 {
        font-size: 16px;
        font-weight: 600; }
      .featuredTable table tr td p {
        font-size: 14px;
        color: #000;
        margin: 5px 0 5px 0; }
      .featuredTable table tr td a.btn {
        color: #FFF;
        white-space: nowrap; }
    .featuredTable table tr.odd {
      background: #edf5fb; }

th.tablesorter-headerDesc {
  background: red !important; }

.module.partsCatalogBase {
  padding-right: 20px; }
.module .base {
  width: 100%;
  position: relative;
  padding: 50px 0 70px 0; }
  .module .base:before, .module .base:after {
    content: " ";
    display: table; }
  .module .base:after {
    clear: both; }
  .module .base.center {
    text-align: center; }
    .module .base.center h2 {
      color: #FFF;
      font-size: 38px;
      font-weight: 300;
      margin: 0 0 20px 0;
      padding: 0;
      line-height: 1.3; }
    .module .base.center h3 {
      color: #016abe;
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 10px; }
    .module .base.center p {
      margin: 0 0 18px 0; }
    .module .base.center .desc {
      padding: 0 30px;
      margin-bottom: 25px;
      text-align: center; }
      .module .base.center .desc p {
        color: #FFF;
        font-size: 18px;
        margin: 0 0 18px 0; }
    .module .base.center a.btn.more {
      float: right;
      padding: 5px 10px;
      margin-top: 20px;
      font-size: 12px; }
.module.gray {
  background: #f4f4f4; }
  .module.gray .base h2 {
    color: #00457c; }
  .module.gray .base .desc p {
    color: #000; }
.module .overflow {
  width: auto;
  background: #FFF;
  margin-top: 25px;
  margin-bottom: 25px;
  position: relative;
  border: 1px solid #d9d9d9; }
.module .fullPartsTable {
  width: auto;
  background: #FFF;
  overflow: visible;
  position: relative; }
  .module .fullPartsTable a {
    color: #016abe;
    text-decoration: none; }
    .module .fullPartsTable a:hover {
      text-decoration: underline; }
    .module .fullPartsTable a.btn {
      color: #FFF;
      padding: 6px 15px;
      font-size: 12px; }
  .module .fullPartsTable label {
    font-size: 11px;
    font-weight: 600;
    float: left;
    margin-right: 30px;
    margin-bottom: 7px; }
  .module .fullPartsTable div.tableclone {
    width: auto;
    overflow-x: scroll;
    margin-left: 369px;
    overflow-y: visible;
    margin-bottom: 2px; }
  .module .fullPartsTable table {
    width: 100%;
    border-collapse: collapse; }
    .module .fullPartsTable table .info-header {
      margin-top: 2px;
      height: 78px; }
    .module .fullPartsTable table tr.odd {
      background: green; }
      .module .fullPartsTable table tr.odd td {
        border-left: 1px solid #e5eaed; }
    .module .fullPartsTable table tr.even {
      background: #FFF; }
      .module .fullPartsTable table tr.even td {
        border-left: 1px solid #e5eaed; }
    .module .fullPartsTable table tr.firstRow {
      cursor: pointer; }
    .module .fullPartsTable table tr.secondRow th {
      background-color: #00457c; }
    .module .fullPartsTable table tr td {
      height: 65px; }
    .module .fullPartsTable table tr th.headcol,
    .module .fullPartsTable table tr td.headcol {
      position: absolute;
      width: 222px;
      left: 0;
      top: auto;
      border-right: 0; }
      .module .fullPartsTable table tr th.headcol.secondCell,
      .module .fullPartsTable table tr td.headcol.secondCell {
        left: 221px !important;
        width: 150px !important;
        cursor: auto; }
        .module .fullPartsTable table tr th.headcol.secondCell img,
        .module .fullPartsTable table tr td.headcol.secondCell img {
          margin-right: 5px;
          margin-top: -6px; }
      .module .fullPartsTable table tr th.headcol.firstCell,
      .module .fullPartsTable table tr td.headcol.firstCell {
        background-color: #00457c;
        cursor: auto; }
    .module .fullPartsTable table tr.odd td {
      background: #edf5fb; }
    .module .fullPartsTable table tr th.headcol {
      border-right: 1px solid #57738c !important; }
    .module .fullPartsTable table tr td.headcol {
      border-right: 1px solid #e5eaed;
      text-align: left; }
    .module .fullPartsTable table tr th {
      background: #002f58;
      font-size: 17px;
      color: #FFF;
      border-bottom: 4px solid #016abe;
      font-weight: 400;
      padding: 21px 10px;
      border-left: 1px solid #57738c;
      overflow: hidden;
      vertical-align: top;
      white-space: nowrap;
      border-right: 0; }
      .module .fullPartsTable table tr th.first {
        border-left: 0;
        padding: 20px 10px;
        border-right: 0;
        margin-right: 0; }
        .module .fullPartsTable table tr th.first.firstCell {
          padding-bottom: 22px;
          text-align: center; }
      .module .fullPartsTable table tr th.setHeight {
        margin-top: 2px; }
        .module .fullPartsTable table tr th.setHeight input[type=text], .module .fullPartsTable table tr th.setHeight input[type=email], .module .fullPartsTable table tr th.setHeight input[type=number], .module .fullPartsTable table tr th.setHeight input[type=password] {
          width: 90%; }
    .module .fullPartsTable table tr td {
      text-align: center;
      color: #000;
      font-size: 13px;
      padding: 20px 10px;
      vertical-align: top;
      background: #FFF; }
      .module .fullPartsTable table tr td span {
        font-size: 16px;
        font-weight: 600;
        display: block; }
      .module .fullPartsTable table tr td.first {
        border-left: 0;
        text-align: center !important; }
      .module .fullPartsTable table tr td.last {
        white-space: nowrap; }
    .module .fullPartsTable table tbody tr td span {
      font-weight: 400;
      font-size: 14px; }

/* Table Scroller : Same DataSheet Table */
.scrollTableWrap {
  width: 960px;
  position: relative;
  margin-top: 40px; }
  .scrollTableWrap:before, .scrollTableWrap:after {
    content: " ";
    display: table; }
  .scrollTableWrap:after {
    clear: both; }
  .scrollTableWrap .tableScroller {
    background: #FFF;
    width: 100%;
    overflow: hidden;
    position: relative; }
    .scrollTableWrap .tableScroller:before, .scrollTableWrap .tableScroller:after {
      content: " ";
      display: table; }
    .scrollTableWrap .tableScroller:after {
      clear: both; }
  .scrollTableWrap table {
    border-collapse: collapse;
    table-layout: fixed; }
    .scrollTableWrap table tr th {
      width: 240px;
      text-align: center;
      font-size: 16px;
      font-weight: 600;
      color: #000;
      padding: 15px 10px;
      height: 70px;
      border-right: 1px solid #e8e8e8;
      vertical-align: top;
      word-break: break-all; }
      .scrollTableWrap table tr th.last {
        border-right: 0; }
      .scrollTableWrap table tr th.current {
        border-right: 0;
        background: #edf5fb;
        font-weight: 600;
        height: 74px !important; }
        .scrollTableWrap table tr th.current span {
          font-size: 14px;
          font-weight: 400;
          display: block; }
    .scrollTableWrap table tr td {
      border: 1px solid #e8e8e8;
      border-width: 1px 1px 0 0;
      padding: 15px 10px;
      width: 240px;
      position: relative;
      height: 50px; }
      .scrollTableWrap table tr td:first-child {
        display: table; }
      .scrollTableWrap table tr td.last {
        border-right: 0; }
      .scrollTableWrap table tr td.current {
        background: #edf5fb;
        border-right: 0;
        color: #000;
        text-align: center;
        font-weight: 600;
        display: table; }
      .scrollTableWrap table tr td.production {
        background: #1a961a;
        color: #FFF !important;
        font-weight: 700; }
      .scrollTableWrap table tr td.eol, .scrollTableWrap table tr td.obsolete {
        background: #e70000;
        color: #FFF !important;
        font-weight: 700; }
      .scrollTableWrap table tr td.sampling {
        background: #e9af12;
        color: #FFF !important;
        font-weight: 700; }
      .scrollTableWrap table tr td.factory {
        background: #d06211;
        color: #FFF !important;
        font-weight: 700; }
      .scrollTableWrap table tr td span {
        display: table-cell;
        vertical-align: middle; }
      .scrollTableWrap table tr td span.option {
        font-size: 12px;
        font-weight: 400;
        width: 75px; }
      .scrollTableWrap table tr td.diff {
        color: red;
        font-weight: 600; }
  .scrollTableWrap .cloned-tableScroller {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10; }
  .scrollTableWrap .controllers #scrollLeft, .scrollTableWrap .controllers #scrollRight {
    position: absolute;
    top: 50%;
    width: 22px;
    height: 37px;
    cursor: pointer;
    background: url("img/arrows-carousel.png") no-repeat; }
    .scrollTableWrap .controllers #scrollLeft.disabled, .scrollTableWrap .controllers #scrollRight.disabled {
      opacity: 0.5; }
  .scrollTableWrap .controllers #scrollLeft {
    left: -40px;
    background-position: 0 0; }
  .scrollTableWrap .controllers #scrollRight {
    right: -40px;
    background-position: -26px 0; }
  .scrollTableWrap + a.btn {
    margin-top: 30px; }

/* Scrollbar at top of Table */
.scrollbar {
  background: transparent;
  height: 30px;
  overflow: hidden;
  margin-bottom: -25px; }
  .scrollbar .overflowBar {
    overflow-x: scroll;
    background: transparent;
    margin-left: 370px;
    height: 30px; }
  .scrollbar .innerScroll {
    background: transparent;
    height: 1px; }

.scrollTDOne {
  padding-top: 13px;
  color: #fff;
  background: #ccc; }

.messageTD {
  background: lightgray;
  text-align: left;
  padding-left: 110px; }

/***
 *
 * infoTable
 *
 ***/
.infoTable {
  width: 100%;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #FFF;
  border: 1px solid #d9d9d9;
  margin-top: 25px;
  margin-bottom: 25px; }
  .infoTable table {
    width: 100%;
    position: relative;
    border-collapse: collapse; }
    .infoTable table.two th {
      width: 50%; }
    .infoTable table.three th {
      width: 33%; }
    .infoTable table th {
      font-size: 22px;
      font-weight: 400;
      color: #002f58;
      border: 1px solid #f0f0f0;
      padding: 20px 10px;
      overflow: hidden; }
    .infoTable table td {
      text-align: left;
      color: #000;
      font-size: 13px;
      border: 1px solid #f0f0f0;
      padding: 20px 10px;
      vertical-align: top;
      font-size: 14px; }
      .infoTable table td a {
        font-weight: 600;
        display: block; }
      .infoTable table td p {
        margin-bottom: 18px; }

.simpleTabs > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 0;
  /* This fixes inline-block spacing issues */
  background: #016abe;
  text-align: center;
  width: auto;
  display: inline-block;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 40px; }
  .simpleTabs > ul li {
    font-size: 16px;
    display: inline-block;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    position: relative; }
    .simpleTabs > ul li a {
      padding: 15px 30px;
      display: block;
      color: #FFF;
      text-decoration: none; }
    .simpleTabs > ul li.active {
      background: #ed8917; }
      .simpleTabs > ul li.active:after {
        position: absolute;
        bottom: -8px;
        left: 0;
        z-index: 100;
        content: "";
        width: 100%;
        height: 8px;
        background: url("img/arrow-tab-down-orange.png") no-repeat center top; }
.simpleTabs .partsTable {
  margin-top: 0; }

.tabs dt {
  float: left;
  margin: 0 .5em 0 0; }

.tabs dt.selected {
  font-weight: bold; }

.tabs dd {
  float: right;
  width: 100%;
  margin-left: -100%;
  margin-top: 1.5em;
  display: none; }

.tabs dd.selected {
  display: block; }

#countryWrap {
  margin-top: 20px;
  display: inline-block; }
  #countryWrap:before, #countryWrap:after {
    content: " ";
    display: table; }
  #countryWrap:after {
    clear: both; }
  #countryWrap ul.country {
    margin: 0;
    padding: 0;
    list-style: none; }
    #countryWrap ul.country li {
      float: left;
      width: 102px;
      margin-left: 41px;
      font-size: 16px;
      font-weight: 600;
      color: #FFF;
      text-align: center;
      margin-bottom: 35px; }
      #countryWrap ul.country li:nth-child(7n+1) {
        margin-left: 0; }
      #countryWrap ul.country li .flag {
        height: 102px;
        margin-bottom: 15px; }
      #countryWrap ul.country li a {
        text-decoration: none;
        color: #FFF; }

.glanceWrap {
  clear: both;
  margin-top: 15px;
  margin-bottom: 20px; }
  .glanceWrap:before, .glanceWrap:after {
    content: " ";
    display: table; }
  .glanceWrap:after {
    clear: both; }
  .glanceWrap .colOne {
    float: left;
    width: 350px;
    margin-right: 20px; }
  .glanceWrap .colTwo {
    float: left;
    width: 590px; }
  .glanceWrap .item {
    float: left;
    border: 1px solid #FFF;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    text-align: left;
    padding: 0;
    margin: 0 0 20px;
    position: relative;
    overflow: hidden;
    /*
    &.one {
    	height: 180px;
    	width: 350px;
    	text-align: center;
    	font-size: 23px;
    	font-weight: 300;
    	padding-top: 10px;
    	span {
    		font-size: 120px;
    		line-height: 120px;
    		font-weight: 700;
    	}
    }
    &.two {
    	height: 150px;
    	width: 350px;
    	text-align: center;
    	font-size: 23px;
    	font-weight: 300;
    	padding-top: 10px;
    	span {
    		font-size: 80px;
    		line-height: 90px;
    		font-weight: 700;
    	}
    }
    &.three {
    	height: 100px;
    	width: 590px;
    	display: inline-block;
    	vertical-align: top;
    	span {
    		display: inline-block;
    		padding-left: 10px;
    		vertical-align: middle;
    		&.fact {
    			font-size: 80px;
    			line-height: 90px;
    			font-weight: 700;
    			padding-left: 40px;;
    		}
    	}
    }
    &.four {
    	width: 240px;
     	height: 230px;
    	margin-right: 20px;
    	text-align: center;
    	font-size: 24px;
    	font-weight: 300;
    	padding-top: 25px;
    	span {
    		font-size: 110px;
    		line-height: 110px;
    		font-weight: 700;
    		display: block;
    	}
    }
    &.five {
    	width: 330px;
    	height: 125px;
    	text-align: center;
    	font-sie: 20px;
    	font-weight: 300;
    	padding-top: 10px;
    	span {
    		font-size: 75px;
    		line-height: 75px;
    		font-weight: 700;
    	}
    }
    &.six {
    	width: 330px;
    	height: 85px;
    	vertical-align: middle;
    	padding-top: 10px;
    	span {
    		display: inline-block;
    		padding-left: 10px;
    		vertical-align: middle;
    		font-size: 20px;
    		font-weight: 300;
    		&.fact {
    			font-size: 64px;
    			line-height: 64px;
    			font-weight: 700;
    			padding-left: 40px;;
    		}
    	}
    }
    */ }
    .glanceWrap .item.marginRight {
      margin-right: 14px; }
    .glanceWrap .item .infoCard {
      background: #f4f7f9;
      display: table-cell;
      display: none;
      color: #016abe;
      font-size: 24px;
      font-weight: 300;
      text-align: center;
      vertical-align: middle;
      position: absolute;
      top: 0;
      left: 0;
      cursor: pointer; }
      .glanceWrap .item .infoCard.one {
        width: 350px;
        height: 180px; }
      .glanceWrap .item .infoCard.two {
        width: 350px;
        height: 150px; }
      .glanceWrap .item .infoCard.three {
        width: 590px;
        height: 100px; }
      .glanceWrap .item .infoCard.four {
        width: 240px;
        height: 230px; }
      .glanceWrap .item .infoCard.five {
        width: 331px;
        height: 125px; }
      .glanceWrap .item .infoCard.six {
        width: 331px;
        height: 83px; }

/**
 * Grid Panel Layouts
 */
.gridPanel {
  width: 100%;
  padding-top: 20px; }
  .gridPanel:before, .gridPanel:after {
    content: " ";
    display: table; }
  .gridPanel:after {
    clear: both; }
  .gridPanel .item {
    float: left;
    width: 305px;
    margin-left: 22px;
    text-align: left;
    font-size: 14px;
    margin-bottom: 45px; }
    .gridPanel .item.first {
      margin-left: 0; }
    .gridPanel .item .thumb {
      width: 305px;
      height: 250px;
      overflow: hidden;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      border-radius: 10px;
      margin-bottom: 20px;
      background: #FFF; }
    .gridPanel .item a {
      color: #016abe;
      text-decoration: none; }
      .gridPanel .item a:hover {
        text-decoration: underline; }
    .gridPanel .item h3 {
      font-size: 18px;
      font-weight: 700; }
    .gridPanel .item p {
      margin: 15px 0 3px 0;
      padding: 0;
      font-size: 14px; }
    .gridPanel .item a.btn {
      padding: 10px 15px;
      margin-top: 20px; }
    .gridPanel .item .note {
      font-size: 14px;
      margin-top: 10px;
      display: block;
      color: #666;
      font-weight: 300; }
    .gridPanel .item span.selectbox {
      width: 300px;
      margin: 0 0 10px 0px; }
    .gridPanel .item .customSelectInner[style] {
      width: 290px !important; }

/**
 * Resource Grid
 */
.resourceGrid {
  width: 100%;
  margin-bottom: -10px; }
  .resourceGrid:before, .resourceGrid:after {
    content: " ";
    display: table; }
  .resourceGrid:after {
    clear: both; }
  .resourceGrid .item {
    float: left;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width: 474px;
    height: 150px;
    overflow: hidden;
    border: 1px solid #d9d9d9;
    position: relative;
    padding: 50px 15px 25px 15px;
    color: #000;
    text-align: left;
    background: #FFF;
    margin-left: 12px;
    margin-bottom: 10px; }
    .resourceGrid .item.featured {
      width: 100%;
      margin-left: 0; }
    .resourceGrid .item.noMargin {
      margin-left: 0; }
    .resourceGrid .item a {
      color: #016abe;
      text-decoration: none; }
      .resourceGrid .item a:hover {
        text-decoration: underline; }
    .resourceGrid .item h3 {
      font-weight: 700; }
    .resourceGrid .item p {
      font-size: 14px; }

/**
 * Image Gallery
 **/
.panelHeader p {
  display: inline-block; }

.imagePanel {
  width: 100%; }
  .imagePanel:before, .imagePanel:after {
    content: " ";
    display: table; }
  .imagePanel:after {
    clear: both; }
  .imagePanel .item {
    float: left;
    margin-left: 22px;
    width: 225px;
    margin-bottom: 45px;
    text-align: center; }
    .imagePanel .item.first {
      margin-left: 0; }
    .imagePanel .item .thumb {
      width: 225px;
      height: auto;
      overflow: hidden;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      border-radius: 10px;
      margin-bottom: 20px;
      background: #FFF; }
      .imagePanel .item .thumb img {
        margin: 0; }
    .imagePanel .item h3 {
      color: #016abe !important; }

* + .imagePanel {
  padding-top: 20px; }

/**
 * Product Lines
 */
.productLines {
  width: 100%;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #FFF;
  border: 1px solid #d9d9d9;
  margin-top: 25px; }
  .productLines .wrap {
    width: 100%;
    display: block; }
    .productLines .wrap:before, .productLines .wrap:after {
      content: " ";
      display: table; }
    .productLines .wrap:after {
      clear: both; }
    .productLines .wrap a {
      color: #016abe;
      text-decoration: none; }
      .productLines .wrap a:hover {
        text-decoration: underline; }
    .productLines .wrap .productName {
      float: left;
      width: 220px;
      padding: 25px 20px 20px 20px; }
      .productLines .wrap .productName a {
        font-size: 14px;
        line-height: 1.3em; }
        .productLines .wrap .productName a span {
          font-weight: 600;
          display: block;
          font-size: 16px; }
    .productLines .wrap .productOptions {
      float: left;
      width: 720px;
      padding-top: 20px; }
      .productLines .wrap .productOptions .productDesc {
        font-size: 14px;
        text-align: left;
        margin-bottom: 15px; }
        .productLines .wrap .productOptions .productDesc p {
          font-size: 14px;
          margin: 0 0 18px 0; }
      .productLines .wrap .productOptions .productHighlights {
        float: left;
        width: 360px; }
        .productLines .wrap .productOptions .productHighlights .icon {
          float: left;
          width: 67px;
          text-align: left;
          padding-top: 5px; }
        .productLines .wrap .productOptions .productHighlights .desc {
          float: left;
          width: 275px;
          text-align: left;
          padding: 5px 10px 5px 0; }
          .productLines .wrap .productOptions .productHighlights .desc h4 {
            margin: 0;
            padding: 0;
            font-size: 16px; }
          .productLines .wrap .productOptions .productHighlights .desc p {
            font-size: 14px !important;
            margin: 0;
            padding: 0; }
      .productLines .wrap .productOptions.twoUp {
        width: 958px;
        padding-left: 20px;
        padding-right: 20px; }
        .productLines .wrap .productOptions.twoUp .productHighlights {
          width: 458px; }
          .productLines .wrap .productOptions.twoUp .productHighlights .desc {
            width: 365px; }
      .productLines .wrap .productOptions.threeUp .productHighlights {
        width: 240px; }
        .productLines .wrap .productOptions.threeUp .productHighlights .desc {
          width: 173px; }
      .productLines .wrap .productOptions .cta {
        clear: both;
        width: 100%;
        text-align: left;
        float: left;
        margin-bottom: 40px; }
        .productLines .wrap .productOptions .cta .cols {
          float: left;
          width: 360px; }
          .productLines .wrap .productOptions .cta .cols a {
            color: #FFF; }
    .productLines .wrap.alt {
      background: #edf5fb; }
  .productLines.simple .wrap .productOptions {
    width: 957px;
    padding-left: 15px;
    padding-right: 15px; }
    .productLines.simple .wrap .productOptions .productHighlights {
      width: 306px !important;
      margin-bottom: 20px; }
      .productLines.simple .wrap .productOptions .productHighlights .desc {
        padding-right: 5px;
        width: 220px;
        margin-bottom: 20px !important; }
  .productLines.fourup .wrap .productOptions {
    width: 957px;
    padding-left: 15px;
    padding-right: 15px; }
    .productLines.fourup .wrap .productOptions .productHighlights {
      width: 231px !important;
      margin-bottom: 20px; }
      .productLines.fourup .wrap .productOptions .productHighlights .desc {
        padding-right: 5px;
        width: 145px;
        margin-bottom: 20px !important; }

/**
 * Press Module Grid
 */
.pressModule, .resourcesModule {
  with: 100%;
  text-align: left;
  margin-top: 10px;
  font-size: 0;
  float: left;
  width: 100%; }
  .pressModule .pressItem, .resourcesModule .pressItem {
    float: left;
    width: 308px;
    height: 268px;
    border: 1px solid #d9d9d9;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 0 0 18px 18px;
    position: relative;
    overflow: hidden;
    background: #FFF;
    padding: 50px 17px 20px 17px; }
    .pressModule .pressItem.first, .resourcesModule .pressItem.first {
      margin-left: 0; }
    .pressModule .pressItem h3, .resourcesModule .pressItem h3 {
      color: #016abe;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px; }
    .pressModule .pressItem h4, .resourcesModule .pressItem h4 {
      color: #00457c;
      font-size: 16px;
      font-weight: 600;
      margin: 0 0 10px 0;
      padding: 0; }
    .pressModule .pressItem p, .resourcesModule .pressItem p {
      font-size: 14px;
      color: #000;
      margin: 0 0 8px 0; }
    .pressModule .pressItem img, .resourcesModule .pressItem img {
      float: left;
      margin: 5px 20px 10px 0; }
    .pressModule .pressItem a, .resourcesModule .pressItem a {
      color: #016abe;
      font-weight: 600;
      text-decoration: none;
      font-size: 14px; }
      .pressModule .pressItem a:hover, .resourcesModule .pressItem a:hover {
        text-decoration: underline; }
    .pressModule .pressItem .videoWrap, .resourcesModule .pressItem .videoWrap {
      width: 270px;
      height: 145px;
      overflow: hidden;
      position: relative; }
      .pressModule .pressItem .videoWrap img, .resourcesModule .pressItem .videoWrap img {
        margin: 0; }
      .pressModule .pressItem .videoWrap a:after, .resourcesModule .pressItem .videoWrap a:after {
        content: "";
        width: 273px;
        height: 145px;
        background: url("img/video-play.png") no-repeat center center;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 40; }
    .pressModule .pressItem .videoWrapFull, .resourcesModule .pressItem .videoWrapFull {
      width: 540px;
      height: 290px;
      overflow: hidden;
      position: relative; }
      .pressModule .pressItem .videoWrapFull img, .resourcesModule .pressItem .videoWrapFull img {
        margin: 0;
        width: 540px;
        /*height: 290px;*/
        overflow-y: hidden; }
      .pressModule .pressItem .videoWrapFull a:after, .resourcesModule .pressItem .videoWrapFull a:after {
        content: "";
        width: 546px;
        height: 290px;
        background: url("img/video-play.png") no-repeat center center;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 40; }
    .pressModule .pressItem.featured, .resourcesModule .pressItem.featured {
      width: 634px;
      height: 554px; }
      .pressModule .pressItem.featured p, .resourcesModule .pressItem.featured p {
        margin: 0 0 25px 0 !important; }

/**
 * Latest Press Releases
 */
ul.latestList {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d9d9d9;
  text-align: left;
  margin-bottom: 30px; }
  ul.latestList li {
    clear: both;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #d9d9d9;
    padding: 30px 15px 30px 5px; }
    ul.latestList li .date {
      color: #333;
      text-transform: uppercase;
      font-size: 11px;
      margin-bottom: 10px; }
    ul.latestList li a {
      color: #016abe;
      font-weight: 700;
      text-decoration: none;
      font-size: 16px;
      padding-right: 160px;
      display: block; }
      ul.latestList li a:hover {
        text-decoration: underline; }
    ul.latestList li .icon {
      float: right;
      width: 28px;
      height: 35px;
      margin-top: 0px; }

.module .container .contentCol ul.latestList {
  border-top: 1px solid #264e71; }
  .module .container .contentCol ul.latestList li {
    border-bottom: 1px solid #264e71;
    padding: 25px 5px 25px 5px; }
    .module .container .contentCol ul.latestList li .date {
      color: #FFF;
      margin-bottom: 5px; }
    .module .container .contentCol ul.latestList li a {
      color: #FFF;
      font-weight: 300;
      padding-right: 0; }

/**
 * Content Pages
 */
.contentArea,
#myAccount {
  width: 960px;
  margin: 0 auto;
  padding-top: 57px;
  /* Left Column */
  /* Content Area */ }
  .contentArea:before, .contentArea:after,
  #myAccount:before,
  #myAccount:after {
    content: " ";
    display: table; }
  .contentArea:after,
  #myAccount:after {
    clear: both; }
  .contentArea .colOne,
  #myAccount .colOne {
    float: left;
    width: 200px;
    margin-top: 7px; }
    .contentArea .colOne .leftNav,
    #myAccount .colOne .leftNav {
      width: 100%;
      -moz-border-radius: 5px 5px 0 0;
      -webkit-border-radius: 5px 5px 0 0;
      border-radius: 5px 5px 0 0;
      overflow: hidden;
      margin-bottom: 20px;
      margin-bottom: 20px;
      border: 1px solid #d9d9d9;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px; }
      .contentArea .colOne .leftNav .sectionTitle,
      #myAccount .colOne .leftNav .sectionTitle {
        color: #FFF;
        background: #006abf;
        font-size: 16px;
        font-weight: 600;
        min-height: 43px;
        padding: 15px; }
      .contentArea .colOne .leftNav ul.tags,
      #myAccount .colOne .leftNav ul.tags {
        padding: 0 0 0 14px;
        float: left; }
        .contentArea .colOne .leftNav ul.tags li,
        #myAccount .colOne .leftNav ul.tags li {
          display: inline;
          float: left;
          list-style-type: none;
          margin-right: 10px;
          line-height: 20px;
          text-valign: bottom; }
          .contentArea .colOne .leftNav ul.tags li a.size-large,
          #myAccount .colOne .leftNav ul.tags li a.size-large {
            font-size: 16px; }
          .contentArea .colOne .leftNav ul.tags li a.size-medium,
          #myAccount .colOne .leftNav ul.tags li a.size-medium {
            font-size: 13px; }
          .contentArea .colOne .leftNav ul.tags li a.size-small,
          #myAccount .colOne .leftNav ul.tags li a.size-small {
            font-size: 11px; }
          .contentArea .colOne .leftNav ul.tags li a.size-xsmall,
          #myAccount .colOne .leftNav ul.tags li a.size-xsmall {
            font-size: 9px; }
      .contentArea .colOne .leftNav ul.nav,
      #myAccount .colOne .leftNav ul.nav {
        padding: 0;
        margin: 0 15px;
        list-style: none; }
        .contentArea .colOne .leftNav ul.nav li,
        #myAccount .colOne .leftNav ul.nav li {
          font-weight: 400;
          font-size: 14px; }
          .contentArea .colOne .leftNav ul.nav li a,
          #myAccount .colOne .leftNav ul.nav li a {
            color: #016abe;
            text-decoration: none;
            display: block; }
            .contentArea .colOne .leftNav ul.nav li a:hover,
            #myAccount .colOne .leftNav ul.nav li a:hover {
              text-decoration: underline; }
            .contentArea .colOne .leftNav ul.nav li a.active,
            #myAccount .colOne .leftNav ul.nav li a.active {
              color: #002f58; }
          .contentArea .colOne .leftNav ul.nav li a.rss,
          #myAccount .colOne .leftNav ul.nav li a.rss {
            font-size: 11px;
            background: url("img/icon-rss.png") no-repeat right; }
          .contentArea .colOne .leftNav ul.nav li ul,
          #myAccount .colOne .leftNav ul.nav li ul {
            margin: 0;
            padding: 0;
            list-style: none; }
            .contentArea .colOne .leftNav ul.nav li ul li a,
            #myAccount .colOne .leftNav ul.nav li ul li a {
              padding: 6px 0; }
            .contentArea .colOne .leftNav ul.nav li ul li:first-child,
            #myAccount .colOne .leftNav ul.nav li ul li:first-child {
              padding-top: 0; }
            .contentArea .colOne .leftNav ul.nav li ul li:last-child,
            #myAccount .colOne .leftNav ul.nav li ul li:last-child {
              padding-bottom: 9px; }
        .contentArea .colOne .leftNav ul.nav > li,
        #myAccount .colOne .leftNav ul.nav > li {
          border-top: 1px solid #d9d9d9;
          font-weight: 700; }
          .contentArea .colOne .leftNav ul.nav > li > a,
          #myAccount .colOne .leftNav ul.nav > li > a {
            padding: 9px 0; }
          .contentArea .colOne .leftNav ul.nav > li:first-child,
          #myAccount .colOne .leftNav ul.nav > li:first-child {
            border-top: 0; }
  .contentArea .contentCol,
  #myAccount .contentCol {
    float: left;
    width: 510px;
    margin: 0 20px 60px 20px;
    font-size: 14px;
    /* Inner Columns */
    /* Press - For 3rd Party Sites */ }
    .contentArea .contentCol.full,
    #myAccount .contentCol.full {
      width: 740px;
      margin-right: 0; }
    .contentArea .contentCol.leftFull,
    #myAccount .contentCol.leftFull {
      width: 720px;
      margin-right: 30px;
      margin-left: 0; }
      .contentArea .contentCol.leftFull hr,
      #myAccount .contentCol.leftFull hr {
        margin: 30px 0; }
    .contentArea .contentCol.rightFull,
    #myAccount .contentCol.rightFull {
      width: 720px;
      margin-left: 30px;
      margin-right: 0; }
      .contentArea .contentCol.rightFull .gridPanel .item,
      #myAccount .contentCol.rightFull .gridPanel .item {
        width: 225px; }
        .contentArea .contentCol.rightFull .gridPanel .item .thumb,
        #myAccount .contentCol.rightFull .gridPanel .item .thumb {
          width: 100%;
          height: inherit; }
    .contentArea .contentCol p,
    #myAccount .contentCol p {
      font-size: 14px;
      margin: 0 0 18px 0;
      padding: 0; }
    .contentArea .contentCol h2,
    #myAccount .contentCol h2 {
      font-size: 22px;
      color: #002f58;
      font-weight: 400;
      margin-bottom: 20px;
      line-height: 1.3em; }
    .contentArea .contentCol h3,
    #myAccount .contentCol h3 {
      font-size: 16px;
      color: #002f58;
      font-weight: 600;
      margin-top: 20px;
      margin-bottom: 8px; }
    .contentArea .contentCol h4,
    #myAccount .contentCol h4 {
      font-size: 14px;
      font-weight: 700;
      color: #000;
      margin-bottom: 15px; }
    .contentArea .contentCol a,
    #myAccount .contentCol a {
      text-decoration: none;
      color: #016abe; }
      .contentArea .contentCol a:hover,
      #myAccount .contentCol a:hover {
        text-decoration: underline; }
    .contentArea .contentCol img,
    #myAccount .contentCol img {
      max-width: 100%;
      margin-bottom: 15px; }
    .contentArea .contentCol hr,
    #myAccount .contentCol hr {
      margin-bottom: 40px;
      margin-top: 20px; }
    .contentArea .contentCol ul,
    #myAccount .contentCol ul {
      margin: 20px 0 20px 0;
      padding: 0 0 0 19px !important; }
      .contentArea .contentCol ul li,
      #myAccount .contentCol ul li {
        margin-bottom: 10px; }
      .contentArea .contentCol ul.pressReleases,
      #myAccount .contentCol ul.pressReleases {
        margin: 0;
        padding: 0;
        list-style: none;
        padding-left: 0 !important;
        width: 100%;
        max-width: 510px;
        float: left; }
        .contentArea .contentCol ul.pressReleases li,
        #myAccount .contentCol ul.pressReleases li {
          width: 100%;
          clear: both;
          float: left; }
          .contentArea .contentCol ul.pressReleases li .date,
          #myAccount .contentCol ul.pressReleases li .date {
            float: left;
            font-size: 14px;
            color: #000;
            margin: 0;
            width: 19.60784%; }
          .contentArea .contentCol ul.pressReleases li a,
          #myAccount .contentCol ul.pressReleases li a {
            float: left;
            font-size: 14px;
            font-weight: 700;
            width: 80.39216%; }
            .contentArea .contentCol ul.pressReleases li a.more,
            #myAccount .contentCol ul.pressReleases li a.more {
              margin-left: 99px;
              margin-top: 30px; }
    .contentArea .contentCol .date,
    #myAccount .contentCol .date {
      font-size: 11px;
      color: #333;
      font-weight: 300;
      margin-top: -15px;
      margin-bottom: 30px; }
    .contentArea .contentCol .innerColOne,
    #myAccount .contentCol .innerColOne {
      float: left;
      width: 180px;
      margin-bottom: 20px; }
    .contentArea .contentCol .innerColTwo,
    #myAccount .contentCol .innerColTwo {
      float: left;
      width: 330px;
      padding-left: 10px;
      margin-bottom: 20px; }
    .contentArea .contentCol dl.form,
    #myAccount .contentCol dl.form {
      float: left;
      margin: 0;
      padding: 0;
      vertical-align: top; }
      .contentArea .contentCol dl.form:before, .contentArea .contentCol dl.form:after,
      #myAccount .contentCol dl.form:before,
      #myAccount .contentCol dl.form:after {
        content: " ";
        display: table; }
      .contentArea .contentCol dl.form:after,
      #myAccount .contentCol dl.form:after {
        clear: both; }
      .contentArea .contentCol dl.form dt,
      #myAccount .contentCol dl.form dt {
        float: left;
        width: 125px;
        margin: 0;
        padding-top: 5px; }
        .contentArea .contentCol dl.form dt label,
        #myAccount .contentCol dl.form dt label {
          font-size: 13px; }
      .contentArea .contentCol dl.form dd,
      #myAccount .contentCol dl.form dd {
        float: left;
        width: 385px;
        padding-left: 10px;
        margin: 0; }
        .contentArea .contentCol dl.form dd input[type=text],
        .contentArea .contentCol dl.form dd input[type=email],
        #myAccount .contentCol dl.form dd input[type=text],
        #myAccount .contentCol dl.form dd input[type=email] {
          width: 100%;
          margin-left: 0; }
        .contentArea .contentCol dl.form dd .note,
        #myAccount .contentCol dl.form dd .note {
          font-size: 12px;
          display: block;
          margin-bottom: 20px; }
    .contentArea .contentCol .pressWrap,
    #myAccount .contentCol .pressWrap {
      border-top: 2px solid #d9e9f5;
      min-height: 300px; }
      .contentArea .contentCol .pressWrap .pressItem,
      #myAccount .contentCol .pressWrap .pressItem {
        border-bottom: 2px solid #d9e9f5; }
        .contentArea .contentCol .pressWrap .pressItem:before, .contentArea .contentCol .pressWrap .pressItem:after,
        #myAccount .contentCol .pressWrap .pressItem:before,
        #myAccount .contentCol .pressWrap .pressItem:after {
          content: " ";
          display: table; }
        .contentArea .contentCol .pressWrap .pressItem:after,
        #myAccount .contentCol .pressWrap .pressItem:after {
          clear: both; }
        .contentArea .contentCol .pressWrap .pressItem .pressTitle,
        #myAccount .contentCol .pressWrap .pressItem .pressTitle {
          color: #006abf;
          font-size: 14px;
          font-weight: 700;
          padding: 25px 0 25px 35px;
          cursor: pointer;
          background: url("img/icon-accordion-plus.png") no-repeat 0 30px; }
          .contentArea .contentCol .pressWrap .pressItem .pressTitle.open,
          #myAccount .contentCol .pressWrap .pressItem .pressTitle.open {
            background: url("img/icon-accordion-minus.png") no-repeat 0 30px; }
          .contentArea .contentCol .pressWrap .pressItem .pressTitle span.date,
          #myAccount .contentCol .pressWrap .pressItem .pressTitle span.date {
            clear: both;
            color: #333;
            font-weight: 300;
            font-size: 11px;
            display: block;
            width: 50%;
            margin: 5px 0 0 0;
            padding: 0; }
        .contentArea .contentCol .pressWrap .pressItem .pressContent,
        #myAccount .contentCol .pressWrap .pressItem .pressContent {
          display: none;
          margin-left: 35px;
          padding: 15px 0 15px 0;
          border-top: 1px solid #d9d9d9; }
        .contentArea .contentCol .pressWrap .pressItem .download,
        #myAccount .contentCol .pressWrap .pressItem .download {
          float: right;
          margin: 28px 5px 0 0; }
          .contentArea .contentCol .pressWrap .pressItem .download img,
          #myAccount .contentCol .pressWrap .pressItem .download img {
            margin-bottom: 0; }
    .contentArea .contentCol .count,
    #myAccount .contentCol .count {
      float: left;
      margin-top: 20px; }
    .contentArea .contentCol .filters,
    #myAccount .contentCol .filters {
      clear: both;
      margin-bottom: 30px; }
      .contentArea .contentCol .filters:before, .contentArea .contentCol .filters:after,
      #myAccount .contentCol .filters:before,
      #myAccount .contentCol .filters:after {
        content: " ";
        display: table; }
      .contentArea .contentCol .filters:after,
      #myAccount .contentCol .filters:after {
        clear: both; }
      .contentArea .contentCol .filters .col,
      #myAccount .contentCol .filters .col {
        float: left;
        width: 50%;
        font-size: 0; }
        .contentArea .contentCol .filters .col label,
        #myAccount .contentCol .filters .col label {
          display: inline-block;
          font-size: 14px; }
        .contentArea .contentCol .filters .col .customSelect,
        #myAccount .contentCol .filters .col .customSelect {
          width: 160px; }
          .contentArea .contentCol .filters .col .customSelect .customSelectInner,
          #myAccount .contentCol .filters .col .customSelect .customSelectInner {
            width: 150px !important; }
    .contentArea .contentCol .boxWrap,
    #myAccount .contentCol .boxWrap {
      border: 1px solid #dadada;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      border-radius: 10px;
      width: 100%;
      text-align: left;
      margin: 20px 0 40px 0; }
      .contentArea .contentCol .boxWrap:before, .contentArea .contentCol .boxWrap:after,
      #myAccount .contentCol .boxWrap:before,
      #myAccount .contentCol .boxWrap:after {
        content: " ";
        display: table; }
      .contentArea .contentCol .boxWrap:after,
      #myAccount .contentCol .boxWrap:after {
        clear: both; }
      .contentArea .contentCol .boxWrap .boxTitle,
      #myAccount .contentCol .boxWrap .boxTitle {
        border-bottom: 1px solid #dadada;
        padding: 15px 18px; }
        .contentArea .contentCol .boxWrap .boxTitle h3,
        #myAccount .contentCol .boxWrap .boxTitle h3 {
          font-size: 22px;
          font-weight: 300;
          color: #00457c;
          margin: 0; }
        .contentArea .contentCol .boxWrap .boxTitle a.seeAll,
        #myAccount .contentCol .boxWrap .boxTitle a.seeAll {
          font-size: 12px;
          text-transform: uppercase;
          color: #016abe;
          float: right;
          text-decoration: none;
          font-weight: 700;
          margin-top: 11px; }
        .contentArea .contentCol .boxWrap .boxTitle a.smBtn,
        #myAccount .contentCol .boxWrap .boxTitle a.smBtn {
          font-size: 11px;
          text-transform: uppercase;
          color: #FFF;
          float: right;
          text-decoration: none;
          font-weight: 600;
          margin-top: 11px;
          background: #003e72;
          padding: 5px 10px;
          -moz-border-radius: 5px;
          -webkit-border-radius: 5px;
          border-radius: 5px;
          margin-top: 5px; }
      .contentArea .contentCol .boxWrap .posts,
      #myAccount .contentCol .boxWrap .posts {
        width: 100%;
        padding: 20px 18px;
        float: left;
        width: 100%; }
        .contentArea .contentCol .boxWrap .posts .thumb,
        #myAccount .contentCol .boxWrap .posts .thumb {
          margin-bottom: 20px; }
        .contentArea .contentCol .boxWrap .posts .date,
        #myAccount .contentCol .boxWrap .posts .date {
          font-size: 11px;
          color: #333;
          text-transform: uppercase;
          margin-bottom: 15px;
          margin-top: 10px; }
        .contentArea .contentCol .boxWrap .posts h4,
        #myAccount .contentCol .boxWrap .posts h4 {
          margin: 0 0 10px 0;
          padding: 0;
          font-size: 16px !important; }
        .contentArea .contentCol .boxWrap .posts a,
        #myAccount .contentCol .boxWrap .posts a {
          text-decoration: none;
          color: #016abe;
          font-size: 14px;
          font-weight: 700; }
          .contentArea .contentCol .boxWrap .posts a:hover,
          #myAccount .contentCol .boxWrap .posts a:hover {
            text-decoration: underline; }
          .contentArea .contentCol .boxWrap .posts a.more,
          #myAccount .contentCol .boxWrap .posts a.more {
            font-weight: 600; }
        .contentArea .contentCol .boxWrap .posts p,
        #myAccount .contentCol .boxWrap .posts p {
          margin: 0 0 12px 0;
          font-size: 14px !important; }
        .contentArea .contentCol .boxWrap .posts ul,
        #myAccount .contentCol .boxWrap .posts ul {
          margin: 0;
          padding: 0;
          list-style: none; }
          .contentArea .contentCol .boxWrap .posts ul li,
          #myAccount .contentCol .boxWrap .posts ul li {
            margin-bottom: 10px; }
        .contentArea .contentCol .boxWrap .posts ul.postList,
        #myAccount .contentCol .boxWrap .posts ul.postList {
          margin: 0;
          padding: 0;
          list-style: none; }
          .contentArea .contentCol .boxWrap .posts ul.postList > li,
          #myAccount .contentCol .boxWrap .posts ul.postList > li {
            border-top: 1px solid #d9d9d9;
            margin: 0 0 20px 0;
            padding-top: 20px;
            float: left;
            width: 100%; }
            .contentArea .contentCol .boxWrap .posts ul.postList > li:first-child,
            #myAccount .contentCol .boxWrap .posts ul.postList > li:first-child {
              padding-top: 0;
              border-top: 0; }
            .contentArea .contentCol .boxWrap .posts ul.postList > li .date,
            #myAccount .contentCol .boxWrap .posts ul.postList > li .date {
              margin-bottom: 10px; }
            .contentArea .contentCol .boxWrap .posts ul.postList > li a,
            #myAccount .contentCol .boxWrap .posts ul.postList > li a {
              color: #016abe;
              font-size: 16px;
              font-weight: 700;
              text-decoration: none; }
              .contentArea .contentCol .boxWrap .posts ul.postList > li a:hover,
              #myAccount .contentCol .boxWrap .posts ul.postList > li a:hover {
                text-decoration: underline; }
            .contentArea .contentCol .boxWrap .posts ul.postList > li .thumb,
            #myAccount .contentCol .boxWrap .posts ul.postList > li .thumb {
              float: left;
              width: 105px;
              height: 105px;
              overflow: hidden;
              margin-right: 10px; }
            .contentArea .contentCol .boxWrap .posts ul.postList > li .post,
            #myAccount .contentCol .boxWrap .posts ul.postList > li .post {
              float: left;
              width: 100%;
              max-width: 315px;
              margin-top: -2px;
              position: relative; }
              .contentArea .contentCol .boxWrap .posts ul.postList > li .post p,
              #myAccount .contentCol .boxWrap .posts ul.postList > li .post p {
                margin: 3px 0 5px 0;
                font-size: 13px; }
              .contentArea .contentCol .boxWrap .posts ul.postList > li .post .authorInfo,
              #myAccount .contentCol .boxWrap .posts ul.postList > li .post .authorInfo {
                float: left;
                width: 100%;
                margin-top: 10px; }
                .contentArea .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .photo,
                #myAccount .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .photo {
                  float: left;
                  width: 40px;
                  height: 40px;
                  overflow: hidden;
                  margin-right: 7px; }
                .contentArea .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author,
                #myAccount .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author {
                  float: left; }
                  .contentArea .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author ul,
                  #myAccount .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author ul {
                    margin: 0;
                    padding: 0;
                    list-style: none;
                    margin: 5px 0 3px 0;
                    float: left; }
                    .contentArea .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author ul li,
                    #myAccount .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author ul li {
                      display: inline-block !important;
                      border-left: 1px solid #b6b6b6;
                      margin: 0;
                      padding: 0;
                      width: auto;
                      border-top: 0;
                      line-height: 11px; }
                      .contentArea .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author ul li:first-child,
                      #myAccount .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author ul li:first-child {
                        border-left: 0; }
                        .contentArea .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author ul li:first-child a,
                        #myAccount .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author ul li:first-child a {
                          padding-left: 0; }
                      .contentArea .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author ul li a,
                      #myAccount .contentCol .boxWrap .posts ul.postList > li .post .authorInfo .author ul li a {
                        font-size: 11px;
                        text-transform: uppercase;
                        padding: 0 10px; }

.module {
  /* On White Background */ }
  .module .container {
    font-size: 14px; }
    .module .container .contentCol {
      margin: 30px 0; }
      .module .container .contentCol h3 {
        color: #FFF !important;
        margin: 0 0 5px 0 !important;
        font-weight: 600 !important; }
      .module .container .contentCol h4 {
        color: #FFF;
        font-weight: 600;
        font-size: 16px;
        margin: 0 0 7px 0; }
      .module .container .contentCol p {
        margin: 0 0 18px 0;
        color: #FFF; }
      .module .container .contentCol a {
        text-decoration: none;
        color: #016abe; }
        .module .container .contentCol a:hover {
          text-decoration: underline; }
      .module .container .contentCol.one {
        padding-right: 20px; }
      .module .container .contentCol.two {
        padding-left: 20px; }
  .module.white, .module.gray {
    /* On Dark Background */ }
    .module.white .container .contentCol h3, .module.gray .container .contentCol h3 {
      color: #000 !important; }
    .module.white .container .contentCol h4, .module.gray .container .contentCol h4 {
      color: #016abe; }
    .module.white .container .contentCol p, .module.gray .container .contentCol p {
      color: #000 !important; }

.contentArea {
  /* Right Column */ }
  .contentArea aside {
    float: left;
    width: 210px; }
    .contentArea aside .modWrap {
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      margin-bottom: 35px;
      padding: 25px 20px;
      font-size: 14px; }
      .contentArea aside .modWrap:before, .contentArea aside .modWrap:after {
        content: " ";
        display: table; }
      .contentArea aside .modWrap:after {
        clear: both; }
      .contentArea aside .modWrap h2 {
        font-size: 22px;
        font-weight: 400;
        margin-bottom: 15px; }
      .contentArea aside .modWrap p {
        margin: 0 0 10px 0;
        padding: 0;
        font-size: 14px;
        font-weight: 300; }
      .contentArea aside .modWrap a {
        text-decoration: none; }
        .contentArea aside .modWrap a:hover {
          text-decoration: underline; }
      .contentArea aside .modWrap.blue {
        background: #002f58;
        color: #FFF; }
        .contentArea aside .modWrap.blue h2 {
          color: #FFF; }
        .contentArea aside .modWrap.blue a {
          color: #FFF; }
        .contentArea aside .modWrap.blue ul {
          margin: 0;
          padding: 0;
          list-style: none; }
          .contentArea aside .modWrap.blue ul li {
            margin-bottom: 8px; }
            .contentArea aside .modWrap.blue ul li:last-child {
              margin-bottom: 0; }
            .contentArea aside .modWrap.blue ul li a {
              font-weight: 700; }
      .contentArea aside .modWrap.gray {
        background: #f1f1f1; }
        .contentArea aside .modWrap.gray h2 {
          color: #002f58;
          font-size: 20px; }
        .contentArea aside .modWrap.gray ul {
          margin: 0;
          padding: 0;
          list-style: none; }
          .contentArea aside .modWrap.gray ul li {
            margin-bottom: 5px; }
            .contentArea aside .modWrap.gray ul li a {
              font-weight: 600;
              color: #016abe; }
      .contentArea aside .modWrap ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        .contentArea aside .modWrap ul li {
          clear: both;
          font-weight: 400;
          list-style: square;
          margin-left: 18px; }
          .contentArea aside .modWrap ul li a {
            font-weight: 400  !important; }
      .contentArea aside .modWrap ul.productPhotos {
        margin: 0;
        padding: 0;
        list-style: none; }
        .contentArea aside .modWrap ul.productPhotos li {
          clear: both;
          margin-bottom: 25px;
          font-size: 14px;
          margin-left: 0;
          list-style: none; }
          .contentArea aside .modWrap ul.productPhotos li .thumb {
            -moz-border-radius: 5px;
            -webkit-border-radius: 5px;
            border-radius: 5px;
            background: #FFF;
            overflow: hidden;
            margin-bottom: 10px;
            width: 100%;
            text-align: center; }
            .contentArea aside .modWrap ul.productPhotos li .thumb img {
              width: 100%; }
          .contentArea aside .modWrap ul.productPhotos li a {
            font-weight: 700;
            color: #016abe;
            font-weight: 600 !important; }
      .contentArea aside .modWrap.contact p {
        margin-bottom: 30px; }

/**
 * Media Relations
 */
.kitsWrap {
  margin-bottom: 27px;
  display: block;
  width: 100%;
  text-align: left; }
  .kitsWrap:before, .kitsWrap:after {
    content: " ";
    display: table; }
  .kitsWrap:after {
    clear: both; }
  .kitsWrap .item {
    float: left;
    width: 308px;
    height: 180px;
    border: 1px solid #d9d9d9;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 15px;
    margin-left: 18px;
    font-size: 14px; }
    .kitsWrap .item .imgLeft {
      float: left;
      margin: 4px 15px 20px 0; }
    .kitsWrap .item a {
      color: #016abe;
      text-decoration: none; }
      .kitsWrap .item a:hover {
        text-decoration: underline; }
    .kitsWrap .item .date {
      font-size: 11px;
      color: #333;
      font-weight: 300;
      margin-bottom: 3px; }
    .kitsWrap .item h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 3px; }
    .kitsWrap .item p {
      font-size: 14px;
      color: #000;
      margin: 0 0 3px 0; }
    .kitsWrap .item.featured {
      margin-left: 0;
      width: 633px;
      height: 375px; }
      .kitsWrap .item.featured h3 {
        margin-bottom: 10px; }
      .kitsWrap .item.featured p {
        margin-bottom: 10px; }

.mediaPhoto {
  width: 130px;
  height: 130px;
  float: left;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 0px 15px 15px 0;
  overflow: hidden; }

/**
 * Product Details Page
 */
.module {
  /* On White Background */ }
  .module .container {
    font-size: 14px; }
    .module .container .contentCol {
      margin: 30px 0; }
      .module .container .contentCol h3 {
        color: #FFF !important;
        margin: 0 0 5px 0 !important;
        font-weight: 600 !important; }
      .module .container .contentCol p {
        margin: 0 0 18px 0;
        color: #FFF; }
      .module .container .contentCol.one {
        padding-right: 20px; }
      .module .container .contentCol.two {
        padding-left: 20px; }
  .module.white {
    /* On Dark Background */ }
    .module.white .container .contentCol h3 {
      color: #000 !important; }
    .module.white .container .contentCol p {
      color: #000 !important; }

/**
 *  Support.scss
 */
.docs .module {
  /**
   * Search Filters and Results
   */
  /**
   * Results Column
   */ }
  .docs .module .container {
    padding: 35px 0; }
    .docs .module .container h2 {
      font-size: 22px;
      font-weight: 400;
      color: #000;
      margin-bottom: 15px; }
    .docs .module .container a {
      color: #016abe;
      text-decoration: none; }
      .docs .module .container a:hover {
        text-decoration: underline; }
    .docs .module .container ul.linkList {
      margin: 0;
      padding: 0;
      list-style: none;
      margin-bottom: 30px;
      margin-top: -10px; }
      .docs .module .container ul.linkList li {
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 600; }
        .docs .module .container ul.linkList li strong {
          font-weight: 700; }
  .docs .module .filter {
    float: left;
    width: 200px;
    min-height: 200px;
    margin-right: 20px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    overflow: hidden; }
    .docs .module .filter .title {
      color: #FFF;
      background: #006abf;
      font-size: 16px;
      font-weight: 600;
      min-height: 43px;
      padding: 10px 15px;
      margin-bottom: 15px; }
    .docs .module .filter hr {
      margin: 0 10px 20px 10px; }
    .docs .module .filter ul {
      padding-bottom: 20px;
      list-style: none;
      margin: 0 10px 0px 10px;
      padding-left: 0px; }
      .docs .module .filter ul li {
        font-size: 13px;
        margin-bottom: 5px;
        color: #999;
        font-weight: 600; }
        .docs .module .filter ul li a {
          color: #006abf;
          font-weight: 600; }
      .docs .module .filter ul ul {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0; }
    .docs .module .filter h4 {
      margin: 0 0 10px 10px; }
    .docs .module .filter a.btn {
      font-size: 13px;
      padding: 10px 13px;
      margin: 0 15px 20px 15px;
      width: auto; }
  .docs .module .results {
    float: left;
    width: 740px; }
    .docs .module .results h2 {
      margin-left: 5px; }
    .docs .module .results a.btn {
      padding: 10px; }
    .docs .module .results .resourcesModule .pressItem {
      width: 237px;
      margin: 0 0 14px 14px; }
      .docs .module .results .resourcesModule .pressItem .videoWrap {
        width: 100%; }
        .docs .module .results .resourcesModule .pressItem .videoWrap img {
          max-width: 100%; }
        .docs .module .results .resourcesModule .pressItem .videoWrap a:after {
          content: "";
          width: 100%;
          height: 107px;
          background: url("img/video-play.png") no-repeat center center;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 40; }
      .docs .module .results .resourcesModule .pressItem.first {
        margin-left: 0; }
  .docs .module .selectedFilters {
    width: 100%;
    background: #f4f4f4;
    padding: 15px 20px;
    margin-top: 30px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px; }
    .docs .module .selectedFilters:before, .docs .module .selectedFilters:after {
      content: " ";
      display: table; }
    .docs .module .selectedFilters:after {
      clear: both; }
    .docs .module .selectedFilters ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      .docs .module .selectedFilters ul li {
        float: left;
        font-size: 14px;
        margin-right: 15px; }
        .docs .module .selectedFilters ul li a.close {
          display: inline-block;
          width: 20px;
          height: 20px;
          background: url("img/icon-sprite.png") no-repeat 0 -71px;
          text-indent: -9999px;
          margin-left: 5px; }

#supportFBGA {
  width: 645px;
  padding-bottom: 50px;
  float: left;
  /* Search FBGA */ }
  #supportFBGA #searchFBGA {
    width: 100%;
    font-size: 14px;
    color: #000;
    padding: 0px 0 35px 0; }
  #supportFBGA h2 {
    font-size: 22px;
    color: #002f58;
    line-height: 22px;
    margin-bottom: 20px;
    font-weight: 300; }
  #supportFBGA label {
    font-size: 14px;
    margin-top: 5px; }
  #supportFBGA .support-search {
    margin-top: 35px; }
  #supportFBGA .partsTable .title {
    text-align: center; }

.support-rightbar {
  float: right;
  margin-top: 40px; }

.contentArea.png {
  padding-top: 20px; }

.fullWidth .searchInput {
  width: 900px !important; }

.png .partsTable table tr td {
  vertical-align: middle; }

.pagination-outer {
  margin-top: -15px;
  margin-bottom: 100px;
  font-size: 14px; }
  .pagination-outer span {
    float: left; }
  .pagination-outer .pagination-inner {
    float: right; }
  .pagination-outer .pagination-next:after {
    content: url(img/arrow-right-white.png);
    top: 1px;
    left: 1px;
    position: relative; }
  .pagination-outer .btn {
    padding: 5px 10px;
    font-size: 12px; }
  .pagination-outer .btn.current {
    background-color: #00233f; }

.support-tools {
  width: 100%;
  padding-bottom: 50px;
  float: left;
  font-size: 14px; }
  .support-tools h2 {
    font-size: 22px;
    color: #002f58;
    line-height: 22px;
    margin-bottom: 20px;
    font-weight: 300; }
  .support-tools h3 {
    color: #00457c;
    font-size: 16px;
    font-weight: 600; }
  .support-tools label {
    font-size: 14px;
    margin-top: 5px; }
  .support-tools .support-search {
    margin-top: 35px;
    padding-bottom: 40px; }
  .support-tools.spd {
    padding-bottom: 175px; }
    .support-tools.spd a {
      font-weight: bold; }
    .support-tools.spd .support-search {
      padding-bottom: 0; }
  .support-tools .partsTable .title {
    text-align: center; }

.pls {
  font-size: 14px; }
  .pls h2 {
    font-size: 22px;
    color: #002f58;
    line-height: 22px;
    margin-bottom: 20px;
    font-weight: 300; }
  .pls .support-tools {
    width: 621px;
    margin-right: 30px;
    padding-bottom: 82px; }
  .pls .pls-logo {
    float: left;
    margin: 0 30px 30px 0; }
  .pls aside {
    width: 309px;
    margin-top: 17px; }
  .pls .pls-video {
    text-align: center; }
    .pls .pls-video img {
      width: 100%;
      height: auto;
      margin-bottom: 15px; }
    .pls .pls-video a {
      font-weight: bold; }
  .pls .partsTable {
    margin-bottom: 30px; }
  .pls th span {
    display: block;
    font-style: italic;
    font-size: 14px; }
  .pls td {
    text-align: left !important; }
    .pls td a {
      font-weight: 600; }
    .pls td p {
      margin: 15px 0 20px; }
    .pls td ul, .pls td li {
      margin: 0;
      padding: 0 0 0 17px; }
    .pls td li {
      margin-bottom: 15px;
      padding: 0px; }
    .pls td .btn {
      font-size: 14px;
      padding: 16px 21px; }
  .pls .longevity {
    width: 100%;
    text-align: center;
    margin-bottom: 110px; }

.mbqual {
  padding-bottom: 110px; }
  .mbqual .searchBtn {
    margin-top: 12px; }
  .mbqual .partsTable {
    margin: 40px 0; }
    .mbqual .partsTable th, .mbqual .partsTable td {
      text-align: left !important; }
  .mbqual a {
    font-weight: 600; }

.support-landing .container {
  padding: 0 0 20px; }
.support-landing .support-item {
  background-color: white;
  padding: 20px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 0px 0px 5px gray;
  -webkit-box-shadow: 0px 0px 5px gray;
  box-shadow: 0px 0px 5px gray; }
  .support-landing .support-item h2 {
    margin: 20px 0 0 !important; }
  .support-landing .support-item hr {
    width: 85px;
    margin: 20px auto; }
  .support-landing .support-item p {
    width: 750px;
    font-size: 16px;
    margin: 0 auto 25px !important;
    display: inline-block; }
  .support-landing .support-item h4 {
    color: #00233f;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 25px; }
  .support-landing .support-item ul.support-list {
    margin: 0 0 25px;
    padding: 0;
    list-style-type: none;
    clear: both; }
    .support-landing .support-item ul.support-list li {
      width: 33.33%;
      float: left;
      margin: 25px 0; }
      .support-landing .support-item ul.support-list li a {
        font-size: 20px; }

.rounded.white {
  background: white;
  border: 1px solid #DDDDDD; }

.support-cnt {
  padding: 30px 0 20px;
  background: #f4f4f4; }
  .support-cnt .support-item {
    padding: 20px 40px; }
  .support-cnt h2 {
    padding-bottom: 40px !important;
    color: #516D87 !important;
    font-weight: 300 !important;
    font-size: 32px !important; }
  .support-cnt hr {
    margin: 20px 0 !important;
    text-align: left; }
  .support-cnt .thirds {
    width: 30%;
    margin-right: 5%;
    float: left;
    text-align: left; }
    .support-cnt .thirds:last-child {
      margin-right: 0; }
    .support-cnt .thirds h3 {
      margin-bottom: 20px !important;
      color: black !important;
      font-weight: normal !important; }
  .support-cnt ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .support-cnt ul ul {
      margin: 0 0 0 20px; }
    .support-cnt ul li {
      width: 100%; }
      .support-cnt ul li a {
        width: 100%;
        display: block;
        margin-bottom: 10px;
        font-weight: 700; }
        .support-cnt ul li a:hover {
          text-decoration: none !important;
          color: #002F58 !important; }
    .support-cnt ul .dropdown-trigger {
      position: relative; }
      .support-cnt ul .dropdown-trigger:after {
        content: "+";
        font-size: 16px;
        display: block;
        height: 100%;
        width: 10px;
        position: absolute;
        right: 0px;
        top: 0px;
        text-align: center; }
      .support-cnt ul .dropdown-trigger.active:after {
        content: "-"; }
    .support-cnt ul .dropdown-area {
      display: none; }

/* Support Panels */
.support-panel {
  background-color: white;
  padding: 40px 20px;
  margin: 0 0 30px 0;
  text-align: center;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 5px gray ;
  -moz-box-shadow: 0px 0px 5px gray ;
  box-shadow: 0px 0px 5px gray ; }
  .support-panel:before, .support-panel:after {
    content: " ";
    display: table; }
  .support-panel:after {
    clear: both; }
  .support-panel__icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px auto; }
  .support-panel__title {
    width: 100%;
    font-size: 38px;
    color: #002f58;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px; }
  .support-panel__excerpt {
    font-size: 16px;
    width: 800px;
    text-align: center;
    margin: 0 auto 40px auto; }
    .support-panel__excerpt h2 {
      font-size: 22px;
      font-weight: 600;
      color: #002f58; }
    .support-panel__excerpt p {
      margin: 0 0 30px 0; }
    .support-panel__excerpt ul {
      margin: 0;
      padding: 0;
      list-style: none;
      margin: 40px auto -40px auto;
      font-size: 0; }
      .support-panel__excerpt ul li {
        margin: 0 5px 40px 5px;
        vertical-align: top;
        display: inline-block;
        width: 250px; }
        .support-panel__excerpt ul li a {
          font-size: 20px;
          color: #016abe; }
  .support-panel .category-col {
    float: left;
    width: 33%;
    margin-top: 20px;
    padding-left: 20px;
    text-align: left; }
    .support-panel .category-col h3 {
      font-size: 18px;
      color: #000;
      font-weight: 400;
      margin: 0 0 20px 0;
      padding: 0; }
      .support-panel .category-col h3:after {
        content: "";
        display: block;
        width: 40px;
        height: 1px;
        background: #d2d2d2;
        margin-top: 25px; }
    .support-panel .category-col ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      .support-panel .category-col ul li {
        margin-bottom: 10px;
        width: 100%;
        position: relative; }
        .support-panel .category-col ul li a {
          padding-right: 20px;
          font-size: 16px;
          font-weight: 600; }
          .support-panel .category-col ul li a[href='#type'] {
            color: #000; }
            .support-panel .category-col ul li a[href='#type']:hover {
              cursor: default;
              text-decoration: none; }
        .support-panel .category-col ul li .cat-expand {
          width: 10px;
          height: 10px;
          cursor: pointer;
          background: url("img/filter-plus-minus-lightblue.png") no-repeat 0 0;
          position: absolute;
          top: 9px;
          right: 10px; }
          .support-panel .category-col ul li .cat-expand.cat-open {
            background: url("img/filter-plus-minus-lightblue.png") no-repeat 0 -11px; }
        .support-panel .category-col ul li .cat-content {
          display: none;
          padding: 15px 0 0 0; }
          .support-panel .category-col ul li .cat-content ul {
            margin-left: 10px; }
            .support-panel .category-col ul li .cat-content ul li {
              margin-bottom: 0;
              padding-bottom: 10px; }
              .support-panel .category-col ul li .cat-content ul li a {
                font-weight: 400;
                font-size: 16px;
                margin-bottom: 10px; }

.no-js .cat-content {
  display: block !important; }

.hiddenContent {
  float: left;
  width: 100%; }

.docModule {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  width: 100%;
  padding: 50px 0 10px 0;
  position: relative;
  background: #FFF;
  overflow: hidden;
  margin-bottom: 15px;
  text-align: left; }
  .docModule:before, .docModule:after {
    content: " ";
    display: table; }
  .docModule:after {
    clear: both; }
  .docModule a {
    text-decoration: none;
    color: #016abe; }
    .docModule a:hover {
      text-decoration: underline; }
  .docModule .docInfo {
    float: left;
    padding: 0 25px 0 15px;
    font-size: 14px;
    color: #000;
    width: 750px; }
    .docModule .docInfo .title {
      font-weight: 600;
      font-size: 16px; }
    .docModule .docInfo a.title {
      color: #016abe;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      margin-bottom: 10px;
      display: inline-block; }
      .docModule .docInfo a.title:hover {
        text-decoration: underline; }
    .docModule .docInfo span.meta {
      clear: both;
      width: 100%;
      display: block;
      margin-bottom: 10px; }
      .docModule .docInfo span.meta a {
        font-weight: 600;
        margin-left: 20px; }
    .docModule .docInfo p {
      margin: 0 0 18px 0; }
  .docModule .actions {
    margin-left: 10px;
    float: left;
    padding-top: 5px;
    width: 165px; }
    .docModule .actions a.btn {
      margin-left: 15px;
      padding: 10px 15px;
      display: block;
      margin-bottom: 5px;
      text-align: center;
      color: #FFF; }
      .docModule .actions a.btn.green {
        width: 67px;
        float: left;
        font-size: 12px; }
  .docModule.datasheet .docInfo {
    width: 479px; }
    .docModule.datasheet .docInfo ul.jumpTo {
      margin: 0;
      padding: 0;
      list-style: none; }
      .docModule.datasheet .docInfo ul.jumpTo li {
        display: inline-block;
        font-weight: 600;
        font-size: 14px;
        margin-right: 16px; }
  .docModule.datasheet .actions {
    float: left;
    width: 479px;
    padding-right: 25px;
    text-align: right;
    margin-left: 0;
    font-size: 0; }
    .docModule.datasheet .actions a.btn {
      display: inline-block;
      width: 144px;
      margin-left: 6px;
      padding-top: 15px;
      padding-bottom: 15px;
      vertical-align: bottom; }
      .docModule.datasheet .actions a.btn.green {
        width: 67px;
        float: none;
        display: inline-block;
        font-size: 12px;
        margin-left: 6px;
        padding-top: 10px;
        padding-bottom: 10px; }

/**
 * src-home.scss
 */
.src {
  /* Social Bar */
  /* SRC Search Bar */
  /* Sales Resources */
  /* Aside */ }
  .src #socialBar {
    margin-top: 60px; }
  .src .subBanner .container {
    padding-top: 0px;
    padding-bottom: 10px; }
  .src .selectWrap {
    padding: 8px 0 15px 0;
    text-align: right;
    font-size: 11px; }
    .src .selectWrap label {
      font-size: 14px; }
  .src .searchBar {
    width: 100%;
    background: #002f58;
    padding: 25px 0; }
    .src .searchBar .find {
      float: left;
      width: 210px;
      height: 45px;
      background: #006abf;
      color: #FFF;
      font-size: 14px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      margin-right: 20px;
      padding: 12px 15px;
      cursor: pointer;
      margin-bottom: -3px;
      position: relative; }
      .src .searchBar .find:after {
        content: "";
        position: absolute;
        right: 15px;
        top: 20px;
        width: 13px;
        height: 8px;
        background: url("img/up-down-arrows.png") no-repeat 0 -8px; }
      .src .searchBar .find.open:after {
        background: url("img/up-down-arrows.png") no-repeat 0 0px; }
    .src .searchBar input[type=text] {
      width: 730px;
      margin: 5px 0 0 0; }
    .src .searchBar input[type=submit] {
      width: 30px;
      height: 30px;
      float: left;
      margin-left: -31px;
      padding: 0;
      background: url("img/btn-search.png") no-repeat;
      text-indent: -9999px;
      border: 0;
      margin-top: 6px; }
    .src .searchBar .findOptions {
      clear: both;
      width: 100%;
      position: relative;
      -moz-border-radius: 0 5px 5px 5px;
      -webkit-border-radius: 0 5px 5px 5px;
      border-radius: 0 5px 5px 5px;
      background: #006abf;
      padding: 20px;
      position: relative; }
      .src .searchBar .findOptions .column {
        display: inline-block;
        vertical-align: top;
        font-size: 14px; }
        .src .searchBar .findOptions .column.one {
          width: 170px; }
        .src .searchBar .findOptions .column.two {
          width: 170px; }
        .src .searchBar .findOptions .column.three {
          width: 250px; }
        .src .searchBar .findOptions .column.four {
          width: 160px; }
        .src .searchBar .findOptions .column.five {
          width: 150px; }
        .src .searchBar .findOptions .column h4 {
          color: #FFF;
          font-weight: 600;
          margin: 8px 0 8px 0; }
        .src .searchBar .findOptions .column ul {
          margin: 0;
          padding: 0;
          list-style: none; }
          .src .searchBar .findOptions .column ul li a {
            color: #FFF;
            font-size: 13px;
            font-weight: 400; }
  .src .filter {
    float: left;
    width: 200px;
    margin-right: 20px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    overflow: hidden;
    margin-top: 10px; }
    .src .filter .title {
      color: #FFF;
      background: #006abf;
      font-size: 16px;
      font-weight: 600;
      min-height: 43px;
      padding: 10px 15px;
      margin-bottom: 15px; }
    .src .filter hr {
      margin: 0 10px 20px 10px; }
    .src .filter ul {
      padding-bottom: 20px;
      list-style: none;
      margin: 0 10px 0px 10px;
      padding-left: 0px; }
      .src .filter ul li {
        font-size: 13px;
        margin-bottom: 5px;
        color: #999;
        font-weight: 600; }
        .src .filter ul li a {
          color: #006abf;
          font-weight: 600; }
      .src .filter ul ul {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0; }
    .src .filter h4 {
      margin: 0 0 10px 10px; }
    .src .filter a.btn {
      font-size: 13px;
      padding: 10px 13px;
      margin: 0 15px 20px 15px;
      width: auto; }
  .src .results {
    float: left;
    width: 740px; }
    .src .results h2 {
      font-size: 22px;
      font-weight: 400;
      color: #000 !important;
      margin-bottom: 5px;
      margin-top: 5px; }
    .src .results a {
      color: #016abe;
      text-decoration: none; }
      .src .results a:hover {
        text-decoration: underline; }
    .src .results hr {
      margin-bottom: 0; }
    .src .results .item {
      width: 100%;
      padding: 20px 0;
      border-bottom: 1px solid #d9d9d9; }
      .src .results .item:before, .src .results .item:after {
        content: " ";
        display: table; }
      .src .results .item:after {
        clear: both; }
      .src .results .item .thumb {
        width: 180px;
        height: 150px;
        float: left;
        margin-right: 20px; }
        .src .results .item .thumb img {
          max-width: 100%; }
      .src .results .item .info {
        float: left;
        width: 538px;
        padding-right: 20px; }
        .src .results .item .info h3 {
          font-size: 16px;
          line-height: 16px;
          font-weight: 700;
          margin: 0 0 10px 0;
          padding: 0; }
        .src .results .item .info p {
          font-size: 14px;
          color: #000;
          margin: 0 0 15px 0; }
        .src .results .item .info a.btn {
          padding: 8px 18px;
          font-size: 14px !important; }
        .src .results .item .info ul.meta {
          margin: 0;
          padding: 0;
          list-style: none;
          margin-top: 15px; }
          .src .results .item .info ul.meta li {
            float: left;
            margin-right: 30px;
            font-size: 12px;
            color: #333;
            text-transform: uppercase; }
  .src .container.full .results {
    width: inherit; }
    .src .container.full .results h3.border {
      font-size: 18px;
      width: 100%;
      border-bottom: 1px solid #d9d9d9;
      margin: 0;
      padding: 50px 0 10px; }
    .src .container.full .results .item .info {
      width: 760px; }
    .src .container.full .results .item .question-mark {
      padding-left: 0.5em; }
      .src .container.full .results .item .question-mark:before {
        content: " ";
        background: url("img/icon-sprite.png") no-repeat right;
        background-position: -22px -71px;
        height: 20px;
        width: 20px;
        display: inline-block;
        vertical-align: middle; }
  .src .back-btn {
    display: inline-block;
    margin-bottom: 40px;
    font-size: 14px; }
    .src .back-btn span {
      vertical-align: middle; }
    .src .back-btn img {
      margin-right: 5px; }
  .src ul.pagination {
    margin-bottom: 15px; }
  .src .roadmapWrap {
    width: 100%;
    margin-bottom: 20px; }
    .src .roadmapWrap:before, .src .roadmapWrap:after {
      content: " ";
      display: table; }
    .src .roadmapWrap:after {
      clear: both; }
    .src .roadmapWrap .thumb {
      float: left;
      width: 390px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      overflow: hidden;
      margin-right: 25px; }
    .src .roadmapWrap .info {
      float: left;
      width: 100%; }
      .src .roadmapWrap .info h3 {
        font-weight: 200;
        color: #00457c;
        font-size: 32px;
        margin-top: -10px;
        margin-bottom: 30px; }
      .src .roadmapWrap .info a.btn.green, .src .roadmapWrap .info a.btn.blue-sml {
        margin-top: 10px;
        padding: 8px 11px;
        margin-right: 5px; }
      .src .roadmapWrap .info .meta-head {
        font-size: 18px;
        color: #00457c; }
      .src .roadmapWrap .info .meta-info {
        font-size: 14px; }
  .src .roadMap-cnt hr.short {
    width: 45px;
    margin: 10px 0; }
  .src .roadMap-cnt hr {
    margin: 40px 0; }
  .src .roadMap-cnt input[type="checkbox"].visible {
    visibility: visible;
    position: relative;
    margin-right: 10px; }
  .src .roadMap-cnt h2 {
    font-weight: 200;
    color: #00457c;
    font-size: 24px; }
  .src .form h2 {
    font-size: 22px;
    font-weight: 300;
    color: #000 !important;
    margin-bottom: 20px; }
  .src .form input[type=submit].btn {
    margin-top: 20px; }
  .src .form textarea {
    border: 1px solid #ccc;
    width: 620px;
    height: 120px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    resize: none;
    padding: 10px;
    font-size: 12px;
    font-weight: 300; }
  .src .twelve.form textarea {
    width: 100%; }
  .src .contentArea {
    /* Right Column */ }
    .src .contentArea aside .modWrap {
      font-size: 14px;
      font-weight: 300; }
      .src .contentArea aside .modWrap.blue.resource h2 {
        font-weight: 300;
        margin-bottom: 15px; }
      .src .contentArea aside .modWrap.blue.resource h3 {
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 10px; }
      .src .contentArea aside .modWrap.blue.resource img {
        margin-bottom: 15px; }
      .src .contentArea aside .modWrap.blue.resource p {
        font-size: 14px;
        font-weight: 300; }
      .src .contentArea aside .modWrap.blue.resource .meta {
        text-transform: uppercase;
        font-size: 11px;
        margin-bottom: 10px; }
      .src .contentArea aside .modWrap.blue.resource a.btn {
        margin-top: 10px;
        margin-right: 7px;
        padding: 8px 20px;
        font-size: 12px; }

.src a.doc-type, .full-search a.doc-type {
  float: right;
  border-radius: 5px;
  height: 29px;
  position: relative;
  font-size: 14px;
  padding: 0px 30px 0 0;
  color: white;
  margin-left: 20px; }
  .src a.doc-type.purple, .full-search a.doc-type.purple {
    background: #694bdf;
    background: linear-gradient(#694bdf, #5a4ca3); }
  .src a.doc-type.blue, .full-search a.doc-type.blue {
    background: #50bae9;
    background: linear-gradient(#50bae9, #48a3cd); }
  .src a.doc-type.green, .full-search a.doc-type.green {
    background: #7ccf1f;
    background: linear-gradient(#7ccf1f, #4cc01d); }
  .src a.doc-type:after, .full-search a.doc-type:after {
    content: "";
    height: 29px;
    width: 25px;
    background-image: url(/images/doctype-rightarrow.png);
    position: absolute;
    right: 0px;
    top: 0px;
    margin: 0px; }
  .src a.doc-type div, .full-search a.doc-type div {
    display: inline-block;
    color: white;
    height: 29px; }
    .src a.doc-type div span, .full-search a.doc-type div span {
      display: inline-block;
      margin-top: 5px;
      vertical-align: middle; }
    .src a.doc-type div.lock-src, .full-search a.doc-type div.lock-src {
      border-right: 1px solid white;
      padding-right: 10px;
      padding-left: 10px;
      background-color: #a9a9a9;
      border-radius: 4px 0 0 4px; }
    .src a.doc-type div.doc-type-cnt, .full-search a.doc-type div.doc-type-cnt {
      padding-left: 10px; }
  .src a.doc-type.locked div, .src a.doc-type.unlocked div, .full-search a.doc-type.locked div, .full-search a.doc-type.unlocked div {
    display: inline-block;
    color: white;
    height: 29px; }
    .src a.doc-type.locked div span, .src a.doc-type.unlocked div span, .full-search a.doc-type.locked div span, .full-search a.doc-type.unlocked div span {
      display: inline-block;
      margin-top: -13px;
      vertical-align: middle; }
    .src a.doc-type.locked div.lock-src, .src a.doc-type.unlocked div.lock-src, .full-search a.doc-type.locked div.lock-src, .full-search a.doc-type.unlocked div.lock-src {
      border-right: 1px solid white;
      padding-right: 10px;
      padding-left: 5px;
      background-color: #a9a9a9;
      border-radius: 4px 0 0 4px; }
      .src a.doc-type.locked div.lock-src span, .src a.doc-type.unlocked div.lock-src span, .full-search a.doc-type.locked div.lock-src span, .full-search a.doc-type.unlocked div.lock-src span {
        padding-left: 5px; }
      .src a.doc-type.locked div.lock-src:after, .src a.doc-type.unlocked div.lock-src:after, .full-search a.doc-type.locked div.lock-src:after, .full-search a.doc-type.unlocked div.lock-src:after {
        display: none; }
      .src a.doc-type.locked div.lock-src:before, .src a.doc-type.unlocked div.lock-src:before, .full-search a.doc-type.locked div.lock-src:before, .full-search a.doc-type.unlocked div.lock-src:before {
        content: "";
        display: inline-block;
        width: 20px;
        height: 21px;
        margin-top: 4px;
        margin-left: 5px;
        background-position: center center;
        background-repeat: no-repeat; }
      .src a.doc-type.locked div.lock-src:before, .src a.doc-type.unlocked div.lock-src:before, .full-search a.doc-type.locked div.lock-src:before, .full-search a.doc-type.unlocked div.lock-src:before {
        background-image: url("img/icon-locked-white.png"); }
      .src a.doc-type.locked div.lock-src:before, .src a.doc-type.unlocked div.lock-src:before, .full-search a.doc-type.locked div.lock-src:before, .full-search a.doc-type.unlocked div.lock-src:before {
        background-image: url("img/icon-unlocked-white.png"); }
  .src a.doc-type.locked div.lock-src:before, .full-search a.doc-type.locked div.lock-src:before {
    background-image: url("img/icon-locked-white.png"); }
  .src a.doc-type.unlocked div.lock-src:before, .full-search a.doc-type.unlocked div.lock-src:before {
    background-image: url("img/icon-unlocked-white.png"); }
.src ul.meta, .full-search ul.meta {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 0 !important;
  margin-top: 40px;
  margin-bottom: 20px; }
  .src ul.meta .meta-head, .full-search ul.meta .meta-head {
    font-size: 18px;
    color: #00457c; }
  .src ul.meta li, .full-search ul.meta li {
    margin-right: 50px;
    display: inline-block;
    vertical-align: top; }
  .src ul.meta.tags, .full-search ul.meta.tags {
    margin: 10px 0 0; }
    .src ul.meta.tags li, .full-search ul.meta.tags li {
      margin: 0 5px 5px 0; }
    .src ul.meta.tags a, .full-search ul.meta.tags a {
      border-radius: 2px;
      display: block;
      padding: 2px 10px;
      border: 1px solid #f0f0f0;
      font-size: 14px;
      color: #000; }
      .src ul.meta.tags a:hover, .full-search ul.meta.tags a:hover {
        background-color: #f0f0f0;
        text-decoration: none; }

/**
 * SearchBar
 */
#searchBar {
  background: #002f58;
  width: 100%; }
  #searchBar .container {
    padding: 0; }
    #searchBar .container .searchBox {
      padding: 20px 0 0 15px;
      border: 1px solid #4c6a85;
      border-width: 0 1px;
      float: left;
      width: 100%; }
      #searchBar .container .searchBox input[type=text] {
        float: left;
        width: 420px;
        height: 30px;
        float: left; }
      #searchBar .container .searchBox input[type=submit] {
        margin: 0 0 0 -30px;
        padding: 0;
        width: 30px;
        height: 30px;
        float: left;
        text-indent: -99999px;
        background: url("img/btn-search.png") no-repeat; }
    #searchBar .container .selectWrap {
      border-right: 1px solid #4c6a85;
      float: left;
      text-align: left;
      padding: 19px 19px 10px 19px; }
      #searchBar .container .selectWrap:before, #searchBar .container .selectWrap:after {
        content: " ";
        display: table; }
      #searchBar .container .selectWrap:after {
        clear: both; }
      #searchBar .container .selectWrap span.selectbox {
        width: 210px;
        margin: 0 8px 10px 0px;
        padding: 7px 7px; }
      #searchBar .container .selectWrap .customSelectInner[style] {
        width: 200px !important; }
  #searchBar.full .container.searchBox {
    padding: 75px 0 25px 0; }
    #searchBar.full .container.searchBox .searchBox--title {
      font-size: 38px;
      color: #FFF;
      font-weight: 300;
      margin-bottom: 30px; }
    #searchBar.full .container.searchBox input[type=text] {
      float: left;
      width: 100%;
      height: 40px;
      padding-right: 75px;
      font-size: 16px;
      margin: 0 0 20px 0;
      outline: 0;
      color: #a3a3a3; }
      #searchBar.full .container.searchBox input[type=text]:focus {
        border-radius: 5px 5px 0 0; }
        #searchBar.full .container.searchBox input[type=text]:focus + input {
          border-radius: 0 5px 0 0; }
    #searchBar.full .container.searchBox input[type=submit] {
      float: left;
      margin-left: -70px;
      width: 70px;
      height: 40px;
      text-indent: -9999px;
      -moz-border-radius: 0 5px 5px 0;
      -webkit-border-radius: 0 5px 5px 0;
      border-radius: 0 5px 5px 0;
      outline: none;
      background: url("img/icon-search-btn-blue.png") no-repeat; }
    #searchBar.full .container.searchBox .searchContainer {
      border: 1px solid #CCC;
      border-width: 0 1px 1px 1px;
      background: #FFF;
      position: absolute;
      width: 100%;
      margin-top: 40px;
      padding: 20px 20px 40px 20px;
      -moz-border-radius: 0 0 10px 10px;
      -webkit-border-radius: 0 0 10px 10px;
      border-radius: 0 0 10px 10px;
      z-index: 500; }
      #searchBar.full .container.searchBox .searchContainer:before, #searchBar.full .container.searchBox .searchContainer:after {
        content: " ";
        display: table; }
      #searchBar.full .container.searchBox .searchContainer:after {
        clear: both; }
      #searchBar.full .container.searchBox .searchContainer h4 {
        font-size: 14px;
        font-weight: bold;
        margin: 0 0 5px 0;
        padding: 0;
        color: #333; }
      #searchBar.full .container.searchBox .searchContainer ul {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-left: 10px;
        margin-bottom: 20px; }
        #searchBar.full .container.searchBox .searchContainer ul li {
          font-size: 14px;
          margin-bottom: 2px; }
          #searchBar.full .container.searchBox .searchContainer ul li a {
            color: #333;
            font-weight: normal; }
            #searchBar.full .container.searchBox .searchContainer ul li a:hover {
              text-decoration: none; }
      #searchBar.full .container.searchBox .searchContainer .partsResults ul li a {
        color: #016abe; }
      #searchBar.full .container.searchBox .searchContainer .all-results {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding-top: 30px;
        display: block;
        float: left; }
        #searchBar.full .container.searchBox .searchContainer .all-results a.btn {
          clear: both;
          display: block;
          width: 300px;
          padding-top: 10px;
          padding-bottom: 10px;
          margin: 20px auto 0 auto; }

.searchList {
  width: 100%;
  background: #016abe;
  padding: 40px 0 30px 0; }
  .searchList__table {
    width: 960px;
    margin: auto;
    display: table; }
    .searchList__table--cell {
      display: table-cell;
      color: #FFF;
      padding-right: 30px; }
      .searchList__table--cell .title {
        font-size: 16px;
        margin-bottom: 15px;
        white-space: nowrap; }
      .searchList__table--cell ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        .searchList__table--cell ul li {
          margin-bottom: 5px; }
          .searchList__table--cell ul li a {
            font-size: 13px;
            color: #FFF; }

/**
 * Accordion.scss
 */
dl.accordion {
  margin-top: 40px; }
  dl.accordion .accordionButton {
    color: #016abe;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 18px; }
  dl.accordion .accordionContent {
    padding: 0 0 20px 0;
    margin: 0; }
    dl.accordion .accordionContent p {
      margin: 0;
      padding: 0 0 18px 0; }

.accordionWrap {
  border: 1px solid #d9d9d9;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  margin-top: 7px; }
  .accordionWrap:before, .accordionWrap:after {
    content: " ";
    display: table; }
  .accordionWrap:after {
    clear: both; }
  .accordionWrap dl.accordion {
    margin: 0;
    padding: 0; }
    .accordionWrap dl.accordion .accordionButton {
      color: #016abe;
      font-weight: 700;
      cursor: pointer;
      font-size: 16px;
      margin-bottom: 0; }
      .accordionWrap dl.accordion .accordionButton.main {
        font-size: 22px;
        color: #00457c;
        font-weight: 300;
        padding: 20px 0 20px 50px;
        border-top: 1px solid #d9d9d9;
        background: url("img/icon-accordion-plus.png") no-repeat 20px 25px; }
        .accordionWrap dl.accordion .accordionButton.main.active {
          background: url("img/icon-accordion-minus.png") no-repeat 20px 25px; }
        .accordionWrap dl.accordion .accordionButton.main.first {
          border-top: 0; }
    .accordionWrap dl.accordion .accordionContent {
      padding: 0 20px;
      margin: 0;
      border-top: 1px solid #d9d9d9; }
      .accordionWrap dl.accordion .accordionContent p {
        margin: 0;
        padding: 0 0 18px 0; }
      .accordionWrap dl.accordion .accordionContent dl.innerAccordion .accordionButtonInner, .accordionWrap dl.accordion .accordionContent dl.innerAccordion .accordionButtonTertiary, .accordionWrap dl.accordion .accordionContent dl.innerAccordion .accordionButtonFourth, .accordionWrap dl.accordion .accordionContent dl.tertiaryAccordion .accordionButtonInner, .accordionWrap dl.accordion .accordionContent dl.tertiaryAccordion .accordionButtonTertiary, .accordionWrap dl.accordion .accordionContent dl.tertiaryAccordion .accordionButtonFourth, .accordionWrap dl.accordion .accordionContent dl.fourthAccordion .accordionButtonInner, .accordionWrap dl.accordion .accordionContent dl.fourthAccordion .accordionButtonTertiary, .accordionWrap dl.accordion .accordionContent dl.fourthAccordion .accordionButtonFourth {
        font-weight: 600;
        color: #000;
        font-size: 16px;
        padding: 0 0 5px 30px;
        cursor: pointer;
        margin-bottom: 5px;
        background: url("img/icon-accordion-plus.png") no-repeat 0px 2px; }
        .accordionWrap dl.accordion .accordionContent dl.innerAccordion .accordionButtonInner.active, .accordionWrap dl.accordion .accordionContent dl.innerAccordion .accordionButtonTertiary.active, .accordionWrap dl.accordion .accordionContent dl.innerAccordion .accordionButtonFourth.active, .accordionWrap dl.accordion .accordionContent dl.tertiaryAccordion .accordionButtonInner.active, .accordionWrap dl.accordion .accordionContent dl.tertiaryAccordion .accordionButtonTertiary.active, .accordionWrap dl.accordion .accordionContent dl.tertiaryAccordion .accordionButtonFourth.active, .accordionWrap dl.accordion .accordionContent dl.fourthAccordion .accordionButtonInner.active, .accordionWrap dl.accordion .accordionContent dl.fourthAccordion .accordionButtonTertiary.active, .accordionWrap dl.accordion .accordionContent dl.fourthAccordion .accordionButtonFourth.active {
          background: url("img/icon-accordion-minus.png") no-repeat 0px 2px; }
      .accordionWrap dl.accordion .accordionContent dl.innerAccordion .accordionContentInner, .accordionWrap dl.accordion .accordionContent dl.tertiaryAccordion .accordionContentInner, .accordionWrap dl.accordion .accordionContent dl.fourthAccordion .accordionContentInner {
        margin: 0;
        padding-top: 10px;
        padding-left: 30px;
        padding-bottom: 30px; }
      .accordionWrap dl.accordion .accordionContent dl.innerAccordion .accordionContentTertiary, .accordionWrap dl.accordion .accordionContent dl.tertiaryAccordion .accordionContentTertiary, .accordionWrap dl.accordion .accordionContent dl.fourthAccordion .accordionContentTertiary {
        margin: 0;
        padding-top: 10px;
        padding-left: 30px;
        padding-bottom: 0px; }
      .accordionWrap dl.accordion .accordionContent dl.innerAccordion .accordionContentFourth, .accordionWrap dl.accordion .accordionContent dl.tertiaryAccordion .accordionContentFourth, .accordionWrap dl.accordion .accordionContent dl.fourthAccordion .accordionContentFourth {
        margin: 0;
        padding-top: 10px;
        padding-left: 30px;
        padding-bottom: 10px; }

/**
	 * PRESS | BLOG | LATEST NEWS | MEDIA RELATIONS
	 * Latest Press and Blog (Home Page)
	 * Cascade to About Page with .about
	 */
.module .container {
  /**
   * LinkedIn and YouTube (About Page)
   */ }
  .module .container .boxWrap {
    border: 1px solid #dadada;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
    max-width: 470px;
    text-align: left; }
    .module .container .boxWrap:before, .module .container .boxWrap:after {
      content: " ";
      display: table; }
    .module .container .boxWrap:after {
      clear: both; }
    .module .container .boxWrap.left {
      float: left; }
    .module .container .boxWrap.center {
      float: none;
      margin: 0 auto; }
    .module .container .boxWrap.right {
      float: right; }
    .module .container .boxWrap .boxTitle {
      border-bottom: 1px solid #dadada;
      padding: 15px 18px; }
      .module .container .boxWrap .boxTitle h3 {
        font-size: 22px;
        font-weight: 300;
        color: #00457c;
        margin: 0; }
      .module .container .boxWrap .boxTitle a.seeAll {
        font-size: 12px;
        text-transform: uppercase;
        color: #016abe;
        float: right;
        text-decoration: none;
        font-weight: 700;
        margin-top: 11px; }
      .module .container .boxWrap .boxTitle a.smBtn {
        font-size: 11px;
        text-transform: uppercase;
        color: #FFF;
        float: right;
        text-decoration: none;
        font-weight: 600;
        margin-top: 11px;
        background: #003e72;
        padding: 5px 10px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        margin-top: 5px; }
    .module .container .boxWrap .posts {
      width: 100%;
      padding: 20px 18px;
      float: left;
      width: 100%; }
      .module .container .boxWrap .posts .thumb {
        margin-bottom: 20px; }
      .module .container .boxWrap .posts .date {
        font-size: 11px;
        color: #333;
        text-transform: uppercase;
        margin-bottom: 5px; }
      .module .container .boxWrap .posts h4 {
        margin: 0 0 10px 0;
        padding: 0;
        font-size: 16px; }
        .module .container .boxWrap .posts h4 a {
          font-weight: 600; }
      .module .container .boxWrap .posts a {
        text-decoration: none;
        color: #016abe;
        font-weight: 700; }
        .module .container .boxWrap .posts a:hover {
          text-decoration: underline; }
        .module .container .boxWrap .posts a.more {
          font-weight: 600; }
      .module .container .boxWrap .posts p {
        margin: 0 0 12px 0;
        font-size: 14px; }
      .module .container .boxWrap .posts ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        .module .container .boxWrap .posts ul li {
          margin-bottom: 10px; }
      .module .container .boxWrap .posts ul.postList {
        margin: 0;
        padding: 0;
        list-style: none; }
        .module .container .boxWrap .posts ul.postList > li {
          border-top: 1px solid #d9d9d9;
          margin: 0 0 20px 0;
          padding-top: 20px;
          float: left;
          width: 100%; }
          .module .container .boxWrap .posts ul.postList > li:first-child {
            padding-top: 0;
            border-top: 0; }
          .module .container .boxWrap .posts ul.postList > li .date {
            margin-bottom: 10px; }
          .module .container .boxWrap .posts ul.postList > li a {
            color: #016abe;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none; }
            .module .container .boxWrap .posts ul.postList > li a:hover {
              text-decoration: underline; }
          .module .container .boxWrap .posts ul.postList > li .thumb {
            float: left;
            width: 105px;
            height: auto;
            overflow: hidden;
            margin-right: 10px; }
          .module .container .boxWrap .posts ul.postList > li .post {
            float: left;
            width: 100%;
            max-width: 315px;
            margin-top: -2px;
            position: relative; }
            .module .container .boxWrap .posts ul.postList > li .post p {
              margin: 3px 0 5px 0;
              font-size: 13px; }
            .module .container .boxWrap .posts ul.postList > li .post .authorInfo {
              float: left;
              width: 100%;
              margin-top: 10px; }
              .module .container .boxWrap .posts ul.postList > li .post .authorInfo .photo {
                float: left;
                width: 40px;
                height: 40px;
                overflow: hidden;
                margin-right: 7px; }
              .module .container .boxWrap .posts ul.postList > li .post .authorInfo .author {
                float: left; }
                .module .container .boxWrap .posts ul.postList > li .post .authorInfo .author ul {
                  margin: 0;
                  padding: 0;
                  list-style: none;
                  margin: 5px 0 3px 0;
                  float: left; }
                  .module .container .boxWrap .posts ul.postList > li .post .authorInfo .author ul li {
                    display: inline-block !important;
                    border-left: 1px solid #b6b6b6;
                    margin: 0;
                    padding: 0;
                    width: auto;
                    border-top: 0;
                    line-height: 11px; }
                    .module .container .boxWrap .posts ul.postList > li .post .authorInfo .author ul li:first-child {
                      border-left: 0; }
                      .module .container .boxWrap .posts ul.postList > li .post .authorInfo .author ul li:first-child a {
                        padding-left: 0; }
                    .module .container .boxWrap .posts ul.postList > li .post .authorInfo .author ul li a {
                      font-size: 11px;
                      text-transform: uppercase;
                      padding: 0 10px; }
  .module .container .four .boxWrap {
    max-width: 310px;
    margin-bottom: 30px; }
    .module .container .four .boxWrap .posts ul li .thumb {
      width: 100%;
      overflow: hidden; }
      .module .container .four .boxWrap .posts ul li .thumb img {
        max-width: 100%; }
  .module .container .blueBoxWrap {
    background: #016abe;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
    max-width: 470px;
    height: 195px;
    overflow: hidden;
    text-align: left; }
    .module .container .blueBoxWrap#linkedIn {
      float: left; }
      .module .container .blueBoxWrap#linkedIn .boxTitle {
        border-bottom: 1px solid #3186ca;
        padding: 10px 20px; }
        .module .container .blueBoxWrap#linkedIn .boxTitle h3 {
          font-size: 22px;
          font-weight: 300;
          color: #FFF;
          margin-bottom: 0; }
        .module .container .blueBoxWrap#linkedIn .boxTitle a.smBtn {
          font-size: 11px;
          text-transform: uppercase;
          color: #FFF;
          float: right;
          text-decoration: none;
          font-weight: 600;
          margin-top: 11px;
          background: #003e72;
          padding: 5px 10px;
          -moz-border-radius: 5px;
          -webkit-border-radius: 5px;
          border-radius: 5px;
          margin-top: 5px; }
      .module .container .blueBoxWrap#linkedIn .post {
        padding: 15px 20px;
        width: 100%;
        margin: 0;
        font-size: 14px;
        color: #FFF; }
        .module .container .blueBoxWrap#linkedIn .post h4 {
          font-size: 14px;
          margin: 0 0 10px 0;
          padding: 0; }
        .module .container .blueBoxWrap#linkedIn .post p {
          margin: 0 0 10px 0;
          padding: 0; }
        .module .container .blueBoxWrap#linkedIn .post a {
          color: #FFF;
          text-decoration: none; }
          .module .container .blueBoxWrap#linkedIn .post a.more {
            font-weight: 600; }
          .module .container .blueBoxWrap#linkedIn .post a:hover {
            text-decoration: underline; }
    .module .container .blueBoxWrap#youTube {
      float: right; }
      .module .container .blueBoxWrap#youTube .video {
        float: left;
        width: 245px;
        height: 195px;
        -moz-border-radius: 10px 0 0 10px;
        -webkit-border-radius: 10px 0 0 10px;
        border-radius: 10px 0 0 10px;
        overflow: hidden;
        position: relative; }
        .module .container .blueBoxWrap#youTube .video img {
          width: 245px;
          height: 195px; }
      .module .container .blueBoxWrap#youTube .desc {
        float: left;
        width: 223px;
        overflow: hidden;
        padding: 0;
        text-align: left; }
        .module .container .blueBoxWrap#youTube .desc .boxTitle {
          border-bottom: 1px solid #3186ca;
          padding: 10px 18px; }
          .module .container .blueBoxWrap#youTube .desc .boxTitle h3 {
            font-size: 22px;
            font-weight: 300;
            color: #FFF;
            margin-bottom: 0; }
          .module .container .blueBoxWrap#youTube .desc .boxTitle a.smBtn {
            font-size: 12px;
            text-transform: uppercase;
            color: #FFF;
            float: right;
            text-decoration: none;
            font-weight: 700;
            margin-top: 11px;
            background: #003e72;
            padding: 3px 10px;
            -moz-border-radius: 5px;
            -webkit-border-radius: 5px;
            border-radius: 5px;
            margin-top: 5px; }
        .module .container .blueBoxWrap#youTube .desc .post {
          width: 100%;
          padding: 20px; }
          .module .container .blueBoxWrap#youTube .desc .post a {
            color: #FFF;
            font-weight: 600;
            text-decoration: none;
            font-size: 14px; }
          .module .container .blueBoxWrap#youTube .desc .post ul.meta {
            margin: 0;
            padding: 0;
            list-style: none;
            margin-top: 5px; }
            .module .container .blueBoxWrap#youTube .desc .post ul.meta li {
              display: inline-block;
              text-transform: uppercase;
              font-weight: 300;
              font-size: 11px;
              margin-right: 20px;
              color: #FFF; }
.module.blue .container .boxWrap {
  border: 1px solid #78b0dc; }
  .module.blue .container .boxWrap .boxTitle {
    border-bottom: 1px solid #78b0dc; }
    .module.blue .container .boxWrap .boxTitle h3 {
      color: #FFF; }
    .module.blue .container .boxWrap .boxTitle a.seeAll {
      font-size: 12px;
      text-transform: uppercase;
      color: #FFF;
      float: right;
      text-decoration: none;
      font-weight: 700;
      margin-top: 11px; }
  .module.blue .container .boxWrap .posts h4 {
    color: #FFF;
    font-weight: 400;
    font-size: 18px;
    margin: 0 0 10px 0; }
  .module.blue .container .boxWrap .posts a {
    color: #FFF; }
  .module.blue .container .boxWrap .posts .tweet {
    color: #FFF;
    font-size: 14px;
    font-weight: 400; }
    .module.blue .container .boxWrap .posts .tweet p {
      font-size: 14px;
      font-weight: 400; }
    .module.blue .container .boxWrap .posts .tweet .meta span {
      font-size: 14px;
      font-weight: 300;
      color: #FFF;
      text-transform: none;
      opacity: 0.5; }
.module.blue .container .blueBoxWrap {
  border: 1px solid #78b0dc; }
  .module.blue .container .blueBoxWrap#linkedIn .boxTitle {
    border-bottom: 1px solid #78b0dc; }
  .module.blue .container .blueBoxWrap#youTube .desc .boxTitle {
    border: 1px solid #78b0dc; }

/**
 * Search Page
 */
.searchFilters {
  float: left;
  width: 200px;
  margin-right: 20px;
  border: 1px solid #d9d9d9;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden; }
  .searchFilters .sectionTitle {
    color: #FFF;
    background: #006abf;
    font-size: 16px;
    font-weight: 600;
    min-height: 43px;
    padding: 15px; }
  .searchFilters .filtersOptions {
    width: 100%;
    padding: 13px; }
    .searchFilters .filtersOptions .filterTitle {
      font-weight: 600;
      color: #000;
      font-size: 14px;
      margin-bottom: 8px; }
    .searchFilters .filtersOptions ul {
      margin: 0;
      padding: 0;
      list-style: none;
      border-bottom: 1px solid #d9d9d9;
      padding-bottom: 15px;
      margin-bottom: 15px;
      float: left; }
      .searchFilters .filtersOptions ul li {
        width: 100%;
        display: block;
        float: left; }
    .searchFilters .filtersOptions a.btn {
      font-size: 12px !important;
      padding: 10px 5px;
      width: 100%;
      text-align: center; }
    .searchFilters .filtersOptions label {
      color: #016abe;
      font-weight: 600;
      font-size: 13px; }
    .searchFilters .filtersOptions input[type="checkbox"] {
      visibility: hidden;
      float: left;
      margin-right: -10px; }

.searchResults {
  float: left;
  width: 740px; }
  .searchResults h2 {
    color: #000 !important;
    font-size: 22px;
    float: left;
    font-weight: 400; }
  .searchResults p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1.5em; }
  .searchResults .pagination {
    float: right; }
  .searchResults a {
    color: #016abe;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600; }
    .searchResults a:hover {
      text-decoration: underline; }
    .searchResults a.title {
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 5px;
      display: block; }
  .searchResults .results {
    margin-bottom: 40px; }

.permissions-hover {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
  position: relative;
  top: 10px; }
  .permissions-hover li {
    font-size: 12px;
    color: #333;
    text-transform: uppercase;
    float: left;
    position: relative;
    top: 19px;
    right: 7px; }
  .permissions-hover .blurb-wrap {
    display: none;
    background: url("img/arrow-right-blue.png") no-repeat right bottom;
    padding-right: 6px;
    width: 226px;
    min-height: 80px;
    position: absolute;
    right: 30px;
    bottom: -18px; }
    .permissions-hover .blurb-wrap .blurb {
      padding: 8px 8px 16px 8px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      background: #016abe;
      color: #FFF;
      font-size: 12px;
      min-height: 80px;
      width: 220px;
      float: left; }
      .permissions-hover .blurb-wrap .blurb ul {
        padding: 0; }
      .permissions-hover .blurb-wrap .blurb li {
        display: block;
        color: #fff;
        text-transform: none;
        position: relative;
        top: 0px;
        right: 0px; }
  .permissions-hover li {
    float: left;
    margin-left: 5px;
    list-style-type: none; }
    .permissions-hover li a {
      background: #016abe;
      padding: 3px 8px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      text-transform: uppercase;
      font-size: 12px;
      color: #FFF !important;
      text-decoration: none;
      font-weight: 600; }
      .permissions-hover li a.active {
        background: #00233f; }
      .permissions-hover li a:hover {
        text-decoration: none !important; }

.lt-ie9 .searchFilters .filtersOptions Ul li input[type="checkbox"] {
  margin-right: 0px;
  margin-top: 3px; }

.full-search {
  /* Search Results */
  /* Blog Filters */ }
  .full-search #breadcrumb .container {
    margin-top: 10px; }
    .full-search #breadcrumb .container ul li {
      color: #00233f; }
      .full-search #breadcrumb .container ul li a {
        color: #00233f; }
        .full-search #breadcrumb .container ul li a:hover {
          text-decoration: underline; }
        .full-search #breadcrumb .container ul li a:after {
          background: url("img/arrow_toc.png") no-repeat 0px 0; }
  .full-search #socialBar {
    margin-top: 17px; }
  .full-search .subBanner.content {
    padding-top: 65px;
    background-color: white; }
  .full-search .search-filters {
    width: 100%;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #FFF;
    border: 1px solid #d9d9d9;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    /* Suggestive Search Container */
    /* Filter Options */ }
    .full-search .search-filters .sectionTitle {
      background: #00457C;
      font-size: 36px;
      color: #FFF;
      font-weight: 300;
      padding: 10px 15px 15px;
      border-left: 1px solid #57738c;
      overflow: hidden;
      margin-bottom: 15px;
      -moz-border-radius: 10px 10px 0 0;
      -webkit-border-radius: 10px 10px 0 0;
      border-radius: 10px 10px 0 0; }
    .full-search .search-filters #search-field {
      margin: 10px 0px 0;
      height: 40px;
      position: relative; }
      .full-search .search-filters #search-field #search-clear {
        position: absolute;
        width: 16px;
        height: 16px;
        top: 50%;
        margin-top: -8px;
        left: 14px;
        border: 0;
        transition: all 400ms ease;
        background: url("img/icon-search-clear.png") no-repeat; }
      .full-search .search-filters #search-field #textfield {
        width: calc(100% - 1px);
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        height: 40px;
        margin: 0px;
        padding-left: 30px; }
      .full-search .search-filters #search-field #submit {
        width: 60px;
        height: 40px;
        float: left;
        margin-left: -60px;
        margin-top: 0px;
        padding: 0;
        background-color: #016ABE;
        background-image: url("img/search-transparent.png");
        background-size: 40px 40px;
        background-repeat: no-repeat;
        background-position: center center;
        text-indent: -9999px;
        border: 0;
        -moz-border-radius: 0 10px 10px 0;
        -webkit-border-radius: 0 10px 10px 0;
        border-radius: 0 10px 10px 0; }
        .full-search .search-filters #search-field #submit:hover {
          background-color: #00233f; }
    .full-search .search-filters .searchContainer {
      border: 1px solid #CCC;
      border-width: 0 1px 1px 1px;
      background: #FFF;
      position: absolute;
      width: 100%;
      margin-top: -15px;
      padding: 20px 20px 40px 20px;
      -moz-border-radius: 0 0 10px 10px;
      -webkit-border-radius: 0 0 10px 10px;
      border-radius: 0 0 10px 10px;
      z-index: 500; }
      .full-search .search-filters .searchContainer:before, .full-search .search-filters .searchContainer:after {
        content: " ";
        display: table; }
      .full-search .search-filters .searchContainer:after {
        clear: both; }
      .full-search .search-filters .searchContainer h4 {
        font-size: 14px;
        font-weight: bold;
        margin: 0 0 5px 0;
        padding: 0;
        color: #333; }
      .full-search .search-filters .searchContainer ul {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-left: 10px;
        margin-bottom: 20px; }
        .full-search .search-filters .searchContainer ul li {
          font-size: 14px;
          margin-bottom: 2px; }
          .full-search .search-filters .searchContainer ul li a {
            font-weight: normal; }
      .full-search .search-filters .searchContainer .all-results {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding-top: 30px;
        display: block;
        float: left; }
        .full-search .search-filters .searchContainer .all-results a.btn {
          clear: both;
          display: block;
          width: 300px;
          padding-top: 10px;
          padding-bottom: 10px;
          margin: 20px auto 0 auto; }
      .full-search .search-filters .searchContainer .productResults a, .full-search .search-filters .searchContainer .solutionsResults a, .full-search .search-filters .searchContainer .designIdResults a, .full-search .search-filters .searchContainer .refNbrResults a, .full-search .search-filters .searchContainer .typeResults a {
        color: #000; }
    .full-search .search-filters .filter-options {
      width: 100%;
      background-color: #F8F8F8;
      border-bottom: 1px solid #CACACA; }
      .full-search .search-filters .filter-options.with-drop {
        margin: 15px 0;
        position: relative; }
      .full-search .search-filters .filter-options .applied-filter {
        background-color: #3FBDE8;
        padding: 5px 40px 5px 15px;
        color: white;
        display: block;
        width: 100%;
        margin: 2px 0;
        position: relative;
        overflow: hidden;
        -ms-text-overflow: ellipsis;
        text-overflow: ellipsis;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px; }
        .full-search .search-filters .filter-options .applied-filter:after {
          content: "";
          position: absolute;
          top: 50%;
          right: 0px;
          height: 20px;
          width: 40px;
          margin-top: -10px;
          text-align: center;
          padding: 5px;
          border-left: 1px solid #2db2df;
          background-image: url("img/search-close.png");
          background-size: 15px;
          background-position: center center;
          background-repeat: no-repeat; }
        .full-search .search-filters .filter-options .applied-filter:hover {
          background-color: #016ABE;
          text-decoration: none; }
      .full-search .search-filters .filter-options .filter-name {
        color: #7F7F7F;
        font-size: 22px;
        font-weight: 300;
        display: inline-block;
        padding: 13px 15px 15px;
        width: 190px;
        border-right: 1px solid #CACACA; }
      .full-search .search-filters .filter-options .filter-by {
        display: inline-block;
        vertical-align: top;
        margin-top: 19px;
        width: 764px; }
        .full-search .search-filters .filter-options .filter-by.no-mar {
          margin: 0;
          float: right;
          margin-left: -3px; }
      .full-search .search-filters .filter-options ul {
        list-style-type: none;
        margin: 0px;
        padding: 0px;
        width: 100%; }
        .full-search .search-filters .filter-options ul.thirds-cnt {
          margin-left: -4px;
          width: 770px; }
          .full-search .search-filters .filter-options ul.thirds-cnt li {
            width: 250px;
            float: left;
            margin-left: 9px; }
            .full-search .search-filters .filter-options ul.thirds-cnt li:first-child {
              margin-left: 0px; }
        .full-search .search-filters .filter-options ul li {
          display: inline;
          margin-left: 20px;
          color: #7F7F7F; }
          .full-search .search-filters .filter-options ul li.barred {
            border-right: 1px solid #CACACA;
            padding: 10px 15px 10px 0; }
          .full-search .search-filters .filter-options ul li.login {
            font-size: 12px; }
            .full-search .search-filters .filter-options ul li.login img {
              height: 15px;
              width: auto; }
          .full-search .search-filters .filter-options ul li input[type="checkbox"] + label:before {
            background: url("img/checkbox-blue.png") left top no-repeat; }
          .full-search .search-filters .filter-options ul li input[type="checkbox"]:checked + label:before {
            background: url("img/checkbox-blue.png") left -19px no-repeat; }
          .full-search .search-filters .filter-options ul li input[type="checkbox"]:indeterminate + label:before {
            background: url("img/checkbox-blue.png") left -19px no-repeat; }
        .full-search .search-filters .filter-options ul .filter-btn {
          width: 100%;
          display: block;
          background-color: #ABABAB;
          color: white;
          padding: 20px 12px;
          position: relative; }
          .full-search .search-filters .filter-options ul .filter-btn:after {
            content: "";
            font-size: 20px;
            position: absolute;
            top: 0px;
            right: 0px;
            width: 40px;
            height: 59px;
            border-left: 1px solid #9a9a9a;
            padding: 16px 12px;
            background-image: url(img/arrow-down-menu-white.png);
            background-repeat: no-repeat;
            background-position: center center; }
          .full-search .search-filters .filter-options ul .filter-btn.active:after {
            border-left: 1px solid #2db2df;
            background-image: url(img/arrow-up-menu-white.png); }
          .full-search .search-filters .filter-options ul .filter-btn:hover, .full-search .search-filters .filter-options ul .filter-btn.active {
            text-decoration: none;
            background-color: #3FBDE8; }
            .full-search .search-filters .filter-options ul .filter-btn:hover:after, .full-search .search-filters .filter-options ul .filter-btn.active:after {
              border-left: 1px solid #2db2df; }
          .full-search .search-filters .filter-options ul .filter-btn.selected {
            text-decoration: none;
            background-color: #3FBDE8; }
            .full-search .search-filters .filter-options ul .filter-btn.selected:after {
              border-left: 1px solid #2db2df; }
      .full-search .search-filters .filter-options .dropdown {
        position: absolute;
        width: 100%;
        top: 60px;
        left: 0px;
        background-color: #3FBDE8;
        display: none;
        z-index: 110; }
        .full-search .search-filters .filter-options .dropdown.active {
          display: block; }
        .full-search .search-filters .filter-options .dropdown .drop-head {
          text-align: center;
          padding: 10px 0;
          margin: 0 40px 10px;
          border-bottom: 1px solid #2db3df; }
          .full-search .search-filters .filter-options .dropdown .drop-head.foot {
            border-bottom: 0px;
            border-top: 1px solid #2db3df;
            margin: 0 40px 0; }
          .full-search .search-filters .filter-options .dropdown .drop-head .btn {
            margin: 0 auto;
            background-color: white;
            padding: 5px 15px;
            color: #3FBDE8 !important; }
            .full-search .search-filters .filter-options .dropdown .drop-head .btn:hover, .full-search .search-filters .filter-options .dropdown .drop-head .btn:active {
              color: white !important;
              background-color: #016ABE; }
          .full-search .search-filters .filter-options .dropdown .drop-head .close-drop {
            display: block;
            position: absolute;
            top: 10px;
            right: 10px;
            height: 15px;
            width: 15px;
            background-image: url("img/search-close.png");
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover; }
        .full-search .search-filters .filter-options .dropdown .filters-area {
          text-align: center;
          padding: 0 35px 20px;
          text-align: left; }
          .full-search .search-filters .filter-options .dropdown .filters-area .filters-ul {
            margin: 0;
            padding: 5px 0 0 10px; }
            .full-search .search-filters .filter-options .dropdown .filters-area .filters-ul .filters-ul {
              display: none; }
            .full-search .search-filters .filter-options .dropdown .filters-area .filters-ul .filters-ul.show {
              display: block; }
            .full-search .search-filters .filter-options .dropdown .filters-area .filters-ul li {
              margin: 0;
              padding: 2px 0;
              width: 100%;
              vertical-align: middle;
              color: white;
              font-size: 14px; }
              .full-search .search-filters .filter-options .dropdown .filters-area .filters-ul li label {
                vertical-align: bottom; }
              .full-search .search-filters .filter-options .dropdown .filters-area .filters-ul li.dropped > .plus:before {
                content: "-" !important; }
              .full-search .search-filters .filter-options .dropdown .filters-area .filters-ul li .plus {
                display: none; }
              .full-search .search-filters .filter-options .dropdown .filters-area .filters-ul li.dropable > .plus {
                display: block;
                float: right;
                color: white;
                height: 15px;
                width: 15px;
                font-size: 16px;
                position: relative; }
                .full-search .search-filters .filter-options .dropdown .filters-area .filters-ul li.dropable > .plus:before {
                  content: "+";
                  font-size: 16px;
                  display: block;
                  height: 100%;
                  width: 100%;
                  position: absolute;
                  left: 0px;
                  top: 0px;
                  text-align: center; }
                .full-search .search-filters .filter-options .dropdown .filters-area .filters-ul li.dropable > .plus:hover {
                  color: #00233f;
                  text-decoration: none; }
        .full-search .search-filters .filter-options .dropdown input[type="checkbox"] + label:before {
          width: 15px;
          height: 15px;
          margin: -1px 8px 0 0;
          background: url("img/checkbox-dropdown.png") left top no-repeat; }
        .full-search .search-filters .filter-options .dropdown input[type="checkbox"]:checked + label:before {
          background: url("img/checkbox-dropdown.png") left -15px no-repeat !important; }
        .full-search .search-filters .filter-options .dropdown input[type="checkbox"]:indeterminate + label:before {
          background: url("img/checkbox-dropdown.png") left -30px no-repeat !important; }
      .full-search .search-filters .filter-options input[type="checkbox"]:disabled + label {
        opacity: 0.5; }
  .full-search .third {
    width: 32.311%;
    border-right: 1px solid #2db3df;
    padding-right: 10px;
    margin-right: 10px;
    color: white;
    display: table-cell;
    padding-left: 10px;
    position: relative; }
    .full-search .third:last-child {
      margin-right: 0;
      border: 0; }
    .full-search .third p {
      text-align: left;
      color: white;
      margin: 5px 0 0;
      padding: 0 0 8px;
      display: inline-block; }
    .full-search .third > .filters-ul {
      border-top: 1px solid white; }
    .full-search .third .checkToggle {
      display: inline-block;
      position: absolute;
      right: 2px;
      top: 4px; }
  .full-search .fourth {
    width: 24%;
    border-right: 1px solid #2db3df;
    padding-right: 10px;
    margin-right: 10px;
    color: white;
    display: table-cell;
    padding-left: 10px;
    position: relative; }
    .full-search .fourth:last-child {
      margin-right: 0;
      border: 0; }
    .full-search .fourth p {
      text-align: left;
      color: white;
      margin: 5px 0 0;
      padding: 0 0 8px;
      display: inline-block; }
    .full-search .fourth > .filters-ul {
      border-top: 1px solid white; }
    .full-search .fourth .checkToggle {
      display: inline-block;
      position: absolute;
      right: 2px;
      top: 4px; }
  .full-search .suggested-tags {
    padding: 0 0 13px 0;
    margin: 0 0 25px 0;
    border-bottom: 1px solid #ebebeb; }
    .full-search .suggested-tags h2 {
      font-size: 22px;
      color: #000 !important;
      font-weight: 400;
      margin-bottom: 1em; }
    .full-search .suggested-tags .search-tags {
      margin: 0;
      padding: 0;
      display: table;
      width: 100%; }
      .full-search .suggested-tags .search-tags li {
        list-style: none;
        width: 25%;
        float: left;
        margin-bottom: 12px; }
        .full-search .suggested-tags .search-tags li a {
          padding: 5px 10px;
          border-radius: 3px;
          color: #FFF;
          background-color: #016abe;
          display: inline-block; }
  .full-search .search-results {
    /* Results Stats */
    /* Results View Options */
    /* Search Results Modules */ }
    .full-search .search-results .search-results--stats:before, .full-search .search-results .search-results--stats:after {
      content: " ";
      display: table; }
    .full-search .search-results .search-results--stats:after {
      clear: both; }
    .full-search .search-results .search-results--stats h2 {
      font-weight: 400;
      color: black;
      float: left;
      margin-right: 20px; }
    .full-search .search-results .search-results--stats .stats {
      color: #000;
      margin-top: 7px;
      display: inline-block; }
      .full-search .search-results .search-results--stats .stats span {
        margin-right: 10px; }
      .full-search .search-results .search-results--stats .stats input[type="checkbox"] + label:before {
        background: url("img/checkbox-blue.png") left top no-repeat; }
      .full-search .search-results .search-results--stats .stats input[type="checkbox"]:checked + label:before {
        background: url("img/checkbox-blue.png") left -19px no-repeat; }
    .full-search .search-results .results-options {
      float: right; }
      .full-search .search-results .results-options .view, .full-search .search-results .results-options .sort {
        display: inline-block;
        margin-left: 15px;
        margin-top: 5px;
        outline: none; }
    .full-search .search-results .view-options {
      display: inline-block;
      height: 15px;
      width: 15px;
      background-image: url("img/searchview-sprite.png");
      background-size: 30px 30px;
      float: right;
      margin-left: 7px;
      margin-top: 2px; }
      .full-search .search-results .view-options.list {
        background-position: left top; }
      .full-search .search-results .view-options.grid {
        background-position: right top; }
      .full-search .search-results .view-options.active, .full-search .search-results .view-options:hover {
        outline: none; }
        .full-search .search-results .view-options.active.list, .full-search .search-results .view-options:hover.list {
          background-position: left bottom; }
        .full-search .search-results .view-options.active.grid, .full-search .search-results .view-options:hover.grid {
          background-position: right bottom; }
    .full-search .search-results .resource-wrap {
      margin-top: 0; }
  .full-search .left {
    float: left; }
  .full-search .right {
    float: right; }
  .full-search span.selectbox {
    font-size: 12px;
    width: 120px;
    background-color: white;
    color: #7F7F7F;
    padding: 2px 7px;
    border: 1px solid #7F7F7F;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    margin: 0 0 10px 5px; }
    .full-search span.selectbox .customSelectInner[style] {
      background: url("img/up-down-arrows-black.png") no-repeat;
      background-position: center right;
      background-size: 7px 10px;
      padding-right: 40px;
      height: 13px;
      width: 105px !important; }
  .full-search.blogFilterBar {
    border-bottom: 1px solid #d9d9d9;
    background: #ebebeb; }
    .full-search.blogFilterBar .container {
      margin: 0 auto; }
      .full-search.blogFilterBar .container .search-filters {
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        border: 0;
        background: none;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0; }
        .full-search.blogFilterBar .container .search-filters .filter-options {
          border-bottom: 0;
          background: none; }
          .full-search.blogFilterBar .container .search-filters .filter-options:before, .full-search.blogFilterBar .container .search-filters .filter-options:after {
            content: " ";
            display: table; }
          .full-search.blogFilterBar .container .search-filters .filter-options:after {
            clear: both; }
          .full-search.blogFilterBar .container .search-filters .filter-options.with-drop {
            padding-top: 0;
            margin-top: 0;
            padding-bottom: 0;
            margin-bottom: 0; }
          .full-search.blogFilterBar .container .search-filters .filter-options .filter-name {
            width: 120px;
            font-size: 20px; }
          .full-search.blogFilterBar .container .search-filters .filter-options .filter-by {
            float: none; }
            .full-search.blogFilterBar .container .search-filters .filter-options .filter-by ul.thirds-cnt {
              width: 870px; }
              .full-search.blogFilterBar .container .search-filters .filter-options .filter-by ul.thirds-cnt:before, .full-search.blogFilterBar .container .search-filters .filter-options .filter-by ul.thirds-cnt:after {
                content: " ";
                display: table; }
              .full-search.blogFilterBar .container .search-filters .filter-options .filter-by ul.thirds-cnt:after {
                clear: both; }
              .full-search.blogFilterBar .container .search-filters .filter-options .filter-by ul.thirds-cnt > li {
                width: 280px;
                font-size: 14px; }
                .full-search.blogFilterBar .container .search-filters .filter-options .filter-by ul.thirds-cnt > li:first-child {
                  margin-left: 0px; }
                .full-search.blogFilterBar .container .search-filters .filter-options .filter-by ul.thirds-cnt > li.searchPosts {
                  width: 250px;
                  padding-top: 10px; }
                  .full-search.blogFilterBar .container .search-filters .filter-options .filter-by ul.thirds-cnt > li.searchPosts input[type=text] {
                    width: 214px;
                    height: 36px;
                    display: inline-block;
                    margin: 0;
                    -moz-border-radius: 5px 0 0 5px;
                    -webkit-border-radius: 5px 0 0 5px;
                    border-radius: 5px 0 0 5px; }
                  .full-search.blogFilterBar .container .search-filters .filter-options .filter-by ul.thirds-cnt > li.searchPosts input[type=submit] {
                    width: 36px;
                    height: 36px;
                    display: inline-block;
                    background: url("img/icon-search-btn-blue.png") no-repeat center center #016abe;
                    margin: 0;
                    padding: 0;
                    text-indent: -9999px;
                    overflow: hidden;
                    -moz-border-radius: 0 5px 5px 0;
                    -webkit-border-radius: 0 5px 5px 0;
                    border-radius: 0 5px 5px 0; }

/**
 * Parts Page
 */
.container {
  /* Specs Layout */ }
  .container .partsPage {
    margin-bottom: -20px; }
    .container .partsPage .partsTable {
      margin-bottom: 50px; }
    .container .partsPage hr {
      clear: both;
      margin: 50px 0 40px 0; }
  .container .specs {
    margin-bottom: -30px; }
    .container .specs .tableTitle {
      font-weight: 300;
      color: #000;
      font-size: 22px;
      text-align: left;
      margin-bottom: -10px;
      padding-left: 3px; }
      .container .specs .tableTitle span {
        font-weight: 400; }
    .container .specs a.btn {
      margin-top: 10px;
      padding: 5px 15px;
      font-size: 12px; }

/**
 * Blog
 */
.byChannel {
  width: 100%; }
  .byChannel:before, .byChannel:after {
    content: " ";
    display: table; }
  .byChannel:after {
    clear: both; }
  .byChannel .item {
    float: left;
    width: 150px;
    margin-left: 12px; }
    .byChannel .item .thumb {
      width: 100%;
      height: 100px;
      margin-bottom: 10px;
      background: #FFF;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      overflow: hidden; }
    .byChannel .item.first {
      margin-left: 0; }
    .byChannel .item h3 {
      color: #FFF !important;
      font-weight: 300 !important; }

/**
 * Blog Filter
 */
/*
.blogFilterBar {
	width: 100%;
	height: 45px;
	border-bottom: 1px solid #ccc;
	background: #ebebeb;
	@include cf;
	.container {
		position: relative;
		ul.blogFilter {
			@include listReset;
			font-size: 0;
			display: table;
			width: 100%;
			//background: aquamarine;
			> li {
				font-size: 14px;
				display: table-cell;
				height: 45px;
				vertical-align: middle;
				padding-right: 10px;
				&.title {
					font-size: 20px;
					color: #7f7f7f;
					padding-right: 20px;
				}
				> a {
					background: #ababab;
					padding-left: 15px;
					height: 45px;
					display: table-cell;
					color: #FFF;
					font-size: 14px;
					vertical-align: middle;
					text-decoration: none;
					outline: none;
					&:after {
						content: "";
						border-left: 1px solid #9a9a9a;
						width: 45px;
						height: 45px;
						margin-left: 20px;
						display: inline-block;
						vertical-align: middle;
						background: url('img/arrow-down-menu-white.png') no-repeat center center;
					}
					&.open {
						background: #3fbde8;
						&:after {
							border-left: 1px solid #FFF;
							background: url('img/arrow-up-menu-white.png') no-repeat center center;
						}
					}
				}
				input[type=text] {
					width: 219px;
					height: 36px;
					display: inline-block;
					margin: 0;
					@include rounded(5px 0 0 5px);
				}
				input[type=submit] {
					width: 36px;
					height: 36px;
					display: inline-block;
					background: url('img/icon-search-btn-blue.png') no-repeat center center #016abe;
					margin: 0;
					padding: 0;
					text-indent: -9999px;
					overflow: hidden;
					@include rounded(0 5px 5px 0);
				}
			}

			//Dropdown Menu
			.drop {
				background: #3fbde8;
				width: 100%;
				position: absolute;
				z-index: 100;
				top: 44px;
				left: 0;
				text-align: left;
				display: none;
				@include rounded(0 0 5px 5px);
				border-top: 1px solid #FFF !important;
				&.show {
					display: block;
				}
				ul.byTags {
					@include cf;
					text-align: center;
					margin-right: 30px;
					> li {
						text-align: center;
						display: inline-block;
						padding: 5px 8px;
						a {
							color: #FFF;
							font-size: 12px;
							height: auto;
							&.tag1 {
								font-size: 14px;
							}
							&.tag2 {
								font-size: 16px;
							}
							&.tag3 {
								font-size: 18px;
							}
							&.tag4 {
								font-size: 20px;
							}
							&.tag5 {
								font-size: 22px;
							}
							&.tag6 {
								font-size: 24px;
							}
							&:after {
								display: none;
							}
						}
					}
				}
				ul.byDate {
					@include cf;
					text-align: center;
					margin-right: 30px;
					li {
						text-align: center;
						display: inline-block;
						padding: 5px 8px;
						a {
							color: #FFF;
							font-size: 12px;
						}
					}
				}
			}

		}
		--
		ul.blogFilter {
			@include listReset;
			font-size: 0;
			border-right: 1px solid #57738c;
			> li {
				display: inline-block;
				font-size: 14px;
				width: 235px;
				padding-left: 10px;
				padding-right: 10px;
				border-left: 1px solid #57738c;
				height: 80px;
				text-align: center;
				vertical-align: top;
				&.searchBlog {
					width: 250px;
					.searchBlogWrap {
						width: 197px;
						margin: 0 auto;
						margin-top: 23px;
					}
					input[type=text]{
						width: 197px;
						margin: 0;
						height: 30px;
						padding-right: 30px;
					}
					input[type=submit]{
						width: 30px;
						height: 30px;
						float: left;
						margin-left: -30px;
						padding: 0;
						background: url('img/btn-search.png') no-repeat;
						text-indent: -9999px;
						border: 0;
						margin-top: 0px;
					}
				}
				> a {
					color: #FFF;
					text-decoration: none;
					display: block;
					padding-top: 13px;
					padding-bottom: 13px;
					height: 100%;
					.filterTitle {
						display: block;
						font-size: 18px;
						//margin-bottom: 10px;
						&:after {
							display: inline-block;
							content: "";
							margin-left: 10px;
							width: 13px;
							height: 8px;
							background: url("img/up-down-arrows.png") no-repeat right -8px;
						}
					}
					&.open {
						.filterTitle {
							&:after {
								display: inline-block;
								content: "";
								margin-left: 10px;
								width: 13px;
								height: 8px;
								background: url("img/up-down-arrows.png") no-repeat right 0;
							}
						}
					}
					.desc {
						font-size: 12px;
					}
				}
				.drop {
					background: #002f58;
					width: 100%;
					position: absolute;
					z-index: 100;
					top: 80px;
					left: 0;
					text-align: left;
					display: none;
					@include rounded(0 0 5px 5px);
					border-top: 1px solid #57738c !important;
					&.show {
						display: block;
					}
					ul.byChannel {
						@include listReset;
						li {
							float: left;
							width: 240px;
							text-align: center;
							a {
								display: block;
								color: #FFF;
								text-decoration: none;
								padding: 20px 10px;
								&:hover {
									text-decoration: underline;
								}
							}
						}
					}
					ul.byTags {
						@include cf;
						text-align: center;
						margin-right: 30px;
						li {
							text-align: center;
							display: inline-block;
							padding: 5px 8px;
							a {
								color: #FFF;
								font-size: 12px;
								&.tag1 {
									font-size: 14px;
								}
								&.tag2 {
									font-size: 16px;
								}
								&.tag3 {
									font-size: 18px;
								}
								&.tag4 {
									font-size: 20px;
								}
								&.tag5 {
									font-size: 22px;
								}
								&.tag6 {
									font-size: 24px;
								}
							}
						}
					}
					ul.byDate {
						@include cf;
						text-align: center;
						margin-right: 30px;
						li {
							text-align: center;
							display: inline-block;
							padding: 5px 8px;
							a {
								color: #FFF;
								font-size: 12px;
							}
						}
					}					
				}
			}
		}
		--
	}
} */
/**
 * Featured Posts
 */
.featuredPostsGrid {
  width: 100%; }
  .featuredPostsGrid:before, .featuredPostsGrid:after {
    content: " ";
    display: table; }
  .featuredPostsGrid:after {
    clear: both; }
  .featuredPostsGrid .post {
    border: 1px solid #d9d9d9;
    width: 308px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #FFF;
    float: left;
    margin-left: 16px;
    margin-bottom: 15px;
    padding: 17px;
    text-align: left;
    overflow: hidden; }
    .featuredPostsGrid .post a {
      color: #016abe;
      text-decoration: none;
      font-weight: 600; }
      .featuredPostsGrid .post a:hover {
        text-decoration: underline; }
    .featuredPostsGrid .post.main {
      width: 635px;
      margin-left: 0; }
    .featuredPostsGrid .post .featuredThumb {
      float: left;
      width: 300px;
      overflow: hidden;
      margin-right: 15px;
      padding-top: 5px; }
    .featuredPostsGrid .post .bodyContent {
      float: left;
      display: inline-block;
      width: 275px;
      height: 240px; }
      .featuredPostsGrid .post .bodyContent p {
        margin: 0 0 10px 0; }
    .featuredPostsGrid .post.full {
      width: 100%;
      margin-left: 0;
      margin-bottom: 0;
      padding: 0;
      display: table; }
      .featuredPostsGrid .post.full .tag {
        background: #00233f;
        width: 160px;
        height: 163px;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        color: #FFF;
        font-size: 22px;
        padding-right: 12px; }
      .featuredPostsGrid .post.full .popPost {
        display: inline-block;
        margin-left: 19px;
        width: 380px;
        margin: 22px 0 0 13px; }
        .featuredPostsGrid .post.full .popPost .popPostThumb {
          float: left;
          width: 120px;
          height: 120px;
          margin-right: 15px; }
        .featuredPostsGrid .post.full .popPost .desc {
          float: left;
          width: 245px;
          text-align: left;
          margin: 0;
          padding: 0; }
          .featuredPostsGrid .post.full .popPost .desc h3 {
            font-size: 14px;
            margin: 0 0 5px 0; }
          .featuredPostsGrid .post.full .popPost .desc .bodyContent {
            width: 100%;
            height: 70px;
            font-size: 14px;
            padding: 0; }
            .featuredPostsGrid .post.full .popPost .desc .bodyContent p {
              font-size: 14px;
              margin: 0; }
      .featuredPostsGrid .post.full .meta {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 0;
        font-size: 12px !important; }

/**
 * Recent Posts
 */
.recentPostsGrid {
  width: 100%;
  float: left; }
  .recentPostsGrid .post {
    float: left;
    width: 310px;
    margin: 0 0 15px 15px;
    padding: 15px 17px;
    text-align: left;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    /*
    .meta {
    	border-top: 1px solid #d9d9d9;
    	//margin-top: 18px;
    	display: inline-block;
    	vertical-align: middle;
    	width: 100%;
    	padding-top: 20px;
    	.thumb {
    		width: 40px;
    		height: 40px;
    		display: inline-block;
    		margin-right: 10px;
    		vertical-align: middle;
    	}
    	.info {
    		display: inline-block;
    		vertical-align: middle;
    		ul {
    			@include listReset;
    			float: left;
    			margin-bottom: 3px;
    			li {
    				float: left;
    				border-left: 1px solid #d9d9d9;
    				margin: 0 10px 0 0;
    				padding: 0 0 0 10px;
    				line-height: 14px;
    				&:first-child {
    					border-left: 0;
    					padding-left: 0;
    				}
    				a {
    					color: $linkBlue;
    				}
    			}
    		}
    		.date {
    			clear: both;
    			display: block;
    			font-size: 12px;
    			margin-top: 15px;
    		}
    	}
    }
    */ }
    .recentPostsGrid .post.first {
      margin-left: 0; }
    .recentPostsGrid .post a {
      text-decoration: none;
      color: #016abe;
      font-weight: 600; }
      .recentPostsGrid .post a:hover {
        text-decoration: underline; }
    .recentPostsGrid .post .bodyContent {
      width: 100%;
      height: 330px;
      overflow: hidden; }
      .recentPostsGrid .post .bodyContent:before, .recentPostsGrid .post .bodyContent:after {
        content: " ";
        display: table; }
      .recentPostsGrid .post .bodyContent:after {
        clear: both; }
      .recentPostsGrid .post .bodyContent h3 {
        font-size: 16px;
        margin-bottom: 10px; }
      .recentPostsGrid .post .bodyContent img {
        margin-bottom: 18px;
        max-width: 100%; }
      .recentPostsGrid .post .bodyContent p {
        font-size: 14px;
        margin: 0 0 10px 0;
        display: inline-block; }

.recentPostsGrid .post .meta {
  border-top: 1px solid #d9d9d9;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding-top: 20px; }
  .recentPostsGrid .post .meta .thumb {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle; }
  .recentPostsGrid .post .meta .info {
    display: inline-block;
    vertical-align: middle;
    width: 220px; }
    .recentPostsGrid .post .meta .info ul {
      margin: 0;
      padding: 0;
      list-style: none;
      float: left;
      margin-bottom: 3px;
      height: 15px;
      overflow: hidden; }
      .recentPostsGrid .post .meta .info ul li {
        float: left;
        border-left: 1px solid #d9d9d9;
        margin: 0 10px 0 0;
        padding: 0 0 0 10px;
        line-height: 14px; }
        .recentPostsGrid .post .meta .info ul li:first-child {
          border-left: 0;
          padding-left: 0; }
        .recentPostsGrid .post .meta .info ul li a {
          color: #016abe; }
    .recentPostsGrid .post .meta .info .date {
      clear: both;
      display: block;
      font-size: 12px;
      margin-top: 15px; }

.featuredPostsGrid .post .meta {
  border-top: 1px solid #d9d9d9;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding-top: 20px; }
  .featuredPostsGrid .post .meta .thumb {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle; }
  .featuredPostsGrid .post .meta .info {
    display: inline-block;
    vertical-align: middle;
    width: 180px; }
    .featuredPostsGrid .post .meta .info ul {
      margin: 0;
      padding: 0;
      list-style: none;
      float: left;
      margin-bottom: 3px;
      height: 15px;
      overflow: hidden; }
      .featuredPostsGrid .post .meta .info ul li {
        float: left;
        border-left: 1px solid #d9d9d9;
        margin: 0 10px 0 0;
        padding: 0 0 0 10px;
        line-height: 14px; }
        .featuredPostsGrid .post .meta .info ul li:first-child {
          border-left: 0;
          padding-left: 0; }
        .featuredPostsGrid .post .meta .info ul li a {
          color: #016abe; }
    .featuredPostsGrid .post .meta .info .date {
      clear: both;
      display: block;
      font-size: 12px;
      margin-top: 15px; }

.featuredPostsGrid .post .meta {
  margin-top: 15px; }

.featuredPostsGrid .post.full .popPost {
  display: inline-block;
  margin-left: 19px;
  width: 380px;
  margin: 22px 0 0 13px; }

.featuredPostsGrid .post.full .popPost .popPostThumb {
  float: left;
  width: 120px;
  height: 120px;
  margin-right: 15px; }

.featuredPostsGrid .post.full .popPost .desc {
  float: left;
  width: 245px;
  text-align: left;
  margin: 0;
  padding: 0; }

.featuredPostsGrid .post.full .popPost .desc h3 {
  font-size: 14px;
  margin: 0 0 5px 0; }

.featuredPostsGrid .post.full .popPost .desc .bodyContent {
  width: 100%;
  height: 70px;
  font-size: 14px;
  padding: 0; }

.featuredPostsGrid .post.full .popPost .desc .bodyContent p {
  font-size: 14px;
  margin: 0;
  height: 40px;
  overflow: hidden; }

.featuredPostsGrid .authorPic {
  float: left;
  width: 160px; }
  .featuredPostsGrid .authorPic img {
    width: 140px;
    height: 140px;
    float: left;
    margin: 4px 30px 0 0; }

.featuredPostsGrid .authorBio {
  float: left;
  width: 700px; }

.featuredPostsGrid .authorBio p {
  text-align: left; }

/* Post Detail Page */
.posts ul.meta {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 0 !important;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-width: 1px 0; }
  .posts ul.meta li {
    display: inline-block;
    border-right: 1px solid #ccc;
    clear: both;
    padding-right: 10px;
    margin-top: 9px;
    margin-left: 0;
    margin-right: 10px;
    font-size: 14px;
    line-height: 14px; }
    .posts ul.meta li:last-child {
      border-right: 0; }
    .posts ul.meta li a {
      color: #016abe;
      font-weight: 400;
      padding-top: 10px; }
.posts a {
  font-weight: 600; }
  .posts a.enlarge {
    font-size: 12px;
    text-align: center;
    display: block; }
.posts p {
  line-height: 1.5em;
  margin: 20px 0 20px 0 !important; }
.posts .author {
  font-style: italic;
  margin-bottom: 20px; }
.posts .about {
  margin-top: 50px;
  font-style: italic; }
  .posts .about img.authorPic {
    height: 130px;
    width: 130px;
    float: left;
    margin-right: 20px; }
  .posts .about h3 {
    color: #000;
    font-style: normal; }
.posts .tags {
  margin-top: 50px; }
.posts .foot {
  margin-top: 50px;
  border: 1px solid #ccc;
  border-width: 1px 0;
  padding: 10px 0; }

.blog-comments {
  margin: 30px 0 10px; }
  .blog-comments .comments-cnt {
    margin: 0 !important;
    list-style-type: none;
    border-bottom: 1px solid #ccc; }
    .blog-comments .comments-cnt .comment {
      border-bottom: 1px solid #ccc; }
      .blog-comments .comments-cnt .comment:last-child {
        border-bottom: 0px; }

.comment-field input, .comment-field textarea {
  width: 100% !important;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px; }

/* User Account Layouts */
#myAccount {
  width: 960px;
  margin: 0 auto;
  padding-bottom: 50px;
  /* Login Screen */
  /* Messages */
  /* My Folders */
  /* My Workspace */ }
  #myAccount #login {
    width: 100%;
    font-size: 14px;
    color: #000;
    padding: 0px 0 120px 0; }
    #myAccount #login h2 {
      font-size: 22px;
      color: #002f58;
      line-height: 22px;
      margin-bottom: 20px;
      font-weight: 300; }
    #myAccount #login label {
      font-size: 14px;
      margin-top: 5px; }
    #myAccount #login input[type=email],
    #myAccount #login input[type=password] {
      margin-left: 0;
      margin-bottom: 10px;
      width: 320px;
      clear: both; }
    #myAccount #login input[type=checkbox] {
      margin-top: 5px; }
    #myAccount #login input[type=submit] {
      margin-top: 15px;
      padding: 12px 25px; }
    #myAccount #login ul.accountOptions {
      margin: 0;
      padding: 0;
      list-style: none;
      margin-top: 15px; }
      #myAccount #login ul.accountOptions li {
        clear: both;
        font-size: 14px;
        margin-bottom: 8px; }
        #myAccount #login ul.accountOptions li a {
          font-weight: bold; }
  #myAccount .contentCol .myAccount-box {
    width: 238px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    padding: 25px 15px;
    font-size: 14px;
    margin-left: 13px;
    margin-bottom: 13px;
    float: left; }
    #myAccount .contentCol .myAccount-box.first {
      margin-left: 0; }
    #myAccount .contentCol .myAccount-box a {
      color: #016abe;
      text-decoration: none;
      font-weight: 600; }
      #myAccount .contentCol .myAccount-box a:hover {
        text-decoration: underline; }
    #myAccount .contentCol .myAccount-box h3 {
      margin: 0 0 20px 0;
      padding: 0;
      color: #016abe; }
    #myAccount .contentCol .myAccount-box p {
      font-size: 13px;
      height: 90px; }
  #myAccount .contentCol .accountInfo hr {
    margin-top: 40px;
    margin-bottom: 40px;
    display: inline-block;
    width: 100%;
    clear: both;
    position: relative; }
    #myAccount .contentCol .accountInfo hr:before, #myAccount .contentCol .accountInfo hr:after {
      content: " ";
      display: table; }
    #myAccount .contentCol .accountInfo hr:after {
      clear: both; }
  #myAccount .contentCol .accountInfo h3 {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 15px 0;
    padding: 0;
    display: block; }
  #myAccount .contentCol .accountInfo .innerCol {
    float: left; }
    #myAccount .contentCol .accountInfo .innerCol.three {
      width: 246px; }
    #myAccount .contentCol .accountInfo .innerCol label {
      margin-bottom: 8px; }
  #myAccount .contentCol .accountInfo label {
    float: left; }
    #myAccount .contentCol .accountInfo label.setWidth {
      margin-top: 5px;
      width: 175px;
      text-align: right;
      padding-right: 5px; }
  #myAccount .contentCol .accountInfo input {
    float: left;
    margin-bottom: 10px; }
  #myAccount .contentCol .accountInfo input[type=checkbox] {
    margin-bottom: 10px !important; }
  #myAccount .contentCol .accountInfo .selectbox {
    width: 323px; }
    #myAccount .contentCol .accountInfo .selectbox.error {
      margin-bottom: 20px; }
  #myAccount .contentCol .accountInfo .customSelectInner[style] {
    width: 310px !important; }
  #myAccount .contentCol .accountInfo input.error {
    margin-bottom: -40px; }
  #myAccount .contentCol .accountInfo label.error {
    clear: both;
    margin-left: 190px; }
    #myAccount .contentCol .accountInfo label.error:before, #myAccount .contentCol .accountInfo label.error:after {
      content: " ";
      display: table; }
    #myAccount .contentCol .accountInfo label.error:after {
      clear: both; }
  #myAccount .contentCol .accountInfo .errorState label.error {
    margin-left: 40px;
    padding: 0; }
  #myAccount ul.messages {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 30px;
    padding-left: 0 !important; }
    #myAccount ul.messages li {
      clear: both;
      margin: 15px 0; }
      #myAccount ul.messages li a {
        padding-left: 25px; }
        #myAccount ul.messages li a.new {
          background: url("img/icon-dot-messages.png") no-repeat 5px 7px;
          font-weight: 600; }
      #myAccount ul.messages li:last-child {
        margin-bottom: 30px; }
  #myAccount .myFolders ul.btnList {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 8px;
    margin-bottom: 35px;
    padding-left: 0 !important; }
    #myAccount .myFolders ul.btnList:before, #myAccount .myFolders ul.btnList:after {
      content: " ";
      display: table; }
    #myAccount .myFolders ul.btnList:after {
      clear: both; }
    #myAccount .myFolders ul.btnList li {
      display: inline-block;
      margin-right: 10px; }
      #myAccount .myFolders ul.btnList li a.btn {
        padding-left: 30px;
        padding-right: 30px; }
        #myAccount .myFolders ul.btnList li a.btn.disable {
          background: gray; }
  #myAccount .workspace h2 {
    font-size: 38px;
    color: #002f58;
    line-height: 38px;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 300; }
  #myAccount .workspace .workBox {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 40px;
    width: 100%; }
    #myAccount .workspace .workBox .boxTitle {
      border-bottom: 1px solid #d9d9d9;
      padding: 15px 18px; }
      #myAccount .workspace .workBox .boxTitle h3 {
        font-size: 22px;
        font-weight: 300;
        color: #002f58;
        margin: 0; }
      #myAccount .workspace .workBox .boxTitle a.seeAll {
        font-size: 12px;
        text-transform: uppercase;
        color: #016abe;
        float: right;
        text-decoration: none;
        font-weight: 700;
        margin-top: 11px; }
      #myAccount .workspace .workBox .boxTitle .floatRight {
        width: 500px;
        margin-right: 2px;
        text-align: right; }
        #myAccount .workspace .workBox .boxTitle .floatRight a.btn {
          padding: 8px 20px;
          font-size: 12px; }
        #myAccount .workspace .workBox .boxTitle .floatRight label {
          display: inline-block;
          font-size: 14px;
          margin-right: 20px;
          padding-top: 7px; }
        #myAccount .workspace .workBox .boxTitle .floatRight span.selectbox {
          width: 210px;
          margin: 0 8px 10px 0px;
          padding: 7px 7px;
          text-align: left; }
        #myAccount .workspace .workBox .boxTitle .floatRight .customSelectInner[style] {
          width: 190px !important; }
    #myAccount .workspace .workBox .innerContent {
      width: 100%;
      padding: 25px 20px 15px 20px;
      display: inline-block;
      margin: 0;
      font-size: 14px;
      /* Contact Reps */
      /* My Messages */
      /* My Folders */ }
      #myAccount .workspace .workBox .innerContent a.btn {
        padding: 8px 20px;
        font-size: 12px; }
      #myAccount .workspace .workBox .innerContent .reps {
        float: left;
        width: 50%; }
        #myAccount .workspace .workBox .innerContent .reps a.btn {
          padding: 15px 25px;
          font-size: 14px;
          margin-top: 15px; }
      #myAccount .workspace .workBox .innerContent ul.messages {
        border-bottom: 0;
        margin-bottom: 0; }
        #myAccount .workspace .workBox .innerContent ul.messages li {
          float: left;
          width: 100%;
          margin: 10px 0 0 0;
          padding-bottom: 10px;
          border-bottom: 1px solid #d9d9d9; }
          #myAccount .workspace .workBox .innerContent ul.messages li:last-child {
            margin-bottom: 0px;
            border-bottom: 0; }
      #myAccount .workspace .workBox .innerContent table.myFolders {
        width: 100%;
        border-collapse: collapse; }
        #myAccount .workspace .workBox .innerContent table.myFolders tr td {
          border-bottom: 1px solid #d9d9d9;
          padding: 15px 0; }
        #myAccount .workspace .workBox .innerContent table.myFolders tr.first td {
          padding-top: 0; }
        #myAccount .workspace .workBox .innerContent table.myFolders tr.last td {
          border-bottom: 0;
          padding-bottom: 0; }
        #myAccount .workspace .workBox .innerContent table.myFolders tr td.last {
          text-align: right;
          padding-right: 0; }
        #myAccount .workspace .workBox .innerContent table.myFolders tr td ul {
          margin: 0;
          padding: 0;
          list-style: none; }
          #myAccount .workspace .workBox .innerContent table.myFolders tr td ul li {
            display: inline-block;
            border-right: 1px solid #c4c4c4;
            padding-right: 8px;
            margin-left: 3px;
            line-height: 1.0em;
            font-size: 12px; }
            #myAccount .workspace .workBox .innerContent table.myFolders tr td ul li:last-child {
              border-right: 0; }
            #myAccount .workspace .workBox .innerContent table.myFolders tr td ul li a {
              text-transform: uppercase;
              font-weight: 600; }
    #myAccount .workspace .workBox.floatLeft {
      width: 470px; }
    #myAccount .workspace .workBox.floatRight {
      width: 470px; }

/* My Contacts */
.contacts {
  display: block; }
  .contacts .clear30 {
    clear: both;
    height: 30px; }
  .contacts .col h4 {
    margin: 0 0 15px 0; }
  .contacts ul {
    margin: 0 0 20px 0; }
  .contacts .boxWrap {
    clear: both;
    float: left;
    display: block;
    margin-top: 30px;
    padding: 25px 20px;
    overflow: hidden; }
    .contacts .boxWrap:before, .contacts .boxWrap:after {
      content: " ";
      display: table; }
    .contacts .boxWrap:after {
      clear: both; }
    .contacts .boxWrap .resultsOps {
      margin-left: -20px;
      margin-right: -20px;
      margin-bottom: -25px;
      padding: 25px;
      background: #f4f4f4; }
      .contacts .boxWrap .resultsOps ul {
        margin: 0;
        padding: 0;
        list-style: none;
        padding-left: 0 !important; }
        .contacts .boxWrap .resultsOps ul li {
          line-height: 1.5em; }
  .contacts label strong {
    font-weight: 600; }
  .contacts label.setWidth {
    background: lightblue;
    width: 100px;
    display: inline-block; }
  .contacts input {
    margin-left: 0; }
  .contacts input[type=radio], .contacts input[type=checkbox] {
    display: none; }
  .contacts .selectbox {
    width: 270px; }
  .contacts .customSelect {
    margin-left: 0; }
    .contacts .customSelect .customSelectInner {
      width: 260px !important; }
  .contacts dl {
    clear: both;
    width: 100%;
    margin: 0 0 30px 0;
    padding: 0; }
    .contacts dl dt, .contacts dl dd {
      margin: 0;
      padding: 0;
      display: inline-block; }
    .contacts dl dt {
      width: 100px; }
    .contacts dl dd {
      width: 500px; }
      .contacts dl dd input[type=submit] {
        margin-top: 10px; }

.lt-ie9 #myAccount {
  /* Login Screen */ }
  .lt-ie9 #myAccount input[type="checkbox"] + label {
    margin-top: -3px; }
  .lt-ie9 #myAccount #login input[type="radio"] {
    visibility: visible !important;
    display: inline-block !important;
    float: left !important;
    position: relative; }
  .lt-ie9 #myAccount #login input[type="radio"] + label {
    float: left;
    margin-top: -5px;
    margin-right: 0 !important;
    display: inline-block;
    margin-left: 5px; }
    .lt-ie9 #myAccount #login input[type="radio"] + label:before {
      display: none; }

/**
 * Where to Buy Module
 */
.specs.whereToBuy {
  margin-bottom: 100px; }
  .specs.whereToBuy .floatRight {
    margin-top: 5px; }
    .specs.whereToBuy .floatRight a {
      font-weight: 600; }
  .specs.whereToBuy .tableTitle {
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 10px; }
  .specs.whereToBuy label {
    color: #FFF;
    text-transform: uppercase;
    font-size: 12px; }
  .specs.whereToBuy td.select {
    background: #999; }
    .specs.whereToBuy td.select.checked {
      background: #006abf; }

.spacerBlock {
  float: left;
  width: 90px;
  text-align: center;
  font-size: 18px;
  padding-top: 4px; }

.salesRep {
  float: left;
  width: 435px;
  text-align: left; }
  .salesRep .tableTitle {
    float: left;
    clear: both;
    display: block;
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 10px;
    margin-bottom: 20px; }
    .salesRep .tableTitle:before, .salesRep .tableTitle:after {
      content: " ";
      display: table; }
    .salesRep .tableTitle:after {
      clear: both; }
  .salesRep input[type="radio"] + label {
    margin-bottom: 10px; }
  .salesRep input[type=submit] {
    margin-top: 20px; }

.distributors {
  float: left;
  width: 435px;
  text-align: left; }
  .distributors .tableTitle {
    float: left;
    clear: both;
    display: block;
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 10px;
    margin-bottom: 20px; }
    .distributors .tableTitle:before, .distributors .tableTitle:after {
      content: " ";
      display: table; }
    .distributors .tableTitle:after {
      clear: both; }
  .distributors label {
    float: left;
    margin-right: 5px;
    padding-top: 5px; }
  .distributors .selectricWrapper {
    width: 210px;
    float: left;
    margin-left: 20px; }
    .distributors .selectricWrapper .selectric .label {
      line-height: 21px; }
  .distributors .cDistributors {
    float: left;
    width: 100%;
    height: 190px;
    overflow-y: scroll;
    border: 1px solid #e8e8e8;
    margin: 20px 0 20px 0;
    -moz-border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px; }
    .distributors .cDistributors ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      .distributors .cDistributors ul li {
        display: block;
        border-bottom: 1px solid #d9d9d9;
        padding: 15px 0;
        text-align: left;
        margin: 0 25px 0 15px; }
        .distributors .cDistributors ul li:last-child {
          border-bottom: 0; }
        .distributors .cDistributors ul li a.btn {
          margin-top: 6px;
          margin-right: 3px;
          float: right;
          padding: 5px 20px; }
    .distributors .cDistributors a {
      color: #016abe; }
      .distributors .cDistributors a.btn {
        color: #FFF; }

.badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #00457c;
  font-size: 14px;
  font-weight: 400;
  color: #FFF;
  height: 35px;
  padding: 0 12px 0 0px;
  line-height: 35px; }
  .badge.default {
    padding-left: 20px;
    padding-right: 20px; }
  .badge.article {
    background: #6d3ead; }
    .badge.article:before {
      content: "";
      width: 40px;
      height: 25px;
      float: left;
      background: url("img/icon-press-sprite.png") 0 3px no-repeat; }
  .badge.video {
    background: #ff9719; }
    .badge.video:before {
      content: "";
      width: 40px;
      height: 25px;
      float: left;
      background: url("img/icon-press-sprite.png") -40px 5px no-repeat; }
  .badge.blog {
    background: #1a961a; }
    .badge.blog:before {
      content: "";
      width: 40px;
      height: 25px;
      float: left;
      background: url("img/icon-press-sprite.png") -80px 5px no-repeat; }
  .badge.presentation {
    background: #a45cc1; }
    .badge.presentation:before {
      content: "";
      width: 40px;
      height: 25px;
      float: left;
      margin-top: 2px;
      background: url("img/icon-badges-sprite.png") -120px 4px no-repeat; }
  .badge.tool {
    background: #01a1be; }
    .badge.tool:before {
      content: "";
      width: 40px;
      height: 25px;
      float: left;
      background: url("img/icon-badges-sprite.png") -160px 4px no-repeat; }
  .badge.star {
    background: #01a1be; }
    .badge.star:before {
      content: "";
      width: 40px;
      height: 25px;
      float: left;
      background: url("img/icon-badges-sprite.png") -160px 4px no-repeat; }
  .badge.datasheet {
    background: #442895; }
    .badge.datasheet:before {
      content: "";
      width: 40px;
      height: 25px;
      float: left;
      background: url("img/icon-badges-sprite.png") -200px 4px no-repeat; }

/**
 * Misc Modules
 * Base Layouts (_misc.scss)
 */
.row {
  width: 100%;
  font-size: 14px;
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }
  .row a {
    color: #016abe;
    text-decoration: none; }
    .row a:hover {
      text-decoration: underline; }
  .row h3 {
    color: #016abe;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.3em; }
  .row p {
    margin: 0 0 18px 0;
    font-size: 14px; }

blockquote {
  font-size: 18px;
  color: #FFF;
  font-weight: 400;
  text-align: center;
  position: relative;
  margin-bottom: 70px; }
  blockquote:before {
    content: "";
    width: 42px;
    height: 36px;
    position: absolute;
    top: -15px;
    left: -35px;
    background: url("img/quotes-large.png") no-repeat 0 0; }
  blockquote:after {
    content: "";
    width: 42px;
    height: 36px;
    position: absolute;
    bottom: -15px;
    right: -35px;
    background: url("img/quotes-large.png") no-repeat -42px 0; }
  blockquote cite {
    float: right;
    clear: both;
    font-size: 16px;
    color: #999;
    padding-right: 50px;
    margin-top: 20px; }

ul.quicklinks {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  margin: 40px 0; }
  ul.quicklinks li {
    display: inline-block;
    padding: 0 15px;
    border-left: 1px solid #bcbcbc; }
    ul.quicklinks li:first-child {
      border-left: 0; }
    ul.quicklinks li a {
      text-decoration: none;
      color: #016abe;
      font-weight: 600;
      font-size: 18px; }

.locked:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 21px;
  margin-top: 4px;
  background: url("img/icon-locked.png") no-repeat right 0px;
  margin-left: 10px; }

.unlocked:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 21px;
  margin-top: 4px;
  background: url("img/icon-unlocked.png") no-repeat right bottom;
  margin-left: 10px; }

/* Rounded Corner Images */
.rounded {
  overflow: hidden;
  margin-bottom: 30px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

.floatRight {
  float: right; }

.floatLeft {
  float: left; }

hr {
  clear: both; }

.hiddenContent {
  display: none;
  width: 475px;
  position: absolute;
  z-index: 400;
  background: #FFF;
  right: 0px;
  padding: 20px;
  border: 1px solid #cad0d6;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ;
  -moz-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ; }
  .hiddenContent:before, .hiddenContent:after {
    content: " ";
    display: table; }
  .hiddenContent:after {
    clear: both; }
  .hiddenContent h3 {
    color: #333 !important;
    text-align: left;
    font-size: 18px !important;
    margin-bottom: 10px; }
  .hiddenContent .closeBtn {
    float: right;
    width: 25px;
    height: 25px;
    background: url("img/controls.png") no-repeat -25px 0; }
  .hiddenContent table th {
    font-weight: bold;
    word-break: break-all;
    background: #FFF !important;
    color: #333 !important;
    border-left: 1px solid #e8e8e8 !important;
    vertical-align: top; }
    .hiddenContent table th.first {
      background: #002f58 !important;
      color: #FFF !important;
      text-align: left;
      border-left: 0 !important; }
    .hiddenContent table th .note {
      font-size: 10px; }
  .hiddenContent table th, .hiddenContent table td {
    font-size: 11px !important; }
  .hiddenContent table td.red {
    color: #e70000; }

/**
 * Pagination (Default)
 */
ul.pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
  margin: 5px 0 30px 0; }
  ul.pagination li {
    float: left;
    margin-left: 5px; }
    ul.pagination li a {
      background: #016abe;
      padding: 3px 8px;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      text-transform: uppercase;
      font-size: 12px;
      color: #FFF !important;
      text-decoration: none;
      font-weight: 600; }
      ul.pagination li a.active {
        background: #00233f; }
      ul.pagination li a:hover {
        text-decoration: none !important; }

ul.filterAccordion {
  list-style: none;
  padding-left: 0 !important;
  margin: 14px; }
  ul.filterAccordion > li {
    position: relative;
    padding-left: 15px !important;
    font-size: 13px;
    margin-bottom: 3px !important; }
    ul.filterAccordion > li .expand {
      background: url("img/filter-plus-minus.png") no-repeat 0 0;
      cursor: pointer;
      width: 9px;
      height: 10px;
      padding: 0;
      margin: 0;
      position: absolute;
      top: 5px;
      left: 0;
      text-indent: -99999px; }
      ul.filterAccordion > li .expand.open {
        background: url("img/filter-plus-minus.png") no-repeat 0 -11px; }
    ul.filterAccordion > li a {
      color: #006abf;
      font-weight: 600; }
    ul.filterAccordion > li ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: none;
      padding-left: 0 !important;
      margin-left: 0 !important; }
      ul.filterAccordion > li ul li {
        clear: both;
        display: block;
        padding: 0 !important;
        margin: 0 0 3px 0 !important; }
        ul.filterAccordion > li ul li a {
          display: block; }

.module .fullPartsTable .filter-checkbox {
  display: block;
  overflow: hidden; }
.module .fullPartsTable table tr th .search-input {
  padding: 0;
  margin: 0;
  width: 196px; }
.module .fullPartsTable table tr th .product-filter {
  padding: 0 !important;
  margin: 5px;
  width: 120px;
  float: left;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid red;
  vertical-align: top; }
.module .fullPartsTable table tr th input[type="checkbox"] {
  display: none; }

/* Footer */
footer {
  background: #00233f;
  padding-top: 67px;
  /* Copyright */ }
  footer .item {
    float: left;
    width: 192px;
    color: #FFF; }
  footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 40px; }
    footer ul li {
      font-size: 16px; }
      footer ul li a {
        color: #FFF;
        text-decoration: none;
        font-size: 13px;
        display: block;
        margin-bottom: 5px; }
        footer ul li a.title {
          font-size: 15px;
          font-weight: 700;
          margin-bottom: 13px; }
    footer ul.miscLinks li a {
      font-size: 15px;
      font-weight: 700; }
  footer .logos {
    text-align: center;
    clear: both;
    margin-bottom: 30px; }
    footer .logos:before, footer .logos:after {
      content: " ";
      display: table; }
    footer .logos:after {
      clear: both; }
    footer .logos ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      footer .logos ul li {
        display: inline-block;
        margin: 0 12px; }
  footer #copyright {
    background: #0d2e49;
    width: 100%; }
    footer #copyright .container {
      text-align: center;
      color: #FFF;
      font-size: 13px;
      padding: 13px 10px; }

/**
 * Slider ( My Folders)
 */
.slider:before, .slider:after {
  content: " ";
  display: table; }
.slider:after {
  clear: both; }
.slider .sliderButton {
  min-height: 25px;
  background: url("img/icon-accordion-plus.png") no-repeat 0 0px;
  padding-left: 50px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  margin-bottom: 5px; }
  .slider .sliderButton.open {
    background: url("img/icon-accordion-minus.png") no-repeat 0 0px; }
  .slider .sliderButton input[type=checkbox] {
    visibility: visible;
    margin-left: -20px;
    margin-top: 3px; }
.slider .sliderContent {
  display: none;
  clear: both;
  background: #f4f4f4;
  padding: 25px 25px 18px 25px;
  margin-left: 57px;
  margin-bottom: 15px; }
  .slider .sliderContent:before, .slider .sliderContent:after {
    content: " ";
    display: table; }
  .slider .sliderContent:after {
    clear: both; }
  .slider .sliderContent p {
    margin-bottom: 15px; }
  .slider .sliderContent input[type=checkbox] {
    display: none; }
  .slider .sliderContent label {
    font-weight: 700;
    color: #016abe; }
.slider .contentTemplate {
  display: block;
  width: 100%;
  float: left; }

/**
 * Lightboxes (_modal.scss)
 */
.hide {
  display: none; }

.modalForms {
  width: 600px;
  background: #FFF;
  padding: 50px; }
  .modalForms h2 {
    font-size: 22px;
    color: #002f58;
    font-weight: 400; }
  .modalForms label {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    display: block;
    margin-bottom: 5px; }
    .modalForms label strong {
      color: #333; }
  .modalForms input[type=text] {
    width: 100%;
    clear: both;
    display: block;
    margin-left: 0; }
  .modalForms textarea {
    border: 1px solid #ccc;
    width: 100%;
    height: 120px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    resize: none;
    padding: 10px;
    font-size: 12px;
    font-weight: 300;
    clear: both;
    margin-bottom: 20px; }
  .modalForms input[type=checkbox] {
    display: none; }
  .modalForms input[type=submit] {
    margin-top: 20px; }
  .modalForms .selectWrap {
    float: left;
    position: relative;
    display: block; }
    .modalForms .selectWrap .selectbox {
      margin-left: 0; }
    .modalForms .selectWrap select.hasCustomSelect {
      width: 200px !important;
      height: 38px !important;
      position: absolute; }
    .modalForms .selectWrap .customSelect {
      width: 200px; }
      .modalForms .selectWrap .customSelect .customSelectInner {
        width: 195px !important; }
  .modalForms button {
    color: #016abe;
    display: inline-block;
    background: none;
    margin-left: 30px;
    border: 0;
    outline: none; }
  .modalForms .error {
    color: red; }
  .modalForms dl {
    clear: both;
    font-size: 0;
    margin: 10px 0 20px 0;
    padding: 0; }
    .modalForms dl dt {
      margin: 0;
      padding: 0;
      width: 150px;
      display: inline-block;
      vertical-align: top;
      font-size: 14px; }
    .modalForms dl dd {
      margin: 0;
      padding: 0;
      width: 350px;
      display: inline-block;
      vertical-align: top;
      font-size: 14px; }
      .modalForms dl dd label {
        margin-bottom: 15px; }

/**
 * Datasheets (_datasheets.scss)
 */
#datasheets {
  width: 960px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  /* Datasheet Header */
  /* Datasheet Subheader */
  /* Associated Parts Table */ }
  #datasheets:before, #datasheets:after {
    content: " ";
    display: table; }
  #datasheets:after {
    clear: both; }
  #datasheets .datasheet_header {
    border-bottom: 2px solid #d9e9f5;
    padding-bottom: 8px; }
    #datasheets .datasheet_header h2 {
      font-size: 22px;
      color: #002f58;
      font-weight: 400; }
      #datasheets .datasheet_header h2 span {
        font-size: 14px;
        color: #000;
        font-weight: 600;
        padding-left: 10px; }
  #datasheets .datasheet_subheader {
    font-size: 14px;
    color: #c4c4c4;
    font-weight: 400;
    padding: 18px 0 0px 0;
    border-bottom: 1px solid #d9d9d9;
    font-weight: 300;
    position: relative; }
    #datasheets .datasheet_subheader:before, #datasheets .datasheet_subheader:after {
      content: " ";
      display: table; }
    #datasheets .datasheet_subheader:after {
      clear: both; }
    #datasheets .datasheet_subheader span {
      float: left;
      color: #000;
      padding-right: 5px; }
    #datasheets .datasheet_subheader .datasheet_subheader_nav {
      float: left; }
      #datasheets .datasheet_subheader .datasheet_subheader_nav > a {
        font-weight: 600; }
    #datasheets .datasheet_subheader .pager {
      margin-top: 5px; }
    #datasheets .datasheet_subheader .floatRight {
      text-align: right; }
    #datasheets .datasheet_subheader input[type=text] {
      width: 400px !important;
      float: none;
      height: 31px;
      padding-right: 40px;
      font-size: 14px;
      color: #333;
      margin-right: -35px; }
    #datasheets .datasheet_subheader input[type=button].datasheet_search_button {
      width: 32px;
      height: 32px;
      background: #016abe;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      text-indent: -9999px;
      border: 0;
      background: url("img/btn-search.png") no-repeat; }
  #datasheets .datasheet_assoc_parts {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    padding: 25px 0; }
    #datasheets .datasheet_assoc_parts:before, #datasheets .datasheet_assoc_parts:after {
      content: " ";
      display: table; }
    #datasheets .datasheet_assoc_parts:after {
      clear: both; }
    #datasheets .datasheet_assoc_parts div.table_slider {
      font-weight: 600;
      color: #016abe;
      cursor: pointer; }
    #datasheets .datasheet_assoc_parts table {
      margin: 10px 0 10px 0;
      padding: 0;
      width: 100%;
      table-layout: fixed;
      border-collapse: collapse; }
  #datasheets .sliderWrapper {
    border: 1px solid #d9d9d9;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    overflow: hidden;
    margin-top: 15px;
    /* Slider Handle */ }
    #datasheets .sliderWrapper .dsSlider {
      padding: 20px 15px 15px 55px;
      border-top: 1px solid #d9d9d9;
      font-size: 22px;
      color: #002f58;
      font-weight: 300;
      background: url("img/icon-accordion-plus.png") no-repeat 20px 25px; }
      #datasheets .sliderWrapper .dsSlider:before, #datasheets .sliderWrapper .dsSlider:after {
        content: " ";
        display: table; }
      #datasheets .sliderWrapper .dsSlider:after {
        clear: both; }
      #datasheets .sliderWrapper .dsSlider.open_accordion {
        background: url("img/icon-accordion-minus.png") no-repeat 20px 25px; }
      #datasheets .sliderWrapper .dsSlider .features {
        float: right;
        margin-top: 0px; }
        #datasheets .sliderWrapper .dsSlider .features a.btn {
          padding: 10px 20px;
          font-size: 12px; }
      #datasheets .sliderWrapper .dsSlider:first-child {
        border-top: 0; }
    #datasheets .sliderWrapper .sliderContent {
      display: none;
      padding: 30px 25px;
      font-size: 14px;
      color: #000;
      border-top: 1px solid #d9d9d9; }
  #datasheets .main_results {
    border: 1px solid #cccccc;
    position: absolute;
    right: 0;
    top: 55px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #FFF;
    -webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ;
    -moz-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ;
    padding: 20px;
    text-align: left; }
    #datasheets .main_results ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      #datasheets .main_results ul li {
        margin-top: 6px; }
        #datasheets .main_results ul li:first-child {
          margin-top: 0; }

#datasheets_toc {
  display: none;
  position: absolute;
  width: 960px;
  height: auto;
  *left: 0;
  *top: 43px;
  z-index: 500 !important;
  border-top: 10px solid #014d8e;
  background: #FFF;
  margin-top: 15px;
  padding: 25px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ;
  -moz-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ; }

#datasheets_toc_handle {
  text-decoration: none;
  padding-bottom: 18px; }

#datasheets .products_and_about_menu_hover {
  color: #00233f;
  text-decoration: none; }

#datasheets_toc ul {
  margin: 0;
  padding: 0;
  list-style: none; }

#datasheets_toc ul li {
  color: #1B62AE;
  margin-bottom: 5px;
  padding-left: 15px;
  background: url("img/arrow_toc.png") no-repeat 0 4px; }

#datasheets_toc ul li a {
  display: block;
  font-size: 12px;
  font-weight: 400;
  padding-right: 30px;
  line-height: 1.5em; }

#datasheets ul.toc_left, #datasheets ul.toc_center, #datasheets ul.toc_right {
  width: 33%;
  display: block;
  float: left; }

/**
 *  Datasheet Tooltip
 */
.tipTrigger {
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-block;
  font-size: 0;
  margin-right: 5px;
  background: url("img/datasheet.png") no-repeat; }
  .tipTrigger:hover .customTooltip {
    display: block;
    position: absolute;
    top: 20px;
    left: 10px;
    z-index: 400; }

.tipShow {
  display: block;
  position: absolute;
  top: 20px;
  left: 10px;
  z-index: 400;
  border: 1px solid red; }

.customTooltip {
  display: none;
  width: 440px;
  padding: 25px;
  background: #FFF;
  border: 1px solid #cad0d6;
  cursor: default;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ;
  -moz-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25) ; }
  .customTooltip:before, .customTooltip:after {
    content: " ";
    display: table; }
  .customTooltip:after {
    clear: both; }

/* Tooltip Content ONLY */
.datasheetTooltip {
  width: 400px !important;
  cursor: default !important;
  word-wrap: break-word !important; }
  .datasheetTooltip:before, .datasheetTooltip:after {
    content: " ";
    display: table; }
  .datasheetTooltip:after {
    clear: both; }
  .datasheetTooltip h2 {
    font-size: 18px !important;
    color: #000 !important;
    font-weight: 400 !important;
    margin-bottom: 25px !important;
    float: left !important;
    width: 385px !important;
    word-wrap: break-word !important; }
  .datasheetTooltip p {
    font-size: 18px;
    width: 385px !important;
    word-wrap: break-word !important;
    display: block;
    float: left; }
  .datasheetTooltip .datasheetCol {
    float: left;
    width: 180px;
    margin-right: 15px;
    overflow: hidden; }
    .datasheetTooltip .datasheetCol a.datasheet {
      font-weight: 600;
      background: url("img/datasheet.png") no-repeat 0 3px;
      padding-left: 40px;
      line-height: 35px;
      float: left;
      color: #00457c;
      font-size: 16px; }
      .datasheetTooltip .datasheetCol a.datasheet:before {
        content: "";
        width: 30px;
        height: 35px;
        display: inline-block;
        background: url("img/datasheet.png") no-repeat;
        vertical-align: middle;
        margin-right: 10px;
        display: none; }
  .datasheetTooltip .pdfCol {
    float: left;
    width: 190px; }
    .datasheetTooltip .pdfCol a.pdf {
      font-weight: 600;
      background: url("img/icon-pdf.png") no-repeat;
      padding-left: 40px;
      line-height: 35px;
      float: left;
      color: #00457c;
      font-size: 16px; }
      .datasheetTooltip .pdfCol a.pdf:before {
        content: "";
        width: 28px;
        height: 35px;
        display: inline-block;
        background: url("img/icon-pdf.png") no-repeat;
        vertical-align: middle;
        margin-right: 10px;
        display: none; }
  .datasheetTooltip a.btn.green {
    padding: 8px 15px;
    margin-right: 5px; }

/**
 * Micron Country Sites
 */
.country {
  /* Header */ }
  .country header .mymenu nav ul.megamenu {
    padding-right: 10px; }
    .country header .mymenu nav ul.megamenu li {
      margin-right: 5px; }
      .country header .mymenu nav ul.megamenu li a.mm-item-link:link,
      .country header .mymenu nav ul.megamenu li a.mm-item-link:visited {
        font-size: 14px; }
        .country header .mymenu nav ul.megamenu li a.mm-item-link:link.country-link,
        .country header .mymenu nav ul.megamenu li a.mm-item-link:visited.country-link {
          width: 160px; }

.doc-form {
  font-size: 14px;
  margin-bottom: 100px;
  width: 550px; }
  .doc-form .support-form-group .label-support {
    width: auto;
    display: block;
    margin-bottom: 5px; }
  .doc-form .input-support {
    width: 100%; }
  .doc-form .selectbox {
    width: 100% !important;
    margin-left: 0px; }
  .doc-form input[type="radio"] + label {
    display: inline;
    margin-right: 50px; }
  .doc-form .customSelectInner[style] {
    width: 540px !important; }

.fluid-form {
  margin-bottom: 100px; }
  .fluid-form input {
    float: none; }
  .fluid-form .input-support {
    width: 100%;
    font-size: 16px; }
  .fluid-form select {
    position: relative; }
  .fluid-form .selectbox[style] {
    margin-left: 0; }
  .fluid-form .customSelect {
    width: 100% !important; }
    .fluid-form .customSelect .customSelectInner {
      width: 100% !important; }

/* iFrame Content */
#page.iFrameContent .contentArea {
  width: 100%;
  padding: 20px; }

.contact .simpleTabs {
  text-align: center; }
  .contact .simpleTabs ul {
    padding: 0px !important; }
  .contact .simpleTabs li {
    font-size: 14px;
    margin-bottom: 0px !important; }
    .contact .simpleTabs li a {
      color: white;
      padding: 15px 16px; }
      .contact .simpleTabs li a:hover {
        text-decoration: none; }
  .contact .simpleTabs .tabContent {
    text-align: left; }
    .contact .simpleTabs .tabContent label {
      width: 100%;
      margin-bottom: 5px;
      display: block;
      margin-top: 15px; }
    .contact .simpleTabs .tabContent input {
      width: 100%;
      float: none;
      margin: 0px;
      display: block; }

.locations .contentCol {
  margin-top: 7px; }
  .locations .contentCol ul {
    width: 25%;
    float: left; }
.locations .sortBox {
  clear: both;
  padding: 15px;
  display: block;
  background-color: #016abe;
  color: white;
  border-radius: 5px; }
  .locations .sortBox.map {
    border-radius: 5px 5px 0 0; }
  .locations .sortBox .filter {
    float: right;
    width: 300px;
    border: none; }
    .locations .sortBox .filter label {
      margin-right: 10px; }
  .locations .sortBox input[type="checkbox"] + label {
    display: inline-block; }
  .locations .sortBox .selectbox {
    margin-left: 5px;
    background-color: white;
    color: #00457c;
    margin-bottom: 0px; }
  .locations .sortBox .customSelectInner[style] {
    background: url("img/arrow-down-menu.png") no-repeat center right;
    padding-right: 40px;
    width: auto !important; }
  .locations .sortBox h3 {
    width: 100%;
    color: white;
    margin: 0px;
    font-size: 18px; }
.locations .mapfilters {
  border-radius: 5px 5px 0px 0px; }
.locations .loc-country {
  list-style-type: none;
  margin-left: -19px;
  font-weight: 600;
  font-size: 16px; }
.locations .liSpace li:first-child {
  margin-top: 29px; }
.locations .cleaner {
  margin: 0px !important; }
.locations h2.notFirst {
  margin-top: 40px; }
.locations .cityWrap {
  width: 100%; }
  .locations .cityWrap:before, .locations .cityWrap:after {
    content: " ";
    display: table; }
  .locations .cityWrap:after {
    clear: both; }
  .locations .cityWrap .locationWrap {
    border-bottom: solid 1px #ccc;
    padding: 20px 0;
    float: left; }
  .locations .cityWrap .photo {
    float: left;
    width: 134px;
    height: 134px;
    margin-right: 15px;
    overflow: hidden; }
  .locations .cityWrap .address {
    float: left;
    width: 590px;
    font-size: 14px; }
    .locations .cityWrap .address h4 {
      font-weight: 600;
      font-size: 14px;
      margin: 0 !important; }
    .locations .cityWrap .address ul {
      margin: 0;
      padding: 0;
      list-style: none;
      width: 100%; }
      .locations .cityWrap .address ul li {
        width: 100%;
        list-style: disc; }
    .locations .cityWrap .address a.btn {
      float: right; }

#map {
  clear: both;
  float: left;
  width: 100%;
  height: 372px;
  margin-bottom: 15px; }

/* IE8 Styles */
.lt-ie9 .locations .sortBox .filter {
  margin-top: 7px; }

.cookieHeader-container {
  background-color: #016abe;
  padding: 5px 0; }
  .cookieHeader-container .cookieHeader {
    width: 960px;
    margin: 0 auto;
    font-size: 12px;
    position: relative; }
    .cookieHeader-container .cookieHeader img {
      float: left;
      margin-right: 5px;
      margin-top: -7px; }
    .cookieHeader-container .cookieHeader p {
      margin-top: 15px;
      color: white; }
      .cookieHeader-container .cookieHeader p a {
        color: #ed8917; }

.cookieFooter {
  background-color: #016abe;
  font-size: 12px;
  color: white;
  padding: 20px 0 30px;
  margin-bottom: -12px; }
  .cookieFooter .cookieFooter-inner {
    width: 960px;
    margin: 0 auto; }
  .cookieFooter a {
    color: #ed8917; }
  .cookieFooter .mesgLeft {
    float: left;
    width: 47%; }
    .cookieFooter .mesgLeft img {
      float: left;
      margin-right: 5px; }
    .cookieFooter .mesgLeft p {
      margin: 7px 0 0; }
  .cookieFooter .mesgRight {
    float: right;
    width: 47%; }
    .cookieFooter .mesgRight .btn {
      float: left;
      margin-right: 10px;
      color: #016abe !important;
      background-color: white;
      padding: 10px; }
    .cookieFooter .mesgRight p {
      margin: 4px 0 0; }

.closeCookieNotice {
  position: absolute;
  right: 10px;
  top: 0;
  width: 15px;
  height: 15px;
  background: url("img/icon-x.png") no-repeat center center;
  cursor: pointer; }

.cookieAccepted {
  display: none; }

/**
 * Loading Animation (_spinner.scss)
 */
.loadingCatalog {
  padding: 40px; }
  .loadingCatalog h2 {
    margin-top: 40px;
    margin-bottom: 0; }

.spinner {
  margin: 100px auto;
  width: 50px;
  height: 10px;
  text-align: center;
  font-size: 10px; }

.spinner > div {
  background-color: #00457c;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out; }

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; }

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1); } }
@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }
/**
 * Locations Page Map Info Window (_locations-infobox.scss)
 */
.infoBox {
  background: #FFF;
  opacity: 1;
  width: 350px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 30px 20px 20px 20px;
  border: 1px solid #ccc; }
  .infoBox > img {
    top: 0;
    right: 0;
    margin: -15px -5px 10px 0 !important; }
  .infoBox .infowindow_content {
    width: 312px;
    height: 300px;
    padding-right: 20px;
    overflow: auto; }
    .infoBox .infowindow_content:before, .infoBox .infowindow_content:after {
      content: " ";
      display: table; }
    .infoBox .infowindow_content:after {
      clear: both; }
    .infoBox .infowindow_content h1.marker_content_title {
      font-size: 16px !important;
      line-height: 18px;
      margin-bottom: 10px; }
    .infoBox .infowindow_content .marker_content_body {
      margin-bottom: 20px !important; }

.marker_content_image {
  padding-right: 20px; }

/* Newsletter Lightbox Form */
#newsletter-form {
  padding: 20px;
  width: 600px; }
  #newsletter-form h2 {
    font-size: 30px;
    color: #002f58;
    margin-bottom: 20px;
    line-height: 1.3em;
    font-weight: 300;
    margin-top: 20px; }
  #newsletter-form .note {
    font-size: 12px;
    margin: 0 0 10px 0; }
    #newsletter-form .note.account-signup {
      margin-top: 50px; }
  #newsletter-form .form {
    display: table;
    width: 100%;
    margin-top: 40px;
    font-size: 16px; }
    #newsletter-form .form:before, #newsletter-form .form:after {
      content: " ";
      display: table; }
    #newsletter-form .form:after {
      clear: both; }
    #newsletter-form .form ul {
      padding: 0 0 0 20px;
      margin: 10px 0 20px 0;
      float: left; }
      #newsletter-form .form ul li {
        margin-bottom: 5px; }
    #newsletter-form .form .row {
      display: table-row; }
    #newsletter-form .form .cellone {
      display: table-cell;
      width: 175px;
      text-align: right;
      vertical-align: top;
      position: relative; }
    #newsletter-form .form .celltwo {
      display: table-cell;
      vertical-align: top;
      position: relative; }
    #newsletter-form .form label {
      font-size: 14px;
      float: right;
      padding-top: 6px;
      padding-right: 10px; }
    #newsletter-form .form input[type=text] {
      width: 300px;
      font-size: 14px;
      margin-left: 0; }
    #newsletter-form .form input[type=submit] {
      margin-top: 20px; }
      #newsletter-form .form input[type=submit]:disabled {
        opacity: 0.5;
        /* IE 8 */
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        /* IE 5-7 */
        filter: alpha(opacity=50); }
    #newsletter-form .form .error {
      display: none;
      float: left;
      color: red;
      font-size: 12px;
      margin-top: -15px;
      position: relative;
      margin-bottom: 15px; }
    #newsletter-form .form .closeBtn {
      width: 100%;
      margin: 50px 0 0 0;
      text-align: center; }
      #newsletter-form .form .closeBtn a.btn {
        width: 100%; }

/* Resource Panels */
.resource-wrap {
  width: 1010px;
  position: relative;
  margin-left: -20px;
  margin-top: 30px; }
  .resource-wrap:before, .resource-wrap:after {
    content: " ";
    display: table; }
  .resource-wrap:after {
    clear: both; }
  .resource-wrap .section-title {
    margin: 0 0 20px 0;
    padding: 0;
    color: #002f58;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    font-family: 'Open Sans', sans-serif; }
  .resource-wrap a.resource-link {
    display: block;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 18px;
    text-align: center; }
  .resource-wrap > a.btn {
    margin-bottom: 30px; }
  .resource-wrap > h3 {
    font-size: 18px;
    font-weight: 400;
    color: #00457c;
    margin: 0 0 20px 20px; }
  .resource-wrap .resource-intro {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 10px auto;
    font-size: 16px;
    line-height: 1.5; }
    .resource-wrap .resource-intro:before, .resource-wrap .resource-intro:after {
      content: " ";
      display: table; }
    .resource-wrap .resource-intro:after {
      clear: both; }
    .resource-wrap .resource-intro p {
      font-size: 16px;
      line-height: 1.5;
      margin: 0 0 20px 0; }
    .resource-wrap .resource-intro a {
      font-weight: 600; }
  .resource-wrap ul.pagination {
    margin-right: 7px;
    margin-bottom: 0; }

.resource-panel {
  background-color: white;
  padding: 20px 15px;
  margin: 0 0 30px 0;
  text-align: left;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 5px gray ;
  -moz-box-shadow: 0px 0px 5px gray ;
  box-shadow: 0px 0px 5px gray ;
  /* Panel */
  /* Meta Info */
  /* View Options */ }
  .resource-panel .panel {
    position: relative;
    /* Tooltip */
    /* Excerpt */ }
    .resource-panel .panel:before, .resource-panel .panel:after {
      content: " ";
      display: table; }
    .resource-panel .panel:after {
      clear: both; }
    .resource-panel .panel .permissions-hover {
      display: inline-block;
      background: lightblue;
      float: none;
      top: 0; }
    .resource-panel .panel .info-hover {
      position: relative;
      float: right; }
      .resource-panel .panel .info-hover .info-hover__tip {
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        border-radius: 20px;
        color: #FFF;
        background: #016abe;
        width: 30px;
        height: 30px;
        margin-right: 15px;
        position: relative;
        text-align: center;
        font-size: 16px;
        padding-top: 4px;
        cursor: pointer; }
        .resource-panel .panel .info-hover .info-hover__tip:before {
          content: "?";
          width: 30px;
          height: 30px;
          display: inline-block;
          vertical-align: middle;
          text-align: center; }
      .resource-panel .panel .info-hover .info-hover__blurb {
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        background: #016abe;
        padding: 10px 15px;
        position: absolute;
        top: 100%;
        left: -10px;
        width: 250px;
        display: none;
        text-align: left;
        font-size: 14px;
        cursor: default;
        margin-top: 11px; }
        .resource-panel .panel .info-hover .info-hover__blurb:before {
          content: "";
          width: 100px;
          height: 14px;
          position: absolute;
          top: -10px;
          left: 10px;
          background: url("img/infotip-arrowup.png") no-repeat; }
        .resource-panel .panel .info-hover .info-hover__blurb ul {
          margin: 0;
          padding: 0;
          list-style: none; }
          .resource-panel .panel .info-hover .info-hover__blurb ul li {
            color: #FFF; }
            .resource-panel .panel .info-hover .info-hover__blurb ul li a {
              color: #FFF; }
    .resource-panel .panel__excerpt {
      float: left;
      width: 100%; }
      .resource-panel .panel__excerpt--title {
        font-size: 18px;
        color: #222;
        font-weight: 600;
        margin-bottom: 15px; }
      .resource-panel .panel__excerpt--image {
        clear: both;
        display: block;
        width: 100%;
        margin: 10px 0 30px 0; }
      .resource-panel .panel__excerpt--inline-image {
        display: inline-block;
        margin-right: 1em; }
        .resource-panel .panel__excerpt--inline-image + .panel__excerpt--desc {
          max-width: 375px; }
      .resource-panel .panel__excerpt--desc {
        display: inline-block;
        vertical-align: top; }
        .resource-panel .panel__excerpt--desc p {
          font-size: 14px;
          line-height: 20px;
          color: #000;
          margin: 0 0 20px 0; }
        .resource-panel .panel__excerpt--desc span.note {
          display: block;
          font-size: 12px;
          margin-top: -5px;
          margin-bottom: 10px; }
        .resource-panel .panel__excerpt--desc a.video ~ p {
          font-size: 0;
          display: none;
          visibility: hidden; }
        .resource-panel .panel__excerpt--desc a.video {
          position: relative;
          width: 100%;
          height: 110px;
          margin: 10px 0;
          display: block;
          overflow: hidden; }
          .resource-panel .panel__excerpt--desc a.video:after {
            content: "";
            width: 80px;
            height: 80px;
            background: url("img/video-play.png") no-repeat center center;
            margin-top: -40px;
            margin-left: -40px;
            position: absolute;
            top: 50%;
            left: 50%;
            z-index: 100; }
          .resource-panel .panel__excerpt--desc a.video .videoThumb {
            z-index: 50;
            width: 100%;
            height: auto;
            margin-top: -120px; }
    .resource-panel .panel__tags ul li {
      color: #888888; }
      .resource-panel .panel__tags ul li a {
        color: #888888; }
        .resource-panel .panel__tags ul li a:hover {
          color: #016abe;
          text-decoration: underline; }
  .resource-panel .meta-info {
    float: left;
    width: 100%; }
    .resource-panel .meta-info:before, .resource-panel .meta-info:after {
      content: " ";
      display: table; }
    .resource-panel .meta-info:after {
      clear: both; }
    .resource-panel .meta-info__tags {
      float: left; }
      .resource-panel .meta-info__tags ul {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-top: 8px; }
        .resource-panel .meta-info__tags ul li {
          display: inline-block;
          font-size: 14px;
          margin-right: 50px; }
          .resource-panel .meta-info__tags ul li .subscribe {
            display: inline-block;
            border-left: 1px solid #ebebeb;
            font-weight: bold;
            color: #016abe;
            font-size: 14px;
            line-height: 25px;
            padding-left: 10px;
            margin-left: 10px; }
    .resource-panel .meta-info .meta-info__cta .btn.sm {
      padding: 8px 10px !important;
      font-size: 12px;
      margin-left: 10px;
      min-width: 100px;
      text-align: center; }
      .resource-panel .meta-info .meta-info__cta .btn.sm:first-child {
        margin-left: 0; }
  .resource-panel.list-view {
    width: 1000px;
    min-height: 150px;
    float: left; }
    .resource-panel.list-view .panel {
      /* Tags */ }
      .resource-panel.list-view .panel__excerpt {
        width: 670px; }
      .resource-panel.list-view .panel__tags {
        float: left;
        text-align: right;
        width: 300px;
        padding: 10px 0 10px 2px; }
        .resource-panel.list-view .panel__tags ul {
          margin: 0;
          padding: 0;
          list-style: none; }
          .resource-panel.list-view .panel__tags ul li {
            font-size: 12px;
            color: #888888;
            text-align: right;
            margin-bottom: 1px; }
        .resource-panel.list-view .panel__tags a {
          font-size: 12px; }
      .resource-panel.list-view .panel .meta-info__tags {
        width: 670px; }
      .resource-panel.list-view .panel .meta-info__cta {
        float: left;
        width: 300px;
        text-align: right; }
  .resource-panel.grid-view {
    float: left;
    width: 495px;
    margin: 0 10px 30px 0; }
    .resource-panel.grid-view .panel {
      height: 310px;
      /* Tags */ }
      .resource-panel.grid-view .panel__excerpt {
        margin-top: 10px; }
      .resource-panel.grid-view .panel__tags {
        float: left;
        text-align: left;
        padding-top: 10px;
        width: 100%;
        border-top: 1px solid #ebebeb; }
        .resource-panel.grid-view .panel__tags ul {
          margin: 0;
          padding: 0;
          list-style: none; }
          .resource-panel.grid-view .panel__tags ul li {
            font-size: 12px;
            color: #888888;
            display: inline-block;
            margin-bottom: 4px; }
            .resource-panel.grid-view .panel__tags ul li:after {
              content: ","; }
            .resource-panel.grid-view .panel__tags ul li:last-child:after {
              content: ""; }
        .resource-panel.grid-view .panel__tags a {
          font-size: 12px; }
      .resource-panel.grid-view .panel .positioning {
        position: absolute;
        width: 100%;
        bottom: 0; }
        .resource-panel.grid-view .panel .positioning .meta-info {
          margin-top: 10px;
          display: table;
          width: 100%; }
          .resource-panel.grid-view .panel .positioning .meta-info__tags {
            display: table-cell;
            vertical-align: bottom; }
            .resource-panel.grid-view .panel .positioning .meta-info__tags ul {
              margin: 0;
              padding: 0;
              list-style: none;
              width: 100%; }
              .resource-panel.grid-view .panel .positioning .meta-info__tags ul li {
                display: block;
                font-size: 12px;
                margin-right: 0;
                margin-bottom: 5px; }
          .resource-panel.grid-view .panel .positioning .meta-info__cta {
            display: table-cell;
            vertical-align: bottom;
            text-align: right;
            margin-bottom: 10px; }
    .resource-panel.grid-view.featured .panel {
      height: 690px; }
    .resource-panel.grid-view.blog.featured-large {
      width: 655px; }
    .resource-panel.grid-view.blog.featured-small {
      width: 332px; }
    .resource-panel.grid-view.blog .panel__excerpt .panel__excerpt--desc p {
      margin-bottom: 10px; }
    .resource-panel.grid-view.blog .panel__excerpt .panel__excerpt--desc a.view-post {
      font-weight: 600; }
    .resource-panel.grid-view.blog .positioning .blog-meta-info {
      float: left;
      margin-top: 15px;
      display: table;
      width: 100%; }
      .resource-panel.grid-view.blog .positioning .blog-meta-info__thumb {
        display: table-cell;
        width: 40px;
        height: 40px;
        overflow: hidden;
        vertical-align: top; }
        .resource-panel.grid-view.blog .positioning .blog-meta-info__thumb img {
          width: 100%;
          max-width: 40px; }
      .resource-panel.grid-view.blog .positioning .blog-meta-info__author {
        display: table-cell;
        padding-left: 15px;
        vertical-align: top; }
        .resource-panel.grid-view.blog .positioning .blog-meta-info__author ul {
          margin: 0;
          padding: 0;
          list-style: none;
          margin-top: -3px; }
          .resource-panel.grid-view.blog .positioning .blog-meta-info__author ul li {
            display: inline-block;
            font-size: 12px;
            margin-bottom: 5px;
            border-right: 1px solid #ebebeb;
            padding-right: 10px;
            margin-right: 10px; }
            .resource-panel.grid-view.blog .positioning .blog-meta-info__author ul li:last-child {
              border-right: 0;
              padding-right: 0; }
            .resource-panel.grid-view.blog .positioning .blog-meta-info__author ul li a {
              font-weight: 600; }
        .resource-panel.grid-view.blog .positioning .blog-meta-info__author .date {
          font-size: 12px; }
      .resource-panel.grid-view.blog .positioning .blog-meta-info__cta {
        display: table-cell;
        vertical-align: bottom;
        text-align: right;
        margin-bottom: 10px; }

/* Badges */
.panel__badge {
  width: auto;
  height: 29px;
  font-size: 12px;
  color: #FFF;
  background: #a255de;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  -moz-border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  /* Badge Colors */ }
  .panel__badge span {
    padding: 0 12px;
    display: inline-block; }
  .panel__badge:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 29px;
    background: url("img/badge-left-arrow.png") no-repeat 0 0; }
  .panel__badge.green {
    background: #65bf54; }
  .panel__badge.turquoise {
    background: #54c0d3; }
  .panel__badge.purple {
    background: #a255de; }

/* Permissions */
.panel__permissions {
  display: inline-block;
  vertical-align: middle;
  background: #ababab;
  width: auto;
  height: 29px;
  line-height: 29px;
  padding-left: 10px;
  padding-right: 10px;
  border-left: 1px solid #FFF;
  position: relative;
  margin-right: -2px;
  -moz-border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  /* Locked */
  /* Unlocked */ }
  .panel__permissions span {
    padding-left: 0;
    padding-right: 0; }
  .panel__permissions .locked {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 21px;
    background: url("img/icon-locked-white.png") no-repeat 0 0;
    background-size: 17px 16px;
    line-height: 29px;
    margin: 0; }
    .panel__permissions .locked:after {
      display: none; }
  .panel__permissions .unlocked {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 21px;
    background: url("img/icon-unlocked-white.png") no-repeat 0 0;
    background-size: 17px 16px;
    line-height: 29px;
    margin: 0; }
    .panel__permissions .unlocked:after {
      display: none; }

/* Scrolling Resources */
.resourceScroller .item .resource-panel.grid-view {
  margin: 5px; }
.resourceScroller .slick-prev {
  margin-left: -30px; }
.resourceScroller .slick-next {
  margin-right: -30px; }

.search-by-type {
  width: 100%;
  text-align: center;
  margin-top: 25px;
  float: left; }
  .search-by-type .search-type--title {
    color: #002f58;
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 30px; }
  .search-by-type ul.search-type--list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    margin-bottom: 15px;
    width: 100%; }
    .search-by-type ul.search-type--list li {
      display: inline-block;
      width: 33%;
      padding: 0 0 30px; }
      .search-by-type ul.search-type--list li a {
        font-size: 18px;
        font-weight: 600; }

.doc-intro {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: -20px; }
  .doc-intro:before, .doc-intro:after {
    content: " ";
    display: table; }
  .doc-intro:after {
    clear: both; }
  .doc-intro .back {
    width: 100%;
    margin-top: -20px;
    margin-bottom: 20px; }
    .doc-intro .back a {
      font-size: 12px;
      padding-left: 13px;
      background: url("img/arrow-left-menu.png") no-repeat 0 3px; }
  .doc-intro h1.title {
    margin: 0 0 30px 0;
    padding: 0;
    font-size: 35px;
    font-weight: 300;
    color: #016abe;
    max-width: 700px; }
  .doc-intro h2 {
    font-size: 22px;
    color: #016abe;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0; }
  .doc-intro hr {
    margin: 60px 0; }
  .doc-intro .panel__badge {
    margin-top: 10px; }
  .doc-intro .cta-wrap {
    width: 100%;
    margin-bottom: 50px; }
    .doc-intro .cta-wrap:before, .doc-intro .cta-wrap:after {
      content: " ";
      display: table; }
    .doc-intro .cta-wrap:after {
      clear: both; }
    .doc-intro .cta-wrap ul {
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 0; }
      .doc-intro .cta-wrap ul li {
        display: inline-block;
        margin-right: 15px; }
        .doc-intro .cta-wrap ul li a.btn {
          font-size: 12px !important;
          padding: 8px 15px; }
  .doc-intro--meta {
    width: 100%;
    margin-bottom: 40px;
    display: table; }
    .doc-intro--meta ul {
      margin: 0;
      padding: 0;
      list-style: none;
      vertical-align: top;
      display: table-cell;
      font-size: 0;
      margin-right: 40px; }
      .doc-intro--meta ul:last-child {
        margin-right: 0; }
      .doc-intro--meta ul li {
        color: gray;
        font-size: 14px;
        margin-bottom: 5px; }
        .doc-intro--meta ul li.title {
          font-size: 16px;
          color: #016abe;
          font-weight: 600; }
  .doc-intro--tags {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px; }
    .doc-intro--tags:before, .doc-intro--tags:after {
      content: " ";
      display: table; }
    .doc-intro--tags:after {
      clear: both; }
    .doc-intro--tags__title {
      font-size: 16px;
      color: #016abe;
      font-weight: 600; }
    .doc-intro--tags ul {
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 0;
      margin-top: 10px; }
      .doc-intro--tags ul li {
        font-size: 14px;
        display: inline-block;
        width: 33%;
        margin-bottom: 6px; }
        .doc-intro--tags ul li a {
          color: gray; }
          .doc-intro--tags ul li a:hover {
            color: #016abe;
            text-decoration: underline; }
  .doc-intro__desc {
    font-size: 14px; }
    .doc-intro__desc:before {
      content: "";
      display: block;
      margin-bottom: 20px;
      width: 40px;
      height: 1px;
      background: #d9d9d9; }
    .doc-intro__desc .note {
      font-size: 14px;
      margin-bottom: 14px;
      margin-top: -10px; }
    .doc-intro__desc p {
      font-size: 14px;
      margin: 0 0 20px 0; }
  .doc-intro .partsTable {
    margin-bottom: 0; }

/* Newsletter Lightbox Form */
.signup-wizard-form-wrap {
  padding: 0;
  overflow: hidden; }

#signup-wizard-form {
  padding: 90px 0px 20px 0px;
  position: relative;
  width: 820px;
  /* Wizard Header */
  /* State Bar */ }
  #signup-wizard-form .wizard-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 25px;
    border-bottom: 10px solid #00457c;
    -moz-border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0; }
    #signup-wizard-form .wizard-header h2 {
      font-size: 30px;
      color: #00457c;
      margin-bottom: 20px;
      line-height: 1.3em;
      font-weight: 300;
      margin-top: 20px; }
  #signup-wizard-form ul.state-bar {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #e2e4e6;
    width: 100%;
    height: 29px;
    display: table;
    table-layout: fixed; }
    #signup-wizard-form ul.state-bar li {
      display: table-cell;
      vertical-align: middle;
      text-align: center;
      font-size: 14px;
      color: #aeaeae;
      text-transform: uppercase; }
      #signup-wizard-form ul.state-bar li:last-child {
        background: none; }
        #signup-wizard-form ul.state-bar li:last-child a:after {
          display: none; }
      #signup-wizard-form ul.state-bar li a {
        display: block;
        height: 29px;
        padding-top: 5px;
        text-decoration: none;
        position: relative;
        padding-right: 10px; }
        #signup-wizard-form ul.state-bar li a:after {
          content: "";
          width: 20px;
          height: 29px;
          position: absolute;
          top: 0;
          right: 0;
          background: url("img/state-bar-pointer.png") no-repeat right center #3abeeb; }
        #signup-wizard-form ul.state-bar li a.disabled {
          cursor: default;
          color: #aeaeae; }
          #signup-wizard-form ul.state-bar li a.disabled:after {
            content: "";
            width: 20px;
            height: 29px;
            position: absolute;
            top: 0;
            right: 0;
            background: url("img/state-bar-pointer-line.png") no-repeat right center; }
        #signup-wizard-form ul.state-bar li a.active {
          background: #3abeeb;
          color: #FFF;
          cursor: default; }
        #signup-wizard-form ul.state-bar li a.complete {
          background: #999999;
          color: #FFF; }
          #signup-wizard-form ul.state-bar li a.complete:after {
            content: "";
            width: 20px;
            height: 29px;
            position: absolute;
            top: 0;
            right: 0;
            background: url("img/state-bar-pointer-line.png") no-repeat right center #999999; }
          #signup-wizard-form ul.state-bar li a.complete.last:after {
            content: "";
            width: 20px;
            height: 29px;
            position: absolute;
            top: 0;
            right: 0;
            background: url("img/state-bar-pointer-complete.png") no-repeat right center #999999; }
  #signup-wizard-form .note {
    font-size: 12px;
    margin: 0 0 10px 0; }
    #signup-wizard-form .note.account-signup {
      margin-top: 50px; }
  #signup-wizard-form .form {
    display: table;
    width: 100%;
    margin-top: 40px;
    font-size: 16px;
    /* Selectbox Styling */ }
    #signup-wizard-form .form:before, #signup-wizard-form .form:after {
      content: " ";
      display: table; }
    #signup-wizard-form .form:after {
      clear: both; }
    #signup-wizard-form .form ul {
      padding: 0 0 0 20px;
      margin: 10px 0 20px 0;
      float: left; }
      #signup-wizard-form .form ul li {
        margin-bottom: 5px; }
    #signup-wizard-form .form hr {
      display: block;
      width: 100%;
      margin: 20px 0 30px 0;
      float: left; }
      #signup-wizard-form .form hr:before, #signup-wizard-form .form hr:after {
        content: " ";
        display: table; }
      #signup-wizard-form .form hr:after {
        clear: both; }
    #signup-wizard-form .form .row {
      width: 100%;
      margin: 0;
      font-size: 0;
      /* Matching Password */ }
      #signup-wizard-form .form .row:before, #signup-wizard-form .form .row:after {
        content: " ";
        display: table; }
      #signup-wizard-form .form .row:after {
        clear: both; }
      #signup-wizard-form .form .row h3 {
        font-size: 16px;
        color: #002f58;
        font-weight: 400;
        margin-bottom: 20px; }
      #signup-wizard-form .form .row h4 {
        font-size: 14px;
        font-weight: bold;
        color: #000;
        margin-bottom: 5px; }
      #signup-wizard-form .form .row .cell {
        display: table-cell;
        width: 100%;
        padding: 0 80px; }
        #signup-wizard-form .form .row .cell.offsetRight {
          padding-left: 235px; }
        #signup-wizard-form .form .row .cell p {
          font-size: 14px; }
      #signup-wizard-form .form .row .celleven {
        display: table-cell;
        width: 50%;
        padding-left: 80px; }
      #signup-wizard-form .form .row .cellone {
        display: inline-block;
        width: 235px;
        padding-left: 80px;
        padding-top: 8px;
        text-align: left;
        vertical-align: top;
        position: relative; }
      #signup-wizard-form .form .row .celltwo {
        display: inline-block;
        vertical-align: top;
        position: relative; }
      #signup-wizard-form .form .row ul.user-info {
        margin: 0;
        padding: 0;
        list-style: none;
        font-size: 0;
        width: 400px; }
        #signup-wizard-form .form .row ul.user-info li {
          display: inline-block;
          width: 200px;
          font-size: 14px; }
      #signup-wizard-form .form .row .buttons {
        display: inline-block;
        width: 50%;
        margin-top: 50px;
        font-size: 14px; }
        #signup-wizard-form .form .row .buttons.left {
          padding-left: 80px; }
        #signup-wizard-form .form .row .buttons.right {
          padding-right: 80px;
          text-align: right; }
        #signup-wizard-form .form .row .buttons a {
          font-weight: 600;
          margin-right: 40px; }
        #signup-wizard-form .form .row .buttons.close {
          margin-right: 0;
          width: 100%;
          text-align: right; }
          #signup-wizard-form .form .row .buttons.close a {
            margin-right: 0; }
      #signup-wizard-form .form .row.passwordCheck {
        padding: 0 80px; }
        #signup-wizard-form .form .row.passwordCheck .buttons {
          margin-top: 10px; }
          #signup-wizard-form .form .row.passwordCheck .buttons.left {
            padding-left: 0; }
          #signup-wizard-form .form .row.passwordCheck .buttons.right {
            padding-right: 0; }
        #signup-wizard-form .form .row.passwordCheck .cell {
          padding-left: 0; }
      #signup-wizard-form .form .row a.btn {
        padding: 12px 25px; }
      #signup-wizard-form .form .row #checkPasswordMatch {
        font-size: 14px;
        color: red;
        display: none; }
    #signup-wizard-form .form label {
      font-size: 14px;
      padding-right: 10px; }
      #signup-wizard-form .form label.check {
        margin-bottom: 10px; }
    #signup-wizard-form .form input[type=text],
    #signup-wizard-form .form input[type=password] {
      width: 335px;
      font-size: 14px;
      margin-left: 0; }
    #signup-wizard-form .form input[type=submit], #signup-wizard-form .form input[type=button] {
      margin-top: 20px;
      font-size: 14px;
      text-transform: uppercase;
      min-width: 120px; }
      #signup-wizard-form .form input[type=submit]:disabled, #signup-wizard-form .form input[type=button]:disabled {
        opacity: 0.5;
        /* IE 8 */
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        /* IE 5-7 */
        filter: alpha(opacity=50); }
    #signup-wizard-form .form span.selectbox {
      font-size: 13px;
      background-color: #006abf;
      color: #FFF;
      padding: 8px 7px;
      border: 0;
      -moz-border-radius: 5px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      margin: 0 0 20px 0;
      width: 335px; }
    #signup-wizard-form .form span.selectbox.changed {
      background-color: #f0dea4; }
    #signup-wizard-form .form span.customSelectInner[style] {
      background: url("img/arrow-down-select.png") no-repeat center right;
      padding-right: 40px;
      width: 100% !important; }
    #signup-wizard-form .form .error {
      clear: both;
      display: none;
      float: left;
      color: red;
      font-size: 12px;
      margin-top: -10px;
      position: relative;
      margin-bottom: 15px; }
      #signup-wizard-form .form .error.agree {
        clear: both;
        padding-left: 30px;
        margin-top: 5px; }
    #signup-wizard-form .form .closeBtn {
      width: 100%;
      margin: 50px 0 0 0;
      text-align: center; }
      #signup-wizard-form .form .closeBtn a.btn {
        width: 100%; }
    #signup-wizard-form .form.thank-you {
      padding: 0 80px; }
      #signup-wizard-form .form.thank-you h2 {
        color: #3abeeb;
        font-size: 38px;
        font-weight: 300;
        padding: 40px 0 50px 0;
        text-align: center; }
      #signup-wizard-form .form.thank-you ul.featuresList li {
        font-size: 14px; }

/* Newsletter Lightbox Form */
.newsletter-form-wrap {
  overflow: hidden; }

#signin-form {
  padding: 20px;
  width: 600px; }
  #signin-form h2 {
    font-size: 30px;
    color: #002f58;
    margin-bottom: 20px;
    line-height: 1.3em;
    font-weight: 300;
    margin-top: 20px; }
  #signin-form .note {
    font-size: 12px;
    margin: 0 0 10px 0; }
    #signin-form .note.account-signup {
      margin-top: 50px; }
  #signin-form .form {
    display: table;
    width: 100%;
    font-size: 16px;
    /* Checkbox and Radio Button Styling */ }
    #signin-form .form:before, #signin-form .form:after {
      content: " ";
      display: table; }
    #signin-form .form:after {
      clear: both; }
    #signin-form .form ul {
      padding: 0 0 0 20px;
      margin: 10px 0 20px 0;
      float: left; }
      #signin-form .form ul li {
        margin-bottom: 5px; }
    #signin-form .form .row {
      display: block;
      width: 100%;
      padding: 0;
      margin: 0 0 20px 0;
      float: left;
      height: auto; }
    #signin-form .form .cell {
      display: inline-block;
      width: 100%;
      padding: 0;
      position: relative;
      text-align: left; }
    #signin-form .form .cell-split {
      display: table-cell;
      width: 280px;
      padding: 0;
      vertical-align: middle; }
    #signin-form .form label {
      font-size: 14px;
      float: right;
      padding-top: 6px;
      padding-right: 10px; }
    #signin-form .form input[type=text], #signin-form .form input[type=password] {
      width: 100%;
      font-size: 14px;
      margin: 0;
      padding: 0; }
    #signin-form .form input[type=password] {
      margin-bottom: 10px; }
    #signin-form .form .forgot-password {
      padding: 0 0 0 10px;
      display: block; }
    #signin-form .form input[type="checkbox"] + label {
      float: left; }
    #signin-form .form input[type=submit] {
      float: right; }
      #signin-form .form input[type=submit]:disabled {
        opacity: 0.5;
        /* IE 8 */
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        /* IE 5-7 */
        filter: alpha(opacity=50); }
    #signin-form .form .error {
      display: none;
      float: left;
      color: red;
      font-size: 12px;
      margin-top: 10px;
      position: relative; }
    #signin-form .form .closeBtn {
      width: 100%;
      margin: 50px 0 0 0;
      text-align: center; }
      #signin-form .form .closeBtn a.btn {
        width: 100%; }

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