@charset "UTF-8";

/*  Font Awesome CDN Import */
@import url(//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.1.0/css/font-awesome.css);

@font-face {
  font-family: futura-pt;
  src: url('../fonts/palanquin/PalanquinDark-Regular.ttf');
}

@font-face {
  font-family: "PalanquinDark";
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/palanquin/PalanquinDark-Regular.ttf');
}

/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-loading .slick-list {
  background: #fff url('../design/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url('../fonts/slick/slick.eot');
  src: url('../fonts/slick/slick.eot?#iefix') format("embedded-opentype"),
    url('../fonts/slick/slick.woff') format("woff"),
    url('../fonts/slick/slick.ttf') format("truetype"),
    url('../fonts/slick/slick.svg#slick') format("svg");
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "\2190";
}

[dir="rtl"] .slick-prev:before {
  content: "\2192";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "\2192";
}

[dir="rtl"] .slick-next:before {
  content: "\2190";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/*------ Q4 Preview Toolbar ------*/
body.PreviewBody {
  margin: 0;
  background-position: 0;
}

body.PreviewBody .PreviewToolBar {
  position: fixed;
  top: 100%;
  bottom: auto;
  width: 100%;
  margin: 0;
  padding: 35px 20px;
  border: 0;
  background: #283033;
  font-size: 0;
  text-align: left;
  color: #ffffff;
  z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
  top: auto;
  bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 20px;
  background: #283033;
  transform: translate(0, -100%);
  font-size: 24px;
  font-size: 2.4rem;
  cursor: pointer;
}

body.PreviewBody .PreviewToolBar .q4-icon_clock-line:before {
  font-family: "FontAwesome" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f017";
}

body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i:before {
  content: "\f00d";
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
  display: inline-block;
  vertical-align: middle;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 15px;
  line-height: 50px;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
  float: none;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before {
  content: "Select Preview Type:";
}

body.PreviewBody .PreviewToolBar .PreviewDateControls {
  float: right;
}

body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
  content: "Select Preview Date:";
}

body.PreviewBody .PreviewToolBar img {
  display: none;
}

body.PreviewBody .PreviewToolBar input[type="radio"],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
  display: inline-block;
  margin-right: 5px;
  font-family: "Lato", sans-serif !important;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
  vertical-align: baseline;
}

body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 15px 20px;
  border: 0;
  border-radius: 0;
}

body.PreviewBody .PreviewToolBar label + input[type="radio"] {
  margin-left: 15px;
}

body.PreviewBody .PreviewToolBar input[type="text"] {
  min-width: 110px;
}

body.PreviewBody .PreviewToolBar select {
  padding: 15px 35px 15px 20px;
  background: #ffffff url("../design/svg/q4-icon_chevron-down-black.svg")
    no-repeat right 10px center;
  background-size: 14px 14px;
}

body.PreviewBody .PreviewToolBar select::-ms-expand {
  display: none;
}

body.PreviewBody .PreviewToolBar input[type="submit"] {
  background: #2296bc;
  color: #ffffff !important;
}

@media only screen and (max-width: 1024px) {
  body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
  body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: block;
    float: none;
    margin-bottom: 15px;
  }

  body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
  body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  body.PreviewBody .PreviewToolBar input[type="radio"],
  body.PreviewBody .PreviewToolBar label,
  body.PreviewBody .PreviewToolBar input[type="text"],
  body.PreviewBody .PreviewToolBar select,
  body.PreviewBody .PreviewToolBar input[type="submit"] {
    margin-bottom: 5px;
  }
}

/*.PreviewToolBar {
    display: none;
}*/

.PreviewBody {
  margin-top: 0 !important;
  background-position: 0 0 !important;
}

body > #ui-datepicker-div {
  display: none;
}

.hidden {
  display: none !important;
}

@keyframes headerSlideDown {
  from {
    top: -100%;
  }

  to {
    top: 0;
  }
}

.js--header-fixed .pane--header {
  animation-name: headerSlideDown;
  animation-duration: 0.5s;
  position: fixed;
  width: 100%;
  background-color: #ffffff;
  box-shadow: rgba(40, 48, 51, 0.2) 0px 2px 20px;
  z-index: 501;
}

.js--secondary-sticky .ir-horizontal-nav {
  position: fixed;
}

@font-face {
  font-family: "Flaticon";
  src: url('../fonts/flaticon.eot');
  src: url('../fonts/flaticon.eot?#iefix') format("embedded-opentype"),
    url('../fonts/flaticon.woff') format("woff"),
    url('../fonts/flaticon.ttf') format("truetype"),
    url('../fonts/flaticon.svg#flaticon') format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url('../fonts/flaticon.svg#flaticon') format("svg");
  }
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-size: 20px;
  font-style: normal;
}

.flaticon-calendar:before {
  content: "\f100";
}

#irwWrapper .timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

#irwWrapper .timeline:before {
  background: #ddd;
  bottom: 0;
  content: "";
  left: 15px;
  margin: 0;
  position: absolute;
  top: 0;
  width: 1px;
}

#irwWrapper .timeline > li {
  position: relative;
  margin-right: 10px;
}

#irwWrapper .timeline > li:before,
#irwWrapper .timeline > li:after {
  display: table;
  content: " ";
}

#irwWrapper .timeline > li:after {
  clear: both;
}

#irwWrapper .timeline li:before {
  border-top: 1px solid #ddd;
  height: 0;
  top: 0;
  width: 15px;
}

#irwWrapper .timeline > li > .timeline-item {
  margin-bottom: 15px;
  margin-left: 30px;
  margin-top: -12px;
  position: relative;
}

#irwWrapper .timeline {
  padding: 30px 0 0;
}

#irwWrapper .timeline > li.treeline {
  margin-bottom: 20px;
  margin-left: 15px;
}

#irwWrapper .timeline li.treeline.last:before {
  border-left: 1px dotted #ddd;
  border-top: 0 none;
}

#irwWrapper .timeline li.treeround:before {
  border: 0 none;
  padding: 10px 0 30px;
}

#irwWrapper .timeline > li > .fa,
.timeline > li > .glyphicon,
#irwWrapper .timeline > li > .ion {
  background: none repeat scroll 0 0 #fff;
  border-radius: 50%;
  color: #ddd;
  font-size: 15px;
  height: 13px;
  left: 9px;
  line-height: 14px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 12px;
}

#irwWrapper .timeline > li.treeround > span.tree-primary {
  background-color: #666;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  left: 30px;
  margin-left: 0;
  margin-top: 0;
  padding: 2px 15px;
  position: absolute;
  top: -3px;
  cursor: pointer;
}

#irwWrapper .timeline > li.treeround > span.tree-primary:hover,
#irwWrapper .timeline > li.treeround > span.tree-primary:focus {
  background-color: #428bca;
}

#irwWrapper .timeline > li.treeround > span.tree-primary.active {
  background-color: #428bca;
}

#irwWrapper #irwUploadDocs .timeline li:before {
  width: 30px;
}

#irwWrapper #irwUploadDocs .timeline {
  padding: 0;
}

#irwWrapper #irwUploadDocs .timeline .timeline li:before {
  width: 15px;
}

#irwWrapper .timeline .timeline > li.treeline {
  margin-left: 30px;
}

#irwWrapper .timeline .timeline:before {
  left: 30px;
}

#irwWrapper .timeline .timeline > li > .fa,
#irwWrapper .timeline .timeline > li > .glyphicon,
#irwWrapper .timeline .timeline > li > .ion {
  left: 24px;
}

#irwWrapper .timeline .timeline > li.treeround > span.tree-primary {
  top: -5px;
  left: 45px;
}

#irwWrapper .timeline .timeline {
  margin-top: -7px;
  padding-top: 0;
}

#irwWrapper .timeline .irwULNone:before {
  background-color: transparent;
}

#irwWrapper .timeline .timeline > li.treeline:last-child,
#irwWrapper .timeline .timeline > li > .timeline-item {
  margin-bottom: 0;
}

#irwWrapper .timeline .timeline li.treeround:before {
  padding-bottom: 20px;
}

#irwWrapper .timeline .timeline > li.treeline {
  margin-top: 12px;
}

#irwWrapper .timeline .timeline > li.treeround > span.tree-primary.active,
#irwWrapper .timeline .timeline > li.treeround > span.tree-primary {
  background-color: transparent;
  color: gray;
  border: 1px solid #eee;
}

#irwWrapper .timeline .timeline > li.treeround > span.tree-primary.active,
#irwWrapper .timeline .timeline > li.treeround > span.tree-primary:hover {
  background-color: #e1e1e1;
  color: gray;
}

#irwWrapper .irwMonth {
  margin: 0 0 10px;
}

#irwWrapper .irwtreeEnd {
  background: none repeat scroll 0 0 #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  clear: both;
  color: #ddd;
  height: 24px;
  line-height: 23px;
  margin-bottom: -15px;
  margin-left: 3px;
  margin-top: 0;
  position: relative;
  text-align: center;
  width: 25px;
}
/** IRW THEME BELOW **/

/*!
 * SNL IRW CSS Theme (http://snl.com)
 * Copyright 2014
 * Version 1.0
 * Based on Bootstrap 3.0.3 
 */
/*!
 * Client Name 	: Kimco Realty Corporation
 * KeyInst		: 102965
*/
/***********************TYPOGRAPHY***********************/
#ir_search #irwsearch #searchControlButton.btn {
  display: inline-block;
  font-size: 20px;
  margin-top: 0;
}

#irwWrapper,
#irwWrapperPR {
  color: #535353;
  font-family: "PalanquinDark", "open-sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

#irwWrapper a,
#irwWrapper a:focus,
#irwWrapperPR a,
#irwWrapperPR a:focus {
  color: #045d8a;
  text-decoration: none;
}

#irwWrapper a:hover,
#irwWrapperPR a:hover {
  color: #535353;
  text-decoration: none;
}

#irwWrapper a:focus,
#irwWrapperPR a:focus {
  outline: none;
}

/*
// Contextual colors
*/
#irwWrapper .text-muted {
  color: #999999;
}

#irwWrapper .text-default {
  color: #535353;
}

#irwWrapper .text-primary,
.irwCopyright .text-primary {
  color: #045d8a;
}

#irwWrapper a.text-primary:hover {
  color: #535353;
}

.irwCopyright a.text-primary:hover {
  color: #d3e9f4;
}

/*
// Contextual backgrounds
*/
#irwWrapper .bg-primary,
.irwCopyright .bg-primary,
.scrollbar-handle {
  color: #fff;
  background-color: #0888ca;
}

#irwWrapper a.bg-primary:hover {
  background-color: #d3e9f4;
}

#irwWrapper .btn {
  border-radius: 0px;
  font-family: "PalanquinDark", "adelle-sans", sans-serif;
}

#irwWrapper .btn-primary {
  color: #ffffff;
  background: #0888ca;
  border-color: #0888ca;
}

#irwWrapper .btn-primary:hover,
#irwWrapper .btn-primary:focus,
#irwWrapper .btn-primary:active,
#irwWrapper .btn-primary.active,
#irwWrapper .open .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #1873b1;
  border-color: #1873b1;
}

#irwWrapper .panel-default > .panel-heading {
  color: #0888ca;
}

#irwWrapper .irwTable .irwTableHeader,
#irwWrapper .gridPR .irwTableRowItem .irwPRSummary,
#irwWrapper .gridPR .irwTableRowItem:hover,
#irwWrapper .panel-default > .panel-heading-Select {
  background-color: #0888ca;
  color: #fff;
}

#irwWrapper .panel-default > .panel-heading-Select a:hover,
#irwWrapper .panel-default > .panel-heading-Select a:focus,
#irwWrapper .panel-default > .panel-heading-Select a:active {
  color: #fff;
}

/*
// IRW Tabs
// --------------------------------------------------
*/
#irwWrapper .irwCRTabsPanel {
  background-color: #0888ca;
  border-top-color: #0888ca;
}

#irwWrapper .irwTabs {
  border: none;
  border-top: 8px solid #0888ca;
  background-color: #0888ca;
  border-radius: 4px 4px 0 0;
}

#irwWrapper .irwTabs ul {
  margin-left: -10px;
}

#irwWrapper .irwTabs ul li a {
  background-color: #0888ca;
  color: #e5e5e5;
}

#irwWrapper .irwTabs ul li a:hover,
#irwWrapper .irwTabs ul li.active a {
  color: #fff;
  text-decoration: none;
}

#irwWrapper .irwTabs ul li.active a {
  background-color: #fff;
  color: #5b481d;
  border-radius: 4px 4px 0 0;
}

/* --Mobile View-- */
#irwWrapper .irwTabs .form-group.visible-xs {
  margin-left: 0px !important;
  margin-top: 5px;
  margin-bottom: 10px;
}

#irwWrapper .irwTabs .form-group.visible-xs label {
  color: #fff;
}

/**/
#irwWrapper .irwSwitch ul li a span.fa {
  font-size: 15px;
}

#irwWrapper .irwTableRowItem ul li a:hover,
#irwWrapper .irwTableRowItem ul li.active a,
.ui-datepicker .ui-datepicker-title {
  color: #d3e9f4;
}

#irwWrapper .irwTableRowItem h6,
#irwWrapper .irwTableRowItem ul li {
  font-size: 12px;
}

#irwWrapper .ui-widget {
  font-family: "PalanquinDark", "open-sans", sans-serif;
  font-size: 15px;
}

#irwWrapper .meter {
  background-color: #ccc;
}

h1.irwTitle {
  display: none;
}

/*Suppress Title on Press Releases*/
/*Suppress FAQ extra paragraphs*/
.irwDivFaqs .scrollbar-content p,
.irwDivFaqs p {
  display: none;
}

.irwDivFaqs .scrollbar-content {
  width: 100%;
}

.irwDivFaqs .scrollbars {
  height: 172px !important;
}

/*Stock Chart Config Menu */
#irwWrapper .irwConfigMenuWrapper {
  z-index: 1029;
}

#irwWrapper .nav-tabs > li.active > a,
#irwWrapper .nav-tabs > li.active > a:hover,
#irwWrapper .nav-tabs > li.active > a:focus,
.mCS-bootstrap-thin > .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-bootstrap-thin > .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
#irwWrapper #irwTabsEvent {
  background-color: #0888ca;
}

/**/
#irwWrapper .irwNote {
  border-bottom-color: #0888ca;
}

#irwWrapper .irwFilingHighlightItem {
  border-left-color: #0888ca;
}

#ui-datepicker-div select {
  padding: 0;
}

#irwWrapper #newsPanel .gridPR #newsPanelResults .irwTableRowItem h4 a {
  font-size: 13px;
}

#irwWrapper #newsPanel .gridPR #newsPanelResults .irwTableRowItem h4 {
  line-height: 14px;
}

#irwWrapper .QuarterlyResultsPanel .panel-default .panel-body {
  padding-left: 30px;
}

#irwWrapper #stockInfo .irwConfigMenuPanel .graph_nav li a {
  font-size: 11px;
  font-weight: normal;
}

#irwWrapper
  #stockInfo
  .irwConfigMenuPanel
  .irwConfigMenuBody
  .irwConfigMenuTabs
  a:hover {
  color: #0888ca;
}

#irwWrapper
  #stockInfo
  .irwConfigMenuPanel
  .irwConfigMenuBody
  .irwConfigMenuTabs
  .active
  a:hover {
  color: #fff;
}

#wrapper_ir .irw-menu-wrapper .irw-submenu-wrapper {
  margin: 0;
  padding: 10px 15px 0;
}

#wrapper_ir .irw-menu-wrapper .irw-submenu-wrapper .irw-submenu-item {
  margin-bottom: 5px;
}

#wrapper_ir .irw-menu-wrapper .irw-submenu-wrapper .irw-submenu-item a {
  font-weight: normal;
}

#responsive_menu_content a.irw-responsive-submenu-item {
  padding: 1em 1em 1em 3em;
}

#ir_toolbar #ir_toolbar_content .irwToolKit .irwLoading .fa-spin {
  color: #f5f5f5;
}

#ir_stock #irw-Corp-Stock-Quote .irw-top-row div.col-left .MSTicker {
  color: #333333;
  font-family: "PalanquinDark", "open-sans", sans-serif;
  font-size: 20px;
  font-weight: normal;
  margin: 0;
}

#ir_stock .irw-menu-wrapper .light-grey {
  background-color: #333333;
}

#ir_stock .irw-msum-wrapper .light-grey {
  background-color: #878f9c;
}

selectorSavingError {
}

#ir_stock .irw-msum-wrapper li {
  background-color: #586476;
  color: #ffffff;
  display: table;
  font-size: 12px;
  margin: 0 0 2px;
  padding: 2px 10px;
  width: 100%;
}

#ir_stock .irw-msum-wrapper li div {
  display: table-cell;
  text-align: left;
  vertical-align: top;
  width: 50%;
}

#ir_stock #irw-Corp-Stock-Quote {
  display: table;
  max-width: 245px;
  width: 100%;
}

#ir_stock #irw-Corp-Stock-Quote .irw-top-row {
  display: table;
  width: 100%;
}

#ir_stock #irw-Corp-Stock-Quote .irw-top-row div {
  display: table-cell;
  text-align: left;
  vertical-align: top;
  width: 50%;
}

#ir_stock #irw-Corp-Stock-Quote .irw-top-row div.col-left {
  text-align: center;
}

#ir_stock #irw-Corp-Stock-Quote .irw-top-row div.col-left span {
  color: #333333;
  font-size: 12px;
}

#ir_stock #irw-Corp-Stock-Quote .irw-top-row div.col-right > h3 {
  color: #333333;
  font-family: "PalanquinDark", "open-sans", sans-serif;
  font-size: 33px;
  font-weight: normal;
  line-height: 1;
  margin: 0;
  vertical-align: -moz-middle-with-baseline;
}

#ir_links ul.pr-block,
#ir_links #console_c_investor-pres {
  display: table;
  /*float:left;*/
  /*--00129775--*/
  /* width: 100%; */
  width: 63%;
}
#ir_links #console_c_investor-pres {
  width: 50%;  
}
#ir_links ul.pr-block li.pr-innerblock,
#ir_links #console_c_investor-pres li {
  display: table-row;
  float: left;
  width: 100%;
}

#ir_links .pr-lright {
  /* float: left; */
  /* width: 85%; */
  display: table-cell;
  /* min-width: 73px; */
}

#ir_links .pr-dleft {
  float: left;
  /* width: 10%; */
  padding-right: 5px;
  display: table-cell;
  min-width: 90px;
}

#irwWrapper #newsForm .irwFilters .row.rowtop .news-nopad1 {
  padding: 0px;
}

#irwWrapper #newsForm .irwFilters .row.rowtop .news-nopad {
  padding: 0px;
}

#irwWrapper .table > tbody > tr > td.irwCommiticon {
  text-align: left;
}

#irwWrapper .table > tbody > tr > td.irwCommiticon .faBox {
  position: relative;
  left: 48%;
}

#ir_links h2 {
  margin: 1.17em 0em 1em 0em;
}

#wrapper_ir .text-muted {
  color: #586476;
}

#wrapper_ir .irwBoxBodyItemNote {
  font-size: 11px;
}

#wrapper_ir .text-center {
  text-align: center;
}

#wrapper_ir p.irwMarketrefresh {
  margin: 0;
  line-height: 0px;
}

#webcast-heading {
  color: #ffffff;
  font-family: "PalanquinDark", "futura-pt";
  margin: 1.25em 0em 1em 0em;
  line-height: 1em;
  font-size: 1.625em;
  font-weight: 600;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

fieldset legend {
  display: none;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

#irwWrapper .prdiv a.irwGaLabel {
  font-size: 17.5px;
  margin: 10px 0;
  float: left;
  width: 100%;
  line-height: 19px;
}

/* START: Leadership Grid */
#irwWrapper .peoplegrid-row {
  float: left;
  width: 100%;
}

#irwWrapper .peoplegrid-row .col-xs-5ths {
  float: left;
  width: 20%;
  position: relative;
}

#irwWrapper .peoplegrid-row .bio-section-wrap {
  display: block;
  width: 100%;
  float: left;
}

#irwWrapper .peoplegrid-row .bio-section-wrap .bio {
  width: 100%;
  position: relative;
  border-top: 2px solid #045d8a;
}

#irwWrapper .peoplegrid-row .col-xs-5ths a.icon .legend-number {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #045d8a;
  color: #fff;
  padding: 0px 8px;
  z-index: 5;
}

#irwWrapper .peoplegrid-row .bio-section-wrap .bio a.close-button {
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #045d8a;
  color: #fff;
  padding: 0px 10px;
}

#mainColContent {
  padding: 2em 3em 5em 3em;
}

#mainColContent h1.irw-page-title {
  font-family: "PalanquinDark", "futura-pt";
  color: #535353;
  margin: 0em 0em 1.25em 0em;
  font-size: 2em;
  line-height: 1em;
  font-weight: 600;
}

#irwWrapper .peoplegrid-row .col-xs-5ths a.icon img {
  width: 100%;
}

#irwWrapper .peoplegrid-row .col-xs-5ths a.icon.collapsed.grayscale img {
  -ms-filter: grayscale(100%) brightness(125%);
  -webkit-filter: grayscale(100%) brightness(125%);
  filter: grayscale(100%) brightness(125%);
  filter: gray;
}

#irwWrapper .peoplegrid-row .col-xs-5ths a.icon .selection-indicator {
  width: 0px;
  height: 0px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #045d8a;
  position: absolute;
  bottom: -10px;
  left: 40%;
}

#irwWrapper .peoplegrid-row .col-xs-5ths a.icon.collapsed .selection-indicator {
  display: none;
}

#irwWrapper .peoplegrid-row .bio-section-wrap .bio h3 {
  margin: 0px;
  padding-top: 15px;
  padding-bottom: 5px;
  color: #045d8a;
}

#irwWrapper .peoplegrid-row .bio-section-wrap .bio li {
  color: #045d8a;
  font-weight: 600;
  padding-bottom: 15px;
}

.manager-group-legend .legend-number {
  font-weight: bold;
}

.manager-group-legend .manager-name {
  font-weight: bold;
  color: #535353;
}

.manager-group-legend ul.position-list li {
  color: #535353;
  margin-bottom: 15px !important;
  line-height: normal;
}

.manager-group-legend a:hover .manager-name,
.manager-group-legend a:hover ul.position-list li {
  color: #045d8a;
}

#irwWrapper #odform a.link-wrap:focus h5 {
  outline: -webkit-focus-ring-color auto 1px;
}

#wrapper_ir a {
  text-decoration: underline;
  font-weight: 700;
}

#ir_introduction_content h2 {
  color: #ffffff;
}

/* END: Leadership Grid */
/* News Grid View Fix */
@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  #irwWrapper #newsPanel .gridPR #newsPanelResults .irwTableRowItem h4 a {
    font-size: 14px;
  }

  #irwWrapper #newsPanel .gridPR #newsPanelResults .irwTableRowItem h4 {
    line-height: 16px;
  }

  #irwWrapper .gridPR .irwTableRowItem {
    height: 315px;
  }

  #irwWrapper .gridPR .irwTableRowItem .irwPRSummary {
    height: 250px;
  }
}

#irwWrapper .irwFaqSections #accordion .panel-body {
  padding-left: 30px;
}

#wrapper_ir {
  background-color: #0d5174;
}

#container_ir_box_2_full,
#container_ir_box_2 {
  background-color: #f5f5f5;
}

#irwWrapper .irwOfficerImgSmall img {
  width: 45px;
}

#irwWrapper #irwCustomPage .thumbnail-wrapper {
  display: block;
  margin-bottom: 90px;
  /*50*/
}

#container_ir_box_3 .irwPageFooter {
  padding: 0;
}

#irwWrapper #stockInfo .irwRow1 {
  height: 80px;
}

#irwWrapper #stockInfo .irwSnapshotItem {
  min-height: 120px;
}

#irwWrapper #stockInfo .irwSnapshotItem .irwTicker.text-primary {
  font-size: 30px;
  margin-bottom: 5px;
  margin-top: 10px;
}

#irwWrapper #stockInfo .irwSnapshotItem .irwQuoteTimeStamp {
  line-height: normal;
}

#container_ir_box_2_full #irwWrapper {
  min-height: 1300px;
}

.color-blue {
  color: #0888ca !important;
}

#ir_menu
  .irw-menu-wrapper
  .irw-menu-item
  ul
  li.irw-submenu-item
  .ActiveSubLink {
  color: #9fcc3b;
  font-style: italic;
}

#irwWrapper
  #irwCustomPage
  .irwODSections
  .irwODPerson
  .irwOfficer
  h6.irwOfficerTitle {
  padding: 0;
}

#irwWrapper #PresentationDocsform .irwEventAlert .fa-envelope {
  color: #0888ca !important;
}

#irwWrapper #OwnerShipForm .container .irwBoxBody {
  padding: 0;
}

#sub_footer_box_3 h3 {
  font-weight: normal;
  font-family: "PalanquinDark", "open-sans", sans-serif;
}

#irwWrapper #odform img {
  vertical-align: middle;
  max-width: 248px;
  height: auto;
  width: 100%;
}

#irwWrapper #odform .person-detail {
  background: #013766;
  color: #fff;
  padding: 10px;
  margin-bottom: 30px;
}

#irwWrapper #odform .link-wrap {
  width: 80%;
}

#irwWrapper #odform .irw-drop-down {
  border: 2px solid #ccc;
  width: 300px;
  margin-bottom: 30px;
  padding: 10px;
}

#irwWrapper #odform .irw-drop-down li {
  display: none;
  cursor: pointer;
}

#irwWrapper #odform .irw-drop-down li:first-child {
  display: inline-block;
}

.dropdownn-wrap {
  position: relative;
  float: left;
  width: 100%;
}

.dropdownn-wrap i.fa-angle-down {
  position: absolute;
  left: 273px;
  top: 11px;
  font-size: 24px;
}

@media only screen and (max-width: 1023px) {
  #container_ir_box_2_full #irwWrapper {
    min-height: 100%;
  }
}

@media only screen and (max-width: 767px) {
  #irwWrapper #newsForm .irwFilters .row.rowtop .news-nopad1 {
    padding-bottom: 15px;
  }

  #irwWrapper .sec-filings .irwFilingHighlights .table th,
  #irwWrapper .sec-filings .irwFilingHighlights .table td {
    font-size: 11px;
  }

  #irwWrapper .sec-filings .irwFilingOthers .table th,
  #irwWrapper .sec-filings .irwFilingOthers .table td {
    font-size: 11px;
  }

  #irwWrapper
    .irwCustomPage
    .table
    .footable-row-detail
    .footable-row-detail-cell
    .footable-row-detail-row
    .footable-row-detail-name {
    min-width: 90px;
  }

  #irwWrapper .irwCustomPage .table .footable-first-column {
    min-width: 120px;
  }

  #irwWrapper #irwOD .irwODSections .pull-right .irwODexpandcollapse,
  #irwWrapper #irwOD .irwODSections .pull-right .irwODexpandcollapse:hover,
  #irwWrapper #irwOD .irwODSections .pull-right .irwODexpandcollapse:focus,
  #irwWrapper #irwOD .irwODSections .pull-right .irwODexpandcollapse:active {
    color: #0888ca;
  }

  #irwWrapper .irwCustomPage .irwODSections .pull-right .irwODexpandcollapse,
  #irwWrapper
    .irwCustomPage
    .irwODSections
    .pull-right
    .irwODexpandcollapse:hover,
  #irwWrapper
    .irwCustomPage
    .irwODSections
    .pull-right
    .irwODexpandcollapse:focus,
  #irwWrapper
    .irwCustomPage
    .irwODSections
    .pull-right
    .irwODexpandcollapse:active {
    color: #0888ca;
  }

  #irwWrapper .presentations .table th,
  #irwWrapper .presentations .table td {
    font-size: 11px;
  }

  #irwWrapper .creditratings .tab-content .table th,
  #irwWrapper .creditratings .tab-content .table td {
    word-break: normal;
  }

  #irwWrapper .creditratings .tab-content #NEWS .table .footable-first-column {
    min-width: 120px;
  }

  #irwWrapper
    .creditratings
    .tab-content
    #NEWS
    .table
    .footable-row-detail
    .footable-row-detail-cell
    .footable-row-detail-row
    .footable-row-detail-name {
    min-width: 90px;
  }

  #irwWrapper .creditratings .tab-content #RD .table td {
    font-size: 12px;
  }

  #irwWrapper .creditratings .irwCRtitles {
    word-break: normal;
  }
}

#irwWrapper .media_video a h4 {
  font-size: 15px;
}

#irwWrapper .media_video a:hover h4 {
  color: #333333;
}

.halo-effect-logo {
  // float: right;
  // margin-right: -55px;
  /* margin-top: -20px; */
  position: absolute;
  right: 3%;
}

.oldbadge {
  margin-right: 2%;
  right: 23%;
}

/* ------------------------------ */
/* ------------------------------ */
/* MOBILE OVERRIDES FOR RESPONSIVE DESIGN - GLOBAL */
/* ------------------------------ */
@media (max-width: 1023px) {
  .input_button_important {
    display: block;
    clear: both;
    width: 80%;
    margin: 0em auto 1em auto;
    padding: 1em;
  }

  #responsive_search {
    clear: both;
  }

  #responsive_search_content {
    padding: 1em 2em 1em 3em;
  }

  .responsive_search_div {
    float: left;
  }

  #global_search_box_responsive {
    height: 40px;
    border: none;
    outline: none;
    background: #ffffff;
    width: 200px;
    margin: 0;
    padding: 1px 0px 0px 1px;
    font-size: 1em;
    color: #2c3e50;
  }

  #global_search_box_icon_responsive {
    display: inline-block;
    background-color: #9fcc3b;
    background-image: url(../images/irw/i_icon_search.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 40px;
    height: 40px;
    padding: 0px;
    margin: 0px;
    line-height: 60px;
    text-align: center;
    cursor: pointer;
  }

  input[type="search"].global_search_box_responsive {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
  }
}

@media (max-width: 1479px) and (min-width: 1024px) {
  #pulldown_properties {
    right: 440px;
  }

  .halo-effect-logo {
    position: inherit;
    float: right;
    width: 50%;
    padding: 0px;
    margin: 10px 0 0 0px;
    text-align: center;
  }

  .oldbadge {
    margin-right: 0;
  }

  #current_investor_presetation_totopc {
    float: left;
    width: 100%;
    clear: both;
  }
}

@media (max-width: 1479px) and (min-width: 1024px) {
  #pulldown_tenants {
    right: 226px;
  }
}

/*#pulldown_properties { width: 270px; }*/
.pulldown_menu_content a {
  font-size: 0.9em;
}

#container_sub_footer_content {
  /*padding: 3em 2em 3em 2em;*/
}

@media (max-width: 1479px) and (min-width: 1024px) {
  #container_footer_content {
    padding: 2em;
  }
}

@media (max-width: 1023px) {
  .rd_menu_collapsed {
    background-image: url(../images/irw/i_background_menu_arrow_gray_right.png);
    background-repeat: no-repeat;
    background-position: right center;
  }

  .rd_menu_expanded {
    background-image: url(../images/irw/i_background_menu_arrow_gray_down.png);
    background-repeat: no-repeat;
    background-position: right center;
  }

  #responsive_menu_content li {
    clear: both;
    width: 90%;
    margin: 0.5em;
    border-bottom: 1px #808080 solid;
  }

  #rd_menu_sub_properties a,
  #rd_menu_sub_tenants a,
  #rd_menu_sub_investors a,
  #rd_menu_sub_about_us a {
    padding: 1em 1em 1em 2em;
  }

  #responsive_other_content {
    padding: 1em 0em 1em 0em;
    text-align: center;
  }

  #responsive_other_content a {
    display: inline-block;
    font-size: 1em;
    padding: 0.5em;
  }

  #rd_menu_sub_investors_stock_information a,
  #rd_menu_sub_investors_financial_reporting a,
  #rd_menu_sub_investors_governance a,
  #rd_menu_sub_investors_news_and_events a,
  #rd_menu_sub_investors_personal_investors_and_brokers a,
  #rd_menu_sub_investors_additional_information a {
    padding: 1em 1em 1em 3em;
  }

  .halo-effect-logo {
    position: initial;
    float: right;
    margin-right: -5px;
    /* margin-top: -15px; */
  }

  .oldbadge {
    margin-right: 10px;
  }
}

#rd_menu_sub_tenants {
  display: none;
}

#rd_menu_sub_about_us {
  display: none;
}

#rd_menu_sub_investors_governance {
  display: none;
}

#rd_menu_sub_investors_personal_investors_and_brokers {
  display: none;
}

#rd_menu_sub_investors_additional_information {
  display: none;
}

.irwFilterPanel1 {
  border-right: 0;
}

/************************/
#webcastHolder {
  clear: both;
  float: left;
  width: 100%;
  margin-bottom: 25px;
}

#webcastHolder ul li {
  float: left;
  border: 0;
  border-radius: 0;
}

#webcastHolder ul li a.blackLink {
  color: #fff;
}

#webcastHolder ul li h5 {
  font-family: "PalanquinDark", "futura-pt";
  color: #fff;
  margin: 1.25em 0em 1.25em 0em;
  line-height: 1em;
  font-size: 1.625em;
  font-weight: 600;
}

#webcastHolder ul li a {
  font-weight: normal;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  padding: 0em;
  margin: 0em 0em 0.5em 0em;
}

#irwWrapper .irwFilingDownloadDiv {
  min-width: 230px;
}

/*Active class for menu*/
#menu_content ul li.selected a {
  color: #0888ca;
}

#ir_search #irwsearch input.ir_search_input {
  padding: 7px;
  line-height: 20px;
  height: 17px;
  display: block;
  float: left;
  width: 160px;
}

#ir_search #irwsearch #searchControlButton.btn {
  font-size: 20px;
  margin-top: 0;
  display: block;
  font-size: 20px;
  margin-top: 0;
  float: left;
  height: 17px;
  line-height: 17px;
  padding: 8px;
  width: 30px;
  text-align: center;
  margin-left: 0px;
}

@media (max-width: 1250px) {
  #ir_search #irwsearch input.ir_search_input {
    width: 110px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  #ir_links .pr-dleft {
    min-width: 66px;
  }
}

@media only screen and (max-width: 767px) {
  #ir_links .pr-dleft {
    min-width: 66px;
  }

  .halo-effect-logo {
    float: right;
    width: 50%;
    padding: 0px;
    margin: 10px 0 0 0px;
    text-align: center;
  }

  .oldbadge {
    margin-right: 0px;
  }

  #current_investor_presetation_totop {
    float: left;
    width: 100%;
    clear: both;
  }
}

@media only screen and (max-width: 480px) {
  .halo-effect-logo {
    width: 100%;
    margin: 0px 0 10px 0px;
  }
}

#irwWrapper #odform a.link-wrap:hover .person-detail {
  background: #9fcc3b;
}

/*=====================================================================================*/
#container_ir_box_2_content #webcastHolder ul li a {
  color: #045d8a;
  font-weight: 600;
  font-size: 0.9em;
}

#wrapper_ir .quick-links ul li a {
  color: #045d8a;
  font-weight: 600;
  font-size: 0.9em;
}

#wrapper_ir .quick-links ul li a:hover {
  color: #535353;
}

#wrapper_ir .quick-links {
  padding: 1em 7em 3em 3em;
  background-color: #ededed;
}

#container_ir_box_2_content #webcastHolder ul li p {
  margin: 5px 0;
}

#wrapper_ir a:hover {
  color: #535353;
}

#ir_toolbar a:hover,
#ir_menu a:hover {
  color: #d3e9f4;
}

/*=====================================================================================*/
#irwWrapper #creditratingsform #RD .Tbl-CreditRatingsData .accordian-body {
  height: auto !important;
  display: block !important;
}

html body #irwWrapper .table.Tbl-CreditRatingsData > tbody > tr,
html
  body
  #irwWrapper
  .table.Tbl-CreditRatingsData
  > tbody
  > tr.collapsed
  ~ tr.hiddenRow {
  border-left: 3px solid rgb(4, 93, 138) !important;
}

#wrapper_footer #container_footer #container_footer_content #footer_box_2 img {
  width: 200px;
  height: auto;
}

#irwWrapper .creditratings td,
#irwWrapper .creditratings th {
  word-break: normal;
}

#irwWrapper .creditratings .irwCRtitles {
  word-break: normal;
}

@media only screen and (max-width: 767px) {
  #irwWrapper .well {
    overflow: visible;
  }
}

#irwWrapper .modal-dialog .modal-content .modal-header .close {
  position: static;
}

#irwWrapper .modal-dialog .modal-content .modal-header .close:before,
#irwWrapper .modal-dialog .modal-content .modal-header .close:after {
  content: none;
}

#irwWrapper .irwODSections .manager-list .peoplegrid-row > div > a.icon {
  display: block;
}

.ie
  #irwWrapper
  .irwODSections
  .manager-list
  .peoplegrid-row
  > div
  > a.icon[aria-expanded="true"] {
  background: #045d8a;
}

.ie
  #irwWrapper
  .irwODSections
  .manager-list
  .peoplegrid-row
  > div
  > a.icon[aria-expanded="true"]
  img {
  border: 1px solid #045d8a;
}

#wrapper_ir #container_ir_box_3 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#container_ir_box_3 {
  position: relative;
}

#container_ir_box_3:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #9fcc3b;
  position: absolute;
  right: 0;
  bottom: -100%;
}

#container_ir_box_2 {
  position: relative;
}

#container_ir_box_2:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  position: absolute;
  right: 0;
  bottom: -100%;
}

#irwWrapper #odform .person-detail {
  min-height: 120px;
  padding: 15px 10px 0 10px;
}

#irwWrapper #odform img {
  /* min-height: 492px;*/
}

#irwWrapper #odform .person-detail {
  height: 145px;
  padding: 15px 10px 0 10px;
  overflow-y: auto;
  max-width: 248px;
}

@media (min-width: 1023px) {
  .container_ir_box_2_ {
    width: 79% !important;
    float: left !important;
    background-color: #f5f5f5 !important;
  }
}

#custom-1073745333 {
  min-height: 1800px;
}

#custom-1073745333 .irw-page-title {
  font-family: "PalanquinDark", "futura-pt";
  color: #535353;
  margin: 0em 0em 1.25em 0.5em;
  font-size: 2em;
  line-height: 1em;
  font-weight: 600;
}

#irwWrapper
  #odform
  .col-md-3.col-sm-4.col-xs-12.img-member
  .link-wrap:hover
  .person-detail {
  cursor: pointer;
  background: #739a1b;
}

#irwWrapper #odform .odpop-pup .modal-header {
  border: 0px;
  padding: 10px 0px 0px 0px;
  line-height: 20px;
  background: none;
}

#irwWrapper #odform .odpop-pup .modal-header button.close {
  color: #535353;
}

#irwWrapper #odform .odpop-pup .modal-body {
  padding-top: 0px;
}

#irwWrapper #odform .modal-dialog {
  width: 800px;
}

#irwWrapper #odform .modal-dialog img {
  min-height: inherit;
}

#irwWrapper #odform .modal-dialog .irwOfficerImg {
  margin: 0px;
  padding: 0px;
}

#irwWrapper #odform .modal-dialog h1.executive-page-name,
#irwWrapper #odform .modal-dialog .h1.executive-page-name {
  margin: 0px;
  padding: 0px;
  margin-bottom: 3px;
}

#irwWrapper #odform .modal-dialog h2.executive-page-officer-title,
#irwWrapper #odform .modal-dialog .h2.executive-page-officer-title {
  margin: 0px;
  padding: 0px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.irwODSection.row {
  font-size: 0px;
}

.irwODSection.row > div {
  font-size: 15px;
}

#irwWrapper #odform .peoplegrid-row {
  font-size: 0px;
}

#irwWrapper #odform .peoplegrid-row > div {
  font-size: 15px;
}

.col-md-3.col-sm-4.col-xs-12.img-member {
  display: inline-block;
  float: none !important;
  vertical-align: top;
}

.irw-page-title {
  font-family: "PalanquinDark", "futura-pt";
  color: #535353;
  margin: 0em 0em 1.25em 0em;
  font-size: 2em;
  line-height: 1em;
  font-weight: 600;
}

#ir_introduction_content h2 {
  color: #ffffff;
  margin: 0em;
  padding: 1em 0em 0.25em 0em;
  font-size: 1.5em;
}

#irwWrapper .irwFilingDownload.irw_PDF .irwFilingDownloadIcon,
td.irw_PDF,
#irwWrapper .irw_PDF a,
#irwWrapper .irw_PDF a:hover {
  background-color: #9fcc3b;
  color: #fff;
}

@media only screen and (max-width: 992px) {
  #irwWrapper #odform img {
    max-width: 100%;
  }

  #irwWrapper #odform .person-detail {
    max-width: 100%;
  }
}

@media only screen and (max-width: 460px) {
  #irwWrapper #odform .col-xs-4.img-member {
    width: 50%;
  }
}

@media only screen and (max-width: 380px) {
  #irwWrapper #odform .col-xs-4.img-member {
    width: 100%;
  }
}

@media only screen and (max-width: 810px) {
  #irwWrapper #odform .modal-dialog {
    width: 95%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  #irwWrapper #odform .modal-dialog .irwOfficerImg {
    margin-bottom: 20px;
  }
}

#wrapper_ir #ir_introduction_content a:hover {
  color: #9fcc3b;
}

#irwWrapper .irwODSections .person-detail .irwOfficerName {
  font-weight: bold;
  color: #0888ca;
}

#wrapper_ir a {
  text-decoration: none;
}

#wrapper_ir a:hover,
#wrapper_ir a:focus {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "PalanquinDark", "open-sans", sans-serif !important;
}

/*-----00129775----*/

@media only screen and (min-width: 1957px) {
  .ir_links .home_presentation {
    float: none;
  }
}

.ir_links .home_presentation {
  float: left;
}

/*-----00129775----*/

/* 00222591 */
span.red-bold {
  color: red;
  font-weight: 700;
}
/* 00222591 */

/* 00329993 */
#menu_list h2.rd_menu_second {
  display: inline-block;
  width: 130%;
}
@media (min-width: 1024px) {
  #menu_list h2.rd_menu_second {
    display: none;
  }
}
