/* * * * * * * * * * *
 * Helper functions  *
 * * * * * * * * * * */
/* Taking a functional css approach here since the css is getting unmaintainable */
/* Useful for styling elements that require only one css rule for positioning */
/* Two dash delimiters (ie: 'no--padding' vs 'no-padding') indicates !important */
.checkbox-lg {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  margin: 5px !important;
}

.font-normal {
  font-weight: normal;
}

.font--normal {
  font-weight: normal !important;
}

.font-bold {
  font-weight: bold;
}

.text-left {
  text-align: left;
}

.text-value-positive {
  color: #1faa1f;
}

.text-value-negative {
  color: #f00;
}

.text-black {
  color: black;
}

.text-silver {
  color: silver;
}

.text-gray {
  color: gray;
}

.text--gray {
  color: gray !important;
}

.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.invisible {
  visibility: hidden;
}

.no-padding {
  padding: 0;
}

.no--padding {
  padding: 0 !important;
}

.no-margin {
  margin: 0;
}

.no--margin {
  margin: 0 !important;
}

.no-underline {
  text-decoration: none;
}

.no--underline {
  text-decoration: none !important;
}

.no-box-shadow {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.col-center {
  margin: 0 auto;
  float: none !important;
}

.no-resize {
  resize: none;
}

.no-decoration, .no-decoration:hover {
  text-decoration: none;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.vertical-sub {
  vertical-align: sub;
}

.vertical-middle {
  vertical-align: middle;
}

.vertical-bottom {
  vertical-align: bottom;
}

.vertical--bottom {
  vertical-align: bottom !important;
}

.vertical-resize {
  resize: vertical;
}

.horizontal-resize {
  resize: horizontal;
}

.display-table {
  display: table;
}

.display-block {
  display: block;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.display--flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-item-first::before {
  content: '';
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-item-last::after {
  content: '';
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-100-height {
  height: 100%;
}

.flex-grow {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-center-v {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-self-center {
  -ms-flex-item-align: center;
  align-self: center;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.stretch {
  width: 100%;
}

.stretch-half {
  width: 50%;
}

.stretch--half {
  width: 50% !important;
}

.stretch-vertical {
  height: 100%;
}

.bg-white {
  background-color: white !important;
}

.cursor-pointer {
  cursor: pointer;
}

.hover-cursor-pointer:hover {
  cursor: pointer;
}

.text--white {
  color: white !important;
}

.trefis-danger {
  color: #d9534f;
}

.trefis--danger {
  color: #d9534f !important;
}

.resize-vertical {
  resize: vertical;
}

.resize-horizontal {
  resize: horizontal;
}

.no-resize {
  resize: none;
}

.bootstrap-modal-border {
  border-bottom: 1px solid #e5e5e5;
}

/* Swatches */
.gray-darker {
  color: #222222;
}

.gray-dark {
  color: #333333;
}

.gray {
  color: #555555;
}

.gray-light {
  color: #777777;
}

.gray-lighter {
  color: #eeeeee;
}

/* Font size */
.font-size-sm {
  font-size: 10px;
}

/* Margins */
.margin--top-xxs {
  margin-top: 2px !important;
}

.margin-top-xxs {
  margin-top: 2px;
}

.margin-top-xs {
  margin-top: 5px;
}

.margin-top-sm {
  margin-top: 10px;
}

.margin-bottom-xxs {
  margin-bottom: 2px;
}

.margin-bottom-xs {
  margin-bottom: 5px;
}

.margin-bottom-sm {
  margin-bottom: 10px;
}

.margin-left-xxs {
  margin-left: 2px;
}

.margin-left-xs {
  margin-left: 5px;
}

.margin-left-sm {
  margin-left: 10px;
}

.margin-right-xxs {
  margin-right: 2px;
}

.margin-right-xs {
  margin-right: 5px;
}

.margin-right-sm {
  margin-right: 10px;
}

.margin-right-md {
  margin-right: 15px;
}

.margin-right-lg {
  margin-right: 20px;
}

.margin-right-xl {
  margin-right: 50px;
}

.margin-right-xxl {
  margin-right: 100px;
}

.neg-margin-right-xxs {
  margin-right: -2px;
}

.neg-margin-right-xs {
  margin-right: -5px;
}

.neg-margin-right-sm {
  margin-right: -10px;
}

.neg-margin-right-md {
  margin-right: -15px;
}

.neg-margin-right-lg {
  margin-right: -20px;
}

.neg-margin-right-xl {
  margin-right: -50px;
}

.neg-margin-right-xxl {
  margin-right: -100px;
}

/* Paddings */
.padding-left-xxs {
  padding-left: 2px;
}

.padding-left-xs {
  padding-left: 5px;
}

.padding-left-sm {
  padding-left: 10px;
}

.padding-left-md {
  padding-left: 15px;
}

.padding-left-lg {
  padding-left: 20px;
}

.padding-left-xl {
  padding-left: 40px;
}

.padding-right-xxs {
  padding-right: 2px;
}

.padding-right-xs {
  padding-right: 5px;
}

.padding-right-sm {
  padding-right: 10px;
}

.padding-right-md {
  padding-right: 15px;
}

.padding-right-lg {
  padding-right: 20px;
}

.padding-right-xl {
  padding-right: 40px;
}

.padding-right-xxl {
  padding-right: 100px;
}

.padding-top-xxs {
  padding-top: 2px;
}

.padding-top-xs {
  padding-top: 5px;
}

.padding-top-sm {
  padding-top: 10px;
}

.padding-top-md {
  padding-top: 15px;
}

.padding-top-lg {
  padding-top: 20px;
}

.padding-top-xl {
  padding-top: 40px;
}

.padding-top-xxl {
  padding-top: 100px;
}

.padding-bottom-xxs {
  padding-bottom: 2px;
}

.padding-bottom-xs {
  padding-bottom: 5px;
}

.padding-bottom-sm {
  padding-bottom: 10px;
}

.padding-bottom-md {
  padding-bottom: 15px;
}

.padding-bottom-lg {
  padding-bottom: 20px;
}

.padding-bottom-xl {
  padding-bottom: 40px;
}

.padding-bottom-xxl {
  padding-bottom: 100px;
}

.padding-xxs {
  padding: 2px;
}

.padding-xs {
  padding: 5px;
}

.padding-sm {
  padding: 10px;
}

.padding-md {
  padding: 15px;
}

.padding-lg {
  padding: 20px;
}

.padding-xl {
  padding: 40px;
}

/* Vertical centering hack */
.modal-center.modal {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .modal-center.modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
}

.modal-center .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

/* End vertical centering hack */
.fade-into {
  -webkit-transition: opacity .3s linear;
  -o-transition: opacity .3s linear;
  transition: opacity .3s linear;
  opacity: 0;
}

.fade-into.in {
  opacity: 1;
}

.border-flash {
  -webkit-animation: borderflash 3s;
  animation: borderflash 3s;
}

@-webkit-keyframes borderflash {
  0% {
    border: 1px solid transparent;
  }
  50% {
    border: 1px solid white;
  }
  100% {
    border: 1px solid transparent;
  }
}

@keyframes borderflash {
  0% {
    border: 1px solid transparent;
  }
  50% {
    border: 1px solid white;
  }
  100% {
    border: 1px solid transparent;
  }
}

.background-flash {
  -webkit-animation: backgroundflash 3s;
  animation: backgroundflash 3s;
}

@-webkit-keyframes backgroundflash {
  0% {
    background: transparent;
  }
  50% {
    background: #e69138;
  }
  100% {
    background: transparent;
  }
}

@keyframes backgroundflash {
  0% {
    background: transparent;
  }
  50% {
    background: #e69138;
  }
  100% {
    background: transparent;
  }
}

.slow-pulsate {
  -webkit-animation: slowpulsate 7s infinite;
  animation: slowpulsate 7s infinite;
}

.text-underline {
  text-decoration: underline;
}

@-webkit-keyframes slowpulsate {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  67% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slowpulsate {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  67% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.nowrap {
  white-space: nowrap;
}

/* font-awesome stack class for sm */
.fa-stack-sm {
  width: 1em;
  height: 1em;
  line-height: 1em;
}

.fa-1-5x {
  font-size: 1.5em;
}

.form-control.form-inline {
  display: inline;
  width: initial;
}

.hr-separator {
  margin-bottom: 20px;
}

.hr-separator hr + .hr-separator-text {
  display: block;
  width: 15%;
  font-size: 16px;
  background-color: white;
  margin: 0px auto;
  margin-top: -36px;
  color: #999;
}

.flex-hr-separator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-hr-separator > * {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-hr-separator > :nth-child(odd) {
  width: 40%;
}

.flex-hr-separator > :nth-child(even) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.flex-hr-separator .hr-separator-text {
  text-align: center;
  padding-top: 10px;
}

.my-account-container {
  font-size: 16px;
  padding-top: 60px;
}

.my-account-container label {
  font-weight: normal;
}

.my-account-container label:hover {
  cursor: pointer;
}

.my-account-container input[type="text"] {
  height: 44px;
}

.my-account-container input[type="checkbox"] {
  margin-right: 0.25em;
}

.my-account-container select[name="noteFrequency"] {
  width: 150px;
  margin-left: 0.25em;
  display: inline;
}

.my-account-container .note-frequency {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.my-account-container ul {
  list-style-type: none;
  text-align: left;
  padding: 0;
}

@media (max-width: 767px) {
  .responsive-debug .presentation-stage, .responsive-debug .page-content {
    border-top: 5px solid red;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .responsive-debug .presentation-stage, .responsive-debug .page-content {
    border-top: 5px solid orange;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .responsive-debug .presentation-stage, .responsive-debug .page-content {
    border-top: 5px solid yellow;
  }
}

@media (min-width: 1200px) {
  .responsive-debug .presentation-stage, .responsive-debug .page-content {
    border-top: 5px solid green;
  }
}

.signup-pages .main-nav {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.signup-pages .main-nav #signUpBtn {
  display: none;
}

.signup-pages .main-nav #signInBtn {
  border-radius: 20px;
  padding: 7px 15px;
  border: 1px solid #ccc;
}

.signup-container {
  width: 100vw;
  margin: 0 auto;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
}

.signup-container h1, .signup-container h2, .signup-container h3, .signup-container h4, .signup-container .h1, .signup-container .h2, .signup-container .h3, .signup-container .h4, .signup-container p, .signup-container ul {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (min-width: 992px) {
  .signup-container h1, .signup-container .h1 {
    font-size: 2.6em;
    line-height: 1.5em;
  }
}

.signup-container h3, .signup-container .h3 {
  font-weight: bold;
}

.signup-container .css-content-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

.signup-container .page-content {
  z-index: 2;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1200px) {
  .signup-container .page-content {
    width: 1200px;
    padding: 20px;
    margin-top: 46px;
  }
}

@media (max-width: 767px) {
  .signup-container .page-content {
    margin-top: 59px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .signup-container .page-content {
    margin-top: 43px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .signup-container .page-content {
    margin-top: 45px;
  }
}

.signup-container .page-content .page {
  width: 100%;
}

.signup-container .signup-content {
  padding: 20px;
  padding-top: 0;
}

.signup-container .checkout-page .form-group, .signup-container .survey-form-page .form-group {
  margin-top: 30px;
}

.signup-container .checkout-page .signup-form, .signup-container .survey-form-page .signup-form {
  padding: 20px;
}

.survey-form-page h1 {
  margin-top: 0;
}

.survey-form-page .signup-form {
  padding-top: 0;
}

.row .signup-sidepane {
  border-right: 1px solid #aaa;
  padding-right: 32px;
}

@media (max-width: 1199px) {
  .row .signup-sidepane {
    padding-left: 5%;
    border-right: none;
  }
}

.pricing-tables-page {
  width: 100%;
}

.pricing-tables-page .pricing-tab {
  text-align: center;
  opacity: .5;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.pricing-tables-page .pricing-tab a, .pricing-tables-page .pricing-tab a:visited, .pricing-tables-page .pricing-tab a:active, .pricing-tables-page .pricing-tab a:link {
  text-decoration: none;
  text-align: center;
}

.pricing-tables-page .pricing-tab a:hover {
  background-color: transparent;
}

.pricing-tables-page .pricing-tab.active {
  opacity: 1;
}

.pricing-table .flex-thead .flex-th {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.pricing-table .flex-thead .flex-th .btn {
  -ms-flex-item-align: center;
  align-self: center;
}

.pricing-table .flex-tbody .flex-tr {
  padding: 5px;
  border-top: 1px solid #ccc;
}

.pricing-table .flex-tbody .flex-tr.group-title {
  border-top: none;
  margin-top: 30px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}

.pricing-table .flex-tbody .flex-tr:first-child {
  border-top: none;
  background-color: transparent;
}

.pricing-table .flex-tbody .flex-td:first-child {
  font-weight: bold;
  text-align: left;
  border-top: none;
}

.pricing-table .flex-tbody .flex-td {
  text-align: center;
}

.pricing-table .offer-type-title h2 {
  margin-top: 0;
  text-align: left;
  font-size: 22px;
}

.pricing-table .offer-pricing-title .offer-price {
  font-size: 24px;
}

.pricing-table .offer-pricing-title .offer-byline {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

.pricing-table .flex-thead .flex-th:first-child,
.pricing-table .flex-tbody .flex-td:first-child {
  width: 130px;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  padding-left: 10px;
}

.pricing-table .flex-thead .flex-th:first-child {
  -ms-flex-item-align: center;
  align-self: center;
}

.pricing-table .flex-tbody .flex-td:first-child {
  font-size: 14px;
}

.checkout-page .signup-payment-total {
  border-top: 1px solid #ccc;
  padding: 20px 5px 5px;
  background-color: whitesmoke;
  font-size: 20px;
  margin-top: 20px;
}

.request-account-form, .checkout-page, .survey-form-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .request-account-form, .checkout-page, .survey-form-page {
    padding-top: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .request-account-form, .checkout-page, .survey-form-page {
    padding-top: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .request-account-form, .checkout-page, .survey-form-page {
    padding-top: 30px;
  }
}

@media (min-width: 992px) {
  .request-account-form .signup-sidepane, .checkout-page .signup-sidepane, .survey-form-page .signup-sidepane {
    padding-right: 16%;
  }
}

.personal-info-form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.choose-offer-form {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.primary-offers, .secondary-offers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  padding-top: 0;
  padding-bottom: 0;
}

.secondary-offers {
  padding: 0 20px 20px 20px;
}

.best-for {
  padding: 20px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #ccc;
  border-top: none;
}

.best-for + .best-for {
  margin-left: 20px;
}

.service-offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  border: 1px solid #ccc;
  border-bottom: none;
}

.service-offer h1 {
  text-align: center;
}

.service-offer .btn {
  margin: 0 auto;
}

.service-offer p {
  font-size: 16px;
}

.service-offer + .service-offer {
  margin-left: 20px;
}

.plan-offering {
  padding-left: 30px;
}

.plan-offering > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
}

.plan-offering > p:first-child {
  border-top: none;
}

.plan-offering > p span + span {
  padding-left: 5px;
}

.plan-offering > p span {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.proHeader {
	margin-top: 10px;
}

.proHeader h1 {
	font-size: 18px;
	line-height: 28px;
	margin: 0;
}

.proHeader h2 {
	font-size: 14px;
	margin: 0;
	font-weight: normal;
}

.proHeader .smallGreyButton {
	float: left;
	margin: 10px 0 0 10px;
}

.proHeader .proPhoto {
	float: left;
	margin-right: 10px;
}

.proTop {
	border-bottom: 3px solid #d3d3d3;
	padding-bottom: 10px;
}

.proTop h2 {
	color: #090;
	font-weight: bold;
	font-size: 14px;
	margin: 20px 0 4px;
}

.proBio {
	float: left;
	width: 300px;
}

.proBio p {
	margin: 0;
}

.proComment {
	float: right;
	width: 620px;
}

.proComment .cbCont {
	width: 100%;
}

.proComment .cbBox {
	height: 60px;
}

.proMissing {
	font-style: italic;
	text-align: center;
	color: #888;
}

.proBody .mtf_sidenav {
	padding-top: 20px;
}



/* ---------------- old profile styles that are still needed for account info page ----------------- */

.pro_h1 {
	font-size:40px;
	margin : 0 10px 0 0;
}

.pro_h2 {
	font-size:18px;
	margin: 0px 5px 0 0;
	color: #909090;
	position:relative;
	top:7px;
}

.pro_header {
	padding : 10px;
	width: 100%;
	border-bottom:1px solid #CCC;
	line-height : 40px;
}

.pro_badges {
	margin-top:5px;
	line-height:16px;
}

.pro_roundedBox {
	margin:10px 0;
    width:648px;
	float:left;
}
.pro_roundedBox_inner {
	padding:5px;
	display:block;
	position: relative;
}
.pro_roundedBox .orange_h4 {
	margin-bottom: 15px;
}
.pro_roundedBox p {
	margin-top : 3px;
}
.pro_roundedBox ul {
	padding-left: 15px;
	margin: 12px 0;
}

.pro_acctCCEdit {
	display: none;
	margin:10px;
	border:1px solid silver;
	padding:10px;
}

.subscriptionContainer {
	border-top: 1px solid silver;
	padding: 10px 4px;
}

.pro_acctTrial {
	background: #ffff9e;
	padding: 3px;
	margin-top: 4px;
	display: inline-block;
}

#pro_acctPriCont p {
	margin: 10px 0;
}

#pro_acctFbTwCont {
	text-align: center;
}

.pro_acctFbTwHeader {
	line-height: 30px;
	color: #393;
	font-size: 16px;
	margin-bottom: 10px;
}

#pro_acctFbUnlinked a, #pro_acctLiUnlinked a, #pro_acctTwUnlinked a {
	display: inline-block;
	margin-top:40px;
}

#pro_acctFbUnlinked .spinner, #pro_acctLiUnlinked .spinner {
	margin-left: 5px;
}
#pro_acctFbUnlinked .spinner, #pro_fbImport .spinner,#ppl_fbInvite .spinner,
#pro_acctLiUnlinked .spinner, #pro_liImport .spinner,#ppl_liInvite .spinner {
	position: relative;
	top: 2px;
}

.pro_acctLinkDiv {
	width:400px;
	height:150px;
	text-align:center;
	margin-top:10px;
	margin-left:auto;
	margin-right:auto;
}


#acctFbLinked input {
	margin-left:70px;
}

#acctTwLinked input {
	margin-left: 110px;
}

.pro_saveWrapper {
	margin: 15px 0 5px;
}

.pro_saveWrapper .gbutton {
	display: inline-block;
	margin-right: 20px;
}

.feedFilterLink{
	width:110px;
	display:inline-block;
}

.headerlink .feedFilterLink{
	width:170px;
}

.portfolioFiltersWrapper {
	position: relative;
}

.portfolioFiltersWrapper .editPortfolioButton{
	position:absolute;
	right:0;
	top: 3px;
	z-index: 2;
}

.pro_acctCCEdit{
	margin:10px;
	border:1px solid silver;
	padding:10px;
}
.auth-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 40px;
  padding-top: 80px;
}

.auth-container .auth-content {
  width: 460px;
  background-color: white;
  border: 1px solid #eee;
  padding: 25px 50px 40px;
}

.auth-container .auth-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 5px;
  background: #eee;
  font-size: small;
  height: 40px;
}

.auth-container .auth-message {
  border-left: 7px solid;
  text-align: left;
  padding: 5px 5px 5px 15px;
  background-color: whitesmoke;
}

.auth-container .gbutton.btn-primary {
  color: white !important;
}

.auth-form input, .auth-form button, .auth-form .btn, .auth-form select, .signup-form input, .signup-form button, .signup-form .btn, .signup-form select {
  height: 44px;
  font-size: 16px;
}

.auth-form input[type="checkbox"], .auth-form input[type="radio"], .signup-form input[type="checkbox"], .signup-form input[type="radio"] {
  height: auto;
}

.trefis-tooltip{
	vertical-align:middle;	
	display:inline-block;
	margin:0px;
	padding:0px;
	color: #0066cc;
	cursor: default;
}

#answerViews .trefis-tooltip {
    vertical-align: initial;
}

.trefis-tooltip-icon{
	margin:0px;
	padding:0px;
}


/* custom styling for jquery ui tooltip*/
.trefis-ui-tooltip{
	border:none;
	color:black;
	background: white;
	padding:5px;
	-webkit-box-shadow:0px 0px 15px 5px rgba(0, 0, 0, 0.34);
	box-shadow:0px 0px 15px 5px rgba(0, 0, 0, 0.34);
	
	text-align: left;
}

.ui-tooltip, .tooltip-arrow:after {
    background: white;
    border: 2px solid white;
  }

.ui-tooltip {
    width: auto;
    line-height: 1.5em;
}

.tooltip-arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
}

.tooltip-arrow.top {
    top: -16px;
    bottom: auto;
}

.tooltip-arrow.left {
    left: 20%;
}

.tooltip-arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    -webkit-box-shadow: 6px 5px 9px -9px black;
    box-shadow: 6px 5px 9px -9px black;
    border: 1px solid #dddddd;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.tooltip-arrow.top:after {
    bottom: -20px;
    top: auto;
}

/* Generated by Font Squirrel (http://www.fontsquirrel.com) on January 20, 2011 */

@font-face {
	font-family: Gotham;
	src: url("../images/Gothamv1-c2bf7b0cc8.eot");
	src: local("?"),
		url("../images/Gothamv1-242acdfde4.woff") format("woff"),
		url("../images/Gothamv1-660b9a3586.ttf") format("truetype"),
		url("../images/Gothamv1-ae4ab1e291.svg#webfontHlmRHCDI") format("svg");
}

@font-face {
	font-family: GothamBook;
	src: url("../images/GothamBookv1-b5fad59f95.eot");
	src: local("?"),
		url("../images/GothamBookv1-953daef66e.woff") format("woff"),
		url("../images/GothamBookv1-0d07d52073.ttf") format("truetype"),
		url("../images/GothamBookv1-9e46f25dfe.svg#webfont6GrDy4eA") format("svg");
}

@font-face {
	font-family: GothamCondensed;
	src: url("../images/GothamCondensedv1-68f2f67f39.eot");
	src: local("?"),
		url("../images/GothamCondensedv1-de56245438.woff") format("woff"),
		url("../images/GothamCondensedv1-40c29275bf.ttf") format("truetype"),
		url("../images/GothamCondensedv1-f99f3aaf90.svg#webfont4sez0GQa") format("svg");
}

@font-face {
    font-family: GothamBookCondensed;
    src: url("../images/GothamBookCondensedv1-a181acfcc3.eot");
    src: local("?"),
		url("../images/GothamBookCondensedv1-d439eb2f58.woff") format("woff"),
		url("../images/GothamBookCondensedv1-3a0759449f.ttf") format("truetype"),
		url("../images/GothamBookCondensedv1-4b1e1f37ca.svg#webfont5E07g8jW") format("svg");
}
#smallScreenNavMenu {
  z-index: 1056;
  background-color: white;
}

#smallScreenNavMenu .modal-header {
  border: none;
}

#smallScreenNavMenu .modal-header .close {
  font-size: 40px;
  font-weight: normal;
}

#smallScreenNavMenu .nav-links {
  font-size: 18px;
  text-transform: uppercase !important;
  letter-spacing: 1px;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  margin-bottom: 0;
}

#smallScreenNavMenu .nav-links a {
  display: inline-block;
}

#smallScreenNavMenu .nav-links .menu-item {
  padding: 20px 10px;
  border-top: 1px solid #ccc;
}

#smallScreenNavMenu .nav-links .menu-item:first-child {
  border-top: none;
}

#smallScreenNavMenu .nav-links .dropdown-menu {
  position: relative;
  top: 0;
  float: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  left: 0;
  right: auto;
  width: 100%;
}

#smallScreenNavMenu .sign-in-sign-up .menu-item {
  width: 50%;
  float: left;
  border: none;
}

#smallScreenNavMenu .sign-in-sign-up + .nav-links .menu-item:last-child, #smallScreenNavMenu .sign-in-sign-up + .nav-links .menu-item:nth-last-child(2) {
  display: none;
}

header.main {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-box-shadow: 0px 1px 6px #ccc;
  box-shadow: 0px 1px 6px #ccc;
  background-color: #666;
  z-index: 1052;
  /* needs to be higher than the dropodown/popover */
  position: sticky;
  top: 0;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

header.main .main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header.main .main-nav #signUpBtn {
  border-radius: 20px;
  background-color: #0370D2;
  padding: 7px 15px;
  color: white;
}

header.main .main-nav a:hover {
  background-color: transparent;
  color: white;
  text-decoration: none;
}

header.main .main-nav a:link, header.main .main-nav a:visited, header.main .main-nav a:active, header.main .main-nav .btn-link {
  color: rgba(255, 255, 255, 0.9);
}

header.main .main-nav .main-nav-brand {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header.main .main-nav .main-nav-menu {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header.main .main-nav .main-nav-brand, header.main .main-nav .main-nav-menu {
  padding: 0px 10px;
}

header.main .main-nav .nav-links {
  font-size: 13px;
  text-transform: uppercase !important;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0;
}

header.main .main-nav .nav-links a {
  display: block;
}

header.main .main-nav .nav-links a:hover {
  background-color: transparent;
}

header.main .main-nav .nav-links li.menu-item > a {
  padding: 15px 10px;
}

header.main .main-nav .theme-logo {
  width: auto;
}

header.main .main-nav .theme-logo .default-logo {
  height: 28px;
}

header.main .main-nav .dropdown-menu {
  background-color: #666;
  border: none;
}

header.main .main-nav .open-small-screen-nav {
  font-size: 18px;
}

@media (min-width: 768px) and (max-width: 991px) {
  header.main .main-nav .main-nav-brand, header.main .main-nav .main-nav-menu {
    padding: 10px 10px;
  }
}

@media (max-width: 767px) {
  header.main .main-nav {
    padding: 10px 0 10px 10px;
  }
  header.main .main-nav .main-nav-brand {
    padding: 0;
  }
  header.main .main-nav .main-nav-menu {
    padding: 0;
  }
  header.main .main-nav .theme-logo {
    width: auto;
  }
  header.main .main-nav .theme-logo .default-logo {
    height: 20px;
  }
}

header.main .sub-nav {
  background-color: #ededed;
  position: relative;
  border-bottom: 1px solid #ccc;
  width: 100%;
  overflow: auto;
}

@media (max-width: 767px) {
  header.main .sub-nav {
    border-right-color: red;
    border-right-style: solid;
    border-right-width: 15px;
    -o-border-image: -o-linear-gradient(right, #ccc, whitesmoke) 0 100%;
    border-image: -webkit-gradient(linear, right top, left top, from(#ccc), to(whitesmoke)) 0 100%;
    border-image: linear-gradient(to left, #ccc, whitesmoke) 0 100%;
  }
}

header.main .sub-nav ul {
  margin-bottom: 0;
}

header.main .sub-nav .list-inline > li {
  padding-left: 10px;
  padding-right: 10px;
}

header.main .sub-nav a, header.main .sub-nav a:link, header.main .sub-nav a:active {
  color: #333;
}

header.main .sub-nav a:hover {
  background-color: transparent;
}

header.main .sub-nav .navigation-list-block > a {
  padding: 10px 10px;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: -.03em;
}

@media (max-width: 767px) {
  header.main .sub-nav .navigation-list-block > a {
    font-size: 14px;
    letter-spacing: normal;
  }
}

header.main .sub-nav .navigation-list-block > a:hover {
  background-color: whitesmoke;
  text-decoration: none;
}

header.main .sub-nav .navigation-list-block-title {
  white-space: nowrap;
}

header.main .sub-nav .subnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  header.main .sub-nav .subnav-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

header.main .ticker-search-cancel-button {
  font-size: 1.1em;
  color: #ffffff;
  border: none;
  background: no-repeat;
  font-weight: 700;
  padding: 0px;
  margin-top: 8px;
}

header.main .header-ticker-search-box .small-screen-search-box-container {
  width: 100vw;
  position: absolute;
  left: 0px;
  top: 0px;
}

header.main .header-ticker-search-box .small-screen-search-box-container .search-box-content {
  padding: 8px 12px 8px 12px;
  background: #666;
}

header.main .ticker-search-input-large .search-form div .fa-search {
  color: #ffffff;
}

header.main .ticker-search-input-large .search-form div input[type="text"] {
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

header.main .ticker-search-input-large .search-form div .search-field-addon button {
  color: #ffffff;
}

header.main .ticker-search-input-large .search-form div:focus-within .fa-search {
  color: #666;
}

header.main .ticker-search-input-large .search-form div:focus-within input[type="text"] {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #2684ff;
  background: #ffffff;
  color: #666;
}

header.main .ticker-search-input-large .search-form div:focus-within .search-field-addon button {
  color: #666;
}

header.main .ticker-search-dropdown {
  display: inline-block;
  position: absolute;
}

header.main .ticker-search-input-small input[type="text"] {
  font-size: 16px;
}

#footer-outer {
  background-color: #000;
  text-align: left;
}

#footer-outer h4 {
  margin-bottom: 12px;
  text-transform: uppercase !important;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  color: #c9c9c9 !important;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 40px;
}

#footer-outer ul {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
}

#footer-outer ul li a, #footer-outer ul li a:active, #footer-outer ul li a:link, #footer-outer ul li a:visited, #footer-outer ul li a:hover {
  color: #c1c1c1;
  background-color: transparent;
  font-size: 18px;
}

#footer-outer p {
  font-size: 12px;
  line-height: 22px;
  color: #c1c1c1;
}

@media (min-width: 767px) and (max-width: 991px) {
  #footer-outer {
    padding: 5px;
  }
}

.flex-table {
  overflow: auto;
  width: 100%;
}

.flex-table .flex-th, .flex-table .flex-td {
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 200px;
}

.flex-table .flex-tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.stick-first-column .flex-table .flex-tr {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-table .flex-thead {
  font-weight: bold;
}

.flex-table .flex-thead .flex-th {
  background-color: white;
}

.flex-table .flex-tbody, .flex-table .flex-thead, .flex-table .flex-table-header {
  width: 100%;
  position: relative;
}

.flex-table .flex-table-header .table-header .flex-th, .flex-table .flex-table-header .table-header .flex-td {
  width: 100%;
}

.stick-first-column .flex-table .flex-tbody .flex-td:first-child,
.stick-first-column .flex-table .flex-thead .flex-td:first-child {
  position: sticky;
  z-index: 2;
  left: 0;
}

.stick-first-column .flex-table .flex-thead .flex-td:first-child {
  background-color: white;
}

.flex-table .flex-thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.table-striped .flex-tbody .flex-tr:nth-child(odd) .flex-td {
  background-color: whitesmoke;
}

.table-striped .flex-tbody .flex-tr .flex-td {
  background-color: white;
}

.dark-theme .table-striped .flex-tbody .flex-tr:nth-child(odd) .flex-td {
  background-color: #454545;
}

.dark-theme .table-striped .flex-tbody .flex-tr .flex-td {
  background-color: #333333;
}

.pie-timer-wrapper {
  position: relative;
  margin: 0 auto;
  background: white;
  display: inline-block;
}

.pie-timer-wrapper, .pie-timer-wrapper * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pie-timer-wrapper {
  width: 20px;
  height: 20px;
}

.pie-timer-wrapper .pie {
  width: 50%;
  height: 100%;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  position: absolute;
  background: #e8e8e8;
  border: 1px solid #ccc;
}

.pie-timer-wrapper .pie-spinner {
  border-radius: 100% 0 0 100% / 50% 0 0 50%;
  z-index: 200;
  border-right: none;
  -webkit-animation: rota 60s linear infinite;
  animation: rota 60s linear infinite;
}

.pie-timer-wrapper .pie-filler {
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  left: 50%;
  opacity: 0;
  z-index: 100;
  animation: opa 60s steps(1, end) infinite reverse;
  border-left: none;
}

.pie-timer-wrapper .pie-mask {
  width: 50%;
  height: 100%;
  position: absolute;
  background: inherit;
  opacity: 1;
  z-index: 300;
  -webkit-animation: opa 60s steps(1, end) infinite;
  animation: opa 60s steps(1, end) infinite;
}

@-webkit-keyframes rota {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rota {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes opa {
  0% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

@keyframes opa {
  0% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes zoomInDown {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
}

@keyframes zoomInDown {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
}

@-webkit-keyframes zoomInLeft {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  }
}

@keyframes zoomInLeft {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
  }
}

@-webkit-keyframes zoomInRight {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  }
}

@keyframes zoomInRight {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
  }
}

@-webkit-keyframes zoomInUp {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
}

@keyframes zoomInUp {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
  }
  60% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes zoomOutDown {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes zoomOutDown {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
  }
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

@-webkit-keyframes zoomOutUp {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes zoomOutUp {
  40% {
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  }
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.data-viewer {
  position: relative;
  margin: 0 auto;
  /* Custom dropdown */
  /*
  <span class="custom-dropdown"><select></span>
   */
}

.data-viewer .flex-table .flex-td, .data-viewer .flex-table .flex-th {
  padding: 8px;
}

.data-viewer.table-striped .flex-tbody > .flex-tr > .flex-td {
  border-top: 1px solid #ddd;
}

.data-viewer.compact .flex-table .flex-td, .data-viewer.compact .flex-table .flex-th {
  padding: 5px;
}

.data-viewer .flex-thead > .flex-tr {
  border-bottom: 2px solid #ddd;
}

.data-viewer .flex-thead > .flex-tr:hover {
  border-bottom-color: #c7c7c7;
}

.data-viewer .flex-thead .flex-td,
.data-viewer .flex-thead .flex-th {
  background-color: white;
}

.data-viewer .flex-thead .flex-td.is-sortable:hover,
.data-viewer .flex-thead .flex-th.is-sortable:hover {
  cursor: pointer;
  color: #0370D2;
  background-color: rgba(0, 0, 0, 0.025);
}

.data-viewer .flex-table-header {
  font-weight: bold;
  text-align: center;
}

.data-viewer .flex-table-header .table-header {
  padding: 0px 2px;
  border-bottom: 4px solid #ddd;
}

.data-viewer .flex-table-header .table-header .flex-td,
.data-viewer .flex-table-header .table-header .flex-th {
  background-color: white;
}

.data-viewer .flex-table-header .table-header:hover {
  color: #0370D2;
  border-bottom-color: #a6a6a6;
}

.data-viewer .data-viewer-footer {
  border-top: 2px solid #ddd;
  padding-top: 10px;
}

.data-viewer .flex-tabs {
  display: inline-block;
  padding: 0 15px;
  border-left: 1px solid #ccc;
  color: rgba(0, 0, 0, 0.4);
  font-weight: normal;
}

.data-viewer .flex-tabs:first-child {
  border-left: none;
}

.data-viewer .flex-tabs.active {
  color: black;
}

.data-viewer .custom-dropdown {
  display: inline-block;
  vertical-align: middle;
}

.data-viewer .data-viewer-date.small {
  font-size: 12px;
}

.data-viewer .small.hint {
  font-size: 85%;
  opacity: .5;
}

.data-viewer-header {
  position: relative;
}

.data-viewer-title-text {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: bold;
}

.data-viewer-tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 0;
}

.data-viewer-search {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33%;
  flex: 0 0 33%;
  margin-right: 10px;
}

@media (max-width: 991px) {
  .data-viewer-search {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 10px;
  }
  .data-viewer-search + * {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

.data-viewer-search form {
  margin-bottom: 0;
}

.data-viewer-search input::-ms-clear {
  display: none;
}

.data-viewer-filter {
  margin-right: '10px';
}

.data-viewer-pagination {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.data-viewer-footer .data-viewer-pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
}

.data-viewer-pagination .page-summary {
  font-size: 80%;
  color: #333;
  padding-right: 8px;
  padding-left: 8px;
}

.data-viewer-pagination .page-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.data-viewer-pagination .page-links > li {
  display: inline;
}

.data-viewer-pagination .page-links > li > a {
  color: #999;
  padding: 2px 8px;
}

.data-viewer-pagination .page-links > li.active > a {
  background-color: #0a8de7;
  color: white;
}

.data-viewer-pagination .data-viewer-thead-icon {
  padding-left: 10px;
}

.status-indicator .status-indicator-text {
  display: inline-block;
  padding-left: 5px;
  text-transform: lowercase;
}

.data-viewer-body .data-viewer-thead-icon {
  padding-left: 5px;
}

.data-viewer-loader {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 45%;
}

.data-viewer-loader .loading-animation-balls > div {
  width: 10px;
  height: 10px;
}

.data-viewer-loader .loading-animator-enter {
  opacity: 0;
}

.data-viewer-loader .loading-animator-enter-active {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

.data-viewer-loader .loading-animator-exit {
  opacity: 1;
}

.data-viewer-loader .loading-animator-exit-active {
  opacity: 0;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

.search-field {
  position: relative;
}

.search-field .fa-search {
  color: rgba(0, 0, 0, 0.3);
}

.search-field .search-field-search-icon {
  background-color: transparent;
  border: none;
  position: absolute;
  left: 0;
  z-index: 5;
  height: 34px;
  width: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-field .search-field-search-icon + input {
  padding-left: 34px;
}

.search-field .search-field-search-icon.search-field-advanced {
  left: 1px;
  height: 32px;
  width: 50px;
  top: 1px;
  background-color: #0a6aa1;
  color: white;
}

.search-field .search-field-search-icon.search-field-advanced .fa-search {
  color: white;
}

.search-field .search-field-search-icon.search-field-advanced + input {
  padding-left: 60px;
}

.search-field .search-field-addon {
  background-color: transparent;
  border: none;
  width: 30px;
  text-align: center;
  z-index: 5;
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 34px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.search-field input {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 35px;
}

.ticker-search .form-group {
  margin-bottom: 0;
  padding-bottom: 0;
}

.ticker-search input::-ms-clear {
  display: none;
}

.ticker-search input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #2684ff;
}

.ticker-search-autocomplete-results.popover {
  border-radius: 0 !important;
}

@media (min-width: 992px) {
  .ticker-search-autocomplete-results.popover {
    min-width: 250px;
    max-width: 250px;
    width: 250px;
  }
}

@media (max-width: 991px) {
  .ticker-search-autocomplete-results.popover {
    min-width: 95%;
    max-width: 95%;
    width: 95%;
  }
}

.ticker-search-autocomplete-results .auto-suggest-item {
  padding-left: 5px;
  border-left: 1px solid transparent;
  font-size: 14px;
  margin-bottom: 10px;
}

.ticker-search-autocomplete-results .auto-suggest-item.active {
  border-color: #2684ff;
}

.ticker-search-small-autocomplete-results.popover {
  min-width: 95%;
  max-width: 95%;
  width: 95%;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.ticker-search-small-autocomplete-results .auto-suggest-item {
  padding-left: 5px;
  border-left: 1px solid transparent;
  font-size: 14px;
  margin-bottom: 10px;
}

.ticker-search-small-autocomplete-results .auto-suggest-item.active {
  border-color: #2684ff;
}

.dark-theme .data-viewer .flex-tabs {
  color: rgba(224, 224, 224, 0.8);
}

.dark-theme .data-viewer .flex-tabs.active {
  color: #eeeeee;
}

.dark-theme .data-viewer .flex-thead .flex-td,
.dark-theme .data-viewer .flex-thead .flex-th {
  background-color: #333333;
}

.dark-theme .data-viewer .flex-thead .flex-td.is-sortable:hover,
.dark-theme .data-viewer .flex-thead .flex-th.is-sortable:hover {
  background-color: rgba(255, 255, 255, 0.025);
}

.dark-theme .data-viewer .small.hint {
  opacity: 0.7;
}

.dark-theme .data-viewer .form-control {
  background-color: #333333;
  color: #dddddd;
}

.dark-theme .search-field .fa-search {
  color: rgba(240, 240, 240, 0.5);
}

.data-works-page .page-content {
  padding-left: 10px;
  padding-right: 10px;
}

.data-works-page .page-content-createNewJobPage {
  padding-top: 20px !important;
}

.data-works-page .page-nav-link a:not(.btn-primary) {
  color: #333;
  display: block;
  border: 1px solid #9c9c9c;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 5px #9a9a9a;
  box-shadow: 0px 0px 5px #9a9a9a;
  padding: 2px 2px;
}

.data-works-page .page-nav-link a:hover {
  background-color: transparent;
}

.data-works-page .page-nav-link a.btn-primary:hover, .data-works-page .page-nav-link button.btn-primary:hover {
  background-color: #036fcf;
}

.data-works-page .page-nav-link .link-label {
  padding-left: 30px;
}

@media (min-width: 992px) {
  .data-works-page .page-nav-link {
    margin-bottom: 2px;
  }
}

.data-works-page .tf-select {
  position: relative;
}

.data-works-page .tf-select select {
  padding: 6px 24px 6px 12px;
}

.data-works-page .tf-select:after {
  font-family: FontAwesome;
  content: '\f107';
  font-size: 14px;
  position: absolute;
  top: 10px;
  right: 6px;
  color: #434B67;
  pointer-events: none;
}

.data-works-page .tf-select select {
  /* Here's the code we need */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.data-works-page .tf-select select::-ms-expand {
  display: none;
}

.data-works-page .dataworks-page-nav .page-nav-list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.data-works-page .dataworks-page-nav .page-nav-list .page-nav-link {
  -webkit-box-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  padding: 5px 2px;
}

.data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a {
  color: #fff;
  background-color: #0370D2;
  border-color: transparent;
  color: #fff;
}

.data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a:focus, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.focus {
  color: #fff;
  background-color: #0255a0;
  border-color: rgba(0, 0, 0, 0);
}

.data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a:hover {
  color: #fff;
  background-color: #0255a0;
  border-color: rgba(0, 0, 0, 0);
}

.data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a:active, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.active,
.open > .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.dropdown-toggle {
  color: #fff;
  background-color: #0255a0;
  background-image: none;
  border-color: rgba(0, 0, 0, 0);
}

.data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a:active:hover, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a:active:focus, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a:active.focus, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.active:hover, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.active:focus, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.active.focus,
.open > .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.dropdown-toggle:hover,
.open > .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.dropdown-toggle:focus,
.open > .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.dropdown-toggle.focus {
  color: #fff;
  background-color: #02427d;
  border-color: rgba(0, 0, 0, 0);
}

.data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.disabled:hover, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.disabled:focus, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.disabled.focus, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a[disabled]:hover, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a[disabled]:focus, .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a[disabled].focus,
fieldset[disabled] .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a:hover,
fieldset[disabled] .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a:focus,
fieldset[disabled] .data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a.focus {
  background-color: #0370D2;
  border-color: transparent;
}

.data-works-page .dataworks-page-nav .page-nav-list .page-nav-link:first-child a .badge {
  color: #0370D2;
  background-color: #fff;
}

.action-icon-disabled {
  opacity: .3;
}

.job-detail-row-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.job-detail-row-actions .action-icon {
  font-size: 19px;
  padding: 1px 7px;
}

.data-nav .page-nav-link {
  margin-bottom: 0px;
}

.data-nav .page-nav-link .link-label {
  color: #0373d3;
  padding-left: 0px;
}

.data-nav .page-nav-link .disabled {
  color: #b2a3a0;
  cursor: not-allowed;
}

.data-nav .page-nav-link .btn-primary {
  margin-bottom: 10px;
}

.task-options .task-heading {
  padding: 10px 0px 5px 0px;
}

.data-works-page.dark-theme .page-nav.collapsed {
  background-color: #282828;
}

.data-works-page.dark-theme .page-nav.collapsed .page-nav-link a {
  color: #e0e0e0;
  border: 1px solid #a0a0a0;
  -webkit-box-shadow: 0px 0px 5px #7f7f7f;
  box-shadow: 0px 0px 5px #7f7f7f;
}

.data-works-page.dark-theme .page-content {
  background-color: #333333;
  color: #e0e0e0;
}

.dataworks-topic-page .breadcrumb {
  background-color: transparent;
  padding: 0;
  font-size: 12px;
}

@media (max-width: 991px) {
  .company-topic-page .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 2px !important;
  }
  .company-topic-page .flex-tr {
    margin-bottom: 10px;
  }
}

.company-topic-page .text-blurb .rich-text.ql-editor {
  padding: 2px 0px;
}

.templates-list .flex-td, .templates-list .flex-th {
  width: 20%;
}

.topic-tag-list {
  font-size: 12px;
}

.jobs-list .job-id {
  width: 4%;
}

.jobs-list .name {
  width: 10%;
}

.jobs-list .description {
  width: 10%;
}

.jobs-list .is-scheduled {
  width: 6%;
}

.jobs-list .date-created {
  width: 10%;
}

.jobs-list .created-by {
  width: 10%;
}

.jobs-list .datasource {
  width: 10%;
}

.jobs-list .template-name {
  width: 11%;
}

.jobs-list .createUnlink {
  width: 7%;
}

.jobs-list .canonical {
  width: 6%;
  text-align: center !important;
}

.jobs-list .refresh {
  width: 5%;
  text-align: center !important;
}

.jobs-list .xbrl2 {
  width: 3%;
  text-align: center !important;
}

.jobs-list .skip-indexing {
  width: 5%;
  text-align: center !important;
}

.jobs-list .size {
  width: 6%;
}

.job-detail-table .ticker {
  width: 6%;
}

.job-detail-table .status {
  width: 12%;
}

.job-detail-table .date-finished {
  width: 8%;
}

.job-detail-table .excel-status {
  width: 8%;
}

.job-detail-table .excel-status .xls-file-download-link {
  padding-bottom: 8px;
}

.job-detail-table .processing-duration {
  width: 12%;
}

.job-detail-table .validation-details {
  width: 29%;
}

.job-detail-table .topic-page-status {
  width: 11%;
}

.job-detail-table .google-index-status {
  width: 14%;
}

#pageProvider .validation-details-modal {
  text-align: left;
}

#pageProvider .validation-details-modal .modal-dialog {
  width: 45vw;
}

.flex-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-form .flex-form-title {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.flex-form .flex-form-body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.global-fn-modify-page .flex-panel-body {
  overflow: hidden;
  padding: 0;
}

.global-fn-modify-page .global-function-item {
  width: 100%;
  position: relative;
  padding: 0 !important;
}

.global-fn-modify-page .global-function-item > div:first-child {
  padding: 10px;
}

.global-fn-modify-page .global-function-item .gf-name {
  font-weight: bolder;
}

.global-fn-modify-page .global-function-item .gf-body {
  padding-top: 10px;
  padding-bottom: 10px;
}

.global-fn-modify-page .global-function-item .code-format {
  font-family: monospace;
  font-size: 90%;
}

.global-fn-modify-page .global-function-item .active {
  outline: 1px solid #bde0ff;
  background-color: aliceblue;
}

.global-fn-modify-page .global-function-item .gf-delete {
  visibility: hidden;
  float: right;
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 10px;
  font-size: 28px;
}

.global-fn-modify-page .global-function-item:hover .gf-delete {
  visibility: visible;
}

.global-fn-modify-page .data-viewer-search {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.global-fn-modify-page .add-global-function-form {
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.global-fn-modify-page .add-global-function-form .flex-form-title hr {
  margin-top: 5px;
  margin-bottom: 5px;
}

.global-fn-modify-page .add-global-function-form .flex-form-body .checkbox {
  margin-top: 0px;
}

.global-fn-modify-page .add-global-function-form .details-tab-btn-group .details-tab-btn {
  width: auto;
  float: left;
  padding: 2px 5px;
  border: 4px solid #0370D2;
  border-bottom: 0px;
  margin-right: 4px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  cursor: pointer;
}

.global-fn-modify-page .add-global-function-form .details-tab-btn-group .details-tab-btn.active {
  background-color: #0370D2;
  color: #ffffff;
  cursor: default;
}

.global-fn-modify-page .add-global-function-form .global-function-tag-button {
  width: auto;
  background-color: #1b93ff;
  float: left;
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 5px;
  margin: 0px 2px;
}

.global-fn-modify-page .add-global-function-form .global-function-tag-modal .form-group.checkbox {
  margin-top: 5px;
  margin-bottom: 5px;
}

.global-fn-modify-page .add-global-function-form .global-function-waiting-modal .modal-content {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  background-color: transparent;
  margin-top: 100px;
}

.global-fn-modify-page .global-function-filter-modal .modal-dialog {
  width: 80%;
}

.global-fn-modify-page .global-function-filter-modal .form-group {
  margin-bottom: 5px;
}

.dark-theme .global-fn-modify-page .form-control {
  background-color: #333333;
  color: #dddddd;
}

.dark-theme .global-fn-modify-page .global-function-item .active {
  background-color: #464650;
}

.dark-theme .global-fn-modify-page .global-function-filter-modal .modal-content {
  background-color: #333333;
}

.dark-theme .global-fn-modify-page .add-global-function-form input.cache-hour {
  background-color: #333333;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.global-function-tag-list .name {
  width: 30%;
}

.global-function-tag-list .description {
  width: 30%;
}

.global-function-tag-list .order {
  width: 5%;
}

.global-function-tag-list .updated-at {
  width: 20%;
  text-align: center;
}

.global-function-tag-list .action {
  width: 15%;
  text-align: center;
}

.scheduled-jobs-list .nextRun {
  width: 10%;
}

.scheduled-jobs-list .frequency {
  width: 6%;
}

.scheduled-jobs-list .data-source {
  width: 6%;
}

.scheduled-jobs-list .jobType {
  width: 6%;
}

.scheduled-jobs-list .priority {
  width: 5%;
}

.scheduled-jobs-list .dateStarted {
  width: 15%;
}

.scheduled-jobs-list .row-actions {
  float: right;
}

.scheduled-jobs-list .create-dataworks-flash-message {
  font-size: 14px;
  margin-left: 10px;
  display: inline-block;
}

.my-dashboards-page .my-dashboards-create {
  border-radius: 40px;
  padding: 10px;
}

.my-dashboards-page .page-content-header {
  padding-top: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.my-dashboards-page .page-content-filters {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.my-dashboards-page .page-content-filters a {
  color: #999;
}

.my-dashboards-page .page-content-filters > li {
  padding-left: 5px;
  margin-right: 15px;
}

.my-dashboards-page .page-content-filters .selected {
  border-bottom: 2px solid #2684ff;
}

.my-dashboards-page .page-content-filters .selected a {
  color: #111;
}

@media (max-width: 991px) {
  .my-dashboards-page .page-content-filters {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .my-dashboards-page .page-content-filters > li {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 5px;
    font-size: 14px;
  }
}

.my-dashboards-page .dashboard-name {
  width: 58%;
}

@media (max-width: 991px) {
  .my-dashboards-page .dashboard-name {
    width: 75%;
  }
}

.my-dashboards-page .dashboard-name .dashboard-name-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.my-dashboards-page .dashboard-fet-tag {
  color: #0370D2;
  padding-right: 5px;
}

.my-dashboards-page .dashboard-provider, .my-dashboards-page .dashboard-last-updated {
  width: 10%;
}

.my-dashboards-page .dashboard-owner {
  width: 18%;
}

.my-dashboards-page .dashboard-actions-menu {
  width: 4%;
}

.my-dashboards-page .dashboard-provider, .my-dashboards-page .dashboard-last-updated, .my-dashboards-page .dashboard-owner, .my-dashboards-page .dashboard-actions-menu {
  text-align: center;
}

@media (max-width: 991px) {
  .my-dashboards-page {
    margin-top: 51px;
  }
}

@media (max-width: 991px) {
  .my-dashboards-page .flex-thead {
    display: none;
  }
}

.my-dashboards-page .data-viewer .flex-thead .flex-td:hover {
  cursor: auto;
  color: initial;
  background-color: initial;
}

.flex-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-form .flex-form-title {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.flex-form .flex-form-body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ticker-list-modify-page .data-list-item {
  width: 100%;
  position: relative;
  padding: 0 !important;
}

.ticker-list-modify-page .data-list-item > div:first-child {
  padding: 10px;
}

.ticker-list-modify-page .data-list-item .data-list-item-name {
  font-weight: bolder;
}

.ticker-list-modify-page .data-list-item .data-list-item-description {
  font-size: 85%;
  color: rgba(0, 0, 0, 0.8);
}

.ticker-list-modify-page .data-list-item .data-list-item-body {
  padding-top: 10px;
  padding-bottom: 10px;
}

.ticker-list-modify-page .data-list-item .code-format {
  font-family: monospace;
  font-size: 90%;
}

.ticker-list-modify-page .data-list-item .active {
  outline: 1px solid #bde0ff;
  background-color: aliceblue;
}

.ticker-list-modify-page .data-list-item .data-list-item-delete {
  visibility: hidden;
  float: right;
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 10px;
  font-size: 28px;
}

.ticker-list-modify-page .data-list-item:hover .data-list-item-delete {
  visibility: visible;
}

.ticker-list-modify-page .data-viewer-search {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.ticker-list-modify-page .add-ticker-list-form {
  padding-left: 30px;
}

.tickerList-page-dataviewer {
  font-size: 12px;
}

.tickerList-page-dataviewer .ticker {
  width: 4%;
}

.tickerList-page-dataviewer .sourceName {
  width: 13%;
}

.tickerList-page-dataviewer .name {
  width: 13%;
}

.tickerList-page-dataviewer .shortName {
  width: 8%;
}

.tickerList-page-dataviewer .cik {
  width: 7%;
}

.tickerList-page-dataviewer .cusip {
  width: 7%;
}

.tickerList-page-dataviewer .figi {
  width: 9%;
}

.tickerList-page-dataviewer .createdOn {
  width: 7%;
}

.tickerList-page-dataviewer .updatedAt {
  width: 7%;
}

.tickerList-page-dataviewer .updatedBy {
  width: 6%;
}

.tickerList-page-dataviewer .exchange {
  width: 8%;
}

.tickerList-page-dataviewer .isRealCompany {
  width: 3%;
}

.tickerList-page-dataviewer .delisted {
  width: 5%;
}

.tickerList-page-dataviewer .undefined {
  width: 4%;
}

@media (max-width: 991px) {
  .tickerList-page-dataviewer .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 2px !important;
  }
  .tickerList-page-dataviewer .flex-tr {
    margin-bottom: 10px;
  }
}

.industries-list-page-dataviewer .industry {
  width: 50%;
}

.industries-list-page-dataviewer .sector {
  width: 50%;
}

.industry-page-dataviewer .ticker {
  width: 8%;
}

.industry-page-dataviewer .name {
  width: 28%;
}

.industry-page-dataviewer .trefisPriceGF {
  width: 7%;
}

.industry-page-dataviewer .trefisPriceUpsideGF {
  width: 7%;
}

.industry-page-dataviewer .upsideGFUpdatedAt {
  width: 10%;
}

.industry-page-dataviewer .marketPrice {
  width: 10%;
}

.industry-page-dataviewer .sector {
  width: 15%;
}

.industry-page-dataviewer .industry {
  width: 15%;
}

@media (max-width: 991px) {
  .industry-page-dataviewer .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 2px !important;
  }
  .industry-page-dataviewer .flex-tr {
    margin-bottom: 10px;
  }
}

.all-auto-dash-table .ticker {
  width: 8%;
}

.all-auto-dash-table .dateFinished {
  width: 10%;
}

.all-auto-dash-table .dashboardTitle {
  width: 20%;
}

.all-auto-dash-table .job {
  width: 12%;
}

.all-auto-dash-table .templateName {
  width: 15%;
}

.all-auto-dash-table .isIncludeInFeatured {
  width: 5%;
  text-align: center;
}

.all-auto-dash-table .isIncludeInLatest {
  width: 5%;
  text-align: center;
}

.all-auto-dash-table .settings {
  width: 10%;
}

.all-auto-dash-table .isScheduled {
  width: 15%;
}

.daily-statistics {
  font-size: .8em;
  padding-left: 10px;
}

.trefis-analysis-stats-table .current-date {
  width: 10%;
}

.trefis-analysis-stats-table .day-of-week {
  width: 10%;
}

.trefis-analysis-stats-table .visible-dashboards-produced {
  width: 16%;
  text-align: center;
}

.trefis-analysis-stats-table .scheduled-dashboards-produced {
  width: 16%;
  text-align: center;
}

.trefis-analysis-stats-table .scheduled-added-to-featured {
  width: 16%;
  text-align: center;
}

.trefis-analysis-stats-table .scheduled-added-to-latest {
  width: 16%;
  text-align: center;
}

.trefis-analysis-stats-table .scheduled-job-ran {
  width: 16%;
  text-align: center;
}

.trefis-active-templates-stats .template-name {
  width: 20%;
}

.trefis-active-templates-stats .template-id {
  width: 6%;
}

.trefis-active-templates-stats .template-author {
  width: 15%;
  text-align: center;
}

.trefis-active-templates-stats .sch-frequency {
  width: 10%;
  text-align: center;
}

.trefis-active-templates-stats .d30-gen {
  width: 8%;
  text-align: center;
}

.trefis-active-templates-stats .d30-vis {
  width: 8%;
  text-align: center;
}

.trefis-active-templates-stats .d7-gen {
  width: 8%;
  text-align: center;
}

.trefis-active-templates-stats .d7-vis {
  width: 8%;
  text-align: center;
}

.trefis-active-templates-stats .d1-gen {
  width: 8%;
  text-align: center;
}

.trefis-active-templates-stats .d1-vis {
  width: 8%;
  text-align: center;
}

.sector-page-dataviewer .ticker {
  width: 8%;
}

.sector-page-dataviewer .name {
  width: 28%;
}

.sector-page-dataviewer .trefisPriceGF {
  width: 7%;
}

.sector-page-dataviewer .trefisPriceUpsideGF {
  width: 7%;
}

.sector-page-dataviewer .upsideGFUpdatedAt {
  width: 10%;
}

.sector-page-dataviewer .marketPrice {
  width: 10%;
}

.sector-page-dataviewer .sector {
  width: 15%;
}

.sector-page-dataviewer .industry {
  width: 15%;
}

@media (max-width: 991px) {
  .sector-page-dataviewer .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 2px !important;
  }
  .sector-page-dataviewer .flex-tr {
    margin-bottom: 10px;
  }
}

.sector-list-page-dataviewer .sector {
  width: 100%;
}

.downloads-list-page-dataviewer .ticker {
  width: 10%;
}

.downloads-list-page-dataviewer .name {
  width: 30%;
}

.downloads-list-page-dataviewer .sector {
  width: 20%;
}

.downloads-list-page-dataviewer .industry {
  width: 20%;
}

.downloads-list-page-dataviewer .pdfLink {
  width: 10%;
}

.downloads-list-page-dataviewer .excelLink {
  width: 10%;
}

.data-topic-page-dataviewer .ticker {
  width: 10%;
}

.data-topic-page-dataviewer .title {
  width: 45%;
}

.data-topic-page-dataviewer .sector {
  width: 15%;
}

.data-topic-page-dataviewer .industry {
  width: 15%;
}

.data-topic-page-dataviewer .updatedAt {
  width: 15%;
}

@media (max-width: 991px) {
  .data-topic-page-dataviewer .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 0px 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .data-topic-page-dataviewer .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
  }
}

.data-topic-page-dataviewer .text-blurb .rich-text.ql-editor {
  padding: 2px 0px;
}

.data-topic-page-dataviewer .keyword-editor {
  margin: 5px 0px 5px 0px;
}

.data-topic-page-dataviewer .keyword {
  padding-left: 5px;
  padding-right: 5px;
  margin-right: 5px;
  border-radius: 2px;
  background: lightblue;
}

.sub-topic-page-dataviewer .title {
  width: 75%;
}

.sub-topic-page-dataviewer .updatedAt {
  width: 25%;
}

@media (max-width: 991px) {
  .sub-topic-page-dataviewer .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .sub-topic-page-dataviewer .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
  }
}

.sub-topic-page-master-link {
  margin-top: 5px;
  margin-bottom: 10px;
}

.companies-list-page-dataviewer .ticker {
  width: 8%;
}

.companies-list-page-dataviewer .name {
  width: 28%;
}

.companies-list-page-dataviewer .trefisPriceGF {
  width: 7%;
}

.companies-list-page-dataviewer .trefisPriceUpsideGF {
  width: 7%;
}

.companies-list-page-dataviewer .upsideGFUpdatedAt {
  width: 10%;
}

.companies-list-page-dataviewer .marketPrice {
  width: 10%;
}

.companies-list-page-dataviewer .sector {
  width: 15%;
}

.companies-list-page-dataviewer .industry {
  width: 15%;
}

@media (max-width: 991px) {
  .companies-list-page-dataviewer .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 0px 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .companies-list-page-dataviewer .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
  }
}

.companies-list-page-dataviewer .gray-out {
  color: #A0A0A0;
}

.mapped-pages-list .flex-tr {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media (max-width: 991px) {
  .mapped-pages-list .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 0px 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .mapped-pages-list .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.three-year-stock-returns .ticker {
  width: 15%;
}

.three-year-stock-returns .ticker-company {
  width: 25%;
}

.three-year-stock-returns .yrs3 {
  width: 20%;
  text-align: center;
}

.three-year-stock-returns .yr1 {
  width: 20%;
  text-align: center;
}

.three-year-stock-returns .m1 {
  width: 20%;
  text-align: center;
}

@media (max-width: 991px) {
  .three-year-stock-returns .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 0px 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .three-year-stock-returns .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
  }
}

.five-year-stock-returns .ticker {
  width: 15%;
}

.five-year-stock-returns .ticker-company {
  width: 25%;
}

.five-year-stock-returns .yrs3 {
  width: 20%;
  text-align: center;
}

.five-year-stock-returns .yr1 {
  width: 20%;
  text-align: center;
}

.five-year-stock-returns .m1 {
  width: 20%;
  text-align: center;
}

@media (max-width: 991px) {
  .five-year-stock-returns .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 0px 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .five-year-stock-returns .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
  }
}

.ten-year-stock-returns .ticker {
  width: 15%;
}

.ten-year-stock-returns .ticker-company {
  width: 25%;
}

.ten-year-stock-returns .yrs3 {
  width: 20%;
  text-align: center;
}

.ten-year-stock-returns .yr1 {
  width: 20%;
  text-align: center;
}

.ten-year-stock-returns .m1 {
  width: 20%;
  text-align: center;
}

@media (max-width: 991px) {
  .ten-year-stock-returns .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 0px 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .ten-year-stock-returns .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
  }
}

.total-stock-returns .ticker {
  width: 7%;
}

.total-stock-returns .ticker-company {
  width: 10%;
}

.total-stock-returns .year {
  width: 5%;
  text-align: center;
}

.total-stock-returns .tsr {
  width: 10%;
  text-align: center;
}

.total-stock-returns .share-price-contribution {
  width: 10%;
  text-align: center;
}

.total-stock-returns .dividend-contribution {
  width: 10%;
  text-align: center;
}

.total-stock-returns .sales-growth {
  width: 10%;
  text-align: center;
}

.total-stock-returns .net-income-margin {
  width: 10%;
  text-align: center;
}

.total-stock-returns .pe-multiple {
  width: 10%;
  text-align: center;
}

.total-stock-returns .share-count {
  width: 10%;
  text-align: center;
}

.total-stock-returns .analysis {
  width: 8%;
  text-align: center;
}

@media (max-width: 991px) {
  .total-stock-returns .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 0px 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .total-stock-returns .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
  }
}

.price-movement-probabilities .ticker {
  width: 15%;
}

.price-movement-probabilities .ticker-company {
  width: 25%;
}

.price-movement-probabilities .last-1m-return {
  width: 15%;
  text-align: center;
}

.price-movement-probabilities .next-1m-excess-return {
  width: 15%;
  text-align: center;
}

.price-movement-probabilities .next-1m-return {
  width: 15%;
  text-align: center;
}

.price-movement-probabilities .analysisLink {
  width: 15%;
  text-align: center;
}

@media (max-width: 991px) {
  .price-movement-probabilities .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 0px 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .price-movement-probabilities .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
  }
}

.market-cap-ranking .ticker {
  width: 10%;
}

.market-cap-ranking .ticker-company {
  width: 20%;
}

.market-cap-ranking .year {
  width: 10%;
  text-align: center;
}

.market-cap-ranking .market-cap {
  width: 15%;
  text-align: center;
}

.market-cap-ranking .market-cap-prior-year {
  width: 15%;
  text-align: center;
}

.market-cap-ranking .change {
  width: 15%;
  text-align: center;
}

.market-cap-ranking .change-percentage {
  width: 15%;
  text-align: center;
}

@media (max-width: 991px) {
  .market-cap-ranking .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 0px 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .market-cap-ranking .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
  }
}

.max-drawdown-ranking .ticker {
  width: 15%;
}

.max-drawdown-ranking .ticker-company {
  width: 15%;
}

.max-drawdown-ranking .year {
  width: 10%;
  text-align: center;
}

.max-drawdown-ranking .max-drawdown-y1 {
  width: 20%;
  text-align: center;
}

.max-drawdown-ranking .max-drawdown-y2 {
  width: 20%;
  text-align: center;
}

.max-drawdown-ranking .max-drawdown-y3 {
  width: 20%;
  text-align: center;
}

@media (max-width: 991px) {
  .max-drawdown-ranking .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 0px 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .max-drawdown-ranking .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
  }
}

.metric-rankings .ticker {
  width: 6%;
}

.metric-rankings .ticker-company {
  width: 17%;
}

.metric-rankings .industry {
  width: 17%;
}

.metric-rankings .year {
  width: 6%;
  text-align: center;
}

.metric-rankings .metric {
  width: 17%;
  text-align: center;
}

.metric-rankings .metric-prior-year {
  width: 17%;
  text-align: center;
}

.metric-rankings .change {
  width: 10%;
  text-align: center;
}

.metric-rankings .dashboard-link {
  width: 10%;
  text-align: center;
}

@media (max-width: 991px) {
  .metric-rankings .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 2px !important;
    text-align: left;
    background-color: white !important;
  }
  .metric-rankings .flex-tr {
    margin: 5px 8px;
    -webkit-box-shadow: 0px 0px 10px #7e7e7e;
    box-shadow: 0px 0px 10px #7e7e7e;
    padding: 5px;
    border-radius: 5px;
  }
}

@media (max-width: 991px) {
  .ranking-summary-page .flex-td {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-top: none !important;
    padding: 2px !important;
  }
  .ranking-summary-page .flex-tr {
    margin-bottom: 10px;
  }
}

.ranking-summary-page .ranking-summary-card {
  margin-bottom: 40px;
  margin-top: 10px;
}

.ranking-summary-page .ranking-summary-card .data-viewer-title {
  height: 36px;
}

.ranking-summary-page .ranking-summary-card .data-viewer-tools {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

.ranking-summary-page .text-blurb .rich-text.ql-editor {
  padding: 2px 0px;
}

.company-topic-page .company-topic-card {
  margin-bottom: 40px;
  margin-top: 10px;
}

.company-topic-page .company-topic-card .data-viewer-title {
  height: 36px;
}

.company-topic-page .company-topic-card .data-viewer-tools {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

.flex-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-form .flex-form-title {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}

.flex-form .flex-form-body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: #fff;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open, .flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
  box-shadow: -2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer, .flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before, .flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before, .flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before, .flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before, .flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled, .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i, .flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, .flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
      /*rtl:begin:ignore*/
  left: 0;
  /*
      /*rtl:end:ignore*/
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
      /*rtl:begin:ignore*/
  right: 0;
  /*
      /*rtl:end:ignore*/
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path, .flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill .1s;
  -o-transition: fill .1s;
  transition: fill .1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input, .numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button, .numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: .5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 .5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 .5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus, .flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bolder;
}

.dayContainer, .flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 #e6e6e6;
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -ms-flex-preferred-size: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #569ff7;
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange, .flatpickr-day.startRange.startRange.endRange, .flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
  box-shadow: -5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7;
  box-shadow: -5px 0 0 #569ff7,5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day, .flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute, .flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover, .flatpickr-time .flatpickr-am-pm:hover, .flatpickr-time input:focus, .flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.flatpickr-input[readonly] {
  background-color: inherit;
}

.tf-select-__menu {
  z-index: 3;
}

.create-dataworks-page .flatpickr-input[readonly] {
  background-color: #fff !important;
}

.create-dataworks-page .flex-panel-body {
  padding-left: 2px;
  overflow: auto;
}

.create-dataworks-page .schedule-form-ui, .create-dataworks-page .job-form-ui {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.create-dataworks-page .create-dataworks-flash-message {
  margin-top: 10px;
  height: 20px;
  overflow: hidden;
}

.create-dataworks-page hr {
  margin-top: 5px;
}

.create-dataworks-page .tag-management .hint {
  padding-bottom: 5px;
}

.create-dataworks-page .tag-management .templateTag-container {
  float: left;
  width: 100%;
}

.create-dataworks-page .tag-management .tag-container {
  border: 1px solid #cccccc;
  border-radius: 4px;
  min-height: 38px;
  padding: 4px;
}

.create-dataworks-page .tag-management .tag-container .tag-element {
  background-color: #e6e6e6;
  padding: 3px;
  margin: 2px;
  font-size: 0.85em;
  cursor: pointer;
}

.create-dataworks-page .tag-management .tag-container .tag-element .tag-element-icon {
  font-weight: bold;
  padding-left: 5px;
}

#pageProvider .create-job-modal {
  text-align: left;
}

#pageProvider .create-job-modal .modal-dialog {
  width: 75vw;
}

.expression-tester-pin-icon {
  color: gray;
  cursor: pointer;
}

.expression-tester-unpin-icon {
  color: #ff7272;
  cursor: pointer;
}

.expression-tester-unpin-all-icon {
  color: #ff7272;
  margin-right: 5px;
  cursor: pointer;
}

.expression-tester-delete-icon {
  font-size: 1.25em;
  background-color: #ff7272;
  padding: 0px 8px;
  cursor: pointer;
}

/**
only used for themes, and currently, only on bain
*/
.powered-by {
  display: inline-block;
  margin-left: 10px;
  padding-left: 20px;
  border-left: 1px solid #fff;
}

.powered-by .powered-by-tagline {
  font-size: 12px;
  color: #666;
  letter-spacing: normal;
  display: inline-block;
  vertical-align: middle;
  font-weight: normal;
  padding-right: 5px;
}

.powered-by .powered-by-logo {
  width: 20px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  background: transparent url(../images/trefis-t-8852a48fe5.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.header .powered-by-tagline {
  font-size: 14px;
}

.header .powered-by-logo {
  width: 20px;
  height: 18px;
}

.footer .powered-by-tagline {
  font-size: 16px;
}

.footer .powered-by-logo {
  width: 22px;
  height: 20px;
}

#boxed.bain header.main-nav {
  background-color: #c00000 !important;
  -webkit-box-shadow: 0px 1px 6px #666;
  box-shadow: 0px 1px 6px #666;
  z-index: 1052;
  /* needs to be higher than the dropodown/popover */
}

#boxed.bain header.main-nav .nav-links a, #boxed.bain header.main-nav .nav-links a:visited, #boxed.bain header.main-nav .nav-links a:active {
  color: white;
}

#boxed.bain header.main-nav .nav-links a:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
}

#boxed.bain header.main-nav .dropdown-menu {
  background-color: #717171;
}

#boxed.bain header.main-nav .theme-logo {
  width: auto;
}

#boxed.bain header.main-nav .theme-logo .default-logo {
  height: 18px;
}

@media (max-width: 767px) {
  #boxed.bain header.main-nav .theme-logo .default-logo {
    height: 15px;
  }
}

@media (max-width: 767px) {
  #boxed.bain header.main-nav .powered-by {
    display: block;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

#boxed.bain header.main-nav .powered-by-tagline {
  font-size: 20px;
  color: white;
}

@media (max-width: 767px) {
  #boxed.bain header.main-nav .powered-by-tagline {
    font-size: 12px;
    padding-top: 5px;
  }
}

#boxed.bain header.main-nav .powered-by-logo {
  background-image: url(../images/trefis-t-white-e893e54c4d.svg);
}

#boxed.bain #footer-outer {
  background-color: #fff !important;
  border-top: 1px solid #ccc;
}

#boxed.bain #footer-outer, #boxed.bain #footer-outer a {
  color: #333 !important;
}

#boxed.bain #footer-outer .widget h4 {
  color: #333 !important;
}

#boxed.bain #footer-outer .col .widget_recent_entries span {
  color: #777;
}

#boxed.bain #footer-outer #copyright {
  color: #777;
  background-color: #FFF !important;
}

#boxed.bain #footer-outer #copyright li a i, #boxed.bain #footer-outer #copyright p {
  color: #777 !important;
}

/* input element */
html body .bain {
  /* Salient theme by default hides placeholders
   placeholders can't be chained with commas
   http://stackoverflow.com/questions/16982449/why-isnt-it-possible-to-combine-vendor-specific-pseudo-elements-classes-into-on

  */
}

html body .bain #header-outer input[type="text"]:focus,
html body .bain #header-outer.small-nav input[type="text"]:focus {
  background-color: #e8e8e8;
  border: 1px solid #cccccc !important;
  color: #888;
}

html body .bain #header-outer.transparent input::-webkit-input-placeholder {
  color: #888;
  opacity: 1;
}

html body .bain #header-outer.transparent input::-moz-placeholder {
  color: #888;
  opacity: 1;
}

html body .bain #header-outer.transparent input:-moz-placeholder {
  color: #888;
  opacity: 1;
}

html body .bain #header-outer.transparent input:-ms-input-placeholder {
  color: #888;
  opacity: 1;
}

html body .bain #header-outer.small-nav input::-webkit-input-placeholder {
  color: #888;
  opacity: 1;
}

html body .bain #header-outer.small-nav input::-moz-placeholder {
  color: #888;
  opacity: 1;
}

html body .bain #header-outer.small-nav input:-moz-placeholder {
  color: #888;
  opacity: 1;
}

html body .bain #header-outer.small-nav input:-ms-input-placeholder {
  color: #888;
  opacity: 1;
}

html body .bain #header-outer .icon-salient-search:before,
html body .bain #header-outer.small-nav .icon-salient-search:before {
  color: #888;
  opacity: 1;
}

html body .bain .global-search-results a:hover .ac_noncat strong {
  color: #fff;
}

html body .bain .global-search-results a strong {
  color: red;
}

html body .bain .global-search-results.ui-menu {
  background-color: white;
}

html body .bain .global-search-results {
  background-color: #ffffff;
  border-color: #ccc;
  border-color: rgba(0, 0, 0, 0.2);
}

html body .bain .global-search-results .ui-menu-item > a.ui-corner-all {
  color: #555555;
}

html body .bain .global-search-results .ui-menu-item > a.ui-corner-all.ui-state-hover,
html body .bain .global-search-results .ui-menu-item > a.ui-corner-all.ui-state-active,
html body .bain .global-search-results .ui-menu-item > a.ui-corner-all.ui-state-focus {
  color: #ffffff;
  background-color: #666;
}

html body .bain .global-search-results .ui-menu-item > a.ui-corner-all.ui-state-hover .ac_noncat strong,
html body .bain .global-search-results .ui-menu-item > a.ui-corner-all.ui-state-active .ac_noncat strong,
html body .bain .global-search-results .ui-menu-item > a.ui-corner-all.ui-state-focus .ac_noncat strong {
  color: #fff;
}

html body .bain .global-search-results.ui-menu .ui-menu-item {
  background-color: white;
}

html body .bain .global-search-results.ui-menu .ui-menu-item.ac_odd {
  background-color: #f9f9f9;
}

.bain .panel-heading.fixed-from-scroll {
  padding-top: 54px;
}

.bain .presentation-initial-screen {
  background-color: #c00000 !important;
  color: white;
}

#presentation .bain .presentation-initial-screen {
  margin-top: -40px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .bain .presentation-page {
    padding-top: 40px;
  }
}

#boxed.nielsen_ci header.main-nav {
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 6px #666;
  box-shadow: 0px 1px 6px #666;
  z-index: 1052;
  /* needs to be higher than the dropodown/popover */
}

#boxed.nielsen_ci header.main-nav .open-small-screen-nav {
  color: #222222;
}

#boxed.nielsen_ci header.main-nav .open-small-screen-nav:hover {
  background: transparent;
  color: #000;
}

#boxed.nielsen_ci header.main-nav .nav-links > li.menu-item {
  padding: 0;
}

#boxed.nielsen_ci header.main-nav .nav-links > li.menu-item > a {
  padding: 20px 10px;
}

#boxed.nielsen_ci header.main-nav .nav-links a, #boxed.nielsen_ci header.main-nav .nav-links a:visited, #boxed.nielsen_ci header.main-nav .nav-links a:active {
  color: #222222;
}

#boxed.nielsen_ci header.main-nav .nav-links a:hover {
  background: transparent;
  color: #000;
}

#boxed.nielsen_ci header.main-nav .dropdown-menu {
  background-color: #717171;
}

#boxed.nielsen_ci header.main-nav .dropdown-menu a, #boxed.nielsen_ci header.main-nav .dropdown-menu a:visited, #boxed.nielsen_ci header.main-nav .dropdown-menu a:active {
  color: white;
}

#boxed.nielsen_ci header.main-nav .dropdown-menu a:hover {
  color: white;
}

#boxed.nielsen_ci header.main-nav .theme-logo {
  width: auto;
}

#boxed.nielsen_ci header.main-nav .theme-logo .default-logo {
  height: 30px;
}

#boxed.nielsen_ci header.main-nav .powered-by {
  padding-left: 20px;
  border-left: 1px solid #eeeeee;
  margin-left: 0;
}

#boxed.nielsen_ci header.main-nav .powered-by-tagline {
  font-size: 17px;
}

#presentation #boxed.nielsen_ci .presentation-initial-screen {
  margin-top: -63px;
}

#boxed.nielsen_ci #giraffe-RootContainer {
  padding-bottom: 20px;
}

#boxed.nielsen_ci #presentation {
  padding-top: 63px;
}

#boxed.nielsen_ci #footer-outer {
  background-color: #fff !important;
  border-top: 1px solid #eeeeee;
}

#boxed.nielsen_ci #footer-outer, #boxed.nielsen_ci #footer-outer a {
  color: #222222 !important;
}

#boxed.nielsen_ci #footer-outer .widget h4 {
  color: #222222 !important;
}

#boxed.nielsen_ci #footer-outer .col .widget_recent_entries span {
  color: #777777;
}

#boxed.nielsen_ci #footer-outer #copyright {
  color: #777777;
  background-color: #FFF !important;
}

#boxed.nielsen_ci #footer-outer #copyright li a i, #boxed.nielsen_ci #footer-outer #copyright p {
  color: #777777 !important;
}

#boxed.bcg header.main-nav {
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 6px #666;
  box-shadow: 0px 1px 6px #666;
  z-index: 1052;
  /* needs to be higher than the dropodown/popover */
}

#boxed.bcg header.main-nav .open-small-screen-nav {
  color: #222222;
}

#boxed.bcg header.main-nav .open-small-screen-nav:hover {
  background: transparent;
  color: #000;
}

#boxed.bcg header.main-nav .nav-links > li.menu-item {
  padding: 0;
}

#boxed.bcg header.main-nav .nav-links > li.menu-item > a {
  padding: 25px 10px;
}

#boxed.bcg header.main-nav .nav-links a, #boxed.bcg header.main-nav .nav-links a:visited, #boxed.bcg header.main-nav .nav-links a:active {
  color: #222222;
}

#boxed.bcg header.main-nav .nav-links a:hover {
  background: transparent;
  color: #000;
}

#boxed.bcg header.main-nav .dropdown-menu {
  background-color: #717171;
}

#boxed.bcg header.main-nav .dropdown-menu a, #boxed.bcg header.main-nav .dropdown-menu a:visited, #boxed.bcg header.main-nav .dropdown-menu a:active {
  color: white;
}

#boxed.bcg header.main-nav .dropdown-menu a:hover {
  color: white;
}

#boxed.bcg header.main-nav .theme-logo {
  width: auto;
}

#boxed.bcg header.main-nav .theme-logo .default-logo {
  height: 32px;
}

#boxed.bcg header.main-nav .powered-by {
  padding-left: 20px;
  border-left: 1px solid #eeeeee;
  margin-left: 0;
}

#boxed.bcg header.main-nav .powered-by-tagline {
  font-size: 17px;
}

#boxed.bcg #giraffe-RootContainer {
  padding-bottom: 20px;
}

#boxed.bcg .presentation-initial-screen {
  margin-top: -70px;
}

#boxed.bcg #presentation {
  padding-top: 70px;
}

#boxed.bcg .presentation .presentation-tools {
  top: 70px;
}

#boxed.bcg #footer-outer {
  background-color: #fff !important;
  border-top: 1px solid #eeeeee;
}

#boxed.bcg #footer-outer, #boxed.bcg #footer-outer a {
  color: #222222 !important;
}

#boxed.bcg #footer-outer .widget h4 {
  color: #222222 !important;
}

#boxed.bcg #footer-outer .col .widget_recent_entries span {
  color: #777777;
}

#boxed.bcg #footer-outer #copyright {
  color: #777777;
  background-color: #FFF !important;
}

#boxed.bcg #footer-outer #copyright li a i, #boxed.bcg #footer-outer #copyright p {
  color: #777777 !important;
}

#boxed.guggenheim header.main-nav {
  background-color: #fff;
}

#boxed.guggenheim header.main-nav .theme-logo {
  width: auto;
}

#boxed.guggenheim header.main-nav .theme-logo .default-logo {
  height: 20px;
}

@media (max-width: 767px) {
  #boxed.guggenheim header.main-nav .theme-logo .default-logo {
    height: 10px;
  }
}

#boxed.guggenheim header.main-nav .powered-by {
  border-left-color: #ccc;
  margin-left: 20px;
}

@media (max-width: 767px) {
  #boxed.guggenheim header.main-nav .powered-by {
    font-size: 90%;
  }
}

#boxed.guggenheim header.main-nav .nav-links > li.menu-item {
  padding: 0;
}

#boxed.guggenheim header.main-nav .nav-links > li.menu-item > a {
  padding: 25px 10px;
}

#boxed.guggenheim header.main-nav .nav-links a, #boxed.guggenheim header.main-nav .nav-links a:visited, #boxed.guggenheim header.main-nav .nav-links a:active {
  color: #222222;
}

#boxed.guggenheim header.main-nav .nav-links a:hover {
  background: transparent;
  color: #000;
}

#boxed.guggenheim header.main-nav .open-small-screen-nav {
  color: #222222;
}

#boxed.guggenheim header.main-nav .open-small-screen-nav:hover {
  background: transparent;
  color: #000;
}

#boxed.guggenheim header.main-nav .dropdown-menu {
  background-color: #717171;
}

#boxed.guggenheim header.main-nav .dropdown-menu a, #boxed.guggenheim header.main-nav .dropdown-menu a:visited, #boxed.guggenheim header.main-nav .dropdown-menu a:active {
  color: white;
}

#boxed.guggenheim header.main-nav .dropdown-menu a:hover {
  color: white;
}

@media (min-width: 992px) {
  #boxed.guggenheim .presentation-page {
    padding-top: 66px;
  }
}

#boxed.mckinsey header.main-nav {
  background-color: #051c2c !important;
  -webkit-box-shadow: 0px 1px 6px #666;
  box-shadow: 0px 1px 6px #666;
  z-index: 1052;
  /* needs to be higher than the dropodown/popover */
}

#boxed.mckinsey header.main-nav .nav-links a, #boxed.mckinsey header.main-nav .nav-links a:visited, #boxed.mckinsey header.main-nav .nav-links a:active {
  color: white;
}

#boxed.mckinsey header.main-nav .nav-links a:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
}

#boxed.mckinsey header.main-nav .dropdown-menu {
  background-color: #717171;
}

#boxed.mckinsey header.main-nav .theme-logo {
  width: auto;
}

#boxed.mckinsey header.main-nav .theme-logo .default-logo {
  height: 40px;
}

@media (max-width: 767px) {
  #boxed.mckinsey header.main-nav .theme-logo .default-logo {
    height: 25px;
  }
}

#boxed.mckinsey header.main-nav .theme-logo .logo-text {
  color: #fff;
  font-size: 20px;
  padding-left: 18px;
  vertical-align: middle;
  font-family: arial;
  border-left: 1px solid #ffffff;
  margin-left: 18px;
}

@media (max-width: 767px) {
  #boxed.mckinsey header.main-nav .theme-logo .logo-text {
    font-size: 12px;
    padding-left: 6px;
    vertical-align: baseline;
  }
}

#boxed.mckinsey header.main-nav .powered-by {
  margin-left: 2px;
  padding-left: 30px;
  border: none;
}

@media (max-width: 767px) {
  #boxed.mckinsey header.main-nav .powered-by {
    display: block;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

#boxed.mckinsey header.main-nav .powered-by-tagline {
  font-size: 15px;
  color: white;
  padding-bottom: 3px;
}

#boxed.mckinsey header.main-nav .powered-by-tagline strong {
  font-size: 20px;
}

@media (max-width: 767px) {
  #boxed.mckinsey header.main-nav .powered-by-tagline {
    font-size: 12px;
    padding-top: 5px;
  }
}

#boxed.mckinsey header.main-nav .powered-by-logo {
  background-image: url(../images/trefis-t-white-e893e54c4d.svg);
}

#boxed.mckinsey #footer-outer {
  background-color: #fff !important;
  border-top: 1px solid #ccc;
}

#boxed.mckinsey #footer-outer, #boxed.mckinsey #footer-outer a {
  color: #333 !important;
}

#boxed.mckinsey #footer-outer .widget h4 {
  color: #333 !important;
}

#boxed.mckinsey #footer-outer .col .widget_recent_entries span {
  color: #777;
}

#boxed.mckinsey #footer-outer #copyright {
  color: #777;
  background-color: #FFF !important;
}

#boxed.mckinsey #footer-outer #copyright li a i, #boxed.mckinsey #footer-outer #copyright p {
  color: #777 !important;
}

.mckinsey .panel-heading.fixed-from-scroll {
  padding-top: 54px;
}

.mckinsey .presentation-initial-screen {
  background-color: #051c2c !important;
  color: white;
}

#presentation .mckinsey .presentation-initial-screen {
  margin-top: -40px;
}


/* overall page layout */
body {
  color:#333;
  font-family:Helvetica,Arial,sans-serif;
  font-size:12px;
  font-size-adjust:none;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  /* this centers the container in IE 5* browsers. The text
     is then set to the left aligned default in the #giraffe-RootContainer
	 selector */
  text-align: center;
}

body.whiteBG {
	background: #fff;
}

/* fixes dotted border around flash widget in some browsers */
object {
	outline: none;
}
#popupHolder {
	width:960px;
	margin:0 auto;
	text-align:left;
}
#giraffe-RootContainer {
  width: 960px;
  text-align: left;
  margin: 0 auto;
  position: relative;
}

/*
can't think of an instances where we would want to have an image
break outside of its container's width
- and individual width could be set on an image without a problem.
*/

#giraffe-RootContainer .post img {
	max-width: 100%;
	/*
	 Should make use of bootstraps image-responsive class
	img-responsive() mixin
	*/

}

.clear {
	display: block;
	width:100%;
	height: 0;
	clear: both;
	line-height:0;
}

input {
	margin-left:0;
}

table {
	border-collapse: collapse;
}

.ghostText {
	color: #808080;
}

.fr {
	float: right;
	display: inline;
}

.fl {
	float: left;
	display: inline;
}

.clickable {
	cursor:pointer;
 	 _cursor: hand;	
}

.hr {
	height: 1px;
	line-height: 1px;
	border-bottom: 1px solid #ccc;
}

.italic {
   font-style: italic;
}

.bold {
	font-weight:bold;
}
/* use bootstrap text-center*/
/*.center {*/
/*	!*text-align : center;*!*/
/*}*/
.hidden {
	display: none;
}

acronym, abbr, span.caps {
	cursor: help;
	}

acronym, abbr {
	border-bottom: 1px dashed #999;
	}

blockquote {
	margin: 15px 30px 0 10px;
	padding-left: 20px;
	border-left: 5px solid #ddd;
	}

blockquote cite {
	margin: 5px 0 0;
	display: block;
	}

a img {
	border: none;
	}
	
/* --------------------------- common page layout ------------------------- */

.sidebar {
	float: right;
	width: 310px;
	margin-top: 30px;
}

.content {
	float: left;
	position: relative;
	width: 630px;
	margin-top: 30px;
}

.sidebar .greyBox, .sidebar .adWrapper {
	margin-bottom: 30px;
}

.greyHeaderBox {
	margin-top: 15px;
	border: 1px solid #ccc;
	padding: 15px;

	background: #f7f7f7;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eeeeee));
	background-image: -o-linear-gradient(top, #ffffff, #eeeeee);
	background-image: linear-gradient(top, #ffffff, #eeeeee);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffffff, endColorstr=#ffeeeeee);
	border-radius: 5px;
}


/* ------------------ DISCLOSURE TRIANGLE -------------------------------- */

.discTri000 {
  background: transparent url(../images/discTriF0-740a4be2a4.gif) no-repeat scroll 0 0;
  width : 9px;
  height : 9px;
  top : 2px;
  position : relative;
  overflow : hidden;
}


.discTri090 {
  background: transparent url(../images/discTriF0-740a4be2a4.gif) no-repeat scroll 0 -9px;
  width : 9px;
  height : 9px;
  top : 2px;
  position : relative;
  overflow : hidden;
}

.discTriGrey000 {
	background: url(../images/discTriGrey-09f0711422.png) scroll 0 0;
	width: 9px;
	height: 9px;
	overflow : hidden;
	display:inline-block;
}

.discTriGrey090 {
	background: url(../images/discTriGrey-09f0711422.png) scroll 0 -9px;
	width: 9px;
	height: 9px;
	overflow : hidden;
	display:inline-block;
}

.discTri090p {
	background: transparent url(../images/discTri090-4292c13186.png) no-repeat;
	width : 9px;
	height : 9px;
	overflow:hidden;
}

/* ------------------ search autocomplete ---------------- */

.ac_result {
	font-size: 12px;
	line-height: 16px;
	text-align: left;
}
.ac_ticker {
	float: left;
	width: 50px;
}
.ac_name {
	margin-left: 50px;
}
.ac_odd {
	background: #ebf5ff;
}

.ac_cat {
	float: left;
	width: 70px;
}

.ac_noncat {
	margin-left: 70px;
}



/* ------------------ LINKS --------------------------------- */
a, .giraffe-Link {
  text-decoration: none;
  color: #06c;
  cursor: pointer;
  _cursor: hand;
}
p a, p .giraffe-Link {
	text-decoration: underline;
}
a:visited {
	/*
	while i appreciate the usability of the visited pseudo class, we over ride it everwhere
	color: #290085;
	*/
}
a.novisit:visited {
	color:#06c;
}
a.novisit:hover {
	color:#0A2552;
}
a:hover, a:active, .giraffe-LinkHover {
  color: #0A2552;
  /*background-color: #C3DBF3;*/
}

.hoverBG {
	background-color: #C3DBF3;
}
.nounderline {
	text-decoration: none !important;
}

a.headerlink {
	color: #005493;
	font-weight: bold;
}


/* ------------------ OTHER COMMON CSS (see wiki page) ---------------------------- */

.noscript {
	position:absolute;
	top:200px;
	left:0;
	width:100%;
	text-align:center;
	z-index:200;
}

.noscript div {
	width:370px;
	margin:0 auto;
	padding:10px;
	background:#fff;
	border:1px solid #aaa;
	line-height:30px;
	font-weight: bold;
	font-size: 24px;
}

/* style to be applied to clickable names that spawn a 'business card' popup */
.bcTarget {
	text-decoration: none !important;
	color: #174EBE;
	font-weight: bold;
	cursor: pointer;
	_cursor: hand;
}

.colHeader {
	font-weight: bold;
	color: #f60;
	font-size: 20px;
	margin: 10px 0 40px;
}

.caps_h3 {
	font-weight: bold;
	display:block;
	width:100%;
	margin:15px 0;
	text-align:center;
	font-size:13px;
}

.stats_h4 {
	font-weight:bold;
	font-size:13px;
}
.orange_h4 {
	font-weight:bold;
	color:#f60;
	font-size:13px;
}
.cmpSection .orange_h4 {
	line-height:20px;
	margin-left:15px;
}

.lightGrey_h4 {
	font-weight:bold;
	color:#AAA;
	font-size:13px;
}

.grey_h3 {
	color:#666;
	font-size:14px;
	margin: 15px 0;
}

.tableHeader {
	text-decoration:none !important;
	outline: none;
	font-size:10px;
	text-transform: uppercase;
	line-height: 11px;
	display: inline-block;
}

/* this class should be applied to the non-header TD's in
the Forecasts/Comments columns of tables */
.fcTd {
	padding-right: 30px !important;
}

.capsHeader {
	text-transform : uppercase;
	font-size : 10px;
}

a.sortableHeader:visited {
	color:#174EBE;
}

.roundedBox {
	background-color:#fff;
	border:1px solid #ccc;   
 border-radius: 5px;   
	position: relative;
}

.italicBox {
	font-style:italic;
	margin:23px 0;
	overflow:hidden;
	text-align:center;	
	color: #808080;	
}

.black_h4 {
	font-size: 14px;
	color: #000000;
}

.gbuttonF0 {
	background-image:url(../images/gbuttonRightCutF0-8b717877c9.png);
}

.gbuttonF0 span {
	background-image: url(../images/gbuttonLeftCutF0-54e1632ee8.png);
}

.gbuttonA2 {
	background-image:url(../images/gbuttonRightCutA2-6972213887.png);
}

.gbuttonA2 span {
	background-image: url(../images/gbuttonLeftCutA2-e183a0c312.png);
}

.posUpside {
	color: #090;
}

.negUpside {
	color: #c30;
}

.ctNegUpside {
	color: #cc3300;
	font-size:11px;
	float: right;
	width: 45px;
}

.ctPosUpside {
	color: #009900;
	font-size:11px;
	float: right;
	width: 45px;
}

/*.ctFixed {
	float:left;
	width:50px;
}*/

.vbottom {
	vertical-align: bottom;
}

/* class applied to "BETA" tags next to beta companies */
.beta {
	color: #f60;
	font-size: 10px;
	position: relative;
	top: -4px;
}

/* class applied to "ALPHA" tags next to alpha companies */
.alpha {
	color: #FF0000;
	font-size: 10px;
	position: relative;
	top: -4px;
}

/* class applied to "BETA" tags next to sector names on home page */
.sectorBeta {
	color: #666;
	font-size: 11px;
	position: relative;
	top: -6px;
	left:2px;
}

.goButton {
	display: inline-block;
	text-indent: -9999px;
	width: 28px;
	height: 29px;
	background: url(../images/goButton-23a6e850ff.png);
}

.follow_company_button {
	display: inline-block;
	padding-left: 20px;
	background: url(../images/bluePlus-d9ebf5868c.png) no-repeat;
}

.greenHeader {
	color: #090;
	font-size: 24px;
	font-weight: normal;
}

.orangeDot {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url(../images/orangeDot-61121335ea.png);
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 22px;
}

/* --------------------------- STANDARD TABS ----------------------------- */


.tabCont {
	float:left;
	position:relative;
	width:100%;
	z-index:2;
}

.tabContInner {
	float:left;
	position:relative;
	left:50%;
}

.standardTab {
	float:left;
	position:relative;
	right:50%;
	cursor:pointer;
	_cursor:hand;
	color:#174EBE;
	background:#ccc;
	border-width: 1px 1px 0;
	border-style:solid;	
	border-color:#ccc;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
    -khtml-border-radius-topleft: 5px;
	-khtml-border-radius-topright: 5px;
    border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	/*width:125px;*/
	height:23px;
	text-align:center;
	line-height:23px;
	margin:0 1px -1px;
	font-weight:bold;
	/*width:125px;*/
}

.standardTab_inner {
	width:124px; /* this must be even, otherwise IE6 mis-places the absolutely posiitioned corner images */
}

.standardTab_active {
	cursor:default;
	background-color:#fff;
	border-color:#ccc;
	color: #000;
}

a.standardTab {
	background: #ccc !important;
	color:#174EBE !important;
	text-decoration: none;
	display: block;
}

/* -------------------------- drop shadow ----------------------------- */
.shadow {
	position:absolute;
	background:#000;
	width:100%;
	height:100%;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
	filter: alpha(opacity=10);
	opacity:0.1;
	z-index:-1;
	left: 0;
}
.sb1 {
	top:3px;
}
.sb2 {
	top:5px;
}
.sb3 {
	top:7px;
}
.sb4 {
	top:9px;
}
.st1 {
	top:-1px;
}
.st2 {
	top:-3px;
}
.st3 {
	top:-5px;
}
.sl1 {
	left:-2px;
}
.sr1 {
	left:2px;
}
.sl2 {
	left:-4px;
}
.sr2 {
	left:4px;
}
.shadowContent {
	background:#fff;
}


/* user login panels */

.loginForm .grey {
	color:#aaa;
}
.loginPaneIframe {
	width:415px;
	border:none;
	min-height: 350px;
}


.userPanes {
	float: right;
	border: 1px solid black;
	width: 188px;
	min-height:580px;
	margin: 5px;
	background-color: white;
}

.userPanesInner {
	padding: 5px;
}

.loggedInPane {
	display: none;
	width: 100%;
	height: 100%;
}

.userPaneHR {
	margin: 12px 0;
	width: 100%;
	height: 1px;
	border-bottom: thin dotted black;
}
.dottedVertical {
	width : 0px;
	border-left: thin dotted black;
}


#signInPane input {
	margin: 3px 0;
}

#loginOK {
	margin:5px;
	width: 35px;
}
#forgotPassword {
	line-height:27px;
	margin-left:23px;
}
.signUpPane {
	width: 750px;
	margin-left:105px;
}
.signupGreyLine {
	height:20px;
	width:100%;
	border-bottom:1px solid #ccc;
}
.signUpBtnRow {
	clear: both;
	font-weight:bold;
    font-size: 12px;
	line-height:29px;
	padding-top:20px;
}
.signupGrey {
	color:#aaa;
	font-size: 11px;
}

.signupGreyOr {
	background-color:white;
	display:inline-block;
	font-size:12px;
	font-weight: bold;
	margin: 0 0 5px 201px;
	position:relative;
	text-align:center;
	top:-8px;
	width:25px;
	color: #333;
}
.signupHeaderL {
	float: left;
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 4px;
}

.signUpPaneInner {
	padding: 10px;
	background: #fff;
}

#signUpPaneHeader {
	border: 1px solid black;
	text-align: center;
	padding: 8px 0;
	margin: 0 20px 20px;
}

#signUpOK, #surveyOK {
	float:right;
	margin:10px 0 !important;
}

#signUp {
	width: 80px;
}

.signUpPaneRHS {
	float: right;
	border-left: 1px solid black;
	width: 320px;
}

.remindPane {
	height: 100%;
	width: 100%;
	display: none;
}

#remindCancel {
}

.sendPassword {
	margin:5px;
	width: 110px;
}

.firstNameBox {
	width: 95px;
}

.lastNameBox {
	width: 135px;
}

.emailBox {
	width: 250px;
}

#betaSignUpPane {
	width:520px;
	margin-left:220px;
}

#betaSignUpPane .popupPaneTopBottom {
	width: 500px;
}

.betaSignUpPaneInner {
	padding: 0 20px;
	background: #fff;
}

#betaSignUpRealPane td {
	padding: 0;
}

#betaSignUpPane table p {
	margin: 5px 0;
}

#betaSignUpPane h2 {
	margin:0 0 13px;
	padding-top: 10px;
}

#betaSignUpPane h2, #betaSignUpPane h3 {
	text-align: center;
}

#betaSignUpPane textarea, #betaSignUpPane input {
  font-family:Helvetica,Arial,sans-serif;
  font-size:12px;
  font-size-adjust:none;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
}

#betaSignUpPane .editProfExperiences input, #betaSignUpPane .editProfEducations input {
	margin-right: 4px;
}

#betaSignUpPane select {
	width:180px;
}

#betaSignUpPane .t, #betaSignUpPane .d {
	width : 90px;
}	
#betaSignUpPane .o, #betaSignUpPane .s {
	width : 160px;
}	
#betaSignUpPane .b, #betaSignUpPane .e {
	width : 60px;
}

#betaSignUpPane .section {
	margin-top: 20px;
}
.signUpTB {
	width:113px;
	margin: 3px 0;
}
.signUpAt {
	display:inline-block;
	text-align:center;
	width:16px;
}
.signUpTBMed {
	width: 245px;
	margin: 3px 0;
}

.signUpTBLong {
	width: 190px;
	margin: 3px 0;
}

.signInSection {
	display: block;
	opacity: 1;
}

#loginPaneStep1 .signupForm {
	margin:0;
}

#loginPaneStep2 .b, #loginPaneStep2 .e  {
	width:55px;
}
#loginPaneStep2 .t, #loginPaneStep2 .o, 
#loginPaneStep2 .d, #loginPaneStep2 .s {
	width:100px;
}



#headerAnnounce {
	display: none;
	width: 960px;
	clear: both;
	line-height: 24px;
	border: 1px solid;
	z-index:1003; /* this puts it above the overlay and any popups */
}
.headerAnnounceAbsolute {
	top: 175px; /* this makes it clear the standard header */
	position: absolute;
}
#headerAnnounce ol,#headerAnnounce ul {
	margin : 5px 0;
	padding-left:20px;
}
#headerAnnounce li {
	margin : 0;
	padding : 0;
	line-height: 12px;
}
.headerAnnounceFixed {
	top : 0;
	position : fixed;
}
/* the announceBoxGray is intended to be full width (breaks gutters) */
.announceBoxGray {
	background: #eee; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee'); /* for IE */ /* for webkit browsers */
	background: -moz-linear-gradient(top,  #fff,  #eee); /* for firefox 3.6+ */
	clear:both;
	position:relative;
	margin:5px 0;
	padding:5px 0;
	line-height:12px;
}
.announceBoxGrayClose {
	left:50%;
	margin-left:450px;
	top:50%;
	position: absolute;
}
.companyDisclaimerContent {
	margin: 0px auto;
	width: 960px;
}
.announceBoxGrayContent {
	margin: 0px auto;
	width: 960px;
	padding: 5px;
	font-size: 14px;
	color: #f60;
}
.announceBoxGrayTop, .announceBoxGrayBottom,.announceBoxGrayTop2 {
	border-style:solid none;
	position: absolute;
	left:0;
	width:100%;
	height:0px;
}
.announceBoxGrayTop {
	border-top:1px solid #c4c4c4;
	border-bottom:1px solid #dcdcdc;
	top:0;
}
.announceBoxGrayTop2 {
	border-top:1px solid #ededed;
	border-bottom:1px solid #f9f9f9;
	top:0;
}
.announceBoxGrayBottom {
	border-top:1px solid #e8e8e8;
	border-bottom:1px solid #dcdcdc;
	bottom:0;
}

.announceBoxClose {
	height: 24px;
	margin-right:6px;
}

.announceBoxMsg {
	padding-left: 30px;
}

.announceBoxError {
	background: #FDBFC1 url(../images/announceBad-0efbcfbfd2.png) no-repeat scroll 6px 4px;
	border-color: #510007;
	color: #510007;
}
.announceBoxInfo {
	background: #C2FFC2 url(../images/announceGood-cd3e4686cb.png) no-repeat scroll 6px 4px;
	border-color: #0F8B0F;
	color: #0F8B0F;
}



/* --------------------- help card popup ----------------------- */
#hPopup {
	position: relative;
	display: none;
	z-index:101;
	font-size:13px;
	border : 2px solid #9c9;
	background: #fff;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
	filter: alpha(opacity=95);
	opacity:0.95;
	padding:10px;
}

#hContent {
	width:400px;
}

/* --------------------- business card popup ----------------------- */

#bcPopup, #analystBcPopup {
  position: relative;
  display:none;
  z-index:5;
  font-size:13px;
}

#bcPopup2 {
  display:-moz-inline-stack;
    display:inline-block;
    zoom:1;
    _display:inline;
}

#bcPopup .shadowContent,
#analystBcPopup .shadowContent {
  border:1px solid #f93;
  background:#ffc;
}

#bcLoading {
	width:220px;
	height:50px;
}

#bcClose {
	position: absolute;
	right:3px;
	top:3px;
	width:12px;
	height:12px;
	cursor: pointer;
	_cursor: hand;
	background:url(../images/businessCardCloseButton-e07fb0bd7a.png) no-repeat;
}

#bcName {
	color: #f93;
	padding: 5px 17px 0 5px;
	font-weight:bold;
}

#bcTitle {
	color:#7a7a74;
	padding: 0 5px 6px;
}

#bcBottom {
	display:block;
	border-top:1px dotted #fc6;
	padding:5px 2px;
}

#bcProfile, #bcFollow, #bcBlock, #bcAnalystProfile, #bcAnalystAsk {
	padding-left:14px;
	background-image: url(../images/businessCardIcons_v1.1-9f629df57c.png);
	background-repeat: no-repeat;
	text-decoration:none;
	margin:0 3px;
}

#bcAnalystProfile {
	background-position: -0px -69px;
}

#bcAnalystAsk {
	background-position: -0px -51px;
}

#bcFollow {
	background-position:0 -32px;
}

#bcBlock {
	background-position:0 -16px;
}

.tSortAsc {
	padding-right:9px;
	background: transparent url(../images/companyTableSortUp-1486194b1a.gif) no-repeat scroll center right;
}

.tSortDesc {
	padding-right:9px;
	background: transparent url(../images/companyTableSortDown-ad07c8c3b8.gif) no-repeat scroll center right;
}

tr.odd {
	background : #ebf5ff;
}

/* --------------------- follower/following popup ----------------------- */
#followerPopup {
	display:none;
	position:absolute;
	z-index:50;
	text-align:left;
	width: 420px;
}

#followerPopup .shadow, #followerPopup .shadowContent {
	border-radius: 10px;
}

#followerPopup .shadow {
	position:absolute !important;
}

#followerPopup .shadowContent {
	padding:0 0 15px;
}
.followerC1 {
	padding-left:10px; width:110px;
}
.followerC2 {
	width:180px;
}
.followerC3 {
	width:110px;
}


#followerPopup thead {
	display : block;
}
#followerPopup tbody {
	display : block;
	max-height : 300px;
	overflow-y : auto;
	overflow-x : hidden;
	width : 100%;
}

.followerTitle {
	width:394px;
}

.popupTitle {
	text-align:center;
	color: #5cad5c;
	font-size:13px;
	height:26px;
	margin: 0 3px;
}

.popupTitle div {
	height: 12px;
	border-bottom: 1px solid #c1e0c1;
	width:100%;
}

.popupTitle span {
	position:relative;
	background: #fff;
	top:-8px;
	padding:0 6px;
	font-weight:bold;
}

#followerTable {
	padding:0 0 30px;
	width:400px;
}

.greyRounded {
	border-radius: 10px;
	background-color:#afafaf;
	padding-left : 10px;
	padding : 5px;
}

/* --------------------- crumbtrail ----------------------- */

.crumbArrow {
	margin-left : 3px;
	margin-right : 3px;
	color: #808080;	
}

.crumbStep {
	text-decoration: none !important;
	cursor:pointer;
 	 _cursor: hand;	
}

.crumbStep a:visited {
	color:#174EBE;
}
.crumbStep a:hover {
	color:#0A2552;
}

.crumbStep:hover {
  color: #0A2552;
  background-color: #C3DBF3;
}

/* --------------------- userNetworkStats.jsp ----------------------- */
table.userStats td {
	padding : 5px;
}
.positiveStats {
	color : #52A226;
}
.countBubble {
	color : #FFFFFF;
	display:inline-block;
	position: relative;
}

.countBubble span {
	background-color : #808080;
	display: inline-block;
	line-height: 17px;
	margin: 0 8px;
	padding: 0;
}
.countBubbleRed span {
	background-color : #FE0000;
}

.countBubbleLeft, .countBubbleRight {
	background: url(../images/cornerSpriteTrans-c5598125e6.png) -40px 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 8px;
	height: 17px;
}

.countBubbleLeft {
	left: 0;
}

.countBubbleRight {
	right: 0;
	background-position: -49px 0;
}
.countBubbleRed  .countBubbleLeft {
	background-position:-63px 0;
}
.countBubbleRed  .countBubbleRight {
	background-position:-72px 0;
}

.statsBox {
	width:100%;
	float:left;
	position: relative;
}

.statsBoxTopBottom {
	height: 3px;
	margin: 0 3px;
	background: #fff;
	line-height: 3px;
	overflow: hidden;
}

.statsBoxBG {
	background: #fff;
}

.statsBoxInner {
	float:left;
	position:relative;
	left:50%;
	text-align:center;
}

.statsSubBox {
	float:left;
	position:relative;
	right:50%;
	text-align:center;
	height:55px;
	margin:2px 0;
}

.statsSubBoxInner {
	display:block;
	width:105px;
}

.statsLB {
	border-left: 1px solid #ebebeb;
}

.statsFindPeople {
	width:100%;
	border-top: 1px solid #ebebeb;
	text-align:center;
	clear: both;
	padding: 3px 0 4px;
}

.bigNum {
	font-size:28px;
	margin: 12px 0 5px;
}

/* margins */

.marginRL3 {
	margin : 0 3px;
}


/* ------------------- common profile-editing styles ------------------------ */

.editProfAddURL, .editProfAddExperience, .editProfAddEducation {
	font-size: 11px;
	margin-left: 2px;
}

.editProfExperiences th, .editProfEducations th {
	text-align: left;
}

/* ----------------------- facebook / twitter icon styles ------------------------ */

.fbLink {
	font-size: 14px;
	padding-left: 19px;
	height: 16px;
	line-height: 16px;
	background: url(../images/facebookIcon-718f1aef17.gif) no-repeat 0 0;
	text-decoration: none !important;
	font-weight: bold;
}

.twLink {
	font-size: 14px;
	padding-left: 18px;
	height: 16px;
	line-height: 16px;
	background: url(../images/twitterIcon-a1104523b4.png) no-repeat 0 0;
	text-decoration: none !important;
	font-weight: bold;
}

.liLink {
	font-size: 14px;
	padding-left: 21px;
	height: 18px;
	line-height: 18px;
	background: url(../images/linkedin18-1f82f32081.png) no-repeat 0 0;
	text-decoration: none !important;
	font-weight: bold;
}

.fbIcon16 {
	height: 16px;
	width:16px;
	display:inline-block;
	background: url(../images/facebookIcon-718f1aef17.gif) no-repeat 0 0;
}
.liIcon18 {
	height: 18px;
	width: 18px;
	display:inline-block;
	background: url(../images/linkedin18-1f82f32081.png) no-repeat 0 0;
}

/* ------------- Contact Us page ------------------- */

.contactUs h1 {
	margin-left: 200px;
}

.contactUsTable {
	width: 800px;
	margin-left: 200px;
	line-height: 20px;
}

/* ------------ alternative content for flash widgets ------------------ */

.flashalt {
	font-size:10px;
}

.flashaltbox {
	width:500px;
	padding: 100px 230px;
	margin: 0;
	line-height:30px;
	font-size:28px;
	text-align:center;
	font-weight:bold;
}

/* ------------- company page ---------------------- */

.nonArticle {
	display: none;
}

.disclaimer {
	background: #ffc;
	border: 2px solid #f93;
	color: #f60;
	display: none;
	margin: 8px 0;
	padding: 5px;
}

#companyWidgetWrapper {
	width:960px;
	min-height: 424px;
	position:relative;
}

#companyWidgetWrapper .tabCont {
	position: absolute;
	left: 135px;
	width: 490px;
	top: 30px;
}

#companyWidgetWrapper .companyChartTab {
	display: none;
	position: absolute;
	width: 100%;
	top: 70px;
	height: 380px;
}

#companyWidgetWrapper .separator {
	display: none;
	border-top: 1px solid #323232;
	width: 956px;
	margin: 0;

	position: absolute;
	top: 61px;
	left: 2px;
	z-index: 0;
}

#companyWidgetWrapper .standardTab {
	background: #666;
	font-family: GothamBook, Helvetica, Arial, sans-serif;
	color: white;
	margin: 0 3px;
	padding: 0 5px;

	display: none;

	position: relative;
	top: 0px;
	height: 30px;
	line-height: 28px;
	border: 0;
	border: 1px solid #666;
	border-bottom: 1px solid #323232;
	z-index: 2;
}

#companyWidgetWrapper .standardTab_inner {
	width: auto;
}

#companyWidgetWrapper .standardTab_active {
	color: #FFA707;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#444444), to(#0a0a0a));
	background-image: -o-linear-gradient(top, #444444, #0a0a0a);
	background-image: linear-gradient(top, #444444, #0a0a0a);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff444444, endColorstr=#ff0a0a0a);
	border-color: #323232;
	border-bottom-color: #0a0a0a;
}

#companyLHSWrapper {
	float:left;
	width:465px;
}

#companyRHSWrapper {
	width:480px;
	float:right;
}

#addapricePopupForm {
	display:none;
}

#pdf_area {
	margin-bottom:7px;
	text-align:center;
}
#pdf_area .gbutton2 .subscribeSmallIcon {
	display:block;
	position:absolute;
	right:-60px;
	top: 5px;
}
#pdf_area .pdfResearchReport {
	display:none;
}
#pdf_area .pdfComingSoon {
	font-size:13px;
	color:#888;
	margin-bottom:15px;
}
#pdf_area .pdfComingSoon .subscribeSmallIcon {
	background: transparent url(../images/subscribeSmallIconDim-e68378f8f4.png) no-repeat;
	position:relative;
	left:3px;
	top:4px;
}

.pdfIcon {
	width:16px;
	height:16px;
	display:inline-block;
	background: url(../images/pdfIcon-dd7c22f0e4.png);
}

.plPopup {
	display: none;
	width: 960px;
	height: 600px;
	position: absolute;
	z-index: 100;
	margin: 0 auto;
	background: #fff url(../images/largeLoadingIcon-69f58b3c2c.gif) no-repeat 50% 50%;   
 border-radius: 4px;   
}

.plPopup iframe {
	width: 100%;
	height: 573px;
}

.plPopup h2 {
	height: 27px;
	color: #666;
	text-align: center;
	font-weight: bold;
	margin: 0;
	padding: 0;
	line-height: 27px;
	font-size: 12px;
	
	background: #c0c0c0;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e0e0e0), to(#b5b5b5));
	background-image: -o-linear-gradient(top, #e0e0e0, #b5b5b5);
	background-image: linear-gradient(top, #e0e0e0, #b5b5b5);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffe0e0e0, endColorstr=#ffb5b5b5);

	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.excelBanner {
	position: relative;
	width: 100%;
	height: 38px;
	margin: 5px 0 10px;
}

.excelBannerLogo {
	position: absolute;
	width: 62px;
	height: 38px;
	left: 0;
	top: 0;
	background: url(../images/excelBannerLogo-58140d5f6c.png);
}

.excelBannerBG {
	position: absolute;
	top: 6px;
	width: 890px;
	right: 0;
	height: 32px;
	line-height: 32px;
	padding: 0 0 0 50px;
	color: #fff;
	font-size: 14px;
	background: url(../images/excelBannerBG-7be61b7fb5.png) repeat-x;   
 border-radius: 6px;   
}

.excelBannerBGActive {
	background-position: 0 -32px;
}

.excelBannerButton {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 162px;
	height: 24px;
	line-height: 24px;
	color: #fff !important;
	font-weight: bold;
	font-size: 13px;
	text-align: center;
	background: transparent url(../images/excelBannerButton-66e6076924.png) !important;
}

#companyWidgetWrapper .notifications {
	position: absolute;
	top: 65px;	/* positions text just below the horizontal line for the summary metric chart tabs */
	left: 15px;	/* matches left alignment of company name & ticker in flash */
	color: white;
}
#companyWidgetWrapper .notifications a {
	color: #95d0fc;
}
/* all displayed as needed by JS in company.js */
.ticketsPopup, .lastReviewed, .tickets {
	display: none;
}

/* ----------------- paywall ------------------------- */

.pw-container-wrap {
	background-color:white;
	font-family:Lato;
	font-size:18px;
	font-style:normal;
	font-weight:300;
	line-height:26px;
	letter-spacing:-0.5px;
	height:733px
}

.pw-standard_section {
	padding-top: 10px;
	padding-bottom: 0px;
}

.pw-standard_section-2 {
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 2px;
}

.pw-h2-header {
	text-align: center;
	font-size: 35.7px;
	line-height: 40.8px;
	font-weight: 300;
}

.pw-h4-header {
	color: #333;
	line-height: 42px !important;
	font-size: 24px !important;
	margin-top: 0px !important;
	margin-bottom: 8px;
}

.pw-h3-header {
	margin-bottom: 0px;
	padding-bottom: 14px;
	padding-top: 14px;
	font-size: 24px;
	font-style: normal;
	font-weight:700;
	line-height:28px;
	border-left: 1px solid #e4e4e4;
	border-right: 1px solid #e4e4e4;
	border-bottom: 1px solid #EFEFEF;
	border-top: 1px solid #e4e4e4;
}

.pw-p-blue {
	margin-bottom: 0px;
	padding-bottom: 14px;
	padding-top: 14px;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	color: #1e83ec;
	width: 200px;
	margin-left: auto;
    margin-right: auto;
}

.pw-pricing-column {
	width: 33.2%;
	float: left;
	text-align: center;
}

.pw-pricing-column-content {
	min-height: 500px;
	border-left: 1px solid #e4e4e4;
	border-right: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
}

.pw-interval {
	color: #999;
	min-height: 38px;
	padding-bottom: 17px;
	text-align: center;
	line-height: 26px;
	font-size: 18px;
}

.pw-p {
	text-align: center;
	font-size: .9em;
	font-size: 16.2px;
	font-weight: 300;
}

.pw-p-2 {
	text-align: center;
	font-size: 15px;
	font-style: italic;
	line-height: 15px;
	font-weight: 400;
}

.pw-text-highlight {
	background: yellow;
	font-weight: 600;
	color: #000000;
	font-size: 16.2px;
	font-weight: 600;
}

.pw-regular-button {
	padding: 12px 18px;
	background-color: #1e83ec !important;
	border-radius: 200px !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	font-size: 12px;
	color: #FFFFFF !important;
	text-transform: uppercase !important;
	font-weight: 700;
	letter-spacing: 2px !important;
	top: -3px;
	margin-bottom: 10px;
	line-height: 20px;
}

.pw-a {
	color: #1e83ec !important;
	text-decoration: none;
	font-size: 16.2px;
	line-height: 26px;
	font-weight: 300;
}

/* ----------------- fadeToGrey 9-slicing ------------------------- */

.fadeToGrey {
  margin:11px 10px 19px 10px;
}

.fadeToGrey .nineSliceContent {
  margin:-2px 0 -8px 8px;
}

.fadeToGrey .nineSliceL, .fadeToGrey .nineSliceR {
	background: url(../images/fadeToGreyRepeatY-744bc80f71.png);
}

.fadeToGrey .nineSliceT, .fadeToGrey .nineSliceB {
	background: url(../images/fadeToGreyRepeatX-f52444bc7b.png);
}

.fadeToGrey .nineSliceL {
	left: -10px;
	width: 10px;
	/* background-position: 0 0;  not necessary, because 0 0 is the default*/
}

.fadeToGrey .nineSliceR {
	right: -10px;
	width: 10px;
	background-position: -10px 0;
}

.fadeToGrey .nineSliceT {
	top: -11px;
	height: 11px;
	background-position: 0 -60px;
}

.fadeToGrey .nineSliceB {
	bottom: -19px;
	height: 19px;
	background-position: 0 -71px;
}

.fadeToGrey .nineSliceTL {
	background-position: 0 0;
}

.fadeToGrey .nineSliceBL {
	background-position: 0 -11px;
}

.fadeToGrey .nineSliceTR {
	background-position: 0 -30px;
}

.fadeToGrey .nineSliceBR {
	background-position: 0 -41px;
}


/* ------------- blueBox 9-slicing -------------------- */

.blueBox {
	margin: 5px 3px 0 5px;
	background: #e1e8ef;
	border: 1px solid #e1e8ef;
}

.blueBox .nineSliceContent {
	margin-top: -2px;
}

.blueBox .nineSliceL, .blueBox .nineSliceR {
	background: url(../images/blueBoxRepeatY-64bb8ed65a.png);
}

.blueBox .nineSliceT, .blueBox .nineSliceB {
	background: url(../images/blueBoxRepeatX-a763567e7f.png);
}

.blueBox .nineSliceL {
	left: -8px;
	width: 8px;
	/* background-position: 0 0;  not necessary, because 0 0 is the default*/
}

.blueBox .nineSliceR {
	right: -8px;
	width: 8px;
	background-position: -8px 0;
}

.blueBox .nineSliceT {
	top: -7px;
	height: 7px;
	background-position: 0 -26px;
}

.blueBox .nineSliceB {
	bottom: -6px;
	height: 6px;
	background-position: 0 -33px;
}

.blueBox .nineSliceTL {
	background-position: 0 0;
}

.blueBox .nineSliceBL {
	background-position: 0 -7px;
}

.blueBox .nineSliceTR {
	background-position: 0 -13px;
}

.blueBox .nineSliceBR {
	background-position: 0 -20px;
}


/* ------------- privacy related ---------------------- */

/* this ensure that the spans for the lock images are inline-block, 
	unfortunately the IE6 png hack doesn't work  on inline-block spans
.modelHidden span {
	display: inline-block;
}
*/

.modelHidden {
	position:relative;
}
.lockWhy {
	padding-top:3px;
	display:inline-block;
}
.ppl_C4 .lockWhy {
	padding-top:7px;
}
/* this is to prevent "teleportation" of divs that were hidden when png hack was applied*/
.isHidden,.isAllHidden {
	position:relative;
}
.lockIcon, .lockIconOpen, .lockIconGrey, .lockAccessBlue {
	background: transparent url(../images/locks-e613dae356.png) no-repeat scroll 0 0;
}
.lockIconOpen {
	background-position: -20px 0;
}
.lockIconGrey {
	background-position: -60px 0;
}
.lockIcon, .lockIconOpen, .lockIconGrey, .lockIconLoading {
  	height:22px;
	width:20px;
}

.lockAccessBlue {
	width: 6px;
	height:8px;
	background-position: -80px 0;
	overflow:hidden;
}

span.lockIcon, span.lockIconOpen, span.lockIconGrey, span.lockIconLoading  {
	display:inline-block;
}

.lockIconLoading {
	background: transparent url(../images/loading20A-b6c9406f12.gif) no-repeat scroll 1px 1px;
}

.expandButton {
	width:15px;
	height:15px;
	background: url(../images/eventStreamToggleButtonSmall-845f1dfc6c.png);
	overflow: hidden;
	cursor:pointer;
	_cursor:hand;
}

.expandButtonExpanded {
	background-position: 0 -15px;
}



.dropdownInner {
  /* height: 17px; should have explicit height */
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
}

.dropdownPopup {
  /* top: 17px; should match height of dropdownInner */
  /* width: 200px; may need explicit width */
  display:none;
  background: url(../images/headerCompaniesBlueBG-070b052b94.png) repeat-x scroll 0 -24px #FFFFFF;
  border: 1px solid #3399CC;
  line-height: 18px;
  padding: 5px;
  position: absolute;
  right: 0;
  text-align: left;
  z-index: 5;
}
.blueDropdown .dropdownInner {
  background: url(../images/headerCompaniesBlueBG-070b052b94.png) repeat-x scroll 0 -8px transparent;
  border-left: 1px solid #3399CC;
  border-right: 1px solid #3399CC;
  border-top: 1px solid #3399CC;
  z-index: 6;
}
.blueDropdown .dropdownPopup {
	display:block;
}

#myInfoDropdown a {
	outline:none;
}
.dropdownContainer ul {
	margin:0;
	padding:10px 0 10px 10px;
	list-style-type:none;
	white-space: nowrap;
}
#myInfoDropdown {
	float:right;
	margin-top:3px;
	line-height:18px;
}
.dropdownContainer {
	position:relative;
}
#myInfoDropdown .discTri090p {
	right: 4px;
	position:absolute;
	top:5px;
}
#myInfoDropdown .dropdownInner {
	height:18px;
	padding-left:5px;
	position:relative;
	background-position:0 -7px;
	white-space: nowrap;
}
#myInfoDropdown .dropdownPopup {
	top : 18px;
	padding: 0;
	/* width is set by JS */
}

#myInfoDropdown .dropdownInner a {
	padding-right: 16px;
}

#myInfoDropdown .dropdownPopup a {
	text-decoration: none !important;
}
.intromsgcircle {
	float:left;
	height:22px;
	width:22px;
	background: url(../images/orangeDot-61121335ea.png) no-repeat 0 0 transparent;
	position:relative;
	top:2px;
	margin: 0 8px 0 16px;
}
.intromsgcircle span {
	color:#fff;
	float:left;
	font-size:14px;
	height:22px;
	width:22px;
	line-height:23px;
	text-align: center;
}

.sbsOrangeBullets li {
	height: 35px;
	list-style-type: none;
	background: url("../images/pricingPlus-b7ffc9a26a.png") no-repeat scroll 0 0 transparent;
	font-size: 14px;
	padding-left: 30px;
}


.add_to_mycollection_wrapper, .remove_from_mycollection_wrapper,
.restore_to_mycollection_wrapper, .copy_to_clipboard_wrapper,
.embed_popup_link_wrapper {
	width:140px;
	display:inline-block;
	padding-left: 20px;
}

.add_to_mycollection_wrapper {
	background: url(../images/bluePlus-d9ebf5868c.png) no-repeat;
}

.remove_from_mycollection_wrapper {
	background: url(../images/greenCheck-8cc361dcb7.png) no-repeat;
}

/*ticker search box, orginally copied from searchBoxWithMag styles above*/

.tickerSearchFieldWrapper {
	background: url(../images/searchBox-1154c025eb.png) 0 -21px;
	height: 21px;
	width: 204px;
	display:inline-block;
	line-height:21px;
	position:relative;
	margin-left:10px;
	margin-right:10px;
}

.tickerSearchFieldL {
	background: url(../images/searchBox-1154c025eb.png) 0 0;
	width:10px;
	height:21px;
	position:absolute;
	left:-10px;
    top:0;
	display:block;
}

.tickerSearchFieldR {
	background: url(../images/searchBox-1154c025eb.png) 0 -42px;
	width:10px;
	height:21px;
	position:absolute;
	right:-10px;
    top:0;
	display:block;
	
}

.tickerSearchField {
	width: 180px;
	border: 0;
	padding:0;
	font-size: 11px;
	margin:0 12px; 
}

.tickerSearchFieldMag {
	height : 11px;
	width : 11px;
  	background: url(../images/search2-87f962ea52.png) no-repeat;
  	position : absolute;
	top : 6px;	
}

.tickerSearchFieldMag.left{
	left : 0;
}

.tickerSearchFieldMag.right{
	right : 0;
}

.dialogClose, .styledDialogClose {
	position: absolute;
	top: 15px;
	right: 15px;
}


/* * * * * * * * * * * * * * * * *
 * Ui dialog bootstrap overrides *
 * * * * * * * * * * * * * * * * */
.styledDialog h1:first-child, 
.styledDialog h2:first-child, 
.styledDialog h3:first-child, 
.styledDialog h4:first-child {
    margin-top: 0;
}


/* Buttons reset css */
.styledDialog .ui-button-text-only .ui-button-text {
    padding: 0;
}

.styledDialog .ui-button .ui-button-text {
    display: auto;
    line-height: auto;
}

.styledDialog .ui-state-default.btn,
.styledDialog .ui-widget-content .ui-state-default.btn,
.styledDialog .ui-widget-header .ui-state-default.btn,
.styledDialog .ui-dialog-buttonpane .ui-state-hover.btn,
.styledDialog .ui-dialog-buttonpane .ui-state-active.btn,
.styledDialog .ui-dialog-buttonpane .ui-state-focus.btn
{
    background-image: none;
    font-weight: normal;
    color: #fff;
    background-color: #B0B0B0;
    border: 1px solid transparent;
}

.styledDialog .ui-state-default.btn.btn-primary,
.styledDialog .ui-widget-content .ui-state-default.btn.btn-primary,
.styledDialog .ui-widget-header .ui-state-default.btn.btn-primary,
.styledDialog .ui-dialog-buttonpane .ui-state-hover.btn.btn-primary,
.styledDialog .ui-dialog-buttonpane .ui-state-active.btn.btn-primary,
.styledDialog .ui-dialog-buttonpane .ui-state-focus.btn.btn-primary
{
    background-image: none;
    font-weight: normal;
    color: #fff;
    background-color: #0370D2;
    border: 1px solid transparent;
}

.styledDialog .ui-state-default.btn.btn-primary:hover,
.styledDialog .ui-widget-content .ui-state-default.btn.btn-primary:hover,
.styledDialog .ui-widget-header .ui-state-default.btn.btn-primary:hover,
.styledDialog .ui-dialog-buttonpane .ui-state-hover.btn.btn-primary:hover,
.styledDialog .ui-dialog-buttonpane .ui-state-active.btn.btn-primary:hover,
.styledDialog .ui-dialog-buttonpane .ui-state-focus.btn.btn-primary:hover,
.styledDialog .ui-state-default.btn.btn-primary:focus,
.styledDialog .ui-widget-content .ui-state-default.btn.btn-primary:focus,
.styledDialog .ui-widget-header .ui-state-default.btn.btn-primary:focus,
.styledDialog .ui-dialog-buttonpane .ui-state-hover.btn.btn-primary:focus,
.styledDialog .ui-dialog-buttonpane .ui-state-active.btn.btn-primary:focus,
.styledDialog .ui-dialog-buttonpane .ui-state-focus.btn.btn-primary:focus
{
    background-color: #025096;
}

.styledDialog .ui-state-default.btn.btn-default:hover,
.styledDialog .ui-widget-content .ui-state-default.btn.btn-default:hover,
.styledDialog .ui-widget-header .ui-state-default.btn.btn-default:hover,
.styledDialog .ui-dialog-buttonpane .ui-state-hover.btn.btn-default:hover,
.styledDialog .ui-dialog-buttonpane .ui-state-active.btn.btn-default:hover,
.styledDialog .ui-dialog-buttonpane .ui-state-focus.btn.btn-default:hover,
.styledDialog .ui-state-default.btn.btn-default:focus,
.styledDialog .ui-widget-content .ui-state-default.btn.btn-default:focus,
.styledDialog .ui-widget-header .ui-state-default.btn.btn-default:focus,
.styledDialog .ui-dialog-buttonpane .ui-state-hover.btn.btn-default:focus,
.styledDialog .ui-dialog-buttonpane .ui-state-active.btn.btn-default:focus,
.styledDialog .ui-dialog-buttonpane .ui-state-focus.btn.btn-default:focus
{
background-color: #919191;
}

.styledDialog .ui-dialog-content {
    padding: 0 !important;  /* overrides jquery ui inline style */
}

.ui-dialog .styledDialogClose {
	z-index: 91;	/* high enough to put it over the resizing bars that the jQuery dialog may insert */
    /* mimicks bootstrap styles (temporary skin until we switch to bootstrap modals) */
    color: #000;
    opacity: 0.2;
    font-weight: bold;
    font-size: 21px;
}

.ui-dialog, .ui-dialog.ui-widget-content.styledDialog {
    /* mimicks bootstrap styles */
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
    padding: 15px;
	z-index: 1054;
}

.ui-dialog .ui-widget-content.ui-dialog-buttonpane {
    /* mimicks bootstrap styles */
    border-top: 1px solid #eee;
    padding: 1em 0 0 0;
}

.styledDialog.ui-dialog .ui-dialog-buttonpane button {
    margin: 0 0 0 1em;
}
/* end overrides */


.styledDialogClose:hover,
.dialogClose:hover {
	background-position:-28px 0 !important;
}

.styledDialogClose:active,
.dialogClose:active {
	background-position:-56px 0 !important;
}

.styledDialog{
	background-color: #fff !important;
}

/* bootstrap classes, for if we ever switch. by default - this would be 100% */
.styledDialog .modal-body .sm-col-12 {
	width: 100%;
}

/* ----------- video & email-only signup section that lives on the RHS sidebar of some pages --------------- */

.videoTourWrapper{
	width:314px;
	height:468px;
	text-align:center;
}

.vidWrapper {
	background: #000;
}

a.videoTourPlay{
	width:71px;
	height:71px;
	background: url(../images/videoTourPlay-b783edc318.png);
	text-align:center;
	display:inline-block;
}

.emailOnlySignUpWrapper{
	text-align:left;
}

.emailOnlySignUpWrapper .emailLabel{
	font-weight:bold;
}

.emailOnlySignUpWrapper .error{
	color:red;
	font-size:10px;
}


/* Trefis Style Guide Global Components */

.global .content {
	width: 980px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	float: none;
}

.global.foot .disclosure a {
	color: #06c;
	text-decoration: underline;
}

.global.merrillHeader .content {
	height: 35px;
}

.merrill .global.merrillHeader .content {
	width: 996px;
}

/* =========================== HEADER ============================ */
.bernsteinHeaderRight{
	float:right; 
	display:inline-block; 
	width:173px;
	padding-top:56px;
	height:20px;
	background: url(../images/logo_bernstein_med-f661e8623c.png);
	background-repeat: no-repeat;
}


.bernsteinHeaderRight #bernsteinSubscribe{
	background-color: #dd4f2b;
	padding: 4px 15px;
	font-size:10px;
}


.global.header {
	background: #222222;
	color: white;
	border-top: solid #dd4f2b 1px;
	padding-top: 15px;
}

.global.header.merrillHeader{
	background: #009cde;
	margin-bottom: 69px;
}

.global.header .mainlogo {
	margin-top: 15px;
	margin-left: 10px;

	display: block;
	text-indent: -9999px;
	width: 201px;
	height: 33px;
	background: url(../images/trefisWhiteForegroundLogo-367572612a.png);
	background-color: transparent !important;
	outline: none;
}

.global.header.merrillHeader .mainlogo {
	position: absolute;
	margin-top: 10px;
	height: 36px;
	width: 176px;
	background: url(../images/trefis_blue-711f5786e5.png);
}

.global.header .advertisement {
	float: right;
}

.global.header input.search {
	width: 180px;
	height: 24px;
	background-color: white;
	background-image: url(../images/magnifyingGlass-877a58ae4a.png);
	background-repeat: no-repeat;
	background-position: 4px center;
	background-size: 12px 12px;
	padding-left: 20px;

	font-family: Helvetica, sans-serif;
	font-size: 11px;
	color: #858585;
	border: 0;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.global.header.merrillHeader input.search {
	width: 280px;
	background-image: url(../images/magnifyingGlassMerrillHeader-c161120854.png);
	padding-left: 25px;

	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
}

.global.header .searchForm {
	position: relative;
	padding-bottom: 30px;
	padding-top: 15px;
	text-align: left;
	margin-left: 10px;
	width: 250px;
}
.global.header.merrillHeader .searchForm {
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
}
.global.header .dashboardLink {
	/* Put this inside the form padding
	 * because not everyone sees it.
	 */
	position: absolute;
	bottom: 10px;
	left: 10px;

	background: inherit;
}

.global.header .menu {
	position: relative;
	text-align: right;

	height: 38px;
	border-top: solid #666666 1px;
	border-bottom: solid black 1px;
	
	font-family: "Gotham", sans-serif;
	font-size: 11px;

	background: #444444;
	background-image: -webkit-gradient(linear,
		left top, left bottom,
		from(rgb(85,85,85)), to(rgb(48,48,48)));
	background-image: linear-gradient(top,
		rgb(85,85,85) 0%, rgb(48,48,48) 100%);
	background-image: -o-linear-gradient(top,
		rgb(85,85,85) 0%, rgb(48,48,48) 100%);
	background-image: -ms-linear-gradient(top,
		rgb(85,85,85) 0%, rgb(48,48,48) 100%);

	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0, rgb(85,85,85)),
		color-stop(1, rgb(48,48,48)));
}

.global.header.merrillHeader .menu {
	background: #e5e2da;
	border: none;
	position: relative;
	top: 39px;
}

.global.header.shortHeader{
	padding-top:0px;
}

.global.header .shortHeader.logo{
	width:300px;
	height:20px;
	float:left;
	padding-left:25px;
	padding-top:15px;
	background: url(../images/TrefisLogoNoLinks-trans-9501b65c46.png);
	background-position: 4px center;
	background-repeat: no-repeat;
}

.global.header #myInfoDropdown {
	float:none;
}

.global.header .menu .dropdownPopup {
	background: #333333;
}

.global.header.merrillHeader .menu .dropdownPopup {
	background: #e5e2da;
}

.global.header .dropdownInner {
	border-style: none;
	background-image: none;
}

.global.header .menu ul.menubar:first-child {
	position: absolute;
	left: 0;
}

.global.header .menu ul.menubar {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: inline;
}

.global.header .menu ul.menubar > li {
	display: inline;
}

.global.header.merrillHeader .menu ul.menubar > li {
	border-right-style: solid;
	border-right-color: #acacac;
	border-right-width: 1px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.global.header.merrillHeader .menu ul.menubar > li:first-child {
	border-left-style: solid;
	border-left-color: #acacac;
	border-left-width: 1px;
}

.hidemenubar{
	display : none;
}

.global.header a {
	color: white;
	background-color: inherit;
}

.global.header .menu a,
.global.header .menu a:link,
.global.header .menu a:visited,
.global.header .menu a:active,
.global.header .menu a:hover {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 8px;
	padding-bottom: 8px;
	margin-left: 10px;
	margin-right: 10px;
	line-height: 38px;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.global.header.merrillHeader .menu a,
.global.header.merrillHeader .menu a:link,
.global.header.merrillHeader .menu a:visited,
.global.header.merrillHeader .menu a:active,
.global.header.merrillHeader .menu a:hover {
	font-family: arial;
	color: #333333;
}

.global.header .menu a:hover {
	background-color: #292929;
}

.global.header.merrillHeader .menu a:hover {
	background-color: #D4D0C5;
}

.global.header .menu a.signup {
	background-color: #dd4f2b;
	padding: 4px;
}

/* social buttons */
.global.header .menu a.social {
	margin-top: 10px;
	margin-bottom: 10px;
    margin-left: 5px;
    margin-right: 0;
	padding: 0;
	width: 18px;
	height: 18px;
	float: right;
	line-height: 18px;
	text-indent: -9999px;
	text-decoration: none;
	background: url(../images/socialIcons18x18-0f9cfc9cab.png);
}

.global.header .menu a.menulogo,
.global.header .menu span.menulogo {
	width: 105px;
	height: 34px;
	line-height: 34px;
	padding: 0;
	text-indent: -9999px;
	text-decoration: none;
	background: url(../images/trefis-logo-compact-nav-9593cd28b1.png) 0 6px no-repeat;
	display: inline-block;
	text-align: left;
}

.global.header .menu .menubar form.searchForm {
	display: inline;
	margin-left: 0px;
}

.mainlogo {
	display: block;
	text-indent: -9999px;
	width: 201px;
	height: 34px;
	background: url(../images/headerTrefisLogo-3379a64ade.png);
	background-color: transparent !important;
	outline: none;
}

.searchBoxWithMagWrapperL {
	background: url(../images/searchBox-1154c025eb.png) 0 0;
	width:10px;
	height:21px;
	position:absolute;
	left:-10px;
}

.searchBoxWithMagWrapperR {
	background: url(../images/searchBox-1154c025eb.png) 0 -42px;
	width:10px;
	height:21px;
	position:absolute;
	right:-10px;
}

.searchBoxWithMagWrapper {
	background: url(../images/searchBox-1154c025eb.png) 0 -21px;
	height: 21px;
	float: right;
	position:relative;
	margin: 9px 16px 0 22px;
	width: 190px;
	text-align: left; /* this fixes search box on articles page, where it would otherwise inherit text-align:center from body */
}

.searchBoxWithMag {
	width: 180px;
	border: 0;
	position: absolute;
	top: 4px;
	margin-left:-3px;
	padding:0;
	font-size: 11px;
}

.searchBoxMag {
	position : absolute;
	height : 11px;
	width : 11px;
  	background: url(../images/search2-87f962ea52.png) no-repeat;
	right : 0;
	top : 6px;	
}

.searchBoxWithMagWrapper.tickerSearchFieldWrapper{
	float:none;
	display:inline-block;
}




/* ================= FOOTER =================== */


/* not necessary, since 0 0 is the default
.global.header .menu a.fb,
.global.foot a.fb {
	background-position: 0 0;
}
*/

.global.header .menu a.li,
.global.foot a.li {
	background-position: 0 -18px;
}

.global.header .menu a.tw,
.global.foot a.tw {
	background-position: 0 -36px;
}

.global .userIcon {
	background-image: url(../images/greenShirtIcon-9ab6aaa262.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 18px 18px;
	padding-left: 20px;
}

.blueLock {
	background-image: url(../images/lockBlueSmall-a12e5a1e3f.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 18px 18px;
	padding-left: 15px;
}

.whiteLock {
	background-image: url(../images/lockWhiteSmall-ee8aa62e3f.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 18px 18px;
	padding-left: 15px;
}






.global.foot {
	background: #191919;
	color: #999999;
	margin-top: 60px;
	padding-left: 10px;
	text-align: left;
	font-family: Helvetica, sans-serif;
	font-size: 11px;
	line-height: 13px;
}

.global.foot .section {
	width: 220px;
	margin-left: 20px;
	float: left;
}

.global.foot h3,
.global.foot a {
	color: #b2d8ff;
	background: inherit;
}

.global.foot ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.global.foot li {
	font-size: 12px;
	margin: 3px 0;
}

.global.foot a.social {
	margin: 3px 0;
	padding-left: 22px;
	line-height: 18px;
	display: inline-block;
	background-image: url(../images/socialIcons18x18-0f9cfc9cab.png);
	background-repeat: no-repeat;
	text-align: left;
	color: inherit;
}

.global.foot .mainlogo {
	margin-top: 50px;
	border-top: solid #333333 1px;
	line-height: 35px;
	color: #444444;

	display: block;
	height: 32px;
	width: 99%;
	background-size: 100px 32px;
	text-indent: 115px;
	text-align: left;
	background: url(../images/trefisWatermarkBlackLogo-52c4c44f38.png);
	background-color: transparent !important;
	background-repeat: no-repeat;
	background-position: bottom left;
	outline: none;
}

.global.foot .content {
	padding-bottom: 50px;
}

.merrillFooter {
	margin: 0 10px;
}


/*
 * This looks a lot like Bootstrap's .alert-danger, down to identical
 * background and border colors.  Switching over the class should
 * probably be part of converting a page to Bootstrap.
 */
.alert-trefis {
	font-size:14px;
	font-weight: bold;
	color: #b94a48;
	background-color: #f2dede;
	border-color: #ebccd1;
	padding: 15px;
	border: 1px solid transparent;
	border-radius: 4px;
	text-align: center;
	margin-top:10px;
}

/* override bootstrap globals that cause problems */

#header-searchBox {
	-webkit-box-sizing: initial;
	box-sizing: initial;
}

.global.foot h3 {
	font-size: 1.17em;
	font-weight: bold;
}

body .alert {
	margin-bottom: 0;
}

.excelValidationDetail {
	text-align: left;
	font-size: 12px;
}
.excelValidationDetail .excelValidationErrorRed, .excelValidationDetail div{
	display:inline;
}
.excelValidationDetail .title {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: underline;
	display:block;
}

.excelValidationDetail .location, .excelValidationDetail .inputcell {
	display: list-item;
	margin-left: 45px;
}

.featuredInLogoImgContainer{
	width: 20%;
	float: left;
	padding: 5px 3% 5px 3%;
	text-align: center;
    font-size: 0.8em;
}

.featuredInLogoImg{
	width: 100%;
	height: 48px;
	float: left;
}

.modal-header-bold h2{
	font-weight: bold;
}
