/*@import "/Styles/mixins.less";*/
.opacity {
  opacity: .85;
  filter: alpha(opacity=85);
  -khtml-opacity: .85;
  -moz-opacity: .85;
}
.display-none {
  display: none;
}
/*@import "/Styles/elements.less";*/
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/*@import "/Styles/flexslider.less";*/

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

/* Browser Resets
*********************************/

.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}
.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* Icon Fonts
*********************************/

/* Font-face Icons */

@font-face {
  font-family: 'flexslider-icon';
  src: url('/fonts/flexslider-icon.eot');
  src: url('/fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('/fonts/flexslider-icon.woff') format('woff'), url('/fonts/flexslider-icon.ttf') format('truetype'), url('/fonts/flexslider-icon.svg#flexslider-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* FlexSlider Necessary Styles
*********************************/

.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
/* Hide the slides before the JS is loaded. Avoids image jumping */

.flexslider .slides img {
  width: 100%;
  display: block;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* Clearfix for the .slides element */

.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .slides {
  display: block;
}
* html .slides {
  height: 1%;
}
/* No JavaScript Fallback */

/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */

.no-js .slides > li:first-child {
  display: block;
}
/* FlexSlider Default Theme
*********************************/

.flexslider {
  margin: 0 0 60px;
  background: transparent;
  border: 0px position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  zoom: 1;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.flexslider .slides {
  zoom: 1;
}
.carousel li {
  margin-right: 5px;
}
/* Direction Nav */

.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: white;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}
.flex-direction-nav .flex-prev {
  left: 20px;
  opacity: 0.5;
}
.flex-direction-nav .flex-next {
  right: 20px;
  text-align: right;
  opacity: 0.5;
}
/*.flexslider:hover .flex-prev { opacity: 0.7; left: 10px; }
.flexslider:hover .flex-next { opacity: 0.7; right: 10px; }*/

.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
}
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 35px;
  display: inline-block;
  content: '\f001';
}
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}
/* Pause/Play */

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: black;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
/* Control Nav */

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}
.flex-control-paging li a:hover {
  background: #333333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: black;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
.caption-cta {
  left: 0;
  position: relative;
  text-align: center;
  top: -175px;
  width: 100%;
}
h2 {
  color: white;
  text-shadow: 1px 1px 1px #333333;
}
h2:hover {
  color: #6a747b;
}
@media screen and (max-width: 860px) {
  h2 .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  h2 .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/*@import "/Styles/base.less";*/

html {
  opacity: 1!important;
}
.tabs {
  text-align: left;
  margin-top: 10px;
}
.tabs a {
  line-height: 65px;
  background-color: #212c43;
  height: 65px;
  display: inline-block;
  width: 32.9%;
  margin-bottom: 5px;
}
.tabs a img {
  padding-right: 5px;
  padding-left: 10px;
}
.tabs a:hover {
  background-color: #151c2b;
}
.tabs a.active {
  background-color: #111111;
  border-bottom: 3px solid #bc9a52;
}
.tabcontrols {
  text-align: left;
}
.tabcontrols a {
  line-height: 65px;
  background-color: #273552;
  height: 65px;
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.tabcontrols a img {
  padding-right: 5px;
  padding-left: 10px;
}
.tabcontrols a:hover {
  background-color: #212c43;
}
.tabcontrols a.flex-active {
  color: white;
}
.tabcontrols i,
.tabs i {
  padding: 10px;
  vertical-align: middle;
}
/* Block Quotes */

.bodyLeft {
  float: left;
  width: 65%;
}
.bodyRight {
  float: left;
  width: 35%;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: url(../images/spacer.gif) repeat;
  font-weight: 300;
}
body p,
body h1,
body h2,
body h3,
body h4 {
  color: #999999;
  font-weight: 300;
}
body a {
  color: #999999;
  text-decoration: none;
}
body a:hover {
  color: #666666;
  text-decoration: none;
  background-color: transparent;
}
body a:hover .panelfooter {
  background-color: #222222;
}
body a:focus {
  text-decoration: none;
  color: #6a747b;
}
body .fa-ul {
  margin-left: 2em;
}
body #side-column ul.fa-ul {
  margin-left: 0em;
}
body #side-column .fa-li {
  margin-top: 15px;
}
body #side-column .fa-li,
body #side-column .fa-li + a {
  margin-left: 1.5em;
  font-weight: 500;
  padding: 15px 4px 8px 4px;
}
body #side-column .panel-default .panel-heading {
  font-weight: 500;
}
body button.btn-textlink {
  background: transparent;
  border: 0px;
  color: #6a747b;
  padding: 0px;
}
.color {
  color: #6a747b;
}
.text-primary {
  color: #999999;
}
.center-block {
  float: none;
}
.col-centered {
  float: none;
  margin: 0 auto;
}
.navbar {
  margin-bottom: 30px;
  background-color: whitesmoke;
}
.logo {
  text-align: center;
}
.logo a {
  display: block;
}
#main-content .page-header {
  margin-top: 0px;
}
#main-content .page-header:empty {
  display: none;
}
#main-content .scfValidationSummary li {
  color: red;
}
#main-content .intro {
  margin: 0px 0px 10px 0px;
  float: left;
}
#main-content img {
max-width: 750px;
  height: auto;
}
#main-content .bannerimage img {
  max-width: 100%;
}
#main-content .slides img {
max-height: 280px;
  max-width: 1203px;
}
#main-content .fa-ul li {
  color: #6a747b;
}
/** login **/

.login {
  text-align: right;
  padding: 20px;
}
.login input {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-weight: 100;
  text-align: center;
  font-weight: 300;
  font-family: 'raleway', arial, helvetica, sans-serif;
}
.login input:last-child {
  padding-left: 25px;
  background: url(/~/media/Images/social-icons/icon-lock.png) no-repeat 5px 5px #6a747b;
  border: 1px solid #dfe4e7;
}
.login input:last-child:hover {
  color: #1f2931;
}
/**flexslider **/

.flexslider {
  height: 300px;
  margin: 0 0 30px;
}
.flexslider.tabbed {
  height: 100%;
}
.flexslider .caption-cta .btn:hover {
  color: white;
}
/** callouts & accordions **/

.home-callout .panel-default {
  margin-bottom: 20px;
  background-color: whitesmoke;
  clear: both;
}
.home-callout .panel-default .panel-heading {
  font-weight: 500;
}
.home-callout .panel-default span.link {
  color: #6a747b;
  border-bottom: 0px;
  margin-bottom: 0px;
  font-style: normal;
}
.home-callout p {
  height: 60px;
  overflow: hidden;
}
/* secondary callout style */

.calloutStyle2 .panel-default {
  background: #3e5264;
  margin-bottom: 20px;
}
.calloutStyle2 .panel-default .panel-heading {
  background: transparent;
  color: white;
  font-weight: 500;
  font-size: 18px;
  border-bottom: 0;
  padding-bottom: 0px;
  border-top: 1px solid black;
}
.calloutStyle2 .panel-default .panel-body {
  padding-top: 0;
}
.calloutStyle2 .panel-default .panel-body ul.fa-ul {
  margin-left: 0;
}
.calloutStyle2 .panel-default .panel-body ul.fa-ul li {
  line-height: 1.5em;
  font-weight: 500;
}
#main-content .casestudy {
  background: #3e5264;
  color: #bec9cf;
  border-top: 1px solid black;
  padding: 10px 20px 20px 20px;
  margin: 20px 0px;
}
#main-content .casestudy h2 {
  color: white;
}
#main-content .casestudy h4 {
  color: #bec9cf;
}
#accordion {
  border: 0px;
}
#accordion a,
#accordion:focus {
  text-decoration: none!important;
}
#accordion .panel-heading {
  background: black;
  font-weight: 500;
}
#accordion .panel-heading:hover {
  background: #3e5264;
}
#accordion .panel-heading .panel-title {
  color: #6a747b;
}
#accordion .panel-heading .panel-title > a {
  display: block;
}
#accordion .panel-body {
  background: #3e5264;
}
#accordion .panel-body p,
#accordion .panel-body li {
  color: white;
}
#accordion div {
  background: #3e5264;
}
#side-column {
  float: right;
}
#side-column .fa-li {
  color: #6a747b;
}
#side-column #accordion .panel-body #accordion {
  border-bottom: 1px solid #333333;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  box-shadow: none;
  background: none;
  border-radius: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
}
#side-column #accordion .panel-body #accordion .panel-heading {
  border-top: 0px solid #cccccc;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  font-weight: 500;
}
#side-column #accordion .panel-body #accordion .panel-heading h4 a {
  color: #6a747b;
}
#side-column #accordion .panel-body #accordion .panel-heading:hover {
  background: #333333;
  text-decoration: none;
}
#side-column .panel-default:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#side-column .featured .panel-default .panel-heading {
  background-color: #6a747b;
  color: #3e5264;
  font-weight: 500;
}
#side-column .featured .fa-li + a,
#side-column .related-resources .fa-li + a {
  padding: 15px 4px 15px 12px!important;
  border-bottom: 0px;
  line-height: 30px;
}
#side-column .featured li,
#side-column .related-resources li {
  border-bottom: 1px dashed;
}
#side-column .featured li:last-child,
#side-column .related-resources li:last-child {
  border-bottom: 0;
}
blockquote {
  text-align: center;
  border-left: 0px;
}
footer .panelfooter {
  padding: 10px;
}
footer .social-links a {
  margin-top: 10px;
  display: block;
}
footer .contact button,
footer .contact a {
  margin: 10px 0px 0px 0px;
  display: inherit;
}
.flex-active .rj-icon {
  color: #3e5264;
}
.rj-icon {
  position: relative;
  left: -0.3em;
  width: .65em;
  top: 0.1em;
  margin-right: .2em;
  text-align: center;
  color: #6a747b;
  float: left;
  display: inline-block;
  font-size: 1.3333333333333333em;
  line-height: .75em;
  vertical-align: -15%;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.addthis_toolbox {
  margin: 20px 0px 10px 0px;
}
h4.boxtitle {
  background: black;
  padding: 15px;
  margin: 0px;
  color: #6a747b;
}
div.flexslider.knowledge_center_slider.blocks {
  background: #333333;
  padding: 20px;
  height: 150px;
}
div.flexslider.knowledge_center_slider.blocks li {
  width: 230px!important;
}
div.kc_feature_img {
  float: left;
  height: 150px;
  margin: 0px 10px;
}
.kc_feature_headline {
  font-size: 12px;
  color: #a89447;
  text-align: left;
  margin-top: 3px;
}
.kc_feature_text {
  font-size: 10px;
  color: #cccccc;
  text-align: left;
  margin-left: 24px;
}
.kc_feature_text .fa {
  color: #6a747b;
}
body #side-column .newsletters .fa-li,
body #side-column .newsletters .fa-li + a {
  margin: 0 0 0 20px;
  padding: 0 5px 0 0;
}
blockquote.bq_callout {
  display: block;
  text-align: center;
  padding: 10px;
  color: #6a747b;
  font-size: 17px;
  font-style: italic;
  border: none;
  margin: 15px;
  float: right;
}
blockquote.bq_callout .fa {
  display: block;
}
.bannerimage img {
  width: 100%;
}
.addthis_toolbox {
  margin: 20px 0px 10px 0px;
  float: right;
}
.col-md-12 > .addthis_toolbox {
  margin: 20px 0px 10px;
}
.featured-articles ul {
  margin-left: 0px;
}
.MssPage {
  margin: 20px;
  float: left;
}
.MssPage .scfSingleLineGeneralPanel,
.MssPage .scfListBoxGeneralPanel,
.MssPage .scfDropListGeneralPanel,
.MssPage .scfMultipleLineGeneralPanel,
.MssPage .scfEmailGeneralPanel {
  width: 97%;
}
.MssPage .scfRequired {
  color: red;
  font-weight: 800;
}
.MssPage .scfSectionBorderAsFieldSet {
  border-top: 1px dashed #6a747b;
  margin: 20px 0px;
  width: 100%;
  float: left;
}
span#phmain_0_rptChildren_ctl00_1_spanOuter_1 {
  margin-top: -20px;
}
.scfSectionBorderAsFieldSet label {
  width: 100%;
  margin-top: 15px;
}
.scfSectionBorderAsFieldSet .scfSingleLineGeneralPanel,
.scfSectionBorderAsFieldSet .scfEmailGeneralPanel,
.scfSectionBorderAsFieldSet .scfDropListGeneralPanel,
.scfSectionBorderAsFieldSet .scfMultipleLineGeneralPanel {
  width: 97%;
}
.scfForm {
  font-family: 'raleway', arial, helvetica, sans-serif !important;
}
.scfForm input,
.scfForm select,
.scfForm textarea {
  clear: both;
  float: left;
}
.scfSectionBorder {
  padding: 0px 10px;
}
.scfSectionContent label {
  margin-top: 10px;
}
label,
.scfSingleLineTextLabel {
  padding: 10px 0px 0px;
  margin: 0px;
  width: 100%;
}
.scfForm input,
.scfForm select,
.scfForm textarea {
  background: #3e5264;
  padding: 5px;
  border: 1px solid #999999;
  width: 100%;
}
.scfCaptchaGeneralPanel td input {
  /*margin-left: 20px;*/
  border: 0px;
  background: 0px;
}
.scfForm input.scfSubmitButton {
  margin-bottom: 30px;
  color: white;
  background-color: #6a747b;
  border-color: #6a747b;
  border-radius: 5px;
}
@media screen and (max-width: 860px) {
  .scfForm input.scfSubmitButton {
    width: 100%;
  }
}
div#form_85FB1FADC6AE4BFE8307F199B23D11D4_field_13337817E46443218D4ADF81DBC29D6Bborder {
  float: left;
  margin: 0 0 20px;
}
input#form_85FB1FADC6AE4BFE8307F199B23D11D4_field_43559CC0100E4E3290656431E6C7946E,
.scfHiddenFieldGeneralPanel {
  display: none;
}
.scfCaptcha {
  clear: both;
  float: left;
  text-align: left;
  width: 100%;
}
.scfCaptcha div {
  text-align: left;
  float: left;
}
.scfCaptcha div .scfCaptchaLabel {
  display: none;
}
#error {
  text-align: center;
}
#error h1.page-header {
  font-size: 320%;
  color: #a94442;
  margin-top: 0px;
  text-align: center;
}
#error .alert {
  margin-top: 50px;
  text-align: center;
}
#error .alert p {
  font-family: 'open sans', sans-serif;
  font-size: 130%;
  color: #a94442;
}
#error footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
/** map and directions **/

#map #pnlMap {
  margin: 20px;
}
#map #map_canvas {
  width: 100%;
  height: 500px;
  margin: 20px 0;
}
#map #directionsBlock {
  width: 100%;
  min-height: 500px;
  color: #cccccc;
}
#map td,
#map th {
  padding: 10px;
}
#map .adp-summary,
#map .adp-directions,
#map .adp-substep {
  color: #cccccc;
}
#map table.adp-directions {
  width: 100%;
}
#map .adp-substep .adp-stepicon {
  display: none;
}
#map input#txtFromAddress {
  padding: 0px 5px;
  line-height: 1em;
  height: 36px;
}
/** blog **/

#blog .blog-post {
  border-bottom: 1px dashed #6a747b;
  padding: 20px 0px;
  margin-bottom: 20px;
}
#blog .blog-post .wb-image {
  float: left;
  margin: 0px 20px 15px 0px;
  min-width: 100px;
  min-height: 100px;
}
#blog .blog-post h3 {
  font-weight: 700;
  margin-top: 0px;
  color: #6a747b;
}
#blog .blog-post .post-data {
  font-style: italic;
  margin-top: 20px;
}
#blog .blog-post .post-data span {
  font-size: 125%;
  margin-right: 10px;
}
#blog .blog-post p:empty {
  display: none;
}
.wizContentBar {
  background-image: none;
  background-color: #333333;
}
.sysList .listHead {
  display: none;
}
li.wizLine {
  float: left;
  height: 160px;
  width: 200px;
}
#noaccess {
  margin: 50px 0px;
}
.tab-content ul.nav.panel-tabs {
  display: none;
}
.social:hover {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
}
a.addthis_button_email.social.email span {
  display: none;
}
#quickconnectbar {
  display: block;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  height: 50px;
  text-align: center;
  box-shadow: -8px -8px 55px black;
  background: white;
  background: -moz-linear-gradient(top, white 0%, #e5e5e5 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #e5e5e5));
  background: -webkit-linear-gradient(top, white 0%, #e5e5e5 100%);
  background: -o-linear-gradient(top, white 0%, #e5e5e5 100%);
  background: -ms-linear-gradient(top, white 0%, #e5e5e5 100%);
  background: linear-gradient(to bottom, white 0%, #e5e5e5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0);
}
#quickconnectbar a {
  width: 24%;
  display: inline-block;
  font-size: .75em;
  border-right: 1px solid #cccccc;
  text-align: center;
  padding: 5px 0px 0px;
}
#quickconnectbar a .email {
  background-image: none;
}
#quickconnectbar a .login {
  text-align: center;
  padding: 0px;
}
#quickconnectbar a .login input {
  font-weight: 300;
  font-family: 'raleway', arial, helvetica, sans-serif;
}
#quickconnectbar a .call:before,
#quickconnectbar a .email:before,
#quickconnectbar a .locate:before,
#quickconnectbar a .login:before {
  font-family: 'FontAwesome';
  float: left;
  width: 100%;
  font-size: 2em;
}
#quickconnectbar a .call:before {
  content: "\f10b";
}
#quickconnectbar a .email:before {
  content: "\f003";
}
#quickconnectbar a .locate:before {
  content: "\f041";
}
#quickconnectbar a .login:before {
  content: "\f023";
}
/* login */

input#LoginName {
  font-size: .85em;
}
/* bios */

.bio {
  background: #3e5264;
  border-top: 1px solid #6a747b;
  height: 80px;
  padding: 10px;
  margin-top: 20px;
}
.bio .biothumb {
  margin-right: 10px;
}
.bio h5 {
  color: #6a747b;
}
.bio .biotitle {
  font-size: .75em;
  font-style: italic;
  color: white;
}
#main-content input {
  padding: 10px;
}
/* photo galleries */

#main-content .MssPage {
  margin: 0;
}
#main-content .MssPage .syslist ul {
  margin: 0;
  padding: 0;
}
#main-content .thumb {
  width: 248px;
  height: 186px;
  float: left;
  background-color: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-right: 20px;
}
#main-content .thumb .thumbContainer {
  height: 186px!important;
  width: 248px!important;
}
#main-content .thumb .thumbContainer img {
  width: 248px;
  height: auto;
}
#main-content .thumb .text {
  margin-top: 10px;
  font-weight: 700;
}
.wizContentBar {
  background-color: white;
}
.sysList li {
  width: 308px;
  height: 248px;
}
.sysList li .wizListIcon {
  background: none;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  display: block;
  padding: 20px 20px;
  margin: 0;
}
.sysList li .coverImage {
  width: 248px;
  height: auto;
  margin-top: 5px;
}
.sysList li .listTextDescription {
  padding: 0px;
  font-size: 18px;
  font-weight: 400;
  height: 186px;
  width: 248px;
  overflow: hidden;
}
.listHead {
  display: none;
}
.MssNavigation.left {
  display: none;
}
.MssNavigation.right {
  float: left;
  font-weight: 700;
  font-size: .85em;
  width: 20%;
}
div.MssNavigation div.navButtons input {
  background-color: #6a747b;
  width: 100%;
}
.MssPictureSeries input#phmain_0_txtName {
  width: 60%;
  padding: 10px;
  font-size: 1.25em;
  color: black;
}
.MssRequired {
  color: red;
  font-weight: 700;
}
.field.Full {
  color: red;
}
.notitle .page-header {
  display: none;
}
/* subnav */

.col-md-8 > #subnav a,
.col-md-8 > #subnav a {
  width: 32.5%;
  float: left;
}
.subnav-two #subnav a {
  width: 49%;
}
.subnav-four #subnav a {
  width: 24%;
}
.subnav-four #subnav a:nth-child(6),
.subnav-four #subnav a:nth-child(7) {
  width: 48.75%;
}
#subnav a {
  margin-right: 5px;
  padding-right: 10px;
  background: #3e5264;
  vertical-align: top;
  width: auto;
  overflow: hidden;
}
#subnav a:hover {
  background-color: #7d94a0;
}
#subnav a i::before:empty {
  display: none;
}
.tabcontrols .fa-li {
  position: static;
  top: 40px;
  float: left;
  width: 60px;
}
/* mobile fixes */

@media (max-width: 767px) {
  .col-md-12 > #subnav a,
  .col-md-8 > #subnav a {
    width: 100%;
    float: left;
  }
  .flexslider {
    height: 150px;
  }
  .flexslider h2 {
    margin-top: 80px;
    height: 36px;
    overflow: hidden;
  }
  .flexslider span.btn.btn-md.btn-info {
    margin-top: -20px;
  }
  #map a#btnGo {
    width: 92%;
    margin: 2% 4%;
  }
}
/** template 1 **/

@import url(//fonts.googleapis.com/css?family=Raleway:100,300,700,900,500);
#header_wrapper {
  background: url('/-/media/images/themes/template 3 - light blue/bg3ltblue-footer.jpg') repeat;
  overflow: hidden;
}
.login.col-md-3 .form-control {
  width: 165px;
}
.login .form-control {
  max-width: 180px;
}
.login .form-control:focus {
  border-color: #dfe4e7;
  outline: 0;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.login input:last-child {
  background-color: #7d94a0;
  color: white;
  border: 1px solid white;
}
body p {
  color: #3e5264;
}
body {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 300;
  background: url('/-/media/images/themes/template 3 - light blue/bg3ltblue-main.jpg') repeat;
  color: #3e5264;
}
body p {
  font-weight: 500;
}
body p a:hover {
  color: #7d94a0;
}
body h1,
body h4 {
  color: #3e5264;
}
body a {
  color: #6a747b;
}
body a:hover {
  color: #dfe4e7;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
body .text-primary {
  color: #6a747b;
}
body header {
  max-width: 1170px;
  margin: 0 auto;
}
body header .social-links {
  margin-top: 20px;
}
body header .options {
  margin-top: 15px;
}
body header .options a {
  color: #7d94a0;
}
body header .centered {
  float: none;
  margin: 0 auto;
  display: block;
  text-align: center;
}
body header #main-content .page-header {
  margin-top: 15px;
}
body header #main-content .home-banner {
  background: white;
  padding: 30px;
  text-align: center;
  font-weight: 700;
  margin: 20px auto;
}
body header #main-content .home-banner h1 {
  color: #6a747b;
}
body header #main-content .home-banner p {
  color: #6a747b;
  margin: 20px;
}
body header #main-content .callout {
  background: white;
  padding: 20px;
  margin: 20px 0px;
}
body header #main-content .callout p {
  color: #999999;
}
body header #main-content .callout h2 {
  color: black;
  margin-top: 0px;
}
body header #main-content .callout h4 {
  color: black;
  font-weight: 400;
}
body header #main-content li {
  color: #666666;
}
body {
  color: #3e5264;
}
/** navigation **/

.navbar-fixed-bottom {
  border-bottom: 2px solid white;
  -webkit-box-shadow: -3px 12px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -3px 12px 2px rgba(0, 0, 0, 0.2);
  box-shadow: -3px 12px 2px rgba(0, 0, 0, 0.2);
}
#nav {
  border-top: 2px solid #7d94a0;
  border-bottom: 1px solid white;
  background: #3e5264;
  margin-bottom: 20px;
  clear: both;
}
#nav .navbar {
  background: transparent;
  border: 0px;
}
#nav .navbar-default {
  margin: 0 auto;
  float: none;
}
#nav .navbar-default .navbar-brand {
  color: #7d94a0;
}
#nav .navbar-default .navbar-brand:hover {
  color: white;
}
#nav .navbar-default .navbar-nav li .active a,
#nav .navbar-default .navbar-nav li .active a:hover {
  color: white;
  border-top: 2px solid #6a747b;
}
#nav .navbar-default .navbar-nav li a {
  color: white;
}
#nav .navbar-default .navbar-nav li a:hover,
#nav .navbar-default .navbar-nav li a:focus {
  color: #666666;
  background-color: white;
}
/* Classes below were added*/

#phmain_2_pnlContentRotator,
#phmain_3_pnlContentRotator,
#phmain_4_pnlContentRotator {
  padding-bottom: 20px;
}
.options a:hover {
  color: #666666;
  text-decoration: underline;
}
.dropdown-menu {
  background-color: #3e5264;
}
h4.boxtitle {
  background-color: #3e5264;
  color: white;
}
div.flexslider.knowledge_center_slider.blocks {
  background-color: #dfe4e7;
}
.flexslider .caption-cta .btn {
  display: none;
}
.flexslider .slides img {
/**  border: 8px solid #3e5264; **/
}
#kc-main-banner .flexslider .slides img {
  border: none;
}
#main-content .bannerimage img {
  border: 8px solid #3e5264;
}
.kc_feature_headline {
  color: #1f2931;
}
p.kc_feature_text {
  color: #1f2931 !important;
  background: none;
}
ul.fa-ul p.kc_feature_text {
  background: none;
}
.login input:last-child:hover {
  background-color: white;
  color: #3e5264;
}
.flex-active-slide p {
  color: #dfe4e7;
}
.flex-direction-nav a {
  color: #6a747b;
}
.flex-direction-nav a:hover {
  color: #3e5264;
}
.options blockquote p small {
  color: white;
}
#quickconnectbar a {
  color: #3e5264;
}
.featured a:hover {
  color: #bec9cf;
}
.bio {
  max-height: 100%;
  height: 100%;
}
#emailFriendTitleBar a {
  color: #666666;
}
#main-content input {
  padding: 0px;
}
.scfForm input {
  padding: 10px !important;
}
/** buttons **/

.scfForm input.scfSubmitButton,
.btn-default {
  color: white;
  background-color: #7d94a0;
  border-color: #3e5264;
}
.scfForm input.scfSubmitButton:hover,
.btn-default:hover,
.scfForm input.scfSubmitButton:focus,
.btn-default:focus,
.scfForm input.scfSubmitButton:active,
.btn-default:active {
  color: #3e5264;
  border-color: #1f2931;
  background-color: white;
  -webkit-transition: color 0.5s ease-out;
  -moz-transition: color 0.5s ease-out;
  -o-transition: color 0.5s ease-out;
  transition: color 0.5s ease-out;
}
.scfSectionContent {
  color: #6a747b;
}
.scfSectionContent input,
.scfSectionContent select,
.scfSectionContent textarea {
  background-color: #dfe4e7;
}
.btn-primary {
  color: white;
  background-color: #6a747b;
  border-color: #6a747b;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: #3e5264;
}
.btn-link:hover {
  color: #dfe4e7;
}
.btn:hover {
  color: #3e5264;
  text-decoration: none;
}
/** callouts & accordions **/

.home-callout a:hover {
  text-decoration: none;
}
.home-callout a:hover p {
  color: white;
}
.home-callout .panel-default {
  margin-bottom: 20px;
  background-color: white;
  /**look to change for callouts*/
  border: 1px solid transparent;
  border-radius: 0px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  border: 0;
  color: #666666;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.home-callout .panel-default .panel-heading {
  border-bottom: 0px;
  background-color: #3e5264;
  color: white;
  height: 40px;
  overflow: hidden;
  line-height: 1.75em;
}
.home-callout .panel-default .panel-body p {
  color: #666666;
}
.home-callout .panel-default:hover {
  background-color: #dfe4e7;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-decoration: none;
  color: white;
}
.home-callout .panel-default:hover p {
  color: #666666;
}
.home-callout span {
  font-size: 12;
  font-style: italic;
  padding-bottom: 20px;
  display: block;
  border-bottom: 1px dashed #3e5264;
  margin-bottom: 20px;
}
#side-column .panel-default .panel-body p {
  color: #3e5264;
}
#side-column .panel-default .panel-body a.btn-default {
  color: white;
}
#side-column .panel-default .panel-heading {
  background-color: #3e5264;
}
#side-column .panel-default .panel-heading {
  background-color: #6f7a69 !important;
}
#accordion .panel-heading {
  background: #7d94a0;
}
#accordion .panel-heading .panel-title {
  color: white;
}
#accordion a {
  color: white;
}
#accordion a:hover {
  color: #dfe4e7;
}
#accordion a .panel-title {
  color: white;
}
#accordion a .rj-icon {
  color: white;
}
#accordion .panel-body a {
  color: white;
}
#accordion .panel-body ul li {
  color: #3e5264;
}
#accordion .panel-body p {
  color: #dfe4e7;
  /* change to dark color on alternate text*/

}
#accordion .panel-body li a {
  color: black;
}
#accordion .panel-collapse .panel-body p a {
  color: white;
}
.panel-default small.pull-right a {
  color: #3e5264;
}
.panel-default small.pull-right a:hover {
  color: #7d94a0;
}
.col-md-5 .bq_callout {
  color: white;
}
.col-md-5 .bq_callout .color {
  color: white;
}
ul.fa-ul #accordion .panel-body div {
  background-color: white;
}
#accordion .panel-body #accordion .panel-body div {
  background-color: white;
}
#side-column #accordion .panel-body #accordion .panel-heading h4 a {
  color: white;
}
/*  .flexslider {
        .caption-cta {
            .btn {
                background-color: @primaryLight;
                border: @primaryDark;
                color: @primary;

                &:hover {
                    color: @primaryLight;
                    background-color: @primary;
                }
            }
        }
    }*/

/** sidebar - right column **/

#side-column .panel-default {
  margin-bottom: 15px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
#side-column .panel-default .panel-heading {
  color: white;
  background-color: #999999;
  border-bottom: 0px;
}
#side-column .panel-default .panel-heading h4.panel-title a {
  color: white;
}
#side-column .panel-default .panel-body {
  background-color: white;
  /*&:hover {
				background-color: #222222; changed from #222222

            }*/

}
#side-column .panel-default .panel-body a {
  padding: 3px;
  display: block;
  color: #3e5264;
}
#side-column .panel-default .panel-body a:hover {
  color: #7d94a0;
}
.panel-body ul li {
  color: #3e5264;
}
/** footer **/

footer {
  margin: 60px auto 0;
  padding: 25px;
  color: #999999;
  font-size: 14;
  background: black url('/-/media/images/themes/template 3 - light blue/bg3ltblue-footer.jpg');
  border-top: 2px solid black;
}
footer p {
  margin: 0px auto 10px;
  color: #999999;
}
footer .hedge {
  color: #999999;
  font-size: 12;
  border-top: 1px solid black;
  padding-top: 20px;
}
footer .hedge a {
  color: #3e5264;
}
footer #twitterfeed .panel-default .panel-heading {
  background-color: #7d94a0;
  color: #6a747b;
  padding: 10px 15px;
  border-bottom: 0px;
}
footer #twitterfeed .panel-default .panel-heading > a {
  margin-top: -3px;
}
footer #twitterfeed .panel-default:hover .panel-body {
  background-color: #3e5264;
}
footer .social-links {
  border-top: 3px solid #bec9cf;
}
footer .social-links a .fa {
  color: #dfe4e7;
}
footer .social-links a .fa:hover {
  color: #6a747b;
}
/* addthis social icons */

.social {
  width: 32px;
  height: 32px;
  float: right;
  margin-right: 5px;
}
.email {
  background: url(/~/media/Images/social-icons/email.ashx) no-repeat 0 0;
}
.fb {
  background: url(/~/media/Images/social-icons/facebook.ashx) no-repeat 0 0;
}
.twitter {
  background: url(/~/media/Images/social-icons/twitter.ashx) no-repeat 0 0;
}
.linkedin {
  background: url(/~/media/Images/social-icons/linkedin.ashx) no-repeat 0 0;
}
/* flextabs */

.flextabs a {
  background-color: #3e5264;
  display: inline-block;
  padding: 15px;
  font-weight: 500;
  color: white;
}
.flextabs a .fa {
  margin-right: 5px;
  color: white;
}
.flextabs a:hover {
  background-color: black;
}
.flextabs a {
  background-color: #3e5264;
}
.flextabs a {
  background-color: #bec9cf;
}
.flextabs a.flex-active:hover {
  color: #7d94a0;
}
.flexslider h4.color {
  color: #dfe4e7;
}
.flextabs a.flex-active {
  background: #666666;
  /* Old browsers */
  background: -moz-linear-gradient(top, #666666 77%, #232323 125%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(77%, #666666), color-stop(125%, #232323));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #666666 77%, #232323 125%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #666666 77%, #232323 125%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #666666 77%, #232323 125%);
  /* IE10+ */
  background: linear-gradient(to bottom, #666666 77%, #232323 125%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6a747b', endColorstr='#6a747b', GradientType=0);
  /*IE6-9 */
  color: white;
}
.flex-active p {
  color: #dfe4e7;
}
.flextabs a:hover {
  background-color: #7d94a0;
  /*changed from black*/
  color: #dfe4e7;
}
.flextabs a:hover {
  background-color: #1f2931;
  /*changed from black*/
}
.flexslider.tabbed {
  background-color: #7d94a0;
  padding: 20px;
  border-top: 3px solid #dfe4e7;
}
.flexslider.tabbed {
  background-color: #3e5264;
}
.flexslider {
  margin: 0;
  border: 0px;
  position: relative;
  zoom: 1;
}
a.actionitem p {
  text-transform: uppercase;
  color: #6a747b;
}
.flexslider blockquote.item {
  color: #6a747b;
  font-size: 1em;
  text-align: center;
  border-left: 1px solid black;
}
.flexslider blockquote.item .fa {
  width: 100%;
  color: #dfe4e7;
}
/* photo gallery */

.sysList .listHead {
  color: #6a747b;
  margin: 20px 0px;
}
.listHead {
  color: #6a747b;
}
div.MssList div.listHead {
  height: auto;
  color: black;
  background-image: none;
  background-repeat: repeat-x;
  padding: 10px;
  font: bold 1em arial;
}
/* your team bio */

h2.page-header {
  color: #999999;
}
.page-header {
  border-bottom: 1px solid #999999;
}
.biophoto {
  float: right;
  margin: 0 0 20px 20px;
}
div#phmain_1_pnlCols .intro {
  padding: 0;
}
#phrightside_1_pnlRelatedResources.featured .panel-body {
  background: #7d94a0;
}
hr {
  color: #6a747b;
  border-top: 1px dashed #6a747b;
  padding: 0px;
  margin-top: 20px 0px 0px;
  display: block;
  height: 1px;
}
/* REMOVE WHEN DEV SYNCS */

a:focus {
  text-decoration: none;
  color: #6a747b;
}
#subnav a {
  margin-right: 5px;
  background: #666666;
  vertical-align: top;
  width: auto;
  overflow: hidden;
  color: #dfe4e7;
}
#subnav a:hover {
  background-color: black;
}
.col-md-12 > #subnav a,
.col-md-8 > #subnav a {
  width: 32.5%;
  float: left;
}
.tabcontrols .fa-li {
  position: static;
  top: 40px;
  float: left;
  width: 60px;
}
#side-column .related-resources .fa-li + a {
  padding: 15px 4px 15px 4px !important;
}
ul.fa-ul li:hover .fa,
ul.fa-ul li:hover a {
  color: black;
}
.calloutStyle2 .panel-default .panel-body p {
  color: white;
}
.calloutStyle2 .panel-default .panel-body ul.fa-ul li a {
  color: white;
}
.calloutStyle2 .panel-default .panel-body ul.fa-ul li a:hover {
  color: #7d94a0;
}
.calloutStyle2 .panel-default .panel-body .color {
  color: #dfe4e7;
}
#phfooter_0_pnlFooter p {
  color: #3e5264;
}
.flex-viewport .color {
  color: #dfe4e7;
}
.flex-viewport p {
  color: #dfe4e7;
}
.related-resources ul li:hover .fa-li,
.related-resources ul li:hover a {
  color: black;
}
.related-resources a,
.related-resources .fa-2x,
.related-resources .fa-li {
  color: #7d94a0;
}
#side-column .featured li,
#side-column .related-resources li {
  border-bottom: 1px dashed #3e5264;
}
#side-column .featured li:last-child,
#side-column .related-resources li:last-child {
  border-bottom: 0px;
}
#side-column .featured .fa-li + a,
#side-column .related-resources .fa-li + a {
  padding: 15px 4px 15px 12px !important;
  border-bottom: 0px;
  line-height: 30px;
}
#side-column .fa-li,
body #side-column .fa-li + a {
  padding: 0px 4px 8px 4px;
  margin-left: 1.5em;
}
#side-column .fa-li {
  margin-top: 7px;
  color: #7d94a0;
}
#side-column ul li:hover .fa-2x {
  color: black;
}
.flexslider.tabbed {
  height: 100%;
}
#main-content .flexslider .fa-ul li {
  color: white;
}
body #side-column .fa-li,
body #side-column .fa-li + a {
  padding-top: 0px;
  margin-top: 5px;
}
body #side-column .featured .fa-li,
body #side-column .related-resources .fa-li {
  padding-top: 0;
}
.notitle .page-header {
  display: none;
}
blockquote {
  text-align: center;
  border-left: 0px;
}
blockquote .stat .disclaimer small {
  color: #1f2931;
}
blockquote.item p.disclaimer small {
  color: #dfe4e7;
}
.flex-active .rj-icon {
  color: #3e5264;
}
.rj-icon {
  position: relative;
  left: -0.3em;
  width: .65em;
  top: 0.1em;
  margin-right: .2em;
  text-align: center;
  float: left;
  display: inline-block;
  font-size: 1.3333333333333333em;
  line-height: .75em;
  vertical-align: -15%;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #6a747b;
}
#main-content .intro {
  margin: 0px 0px 10px 0px;
}
.subnav-two #subnav a {
  width: 49%;
}
.subnav-four #subnav a {
  width: 24%;
}
.subnav-four #subnav a:nth-child(6),
.subnav-four #subnav a:nth-child(7) {
  width: 48.75%;
}
.kc_feature_text {
  margin-left: 24px;
}
body #side-column .newsletters .fa-li,
body #side-column .newsletters .fa-li + a {
  margin: 0 0 0 20px;
  padding: 0 5px 0 0;
}
/*end remove */

@media (max-width: 767px) {
  .col-md-12 > #subnav a,
  .col-md-8 > #subnav a {
    width: 100%;
    float: left;
  }
  .flextabs a {
    width: 100%;
    border-bottom: 1px solid white;
  }
  footer div {
    width: 100%;
    margin: .5em;
  }
}
@media (min-width: 767px) {
div#phmain_0_rptChildren_ctl00_0_pnlBanners_0 {
     height: 300px;
    overflow: hidden;
  }    
}
/*@import "/Styles/login.less";*/

/* Login page */

#fa-login #header {
  text-align: center;
}
#fa-login h1 {
  color: #6a747b;
  margin: 0 0 20px;
  text-align: center;
}
#fa-login .col-centered {
  background: white;
  padding: 30px;
  margin: 20px auto;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
#fa-login .col-centered .btn-default {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
#fa-login .col-centered .rememberme {
  text-align: left;
  margin-top: 10px;
  font-size: 12px;
  color: #666666;
  font-weight: 100;
  line-height: 20px;
}
#fa-login .col-centered .form-control {
  height: 50px;
}
#fa-login .col-centered .btn {
  width: 100%;
  padding: 10px;
}
#fa-login .col-centered .btn:hover {
  background: #7d94a0;
}
#fa-login .col-centered .input-group {
  margin: 0px auto 20px auto;
}
#fa-login .col-centered .input-group input {
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#fa-login .col-centered .input-group span {
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
  background-color: #7d94a0;
}
#fa-login .col-centered .input-group span:before {
  color: #6a747b;
}
#fa-login input[type=checkbox] {
  visibility: hidden;
  margin: 0px;
}
#fa-login .roundedTwo {
  width: 20px;
  height: 20px;
  background: #fcfff4;
  float: left;
  margin: 0px 5px;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfff4', endColorstr='#b3bead', GradientType=0);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  position: relative;
}
#fa-login .roundedTwo label {
  cursor: pointer;
  position: absolute;
  width: 14px;
  height: 14px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  left: 3px;
  top: 3px;
  -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
  -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
  background: -webkit-linear-gradient(top, #222222 0%, #45484d 100%);
  background: -moz-linear-gradient(top, #222222 0%, #45484d 100%);
  background: -o-linear-gradient(top, #222222 0%, #45484d 100%);
  background: -ms-linear-gradient(top, #222222 0%, #45484d 100%);
  background: linear-gradient(top, #222222 0%, #45484d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222', endColorstr='#45484d', GradientType=0);
}
#fa-login .roundedTwo label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  content: '';
  position: absolute;
  width: 8px;
  height: 5px;
  background: transparent;
  top: 3px;
  left: 3px;
  border: 3px solid #fcfff4;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#fa-login .roundedTwo label:hover::after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  opacity: 0.3;
}
#fa-login .roundedTwo input[type=checkbox]:checked + label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}
/*@import "/Styles/blog.less";*/

/* Blog Styles */

#blog .page-header {
  margin: 5px 0px;
  color: white;
}
#blog .blog-posts .panel-default,
#blog .sidecolumn .panel-default {
  margin-bottom: 15px;
  clear: both;
}
#blog .blog-posts .panel-default .panel-heading,
#blog .sidecolumn .panel-default .panel-heading {
  background-color: black;
  color: #999999;
  padding: 10px 15px;
  border-bottom: 0px;
}
#blog .blog-posts .panel-default .panel-body,
#blog .sidecolumn .panel-default .panel-body {
  background-color: #666666;
  color: #bec9cf;
}
#blog .blog-posts .panel-heading {
  font-weight: bold;
  display: block;
}
#blog .sidecolumn a {
  clear: both;
  display: block;
  width: 100;
  padding: 3px;
}
/* Default social icons for bios */

.fa-social {
  font-size: 18px;
  padding-right: 5px;
}
