/* Import SASS mixins */
/* Include any mixins from the mixins folder in here 
 * This file is imported in main.scss
 * so then any of the mixins imported here can be used anywhere via the @include statement
 */
/* Keep this list in alphabetical order */
/* 
 * Mixin for Background Gradients
 */
/* @TODO: neither gradient is working in IE8... */
/* parameter value defaults to {@explain} if not passed in */
/* parameter value defaults to {@explain} if not passed in */
/*
--------------
Sample Usage:
gradient_bg_horizontal
--------------
.identifier {
	@include gradient_bg_horizontal("#D75426", "#F69A15");
}
--------------
Sample Output:
gradient_bg_horizontal
--------------
.identifier {
	background: #d75426;
	background: -moz-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #d75426), color-stop(100%, #f69a15));
	background: -webkit-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: -o-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: -ms-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: linear-gradient(to right, #d75426 0%, #f69a15 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d75426', endColorstr='#f69a15',GradientType=1 );
}
--------------
*/
/* 
 * Mixin for Buttons
 */
/* parameter value defaults to {@explain} if not passed in */
/* parameter value defaults to {@explain} if not passed in */
/* 
 * Mixin for Cross-Browser Opacity
 */
/* parameter value defaults to 0.5 if not passed in */
/* using this way results in ... Alpha(Opacity=" 50 ")"; 
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$value*100")";
Which still works in the browser, but don't want the extra spaces around the value.
*/
/*
--------------
Sample Usage: 
--------------
.identifier {
	@include opacity(.5);
}
--------------
Sample Output:
--------------
.identifier {
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity="50")";
	filter: alpha(opacity=50);
}
--------------
*/
/* Load global variables and import fonts outside of the Namespace */
/* Global variables */
/* Namespaces for Pweb Redesign & Responsive */
/* pweb redesign prefix */
/* pweb build switch switch */
/* use "true" or "false" without quotes. true adds a leading / to .htc paths */
/* SASS setting variables */
/* Branding Colors */
/* defaults: primary orange, secondary orange-red, tertiary purple */
/*#F69A15;*/
/*Brandable Accordion Colors */
/* Same at the Primary Color but this is not Brandable */
/* Global Colors */
/* Legacy Pweb Table Header BG Colors */
/* custom scrollbar color */
/* Global Padding */
/* CSS3PIE library. apply "*behavior: $piepath;" to CSS3 rounded corners */
/* Boxsizing library to support older IE. apply "*behavior: $boxsizingpath;"  */
/* jQuery UI Size Overrides */
/* desktop */
/* tablet */
/* WIDTH VARIABLES */
/* DESKTOP*/
/* TABLET */
/* PHONE */
/* COLOR DEFINITIONS */
/* used within GRIDS */
/* FONT SIZES */
/*@import "custom/fonts";*/
/* For any Pweb changes that should be global, and not contained to the namespace, e.g. site wide default font */
html {
  overflow-y: scroll;
  /* force browser scrollbar */
}

body {
  background-color: #fff;
  font: 13px/1.231 arial, helvetica, clean, sans-serif;
  *font-size: small;
  *font: x-small;
  /* YAHOO */
  font-family: ProximaNova, arial, helvetica, clean, sans-serif;
  color: #333333;
  margin: 0;
}

#content-in,
#messaging,
#footer {
  font-family: arial,sans-serif;
}

#doc {
  margin: 0 auto;
  width: 1025px;
}

@media screen and (max-width: 1080px) {
  #doc {
    padding-left: 10px;
    padding-right: 10px;
    width: 960px;
    /* adjust for non .prd not having box-size model */
  }

  .prd #doc {
    width: 980px;
  }
}
#main {
  min-height: 415px;
  position: relative;
}

/*
 * Styles outside .prd
 */
.wait-icon,
.prd .wait-icon {
  height: 100%;
  min-height: 30px;
  position: relative;
  margin: 0 auto;
  width: 30px;
}

.wait-icon img,
.prd .wait-icon img {
  height: 30px;
  margin: auto;
  position: absolute;
  width: 30px;
}

/* replacement for <div class="clear"></div> */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

#main-content .comLink {
  text-decoration: underline;
}

.universal {
  /*
   * Legacy Tables 1
   */
  	/* 
  	 * Tables 2
   	 */
  /*
   * Tables 2 IE8
   */
}
.universal table.tableGradientBg tr.highlight th.tabletotalstyle,
.universal table.tableGradientBg tr.highlight td,
.universal table.tableGradientBg tr.highlight td.first,
.universal table.tableGradientBg tr.highlight td.last {
  background: none;
  background-color: #f2f2f2;
}
.universal table.tableGradientBg thead tr,
.universal table.tableGradientBg tr.highlight {
  background: #f2f2f2;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, white));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f2f2f2 0%, #ffffff 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2F2F2', endColorstr='#FFFFFFFF',GradientType=0 );
  /* IE6-9 */
}
.universal table.tableGradientBg thead th.first,
.universal table.tableGradientBg tr.highlight td.first,
.universal table.tableGradientBg tr.iframeTableDate td.first,
.universal table.tableGradientBg thead th.last,
.universal table.tableGradientBg tr.highlight td.last,
.universal table.tableGradientBg tr.iframeTableDate td.last {
  background: none;
}
.universal table.tableGradientBg thead th {
  background: #f2f2f2;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, white));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f2f2f2 0%, #ffffff 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2F2F2', endColorstr='#FFFFFFFF',GradientType=0 );
  /* IE6-9 */
}
.universal div.tableGradientBg {
  background: none;
  background: #f2f2f2;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, white));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f2f2f2 0%, #ffffff 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2F2F2', endColorstr='#FFFFFFFF',GradientType=0 );
  /* IE6-9 */
  background-repeat: no-repeat;
  background-size: 100% 40px;
  margin: 0 10px;
  padding: 25px 10px 0;
}
.universal div.tableGradientBgHeader {
  height: 40px;
  margin-left: -10px;
  margin-right: -10px;
  width: 100%;
  background: none;
  background: #f2f2f2;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, white));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f2f2f2 0%, white 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f2f2f2 0%, #ffffff 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF2F2F2', endColorstr='#FFFFFFFF',GradientType=0 );
  /* IE6-9 */
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
}

/*
 * IE8/9 Styles outside .prd
 */
.ie8 .universal div.tableGradientBg,
.ie9 .universal div.tableGradientBg {
  background: none;
  filter: none;
}
.ie8 .universal div.tableGradientBg:before,
.ie9 .universal div.tableGradientBg:before {
  background: none;
  background-color: #f2f2f2;
  content: "";
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

#main-content .prd .aame .inner h3 {
  position: relative;
  top: 0;
  left: 0;
  font-size: inherit;
  height: auto;
  line-height: inherit;
}

/* surface fix */
.ui-draggable, .ui-slider-handle {
  -ms-touch-action: none;
}

/*$prdpf (pweb redesign prefix) -- this is to stay clear of other Pweb default css. need 2 spaces */
.prd {
  /* Prepare _Normalize settings */
  /* Import the _Normalize plugin */
  /* normalize.css v1.1.0 | MIT License | git.io/normalize */
  /* normalize.css v1.1.0 | HTML5 Display Definitions | MIT License | git.io/normalize */
  /* normalize.css v1.1.0 | Base | MIT License | git.io/normalize */
  /* normalize.css v1.1.0 | Links | MIT License | git.io/normalize */
  /* normalize.css v1.1.0 | Typography | MIT License | git.io/normalize */
  /* normalize.css v1.1.0 | Embedded Content | MIT License | git.io/normalize */
  /* normalize.css v1.1.0 | Figures | MIT License | git.io/normalize */
  /* normalize.css v1.1.0 | Forms | MIT License | git.io/normalize */
  /* normalize.css v1.1.0 | Tables | MIT License | git.io/normalize */
  /* Import Font Awesome */
  /*
   *  Font Awesome 3.2.1
   *  the iconic font designed for Bootstrap
   *  ------------------------------------------------------------------------------
   *  The full suite of pictographic icons, examples, and documentation can be
   *  found at http://fontawesome.io.  Stay up to date on Twitter at
   *  http://twitter.com/fontawesome.
   *
   *  License
   *  ------------------------------------------------------------------------------
   *  - The Font Awesome font is licensed under SIL OFL 1.1 -
   *    http://scripts.sil.org/OFL
   *  - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
   *    http://opensource.org/licenses/mit-license.html
   *  - Font Awesome documentation licensed under CC BY 3.0 -
   *    http://creativecommons.org/licenses/by/3.0/
   *  - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
   *    "Font Awesome by Dave Gandy - http://fontawesome.io"
   *
   *  Author - Dave Gandy
   *  ------------------------------------------------------------------------------
   *  Email: dave@fontawesome.io
   *  Twitter: http://twitter.com/davegandy
   *  Work: Lead Product Designer @ Kyruus - http://kyruus.com
   */
  /*
  @INFO: commenting these out and moving to _fonts.scss
  $FontAwesomePath: "../font" !default;
  $FontAwesomeVersion: "3.2.1" !default;
  */
  /* @INFO: commenting out path, it's imported in _fonts.scss 
  @import "path";
  */
  /* FONT AWESOME CORE
   * -------------------------- */
  /* makes the font 33% larger relative to the icon container */
  /* makes sure icons active on rollover in links */
  /* increased font size for icon-large */
  /*@INFO - we do not want bootstrap classes 
  @import "bootstrap";
  */
  /* EXTRAS
   * -------------------------- */
  /* Stacked and layered icon */
  /* Animated rotating icon */
  /* Prevent stack and spinners from being taken inline when inside a link */
  @-moz-keyframes spin {
    0% {
      -moz-transform: rotate(0deg);
    }

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

  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }

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

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

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

  @-ms-keyframes spin {
    0% {
      -ms-transform: rotate(0deg);
    }

    100% {
      -ms-transform: rotate(359deg);
    }
}

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

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

  /* Icon rotations and mirroring */
  /* ensure rotation occurs inside anchor tags */
  /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   * readers do not read off random characters that represent icons */
  /* Import our custom libraries */
  /* YAHOO */
  /*button { font: 99% arial,helvetica,clean,sans-serif; }*/
  /* ING */
  /* align checkboxes, radios, text inputs with their label */
  /* TODO: is this needed??
  input[type="radio"] { vertical-align: text-bottom; }
  input[type="checkbox"] { vertical-align: bottom; *vertical-align: baseline; }
  .ie6 input { vertical-align: text-bottom; }
  */
  /* RJG moving to _pwebglobal.scss: body { font-family: 'ProximaNova'; }*/
  /* apply a natural box layout model to all elements */
  /* FONT SIZES */
  /* 6px */
  /* 7px */
  /* 8px */
  /* 9px */
  /* 10px */
  /* 11px */
  /* 12px */
  /* 13px */
  /* 14px */
  /* 15px */
  /* 16px */
  /* 17px */
  /* 18px */
  /* 19px */
  /* 20px */
  /* 21px */
  /* 22px */
  /* 23px */
  /* 24px */
  /* 25px */
  /* 26px */
  /* 27px */
  /* 28px */
  /* 29px */
  /* 30px */
  /* 31px */
  /* 32px */
  /* 33px */
  /* 34px */
  /* 35px */
  /* 36px */
  /* 37px */
  /* 38px */
  /* 39px */
  /* 40px */
  /* 41px */
  /* 42px */
  /* 43px */
  /* 44px */
  /* 45px */
  /* 46px */
  /* 47px */
  /* 48px */
  /* 120px */
  /* VARIOUS WIDTHS */
  /* Table Row Widths */
  /* COLORS
   * color variables defined in _global_variables.scss 
   */
  /*--Horizontal--*/
  /*--Vertical--*/
  /* replacement for <div class="clear"></div> */
  /* ALIGNMENTS */
  /* .hidden is used by js, so make our own version to include position: absolute; */
  /*
   * Dialog/Modal Window
   */
  /*
   * Slider Scrollbars
   */
  /* 
   * TRACKBAR CONTAINER
   */
  /* /TRACKBAR CONTAINER */
  /* TRACKBAR HANDLE */
  /* /TRACKBAR HANDLE */
  /* scrollbar track above handle */
  /* scrollbar handle */
  /* @TODO: add box shadow?? ^ */
  /* scrollbar track below handle */
  /****************************************** */
  /****************************************** */
  /****************************************** */
  /****************************************** */
  /****************************************** */
  /****************************************** */
  /****************************************** */
  /****************************************** */
  /****************************************** */
  /*
  * End
  */
  /* Include any modules from the modules folder in here 
   * This file is imported in main.scss
   * so then any of the mixins imported here can be used anywhere via the @include statement
   */
  /* Keep this list in alphabetical order */
  /*@import "custom/voya-ui";*/
  /* Global variables */
  /* Namespaces for Pweb Redesign & Responsive */
  /* pweb redesign prefix */
  /* pweb build switch switch */
  /* use "true" or "false" without quotes. true adds a leading / to .htc paths */
  /* SASS setting variables */
  /* Branding Colors */
  /* defaults: primary orange, secondary orange-red, tertiary purple */
  /*#F69A15;*/
  /*Brandable Accordion Colors */
  /* Same at the Primary Color but this is not Brandable */
  /* Global Colors */
  /* Legacy Pweb Table Header BG Colors */
  /* custom scrollbar color */
  /* Global Padding */
  /* CSS3PIE library. apply "*behavior: $piepath;" to CSS3 rounded corners */
  /* Boxsizing library to support older IE. apply "*behavior: $boxsizingpath;"  */
  /* jQuery UI Size Overrides */
  /* desktop */
  /* tablet */
  /* WIDTH VARIABLES */
  /* DESKTOP*/
  /* TABLET */
  /* PHONE */
  /* COLOR DEFINITIONS */
  /* used within GRIDS */
  /* FONT SIZES */
  /* Import _Zen Grids */
  /* --------------------- */
  /* --------------------- */
  /*
   * Header Search Styles
   */
  /*
  #header-search #searchTerm,
  #header-search #searchType,
  #header-search .select-container.ie8,
  #header-search #form-header-search-submit { float: left; }
  */
  /*#header-search .search {
  	border-style: solid;
  	border-width: 1px;
  	border-color: #CBCCD0 #E4E5EB #E4E5EB #E4E5EB;
  	margin: 5px 0 5px 13px;
  }
  
  #header-search .search input {
  	border: none;
  	padding: 6px 0 6px 8px;
  	width: 120px;
  }
  
  #header-search .search i {
  	cursor: pointer;
  	margin-right: 5px;
  }
  
  #header-search a > .icon-search {
  	text-decoration: none;
  }*/
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /* Apply '@include zen-clear();' to all first level divs under #main */
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /* --------------------- */
  /*
   * #MESSAGES
   */
  /* ****************************/
  /* --------------------- */
  /* Flex Slider browser scrollbar fix */
  /* For Template.html */
  /* PAGE LAYOUT */
  /* Note: #doc width is set in _pwebglobal.scss */
  /* CLASSES */
  /* 
   * we shouldn't have to put a class on an h tag, but because of lots of legacy code / workarounds out there, it appears needed
   */
  /*Page or Page Group Styles*/
  /* For building purposes only - temporary area to collaborate on code, when code is done merge it into regular files
   *@TODO remove this and _temp folder for Prod
   * prefix our individual files with our initials so they are easily identifiable in CSS output */
  /* --------------------- */
  /* undo global box model */
  /*
  .tpadL15 { padding-left: 15px; }
  .tpadL55 { padding-left: 55px; }
  .tpadR5 { padding-right: 5px; }
  .tpadR8 { padding-right: 8px; }
  */
  /*
   * RR Messaging Styles
   */
  /*START EXPANDED BLOCK FOR SECTION3-1*/
  /*END EXPANDED SECTION3-1*/
  /*
  #messaging .notice{
  	background: url(../images/temp/priorityAlertStopLight.png) no-repeat 98.5% center;
  }*/
  /* #Portfolio */
  /*************************************************!
  *
  *   project:    liteAccordion - a horizontal accordion plugin for jQuery
  *   author:     Nicola Hibbert
  *   url:        http://nicolahibbert.com/liteaccordion-v2/
  *   demo:       http://www.nicolahibbert.com/demo/liteAccordion/
  *
  *   Version:    2.2.0
  *   Copyright:  (c) 2010-2013 Nicola Hibbert
  *   Licence:    MIT
  *
  **************************************************/
  /****************************************** Core */
  /****************************************** Basic */
  /****************************************** Dark */
  /*************************************** Rounded */
  /******************************************** IE */
  /* transforms */
  /* misc */
  /* TABS */
  /* SUB TABS */
  /* MESSAGING */
  /*
  #messaging .notice{
  	background: url(../images/temp/priorityAlertStopLight.png) no-repeat 98.5% center;
  }*/
  /* 12/17/13  */
}
.prd article,
.prd aside,
.prd details,
.prd figcaption,
.prd figure,
.prd footer,
.prd header,
.prd hgroup,
.prd main,
.prd nav,
.prd section,
.prd summary {
  display: block;
}
.prd audio,
.prd canvas,
.prd video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.prd audio:not([controls]) {
  display: none;
  height: 0;
}
.prd [hidden] {
  display: none;
}
.prd html {
  font-size: 100%;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
.prd html,
.prd button,
.prd input,
.prd select,
.prd textarea {
  font-family: sans-serif;
}
.prd body {
  margin: 0;
}
.prd a:focus {
  outline: thin dotted;
}
.prd a:active,
.prd a:hover {
  outline: 0;
}
.prd h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
.prd h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
.prd h3 {
  font-size: 1.17em;
  margin: 1em 0;
}
.prd h4 {
  font-size: 1em;
  margin: 1.33em 0;
}
.prd h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}
.prd h6 {
  font-size: 0.67em;
  margin: 2.33em 0;
}
.prd abbr[title] {
  border-bottom: 1px dotted;
}
.prd b,
.prd strong {
  font-weight: bold;
}
.prd blockquote {
  margin: 1em 40px;
}
.prd dfn {
  font-style: italic;
}
.prd hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
.prd mark {
  background: #ff0;
  color: #000;
}
.prd p,
.prd pre {
  margin: 1em 0;
}
.prd code,
.prd kbd,
.prd pre,
.prd samp {
  font-family: monospace, serif;
  font-size: 1em;
}
.prd pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.prd q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
.prd q {
  quotes: none;
}
.prd q:before,
.prd q:after {
  content: '';
  content: none;
}
.prd small {
  font-size: 80%;
}
.prd sub,
.prd sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.prd sup {
  top: -0.5em;
}
.prd sub {
  bottom: -0.25em;
}
.prd dl,
.prd menu,
.prd ol,
.prd ul {
  margin: 1em 0;
}
.prd dd {
  margin: 0 0 0 40px;
}
.prd menu,
.prd ol,
.prd ul {
  padding: 0 0 0 40px;
}
.prd nav ul,
.prd nav ol {
  list-style: none;
  list-style-image: none;
}
.prd img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
.prd svg:not(:root) {
  overflow: hidden;
}
.prd figure {
  margin: 0;
}
.prd form {
  margin: 0;
}
.prd fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
.prd legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}
.prd button,
.prd input,
.prd select,
.prd textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
.prd button,
.prd input {
  line-height: normal;
}
.prd button,
.prd select {
  text-transform: none;
}
.prd button,
.prd html input[type="button"],
.prd input[type="reset"],
.prd input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}
.prd button[disabled],
.prd html input[disabled] {
  cursor: default;
}
.prd input[type="checkbox"],
.prd input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}
.prd input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.prd input[type="search"]::-webkit-search-cancel-button,
.prd input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.prd button::-moz-focus-inner,
.prd input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.prd textarea {
  overflow: auto;
  vertical-align: top;
}
.prd table {
  border-collapse: collapse;
  border-spacing: 0;
}
.prd [class^="icon-"],
.prd [class*=" icon-"] {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em;
}
.prd [class^="icon-"]:before,
.prd [class*=" icon-"]:before {
  text-decoration: inherit;
  display: inline-block;
  speak: none;
}
.prd .icon-large:before {
  vertical-align: -10%;
  font-size: 1.33333em;
}
.prd a [class^="icon-"],
.prd a [class*=" icon-"] {
  /*display: inline;*/
  /* RJG switching to inline-block for a chrome fix */
  display: inline-block;
}
.prd [class^="icon-"].icon-fixed-width,
.prd [class*=" icon-"].icon-fixed-width {
  display: inline-block;
  width: 1.14286em;
  text-align: right;
  padding-right: 0.28571em;
}
.prd [class^="icon-"].icon-fixed-width.icon-large,
.prd [class*=" icon-"].icon-fixed-width.icon-large {
  width: 1.42857em;
}
.prd .icons-ul {
  margin-left: 2.14286em;
  list-style-type: none;
}
.prd .icons-ul > li {
  position: relative;
}
.prd .icons-ul .icon-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  text-align: center;
  line-height: inherit;
}
.prd [class^="icon-"].hide,
.prd [class*=" icon-"].hide {
  display: none;
}
.prd .icon-muted {
  color: #eeeeee;
}
.prd .icon-light {
  color: white;
}
.prd .icon-dark {
  color: #333333;
}
.prd .icon-border {
  border: solid 1px #eeeeee;
  padding: .2em .25em .15em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.prd .icon-2x {
  font-size: 2em;
}
.prd .icon-2x.icon-border {
  border-width: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.prd .icon-3x {
  font-size: 3em;
}
.prd .icon-3x.icon-border {
  border-width: 3px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.prd .icon-4x {
  font-size: 4em;
}
.prd .icon-4x.icon-border {
  border-width: 4px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.prd .icon-5x {
  font-size: 5em;
}
.prd .icon-5x.icon-border {
  border-width: 5px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
.prd .pull-right {
  float: right;
}
.prd .pull-left {
  float: left;
}
.prd [class^="icon-"].pull-left,
.prd [class*=" icon-"].pull-left {
  margin-right: .3em;
}
.prd [class^="icon-"].pull-right,
.prd [class*=" icon-"].pull-right {
  margin-left: .3em;
}
.prd .icon-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: -35%;
}
.prd .icon-stack [class^="icon-"],
.prd .icon-stack [class*=" icon-"] {
  display: block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 1em;
  line-height: inherit;
  *line-height: 2em;
}
.prd .icon-stack .icon-stack-base {
  font-size: 2em;
  *line-height: 1em;
}
.prd .icon-spin {
  display: inline-block;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
.prd a .icon-stack,
.prd a .icon-spin {
  display: inline-block;
  text-decoration: none;
}
.prd .icon-rotate-90:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.prd .icon-rotate-180:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}
.prd .icon-rotate-270:before {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.prd .icon-flip-horizontal:before {
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.prd .icon-flip-vertical:before {
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.prd a .icon-rotate-90:before, .prd a .icon-rotate-180:before, .prd a .icon-rotate-270:before, .prd a .icon-flip-horizontal:before, .prd a .icon-flip-vertical:before {
  display: inline-block;
}
.prd .icon-glass:before {
  content: "\f000";
}
.prd .icon-music:before {
  content: "\f001";
}
.prd .icon-search:before {
  content: "\f002";
}
.prd .icon-envelope-alt:before {
  content: "\f003";
}
.prd .icon-heart:before {
  content: "\f004";
}
.prd .icon-star:before {
  content: "\f005";
}
.prd .icon-star-empty:before {
  content: "\f006";
}
.prd .icon-user:before {
  content: "\f007";
}
.prd .icon-film:before {
  content: "\f008";
}
.prd .icon-th-large:before {
  content: "\f009";
}
.prd .icon-th:before {
  content: "\f00a";
}
.prd .icon-th-list:before {
  content: "\f00b";
}
.prd .icon-ok:before {
  content: "\f00c";
}
.prd .icon-remove:before {
  content: "\f00d";
}
.prd .icon-zoom-in:before {
  content: "\f00e";
}
.prd .icon-zoom-out:before {
  content: "\f010";
}
.prd .icon-power-off:before,
.prd .icon-off:before {
  content: "\f011";
}
.prd .icon-signal:before {
  content: "\f012";
}
.prd .icon-gear:before,
.prd .icon-cog:before {
  content: "\f013";
}
.prd .icon-trash:before {
  content: "\f014";
}
.prd .icon-home:before {
  content: "\f015";
}
.prd .icon-file-alt:before {
  content: "\f016";
}
.prd .icon-time:before {
  content: "\f017";
}
.prd .icon-road:before {
  content: "\f018";
}
.prd .icon-download-alt:before {
  content: "\f019";
}
.prd .icon-download:before {
  content: "\f01a";
}
.prd .icon-upload:before {
  content: "\f01b";
}
.prd .icon-inbox:before {
  content: "\f01c";
}
.prd .icon-play-circle:before {
  content: "\f01d";
}
.prd .icon-rotate-right:before,
.prd .icon-repeat:before {
  content: "\f01e";
}
.prd .icon-refresh:before {
  content: "\f021";
}
.prd .icon-list-alt:before {
  content: "\f022";
}
.prd .icon-lock:before {
  content: "\f023";
}
.prd .icon-flag:before {
  content: "\f024";
}
.prd .icon-headphones:before {
  content: "\f025";
}
.prd .icon-volume-off:before {
  content: "\f026";
}
.prd .icon-volume-down:before {
  content: "\f027";
}
.prd .icon-volume-up:before {
  content: "\f028";
}
.prd .icon-qrcode:before {
  content: "\f029";
}
.prd .icon-barcode:before {
  content: "\f02a";
}
.prd .icon-tag:before {
  content: "\f02b";
}
.prd .icon-tags:before {
  content: "\f02c";
}
.prd .icon-book:before {
  content: "\f02d";
}
.prd .icon-bookmark:before {
  content: "\f02e";
}
.prd .icon-print:before {
  content: "\f02f";
}
.prd .icon-camera:before {
  content: "\f030";
}
.prd .icon-font:before {
  content: "\f031";
}
.prd .icon-bold:before {
  content: "\f032";
}
.prd .icon-italic:before {
  content: "\f033";
}
.prd .icon-text-height:before {
  content: "\f034";
}
.prd .icon-text-width:before {
  content: "\f035";
}
.prd .icon-align-left:before {
  content: "\f036";
}
.prd .icon-align-center:before {
  content: "\f037";
}
.prd .icon-align-right:before {
  content: "\f038";
}
.prd .icon-align-justify:before {
  content: "\f039";
}
.prd .icon-list:before {
  content: "\f03a";
}
.prd .icon-indent-left:before {
  content: "\f03b";
}
.prd .icon-indent-right:before {
  content: "\f03c";
}
.prd .icon-facetime-video:before {
  content: "\f03d";
}
.prd .icon-picture:before {
  content: "\f03e";
}
.prd .icon-pencil:before {
  content: "\f040";
}
.prd .icon-map-marker:before {
  content: "\f041";
}
.prd .icon-adjust:before {
  content: "\f042";
}
.prd .icon-tint:before {
  content: "\f043";
}
.prd .icon-edit:before {
  content: "\f044";
}
.prd .icon-share:before {
  content: "\f045";
}
.prd .icon-check:before {
  content: "\f046";
}
.prd .icon-move:before {
  content: "\f047";
}
.prd .icon-step-backward:before {
  content: "\f048";
}
.prd .icon-fast-backward:before {
  content: "\f049";
}
.prd .icon-backward:before {
  content: "\f04a";
}
.prd .icon-play:before {
  content: "\f04b";
}
.prd .icon-pause:before {
  content: "\f04c";
}
.prd .icon-stop:before {
  content: "\f04d";
}
.prd .icon-forward:before {
  content: "\f04e";
}
.prd .icon-fast-forward:before {
  content: "\f050";
}
.prd .icon-step-forward:before {
  content: "\f051";
}
.prd .icon-eject:before {
  content: "\f052";
}
.prd .icon-chevron-left:before {
  content: "\f053";
}
.prd .icon-chevron-right:before {
  content: "\f054";
}
.prd .icon-plus-sign:before {
  content: "\f055";
}
.prd .icon-minus-sign:before {
  content: "\f056";
}
.prd .icon-remove-sign:before {
  content: "\f057";
}
.prd .icon-ok-sign:before {
  content: "\f058";
}
.prd .icon-question-sign:before {
  content: "\f059";
}
.prd .icon-info-sign:before {
  content: "\f05a";
}
.prd .icon-screenshot:before {
  content: "\f05b";
}
.prd .icon-remove-circle:before {
  content: "\f05c";
}
.prd .icon-ok-circle:before {
  content: "\f05d";
}
.prd .icon-ban-circle:before {
  content: "\f05e";
}
.prd .icon-arrow-left:before {
  content: "\f060";
}
.prd .icon-arrow-right:before {
  content: "\f061";
}
.prd .icon-arrow-up:before {
  content: "\f062";
}
.prd .icon-arrow-down:before {
  content: "\f063";
}
.prd .icon-mail-forward:before,
.prd .icon-share-alt:before {
  content: "\f064";
}
.prd .icon-resize-full:before {
  content: "\f065";
}
.prd .icon-resize-small:before {
  content: "\f066";
}
.prd .icon-plus:before {
  content: "\f067";
}
.prd .icon-minus:before {
  content: "\f068";
}
.prd .icon-asterisk:before {
  content: "\f069";
}
.prd .icon-exclamation-sign:before {
  content: "\f06a";
}
.prd .icon-gift:before {
  content: "\f06b";
}
.prd .icon-leaf:before {
  content: "\f06c";
}
.prd .icon-fire:before {
  content: "\f06d";
}
.prd .icon-eye-open:before {
  content: "\f06e";
}
.prd .icon-eye-close:before {
  content: "\f070";
}
.prd .icon-warning-sign:before {
  content: "\f071";
}
.prd .icon-plane:before {
  content: "\f072";
}
.prd .icon-calendar:before {
  content: "\f073";
}
.prd .icon-random:before {
  content: "\f074";
}
.prd .icon-comment:before {
  content: "\f075";
}
.prd .icon-magnet:before {
  content: "\f076";
}
.prd .icon-chevron-up:before {
  content: "\f077";
}
.prd .icon-chevron-down:before {
  content: "\f078";
}
.prd .icon-retweet:before {
  content: "\f079";
}
.prd .icon-shopping-cart:before {
  content: "\f07a";
}
.prd .icon-folder-close:before {
  content: "\f07b";
}
.prd .icon-folder-open:before {
  content: "\f07c";
}
.prd .icon-resize-vertical:before {
  content: "\f07d";
}
.prd .icon-resize-horizontal:before {
  content: "\f07e";
}
.prd .icon-bar-chart:before {
  content: "\f080";
}
.prd .icon-twitter-sign:before {
  content: "\f081";
}
.prd .icon-facebook-sign:before {
  content: "\f082";
}
.prd .icon-camera-retro:before {
  content: "\f083";
}
.prd .icon-key:before {
  content: "\f084";
}
.prd .icon-gears:before,
.prd .icon-cogs:before {
  content: "\f085";
}
.prd .icon-comments:before {
  content: "\f086";
}
.prd .icon-thumbs-up-alt:before {
  content: "\f087";
}
.prd .icon-thumbs-down-alt:before {
  content: "\f088";
}
.prd .icon-star-half:before {
  content: "\f089";
}
.prd .icon-heart-empty:before {
  content: "\f08a";
}
.prd .icon-signout:before {
  content: "\f08b";
}
.prd .icon-linkedin-sign:before {
  content: "\f08c";
}
.prd .icon-pushpin:before {
  content: "\f08d";
}
.prd .icon-external-link:before {
  content: "\f08e";
}
.prd .icon-signin:before {
  content: "\f090";
}
.prd .icon-trophy:before {
  content: "\f091";
}
.prd .icon-github-sign:before {
  content: "\f092";
}
.prd .icon-upload-alt:before {
  content: "\f093";
}
.prd .icon-lemon:before {
  content: "\f094";
}
.prd .icon-phone:before {
  content: "\f095";
}
.prd .icon-unchecked:before,
.prd .icon-check-empty:before {
  content: "\f096";
}
.prd .icon-bookmark-empty:before {
  content: "\f097";
}
.prd .icon-phone-sign:before {
  content: "\f098";
}
.prd .icon-twitter:before {
  content: "\f099";
}
.prd .icon-facebook:before {
  content: "\f09a";
}
.prd .icon-github:before {
  content: "\f09b";
}
.prd .icon-unlock:before {
  content: "\f09c";
}
.prd .icon-credit-card:before {
  content: "\f09d";
}
.prd .icon-rss:before {
  content: "\f09e";
}
.prd .icon-hdd:before {
  content: "\f0a0";
}
.prd .icon-bullhorn:before {
  content: "\f0a1";
}
.prd .icon-bell:before {
  content: "\f0a2";
}
.prd .icon-certificate:before {
  content: "\f0a3";
}
.prd .icon-hand-right:before {
  content: "\f0a4";
}
.prd .icon-hand-left:before {
  content: "\f0a5";
}
.prd .icon-hand-up:before {
  content: "\f0a6";
}
.prd .icon-hand-down:before {
  content: "\f0a7";
}
.prd .icon-circle-arrow-left:before {
  content: "\f0a8";
}
.prd .icon-circle-arrow-right:before {
  content: "\f0a9";
}
.prd .icon-circle-arrow-up:before {
  content: "\f0aa";
}
.prd .icon-circle-arrow-down:before {
  content: "\f0ab";
}
.prd .icon-globe:before {
  content: "\f0ac";
}
.prd .icon-wrench:before {
  content: "\f0ad";
}
.prd .icon-tasks:before {
  content: "\f0ae";
}
.prd .icon-filter:before {
  content: "\f0b0";
}
.prd .icon-briefcase:before {
  content: "\f0b1";
}
.prd .icon-fullscreen:before {
  content: "\f0b2";
}
.prd .icon-group:before {
  content: "\f0c0";
}
.prd .icon-link:before {
  content: "\f0c1";
}
.prd .icon-cloud:before {
  content: "\f0c2";
}
.prd .icon-beaker:before {
  content: "\f0c3";
}
.prd .icon-cut:before {
  content: "\f0c4";
}
.prd .icon-copy:before {
  content: "\f0c5";
}
.prd .icon-paperclip:before,
.prd .icon-paper-clip:before {
  content: "\f0c6";
}
.prd .icon-save:before {
  content: "\f0c7";
}
.prd .icon-sign-blank:before {
  content: "\f0c8";
}
.prd .icon-reorder:before {
  content: "\f0c9";
}
.prd .icon-list-ul:before {
  content: "\f0ca";
}
.prd .icon-list-ol:before {
  content: "\f0cb";
}
.prd .icon-strikethrough:before {
  content: "\f0cc";
}
.prd .icon-underline:before {
  content: "\f0cd";
}
.prd .icon-table:before {
  content: "\f0ce";
}
.prd .icon-magic:before {
  content: "\f0d0";
}
.prd .icon-truck:before {
  content: "\f0d1";
}
.prd .icon-pinterest:before {
  content: "\f0d2";
}
.prd .icon-pinterest-sign:before {
  content: "\f0d3";
}
.prd .icon-google-plus-sign:before {
  content: "\f0d4";
}
.prd .icon-google-plus:before {
  content: "\f0d5";
}
.prd .icon-money:before {
  content: "\f0d6";
}
.prd .icon-caret-down:before {
  content: "\f0d7";
}
.prd .icon-caret-up:before {
  content: "\f0d8";
}
.prd .icon-caret-left:before {
  content: "\f0d9";
}
.prd .icon-caret-right:before {
  content: "\f0da";
}
.prd .icon-columns:before {
  content: "\f0db";
}
.prd .icon-sort:before {
  content: "\f0dc";
}
.prd .icon-sort-down:before {
  content: "\f0dd";
}
.prd .icon-sort-up:before {
  content: "\f0de";
}
.prd .icon-envelope:before {
  content: "\f0e0";
}
.prd .icon-linkedin:before {
  content: "\f0e1";
}
.prd .icon-rotate-left:before,
.prd .icon-undo:before {
  content: "\f0e2";
}
.prd .icon-legal:before {
  content: "\f0e3";
}
.prd .icon-dashboard:before {
  content: "\f0e4";
}
.prd .icon-comment-alt:before {
  content: "\f0e5";
}
.prd .icon-comments-alt:before {
  content: "\f0e6";
}
.prd .icon-bolt:before {
  content: "\f0e7";
}
.prd .icon-sitemap:before {
  content: "\f0e8";
}
.prd .icon-umbrella:before {
  content: "\f0e9";
}
.prd .icon-paste:before {
  content: "\f0ea";
}
.prd .icon-lightbulb:before {
  content: "\f0eb";
}
.prd .icon-exchange:before {
  content: "\f0ec";
}
.prd .icon-cloud-download:before {
  content: "\f0ed";
}
.prd .icon-cloud-upload:before {
  content: "\f0ee";
}
.prd .icon-user-md:before {
  content: "\f0f0";
}
.prd .icon-stethoscope:before {
  content: "\f0f1";
}
.prd .icon-suitcase:before {
  content: "\f0f2";
}
.prd .icon-bell-alt:before {
  content: "\f0f3";
}
.prd .icon-coffee:before {
  content: "\f0f4";
}
.prd .icon-food:before {
  content: "\f0f5";
}
.prd .icon-file-text-alt:before {
  content: "\f0f6";
}
.prd .icon-building:before {
  content: "\f0f7";
}
.prd .icon-hospital:before {
  content: "\f0f8";
}
.prd .icon-ambulance:before {
  content: "\f0f9";
}
.prd .icon-medkit:before {
  content: "\f0fa";
}
.prd .icon-fighter-jet:before {
  content: "\f0fb";
}
.prd .icon-beer:before {
  content: "\f0fc";
}
.prd .icon-h-sign:before {
  content: "\f0fd";
}
.prd .icon-plus-sign-alt:before {
  content: "\f0fe";
}
.prd .icon-double-angle-left:before {
  content: "\f100";
}
.prd .icon-double-angle-right:before {
  content: "\f101";
}
.prd .icon-double-angle-up:before {
  content: "\f102";
}
.prd .icon-double-angle-down:before {
  content: "\f103";
}
.prd .icon-angle-left:before {
  content: "\f104";
}
.prd .icon-angle-right:before {
  content: "\f105";
}
.prd .icon-angle-up:before {
  content: "\f106";
}
.prd .icon-angle-down:before {
  content: "\f107";
}
.prd .icon-desktop:before {
  content: "\f108";
}
.prd .icon-laptop:before {
  content: "\f109";
}
.prd .icon-tablet:before {
  content: "\f10a";
}
.prd .icon-mobile-phone:before {
  content: "\f10b";
}
.prd .icon-circle-blank:before {
  content: "\f10c";
}
.prd .icon-quote-left:before {
  content: "\f10d";
}
.prd .icon-quote-right:before {
  content: "\f10e";
}
.prd .icon-spinner:before {
  content: "\f110";
}
.prd .icon-circle:before {
  content: "\f111";
}
.prd .icon-mail-reply:before,
.prd .icon-reply:before {
  content: "\f112";
}
.prd .icon-github-alt:before {
  content: "\f113";
}
.prd .icon-folder-close-alt:before {
  content: "\f114";
}
.prd .icon-folder-open-alt:before {
  content: "\f115";
}
.prd .icon-expand-alt:before {
  content: "\f116";
}
.prd .icon-collapse-alt:before {
  content: "\f117";
}
.prd .icon-smile:before {
  content: "\f118";
}
.prd .icon-frown:before {
  content: "\f119";
}
.prd .icon-meh:before {
  content: "\f11a";
}
.prd .icon-gamepad:before {
  content: "\f11b";
}
.prd .icon-keyboard:before {
  content: "\f11c";
}
.prd .icon-flag-alt:before {
  content: "\f11d";
}
.prd .icon-flag-checkered:before {
  content: "\f11e";
}
.prd .icon-terminal:before {
  content: "\f120";
}
.prd .icon-code:before {
  content: "\f121";
}
.prd .icon-reply-all:before {
  content: "\f122";
}
.prd .icon-mail-reply-all:before {
  content: "\f122";
}
.prd .icon-star-half-full:before,
.prd .icon-star-half-empty:before {
  content: "\f123";
}
.prd .icon-location-arrow:before {
  content: "\f124";
}
.prd .icon-crop:before {
  content: "\f125";
}
.prd .icon-code-fork:before {
  content: "\f126";
}
.prd .icon-unlink:before {
  content: "\f127";
}
.prd .icon-question:before {
  content: "\f128";
}
.prd .icon-info:before {
  content: "\f129";
}
.prd .icon-exclamation:before {
  content: "\f12a";
}
.prd .icon-superscript:before {
  content: "\f12b";
}
.prd .icon-subscript:before {
  content: "\f12c";
}
.prd .icon-eraser:before {
  content: "\f12d";
}
.prd .icon-puzzle-piece:before {
  content: "\f12e";
}
.prd .icon-microphone:before {
  content: "\f130";
}
.prd .icon-microphone-off:before {
  content: "\f131";
}
.prd .icon-shield:before {
  content: "\f132";
}
.prd .icon-calendar-empty:before {
  content: "\f133";
}
.prd .icon-fire-extinguisher:before {
  content: "\f134";
}
.prd .icon-rocket:before {
  content: "\f135";
}
.prd .icon-maxcdn:before {
  content: "\f136";
}
.prd .icon-chevron-sign-left:before {
  content: "\f137";
}
.prd .icon-chevron-sign-right:before {
  content: "\f138";
}
.prd .icon-chevron-sign-up:before {
  content: "\f139";
}
.prd .icon-chevron-sign-down:before {
  content: "\f13a";
}
.prd .icon-html5:before {
  content: "\f13b";
}
.prd .icon-css3:before {
  content: "\f13c";
}
.prd .icon-anchor:before {
  content: "\f13d";
}
.prd .icon-unlock-alt:before {
  content: "\f13e";
}
.prd .icon-bullseye:before {
  content: "\f140";
}
.prd .icon-ellipsis-horizontal:before {
  content: "\f141";
}
.prd .icon-ellipsis-vertical:before {
  content: "\f142";
}
.prd .icon-rss-sign:before {
  content: "\f143";
}
.prd .icon-play-sign:before {
  content: "\f144";
}
.prd .icon-ticket:before {
  content: "\f145";
}
.prd .icon-minus-sign-alt:before {
  content: "\f146";
}
.prd .icon-check-minus:before {
  content: "\f147";
}
.prd .icon-level-up:before {
  content: "\f148";
}
.prd .icon-level-down:before {
  content: "\f149";
}
.prd .icon-check-sign:before {
  content: "\f14a";
}
.prd .icon-edit-sign:before {
  content: "\f14b";
}
.prd .icon-external-link-sign:before {
  content: "\f14c";
}
.prd .icon-share-sign:before {
  content: "\f14d";
}
.prd .icon-compass:before {
  content: "\f14e";
}
.prd .icon-collapse:before {
  content: "\f150";
}
.prd .icon-collapse-top:before {
  content: "\f151";
}
.prd .icon-expand:before {
  content: "\f152";
}
.prd .icon-euro:before,
.prd .icon-eur:before {
  content: "\f153";
}
.prd .icon-gbp:before {
  content: "\f154";
}
.prd .icon-dollar:before,
.prd .icon-usd:before {
  content: "\f155";
}
.prd .icon-rupee:before,
.prd .icon-inr:before {
  content: "\f156";
}
.prd .icon-yen:before,
.prd .icon-jpy:before {
  content: "\f157";
}
.prd .icon-renminbi:before,
.prd .icon-cny:before {
  content: "\f158";
}
.prd .icon-won:before,
.prd .icon-krw:before {
  content: "\f159";
}
.prd .icon-bitcoin:before,
.prd .icon-btc:before {
  content: "\f15a";
}
.prd .icon-file:before {
  content: "\f15b";
}
.prd .icon-file-text:before {
  content: "\f15c";
}
.prd .icon-sort-by-alphabet:before {
  content: "\f15d";
}
.prd .icon-sort-by-alphabet-alt:before {
  content: "\f15e";
}
.prd .icon-sort-by-attributes:before {
  content: "\f160";
}
.prd .icon-sort-by-attributes-alt:before {
  content: "\f161";
}
.prd .icon-sort-by-order:before {
  content: "\f162";
}
.prd .icon-sort-by-order-alt:before {
  content: "\f163";
}
.prd .icon-thumbs-up:before {
  content: "\f164";
}
.prd .icon-thumbs-down:before {
  content: "\f165";
}
.prd .icon-youtube-sign:before {
  content: "\f166";
}
.prd .icon-youtube:before {
  content: "\f167";
}
.prd .icon-xing:before {
  content: "\f168";
}
.prd .icon-xing-sign:before {
  content: "\f169";
}
.prd .icon-youtube-play:before {
  content: "\f16a";
}
.prd .icon-dropbox:before {
  content: "\f16b";
}
.prd .icon-stackexchange:before {
  content: "\f16c";
}
.prd .icon-instagram:before {
  content: "\f16d";
}
.prd .icon-flickr:before {
  content: "\f16e";
}
.prd .icon-adn:before {
  content: "\f170";
}
.prd .icon-bitbucket:before {
  content: "\f171";
}
.prd .icon-bitbucket-sign:before {
  content: "\f172";
}
.prd .icon-tumblr:before {
  content: "\f173";
}
.prd .icon-tumblr-sign:before {
  content: "\f174";
}
.prd .icon-long-arrow-down:before {
  content: "\f175";
}
.prd .icon-long-arrow-up:before {
  content: "\f176";
}
.prd .icon-long-arrow-left:before {
  content: "\f177";
}
.prd .icon-long-arrow-right:before {
  content: "\f178";
}
.prd .icon-apple:before {
  content: "\f179";
}
.prd .icon-windows:before {
  content: "\f17a";
}
.prd .icon-android:before {
  content: "\f17b";
}
.prd .icon-linux:before {
  content: "\f17c";
}
.prd .icon-dribbble:before {
  content: "\f17d";
}
.prd .icon-skype:before {
  content: "\f17e";
}
.prd .icon-foursquare:before {
  content: "\f180";
}
.prd .icon-trello:before {
  content: "\f181";
}
.prd .icon-female:before {
  content: "\f182";
}
.prd .icon-male:before {
  content: "\f183";
}
.prd .icon-gittip:before {
  content: "\f184";
}
.prd .icon-sun:before {
  content: "\f185";
}
.prd .icon-moon:before {
  content: "\f186";
}
.prd .icon-archive:before {
  content: "\f187";
}
.prd .icon-bug:before {
  content: "\f188";
}
.prd .icon-vk:before {
  content: "\f189";
}
.prd .icon-weibo:before {
  content: "\f18a";
}
.prd .icon-renren:before {
  content: "\f18b";
}
.prd select,
.prd input,
.prd textarea,
.prd button {
  font: 99% arial;
}
.prd table {
  font-size: inherit;
  font: 100%;
}
.prd pre,
.prd code,
.prd kbd,
.prd samp,
.prd tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}
.prd a, .prd img, .prd a img {
  border: 0;
}
.prd h2 {
  margin: 0;
}
.prd img {
  display: block;
  height: auto;
  max-width: 100%;
  
}
.prd * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  *behavior: url(static/global/js/vendor/ie/boxsizing.htc);
}
.prd .savings li,
.prd #header-menu {
  vertical-align: middle;
}
.prd select[disabled] {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.prd select {
  vertical-align: baseline;
}
.prd label {
  vertical-align: baseline;
}
.prd .text6 {
  font-size: 0.462em;
}
.prd .text7 {
  font-size: 0.538em;
}
.prd .text8 {
  font-size: 0.615em;
}
.prd .text9 {
  font-size: 0.692em;
}
.prd .text10 {
  font-size: 0.769em;
}
.prd .text11 {
  font-size: 0.846em;
}
.prd .text12 {
  font-size: 0.923em;
}
.prd .text13 {
  font-size: 1em;
}
.prd .text14 {
  font-size: 1.077em;
}
.prd .text15 {
  font-size: 1.154em;
}
.prd .text16 {
  font-size: 1.231em;
}
.prd .text17 {
  font-size: 1.308em;
}
.prd .text18 {
  font-size: 1.385em;
}
.prd .text19 {
  font-size: 1.462em;
}
.prd .text20 {
  font-size: 1.538em;
}
.prd .text21 {
  font-size: 1.615em;
}
.prd .text22 {
  font-size: 1.692em;
}
.prd .text23 {
  font-size: 1.769em;
}
.prd .text24 {
  font-size: 1.846em;
}
.prd .text25 {
  font-size: 1.923em;
}
.prd .text26 {
  font-size: 2em;
}
.prd .text27 {
  font-size: 2.077em;
}
.prd .text28 {
  font-size: 2.154em;
}
.prd .text29 {
  font-size: 2.231em;
}
.prd .text30 {
  font-size: 2.308em;
}
.prd .text31 {
  font-size: 2.385em;
}
.prd .text32 {
  font-size: 2.462em;
}
.prd .text33 {
  font-size: 2.538em;
}
.prd .text34 {
  font-size: 2.615em;
}
.prd .text35 {
  font-size: 2.692em;
}
.prd .text36 {
  font-size: 2.769em;
}
.prd .text37 {
  font-size: 2.846em;
}
.prd .text38 {
  font-size: 2.923em;
}
.prd .text39 {
  font-size: 3em;
}
.prd .text40 {
  font-size: 3.077em;
}
.prd .text41 {
  font-size: 3.154em;
}
.prd .text42 {
  font-size: 3.231em;
}
.prd .text43 {
  font-size: 3.308em;
}
.prd .text44 {
  font-size: 3.385em;
}
.prd .text45 {
  font-size: 3.462em;
}
.prd .text46 {
  font-size: 3.538em;
}
.prd .text47 {
  font-size: 3.615em;
}
.prd .text48 {
  font-size: 3.692em;
}
.prd .text120 {
  font-size: 9.231em;
}
.prd .width300 {
  width: 300%;
}
.prd .width275 {
  width: 275%;
}
.prd .width250 {
  width: 250%;
}
.prd .width225 {
  width: 225%;
}
.prd .width205 {
  width: 205%;
}
.prd .width200 {
  width: 200%;
}
.prd .width175 {
  width: 175%;
}
.prd .width150 {
  width: 150%;
}
.prd .width125 {
  width: 125%;
}
.prd .width100 {
  width: 100%;
}
.prd .width66 {
  width: 66.66%;
}
.prd .width50 {
  width: 50%;
}
.prd .width33 {
  width: 33.33%;
}
.prd .width25 {
  width: 25%;
}
.prd .tw10 {
  width: 10px;
}
.prd .tw11 {
  width: 11px;
}
.prd .tw12 {
  width: 12px;
}
.prd .tw13 {
  width: 13px;
}
.prd .tw14 {
  width: 14px;
}
.prd .tw15 {
  width: 15px;
}
.prd .tw16 {
  width: 16px;
}
.prd .tw17 {
  width: 17px;
}
.prd .tw18 {
  width: 18px;
}
.prd .tw19 {
  width: 19px;
}
.prd .tw20 {
  width: 20px;
}
.prd .tw21 {
  width: 21px;
}
.prd .tw22 {
  width: 22px;
}
.prd .tw23 {
  width: 23px;
}
.prd .tw24 {
  width: 24px;
}
.prd .tw25 {
  width: 25px;
}
.prd .tw26 {
  width: 26px;
}
.prd .tw27 {
  width: 27px;
}
.prd .tw28 {
  width: 28px;
}
.prd .tw29 {
  width: 29px;
}
.prd .tw30 {
  width: 30px;
}
.prd .tw31 {
  width: 31px;
}
.prd .tw32 {
  width: 32px;
}
.prd .tw33 {
  width: 33px;
}
.prd .tw34 {
  width: 34px;
}
.prd .tw35 {
  width: 35px;
}
.prd .tw36 {
  width: 36px;
}
.prd .tw37 {
  width: 37px;
}
.prd .tw38 {
  width: 38px;
}
.prd .tw39 {
  width: 39px;
}
.prd .tw40 {
  width: 40px;
}
.prd .tw41 {
  width: 41px;
}
.prd .tw42 {
  width: 42px;
}
.prd .tw43 {
  width: 43px;
}
.prd .tw44 {
  width: 44px;
}
.prd .tw45 {
  width: 45px;
}
.prd .tw46 {
  width: 46px;
}
.prd .tw47 {
  width: 47px;
}
.prd .tw48 {
  width: 48px;
}
.prd .tw49 {
  width: 49px;
}
.prd .tw50 {
  width: 50px;
}
.prd .tw51 {
  width: 51px;
}
.prd .tw52 {
  width: 52px;
}
.prd .tw53 {
  width: 53px;
}
.prd .tw54 {
  width: 54px;
}
.prd .tw55 {
  width: 55px;
}
.prd .tw56 {
  width: 56px;
}
.prd .tw57 {
  width: 57px;
}
.prd .tw58 {
  width: 58px;
}
.prd .tw59 {
  width: 59px;
}
.prd .tw60 {
  width: 60px;
}
.prd .tw61 {
  width: 61px;
}
.prd .tw62 {
  width: 62px;
}
.prd .tw63 {
  width: 63px;
}
.prd .tw64 {
  width: 64px;
}
.prd .tw65 {
  width: 65px;
}
.prd .tw66 {
  width: 66px;
}
.prd .tw67 {
  width: 67px;
}
.prd .tw68 {
  width: 68px;
}
.prd .tw69 {
  width: 69px;
}
.prd .tw70 {
  width: 70px;
}
.prd .tw71 {
  width: 71px;
}
.prd .tw72 {
  width: 72px;
}
.prd .tw73 {
  width: 73px;
}
.prd .tw74 {
  width: 74px;
}
.prd .tw75 {
  width: 75px;
}
.prd .tw76 {
  width: 76px;
}
.prd .tw77 {
  width: 77px;
}
.prd .tw78 {
  width: 78px;
}
.prd .tw79 {
  width: 79px;
}
.prd .tw80 {
  width: 80px;
}
.prd .tw81 {
  width: 81px;
}
.prd .tw82 {
  width: 82px;
}
.prd .tw83 {
  width: 83px;
}
.prd .tw84 {
  width: 84px;
}
.prd .tw85 {
  width: 85px;
}
.prd .tw86 {
  width: 86px;
}
.prd .tw87 {
  width: 87px;
}
.prd .tw88 {
  width: 88px;
}
.prd .tw89 {
  width: 89px;
}
.prd .tw90 {
  width: 90px;
}
.prd .tw91 {
  width: 91px;
}
.prd .tw92 {
  width: 92px;
}
.prd .tw93 {
  width: 93px;
}
.prd .tw94 {
  width: 94px;
}
.prd .tw95 {
  width: 95px;
}
.prd .tw96 {
  width: 96px;
}
.prd .tw97 {
  width: 97px;
}
.prd .tw98 {
  width: 98px;
}
.prd .tw99 {
  width: 99px;
}
.prd .tw100 {
  width: 100px;
}
.prd .tw101 {
  width: 101px;
}
.prd .tw102 {
  width: 102px;
}
.prd .tw103 {
  width: 103px;
}
.prd .tw104 {
  width: 104px;
}
.prd .tw105 {
  width: 105px;
}
.prd .tw106 {
  width: 106px;
}
.prd .tw107 {
  width: 107px;
}
.prd .tw108 {
  width: 108px;
}
.prd .tw109 {
  width: 109px;
}
.prd .tw110 {
  width: 110px;
}
.prd .tw111 {
  width: 111px;
}
.prd .tw112 {
  width: 112px;
}
.prd .tw113 {
  width: 113px;
}
.prd .tw114 {
  width: 114px;
}
.prd .tw115 {
  width: 115px;
}
.prd .tw116 {
  width: 116px;
}
.prd .tw117 {
  width: 117px;
}
.prd .tw118 {
  width: 118px;
}
.prd .tw119 {
  width: 119px;
}
.prd .tw120 {
  width: 120px;
}
.prd .tw121 {
  width: 121px;
}
.prd .tw122 {
  width: 122px;
}
.prd .tw123 {
  width: 123px;
}
.prd .tw124 {
  width: 124px;
}
.prd .tw125 {
  width: 125px;
}
.prd .tw126 {
  width: 126px;
}
.prd .tw127 {
  width: 127px;
}
.prd .tw128 {
  width: 128px;
}
.prd .tw129 {
  width: 129px;
}
.prd .tw130 {
  width: 130px;
}
.prd .tw131 {
  width: 131px;
}
.prd .tw132 {
  width: 132px;
}
.prd .tw133 {
  width: 133px;
}
.prd .tw134 {
  width: 134px;
}
.prd .tw135 {
  width: 135px;
}
.prd .tw136 {
  width: 136px;
}
.prd .tw137 {
  width: 137px;
}
.prd .tw138 {
  width: 138px;
}
.prd .tw139 {
  width: 139px;
}
.prd .tw140 {
  width: 140px;
}
.prd .tw141 {
  width: 141px;
}
.prd .tw142 {
  width: 142px;
}
.prd .tw143 {
  width: 143px;
}
.prd .tw144 {
  width: 144px;
}
.prd .tw145 {
  width: 145px;
}
.prd .tw146 {
  width: 146px;
}
.prd .tw147 {
  width: 147px;
}
.prd .tw148 {
  width: 148px;
}
.prd .tw149 {
  width: 149px;
}
.prd .tw150 {
  width: 150px;
}
.prd .tw151 {
  width: 151px;
}
.prd .tw152 {
  width: 152px;
}
.prd .tw153 {
  width: 153px;
}
.prd .tw154 {
  width: 154px;
}
.prd .tw155 {
  width: 155px;
}
.prd .tw156 {
  width: 156px;
}
.prd .tw157 {
  width: 157px;
}
.prd .tw158 {
  width: 158px;
}
.prd .tw159 {
  width: 159px;
}
.prd .tw160 {
  width: 160px;
}
.prd .tw161 {
  width: 161px;
}
.prd .tw162 {
  width: 162px;
}
.prd .tw163 {
  width: 163px;
}
.prd .tw164 {
  width: 164px;
}
.prd .tw165 {
  width: 165px;
}
.prd .tw166 {
  width: 166px;
}
.prd .tw167 {
  width: 167px;
}
.prd .tw168 {
  width: 168px;
}
.prd .tw169 {
  width: 169px;
}
.prd .tw170 {
  width: 170px;
}
.prd .tw171 {
  width: 171px;
}
.prd .tw172 {
  width: 172px;
}
.prd .tw173 {
  width: 173px;
}
.prd .tw174 {
  width: 174px;
}
.prd .tw175 {
  width: 175px;
}
.prd .tw176 {
  width: 176px;
}
.prd .tw177 {
  width: 177px;
}
.prd .tw178 {
  width: 178px;
}
.prd .tw179 {
  width: 179px;
}
.prd .tw180 {
  width: 180px;
}
.prd .tw181 {
  width: 181px;
}
.prd .tw182 {
  width: 182px;
}
.prd .tw183 {
  width: 183px;
}
.prd .tw184 {
  width: 184px;
}
.prd .tw185 {
  width: 185px;
}
.prd .tw186 {
  width: 186px;
}
.prd .tw187 {
  width: 187px;
}
.prd .tw188 {
  width: 188px;
}
.prd .tw189 {
  width: 189px;
}
.prd .tw190 {
  width: 190px;
}
.prd .tw191 {
  width: 191px;
}
.prd .tw192 {
  width: 192px;
}
.prd .tw193 {
  width: 193px;
}
.prd .tw194 {
  width: 194px;
}
.prd .tw195 {
  width: 195px;
}
.prd .tw196 {
  width: 196px;
}
.prd .tw197 {
  width: 197px;
}
.prd .tw198 {
  width: 198px;
}
.prd .tw199 {
  width: 199px;
}
.prd .tw200 {
  width: 200px;
}
.prd .bold {
  font-weight: bold;
}
.prd .underline, .prd .underline a {
  text-decoraiton: underline;
}
.prd .white {
  color: white;
}
.prd .orange {
  color: #ff6600;
}
.prd .gray-lt {
  color: #efefef;
}
.prd .gray-mm {
  color: #cccccc;
}
.prd .gray-dk {
  color: #666666;
}
.prd .blue {
  color: #36c36c;
}
.prd .blue-lt {
  color: #6cf6cf;
}
.prd .blue-dk {
  color: #000066;
}
.prd .primary, .prd .primary a {
  color: #fb8000;
}
.prd .secondary, .prd .secondary a {
  color: #d75426;
}
.prd .tertiary, .prd .tertiary a {
  color: #b73f7c;
}
.prd .primaryBg {
  background-color: #fb8000;
}
.prd .secondaryBg {
  background-color: #d75426;
}
.prd .tertiaryBg {
  background-color: #b73f7c;
}
.prd .primaryBorder {
  border-color: #fb8000;
}
.prd .secondaryBorder {
  border-color: #d75426;
}
.prd .tertiaryBorder {
  border-color: #b73f7c;
}
.prd .bg-primary-secondary {
  background-color: #d75426;
}
.prd .bg-primary-tertiary {
  background-color: #b73f7c;
}
.prd .bg-secondary-primary {
  background-color: #fb8000;
}
.prd .bg-secondary-tertiary {
  background-color: #b73f7c;
}
.prd .bg-tertiary-primary {
  background-color: #fb8000;
}
.prd .bg-tertiary-secondary {
  background-color: #d75426;
}
.prd .bg-primary-secondary-vert {
  background-color: #d75426;
}
.prd .bg-primary-tertiary-vert {
  background-color: #b73f7c;
}
.prd .bg-secondary-primary-vert {
  background-color: #fb8000;
}
.prd .bg-secondary-tertiary-vert {
  background-color: #b73f7c;
}
.prd .bg-tertiary-primary-vert {
  background-color: #fb8000;
}
.prd .bg-tertiary-secondary-vert {
  background-color: #d75426;
}
.prd .clearfix:before, .prd .clearfix:after {
  content: " ";
  display: table;
}
.prd .clearfix:after {
  clear: both;
}
.prd .floatRight {
  float: right;
}
.prd .floatLeft {
  float: left;
}
.prd .txtLeft {
  text-align: left;
}
.prd .txtRight {
  text-align: right;
}
.prd .txtCenter {
  text-align: center;
}
.prd .txtMiddle {
  vertical-align: middle;
}
.prd .txtBottom {
  vertical-align: bottom;
}
.prd .marginCenter {
  margin: 0 auto;
}
.prd .inline {
  display: inline;
}
.prd .inline-block {
  display: inline-block;
}
.prd .block {
  display: block;
}
.prd .displaynone {
  display: none;
}
.prd .wrap {
  whitespace: normal;
}
.prd .hidden {
  left: -9999px;
}
.prd .hide {
  left: -9999px;
  position: absolute;
}
.prd .fixed {
  position: fixed;
}
.prd .relative {
  position: relative;
}
.prd .noborder {
  border: 0;
}
.prd #tooltip {
  text-align: center;
  color: #fff;
  background: #111;
  position: absolute;
  z-index: 1999990;
  padding: 15px;
}
.prd #tooltip:after {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #111;
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  margin-left: -10px;
}
.prd #tooltip.top:after {
  border-top-color: transparent;
  border-bottom: 10px solid #111;
  top: -20px;
  bottom: auto;
}
.prd #tooltip.left:after {
  left: 10px;
  margin: 0;
}
.prd #tooltip.right:after {
  right: 10px;
  left: auto;
  margin: 0;
}
.prd .ui-dialog {
  outline: none;
}
.prd .ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  z-index: 1999991;
}
.prd .ui-dialog {
  background: #f0f0f0;
  border: 2px solid #d75426;
  box-shadow: 5px 5px 10px #ccc;
  overflow: hidden;
  position: absolute;
  /*max-height: 441px;*/
  z-index: 1999992;
}
.prd .ui-dialog-titlebar {
  background: #d75426;
  color: white;
  font-size: 153.8%;
  /*height: auto;*/
  /*max-height: 47px;*/
  padding: 5px 10px;
}
.prd .ui-dialog-content {
  background: #f0f0f0;
  font-size: 123.1%;
  padding: 5px 10px;
  height: auto;
}
.prd .ui-button {
  background: #d75426;
  border: 0;
  color: white;
  float: right;
}
.prd .ui-button a {
  color: white;
}
.prd .scroll-vertical .ui-slider,
.prd .scroll-horizontal .ui-slider {
  position: relative;
  text-align: left;
}
.prd .ui-slider-horizontal {
  height: 6.5px;
}
.prd .ui-slider-vertical {
  height: 100%;
  width: 6.5px;
}
.prd .ui-slider-handle {
  border: 1px solid #f0f0f0;
}
.prd .ui-slider-horizontal .ui-slider-handle {
  margin-left: -0.4em;
  top: -0.4em;
}
.prd .ui-slider-vertical .ui-slider-handle {
  left: -0.5em;
  margin-bottom: -0.4em;
  margin-left: 0;
}
.prd .scroll-vertical .ui-corner-all,
.prd .scroll-vertical .ui-corner-top,
.prd .scroll-vertical .ui-corner-left,
.prd .scroll-vertical .ui-corner-tl,
.prd .scroll-horizontal .ui-corner-all,
.prd .scroll-horizontal .ui-corner-top,
.prd .scroll-horizontal .ui-corner-left,
.prd .scroll-horizontal .ui-corner-tl {
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
  /* @TODO fix this and the other 3 below for IE */
  behavior: url(static/global/js/vendor/ie/PIE.htc);
}
.prd .scroll-vertical .ui-corner-all,
.prd .scroll-vertical .ui-corner-top,
.prd .scroll-vertical .ui-corner-right,
.prd .scroll-vertical .ui-corner-tr,
.prd .scroll-horizontal .ui-corner-all,
.prd .scroll-horizontal .ui-corner-top,
.prd .scroll-horizontal .ui-corner-right,
.prd .scroll-horizontal .ui-corner-tr {
  /*border-top-right-radius: 14px;*/
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
}
.prd .scroll-vertical .ui-corner-all,
.prd .scroll-vertical .ui-corner-bottom,
.prd .scroll-vertical .ui-corner-left,
.prd .scroll-vertical .ui-corner-bl,
.prd .scroll-horizontal .ui-corner-all,
.prd .scroll-horizontal .ui-corner-bottom,
.prd .scroll-horizontal .ui-corner-left,
.prd .scroll-horizontal .ui-corner-bl {
  /*border-bottom-left-radius: 14px;*/
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
}
.prd .scroll-vertical .ui-corner-all,
.prd .scroll-vertical .ui-corner-bottom,
.prd .scroll-vertical .ui-corner-right,
.prd .scroll-vertical .ui-corner-br,
.prd .scroll-horizontal .ui-corner-all,
.prd .scroll-horizontal .ui-corner-bottom,
.prd .scroll-horizontal .ui-corner-right,
.prd .scroll-horizontal .ui-corner-br {
  /*border-bottom-right-radius: 14px;*/
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
}
.prd .ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.prd .ui-slider-horizontal .ui-slider-range {
  height: 100%;
  top: 0;
  left: -1px;
}
.prd .ui-slider-vertical .ui-slider-range {
  top: -1px;
}
.prd .ui-slider .ui-slider-range {
  background-position: 0 0;
  border: 0 none;
  display: block;
  font-size: .7em;
  position: absolute;
  z-index: 1;
}
.prd .ui-slider-range {
  background-color: #dbdbdb;
}
.prd .ui-slider .ui-slider-handle {
  background-color: #f0f0f0;
  height: 1.5em;
  width: 1.5em;
  -webkit-box-shadow: -1px 3px 2px rgba(150, 150, 150, 0.66);
  -moz-box-shadow: -1px 3px 2px rgba(150, 150, 150, 0.66);
  box-shadow: -1px 3px 2px rgba(150, 150, 150, 0.66);
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  position: absolute;
  z-index: 2;
}
.prd .ui-slider {
  background-color: #fb8000;
}
.prd .ui-slider {
  cursor: pointer;
}
.prd .ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.prd .ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.prd #horizontal-test {
  border: 1px solid blue;
  height: 100px;
  width: 400px;
}
.prd #horizontal-test.scroll-horizontal .scroll-content1 {
  height: 70px;
  /* parent height - 28... or 30px */
}
.prd #horizontal-test.scroll-horizontal .scroll-content {
  width: 2000px;
}
.prd #horizontal-test .scroll-content-mask {
  background-color: white;
  /* match ht bg color */
}
.prd .account-data-scroll {
  height: 350px;
  width: 100%;
}
.prd .account-data-scroll.scroll-vertical .scroll-content1 {
  width: 458px;
  /* container width - 30px */
}
.prd .section2full .account-data-scroll {
  width: 505px;
}
.prd .section2full .account-data-scroll.scroll-vertical .scroll-content1 {
  width: 475px;
}
.prd .message-center-scroll {
  height: 200px;
  width: 650px;
}
.prd .message-center-scroll.scroll-vertical .scroll-content1 {
  width: 620px;
  /* container width - 28... or 30px */
}
.prd .scroll-horizontal {
  position: relative;
}
.prd .scroll-horizontal .scroll-content1 {
  width: 100%;
}
.prd .scroll-horizontal .scrollbar-wrapper {
  padding: 10px 20px 10px 15px;
}
.prd .scroll-vertical {
  position: relative;
}
.prd .scroll-vertical .scroll-content1 {
  float: left;
  height: 100%;
}
.prd .scroll-vertical .scroll-content {
  width: 100%;
}
.prd .scroll-vertical .scrollbar-wrapper {
  float: right;
  height: 100%;
  padding: 20px 10px 10px 10px;
}
.prd .vertical-scrollbar {
  /*height: 100%;*/
}
.prd .scroll-content1 {
  overflow: hidden;
  position: relative;
}
.prd .scroll-content-mask {
  height: 100%;
  position: absolute;
  right: 0;
  width: 10px;
  /* match .scroll-content padding */
  z-index: 100;
}
.prd .scroll-content {
  left: 0;
  padding: 10px 0;
  position: absolute;
  top: 0;
}
.prd #loading-modal {
  padding: 10px;
}
.prd .loadingContainer {
  display: table;
  height: 100%;
  padding: 2em 3em;
  width: 100%;
}
.prd .loadingInnerContainer {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.prd .loadingMessage {
  font-size: 18px;
  padding-bottom: .5em;
}
.prd #loadingAnimation {
  font-size: 66px;
  line-height: 66px;
}
.prd #loadingAnimation .off {
  visibility: hidden;
}
.prd .voya-scroller {
  overflow: hidden;
  position: relative;
}
.prd .voya-scroller:before, .prd .voya-scroller:after {
  content: "";
  display: table;
}
.prd .voya-scroller:after {
  clear: both;
}
.prd .voya-scroller .vs-contentOuterWrapper {
  position: relative;
  width: 100%;
  float: left;
  height: 100%;
  overflow: hidden;
}
.prd .voya-scroller .vs-contentInnerWrapper {
  position: static;
  height: 100%;
  margin-right: 50px;
  border-bottom: 1px solid #dbdbdb;
  border: 1px solid #dbdbdb;
}
.prd .voya-scroller .vs-content {
  position: absolute;
  top: 0px;
  left: 0px;
  margin-right: 50px;
  padding: 0px 10px 10px 10px;
}
.prd .voya-scroller .vs-scrollbarWrapper {
  width: 50px;
  float: left;
  margin-left: -50px;
  height: 100%;
  padding: 20px 10px 10px 10px;
  position: relative;
}
.prd .voya-scroller .vs-scrollbarWrapper .vertical-scrollbar {
  margin-left: 12px;
}
.prd .voya-scroller.vs-disabled .vs-scrollbarWrapper {
  display: none;
}
.prd .voya-scroller.vs-disabled .vs-contentInnerWrapper, .prd .voya-scroller.vs-disabled .vs-content {
  margin-right: 0px;
}
.prd #header,
.prd #main {
  /* zen */
  *position: relative;
  *zoom: 1;
  /* /zen */
}
.prd #header:before, .prd #header:after,
.prd #main:before,
.prd #main:after {
  content: "";
  display: table;
}
.prd #header:after,
.prd #main:after {
  clear: both;
}
.prd #logo {
  float: left;
  width: 25%;
  margin-left: 0%;
  margin-right: -25%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
}
.prd #header .section3 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  /* position this item */
  margin-bottom: 6px;
}
.prd #header .section2 {
  float: left;
  width: 75%;
  margin-left: 25%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  /* position this item */
  padding-left: 0;
  padding-right: 0;
  /* mark as having sub-grid */
  margin-bottom: 6px;
}
.prd #header .section2-1 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
}
.prd #header .section2-2 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  text-align: right;
}
.prd .login #header .section2-2 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  text-align: right;
}
.prd #header-search {
  margin: 12px 6px 6px 6px;
}
.prd #header-search #searchTerm {
  width: 159px;
}
.prd #header-search #searchType {
  color: #333333;
  margin: 0 6px;
  padding: 2px;
}
.prd #header-search #searchType option {
  padding-right: 9px;
}
.prd #header-search a > .icon-search {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  color: white;
  background-color: #fb8000;
  padding: 3px 4px;
  text-decoration: none;
}
.prd ul#header-menu {
  margin: 13px 0 0 0;
  padding: 0;
  text-align: right;
  z-index: 999998;
}
.prd ul#header-menu > li {
  border-right: 1px solid #666666;
  display: inline;
}
.prd ul#header-menu > li a {
  color: #333333;
  padding: 5px 6px;
  text-decoration: none;
}
.prd ul#header-menu .tm2 li a {
  padding: 0 6px;
  padding-left: 0px;
  display: block;
}
.prd ul#header-menu > li a:hover {
  text-decoration: underline;
}
.prd ul#header-menu > li.first a {
  padding-left: 0;
}
.prd ul#header-menu > li.first.tm-active a {
  padding-left: 6px;
}
.prd ul#header-menu > li.last {
  border: none;
}
.prd ul#header-menu > li.last a {
  border: none;
  padding-right: 0;
}
.prd ul#header-menu > li.last.tm-active a {
  padding-right: 6px;
}
.prd #header-title {
  color: #333333;
  padding: 5px;
  padding-bottom: 5px;
}
.prd #welcome #header-title {
  color: #333333;
  padding: 0;
  padding-bottom: 0;
}
.prd #nav {
  width: 100%;
}
.prd #main {
  clear: left;
  /*@include zen-grid-item(12, 1);*/
  position: static;
}
.prd #main > div {
  clear: left;
  /* RJG - apply default margin-top too?? */
  margin-top: 10px;
}
.prd .login #dashboard {
  /*@include zen-clear();*/
  background-color: #f0f0f0;
  margin-top: 0px;
  /*Updated to remove top spacing per demo - MWW*/
  min-height: 358px;
  /* @TODO -- change back to height to remove responsive? */
  position: relative;
}
.prd .login #dashboard .section3-1-expanded {
  clear: left;
  float: left;
  width: 66.66667%;
  margin-left: 33.33333%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding-bottom: 10px;
  /*min-height:338px;*/
}
.prd .login #dashboard .section3-2-expanded {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding-bottom: 10px;
  /*min-height:338px;*/
}
.prd .login #dashboard .section1 {
  clear: left;
  float: left;
  width: 33.33333%;
  margin-left: 0%;
  margin-right: -33.33333%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding: 10px 5px 10px 10px;
}
.prd .login #dashboard .section1 .inner {
  background-color: #fb8000;
  min-height: 338px;
}
.prd .login #dashboard .section3-1-expanded .inner {
  padding-left: 10px;
  background-color: #d75426;
  z-index: 1001;
  min-height: 338px;
  padding: 10px;
  margin-right: 10px;
  color: #333333;
}
.prd .login #dashboard .section3-1-expanded .inner .inner-wrapper {
  background-color: white;
  min-height: 318px;
}
.prd .login #dashboard .section3-1-expanded-left {
  width: 40%;
  padding: 0px 1.5em .5em 20px;
  margin-top: 20px;
  float: left;
  border-right: 1px solid #dbdbdb;
  min-height: 279px;
  margin-bottom: 20px;
}
.prd .login #dashboard .section3-2-expanded-right {
  width: 100%;
  float: left;
  min-height: 279px;
  position: relative;
}
.prd .login #dashboard .section3-2-expanded-left {
  width: 65%;
  padding: 0px 1.5em .5em 20px;
  margin-top: 20px;
  float: left;
  border-right: 1px solid #dbdbdb;
  min-height: 279px;
  margin-bottom: 20px;
}
.prd .login #dashboard .section3-1-expanded-right {
  width: 100%;
  float: left;
  min-height: 279px;
  position: relative;
}
.prd .login #dashboard .section3-1-expanded .close-section3-1-expanded {
  font-size: 153.8%;
  font-weight: bold;
  position: absolute;
  right: 10px;
  top: 7px;
  z-index: 1000;
}
.prd .login #dashboard .section3-1-expanded a.close-section3-1-expanded:hover {
  text-decoration: none;
}
.prd .login #dashboard .section3-2-expanded .close-section3-2-expanded {
  font-size: 153.8%;
  font-weight: bold;
  position: absolute;
  right: 12px;
  top: 7px;
  z-index: 1000;
}
.prd .login #dashboard .section3-2-expanded a.close-section3-2-expanded:hover {
  text-decoration: none;
}
.prd .login #dashboard .section2 {
  float: left;
  width: 33.33333%;
  margin-left: 33.33333%;
  margin-right: -66.66667%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding: 10px 5px 10px 5px;
}
.prd .login #dashboard .section2.full {
  float: left;
  width: 66.66667%;
  margin-left: 33.33333%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding: 10px 10px 10px 5px;
}
.prd .login #dashboard .section2.full .inner {
  background-color: #fb8000;
  height: 338px;
  padding: 10px 10px 10px 10px;
}
.prd .login #dashboard .section2.full a {
  text-decoration: underline;
}
.prd .login .flex-viewport ul li img {
  min-height: 338px;
}
.prd .login #dashboard .section3 {
  float: left;
  width: 33.33333%;
  margin-left: 66.66667%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding-left: 0;
  padding-right: 0;
  /* mark as having sub-grid */
  padding: 10px 10px 10px 5px;
}
.prd .login #dashboard .section3-1 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  cursor: pointer;
  padding-bottom: 10px;
}
.prd .login #dashboard .section3-1 .inner {
  background-color: #fb8000;
  min-height: 164px;
  /* @TODO -- change back to height to remove responsive? */
  position: relative;
}
.prd .login #dashboard .section3-1 .inner .valignmiddle {
  position: absolute;
  height: 73%;
  width: 94%;
}
.prd .login #dashboard .section3-2 .inner .valignmiddle {
  height: 73%;
  width: 94%;
  position: absolute;
}
.prd .login #dashboard .section3-1 .inner .valignmiddle p,
.prd .login #dashboard .section3-2 .inner .valignmiddle p {
  margin-bottom: 0px;
}
.prd .login #dashboard .section3-2 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  cursor: pointer;
}
.prd .login #dashboard .section3-2 .inner {
  background-color: #d75426;
  min-height: 164px;
  /* @TODO -- change back to height to remove responsive? */
  position: relative;
}
.prd .login #dashboard .carousel {
  min-height: 338px;
  /* @TODO -- change back to height to remove responsive? */
  min-width: 332px;
  /* @TODO -- change back to width to remove responsive? */
}
.prd #welcome {
  /*@include zen-clear();*/
  padding-left: 0;
  padding-right: 0;
  margin-top: 10px;
}
.prd #welcome .section1 {
  float: left;
  border: none;
}
.prd #welcome .section2 {
  float: right;
  border: none;
}
.prd .home #welcome {
  text-align: right;
}
.prd #account-main {
  /*@include zen-clear();*/
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.prd #account-main > h2 {
  color: #fb8000;
  border-bottom: 10px solid #fb8000;
}
.prd #account-main > h2 a {
  color: #fb8000;
}
.prd #account-main .four-cols .section1 {
  clear: left;
  float: left;
  width: 25%;
  margin-left: 0%;
  margin-right: -25%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd #account-main .four-cols .section2 {
  float: left;
  width: 25%;
  margin-left: 25%;
  margin-right: -50%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd #account-main .four-cols .section3 {
  float: left;
  width: 25%;
  margin-left: 50%;
  margin-right: -75%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd #account-main .four-cols .section4 {
  float: left;
  width: 25%;
  margin-left: 75%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd #account-main .three-cols .section1 {
  clear: left;
  float: left;
  width: 33.33333%;
  margin-left: 8.33333%;
  margin-right: -41.66667%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd #account-main .three-cols .section2 {
  float: left;
  width: 33.33333%;
  margin-left: 33.33333%;
  margin-right: -66.66667%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd #account-main .three-cols .section3 {
  float: left;
  width: 33.33333%;
  margin-left: 58.33333%;
  margin-right: -91.66667%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd #account-main .two-cols .section1 {
  clear: left;
  float: left;
  width: 41.66667%;
  margin-left: 16.66667%;
  margin-right: -58.33333%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd #account-main .two-cols .section2 {
  float: left;
  width: 33.33333%;
  margin-left: 41.66667%;
  margin-right: -75%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd #account-main .one-col .section1 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd #account-main .section5 {
  clear: left;
  border: none;
}
.prd #account-overview .section1,
.prd #account-overview .section2,
.prd #account-overview .section3,
.prd #account-overview .section4 {
  text-align: center;
}
.prd #account-overview .section1 ul li,
.prd #account-overview .section2 ul li,
.prd #account-overview .section3 ul li,
.prd #account-overview .section4 ul li {
  list-style-type: none;
}
.prd .currentDate {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 107.7%;
}
.prd #account-info {
  clear: left;
  /* @TODO is this needed? */
}
.prd #account-info .section1 {
  clear: left;
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding-left: 0;
  padding-right: 0;
}
.prd #account-info .section1-1 {
  border: 0 none;
}
.prd #account-info .section1-2 {
  border: 0 none;
}
.prd #account-info .section2 {
  float: left;
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: 0 none;
  padding-left: 15px;
}
.prd #account-info .section2full {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: 0 none;
}
.prd #account-info .section3 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: 0 none;
}
.prd #account-info .section3 .inner {
  padding-left: 18px;
  padding-right: 18px;
}
.prd #account-info h2 {
  background-color: #fb8000;
  border-bottom: 0px none;
  color: white;
  font-weight: normal;
  padding: 5px 0;
  text-align: center;
}
.prd #account-info .section1 .section1-2 h2 {
  background-color: #b73f7c;
}
.prd #account-info .manage-investments {
  font-size: 115.4%;
  padding-bottom: 13px;
  text-align: center;
}
.prd #planning {
  /*@include zen-clear();*/
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  margin-top: 15px;
  /*border: 1px solid blue;*/
  /*Debug border: removed MWW*/
}
.prd #planning-tools {
  float: left;
  width: 66.66667%;
  margin-left: 0%;
  margin-right: -66.66667%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding-left: 0;
  padding-right: 0;
  /* mark as having sub-grid */
  padding-right: 5px;
}
.prd #planning-tools h2 {
  border-bottom: 10px solid #fb8000;
}
.prd #planning-tools.no-plan-info {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding-left: 0;
  padding-right: 0;
}
.prd #planning-tools .section1-1 {
  clear: left;
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  /*border: 1px solid red;*/
  /*Debug border: removed MWW*/
  margin-top: 10px;
}
.prd #planning-tools.no-plan-info .section1-1 {
  clear: left;
  float: left;
  width: 33.33333%;
  margin-left: 0%;
  margin-right: -33.33333%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
}
.prd #planning-tools .section1-2 {
  float: left;
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  /*border: 1px solid green;*/
  /*Debug border: removed MWW*/
  margin-top: 10px;
}
.prd #planning-tools.no-plan-info .section1-2 {
  float: left;
  width: 33.33333%;
  margin-left: 33.33333%;
  margin-right: -66.66667%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
}
.prd #planning-tools .section1-3 {
  float: left;
  width: 33.33333%;
  margin-left: 66.66667%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  margin-top: 10px;
}
.prd #planning-tools.no-plan-info .section1-3 {
  float: left;
  width: 33.33333%;
  margin-left: 66.66667%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
}
.prd #planning-information {
  float: left;
  width: 33.33333%;
  margin-left: 66.66667%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding-left: 5px;
}
.prd #planning-information.no-tools {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding-left: 5px;
}
.prd #planning-information h2 {
  border-bottom: 10px solid #d75426;
}
.prd #messaging {
  background-color: #f0f0f0;
  border: 1px solid black;
  /* @DEBUG */
}
.prd #main-content {
  margin-top: 20px;
}
.prd #portfolio h2 {
  border-bottom: 10px solid #fb8000;
  color: #fb8000;
}
.prd #portfolio h2 a {
  color: #fb8000;
}
.prd #rr-marquee-outer {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
}
.prd #rr-marquee-outer > h2 {
  border-bottom: 10px solid #fb8000;
  color: #fb8000;
}
.prd #rr-marquee-outer > h2 a {
  color: #fb8000;
}
.prd #marketwatch {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  margin-top: 20px;
}
.prd #marketwatch h2 {
  color: #333333;
  border-bottom: 10px solid #333333;
}
.prd #marketwatch h2 a {
  color: #333333;
}
.prd #marketwatch > div {
  padding: 10px 10px 0;
}
.prd #messages {
  clear: left;
  /*@include zen-nested-container();*/
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  position: relative;
}
.prd #messages h2 {
  color: #d75426;
  border-bottom: 10px solid #d75426;
}
.prd #messages h2 a {
  color: #d75426;
}
.prd #messages .inner {
  margin: 0 auto;
  padding: 10px 0 0;
}
.prd #messages .msg-section {
  border: 1px solid #dbdbdb;
  float: left;
  margin-left: 6px;
  width: 200px;
}
.prd #messages .msg-section.first {
  margin-left: 0;
}
.prd #messages .msg-section .action-image {
  height: 180px;
  width: 198px;
}
.prd #messages .msg-section .action-link,
.prd #messages .msg-section .action-link a {
  border-top: 1px solid #dbdbdb;
  color: #333333;
  margin: 8px;
  padding-top: 8px;
  text-align: right;
}
.prd #messages .section1,
.prd #messages .section2,
.prd #messages .section3 {
  background-color: #f0f0f0;
  height: 223px;
  font-size: 115.4%;
}
.prd .login #dashboard .flex-direction-nav {
  display: none;
}
.prd #main-content-bottom {
  clear: both;
  position: relative;
}
.prd .business-partner-access {
  font-weight: bold;
}
.prd ul.square-ul {
  color: #fb8000;
  font-size: 215.4%;
  list-style: square outside none;
  padding-right: 40px;
}
.prd ul.square-ul li {
  line-height: 16px;
  margin-bottom: 13px;
  padding: 6px;
}
.prd ul.square-ul span {
  color: #333333;
  font-size: 13px;
  vertical-align: middle;
}
.prd .square-ul li {
  background: #f0f0f0;
}
.prd .square-ul li:nth-child(odd) {
  background: white;
}
.prd .bottom-nav {
  *zoom: 1;
}
.prd .bottom-nav:before, .prd .bottom-nav:after {
  content: " ";
  display: table;
}
.prd .bottom-nav:after {
  clear: both;
}
.prd #header {
  border-bottom: 1px solid #d75426;
  margin-top: 10px;
  position: relative;
}
.prd #header.noborder {
  border: 0;
}
.prd .login #header {
  margin-top: 15px;
  border: 0;
}
.prd #skip {
  position: absolute;
  left: 33%;
  top: 33%;
  width: 66%;
}
.prd #skip li {
  list-style: none;
}
.prd #skip li a {
  position: absolute;
  left: -99999px;
}
.prd #skip li a:focus {
  left: 0;
}
.prd #logo {
  -moz-background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  margin-bottom: 13px;
  background: url(../images/logo.png) no-repeat 0 0;
  height: 68px;
  width: 240px;
}
.prd #header-nav {
  float: right;
}
.prd #main {
  /*padding-top: 10px;*/
}
.prd #footer {
  clear: left;
  background-color: #dbdbdb;
  float: left;
  font-size: 14px;
  line-height: 160%;
  margin: 15px 0 5px;
  padding: 18px;
  width: 100%;
}
.prd #footer-logo {
  -moz-background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  float: right;
  margin-right: 36px;
  background: url(../images/logo_footer.png) no-repeat 0 0;
  height: 36px;
  width: 131px;
}
.prd .pageTitle {
  padding: 18px;
  font-size: 200%;
}
.prd h2.standardHeading {
  color: #fb8000;
  padding-left: 18px;
  font-size: 24px;
  font-weight: normal;
  border-bottom: 10px solid #fb8000;
}
.prd #morningstar .ratingBar {
  margin: 0 18px;
  padding: 6px 18px 6px 18px;
}
.prd #morningstar .ratingBar .textSection {
  float: left;
  padding: 4px 40px 4px 0px;
}
.prd #morningstar .ratingBar .textTop {
  font-size: 230.8%;
  color: #fff;
  font-weight: bold;
}
.prd #morningstar .ratingBar .textBottom {
  font-size: 153.8%;
  color: #fff;
}
.prd #morningstar .ratingBar .starSection {
  float: left;
  white-space: nowrap;
  font-size: 60px;
}
.prd #morningstar .ratingBar .starSection i {
  color: #ffffff;
  margin-right: 0px;
  display: inline-block;
}
.prd #morningstar .ratingBar .starSection i:nth-child(1) {
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20);
}
.prd #morningstar .ratingBar .starSection i:nth-child(2) {
  opacity: 0.4;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
}
.prd #morningstar .ratingBar .starSection i:nth-child(3) {
  opacity: 0.6;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
}
.prd #morningstar .ratingBar .starSection i:nth-child(4) {
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}
.prd #morningstar .ratingBar .starSection i:nth-child(5) {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}
.prd #morningstar .panBarPri {
  border-width: 0 0 10px 0;
  border-style: solid;
  padding: 20px 18px 0 18px;
  width: 100%;
}
.prd #morningstar .panBarPri h2 {
  margin: 0px;
  font-size: 153.8%;
  font-weight: normal;
}
.prd #morningstar .panBarSec {
  border-width: 0 0 10px 0;
  border-style: solid;
  padding: 20px 18px 0 18px;
  width: 100%;
}
.prd #morningstar .panBarSec h2 {
  margin: 0px;
  font-size: 146.2%;
  font-weight: normal;
}
.prd #morningstar .panBarTer {
  border-width: 0 0 10px 0;
  border-style: solid;
  padding: 0 18px 0 18px;
  width: 100%;
}
.prd #morningstar .panBarTer h2 {
  margin: 0px;
  font-size: 153.8%;
  font-weight: normal;
}
.prd #morningstar .starQuestions {
  padding: 10px 0;
  font-size: 138.5%;
}
.prd #morningstar .starQuestions .answerTitle {
  padding: 0 18px 14px 18px;
}
.prd #morningstar .starQuestions .questSection {
  padding: 0 0;
}
.prd #morningstar .starQuestions .questSection .questOdd {
  background-color: #F7F7F7;
  padding: 5px 18px;
}
.prd #morningstar .starQuestions .questSection .questEven {
  background-color: #FFF;
  padding: 5px 18px;
}
.prd #morningstar .starQuestions .selectorRgt {
  float: right;
  padding-left: 18px;
}
.prd #morningstar .starQuestions .selectorNo {
  float: right;
}
.prd #morningstar .starQuestions .answeredNo {
  padding: 14px 18px;
  border-bottom: 1px solid #C6C6C6;
  border-top: 1px solid #C6C6C6;
  margin-top: 14px;
}
.prd #morningstar .starQuestions .answeredNoText {
  font-weight: bold;
}
.prd #morningstar .starQuestions .starEnd {
  padding: 18px;
}
.prd #morningstar .managedByWrapper {
  *position: relative;
  *zoom: 1;
}
.prd #morningstar .managedByWrapper:before, .prd #morningstar .managedByWrapper:after {
  content: "";
  display: table;
}
.prd #morningstar .managedByWrapper:after {
  clear: both;
}
.prd #morningstar .managedByRgt {
  float: left;
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding-left: 9px;
}
.prd #morningstar .managedByLeft {
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding-right: 9px;
}
.prd #morningstar .managedByContent {
  padding: 14px 18px;
  font-size: 115.4%;
}
.prd #morningstar .managedByContent li {
  padding-bottom: 8px;
}
.prd #morningstar .whoIsMstar {
  padding: 18px 18px 0 18px;
  font-size: 115.4%;
}
.prd #morningstar .whoIsMstar ul {
  margin: 0;
  padding: 0 18px;
}
.prd #morningstar .whoIsMstar li {
  padding-bottom: 8px;
}
.prd #morningstar .panelNumber {
  vertical-align: middle;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  width: 22px;
  height: 22px;
  display: inline-block;
  line-height: 24px;
  text-align: center;
  font-size: 92.3%;
  color: #FFFFFF;
  margin-bottom: 5px;
}
.prd #morningstar #disclosure-inner.hide {
  display: none;
}
.prd #morningstar #disclosure {
  clear: left;
}
.prd #morningstar #disclosure h2 {
  color: #333333;
  border-bottom: 10px solid #333333;
}
.prd #morningstar #disclosure h2 a {
  color: #333333;
}
.prd #morningstar #disclosure > div {
  padding: 10px 10px 0;
}
.prd .page-getAdviceTerms #panel-getAdviceTerms {
  margin-top: 20px;
}
.prd .page-getAdviceTerms #panel-getAdviceTerms .panelBody {
  padding: 0px 18px 0px 18px;
}
.prd .page-getAdviceTerms .section-acceptDecline {
  margin: 20px 0px 50px 0px;
  font-size: 16px;
}
.prd .page-getAdviceTerms .section-acceptDecline .radioWrapper {
  margin-right: 10px;
}
.prd .page-getAdviceTerms .bottom-nav {
  padding: 18px 0px 0px 0px;
  border-top: 1px solid #cccccc;
}
.prd .page-getAdviceTerms #welcome #header-title {
  padding-left: 18px;
}
.prd #remember-me-hidden {
  display: none;
}
.prd div.toggleTarget {
  overflow: hidden;
}
.prd span.toggleTarget {
  cursor: pointer;
}
.prd .toggleTarget i {
  font-size: 115.4%;
  margin-right: 2px;
  padding-left: 2px;
}
.prd #portfolio-list-tab-view,
.prd #portfolio-list-full-view {
  cursor: pointer;
}
.prd #header-menu > li {
  display: inline;
  float: left;
  position: relative;
}
.prd .tm1,
.prd .tm2 {
  margin-left: 2px;
  margin-right: 2px;
}
.prd .tm2 {
  position: absolute;
  left: -9999px;
}
.prd .tm2 ul {
  padding-left: 30px;
  text-align: left;
  list-style: square;
}
.prd .tm2 ul li {
  margin-bottom: 10px;
}
.prd .tm-active .tm1 {
  margin-bottom: 0;
}
.prd .tm-active .tm1 a {
  background: #d75426;
  border-style: solid;
  border-width: 0 0 4px 0;
  border-color: #d75426;
}
.prd ul#header-menu .tm-active .tm1 a {
  color: white;
}
.prd .tm-active .tm2 {
  background: #f0f0f0;
  border: 4px solid #d75426;
  left: auto;
  right: 0;
  top: 20px;
  z-index: 999998;
}
.prd .section2full #account-info-tab-1,
.prd .section2full #account-info-tab-2 {
  border-top: 0;
  float: left;
  width: 50%;
}
.prd .section2full #account-info-tab-1 {
  padding-right: 7.5px;
}
.prd .section2full #account-info-tab-2 {
  padding-left: 7.5px;
}
.prd .section2full .roundedtabs > div {
  clear: none;
}
.prd #pie3DChart {
  margin: 15px 0;
}
.prd #header #header-title {
  margin: 6px 0 0 0;
  padding: 0;
}
.prd #header #header-title,
.prd #welcome #header-title {
  word-wrap: break-word;
}
.prd #welcome #header-title {
  max-width: 485px;
}
.prd #last-login-date {
  margin-left: 1em;
}
.prd #header .section2.large #header-title,
.prd #welcome.large #header-title {
  font-size: 184.6%;
}
.prd #header .section2.large #last-login-date,
.prd #welcome.large #last-login-date {
  margin-top: 8px;
}
.prd #header .section2.large #select-account,
.prd #welcome.large #select-account {
  margin-top: 6px;
}
.prd #header .section2.medium #header-title,
.prd #welcome.medium #header-title {
  font-size: 153.8%;
}
.prd #header .section2.medium #last-login-date,
.prd #welcome.medium #last-login-date {
  margin-top: 5px;
}
.prd #header .section2.medium #select-account,
.prd #welcome.medium #select-account {
  margin-top: 4px;
}
.prd #header .section2.small #header-title,
.prd #welcome.small #header-title {
  font-size: 123.1%;
}
.prd #header .section2.small #last-login-date,
.prd #welcome.small #last-login-date {
  margin-top: 2px;
}
.prd #header .section2.tiny #header-title,
.prd #welcome.tiny #header-title {
  font-size: 92.3%;
}
.prd #portfolio-total-details {
  font-size: 13px;
  margin-left: 6px;
}
.prd #portfolio-total-details > a {
  padding-top: 6px;
}
.prd .total {
  font-size: 130.8%;
}
.prd #asset-class-legend {
  margin: 1em;
}
.prd #asset-class-legend h3 {
  margin-top: 0;
}
.prd #asset-class-legend > div {
  float: left;
  margin-bottom: .3em;
  width: 50%;
}
.prd #asset-class-legend > div > div {
  float: left;
}
.prd .asset-class-swatch {
  border: 1px solid black;
  width: .9em;
  height: .9em;
  margin: 2px .6em 0px;
}
.prd #first-time-login-modal {
  min-width: 300px;
  max-width: 334px;
}
.prd .allocations-chart {
  height: 220px;
  margin-top: 13px;
  width: 220px;
}
.prd .balance-history-nav .active a:hover {
  text-decoration: none;
  cursor: default;
}
.prd .accordion-wrapper .slide .inner {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  *behavior: none;
}
.prd #portfolio-inner.hide {
  display: none;
}
.prd #account-main-inner.hide {
  display: none;
}
.prd #marketwatch-inner.hide {
  display: none;
}
.prd #messages-inner.hide {
  display: none;
}
.prd #rr-marquee.hide {
  display: none;
}
.prd .rr-marquee-right #accordion .inner div.marquee-loading,
.prd .marquee-loading {
  background-color: #dbdbdb;
  float: none;
  z-index: 2;
  padding-top: 0;
  width: 240px;
}
.prd .rr-marquee-right #accordion .inner div.marquee-loading img,
.prd .marquee-loading img {
  width: 30px;
  height: 30px;
  margin-left: 105px;
  margin-top: 105px;
}
.prd .asset-class-percent {
  text-align: right;
  width: 50px;
}
.prd .rr-marquee-right #accordion .inner > div {
  margin-left: 3px;
}
.prd .rr-marquee-right #accordion .slide > h2 {
  cursor: pointer;
}
.prd .rr-marquee-right #accordion .inner div {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  *behavior: url(static/global/js/vendor/ie/boxsizing.htc);
  background-color: #fff;
  display: block;
  float: none;
  font-size: 13px;
  height: auto;
  line-height: normal;
  padding: 0;
  position: relative;
  width: auto;
}
.prd .rr-marquee-right #accordion .inner .rr-message {
  float: none;
  height: 240px;
  width: 240px;
}
.prd .rr-marquee-right #accordion .inner .top {
  height: 200px;
  width: 240px;
}
.prd .rr-marquee-right #accordion .inner .bottom {
  border-top: 1px solid #E2E2E2;
  height: 40px;
  padding: 10px;
}
.prd .rr-marquee-right #accordion .inner .survey-header {
  height: 78px;
  width: 240px;
}
.prd .rr-marquee-right #accordion .inner .title {
  border-bottom: 1px solid #E2E2E2;
  font-size: 18px;
  font-weight: bold;
  margin: 5px 10px 0;
  padding: 5px 10px;
  text-align: center;
}
.prd .rr-marquee-right #accordion .inner .subtitle {
  color: #666666;
  font-size: 12px;
  margin: 10px 10px 5px 10px;
}
.prd .rr-marquee-right #accordion .inner .questions {
  font-size: 12px;
  margin: 2px 10px 0;
}
.prd .rr-marquee-right #accordion .inner .questions ul {
  list-style-type: none;
}
.prd .rr-marquee-right #accordion .inner .questions ul li {
  padding: 2px;
}
.prd .rr-marquee-right #accordion .inner .questions input[type=checkbox],
.prd .rr-marquee-right #accordion .inner .questions input[type=radio] {
  float: left;
  margin-right: 0.4em;
}
.prd .rr-marquee-right #accordion .inner .action {
  float: right;
  margin-right: 10px;
}
.prd .rr-marquee-right #accordion .inner .action a {
  color: #333333;
}
.prd .account #account-info-tabs table.labels,
.prd .account #account-info-tabs table.totals {
  width: 458px;
}
@media screen and (max-width: 1080px) {
  .prd .account #account-info-tabs table.labels,
  .prd .account #account-info-tabs table.totals {
    width: 434px;
  }
}
.prd .account #account-info-tabs table.account-data td {
  padding: 9px 2px 7px;
}
.prd .account #account-info-tabs table.account-data td {
  font-size: 11px;
}
.prd .account #account-info-tabs table.account-data td.first {
  padding: 8px 2px;
  font-size: 13px;
}
.prd .account #account-info-tabs table.account-data thead,
.prd .account #account-info-tabs table.account-data thead tr th,
.prd .account #account-info-tabs table.totals thead,
.prd .account #account-info-tabs table.totals thead tr th {
  visibility: hidden;
  margin: 0;
  padding: 0;
  height: 0;
  line-height: 0;
}
.prd .account #account-info-tabs table.account-data thead tr th,
.prd .account #account-info-tabs table.totals thead tr th {
  margin: 0;
  padding: 0;
}
.prd .account #account-info-tabs .investments-fp table tr th.col1,
.prd .account #account-info-tabs .investments-uap table tr th.col1 {
  width: 36%;
}
.prd .account #account-info-tabs .investments-fp table tr th.col2,
.prd .account #account-info-tabs .investments-uap table tr th.col2 {
  width: 20.5%;
}
.prd .account #account-info-tabs .investments-fp table tr th.col3,
.prd .account #account-info-tabs .investments-uap table tr th.col3 {
  width: 23%;
}
.prd .account #account-info-tabs .investments-fp table tr th.col4,
.prd .account #account-info-tabs .investments-uap table tr th.col4 {
  width: 20.5%;
}
.prd .account #account-info-tabs .vested-balances table tr th.first,
.prd .account #account-info-tabs .vested-balances table tr th.first {
  width: 46%;
}
.prd .account #account-info-tabs .vested-balances table tr th,
.prd .account #account-info-tabs .vested-balances table tr th {
  width: 27%;
}
.prd #account-info-tabs .ui-state-active a {
  cursor: default;
}
.prd #portfolio-tabs .ui-state-active a {
  cursor: default;
}
.prd #header-name {
  font-size: 15px;
}
.prd .login #dashboard {
  color: white;
}
.prd .login #dashboard .section1 a {
  color: white;
}
.prd .login #dashboard .section1 h2 {
  font-weight: normal;
  margin-bottom: 25px;
  font-size: 200%;
}
.prd .login #dashboard .section1 select {
  color: #333333;
  width: 230px;
}
.prd .login #dashboard .section1 input {
  width: 230px;
  color: #333333;
}
.prd .login #dashboard .section1 #remember-me {
  display: block;
  width: auto;
  float: left;
  font-size: 123.1%;
  margin-left: 11px;
  margin-top: 8px;
}
.prd .login #dashboard .section1 #remember-me input {
  width: 20px;
}
.prd .login #dashboard .section1 .preference-select {
  float: left;
  margin-bottom: 10px;
  margin-left: 36px;
}
.prd .login #dashboard .section1 .login-box {
  float: left;
  margin-bottom: 10px;
  margin-left: 36px;
}
.prd .login #dashboard .section1 .service-links {
  float: left;
  margin-top: 5px;
  padding-left: 5px;
  font-size: 138.5%;
}
.prd .login #dashboard .section1 .service-links ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.prd .login #dashboard .section1 .service-links li {
  margin-bottom: 5px;
}
.prd .service-links a:hover {
  text-decoration: underline;
}
.prd .login #dashboard .section3-1-expanded {
  display: none;
  padding-left: 0;
  padding-bottom: 0;
  margin-right: 10px;
  position: absolute;
  top: 10px;
  z-index: 1001;
}
.prd .login #dashboard .section3-1-expanded ul {
  float: left;
  padding-left: 0;
  padding-right: 0;
  margin: 10px 15px 0px 0px;
  height: 276px;
  width: 43%;
  border-right: 1px solid #dbdbdb;
}
.prd .login #dashboard .section3-1-expanded ul li.ui-tabs-active {
  font-weight: bold;
}
.prd .login #dashboard .section3-1-expanded .ui-tabs-panel {
  width: 48%;
  height: 283px;
  overflow: hidden;
  margin: 20px;
}
.prd .login #dashboard .section3-2-expanded ul {
  float: left;
  font-family: arial,sans-serif;
  font-size: 16px;
  padding-left: 0;
  padding-right: 0;
  margin: 0px 25px 0px 10px;
  height: 270px;
  width: 29%;
  border-right: 1px solid #dbdbdb;
}
.prd .login #dashboard .section3-2-expanded ul li:first-child {
  padding-top: 5px;
}
.prd .login #dashboard .section3-2-expanded ul li.ui-tabs-active {
  font-weight: bold;
}
.prd .login #dashboard .section3-2-expanded .ui-tabs-panel {
  width: 98%;
  height: 279px;
  margin: 10px 10px 20px 20px;
  padding-right: 20px;
}
.prd .login #dashboard .section3-1-expanded-right li {
  color: #fb8000;
  list-style-type: none;
  padding: 10px;
  width: 252px;
}
.prd .login #dashboard .section3-1-expanded-right li a {
  text-decoration: none;
}
.prd .login #dashboard .section3-1-expanded-right li a:hover {
  text-decoration: underline;
}
.prd .login #dashboard .section3-1-expanded-right li:before {
  font-size: 120px;
}
.prd .login #dashboard .section3-1-expanded-right li.even {
  background-color: #f0f0f0;
}
.prd .login #dashboard .section3-2-expanded-right li {
  color: #fb8000;
  list-style-type: none;
  padding: 10px;
}
.prd .login #dashboard .section3-2-expanded-right li a,
.prd .login #dashboard .section3-2-expanded-left p a {
  text-decoration: none;
}
.prd .login #dashboard .section3-2-expanded-right li a:hover,
.prd .login #dashboard .section3-2-expanded-left p a:hover {
  text-decoration: underline;
}
.prd .login #dashboard .section3-2-expanded-right li:before {
  font-size: 120px;
}
.prd .login #dashboard .section3-2-expanded-right li.even {
  background-color: #f0f0f0;
}
.prd .login #dashboard .section3-2-expanded {
  position: absolute;
  top: 10px;
  display: none;
  z-index: 1001;
  padding-left: 0;
  padding-bottom: 0;
  margin-left: 10px;
}
.prd .login #dashboard .section3-2-expanded .inner {
  padding-left: 10px;
  background-color: #fb8000;
  z-index: 1001;
  min-height: 338px;
  padding: 10px;
  margin-right: 20px;
  color: #333333;
}
.prd .login #dashboard .section3-2-expanded .inner .inner-wrapper {
  background-color: white;
  min-height: 318px;
}
.prd .login #dashboard .section3-2-expanded h2 {
  color: #333333;
}
.prd .login #dashboard .section1 .inner {
  padding: 1em 0.5em 0.5em 1em;
}
.prd .login #dashboard .section3-1 .inner {
  padding: 1em 0.5em 0.5em 1em;
}
.prd .login #dashboard .section3-1 h2 {
  font-weight: normal;
}
.prd .login #dashboard .section3-1 .inner a {
  padding-left: 9px;
}
.prd .login #dashboard .section3-1 img {
  margin-bottom: 10px;
}
.prd .login #dashboard .inner .thumbnail {
  display: inline;
  float: right;
  margin: 5px;
  width: 86px;
  height: 86px;
}
.prd .login #dashboard .section3-2 .inner {
  padding: 1em 0.5em 0.5em 1em;
  font-weight: normal;
}
.prd .login #dashboard .section3-2 h2 {
  font-weight: normal;
}
.prd .login #dashboard .section3-2 .inner a {
  padding-left: 9px;
}
.prd .login #dashboard .section3-2 img {
  margin-bottom: 10px;
}
.prd #planning-information.no-tools .section1 .inner {
  width: 33%;
}
.prd #planning-tools h2 {
  color: #fb8000;
  padding-left: 18px;
  font-weight: normal;
}
.prd #planning-tools .inner {
  padding: 0px 18px 0.5em 18px;
}
.prd #planning-tools h3 {
  margin-top: 0;
  margin-bottom: 5px;
}
.prd #planning-tools h3 a {
  font-weight: normal;
  text-decoration: none;
}
.prd #planning-tools h3 a:hover {
  text-decoration: underline;
}
.prd #planning-tools .section1-1 p {
  margin-top: 0;
}
.prd #planning-tools .section1-1 .inner {
  padding-top: 10px;
  height: auto;
}
.prd #planning-tools.one-col .section1-1 .inner {
  border: 0;
}
.prd #planning-tools .section1-3 .inner {
  padding-top: 10px;
}
.prd #planning-tools .section1-1 {
  height: 100%;
}
.prd #planning-tools .section1-2 {
  border-left: 1px solid #dbdbdb;
  height: 100%;
}
.prd #planning-tools .section1-3 {
  border-left: 1px solid #dbdbdb;
  height: 100%;
}
.prd #planning-tools .section1-3 .inner {
  background-color: #f0f0f0;
  height: auto;
  /*margin-left:18px;
  margin-right:18px;*/
  padding-top: 10px;
}
.prd #planning-tools .section1-2 .inner {
  height: auto;
}
.prd #planning-tools .section1-1 form {
  margin-bottom: 10px;
}
.prd #planning-information h2 {
  color: #d75426;
  padding-left: 18px;
  font-weight: normal;
}
.prd #planning-tools .section1-2 p,
.prd #planning-tools .section1-3 p {
  margin-top: 0;
}
.prd #planning-information .section1 .inner {
  padding: 1em 18px 0.5em 18px;
}
.prd #planning-tools.no-plan-info .section1-1 .inner {
  /*margin-right: 18px;*/
}
.prd #planning-tools .section1-1 .inner.plan-information {
  border: 0;
}
.prd #planning-tools .inner.plan-information select {
  width: 100%;
}
.prd #planning-tools .section1-2 .inner {
  border: 0;
  background-color: #f0f0f0;
  margin-left: 18px;
  padding-top: 10px;
  margin-right: 18px;
}
.prd #planning-tools.no-plan-info .section1-2 .inner {
  padding-top: 10px;
  background-color: #f0f0f0;
  border-right: 0;
}
.prd #planning-tools.no-plan-info .section1-2 .inner {
  height: auto;
  border: 0;
}
.prd #planning-tools.no-plan-info .section1-3 .inner {
  background-color: #fff;
}
.prd #planning-tools.one-col.no-plan-info .section1-1 .inner {
  border: 0;
}
.prd .link-primary {
  color: #fb8000;
  text-decoration: none;
  font-weight: bold;
}
.prd .link-secondary {
  color: #d75426;
  text-decoration: none;
  font-weight: normal;
}
.prd .link-white {
  color: white;
  text-decoration: none;
  font-weight: normal;
}
.prd .link-white:hover {
  text-decoration: underline;
}
.prd .link-secondary:hover {
  text-decoration: underline;
}
.prd #portfolio-tabs .link-dark-gray a {
  color: #333333;
  text-decoration: none;
  font-size: 100%;
}
.prd #portfolio-tabs .link-dark-gray a:hover {
  text-decoration: underline;
}
.prd #portfolio-tabs select {
  font-size: 15px;
  margin-top: -2px;
  width: 177px;
}
.prd .link-dark-gray a {
  color: #333333;
  text-decoration: underline;
}
.prd .flex-control-nav {
  float: right;
  margin-right: 6px;
  margin-top: -15px;
  position: relative;
  text-align: right;
}
.prd .flex-control-nav li {
  text-align: center;
}
.prd .flexslider ul.slides {
  padding: 0;
  margin: 0;
}
.prd .flex-control-nav li a {
  background-color: #fff;
  border: 1px solid #fb8000;
  box-shadow: none;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
}
.prd .flex-control-paging li a:hover {
  background-color: #dbdbdb;
  box-shadow: none;
}
.prd .flex-control-paging li a.flex-active {
  background-color: #dbdbdb;
  box-shadow: none;
}
.prd #messaging {
  background: transparent;
  border: 0;
  margin-bottom: 0;
}
.prd #messaging .notice,
.prd #account-main .notice {
  background-color: #dbdbdb;
  border: 1px solid black;
  color: #333333;
  font-size: 153.8%;
  line-height: 8px;
  margin: 0 25px 18px;
  overflow: hidden;
  padding: 0 25px;
}
.prd #messaging .notice a {
  color: #333333;
}
.prd #messaging .notice .smallText {
  font-size: 61.5%;
  bottom: 13px;
  font-size: 53.8%;
  line-height: 14px;
  margin-right: 47px;
  position: absolute;
  right: 0;
  text-align: right;
  width: 103px;
}
.prd #account-main .notice {
  background: none repeat scroll 0 0 transparent;
  font-size: 107.7%;
  line-height: 20px;
  overflow: hidden;
  padding: 10px;
}
.prd #messaging .message,
.prd #messaging .alert,
.prd #messaging .action {
  color: #dbdbdb;
  font-size: 107.7%;
  line-height: 10px;
  padding: 6px 25px;
  /*Added alert padding MWW */
  line-height: 22px;
  border-top: 1px solid #333333;
  overflow: hidden;
}
.prd #messaging .alert.last {
  border-bottom: 1px solid #333333;
}
.prd #messaging .message {
  border-bottom: 1px solid #333333;
}
.prd #messaging .alert p,
.prd #messaging .message p,
.prd #messaging .action p {
  margin: 9px 0 3px;
}
.prd #messaging .message a,
.prd #messaging .alert a,
.prd #messaging .action a {
  color: #fb8000;
}
.prd #messaging .alert strong {
  font-size: 123.1%;
}
.prd #messaging .inner {
  position: relative;
}
.prd #messaging .inner i {
  font-size: 153.8%;
  left: 0;
  position: absolute;
  top: 14px;
}
.prd #messaging .message i {
  font-size: 123.1%;
}
.prd .icon-warning-sign {
  color: #fb8000;
}
.prd .icon-envelope {
  color: #36c36c;
}
.prd .icon-bell-alt {
  color: #fb8000;
}
.prd #planning-information .section1 select {
  width: 95%;
  margin-top: 15px;
}
.prd #planning-information .section1 ul {
  list-style: none;
  padding: 0;
}
.prd #planning-information .section1 li {
  padding: 5px;
}
.prd #footer ul {
  list-style: none;
  padding: 0;
  display: inline;
}
.prd #footer ul li {
  display: inline;
  border-left: 1px solid;
  padding-right: 10px;
  padding-left: 10px;
}
.prd #footer ul li.first {
  border-left: 0;
  padding-left: 0;
}
.prd #footer div {
  margin-bottom: 10px;
}
.prd #footer .adobe {
  width: 107px;
  height: 52px;
  float: left;
  margin-bottom: 0;
}
.prd #footer .social {
  float: right;
  width: 20%;
  margin-bottom: 0;
}
.prd #footer .social img {
  width: 26px;
  height: 26px;
  display: inline;
  margin: 10px;
}
.prd #footer #footer-logo {
  margin-bottom: 0;
}
.prd .submit_button {
  float: left;
  font-size: 138.5%;
  margin-left: 36px;
  padding-top: 3.5px;
  padding-bottom: 3.5px;
  color: white;
  background-color: #fb8000;
  cursor: pointer;
}
.prd .submit_button:hover {
  background-color: #ee7900;
}
.prd .submit_button a, .prd .submit_button span {
  padding-left: 15.4px;
  padding-right: 15.4px;
  padding-top: 3.5px;
  padding-bottom: 3.5px;
}
.prd #portfolio .inner ul.links {
  list-style: none;
  padding-left: 18px;
}
.prd #portfolio .inner ul.links li {
  display: inline;
  border-right: 1px solid #dbdbdb;
  padding-right: 10px;
  padding-left: 10px;
  color: #d75426;
  text-decoration: underline;
}
.prd #portfolio .inner ul.links li:first-child {
  padding-left: 0;
}
.prd #portfolio .inner ul.links li.last {
  border-right: 0px;
}
.prd #portfolio .inner ul.links li.active {
  color: #333333;
  cursor: auto;
  text-decoration: none;
}
.prd .mml3#messaging .alert {
  border-top: 0;
  font-size: 92.3%;
}
.prd .mml3#messaging .message {
  border-top: 0;
  border-bottom: 0;
  font-size: 92.3%;
}
.prd .mml3#messaging .action {
  border-top: 0;
  font-size: 92.3%;
}
.prd #planning-information select {
  color: #d75426;
}
.prd #tabs-messaging {
  white-space: normal;
}
.prd #tabs-messaging .ui-tabs-panel {
  width: 59%;
  font-size: 138.5%;
  overflow: hidden;
  margin: 10px 20px 20px 0px;
  float: right;
}
.prd #tabs-messaging h3 {
  font-size: 107.7%;
  color: #333333;
}
.prd #tabs-messaging ul {
  float: left;
  padding-left: 0;
  padding-right: 0;
  margin: 10px 15px 0px 0px;
  height: 100%;
  width: 36%;
  border-right: 1px solid #dbdbdb;
}
.prd #tabs-messaging ul li {
  color: #fb8000;
  list-style: none;
  font-size: 123.1%;
  margin-bottom: 10px;
}
.prd #tabs-messaging ul li i {
  margin-right: 5px;
}
.prd #tabs-messaging ul li .new {
  font-style: italic;
  font-size: 92.3%;
  font-weight: bold;
  color: #333333;
}
.prd #tabs-messaging ul li .new:hover {
  text-decoration: none;
}
.prd #tabs-messaging ul li a {
  color: #fb8000;
  text-decoration: none;
}
.prd #tabs-messaging ul li a:hover {
  text-decoration: underline;
}
.prd #tabs-messaging ul li.ui-tabs-active a {
  font-weight: bold;
  color: #333333;
}
.prd .section-1-content table td:first-child,
.prd #portfolio-tab-2 table td:first-child,
.prd #portfolio-tab-3 table td:first-child {
  width: 27%;
}
.prd .section-1-content table tr td table td:first-child,
.prd #portfolio-tab-3 table td:first-child {
  width: auto;
}
.prd #portfolio-tab-3 table tbody tr td table tbody tr td,
.prd #portfolio-tab-3 table tbody tr td table tbody tr td.vmiddle {
  padding-bottom: 25px;
}
.prd #portfolio-tab-3 table tbody tr td table tbody tr td table tbody tr td {
  padding: 0;
}
.prd .section-1-content table a, .prd #portfolio-tab-2 .savings table a, .prd #portfolio-tab-3 table a {
  color: #333333;
  text-decoration: none;
}
.prd .section-1-content table a:hover, .prd #portfolio-tab-2 .savings table a:hover, .prd #portfolio-tab-3 table a:hover {
  text-decoration: underline;
}
.prd .section-1-content table ul {
  padding-left: 0;
  color: #fb8000;
  font-size: 84.6%;
  margin-top: 0;
  margin-left: 20px;
}
.prd .section-1-content table ul li {
  display: list-item;
  list-style-type: square;
  list-style-position: inside;
  width: 100%;
  margin-top: 5px;
}
.prd .section-1-content table ul li a {
  text-decoration: none;
  color: #fb8000;
}
.prd .section-1-content table ul li a:hover {
  text-decoration: underline;
}
.prd .section3-2-expanded .ui-tabs-panel h3 {
  font-size: 169.2%;
  font-weight: normal;
  margin-bottom: 10px;
}
.prd .section3-2-expanded p {
  margin: 0px 10px 10px 10px;
}
.prd .section3-1-expanded p {
  margin: 0px 0px 0px 0px;
}
.prd .section3-1-expanded .ui-tabs-panel h3 {
  font-size: 138.5%;
  font-weight: normal;
  margin-bottom: 5px;
  margin-top: 5px;
}
.prd #rr-marquee {
  width: 100%;
  height: 290px;
  border-top: 1px solid #dbdbdb;
  padding-top: 4px;
  border-bottom: 1px solid #dbdbdb;
  position: relative;
  margin-bottom: 15px;
  text-align: center;
  -webkit-box-shadow: 0 12px 10px -7px #dbdbdb;
  -moz-box-shadow: 0 12px 10px -7px #dbdbdb;
  box-shadow: 0 12px 10px -7px #dbdbdb;
}
.prd #rr-marquee-wrapper {
  width: 865px;
  margin: 0 auto;
}
.prd .rr-marquee-left {
  display: block;
  position: relative;
  width: 380px;
  float: left;
  -webkit-box-shadow: 0 2px 12px -7px #dbdbdb;
  -moz-box-shadow: 0 2px 12px -7px #dbdbdb;
  box-shadow: 0 2px 12px -7px #dbdbdb;
}
.prd .rr-marquee-left-top {
  width: 100%;
  float: left;
  height: 57px;
  position: relative;
  padding: 20px 10px 10px 35px;
  background: #f0f0f0;
  /* Old browsers */
  background: -moz-linear-gradient(left, white 0%, #f0f0f0 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, white), color-stop(100%, #f0f0f0));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, white 0%, #f0f0f0 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, white 0%, #f0f0f0 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, white 0%, #f0f0f0 100%);
  /* IE10+ */
  background: linear-gradient(to right, #ffffff 0%, #f0f0f0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF0F0F0',GradientType=1 );
  /* IE6-9 */
  -pie-background: linear-gradient(180deg, #ffffff, #f0f0f0);
  /*-pie-background: linear-gradient(to bottom, #CCC, #EEE); /*ie 6-9 via PIE*/
  /*behavior: $pieURLprop;*/
  /*-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#ffffff')"; /* IE8+ */
}
.prd .rr-marquee-left-bottom {
  width: 100%;
  float: left;
  clear: left;
  height: 222px;
  position: relative;
  padding: 5px 10px 10px 35px;
  background: #f0f0f0;
  /* Old browsers */
  background: -moz-linear-gradient(left, white 0%, #f0f0f0 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, white), color-stop(100%, #f0f0f0));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, white 0%, #f0f0f0 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, white 0%, #f0f0f0 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(left, white 0%, #f0f0f0 100%);
  /* IE10+ */
  background: linear-gradient(to right, #ffffff 0%, #f0f0f0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFF0F0F0',GradientType=1 );
  /* IE6-9 */
  -pie-background: linear-gradient(180deg, #ffffff, #f0f0f0);
  /*-pie-background: linear-gradient(to bottom, #CCC, #EEE); /*ie 6-9 via PIE*/
  /*behavior: $pieURLprop;*/
  /*-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#ffffff')"; /* IE8+ */
}
.prd .rr-marquee-left-bottom #arrow-right {
  height: 132px;
  width: 33px;
  position: absolute;
  left: 379px;
  top: 10px;
  border: 10px solid transparent;
  border-top-color: transparent;
  border-top-style: solid;
  border-top-width: 83px;
  border-right-color: transparent;
  border-right-style: solid;
  border-right-width: 42px;
  border-bottom-color: transparent;
  border-bottom-style: solid;
  border-bottom-width: 83px;
  border-left-color: #f0f0f0;
  border-left-style: solid;
  border-left-width: 29px;
}
.prd .rr-marquee-left-top h2 {
  font-size: 230.8%;
  font-weight: bold;
}
.prd .rr-marquee-left-bottom p {
  margin-top: 16px;
}
.prd .rr-marquee-welcome-1 {
  font-size: 184.6%;
  font-weight: bold;
}
.prd .rr-marquee-welcome-2 {
  font-size: 153.8%;
}
.prd .rr-marquee-welcome-3 {
  font-size: 130.8%;
  font-style: italic;
}
.prd .rr-marquee-right {
  float: left;
  background-color: none;
  display: block;
  margin-left: 40px;
  width: auto;
}
.prd .rr-marquee-right h2 {
  font-size: 246.2%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.prd #rr-marquee #accordion {
  display: none;
}
.prd #rr-marquee #accordion ol {
  margin-left: 5px;
}
.prd .rr-marquee-right .accordion-wrapper {
  padding: 10px 10px 9px 10px;
  /*width: 550px;*/
  width: auto;
  background-color: #dbdbdb;
}
.prd .rr-marquee-right #accordion .inner > a img,
.prd .rr-marquee-right #accordion .inner > img,
.prd .rr-marquee-right #accordion .inner > iframe {
  width: 240px;
  height: 240px;
  margin-left: 3px;
}
.prd .rr-marquee-right #accordion div {
  width: 20px;
  background-color: #dbdbdb;
  float: right;
  display: inline;
  padding-top: 10px;
}
.prd .rr-marquee-right #accordion #slide1 .inner {
  width: 20px;
  float: right;
  display: inline;
  padding-top: 10px;
}
.prd .rr-marquee-right #accordion #slide1 h2 {
  font-size: 153.8%;
  margin-right: 10px;
  background-color: #dbdbdb;
}
.prd .rr-marquee-right #accordion #slide1 h2 b {
  background-color: #d75426;
}
.prd .rr-marquee-right #accordion #slide1 h2 span {
  background-color: #d75426;
  margin-top: 0;
  height: 80%;
  box-shadow: 0px 2px 4px #888888;
  line-height: 38px;
}
.prd .rr-marquee-right #accordion #slide1 h2.selected {
  border: 0;
}
.prd .rr-marquee-right #accordion #slide1 h2.selected .wrapper {
  position: absolute;
  top: 25px;
  right: 36px;
  padding: 0;
  width: 0;
  display: block;
  background: transparent;
}
.prd .rr-marquee-right #accordion div.wrapper {
  display: none;
  background: transparent;
}
.prd .liteAccordion.ie9 .slide > h2.selected #arrow-small {
  -ms-transform: translateX(-30px) translateY(13px) rotate(0deg);
  -ms-transform-origin: right top;
  background: transparent;
}
.prd .liteAccordion.basic .slide > h2 > span > a {
  color: white;
  text-decoration: none;
}
.prd .rr-marquee-right #accordion #slide1 h2.selected #arrow-small {
  padding: 0;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-right: 12px solid #d75426;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateX(-100%) rotate(-90deg);
  -webkit-transform-origin: bottom top;
  -moz-transform: translateX(-100%) rotate(-90deg);
  -moz-transform-origin: bottom top;
  -o-transform: translateX(-100%) rotate(-90deg);
  -o-transform-origin: bottom top;
  transform: translateX(-100%) rotate(-90deg);
  transform-origin: bottom top;
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  background: transparent;
}
.prd .rr-marquee-right #accordion #slide2 h2.selected .wrapper {
  position: absolute;
  top: 25px;
  right: 36px;
  padding: 0;
  width: 0;
  display: block;
  background: transparent;
}
.prd .rr-marquee-right #accordion #slide2 h2.selected #arrow-small {
  padding: 0;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-right: 12px solid #f38a1f;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateX(-100%) rotate(-90deg);
  -webkit-transform-origin: bottom top;
  -moz-transform: translateX(-100%) rotate(-90deg);
  -moz-transform-origin: bottom top;
  -o-transform: translateX(-100%) rotate(-90deg);
  -o-transform-origin: bottom top;
  transform: translateX(-100%) rotate(-90deg);
  transform-origin: bottom top;
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  background: transparent;
}
.prd .rr-marquee-right #accordion #slide3 h2.selected .wrapper {
  position: absolute;
  top: 25px;
  right: 36px;
  padding: 0;
  width: 0;
  display: block;
  background: transparent;
}
.prd .rr-marquee-right #accordion #slide3 h2.selected #arrow-small {
  padding: 0;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-right: 12px solid #ea7b21;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateX(-100%) rotate(-90deg);
  -webkit-transform-origin: bottom top;
  -moz-transform: translateX(-100%) rotate(-90deg);
  -moz-transform-origin: bottom top;
  -o-transform: translateX(-100%) rotate(-90deg);
  -o-transform-origin: bottom top;
  transform: translateX(-100%) rotate(-90deg);
  transform-origin: bottom top;
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  background: transparent;
}
.prd .rr-marquee-right #accordion #slide4 h2.selected .wrapper {
  position: absolute;
  top: 25px;
  right: 36px;
  padding: 0;
  width: 0;
  display: block;
  background: transparent;
}
.prd .rr-marquee-right #accordion #slide4 h2.selected #arrow-small {
  padding: 0;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-right: 12px solid #e06623;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateX(-100%) rotate(-90deg);
  -webkit-transform-origin: bottom top;
  -moz-transform: translateX(-100%) rotate(-90deg);
  -moz-transform-origin: bottom top;
  -o-transform: translateX(-100%) rotate(-90deg);
  -o-transform-origin: bottom top;
  transform: translateX(-100%) rotate(-90deg);
  transform-origin: bottom top;
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  background: transparent;
}
.prd .rr-marquee-right #accordion #slide5 h2.selected .wrapper {
  position: absolute;
  top: 25px;
  right: 36px;
  padding: 0;
  width: 0;
  display: block;
  background: transparent;
}
.prd .rr-marquee-right #accordion #slide5 h2.selected #arrow-small {
  padding: 0;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-right: 12px solid #fb8000;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateX(-100%) rotate(-90deg);
  -webkit-transform-origin: bottom top;
  -moz-transform: translateX(-100%) rotate(-90deg);
  -moz-transform-origin: bottom top;
  -o-transform: translateX(-100%) rotate(-90deg);
  -o-transform-origin: bottom top;
  transform: translateX(-100%) rotate(-90deg);
  transform-origin: bottom top;
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  background: transparent;
}
.prd .rr-marquee-right #accordion #slide1 h2.selected:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(Rotation=1)";
}
.prd .rr-marquee-right #accordion #slide2 .inner {
  width: 20px;
  float: right;
  display: inline;
  padding-top: 10px;
}
.prd .rr-marquee-right #accordion #slide2 h2 {
  font-size: 153.8%;
  background-color: #dbdbdb;
}
.prd .rr-marquee-right #accordion #slide2 h2 b {
  background-color: #f38a1f;
}
.prd .rr-marquee-right #accordion #slide2 h2 span {
  background-color: #f38a1f;
  margin-top: 0;
  height: 80%;
  box-shadow: 0px 2px 4px #888888;
  line-height: 38px;
}
.prd .rr-marquee-right #accordion #slide2 h2.selected {
  border: 0;
}
.prd .rr-marquee-right #accordion #slide3 .inner {
  width: 20px;
  float: right;
  display: inline;
  padding-top: 10px;
}
.prd .rr-marquee-right #accordion #slide3 h2 {
  background-color: #dbdbdb;
  font-size: 153.8%;
}
.prd .rr-marquee-right #accordion #slide3 h2 b {
  background-color: #ea7b21;
}
.prd .rr-marquee-right #accordion #slide3 h2 span {
  background-color: #ea7b21;
  margin-top: 0;
  height: 80%;
  box-shadow: 0px 2px 4px #888888;
  line-height: 38px;
}
.prd .rr-marquee-right #accordion #slide3 h2.selected {
  border: 0;
}
.prd .rr-marquee-right #accordion #slide4 .inner {
  width: 20px;
  float: right;
  display: inline;
  padding-top: 10px;
}
.prd .rr-marquee-right #accordion #slide4 h2 {
  background-color: #dbdbdb;
  font-size: 153.8%;
}
.prd .rr-marquee-right #accordion #slide4 h2 b {
  background-color: #e06623;
}
.prd .rr-marquee-right #accordion #slide4 h2 span {
  background-color: #e06623;
  margin-top: 0;
  height: 80%;
  box-shadow: 0px 2px 4px #888888;
  line-height: 38px;
}
.prd .rr-marquee-right #accordion #slide4 h2.selected {
  border: 0;
}
.prd .rr-marquee-right #accordion #slide5 .inner {
  width: 20px;
  float: right;
  display: inline;
  padding-top: 10px;
}
.prd .rr-marquee-right #accordion #slide5 h2 {
  background-color: #dbdbdb;
  font-size: 153.8%;
}
.prd .rr-marquee-right #accordion #slide5 h2 b {
  background-color: #fb8000;
}
.prd .rr-marquee-right #accordion #slide5 h2 span {
  background-color: #fb8000;
  margin-top: 0;
  height: 80%;
  box-shadow: 0px 2px 4px #888888;
  line-height: 38px;
}
.prd .rr-marquee-right #accordion #slide5 h2.selected {
  border: 0;
}
.prd .liteAccordion {
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font: 'Helvetica Neue', Verdana, Arial, sans-serif;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  -webkit-tap-highlight-color: transparent;
}
.prd .liteAccordion, .prd .liteAccordion * {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: content-box;
}
.prd .liteAccordion > ol {
  position: relative;
  overflow: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.prd .liteAccordion > ol > li {
  list-style-type: none;
}
.prd .liteAccordion .slide > h2 {
  color: black;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  /* fixes chrome bug */
  -webkit-transform: translateX(-100%) rotate(-90deg);
  -webkit-transform-origin: right top;
  -moz-transform: translateX(-100%) rotate(-90deg);
  -moz-transform-origin: right top;
  -o-transform: translateX(-100%) rotate(-90deg);
  -o-transform-origin: right top;
  transform: translateX(-100%) rotate(-90deg);
  transform-origin: right top;
}
.prd .liteAccordion .slide > h2 span {
  display: block;
  padding-right: 8%;
  text-align: right;
  height: 90%;
  margin-top: 10px;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.prd .liteAccordion .slide > h2 b {
  display: inline-block;
  position: absolute;
  top: 13%;
  left: 5%;
  text-align: center;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.prd .liteAccordion .slide > h2:hover {
  cursor: pointer;
}
.prd .liteAccordion .slide > div {
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  overflow: hidden;
  background: white;
}
.prd .liteAccordion .ap-caption {
  padding: 10px 15px;
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 3;
  background: black;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.prd .liteAccordion noscript p {
  padding: 10px;
  margin: 0;
  background: white;
}
.prd .liteAccordion.basic .slide > h2 {
  background: #333;
  color: white;
  line-height: 100%;
}
.prd .liteAccordion.dark {
  border: 9px solid #353535;
  border-bottom-width: 8px;
  padding: 5px 5px 6px 0;
  background: #030303;
  -webkit-box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
  box-shadow: 0 -1px 0 #5b5b5b inset, 0 5px 15px rgba(0, 0, 0, 0.4);
}
.prd .liteAccordion.dark .slide > h2 {
  background: #030303;
  text-shadow: 0 -1px 0 #030303;
  line-height: 265%;
}
.prd .liteAccordion.dark .slide > h2 span {
  background: #353535;
  color: white;
}
.prd .liteAccordion.dark .slide > h2 b {
  background: #353535;
  color: #030303;
  text-shadow: -1px 1px 0 #5b5b5b;
}
.prd .liteAccordion.dark .slide > h2.selected span, .prd .liteAccordion.dark .slide > h2.selected span:hover {
  background: #353535;
  background: -moz-linear-gradient(left, #353535 0%, #555555 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #353535), color-stop(100%, #555555));
  background: -webkit-linear-gradient(left, #353535 0%, #555555 100%);
  background: -o-linear-gradient(left, #353535 0%, #555555 100%);
  background: -ms-linear-gradient(left, #353535 0%, #555555 100%);
  background: linear-gradient(left, #353535 0%, #555555 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='ie_hex_str(#353535)', endColorstr='ie_hex_str(#555555)',GradientType=1 );
}
.prd .liteAccordion.dark .slide > h2.selected b {
  background: #383838;
  background: -moz-linear-gradient(top, #3a3a3a 0%, #363636 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3a3a3a), color-stop(100%, #363636));
  background: -webkit-linear-gradient(top, #3a3a3a 0%, #363636 100%);
  background: -o-linear-gradient(top, #3a3a3a 0%, #363636 100%);
  background: -ms-linear-gradient(top, #3a3a3a 0%, #363636 100%);
  background: linear-gradient(top, #3a3a3a 0%, #363636 100%);
}
.prd .liteAccordion.dark .slide > div {
  background: #030303;
  margin-left: 5px;
}
.prd .liteAccordion.rounded, .prd .rounded > ol {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
}
.prd .liteAccordion.rounded .slide > h2 span {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.prd .liteAccordion.ie .slide > h2,
.prd .liteAccordion.ie .slide > h2 span,
.prd .liteAccordion.ie .slide > h2 b {
  filter: none;
  -ms-filter: none;
  -ms-transform: none;
}
.prd .liteAccordion.ie7 .slide > h2 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
.prd .liteAccordion.ie7 .slide > h2 b {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.prd .liteAccordion.ie8 .slide > h2 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
}
.prd .liteAccordion.ie8 .slide > h2 b {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
}
.prd .liteAccordion.ie9 .slide > h2 {
  -ms-transform: translateX(-100%) rotate(-90deg);
  -ms-transform-origin: right top;
}
.prd .liteAccordion.ie9 .slide > h2 b {
  -ms-transform: rotate(90deg);
}
.prd .liteAccordion.ie7 .slide > h2 b, .prd .liteAccordion.ie8 .slide > h2 b {
  top: 27%;
  left: 5%;
}
.prd .liteAccordion.ie7.stitch .slide > h2 b, .prd .liteAccordion.ie8.stitch .slide > h2 b {
  top: 36%;
}
.prd .liteAccordion.ie9.stitch {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.prd .liteAccordion .slide > div.first {
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  overflow: hidden;
  background: white;
}
.prd table {
  width: 100%;
}
.prd a, .prd select {
  color: #fb8000;
  text-decoration: none;
}
.prd a:hover {
  text-decoration: underline;
}
.prd .last-login {
  font-size: 107.7%;
}
.prd #account-main .overview-bottom {
  clear: left;
}
.prd #account-main .overview-bottom .section1 {
  clear: left;
  float: left;
  width: 300%;
  margin-left: 0%;
  margin-right: -300%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  padding-left: 0;
  padding-right: 0;
  border: 0;
}
.prd #account-info .section1-1 .inner {
  position: relative;
  width: 100%;
}
.prd #account-info .section1-1 .inner .instructions {
  display: block;
  font-size: 100%;
  line-height: 18px;
  margin-left: 21px;
  margin-top: 13px;
  position: relative;
  width: 95%;
}
.prd #account-info .section1-1 .inner .tooltip {
  display: block;
  left: 240px;
  line-height: 28px;
  margin-right: 20px;
  position: absolute;
  top: 80px;
}
.prd #account-info .section1-1 .inner .tooltip .percentage {
  font-size: 184.6%;
}
.prd #account-info .section1-1 .inner .tooltip .assetclass {
  font-size: 153.8%;
}
.prd #account-main .overview-bottom .section1-1 h2,
.prd #account-main .overview-bottom .section1-2 h2 {
  border-bottom: 0;
  color: #000;
}
.prd #account-main .overview-bottom .section2 {
  float: left;
  width: 300%;
  margin-left: 300%;
  margin-right: -600%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
}
.prd #account-main .overview-bottom .section3 {
  clear: both;
  float: left;
  width: 600%;
  margin-left: 0%;
  margin-right: -600%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
}
.prd .login #dashboard .section1 .inner,
.prd .login #dashboard div .inner .inner {
  padding: 10px;
}
.prd .roundedtabs > ul {
  padding: 0;
  margin: 0;
}
.prd .roundedtabs > div {
  clear: both;
}
.prd #allocations-sub-tabs ul li,
.prd .roundedtabs li {
  list-style-type: none;
  display: block;
  float: left;
  margin-right: 10px;
  position: relative;
}
.prd .roundedtabs > ul > li a,
.prd .home .portfolio-item-title span,
.prd .account .account-info-item-title span {
  display: block;
  float: left;
  background-color: #d75426;
  text-align: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  padding: 2px 37px 3px;
  position: relative;
  zoom: 1;
  z-index: 100;
}
.prd .roundedtabs > ul > li a,
.prd .home .portfolio-item-title span {
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
}
.prd .account .account-info-item-title span {
  width: 100%;
}
.prd .portfolio-item-title,
.prd .account-info-item-title {
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  margin-top: 10px;
}
.prd .portfolio-item-title.first {
  margin-top: 0;
}
.prd .roundedtabs > ul > li a.title1,
.prd .home .portfolio-item-title.section1 span,
.prd .account-info-item-title.section01 span {
  background-color: #d75426;
}
.prd .roundedtabs > ul > li a.title2 {
  background-color: #b73f7c;
}
.prd .roundedtabs > .tab1 {
  border-top: 4px solid #d75426;
}
.prd .roundedtabs > .tab1.noborder {
  border-top: 0;
}
.prd .portfolio-item-title.section1 {
  border-bottom: 4px solid #d75426;
}
.prd .account-info-item-title.section01 {
  border: 0;
}
.prd .roundedtabs > .tab2 {
  border-top: 4px solid #b73f7c;
}
.prd .home .roundedtabs > .tab2 {
  border-top: 4px solid #fb8000;
}
.prd .home .portfolio-item-title.section2 {
  border-bottom: 4px solid #fb8000;
}
.prd .account-info-item-title.section02 {
  border: 0;
}
.prd .roundedtabs > .tab2.noborder {
  border-top: 0;
}
.prd .home .roundedtabs > .tab2.noborder {
  border-top: 0;
}
.prd .home .roundedtabs > ul > li a.title2,
.prd .home .portfolio-item-title.section2 span {
  background-color: #fb8000;
}
.prd .account-info-item-title.section02 span {
  background-color: #b73f7c;
}
.prd .roundedtabs > ul > li a.title3,
.prd .home .portfolio-item-title.section3 span {
  background-color: #b73f7c;
}
.prd .roundedtabs > .tab3 {
  border-top: 4px solid #b73f7c;
}
.prd .roundedtabs > .tab3.noborder {
  border-top: 0;
}
.prd .portfolio-item-title.section3 {
  border-bottom: 4px solid #b73f7c;
}
.prd #account-info-tabs table {
  clear: both;
  width: 100%;
}
.prd #account-info-tabs table tr th {
  font-weight: normal;
}
.prd #account-info-tabs table th {
  text-align: left;
}
.prd #account-info-tabs table tr td {
  padding: 8px 0;
}
.prd #account-info-tabs table tr td .value table tbody tr td {
  padding-top: 0px;
  text-align: right;
}
.prd #account-info-tabs table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}
.prd #account-info-tabs .value table tbody tr,
.prd #account-info-tabs table tbody tr.table-heading {
  border: 0;
}
.prd #account-info-tabs table tbody tr td {
  vertical-align: top;
}
.prd #account-info-tabs table tbody .table-heading {
  text-transform: uppercase;
}
.prd #account-info-tabs table tbody tr td .fund {
  background-color: #fff;
  text-decoration: underline;
}
.prd td.right,
.prd th.right {
  text-align: right;
}
.prd .pay-amount {
  width: 100px;
}
.prd th span.right {
  margin-right: 20px;
  text-align: right;
  float: right;
}
.prd dl {
  overflow: hidden;
  margin: 0;
}
.prd dl dt {
  float: left;
  padding: 0 .4em 0 0;
  margin: 0;
}
.prd dl dd.value {
  float: right;
  padding: 0 0 0 .4em;
  margin: 0;
}
.prd dl dd.line {
  overflow: hidden;
  height: 1em;
  border-bottom: 2px dotted;
}
.prd .payment-col-1 {
  width: 175px;
}
.prd .payment-col-2 {
  text-align: right;
}
.prd #account-info-account-info-sub-tabs1-1 .ui-tabs-panel {
  padding-left: 0;
}
.prd #allocations-sub-tabs1 li,
.prd #account-info-sub-tabs1 li {
  margin: 20px 0;
}
.prd #allocations-sub-tabs1 li a,
.prd #allocations-sub-tabs li a.title2,
.prd #account-info-sub-tabs1 li a,
.prd #account-info-sub-tabs1 li a.title2 {
  background-color: transparent;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  /*color: $globalDarkGray;*/
  font-size: 107.7%;
  padding: 0;
  margin: 0 10px 0 0;
}
.prd #allocations-sub-tabs li.ui-state-active a,
.prd #allocations-sub-tabs li.ui-state-active a.title2,
.prd #account-info-sub-tabs1 li.ui-state-active a,
.prd #account-info-sub-tabs1 li.ui-state-active a.title2 {
  /*color: $secondaryColor;*/
}
.prd #allocations-sub-tabs ul li:first-child,
.prd #account-info-sub-tabs1 ul li:first-child {
  border-right: 1px solid #333333;
  margin-right: 10px;
}
.prd #messaging {
  background: transparent;
  border: 0;
  margin-bottom: 0;
}
.prd #messaging .notice,
.prd #account-main .notice {
  background-color: #F0F0F0;
  border: 1px solid black;
  color: #404040;
  font-size: 153.8%;
  line-height: 8px;
  margin: 0 25px 18px;
  overflow: hidden;
  padding: 0 25px;
}
.prd #messaging .notice a {
  color: #000;
}
.prd #messaging .notice .smallText {
  font-size: 61.5%;
  bottom: 13px;
  font-size: 53.8%;
  line-height: 14px;
  margin-right: 47px;
  position: absolute;
  right: 0;
  text-align: right;
  width: 103px;
}
.prd #account-main .notice {
  background: none repeat scroll 0 0 transparent;
  font-size: 107.7%;
  line-height: 20px;
  overflow: hidden;
  padding: 10px;
}
.prd #messaging .message,
.prd #messaging .alert,
.prd #messaging .action {
  color: #333333;
  font-size: 107.7%;
  line-height: 10px;
  padding: 6px 26px 0;
  line-height: 22px;
  border-top: 0px solid #333333;
  overflow: hidden;
}
.prd .login #messaging .message,
.prd .login #messaging .alert,
.prd .login #messaging .action {
  border-top: 1px solid #dbdbdb;
}
.prd #messaging .alert.last {
  border-bottom: 1px solid #dbdbdb;
}
.prd #messaging .message {
  border-bottom: 0px solid #858686;
}
.prd #messaging .alert p,
.prd #messaging .message p,
.prd #messaging .action p {
  margin: 3px 0 3px;
  font-weight: bold;
}
.prd #messaging .message a,
.prd #messaging .alert a {
  color: #fb8000;
  text-decoration: none;
}
.prd #messaging .message a:hover,
.prd #messaging .alert a:hover {
  text-decoration: underline;
}
.prd #messaging .alert strong {
  font-size: 123.1%;
}
.prd #messaging .inner {
  position: relative;
}
.prd #messaging .inner i {
  font-size: 138.5%;
  left: 0;
  position: absolute;
  top: 8px;
}
.prd #messaging .message i {
  font-size: 123.1%;
}
.prd .icon-warning-sign {
  color: #fb8000;
}
.prd .icon-envelope {
  color: #fb8000;
}
.prd #header-menu li a {
  text-decoration: none;
}
.prd #header-menu li a:hover {
  text-decoration: underline;
}
.prd #welcome {
  font-size: 107.7%;
}
.prd #welcome select {
  position: relative;
  color: #fb8000;
}
.prd #account-overview .value {
  font-size: 197%;
  line-height: 46px;
}
.prd #account-overview .link a {
  color: #fb8000;
  font-size: 123.1%;
  text-decoration: none;
}
.prd #account-overview .link a:hover {
  text-decoration: underline;
}
.prd h2 span.expandcollapse {
  display: inline;
}
.prd .total-container {
  margin: 0 25px 0;
  text-align: right;
  overflow: hidden;
}
.prd .total-container ul {
  float: right;
  clear: both;
  margin: 5px 0;
}
.prd .total-container ul li {
  list-style-type: none;
  display: inline;
  margin-left: 20px;
  float: left;
}
.prd .disclaimer {
  float: right;
  clear: both;
  font-size: 107.7%;
  text-align: left;
  margin-top: 10px;
}
.prd .disclaimer .inner {
  text-align: left;
}
.prd .even {
  background-color: #f0f0f0;
}
.prd #portfolio-tabs {
  margin-top: 10px;
}
.prd #portfolio-tabs .total-container {
  margin: 20px 25px 0;
}
.prd #portfolio-tabs table thead {
  color: #333333;
  font-size: 115.4%;
  border-bottom: 1px solid #dbdbdb;
}
.prd #portfolio-tabs table thead tr th {
  padding: 27px 0 13px 10px;
}
.prd #portfolio-tabs table tbody {
  font-size: 123.1%;
}
.prd #portfolio-tabs table tr td {
  margin-top: 2px;
  padding: 25px 10px;
}
.prd #portfolio-tabs table tr td table {
  font-size: 13px;
  margin-bottom: 20px;
}
.prd #portfolio-tabs table tr td table:last-child {
  margin-bottom: 0;
}
.prd #portfolio-tabs table tr td table tr td {
  padding: 0;
}
.prd #portfolio-tabs table tr td:last-child {
  text-align: right;
}
.prd #portfolio-tabs table tr td:last-child.txtCenter {
  text-align: center;
}
.prd #portfolio-tabs table tr td:last-child.txtLeft {
  text-align: left;
}
.prd #account-info-tabs table tr td,
.prd #account-info-tabs table tr th {
  text-align: right;
}
.prd #account-info-tabs table thead tr th {
  padding-top: 55px;
  padding-left: 2px;
  padding-right: 2px;
}
.prd #account-info-tabs table tr th:first-child {
  text-align: left;
}
.prd #account-info-tabs table tr td:first-child {
  text-align: left;
}
.prd #account-main ul {
  padding: 0;
}
.prd #allocations-sub-tabs ul {
  margin-left: 10px;
  position: relative;
  right: 0;
  float: right;
  margin-bottom: 0px;
}
.prd #account-info-tabs #account-info-sub-tab-list,
.prd #account-info-tabs .account-info-sub-tab-list {
  margin-left: 10px;
  position: absolute;
}
.prd #allocations-sub-tab-1,
.prd #allocations-sub-tab-2 {
  min-height: 215px;
  clear: both;
  overflow: hidden;
}
.prd #allocations-sub-tabs ul li:first-child,
.prd #account-info-sub-tabs ul li:first-child {
  border-right: 1px solid #333333;
  padding-right: 12px;
}
.prd #allocations-sub-tabs ul li a {
  font-size: 107.7%;
  color: #fb8000;
}
.prd #account-info-sub-tabs ul li a {
  font-size: 107.7%;
  color: #d75426;
}
.prd #allocations-sub-tabs ul li.ui-state-active a {
  color: #333333;
  cursor: auto;
  text-decoration: none;
}
.prd #account-info-sub-tabs ul li.ui-state-active a {
  color: #333333;
  cursor: auto;
  text-decoration: none;
}
.prd td.vmiddle {
  vertical-align: middle;
}
.prd #account-info-tabs .investment-total table tr td {
  padding-top: 6px;
  font-weight: bold;
}
.prd .investment-total table tr td:first-child {
  padding-left: 10px;
}
.prd .investment-total table tr td:last-child {
  padding-right: 50px;
}
.prd .ui-tabs-panel {
  position: relative;
  z-index: 99;
}
.prd .ui-tabs-nav {
  position: relative;
  z-index: 100;
}
.prd .investment-total {
  position: relative;
  /*absolute;*/
  width: 100%;
}
.prd .account-info-tab-link,
.prd .balance-history-more {
  font-size: 123.1%;
  text-align: center;
  display: block;
  padding: 10px 0;
}
.prd .balance-history-more {
  padding: 10px 0;
}
.prd .alert-message {
  max-height: 369px;
  /*394px;*/
  overflow: auto;
}
.prd .alert-reminder-later-close {
  padding-top: 5px;
}
.prd #account-info-sub-tab-2 .account-data-scroll.scroll-vertical .scroll-content1 {
  border-bottom: 2px solid #333333;
}
.prd .balance-history-nav {
  text-align: center;
}
.prd .balance-history-nav li {
  list-style-type: none;
  display: inline;
  padding: 0 15px;
}
.prd .balance-history-nav li a,
.prd .balance-history-more a {
  text-decoration: none;
}
.prd .balance-history-nav li a:hover,
.prd .balance-history-more a:hover {
  text-decoration: underline;
}
.prd .balance-history-nav li.active a {
  color: #333333;
}
.prd .toggleTarget {
  font-weight: normal;
}
.prd a.toggleTarget,
.prd a.toggleTarget span {
  text-decoration: none;
}
.prd a.toggleTarget span:hover {
  text-decoration: underline;
}
.prd .hidden {
  display: none;
}
.prd .aame #last-login {
  position: relative;
  top: 11px;
}
.prd .aame table tr th:first-child,
.prd .aame table tr td:first-child {
  text-align: left;
}
.prd .aame table tr th:last-child,
.prd .aame table tr td:last-child {
  text-align: right;
}
.prd .aame .form-middle {
  overflow: hidden;
}
.prd .aame .form-left {
  float: left;
}
.prd .aame .form-col {
  float: left;
}
.prd .aame .form-left .form-col-2 {
  width: 50%;
  margin-left: 15px;
}
.prd .aame .form-right {
  float: right;
  width: 44%;
  border-left: 1px solid #f0f0f0;
  padding-left: 25px;
}
.prd .aame .form-middle .form-col-3 .content {
  background-color: #f0f0f0;
  padding: 10px 25px;
  font-size: 130.8%;
}
.prd .aame .form-middle .form-col-3 .content .title {
  font-weight: bold;
}
.prd .aame .bottom-content span.title {
  font-size: 130.8%;
  font-weight: bold;
}
.prd .aame .bottom-content p:first-of-type {
  margin-top: 0.5em;
}
.prd .aame .bottom-content {
  margin-top: 2em;
}
.prd .aame .radioWrapper {
  display: block;
  left: 1.5em;
  margin: 8px 0;
  font-size: 130.8%;
}
.prd .aame hr.form-bottom {
  margin: 35px 0 10px 0;
  border: 0px none;
  border-top: 1px solid #cccccc;
}
.prd .popupWrapper {
  position: relative;
}
.prd .popup {
  background-color: #fff;
  opacity: 100;
  position: relative;
  width: 500px;
  margin: 0;
  z-index: 999999;
  overflow: hidden;
  border: 1px solid #d75426;
}
.prd .popup h2 {
  background-color: #d75426;
  color: #ffffff;
  padding: 5px 15px;
  font-weight: normal;
}
.prd .popup .content {
  padding: 0 20px 10px;
  overflow: hidden;
}
.prd .aame .cancel,
.prd .aame .change {
  font-size: 130.8%;
}
.prd .aame .radioWrapper.terms {
  display: inline-block;
  padding-right: 15px;
}
.prd .aame .printLink {
  margin-left: 25px;
  font-weight: normal;
  font-size: 84.6%;
}
.prd .aame #portfolio-election-main {
  /*@include zen-clear();*/
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
}
.prd .aame #portfolio-election-main > h2,
.prd #main-content .aame #portfolio-election-main > h2 {
  color: #fb8000;
  border-bottom: 8px solid #fb8000;
  font-weight: normal;
  font-size: 1.5em;
  margin: 0;
  line-height: 1.231;
  position: static;
  letter-spacing: 0px;
}
.prd .aame #portfolio-election-main > h2 a {
  color: #fb8000;
}
.prd .aame #portfolio-election-main .four-cols .section1 {
  clear: left;
  float: left;
  width: 150%;
  margin-left: 0%;
  margin-right: -150%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd .aame #portfolio-election-main .four-cols .section2 {
  float: left;
  width: 150%;
  margin-left: 150%;
  margin-right: -300%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd .aame #portfolio-election-main .four-cols .section3 {
  float: left;
  width: 150%;
  margin-left: 300%;
  margin-right: -450%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd .aame #portfolio-election-main .four-cols .section4 {
  float: left;
  width: 150%;
  margin-left: 450%;
  margin-right: -600%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd .aame #portfolio-election-main .three-cols .section1 {
  clear: left;
  float: left;
  width: 200%;
  margin-left: 50%;
  margin-right: -250%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd .aame #portfolio-election-main .three-cols .section2 {
  float: left;
  width: 200%;
  margin-left: 200%;
  margin-right: -400%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd .aame #portfolio-election-main .three-cols .section3 {
  float: left;
  width: 200%;
  margin-left: 350%;
  margin-right: -550%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd .aame #portfolio-election-main .two-cols .section1 {
  clear: left;
  float: left;
  width: 250%;
  margin-left: 100%;
  margin-right: -350%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd .aame #portfolio-election-main .two-cols .section2 {
  float: left;
  width: 200%;
  margin-left: 250%;
  margin-right: -450%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd .aame #portfolio-election-main .one-col .section1 {
  clear: left;
  float: left;
  width: 600%;
  margin-left: 0%;
  margin-right: -600%;
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  border: none;
}
.prd .aame #portfolio-election-main .section5 {
  clear: left;
  border: none;
}
.prd .advice {
  border-width: 2px;
  border-style: solid;
  -webkit-box-shadow: 1px 2px 4px;
  -moz-box-shadow: 1px 2px 4px;
  box-shadow: 1px 2px 4px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  margin: 20px 10px 35px;
  padding: 15px 18px;
  overflow: hidden;
  background-color: white;
}
.prd .advice h2 {
  margin: 5px 0;
}
.prd .advice .notification {
  font-weight: bold;
  font-size: 115.4%;
}
.prd .advice img.icon {
  width: 26px;
  float: left;
  margin-right: 10px;
}
.prd #portfolio-election-main .manage-options p {
  font-size: 130.8%;
}
.prd #portfolio-election-main .manage-options .option-col1 {
  float: left;
  width: 33.33333%;
  margin-left: 0%;
  margin-right: -33.33333%;
  padding-left: 9px;
  padding-right: 9px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
  clear: left;
}
.prd #portfolio-election-main .manage-options .option-col2 {
  float: left;
  width: 33.33333%;
  margin-left: 33.33333%;
  margin-right: -66.66667%;
  padding-left: 9px;
  padding-right: 9px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
}
.prd #portfolio-election-main .manage-options .option-col3 {
  float: left;
  width: 33.33333%;
  margin-left: 66.66667%;
  margin-right: -100%;
  padding-left: 9px;
  padding-right: 9px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  /* @TODO RJG - commenting this noise out
  @if $box-sizing == border-box and $box-sizing-polyfill-path == "" {
    @warn "IE legacy support is on, but $box-sizing is set to border-box and the $box-sizing-polyfill-path is empty.";
  }*/
}
.prd #portfolio-election-main .manage-options .option .content {
  border-width: 2px;
  border-style: solid;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  padding-left: 120px;
  padding-right: 15px;
  overflow: hidden;
}
.prd #portfolio-election-main .manage-options .option .content .inner {
  padding-bottom: 10px;
}
.prd #portfolio-election-main .manage-options .investment-elections {
  background: url("../images/icons/investmentElectionsIcon.png") no-repeat;
}
.prd #portfolio-election-main .manage-options .change-elections {
  background: url("../images/icons/changeElectionsIcon.png") no-repeat;
}
.prd #portfolio-election-main .manage-options .fund-transfer {
  background: url("../images/icons/fundTransferIcon.png") no-repeat;
}
.prd #portfolio-election-main .manage-options .reallocate-balances {
  background: url("../images/icons/reallocateBalancesIcon.png") no-repeat;
}
.prd #portfolio-election-main .manage-options .rebalance-account {
  background: url("../images/icons/reballanceAccountIcon.png") no-repeat;
}
.prd #portfolio-election-main .manage-options .about-making-changes {
  background: url("../images/icons/aboutMakingChangesIcon.png") no-repeat;
}
.prd #portfolio-election-main .manage-options .company-stock-transfer {
  background: url("../images/icons/companyStockIcon.png") no-repeat;
}
.prd #portfolio-election-main .manage-options .model-portfolio-election {
  background: url("../images/icons/modelPortfolioIcon.png") no-repeat;
}
.prd #portfolio-election-main .manage-options .option {
  background-position: 20px 40px;
  margin-bottom: 20px;
  position: relative;
}
.prd #portfolio-election-main .manage-options .start {
  float: right;
  font-size: 153.8%;
  margin-right: 0;
  position: relative;
  bottom: 10px;
  right: 5px;
}
.prd #portfolio-election-main .manage-options .start a:hover i {
  text-decoration: none;
}
.prd #portfolio-election-main .manage-options .start i {
  padding-right: 5px;
}
.prd #portfolio-election-main .manage-options .option h3 {
  font-size: 123.1%;
  color: white;
  margin: 0px;
  padding: 6px 12px 4px;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  border-radius: 10px 10px 0px 0px;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
}
.prd #terms-data-scroll {
  height: 400px;
  overflow-y: scroll;
}
.prd ul.bulletList {
  padding: 0;
}
.prd ul.bulletList li {
  list-style: none;
  background: none;
}
.prd ul.bulletList li:before {
  color: #fb8000;
  content: "■";
  float: left;
  margin: -0.1em -1.2em;
  width: 1em;
}
.prd .btn a:hover {
  text-decoration: none;
}

/* end .prd { */
.ui-dialog {
  outline: none;
}

/*
 * Dialog/Modal Window
 */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  z-index: 1999991;
}

.ui-dialog {
  background: #f0f0f0;
  border: 2px solid #d75426;
  box-shadow: 5px 5px 10px #ccc;
  overflow: hidden;
  position: absolute;
  /*max-height: 441px;*/
  z-index: 1999992;
}

.ui-dialog-titlebar {
  background: #d75426;
  color: white;
  font-size: 153.8%;
  /*height: auto;*/
  /*max-height: 47px;*/
  padding: 5px 10px;
}

.ui-dialog-content {
  background: #f0f0f0;
  font-size: 123.1%;
  padding: 5px 10px;
  height: auto;
}

.ui-button {
  background: #d75426;
  border: 0;
  color: white;
  float: right;
}

.ui-button a {
  color: white;
}

/*
 * Slider Scrollbars
 */
.scroll-vertical .ui-slider,
.scroll-horizontal .ui-slider {
  position: relative;
  text-align: left;
}

/* 
 * TRACKBAR CONTAINER
 */
.ui-slider-horizontal {
  height: 6.5px;
}

.ui-slider-vertical {
  height: 100%;
  width: 6.5px;
}

/* /TRACKBAR CONTAINER */
/* TRACKBAR HANDLE */
.ui-slider-handle {
  border: 1px solid #f0f0f0;
}

.ui-slider-horizontal .ui-slider-handle {
  margin-left: -0.4em;
  top: -0.4em;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.5em;
  margin-bottom: -0.4em;
  margin-left: 0;
}

/* /TRACKBAR HANDLE */
.scroll-vertical .ui-corner-all,
.scroll-vertical .ui-corner-top,
.scroll-vertical .ui-corner-left,
.scroll-vertical .ui-corner-tl,
.scroll-horizontal .ui-corner-all,
.scroll-horizontal .ui-corner-top,
.scroll-horizontal .ui-corner-left,
.scroll-horizontal .ui-corner-tl {
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  -ms-border-radius: 2em;
  -o-border-radius: 2em;
  border-radius: 2em;
  /* @TODO fix this and the other 3 below for IE */
  behavior: url(static/global/js/vendor/ie/PIE.htc);
}
.scroll-vertical .ui-corner-all,
.scroll-vertical .ui-corner-top,
.scroll-vertical .ui-corner-right,
.scroll-vertical .ui-corner-tr,
.scroll-horizontal .ui-corner-all,
.scroll-horizontal .ui-corner-top,
.scroll-horizontal .ui-corner-right,
.scroll-horizontal .ui-corner-tr {
  /*border-top-right-radius: 14px;*/
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  -ms-border-radius: 2em;
  -o-border-radius: 2em;
  border-radius: 2em;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
}
.scroll-vertical .ui-corner-all,
.scroll-vertical .ui-corner-bottom,
.scroll-vertical .ui-corner-left,
.scroll-vertical .ui-corner-bl,
.scroll-horizontal .ui-corner-all,
.scroll-horizontal .ui-corner-bottom,
.scroll-horizontal .ui-corner-left,
.scroll-horizontal .ui-corner-bl {
  /*border-bottom-left-radius: 14px;*/
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  -ms-border-radius: 2em;
  -o-border-radius: 2em;
  border-radius: 2em;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
}
.scroll-vertical .ui-corner-all,
.scroll-vertical .ui-corner-bottom,
.scroll-vertical .ui-corner-right,
.scroll-vertical .ui-corner-br,
.scroll-horizontal .ui-corner-all,
.scroll-horizontal .ui-corner-bottom,
.scroll-horizontal .ui-corner-right,
.scroll-horizontal .ui-corner-br {
  /*border-bottom-right-radius: 14px;*/
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  -ms-border-radius: 2em;
  -o-border-radius: 2em;
  border-radius: 2em;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range {
  height: 100%;
  top: 0;
  left: -1px;
}

.ui-slider-vertical .ui-slider-range {
  top: -1px;
}

.ui-slider .ui-slider-range {
  background-position: 0 0;
  border: 0 none;
  display: block;
  font-size: .7em;
  position: absolute;
  z-index: 1;
}

/* scrollbar track above handle */
.ui-slider-range {
  background-color: #dbdbdb;
}

/* scrollbar handle */
.ui-slider .ui-slider-handle {
  background-color: #f0f0f0;
  height: 1.5em;
  width: 1.5em;
  -webkit-box-shadow: -1px 3px 2px rgba(150, 150, 150, 0.66);
  -moz-box-shadow: -1px 3px 2px rgba(150, 150, 150, 0.66);
  box-shadow: -1px 3px 2px rgba(150, 150, 150, 0.66);
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  position: absolute;
  z-index: 2;
}

/* @TODO: add box shadow?? ^ */
/* scrollbar track below handle */
.ui-slider {
  background-color: #fb8000;
}

.ui-slider {
  cursor: pointer;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

/****************************************** */
/****************************************** */
#horizontal-test {
  border: 1px solid blue;
  height: 100px;
  width: 400px;
}

#horizontal-test.scroll-horizontal .scroll-content1 {
  height: 70px;
  /* parent height - 28... or 30px */
}

#horizontal-test.scroll-horizontal .scroll-content {
  width: 2000px;
}

#horizontal-test .scroll-content-mask {
  background-color: white;
  /* match ht bg color */
}

/****************************************** */
.account-data-scroll {
  height: 350px;
  width: 100%;
}

.account-data-scroll.scroll-vertical .scroll-content1 {
  width: 458px;
  /* container width - 30px */
}

.section2full .account-data-scroll {
  width: 505px;
}

.section2full .account-data-scroll.scroll-vertical .scroll-content1 {
  width: 475px;
}

/****************************************** */
.message-center-scroll {
  height: 200px;
  width: 650px;
}

.message-center-scroll.scroll-vertical .scroll-content1 {
  width: 620px;
  /* container width - 28... or 30px */
}

/****************************************** */
/****************************************** */
.scroll-horizontal {
  position: relative;
}

.scroll-horizontal .scroll-content1 {
  width: 100%;
}

.scroll-horizontal .scrollbar-wrapper {
  padding: 10px 20px 10px 15px;
}

/****************************************** */
.scroll-vertical {
  position: relative;
}

.scroll-vertical .scroll-content1 {
  float: left;
  height: 100%;
}

.scroll-vertical .scroll-content {
  width: 100%;
}

.scroll-vertical .scrollbar-wrapper {
  float: right;
  height: 100%;
  padding: 20px 10px 10px 10px;
}

.vertical-scrollbar {
  /*height: 100%;*/
}

/****************************************** */
.scroll-content1 {
  overflow: hidden;
  position: relative;
}

.scroll-content-mask {
  height: 100%;
  position: absolute;
  right: 0;
  width: 10px;
  /* match .scroll-content padding */
  z-index: 100;
}

.scroll-content {
  left: 0;
  padding: 10px 0;
  position: absolute;
  top: 0;
}

/****************************************** */
/*
* End
*/
/* need this in and our of .prd */
/* Import SASS mixins */
/* Include any mixins from the mixins folder in here 
 * This file is imported in main.scss
 * so then any of the mixins imported here can be used anywhere via the @include statement
 */
/* Keep this list in alphabetical order */
/* 
 * Mixin for Background Gradients
 */
/* @TODO: neither gradient is working in IE8... */
/* parameter value defaults to {@explain} if not passed in */
/* parameter value defaults to {@explain} if not passed in */
/*
--------------
Sample Usage:
gradient_bg_horizontal
--------------
.identifier {
	@include gradient_bg_horizontal("#D75426", "#F69A15");
}
--------------
Sample Output:
gradient_bg_horizontal
--------------
.identifier {
	background: #d75426;
	background: -moz-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #d75426), color-stop(100%, #f69a15));
	background: -webkit-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: -o-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: -ms-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: linear-gradient(to right, #d75426 0%, #f69a15 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d75426', endColorstr='#f69a15',GradientType=1 );
}
--------------
*/
/* 
 * Mixin for Buttons
 */
/* parameter value defaults to {@explain} if not passed in */
/* parameter value defaults to {@explain} if not passed in */
/* 
 * Mixin for Cross-Browser Opacity
 */
/* parameter value defaults to 0.5 if not passed in */
/* using this way results in ... Alpha(Opacity=" 50 ")"; 
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$value*100")";
Which still works in the browser, but don't want the extra spaces around the value.
*/
/*
--------------
Sample Usage: 
--------------
.identifier {
	@include opacity(.5);
}
--------------
Sample Output:
--------------
.identifier {
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity="50")";
	filter: alpha(opacity=50);
}
--------------
*/
/* Load global variables and import fonts outside of the Namespace */
/* Global variables */
/* Namespaces for Pweb Redesign & Responsive */
/* pweb redesign prefix */
/* pweb build switch switch */
/* use "true" or "false" without quotes. true adds a leading / to .htc paths */
/* SASS setting variables */
/* Branding Colors */
/* defaults: primary orange, secondary orange-red, tertiary purple */
/*#F69A15;*/
/*Brandable Accordion Colors */
/* Same at the Primary Color but this is not Brandable */
/* Global Colors */
/* Legacy Pweb Table Header BG Colors */
/* custom scrollbar color */
/* Global Padding */
/* CSS3PIE library. apply "*behavior: $piepath;" to CSS3 rounded corners */
/* Boxsizing library to support older IE. apply "*behavior: $boxsizingpath;"  */
/* jQuery UI Size Overrides */
/* desktop */
/* tablet */
/* WIDTH VARIABLES */
/* DESKTOP*/
/* TABLET */
/* PHONE */
/* COLOR DEFINITIONS */
/* used within GRIDS */
/* FONT SIZES */
.floatRight {
  float: right;
}

.floatLeft {
  float: left;
}

/* BUTTONS */
.button,
.button a,
.btn,
.btn a,
#main-content .button,
#main-content .button a,
#main-content .btn,
#main-content .btn a,
.button-no-shadow,
.button-no-shadow a,
#main-content .button-no-shadow,
#main-content .button-no-shadow a,
.btn-no-shadow,
.btn-no-shadow a,
#main-content .btn-no-shadow,
#main-content .btn-no-shadow a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 18px;
}

.button,
.btn {
  display: inline-block;
  font-family: ProximaNova, arial, helvetica, clean, sans-serif;
  padding-top: 3.5px;
  padding-bottom: 3.5px;
  color: white;
  background-color: #fb8000;
  -moz-box-shadow: 3px 3px 2px #dbdbdb;
  -webkit-box-shadow: 3px 3px 2px #dbdbdb;
  box-shadow: 3px 3px 2px #dbdbdb;
  /* For IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#FFDBDBDB')";
  /* For IE 5.5 - 7 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#FFDBDBDB');
  cursor: pointer;
}
.button:hover,
.btn:hover {
  background-color: #ee7900;
}
.button a, .button span,
.btn a,
.btn span {
  padding-left: 15.4px;
  padding-right: 15.4px;
  padding-top: 3.5px;
  padding-bottom: 3.5px;
}

.btn i,
.button i,
.button-no-shadow i {
  position: relative;
  top: 1px;
}

.btn_separator {
  margin-right: 6px;
}

.btn_bottom {
  margin-bottom: 6px;
}

.btn_large {
  font-size: 22px !important;
}

.button.btn_separator.floatRight,
.btn.btn_separator.floatRight {
  margin-right: 10px;
}

.button-no-shadow,
.btn-no-shadow {
  display: inline-block;
  font-size: 13px;
  font-family: ProximaNova, arial, helvetica, clean, sans-serif;
  padding-top: 3.5px;
  padding-bottom: 3.5px;
  color: white;
  background-color: #fb8000;
  cursor: pointer;
}
.button-no-shadow:hover,
.btn-no-shadow:hover {
  background-color: #ee7900;
}
.button-no-shadow a, .button-no-shadow span,
.btn-no-shadow a,
.btn-no-shadow span {
  padding-left: 15.4px;
  padding-right: 15.4px;
  padding-top: 3.5px;
  padding-bottom: 3.5px;
}

.btn.btn_inverted, .btn-no-shadow.btn_inverted {
  background: transparent !important;
}
.btn.btn_inverted:hover, .btn-no-shadow.btn_inverted:hover {
  background-color: none;
}
.btn.btn_inverted:hover span, .btn-no-shadow.btn_inverted:hover span {
  text-decoration: underline;
}

.primary.btn_inverted {
  color: #fb8000 !important;
}

.secondary.btn_inverted {
  color: #d75426 !important;
}

.btn_w_icon span {
  padding-right: 8px;
  vertical-align: middle;
}
.btn_w_icon i {
  vertical-align: middle;
}

/*Style Changes for Pweb Table Changes*/
.tabular, .tabular-multiBody, .tabular-scrollingInner {
  border-spacing: 0px;
  border-bottom: 1px solid #bdc4ca;
  /*if there is a thead but no caption*/
  /*if there is a thead and a caption*/
  /*if there is a caption and no thead*/
  /*if there is a thead and no caption*/
  /*if there is a caption*/
}
.tabular tr, .tabular-multiBody tr, .tabular-scrollingInner tr {
  background: none;
}
.tabular td, .tabular th, .tabular-multiBody td, .tabular-multiBody th, .tabular-scrollingInner td, .tabular-scrollingInner th {
  border-top: none;
  border-bottom: none;
  height: 40px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.tabular caption, .tabular-multiBody caption, .tabular-scrollingInner caption {
  border-bottom: none;
}
.tabular tbody td, .tabular tbody th, .tabular-multiBody tbody td, .tabular-multiBody tbody th, .tabular-scrollingInner tbody td, .tabular-scrollingInner tbody th {
  border-top: 1px solid #e5e5e5;
}
.tabular tbody:first-child tr:first-child th, .tabular tbody:first-child tr:first-child td, .tabular-multiBody tbody:first-child tr:first-child th, .tabular-multiBody tbody:first-child tr:first-child td, .tabular-scrollingInner tbody:first-child tr:first-child th, .tabular-scrollingInner tbody:first-child tr:first-child td {
  border-top: 1px solid #bdc4ca;
}
.tabular thead:first-child + tbody > tr:first-child td, .tabular thead:first-child + tbody > tr:first-child th, .tabular-multiBody thead:first-child + tbody > tr:first-child td, .tabular-multiBody thead:first-child + tbody > tr:first-child th, .tabular-scrollingInner thead:first-child + tbody > tr:first-child td, .tabular-scrollingInner thead:first-child + tbody > tr:first-child th {
  border-top: 1px solid #bdc4ca;
}
.tabular caption + thead th, .tabular-multiBody caption + thead th, .tabular-scrollingInner caption + thead th {
  border-top: 1px solid #bdc4ca;
}
.tabular caption + tbody > tr:first-child th, .tabular caption + tbody > tr:first-child td, .tabular-multiBody caption + tbody > tr:first-child th, .tabular-multiBody caption + tbody > tr:first-child td, .tabular-scrollingInner caption + tbody > tr:first-child th, .tabular-scrollingInner caption + tbody > tr:first-child td {
  border-top: 1px solid #bdc4ca;
}
.tabular .totalRow th, .tabular .totalRow td, .tabular-multiBody .totalRow th, .tabular-multiBody .totalRow td, .tabular-scrollingInner .totalRow th, .tabular-scrollingInner .totalRow td {
  border-top: 1px solid #bdc4ca;
}
.tabular thead:first-child tr:first-child th, .tabular-multiBody thead:first-child tr:first-child th, .tabular-scrollingInner thead:first-child tr:first-child th {
  vertical-align: bottom;
  padding-bottom: 3px;
  font-weight: bold;
}

/*if the thead has two rows */
.tabular.twoHeaderRows thead:first-child + tbody > tr:first-child td, .tabular.twoHeaderRows thead:first-child + tbody > tr:first-child th {
  border-top: 1px solid #e5e5e5;
}
.tabular.twoHeaderRows thead tr:nth-child(2) th {
  background: #f7f7f7;
  background: url(../images/ie-tbl-bkg.png) 0px 0px repeat-x\9;
  border-top: 1px solid #bdc4ca;
}
.tabular.twoHeaderRows tbody tr:nth-child(even) {
  background: #f7f7f7;
  background: url(../images/ie-tbl-bkg.png) 0px 0px repeat-x\9;
}
.tabular.twoHeaderRows tbody tr:nth-child(odd) {
  background: none;
}

/*----------row shading-------------*/
.tabular tbody tr:nth-child(odd) {
  background: #f7f7f7;
  background: url(../images/ie-tbl-bkg.png) 0px 0px repeat-x\9;
}

.tabular-multiBody tbody:nth-child(even) {
  background: #f7f7f7;
}

.tabular-scrollingOuter table {
  border-top: 1px solid #bdc4ca;
}
.tabular-scrollingOuter td, .tabular-scrollingOuter th {
  border-bottom: none;
}

.tabular-scrollingInner thead tr {
  background: #f7f7f7;
}
.tabular-scrollingInner tbody tr:first-child td, .tabular-scrollingInner tbody tr:first-child th {
  border-top: 1px solid #e5e5e5 !important;
}
.tabular-scrollingInner tbody tr:nth-child(even) {
  background: #f7f7f7;
}

/*from newglobal.css   overwrite*/
.scrollingTableMid th, .scrollingTableMid td {
  border-left: none;
}

.scrollingTableMid th:first-child, .scrollingTableMid td:first-child {
  border-left: 1px solid #bdc4ca;
}

.borderTop2 {
  border-top: 1px solid #bdc4ca;
}

/*end newglobal.css overwrite*/
table.paddedSides th:first-child, table.paddedSides td:first-child {
  padding-left: 16px;
}
table.paddedSides th:last-child, table.paddedSides td:last-child {
  padding-right: 16px;
}

/*Replace browser default inputs with custom inputs */
.radioWrapper {
  position: relative;
  display: inline-block;
}
.radioWrapper input[type=radio] {
  left: -9999px;
  position: absolute;
}
.radioWrapper input[type=radio]:checked + .radioLabel .radioLabel-btn {
  background-color: #fb8000;
  -webkit-box-shadow: inset 0 0 0 2px white;
  -moz-box-shadow: inset 0 0 0 2px white;
  box-shadow: inset 0 0 0 2px white;
}
.radioWrapper .radioLabel {
  display: inline-block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 0.5em;
  min-width: 1em;
}
.radioWrapper .radioLabel .radioLabel-text {
  margin-left: 0.5em;
  margin-right: 0.5em;
  vertical-align: middle;
}
.radioWrapper .radioLabel .radioLabel-btn {
  background-color: #FFFFFF;
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  border: 1px solid #666666;
  cursor: pointer;
}
.radioWrapper .radioLabel .radioLabel-text {
  margin-right: 0.5em;
  margin-left: 0px;
}
.radioWrapper .radioLabel .radioLabel-btn + .radioLabel-text {
  margin-left: 0.5em;
  margin-right: 0em;
}
.radioWrapper .radioLabel:hover {
  cursor: pointer;
}
.radioWrapper input[disabled] + .radioLabel .radioLabel-btn {
  background-color: #ebebe4;
}
.radioWrapper input[disabled]:checked + .radioLabel .radioLabel-btn {
  -webkit-box-shadow: inset 0 0 0 2px #ebebe4;
  -moz-box-shadow: inset 0 0 0 2px #ebebe4;
  box-shadow: inset 0 0 0 2px #ebebe4;
}

.ie8 .radioWrapper input[type=radio] + .radioLabel .radioLabel-btn {
  border-radius: none;
  border: none !important;
  height: 16px;
  width: 16px;
  background: url(../images/icons/radio-empty-16px.png) no-repeat 0 0;
}
.ie8 .radioWrapper input:checked[type=radio] + .radioLabel .radioLabel-btn {
  background: url(../images/icons/radio-checked-16px.png) no-repeat 0 0;
}
.ie8 .radioWrapper input[disabled] + .radioLabel .radioLabel-btn {
  background: url(../images/icons/radio-empty-disabled-16px.png) no-repeat 0 0;
}
.ie8 .radioWrapper input[disabled]:checked + .radioLabel .radioLabel-btn {
  background: url(../images/icons/radio-checked-disabled-16px.png) no-repeat 0 0;
}

.customMask-inputWrapper {
  position: relative;
  font-family: Consolas, monaco, monospace;
}
.customMask-inputWrapper input {
  font-family: Consolas, monaco, monospace;
}
.customMask-inputWrapper .inputMask {
  position: absolute;
  left: -9999px;
}
.customMask-inputWrapper .inputMask.active {
  position: absolute;
  top: 2px;
  left: 2px;
  pointer-events: none;
}
.customMask-inputWrapper .dot {
  background-color: white;
  float: left;
  overflow: hidden;
  display: block;
  background-position: initial initial;
  background-repeat: initial initial;
  margin-left: 0px;
  /*margin-right:-2px;*/
  color: #333;
}
.customMask-inputWrapper .dot.first {
  /*margin-right:-2px;*/
}

/*Is contained by custom class names so it won't interfere*/
/* Include any mixins from the mixins folder in here 
 * This file is imported in main.scss
 * so then any of the mixins imported here can be used anywhere via the @include statement
 */
/* Keep this list in alphabetical order */
/* 
 * Mixin for Background Gradients
 */
/* @TODO: neither gradient is working in IE8... */
/* parameter value defaults to {@explain} if not passed in */
/* parameter value defaults to {@explain} if not passed in */
/*
--------------
Sample Usage:
gradient_bg_horizontal
--------------
.identifier {
	@include gradient_bg_horizontal("#D75426", "#F69A15");
}
--------------
Sample Output:
gradient_bg_horizontal
--------------
.identifier {
	background: #d75426;
	background: -moz-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, #d75426), color-stop(100%, #f69a15));
	background: -webkit-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: -o-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: -ms-linear-gradient(left, #d75426 0%, #f69a15 100%);
	background: linear-gradient(to right, #d75426 0%, #f69a15 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d75426', endColorstr='#f69a15',GradientType=1 );
}
--------------
*/
/* 
 * Mixin for Buttons
 */
/* parameter value defaults to {@explain} if not passed in */
/* parameter value defaults to {@explain} if not passed in */
/* 
 * Mixin for Cross-Browser Opacity
 */
/* parameter value defaults to 0.5 if not passed in */
/* using this way results in ... Alpha(Opacity=" 50 ")"; 
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$value*100")";
Which still works in the browser, but don't want the extra spaces around the value.
*/
/*
--------------
Sample Usage: 
--------------
.identifier {
	@include opacity(.5);
}
--------------
Sample Output:
--------------
.identifier {
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity="50")";
	filter: alpha(opacity=50);
}
--------------
*/
/* Load global variables and import fonts outside of the Namespace */
/* Global variables */
/* Namespaces for Pweb Redesign & Responsive */
/* pweb redesign prefix */
/* pweb build switch switch */
/* use "true" or "false" without quotes. true adds a leading / to .htc paths */
/* SASS setting variables */
/* Branding Colors */
/* defaults: primary orange, secondary orange-red, tertiary purple */
/*#F69A15;*/
/*Brandable Accordion Colors */
/* Same at the Primary Color but this is not Brandable */
/* Global Colors */
/* Legacy Pweb Table Header BG Colors */
/* custom scrollbar color */
/* Global Padding */
/* CSS3PIE library. apply "*behavior: $piepath;" to CSS3 rounded corners */
/* Boxsizing library to support older IE. apply "*behavior: $boxsizingpath;"  */
/* jQuery UI Size Overrides */
/* desktop */
/* tablet */
/* WIDTH VARIABLES */
/* DESKTOP*/
/* TABLET */
/* PHONE */
/* COLOR DEFINITIONS */
/* used within GRIDS */
/* FONT SIZES */
/* MEGA MENU --------------------- */
#megamenu {
  color: #333333;
  position: relative;
  width: 100%;
  /* --------------------- */
}
#megamenu a {
  text-decoration: none;
}
#megamenu a:hover {
  text-decoration: underline;
}
#megamenu h3 a,
#megamenu h3 span {
  color: #fb8000;
  cursor: pointer;
  font-weight: normal;
}
#megamenu > ul {
  margin: 0;
  padding: 15px 0;
  /*MATCH 0234*/
  position: relative;
}
#megamenu > ul > li {
  border-top: none;
  display: inline;
}
#megamenu #first-mm {
  margin-left: 0;
}
#megamenu .mml1 {
  display: inline;
  font-size: 130.8%;
  position: relative;
  z-index: 999997;
}
#megamenu .mml1 a,
#megamenu .mml1 span {
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  border: 1px solid transparent;
  cursor: pointer;
  padding: 15px 15px 13px 15px;
  /*TOP MATCH 0234*/
  color: #333333;
}
#megamenu .mm-active .mml1 a:hover {
  text-decoration: none;
  cursor: default;
}
#megamenu .mm-active .mml1 a,
#megamenu .mm-active .mml1 span {
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  border: 1px solid #fb8000;
  border-bottom: 0;
  border-color: #fb8000 #fb8000 #dbdbdb;
  background-color: #f0f0f0;
  color: #fb8000;
  margin: 0;
  padding-top: 10px;
  /* MATCH 0234 ... - 5px */
  position: relative;
  z-index: 999996;
  zoom: 1;
}
#megamenu #mm-num-msgs {
  color: #fb8000;
  cursor: pointer;
  font-size: 76.9%;
  left: 0;
  position: absolute;
  text-align: center;
  top: -2em;
  width: 100%;
}
#megamenu .mml1 span.active,
#megamenu .mml1 a.active {
  color: white;
  padding-bottom: 10px;
  /* MATCH 0234 -5px */
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  height: 100%;
  background-color: #fb8000;
  border: 0;
  margin: 1px;
}
#megamenu .mml2 {
  background-color: #f0f0f0;
  border: 1px solid #fb8000;
  box-shadow: 0 5px 2px -2px #cccccc;
  behavior: url(static/global/js/vendor/ie/PIE.htc);
  color: #000;
  display: block;
  left: -99999px;
  /* hide by default */
  margin-top: 12px;
  /*11px; /*12px; /*MATCH 0234 - 3px*/
  /* RJG */
  padding-bottom: 12px;
  padding-top: 12px;
  position: absolute;
  z-index: 999995;
}
#megamenu .mml2.full {
  width: 100%;
}
#megamenu .mml3 {
  float: left;
  padding: 10px;
  position: relative;
}
#megamenu .mml3 h3 {
  color: #fb8000;
  font-size: 123.1%;
  margin-bottom: 0px;
  margin-left: 35px;
}
#megamenu .mml3 ul {
  list-style: square;
}
#megamenu .mml3 ul a {
  color: #333333;
}
#megamenu .mml3 .section1 {
  border-left: 1px solid #dbdbdb;
  margin-top: 35px;
  padding: 0px 20px 0px 20px;
  margin-bottom: 20px;
}
#megamenu .mml3 .section1 .inner {
  background-color: #fb8000;
  height: 115px;
  position: relative;
  padding: 21px;
}
#megamenu .mml3 h2 {
  font-weight: normal;
  margin-top: 20px;
  margin-left: 30px;
}
#megamenu .mml3 h2 a {
  color: #fb8000;
}
#megamenu .mml3 {
  border-style: solid;
  border-width: 0 0 0 1px;
  border-color: #dbdbdb;
  color: #333333;
  padding: 0 23px 0 23px;
  height: 100%;
}
#megamenu .mml3.first {
  border-left: 0;
}
#megamenu .mml3 h3 {
  margin: 0 0 13px 0;
}
#megamenu .mml3 ul {
  margin: 0 0 13px 0;
  padding-left: 15px;
}
#megamenu .mml3 > ul > li {
  padding: 2px 0;
}
#megamenu .mml3 {
  max-width: 235px;
}
#megamenu #message-center .mml3 {
  max-width: none;
  width: 100%;
}

/*-----START IE SPECIFIC STYLE-----*/
.ie8 #megamenu .li-active .mml1 span.active,
.ie8 #megamenu .li-active .mml1 a.active, .ie9-10 #megamenu .li-active .mml1 span.active,
.ie9-10 #megamenu .li-active .mml1 a.active {
  padding-top: 16px;
}

.ie8 #megamenu .mml1 span.active-hold,
.ie8 #megamenu .mml1 a.active-hold {
  padding-bottom: 14px;
  padding-top: 14px;
}
.ie8 #megamenu .li-active .mml2 {
  margin-top: 12px;
}
.ie8 #megamenu .mml2 {
  margin-top: 11px;
}

/*-----END IE SPECIFIC STYLE-----*/
/*Is contained by custom class names so it won't interfere*/
.prd {
  /* note: touch device responsive css is in _touch.scss */
  /* 1078px ... 1024 + buffer for browser's vertical scrollbar */
  /* styles for touch devices only, based on Modernizr.touch */
}
@media screen and (max-width: 1080px) {
  .prd {
    /* note: #doc width changed in _pwebglobal.scss */
    /* marquee font size adjustments */
    /*
     * SECTIONS THAT NEED TO CHANGE DEPENDING ON #DOC WIDTH
     */
    /* subtract 45px and -20px for padding */
  }
  .prd .mml2-active {
    margin-left: 1px;
  }
  .prd #investments.mml2-active {
    margin-left: 0;
  }
  .prd .login #dashboard.widemiddle {
    min-height: 335px;
  }
  .prd .login #dashboard.widemiddle .section1 .inner {
    height: 315px;
    min-height: 295px;
  }
  .prd .login #dashboard .section1 .service-links ul {
    margin-top: .5em;
    margin-bottom: 0;
  }
  .prd .login #dashboard .section2.full .full-img img {
    height: 315px;
  }
  .prd .login #dashboard .section2.full .inner {
    height: 315px;
  }
  .prd .login #dashboard .section3-1-expanded .close-section3-1-expanded,
  .prd .login #dashboard .section3-2-expanded .close-section3-2-expanded {
    font-size: 200%;
  }
  .prd .mml1 {
    font-size: 123.1%;
  }
  .prd .rr-marquee-left-top h2 {
    font-size: 246.2%;
    font-size: 200%;
  }
  .prd .rr-marquee-welcome-1 {
    font-size: 200%;
    font-size: 161.5%;
  }
  .prd .rr-marquee-welcome-2 {
    font-size: 169.2%;
    font-size: 138.5%;
  }
  .prd .rr-marquee-welcome-3 {
    font-size: 146.2%;
    font-size: 123.1%;
  }
  .prd .rr-marquee-right #accordion #slide1 h2 {
    font-size: 138.5%;
  }
  .prd .rr-marquee-right #accordion #slide2 h2 {
    font-size: 138.5%;
  }
  .prd .rr-marquee-right #accordion #slide3 h2 {
    font-size: 138.5%;
  }
  .prd .rr-marquee-right #accordion #slide4 h2 {
    font-size: 138.5%;
  }
  .prd .rr-marquee-right #accordion #slide5 h2 {
    font-size: 138.5%;
  }
  .prd .account-data-scroll.scroll-vertical .scroll-content1 {
    width: 435px;
    /*443px; /* 458px; /* container width - 30px */
  }
  .prd #messages .msg-section {
    width: 187px;
    /* 171px; /*191px; /* 200px; margin-left: 6px; ... doc width is 45px less... so 45/5 = 9 */
  }
  .prd #messages .msg-section .action-image {
    width: 185px;
  }
  .prd .section2full .account-data-scroll {
    width: 473px;
    /*479px; /*500px;*/
  }
  .prd .section2full .account-data-scroll.scroll-vertical .scroll-content1 {
    width: 441px;
    /*449px; /*470px;*/
  }
  .prd #welcome #header-title {
    max-width: 420px;
    /*485px;*/
  }
}
.prd .touch {
  /* jQuery UI overrides */
}
.prd .touch .ui-slider-horizontal {
  height: 10px;
}
.prd .touch .ui-slider-vertical {
  width: 10px;
}
.prd .touch .ui-slider-vertical .ui-slider-handle {
  left: -0.75em;
}
.prd .touch .ui-slider .ui-slider-handle {
  height: 2.5em;
  width: 2.5em;
}
.prd .touch .ui-slider-vertical .ui-slider-handle {
  left: -0.75em;
}

/* Import IE only sheets, in and outside of .prd */
.prd.ie8 {
  /*
  #account-info-tabs table.labels thead tr th.last{
  	padding-right: 45px;
  }
  */
  /* IE8 max width needs to subtract padding/margin */
  /* 1078px ... 1024 + buffer for browser's vertical scrollbar */
}
.prd.ie8 .li-active .mml1 span.active,
.prd.ie8 .li-active .mml1 a.active {
  padding-top: 16px;
}
.prd.ie8 .mml1 span.active-hold,
.prd.ie8 .mml1 a.active-hold {
  padding-bottom: 14px;
  padding-top: 14px;
}
.prd.ie8 .li-active .mml2 {
  margin-top: 12px;
}
.prd.ie8 .mml2 {
  margin-top: 11px;
}
.prd.ie8 .login #dashboard .section3-1 .inner {
  min-height: 144px;
}
.prd.ie8 .login #dashboard .section3-2 .inner {
  min-height: 144px;
}
.prd.ie8 .login #dashboard .section1 .inner {
  min-height: 318px;
}
.prd.ie8 .login #dashboard .section3-1-expanded .inner {
  min-height: 318px;
}
.prd.ie8 .login #dashboard .section3-1-expanded .inner .inner-wrapper {
  min-height: 318px;
}
.prd.ie8 .login #dashboard .section3-2-expanded .inner {
  min-height: 318px;
}
.prd.ie8 .login #dashboard .section3-2-expanded .inner .inner-wrapper {
  min-height: 318px;
}
.prd.ie8 .rr-marquee-right #accordion #slide1 h2.selected .wrapper,
.prd.ie8 .rr-marquee-right #accordion #slide2 h2.selected .wrapper,
.prd.ie8 .rr-marquee-right #accordion #slide3 h2.selected .wrapper,
.prd.ie8 .rr-marquee-right #accordion #slide4 h2.selected .wrapper,
.prd.ie8 .rr-marquee-right #accordion #slide5 h2.selected .wrapper {
  bottom: -24px;
  right: 70px;
  top: 38px;
}
.prd.ie8 .rr-marquee-right #accordion #slide1 h2.selected #arrow-small {
  border-right-width: 11px;
}
.prd.ie8 .rr-marquee-right #accordion #slide2 h2.selected #arrow-small {
  border-right-width: 11px;
}
.prd.ie8 .rr-marquee-right #accordion #slide3 h2.selected #arrow-small {
  border-right-width: 11px;
}
.prd.ie8 .rr-marquee-right #accordion #slide4 h2.selected #arrow-small {
  border-right-width: 11px;
}
.prd.ie8 .rr-marquee-right #accordion #slide5 h2.selected #arrow-small {
  border-right-width: 11px;
}
.prd.ie8 #first-time-login-modal {
  /*max-width: 334px;*/
  max-width: 314px;
}
@media screen and (max-width: 1080px) {
  .prd.ie8 .login #dashboard.widemiddle .section1 .inner {
    height: 315px;
    min-height: 295px;
  }
}

.ie8 .prd {
  /*
  #account-info-tabs table.labels thead tr th.last{
  	padding-right: 45px;
  }
  */
  /* IE8 max width needs to subtract padding/margin */
  /* 1078px ... 1024 + buffer for browser's vertical scrollbar */
}
.ie8 .prd .li-active .mml1 span.active,
.ie8 .prd .li-active .mml1 a.active {
  padding-top: 16px;
}
.ie8 .prd .mml1 span.active-hold,
.ie8 .prd .mml1 a.active-hold {
  padding-bottom: 14px;
  padding-top: 14px;
}
.ie8 .prd .li-active .mml2 {
  margin-top: 12px;
}
.ie8 .prd .mml2 {
  margin-top: 11px;
}
.ie8 .prd .login #dashboard .section3-1 .inner {
  min-height: 144px;
}
.ie8 .prd .login #dashboard .section3-2 .inner {
  min-height: 144px;
}
.ie8 .prd .login #dashboard .section1 .inner {
  min-height: 318px;
}
.ie8 .prd .login #dashboard .section3-1-expanded .inner {
  min-height: 318px;
}
.ie8 .prd .login #dashboard .section3-1-expanded .inner .inner-wrapper {
  min-height: 318px;
}
.ie8 .prd .login #dashboard .section3-2-expanded .inner {
  min-height: 318px;
}
.ie8 .prd .login #dashboard .section3-2-expanded .inner .inner-wrapper {
  min-height: 318px;
}
.ie8 .prd .rr-marquee-right #accordion #slide1 h2.selected .wrapper,
.ie8 .prd .rr-marquee-right #accordion #slide2 h2.selected .wrapper,
.ie8 .prd .rr-marquee-right #accordion #slide3 h2.selected .wrapper,
.ie8 .prd .rr-marquee-right #accordion #slide4 h2.selected .wrapper,
.ie8 .prd .rr-marquee-right #accordion #slide5 h2.selected .wrapper {
  bottom: -24px;
  right: 70px;
  top: 38px;
}
.ie8 .prd .rr-marquee-right #accordion #slide1 h2.selected #arrow-small {
  border-right-width: 11px;
}
.ie8 .prd .rr-marquee-right #accordion #slide2 h2.selected #arrow-small {
  border-right-width: 11px;
}
.ie8 .prd .rr-marquee-right #accordion #slide3 h2.selected #arrow-small {
  border-right-width: 11px;
}
.ie8 .prd .rr-marquee-right #accordion #slide4 h2.selected #arrow-small {
  border-right-width: 11px;
}
.ie8 .prd .rr-marquee-right #accordion #slide5 h2.selected #arrow-small {
  border-right-width: 11px;
}
.ie8 .prd #first-time-login-modal {
  /*max-width: 334px;*/
  max-width: 314px;
}
@media screen and (max-width: 1080px) {
  .ie8 .prd .login #dashboard.widemiddle .section1 .inner {
    height: 315px;
    min-height: 295px;
  }
}

.prd.ie9-10 .li-active .mml1 span.active,
.prd.ie9-10 .li-active .mml1 a.active {
  padding-top: 16px;
}

.ie9-10 .prd .li-active .mml1 span.active,
.ie9-10 .prd .li-active .mml1 a.active {
  padding-top: 16px;
}

#main .prd {
  overflow: hidden;
}
