@charset "UTF-8";
/*  ---- PRW site specific SCSS --------------------------------------------
   Author: Simon Allin :: SCSS created 07/17 - vanilla CSS from 17/07/2014
   ------------------------------------------------------------------------- */
/*  ===== COLOR SETTINGS =====================================================
    Author: Simon Allin | 2016 | 
    ==========================================================================  */
/* DOCUMENT INFORMATION

    -color palette for site
    -need to re-factor this system too many colors

*/
body {
  font-family: "Roboto Slab", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

p {
  margin-top: 0;
}

/* responsive breakpoint tools */
.wrap-text {
  white-space: pre;
  white-space: pre-wrap;
  white-space: pre-line;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -hp-pre-wrap;
  word-wrap: break-word;
}

.wrap-links {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*  ---- CUSTOM NORMALIZE CSS -------------------------------------------
    Author: Simon Allin / Fu Tang :: JULY 15
    ---------------------------------------------------------------------  */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* box-sizing: border-box; */
  font-size: 62.5%;
  /* Sets up the Base 10 stuff */
}

/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
body {
  margin: 0;
  padding: 0;
  font: 16px/1.231 "Roboto Slab", Arial, sans-serif;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.231 !important;
}
body input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

*, *:before, *:after {
  /*box-sizing: inherit;*/
}

main,
ul li {
  display: block;
}

/*  ---------------------------------------------------------------------
    #ATOMIC CSS | OOCSS classes 
    ---------------------------------------------------------------------  */
/* * {
  box-sizing: border-box !important;
}
 */
.text-center {
  text-align: center;
}

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

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

.bold {
  font-weight: bold;
}

.clear {
  clear: both;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

.right {
  float: right;
}

.left {
  float: left;
}

.u-float-none {
  float: none !important;
}

.valign {
  vertical-align: middle;
}

.relative {
  position: relative;
}

.text-color {
  color: #292f33;
}

.break-word {
  overflow-wrap: break-word;
}

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

.h-auto {
  height: auto;
}

.alignright {
  float: right;
  margin-left: 24px;
}

.alignleft {
  float: left;
  margin-right: 24px;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.a-search-highlight {
  background-color: #F8E71C;
  color: #333;
  font-weight: 700 !important;
  padding: 3px;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cloak {
  opacity: 0.5;
}

.cloak-dark {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  background-color: #666;
  z-index: 10;
}

.cloak {
  opacity: 0.5;
}

.link {
  color: #00A0DD;
}
.link--mo {
  color: #FF3366;
}
.link--contact {
  color: #00A0DD;
}
.link--feature {
  color: #FF6600;
}

.link--orange, .text--orange {
  color: #FF6600 !important;
}
.link--blue, .text--blue {
  color: #00A0DD;
}
.link--magenta, .text--magenta {
  color: #FF3366 !important;
}
.link--underline, .text--underline {
  text-decoration: underline;
}
.link--no-underline, .text--no-underline {
  text-decoration: none;
}

.count {
  font-family: "Mada", Arial, sans-serif;
  font-style: italic;
  color: gray;
}

.count-em {
  font-style: normal;
  letter-spacing: -0.5px;
}
.count-em--font-medium {
  font-weight: 500;
}
.count-em--font-roman {
  font-weight: 400;
}
.count-em--font-light {
  font-weight: 300;
}
.count-em--knock {
  color: #666;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 4rem;
  text-decoration: none;
  color: #333;
}
.close:after {
  content: "✖";
}

.flash-notice {
  font-family: "Mada", Arial, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-style: italic;
  color: gray;
  margin-top: -20px;
}

.margin-top-0 {
  margin-top: 0px;
}

.margin-right-0 {
  margin-right: 0px;
}

.margin-bottom-0 {
  margin-bottom: 0px;
}

.margin-left-0 {
  margin-left: 0px;
}

.negative-margin-top-0 {
  margin-top: -0px;
}

.negative-margin-right-0 {
  margin-right: -0px;
}

.negative-margin-bottom-0 {
  margin-bottom: -0px;
}

.negative-margin-left-0 {
  margin-left: -0px;
}

.padding-top-0 {
  padding-top: 0px;
}

.padding-right-0 {
  padding-right: 0px;
}

.padding-bottom-0 {
  padding-bottom: 0px;
}

.padding-left-0 {
  padding-left: 0px;
}

.width-0 {
  width: 0%;
}

.max-width-0 {
  width: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.width-10 {
  width: 10%;
}

.max-width-10 {
  width: 10px;
}

.margin-top-20 {
  margin-top: 20px;
}

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

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

.margin-left-20 {
  margin-left: 20px;
}

.negative-margin-top-20 {
  margin-top: -20px;
}

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

.negative-margin-bottom-20 {
  margin-bottom: -20px;
}

.negative-margin-left-20 {
  margin-left: -20px;
}

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

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

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

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

.width-20 {
  width: 20%;
}

.max-width-20 {
  width: 20px;
}

.margin-top-25 {
  margin-top: 25px;
}

.margin-right-25 {
  margin-right: 25px;
}

.margin-bottom-25 {
  margin-bottom: 25px;
}

.margin-left-25 {
  margin-left: 25px;
}

.negative-margin-top-25 {
  margin-top: -25px;
}

.negative-margin-right-25 {
  margin-right: -25px;
}

.negative-margin-bottom-25 {
  margin-bottom: -25px;
}

.negative-margin-left-25 {
  margin-left: -25px;
}

.padding-top-25 {
  padding-top: 25px;
}

.padding-right-25 {
  padding-right: 25px;
}

.padding-bottom-25 {
  padding-bottom: 25px;
}

.padding-left-25 {
  padding-left: 25px;
}

.width-25 {
  width: 25%;
}

.max-width-25 {
  width: 25px;
}

.margin-top-30 {
  margin-top: 30px;
}

.margin-right-30 {
  margin-right: 30px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-left-30 {
  margin-left: 30px;
}

.negative-margin-top-30 {
  margin-top: -30px;
}

.negative-margin-right-30 {
  margin-right: -30px;
}

.negative-margin-bottom-30 {
  margin-bottom: -30px;
}

.negative-margin-left-30 {
  margin-left: -30px;
}

.padding-top-30 {
  padding-top: 30px;
}

.padding-right-30 {
  padding-right: 30px;
}

.padding-bottom-30 {
  padding-bottom: 30px;
}

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

.width-30 {
  width: 30%;
}

.max-width-30 {
  width: 30px;
}

.margin-top-40 {
  margin-top: 40px;
}

.margin-right-40 {
  margin-right: 40px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.margin-left-40 {
  margin-left: 40px;
}

.negative-margin-top-40 {
  margin-top: -40px;
}

.negative-margin-right-40 {
  margin-right: -40px;
}

.negative-margin-bottom-40 {
  margin-bottom: -40px;
}

.negative-margin-left-40 {
  margin-left: -40px;
}

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

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

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

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

.width-40 {
  width: 40%;
}

.max-width-40 {
  width: 40px;
}

.margin-top-50 {
  margin-top: 50px;
}

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

.margin-bottom-50 {
  margin-bottom: 50px;
}

.margin-left-50 {
  margin-left: 50px;
}

.negative-margin-top-50 {
  margin-top: -50px;
}

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

.negative-margin-bottom-50 {
  margin-bottom: -50px;
}

.negative-margin-left-50 {
  margin-left: -50px;
}

.padding-top-50 {
  padding-top: 50px;
}

.padding-right-50 {
  padding-right: 50px;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.padding-left-50 {
  padding-left: 50px;
}

.width-50 {
  width: 50%;
}

.max-width-50 {
  width: 50px;
}

.margin-top-60 {
  margin-top: 60px;
}

.margin-right-60 {
  margin-right: 60px;
}

.margin-bottom-60 {
  margin-bottom: 60px;
}

.margin-left-60 {
  margin-left: 60px;
}

.negative-margin-top-60 {
  margin-top: -60px;
}

.negative-margin-right-60 {
  margin-right: -60px;
}

.negative-margin-bottom-60 {
  margin-bottom: -60px;
}

.negative-margin-left-60 {
  margin-left: -60px;
}

.padding-top-60 {
  padding-top: 60px;
}

.padding-right-60 {
  padding-right: 60px;
}

.padding-bottom-60 {
  padding-bottom: 60px;
}

.padding-left-60 {
  padding-left: 60px;
}

.width-60 {
  width: 60%;
}

.max-width-60 {
  width: 60px;
}

.margin-top-70 {
  margin-top: 70px;
}

.margin-right-70 {
  margin-right: 70px;
}

.margin-bottom-70 {
  margin-bottom: 70px;
}

.margin-left-70 {
  margin-left: 70px;
}

.negative-margin-top-70 {
  margin-top: -70px;
}

.negative-margin-right-70 {
  margin-right: -70px;
}

.negative-margin-bottom-70 {
  margin-bottom: -70px;
}

.negative-margin-left-70 {
  margin-left: -70px;
}

.padding-top-70 {
  padding-top: 70px;
}

.padding-right-70 {
  padding-right: 70px;
}

.padding-bottom-70 {
  padding-bottom: 70px;
}

.padding-left-70 {
  padding-left: 70px;
}

.width-70 {
  width: 70%;
}

.max-width-70 {
  width: 70px;
}

.margin-top-75 {
  margin-top: 75px;
}

.margin-right-75 {
  margin-right: 75px;
}

.margin-bottom-75 {
  margin-bottom: 75px;
}

.margin-left-75 {
  margin-left: 75px;
}

.negative-margin-top-75 {
  margin-top: -75px;
}

.negative-margin-right-75 {
  margin-right: -75px;
}

.negative-margin-bottom-75 {
  margin-bottom: -75px;
}

.negative-margin-left-75 {
  margin-left: -75px;
}

.padding-top-75 {
  padding-top: 75px;
}

.padding-right-75 {
  padding-right: 75px;
}

.padding-bottom-75 {
  padding-bottom: 75px;
}

.padding-left-75 {
  padding-left: 75px;
}

.width-75 {
  width: 75%;
}

.max-width-75 {
  width: 75px;
}

.margin-top-80 {
  margin-top: 80px;
}

.margin-right-80 {
  margin-right: 80px;
}

.margin-bottom-80 {
  margin-bottom: 80px;
}

.margin-left-80 {
  margin-left: 80px;
}

.negative-margin-top-80 {
  margin-top: -80px;
}

.negative-margin-right-80 {
  margin-right: -80px;
}

.negative-margin-bottom-80 {
  margin-bottom: -80px;
}

.negative-margin-left-80 {
  margin-left: -80px;
}

.padding-top-80 {
  padding-top: 80px;
}

.padding-right-80 {
  padding-right: 80px;
}

.padding-bottom-80 {
  padding-bottom: 80px;
}

.padding-left-80 {
  padding-left: 80px;
}

.width-80 {
  width: 80%;
}

.max-width-80 {
  width: 80px;
}

.margin-top-90 {
  margin-top: 90px;
}

.margin-right-90 {
  margin-right: 90px;
}

.margin-bottom-90 {
  margin-bottom: 90px;
}

.margin-left-90 {
  margin-left: 90px;
}

.negative-margin-top-90 {
  margin-top: -90px;
}

.negative-margin-right-90 {
  margin-right: -90px;
}

.negative-margin-bottom-90 {
  margin-bottom: -90px;
}

.negative-margin-left-90 {
  margin-left: -90px;
}

.padding-top-90 {
  padding-top: 90px;
}

.padding-right-90 {
  padding-right: 90px;
}

.padding-bottom-90 {
  padding-bottom: 90px;
}

.padding-left-90 {
  padding-left: 90px;
}

.width-90 {
  width: 90%;
}

.max-width-90 {
  width: 90px;
}

.margin-top-100 {
  margin-top: 100px;
}

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

.margin-bottom-100 {
  margin-bottom: 100px;
}

.margin-left-100 {
  margin-left: 100px;
}

.negative-margin-top-100 {
  margin-top: -100px;
}

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

.negative-margin-bottom-100 {
  margin-bottom: -100px;
}

.negative-margin-left-100 {
  margin-left: -100px;
}

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

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

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

.padding-left-100 {
  padding-left: 100px;
}

.width-100 {
  width: 100%;
}

.max-width-100 {
  width: 100px;
}

.margin-top-125 {
  margin-top: 125px;
}

.margin-right-125 {
  margin-right: 125px;
}

.margin-bottom-125 {
  margin-bottom: 125px;
}

.margin-left-125 {
  margin-left: 125px;
}

.negative-margin-top-125 {
  margin-top: -125px;
}

.negative-margin-right-125 {
  margin-right: -125px;
}

.negative-margin-bottom-125 {
  margin-bottom: -125px;
}

.negative-margin-left-125 {
  margin-left: -125px;
}

.padding-top-125 {
  padding-top: 125px;
}

.padding-right-125 {
  padding-right: 125px;
}

.padding-bottom-125 {
  padding-bottom: 125px;
}

.padding-left-125 {
  padding-left: 125px;
}

.width-125 {
  width: 125%;
}

.max-width-125 {
  width: 125px;
}

.margin-top-150 {
  margin-top: 150px;
}

.margin-right-150 {
  margin-right: 150px;
}

.margin-bottom-150 {
  margin-bottom: 150px;
}

.margin-left-150 {
  margin-left: 150px;
}

.negative-margin-top-150 {
  margin-top: -150px;
}

.negative-margin-right-150 {
  margin-right: -150px;
}

.negative-margin-bottom-150 {
  margin-bottom: -150px;
}

.negative-margin-left-150 {
  margin-left: -150px;
}

.padding-top-150 {
  padding-top: 150px;
}

.padding-right-150 {
  padding-right: 150px;
}

.padding-bottom-150 {
  padding-bottom: 150px;
}

.padding-left-150 {
  padding-left: 150px;
}

.width-150 {
  width: 150%;
}

.max-width-150 {
  width: 150px;
}

.margin-top-175 {
  margin-top: 175px;
}

.margin-right-175 {
  margin-right: 175px;
}

.margin-bottom-175 {
  margin-bottom: 175px;
}

.margin-left-175 {
  margin-left: 175px;
}

.negative-margin-top-175 {
  margin-top: -175px;
}

.negative-margin-right-175 {
  margin-right: -175px;
}

.negative-margin-bottom-175 {
  margin-bottom: -175px;
}

.negative-margin-left-175 {
  margin-left: -175px;
}

.padding-top-175 {
  padding-top: 175px;
}

.padding-right-175 {
  padding-right: 175px;
}

.padding-bottom-175 {
  padding-bottom: 175px;
}

.padding-left-175 {
  padding-left: 175px;
}

.width-175 {
  width: 175%;
}

.max-width-175 {
  width: 175px;
}

.margin-top-200 {
  margin-top: 200px;
}

.margin-right-200 {
  margin-right: 200px;
}

.margin-bottom-200 {
  margin-bottom: 200px;
}

.margin-left-200 {
  margin-left: 200px;
}

.negative-margin-top-200 {
  margin-top: -200px;
}

.negative-margin-right-200 {
  margin-right: -200px;
}

.negative-margin-bottom-200 {
  margin-bottom: -200px;
}

.negative-margin-left-200 {
  margin-left: -200px;
}

.padding-top-200 {
  padding-top: 200px;
}

.padding-right-200 {
  padding-right: 200px;
}

.padding-bottom-200 {
  padding-bottom: 200px;
}

.padding-left-200 {
  padding-left: 200px;
}

.width-200 {
  width: 200%;
}

.max-width-200 {
  width: 200px;
}

.margin-top-400 {
  margin-top: 400px;
}

.margin-right-400 {
  margin-right: 400px;
}

.margin-bottom-400 {
  margin-bottom: 400px;
}

.margin-left-400 {
  margin-left: 400px;
}

.negative-margin-top-400 {
  margin-top: -400px;
}

.negative-margin-right-400 {
  margin-right: -400px;
}

.negative-margin-bottom-400 {
  margin-bottom: -400px;
}

.negative-margin-left-400 {
  margin-left: -400px;
}

.padding-top-400 {
  padding-top: 400px;
}

.padding-right-400 {
  padding-right: 400px;
}

.padding-bottom-400 {
  padding-bottom: 400px;
}

.padding-left-400 {
  padding-left: 400px;
}

.width-400 {
  width: 400%;
}

.max-width-400 {
  width: 400px;
}

.container.modal-form-container.width-0 {
  width: 0%;
}

.container.modal-form-container.width-10 {
  width: 10%;
}

.container.modal-form-container.width-20 {
  width: 20%;
}

.container.modal-form-container.width-25 {
  width: 25%;
}

.container.modal-form-container.width-30 {
  width: 30%;
}

.container.modal-form-container.width-40 {
  width: 40%;
}

.container.modal-form-container.width-50 {
  width: 50%;
}

.container.modal-form-container.width-60 {
  width: 60%;
}

.container.modal-form-container.width-70 {
  width: 70%;
}

.container.modal-form-container.width-75 {
  width: 75%;
}

.container.modal-form-container.width-80 {
  width: 80%;
}

.container.modal-form-container.width-90 {
  width: 90%;
}

.container.modal-form-container.width-100 {
  width: 100%;
}

.container.modal-form-container.width-125 {
  width: 125%;
}

.container.modal-form-container.width-150 {
  width: 150%;
}

.container.modal-form-container.width-175 {
  width: 175%;
}

.container.modal-form-container.width-200 {
  width: 200%;
}

.container.modal-form-container.width-400 {
  width: 400%;
}

.material-icons {
  color: #737373;
  cursor: pointer;
  -webkit-transition: color 0.2s linear;
  -khtml-transition: color 0.2s linear;
  -moz-transition: color 0.2s linear;
  -ms-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.material-icons:hover {
  color: #333;
}

.material-icons:active {
  color: #333;
}

.material-icons:visited {
  color: #666;
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.action--tooltip {
  border-bottom: 1px dotted #666;
  padding-bottom: 3px;
}

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

.doc-header .material-icons {
  color: gray;
}
.doc-header .material-icons:hover {
  color: #4d4d4d;
}

.loading {
  opacity: 0.3;
}

.spinner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 15px auto;
  height: 50px;
  width: 50px;
  animation: rotate 0.8s infinite linear;
  border: 8px solid #e6e6e6;
  border-right-color: transparent;
  border-radius: 50%;
}
.spinner--center {
  bottom: 0;
  margin: auto;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader {
  width: 90px;
  height: 90px;
  background: transparent url("img/loading/spinner-ccc.gif");
  margin-left: auto;
  margin-right: auto;
}

.loader--pacman {
  background: transparent url("img/loading/pacman.gif");
}

.loader--kitten {
  width: 200px;
  height: 223px;
  background: transparent url("img/loading/loading-cat.gif");
}

.a-rs-product-text {
  font-family: "Mada", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.checkbox {
  height: 38px;
  width: 100%;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  display: inline-block;
}
@media (min-width: 768px) {
  .checkbox {
    width: auto;
    padding-left: 8px;
  }
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox] + label span {
  -webkit-transition: border 0.2s;
  -khtml-transition: border 0.2s;
  -moz-transition: border 0.2s;
  -ms-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  float: left;
  display: inline;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #b3b3b3;
}
.checkbox input[type=checkbox] + label span:before {
  display: block;
  width: 19px;
  height: 19px;
  text-align: center;
  line-height: 19px;
  content: " ";
}
.checkbox input[type=checkbox] + label:hover span {
  border: 1px solid gray;
}
.checkbox input[type=checkbox]:checked + label span {
  border: 1px solid gray;
}
.checkbox input[type=checkbox]:checked + label span:before {
  content: "✓";
}

.new-line {
  display: block;
  clear: both;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
}
.overlay--dark {
  display: block;
  visibility: visible;
  background: black;
  background: rgba(0, 0, 0, 0.25);
}

.emphasise {
  font-weight: 700;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spinner_hold {
  position: relative;
}

.loading {
  opacity: 0.3;
  -webkit-transition: opacity 0.2s;
  -khtml-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.spinner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 15px auto;
  height: 50px;
  width: 50px;
  animation: rotate 0.8s infinite linear;
  border: 8px solid #FF6600;
  border-right-color: transparent;
  border-radius: 50%;
}
.spinner--center {
  bottom: 0;
  margin: auto;
}
.spinner--relative-to {
  top: 50%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner-ring {
  display: block;
  width: 46px;
  height: 46px;
  margin: 12px auto;
}
.spinner-ring--center {
  bottom: 0;
  margin: auto;
}

.spinner-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #FF6600;
  border-color: #FF6600 transparent #FF6600 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.load {
  height: 6px;
  position: absolute;
  width: 100.5%;
  left: -3px;
  background-color: #b3b3b3;
}
.load--dashboard {
  position: relative;
  width: 100%;
  left: 0;
}
.load-bar {
  position: relative;
  width: 100%;
  height: 6px;
  /*background-color: palette( grey, light_20 );*/
  background-color: transparent;
  opacity: 0.8;
}
.load .bar {
  content: "";
  display: inline;
  position: absolute;
  left: 50%;
  width: 0;
  height: 100%;
  text-align: center;
}
.load .bar:nth-child(1) {
  animation: loading 1s linear infinite;
}
.load .bar:nth-child(2) {
  background-color: #cccccc;
  animation: loading 1s linear 1s infinite;
}
.load .bar:nth-child(3) {
  animation: loading 1s linear 1s infinite;
}
.load--white {
  background-color: transparent;
}
.load--white .load-bar {
  background-color: transparent;
}
.load--white .bar:nth-child(2) {
  background-color: white;
}

@keyframes loading {
  from {
    left: 50%;
    width: 0;
    z-index: 100;
  }
  33.3333% {
    left: 0;
    width: 100%;
    z-index: 10;
  }
  to {
    left: 0;
    width: 100%;
  }
}
@keyframes eyeCatcher {
  100% {
    border-color: #a3a3a3;
  }
  0% {
    border-color: #a3a3a3;
  }
}
.v-align {
  vertical-align: middle;
}

.v-align--top {
  vertical-align: top;
}

/*  ===== BASE FONT EXTENDERS ================================================
    Author: Simon Allin | 2017 | 
    ==========================================================================  */
/* DOCUMENT INFORMATION

    -Placeholders / mixins / classes for base text styles
    -.e- class names can be used directly in the HTML

*/
.rs-sidebar__title, .rs-title__level-2 {
  font-family: "Mada", Arial, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: -1px;
  font-weight: 300;
}

.rs-title__level-3 {
  font-family: "Mada", Arial, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: -1px;
  font-weight: 300;
}

.qtip__title, .rs-title__level-4 {
  font-family: "Mada", Arial, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: -1px;
  font-weight: 300;
}

.e-core-heading {
  font-family: "Mada", Arial, sans-serif;
  font-size: 45px;
  font-size: 4.5rem;
  letter-spacing: -1px;
  font-weight: 300;
}

.e-core-heading--level-1 {
  font-family: "Mada", Arial, sans-serif;
  font-size: 36px;
  font-size: 3.6rem;
  letter-spacing: -1px;
  font-weight: 300;
}

.e-core-heading--level-2 {
  font-family: "Mada", Arial, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: -1px;
  font-weight: 300;
}

.e-core-heading--level-3 {
  font-family: "Mada", Arial, sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: -1px;
  font-weight: 300;
}

.e-core-heading--level-4 {
  font-family: "Mada", Arial, sans-serif;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: -1px;
  font-weight: 300;
}

.e-news-title--article-h1 {
  font-family: "Mada", Arial, sans-serif;
  font-size: 38px;
  font-size: 3.8rem;
  letter-spacing: -0.7px;
}
.rs-title__level-2 {
  display: block;
}
.rs-title__level-3 {
  display: block;
}
.rs-title__level-4 {
  display: block;
}
.rs-sidebar__title {
  display: block;
  margin-bottom: 20px;
  padding-top: 16px;
  padding-bottom: 12px;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #d3d3d3;
}

.e-rs-h-reset h1, .e-rs-h-reset h2, .e-rs-h-reset h3, .e-rs-h-reset h4, .e-rs-h-reset h5, .e-rs-h-reset h6 {
  line-height: 1.231;
}
.e-rs-h-reset header {
  z-index: auto;
}

.e-font-thin {
  font-weight: 100 !important;
}

.e-font-light {
  font-weight: 300 !important;
}

.e-font-roman {
  font-weight: 400 !important;
}

.e-font-medium {
  font-weight: 500 !important;
}

.e-font-bold {
  font-weight: 700 !important;
}

.e-font-magenta {
  color: #FF3366;
}
.e-font-blue {
  color: #00A0DD;
}
.e-font-orange {
  color: #FF6600;
}

.e-font-mada {
  font-family: "Mada", Arial, sans-serif;
}

/* stansard article body */
.e-a-body-font, .admin-header-help, #info_tab ul li, .release_body p {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0 0 24px 0;
}
.e-a-body-font--lrg {
  font-family: "Mada", Arial, sans-serif;
  font-size: 20px;
  font-size: 2rem;
}

.e-font-size-inherit {
  font-size: inherit;
}

.c-heading {
  font-family: "Mada", Arial, sans-serif;
  font-size: 34px;
  font-size: 3.4rem;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.3;
}
.c-heading--massive {
  font-size: 80px;
  font-size: 8rem;
}
.c-heading--rs-promo {
  font-size: 50px;
  font-size: 5rem;
  font-weight: 900;
}
.c-heading--l2 {
  font-size: 26px;
  font-size: 2.6rem;
}
.c-heading--medium {
  font-weight: 500;
}
.c-heading--l3 {
  font-size: 23px;
  font-size: 2.3rem;
}
.c-heading--l4 {
  font-size: 20px;
  font-size: 2rem;
}
.c-heading--l6 {
  font-size: 18px;
  font-size: 1.8rem;
}
.c-heading--rev {
  color: #fff;
}
.c-heading--tape {
  float: left;
  width: auto;
  padding: 24px;
  background: rgba(0, 0, 0, 0.7);
}
.c-heading--tape-sml-padd {
  padding: 12px;
}
.c-heading--tape-mid {
  background: rgba(0, 0, 0, 0.4);
}
.c-heading--tape-rev {
  background: rgba(255, 255, 255, 0.8);
}
.c-heading--magenta {
  color: #FF3366;
}
@media (min-width: 46.25em) {
  .c-heading--hero {
    position: absolute;
    left: 24px;
    bottom: 0;
    max-width: webkit-calc(100% - 330px);
    max-width: -moz-calc(100% - 330px);
    max-width: calc(100% - 330px);
  }
}
@media (min-width: 61.25em) {
  .c-heading--hero\@desktop {
    position: absolute;
    left: 24px;
    bottom: 0;
    max-width: webkit-calc(100% - 330px);
    max-width: -moz-calc(100% - 330px);
    max-width: calc(100% - 330px);
  }
}
@media (min-width: 81.25em) {
  .c-heading--hero\@wide {
    position: absolute;
    left: 24px;
    bottom: 0;
    max-width: webkit-calc(100% - 330px);
    max-width: -moz-calc(100% - 330px);
    max-width: calc(100% - 330px);
  }
}
@media (min-width: 46.25em) {
  .c-heading--hero-ln {
    left: auto;
  }
}
.c-heading--hero-plans {
  text-align: center;
  padding-top: 180px;
  background-image: url(svg/ico/ico-packages.svg);
  background-repeat: no-repeat;
  background-size: 230px;
  background-position: center top;
}
.c-heading--shadow {
  text-shadow: 1px 1px 1px rgba(25, 25, 25, 0.7);
}
.c-heading--slab {
  position: relative;
  margin-bottom: 0;
  padding: 12px;
  float: left;
  width: auto;
  background: #ccc;
}
.c-heading--slab:after {
  content: " ";
  display: block;
  position: absolute;
  right: -80px;
  width: 80px;
  top: 0;
  bottom: 0;
  fill: #ccc;
  background-image: url('data:image/svg+xml;utf8,<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 240 240"  xml:space="preserve"><g><polygon fill="#ccc" points="240,240 0,240 0,0 "/></g></svg>');
  background-size: cover;
}
.c-heading--slab-magenta {
  color: #fff;
  background-color: #FF3366;
}
.c-heading--slab-magenta:after {
  background-image: url('data:image/svg+xml;utf8,<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 240 240"  xml:space="preserve"><g><polygon fill="#FF3366" points="240,240 0,240 0,0 "/></g></svg>');
}
.c-heading--slab-blue {
  color: #fff;
  background-color: #0085B2;
}
.c-heading--slab-blue:after {
  background-image: url('data:image/svg+xml;utf8,<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 240 240"  xml:space="preserve"><g><polygon fill="#0085B2" points="240,240 0,240 0,0 "/></g></svg>');
}
.c-heading--slab-grey {
  color: #fff;
  background-color: #666;
}
.c-heading--slab-grey:after {
  background-image: url('data:image/svg+xml;utf8,<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 240 240"  xml:space="preserve"><g><polygon fill="#666" points="240,240 0,240 0,0 "/></g></svg>');
}
.c-heading--slab-orange {
  color: #fff;
  background-color: #FF6600;
}
.c-heading--slab-orange:after {
  background-image: url('data:image/svg+xml;utf8,<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 240 240"  xml:space="preserve"><g><polygon fill="#FF6600" points="240,240 0,240 0,0 "/></g></svg>');
}
.c-heading--slab-light-grey {
  background-color: #E4E3E3;
}
.c-heading--slab-light-grey:after {
  background-image: url('data:image/svg+xml;utf8,<svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 240 240"  xml:space="preserve"><g><polygon fill="#E4E3E3" points="240,240 0,240 0,0 "/></g></svg>');
}
.c-heading--html-format ul {
  padding-top: 12px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
}

/* base font mixins/extenders */
/*  ===== QTIP OVERRIDES =============================================
    | July 2017 | 
    ==========================================================================  */
.qtip-bootstrap {
  border-radius: 0;
  border: 2px solid #ccc;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}
.qtip-bootstrap--100 {
  width: 100px;
  max-width: 100px;
}
.qtip-bootstrap--200 {
  width: 200px;
  max-width: 200px;
}
.qtip-bootstrap--300 {
  width: 300px;
  max-width: 300px;
}
.qtip-bootstrap--400 {
  width: 400px;
  max-width: 400px;
}
.qtip-bootstrap--600 {
  width: 600px;
  max-width: 600px;
}
.qtip-bootstrap--600 .qtip-content {
  max-height: 240px;
  overflow-y: auto;
}
.qtip-bootstrap p {
  margin: 5px;
  line-height: 2rem;
}

.qtip-icon, .qtip-icon .ui-icon {
  border-radius: 0;
  border: none;
}

.qtip-close {
  top: 9px;
  right: 9px;
}

.qtip-text {
  display: none;
}

.qtip-text--medium {
  display: none;
}

.qtip-text--large {
  display: none;
}

.qtip-icon-container {
  display: inline-block;
}

.qtip__title {
  margin: 5px;
}

.newsroom_whitey {
  padding-top: 20px;
}

#about .page_center {
  margin: 0 5%;
}

#about h1 {
  margin-bottom: 0;
}

p.send_release, p.receive_release {
  padding-bottom: 16px;
}

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

/*  ==========================================================================
    RELEASE PAGE
    ==========================================================================  */
.release_article a {
  text-decoration: none;
}

.release_article article header h1 {
  margin: 0 0 0 0;
  padding: 20px 0 20px;
}

.addthis_toolbox {
  display: block;
  width: auto;
  clear: both;
  padding-top: 20px;
  min-width: 205px;
}

.release_body {
  clear: both;
  padding: 35px 0;
}

.body_extra h3 {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.body_extra .soundbite {
  margin: 4px 0 0 0;
  padding: 30px 0;
  font-family: "Roboto Slab", Arial, sans-serif;
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 300;
  background: transparent url(img/icons/open_quote_lg.png) no-repeat scroll 0 0;
}
@media (min-width: 768px) {
  .body_extra .soundbite {
    padding-bottom: 0;
  }
}

.foot_note {
  padding: 20px 0;
  border-top: 1px dotted #ccc;
}

.pipe {
  float: left;
  height: 18px;
  margin-top: 4px;
  padding: 0 10px;
  color: #ccc;
}

.company_rss {
  padding: 0 0 23px 0;
  margin-top: 10px;
}

#SW h2.home_title.left {
  font-size: 195%;
  margin-bottom: 10px;
}

.rel_time time {
  float: left;
  margin: 0 8px 0 0;
  padding: 8px 6px 8px 0;
  color: #666;
}

/*  =====================================
    SIDE BAR
    =====================================  */
.release_display_side h2 {
  margin: 0 0 20px 0;
  padding: 16px 0 12px;
  font-size: 200%;
  font-family: "Mada", Arial, sans-serif;
  font-weight: 300;
  color: #666;
  border-bottom: 1px solid #ccc;
}

aside .side_info li {
  margin-bottom: 12px;
}

.aside_box {
  padding-bottom: 30px;
}

.aside_link {
  text-decoration: none;
  margin-top: 6px;
  display: block;
}

/*  =====================================
    NEWSROOMS
    =====================================  */
img.newsroom_logo {
  max-width: 100%;
  padding: 12px 0;
}

.newsroom_follow {
  padding: 16px 0;
}

.newsroom_about {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 400;
}

/*  =====================================
    ATTATCHMENTS
    =====================================  */
img.release_img {
  max-width: 100%;
  margin-bottom: 8px;
}

.release_attatchments li {
  margin-bottom: 16px;
}

.release_attatchments img {
  max-width: 80%;
}

@media only screen and (min-width: 480px) {
  /*  ==========================================================================
  	1 THIRD up
  	========================================================================== */
}
@media only screen and (min-width: 768px) {
  /*  ==========================================================================
  	2 THIRDS up
  	========================================================================== */
  .addthis_toolbox {
    float: right;
    width: auto;
    clear: none;
    padding-top: 0;
    min-width: 205px;
  }

  .release_display_main {
    float: left;
    width: webkit-calc(72% - 48px );
    width: -moz-calc(72% - 48px );
    width: calc(72% - 48px );
    margin-right: 48px;
  }

  .release_display_side {
    float: right;
    width: 28%;
    line-height: 1.4;
  }

  .release_article article header h1 {
    font-family: "Mada", Arial, sans-serif;
    font-size: 50px;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 30px;
  }

  .rel_time {
    float: left;
    width: auto;
  }

  #SW h1.heading.center {
    display: inline-block;
  }

  #about .page_center {
    margin-left: auto;
    margin-right: auto;
  }

  .body_extra {
    float: right;
    width: 40%;
    padding-bottom: 10px;
    margin-left: 13px;
  }
}
@media only screen and (min-width: 1140px) {
  /*  ==========================================================================
  	FULL WIDTH
  	========================================================================== */
  #SW h2.home_title.left {
    float: left;
  }
}
/*  ==========================================================================
    GENERIC STYLES
    ==========================================================================  */
a {
  color: #006699;
}

p {
  line-height: 1.8em;
}

.wrapper.margin_top {
  margin-top: 40px;
}

/*.list_reset { list-style-type: none; padding:0 0 0 0; margin:0 0 0 0; }*/
/*.inline li { display: inline; }*/
.step_pad {
  padding: 0 10%;
}

.page_centre {
  margin: 0 auto;
}

/*.center { text-align: center; }*/
/*this has is also included in mliu_core*/
.center_align {
  margin-left: auto !important;
  margin-right: auto !important;
}

h1.no_padding {
  padding: 0 0 0 0;
}

h1.no_margin {
  margin: 0 0 0 0;
}

h1.heading {
  font-family: "Mada", Arial, sans-serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  margin: 28px 0;
  color: #666;
}

h1.plain.medium {
  font-size: 160%;
}

h1.heading.center {
  display: none;
  width: auto;
  text-align: center;
}

h1.heading.outline {
  border-bottom: 3px solid #CFCFCF;
  padding-bottom: 6px;
}

h1.heading.underline {
  border-bottom: 2px solid #CFCFCF;
}

h2.pricing_header span {
  color: #83AC44;
  font-weight: bold;
}

.pa_logo {
  display: block;
  width: 100px;
  height: 100px;
  margin-top: 8px;
  background: transparent url(img/promo/pa_logo_100x100_2015.png) no-repeat;
}

#SW div.release_list {
  padding: 0 0 60px;
}

/*  ==========================================================================
    INDEX STYLES
    ==========================================================================  */
.newsroom_examples {
  clear: both;
}

.newsroom_examples li {
  float: left;
  width: 33%;
  text-align: center;
}

.newsroom_examples li a {
  display: block;
}

.newsroom_examples li img {
  max-width: 80%;
  display: inline-block;
  margin: 0 auto;
}

.promo {
  border-top: 1px solid #ccc;
}

.promo.light_grey {
  background: #f7f7f7;
}

.promo.mid_grey {
  background: #ccc;
}

.promo.grey {
  background: #575859;
}

.promo.green {
  background: #61A233;
}

.promo.magenta {
  background: #ff0066;
}

.promo.orange {
  background: #FBB611;
}

.promo.blue {
  background: #13A1E1;
}

.promo.light_blue {
  background: #C0DDEA;
}

.press_association_logo {
  margin: 10px 20px 20px 0;
  float: left;
  padding-right: 20px;
  border-right: 1px solid #B02025;
}

.dual_box {
  float: left;
  width: 45.7%;
}

.dual_box.left {
  padding-right: 4%;
  border-right: 3px dotted #ccc;
}

.dual_box.right {
  padding-left: 4%;
}

.sub_info {
  padding: 30px 0 10px;
}

h3.persuasive {
  display: inline-block;
  width: auto;
  margin: 16px auto;
  border: solid 1px #E8E8E8;
  border-radius: 6px;
  margin: 30px 0;
  padding: 10px;
  background: #FFF;
  font-size: 167%;
  font-weight: normal;
  box-shadow: 3px 3px rgba(0, 1, 2, 0.1);
}

h3.persuasive span {
  color: #F8B213;
  font-weight: bold;
  text-decoration: underline;
}

.persuasive.light {
  border-color: #B2B2B2;
}

.persuasive.negative {
  margin-bottom: -10px;
  z-index: 1;
  position: relative;
}

/*  =====================================
    Sub menu for sub about pages
    =====================================  */
/*  =====================================
    Prices page
    =====================================  */
.price.section {
  margin-right: 4%;
  min-height: 400px;
}

.price.section.right {
  margin: 8% 0 0 0;
}

.price h2 {
  padding: 5px 0;
  margin: 0 0 15px 0;
  font-size: 180%;
  font-family: "Mada", Arial, sans-serif;
  font-weight: normal;
}

.price > span {
  padding: 10px 0;
  display: block;
  color: #666666;
}

.price .benefits {
  width: auto;
  margin: 0 auto;
  padding: 20px 3%;
  background-color: #f7f7f7;
  border: solid 2px #e7e7e7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
@media (min-width: 61.25em) {
  .price .benefits {
    width: 80%;
  }
}

.price .benefits li {
  font-size: 16px;
  font-size: 1.6rem;
  background: url(/img/about/price_tick.gif) no-repeat 8px 10px;
  color: #666;
  padding: 12px 8px 12px 50px;
  margin-bottom: 2px;
  text-align: left;
}

.price .benefits li.title {
  background-image: none;
  padding-left: 8px;
  font-weight: bold;
}

.packages {
  border: 3px solid #cccccc;
  margin-bottom: 45px;
}

.packages.center {
  text-align: center;
}

.packages > li {
  padding: 15px 20px;
}

.packages > li:nth-child(2) {
  border: 2px solid #e7e7e7;
  border-right: none;
  border-left: none;
  background-color: #f7f7f7;
}

/* pricing extras */
.extras {
  border: 1px solid #cccccc;
  border-right: none;
  border-left: none;
}

.extras > li {
  padding: 7px 0;
  position: relative;
}

.extras > li:first-child {
  margin-top: 10px;
}

.extras > li:last-child {
  margin-bottom: 15px;
}

/*  general settign */
.desc, .cost {
  line-height: 1.2;
}
@media (min-width: 61.25em) {
  .desc, .cost {
    display: inline-block;
    vertical-align: middle;
  }
}

.desc {
  font-family: "Mada", Arial, sans-serif;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 400;
}
@media (min-width: 61.25em) {
  .desc {
    text-align: left;
    width: webkit-calc(100% - 154px);
    width: -moz-calc(100% - 154px);
    width: calc(100% - 154px);
  }
}

.cost {
  font-family: "Mada", Arial, sans-serif;
  font-size: 50px;
  font-size: 5rem;
  letter-spacing: -0.5px;
  font-weight: 300;
  margin: 0 0 0 0;
}
@media (min-width: 61.25em) {
  .cost {
    width: 150px;
    text-align: right;
  }
}
.cost > small {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
}

.extras .desc {
  font-family: "Mada", Arial, sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 400;
}
@media (min-width: 61.25em) {
  .extras .desc {
    width: webkit-calc(100% - 104px);
    width: -moz-calc(100% - 104px);
    width: calc(100% - 104px);
  }
}

.extras .cost {
  font-size: 30px;
  font-size: 3rem;
}
@media (min-width: 61.25em) {
  .extras .cost {
    width: 100px;
  }
}

.desc span {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 2px;
  color: #60A133;
  display: block;
}

.desc span b {
  text-decoration: underline;
}

.cost small {
  letter-spacing: normal;
}

.cost em {
  font-family: "Mada", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.cost span {
  letter-spacing: -5px;
}

@media only screen and (min-width: 768px) {
  /*  ==========================================================================
  	2 THIRDS up
  	========================================================================== */
  .price.section {
    width: 48%;
    float: left;
    margin-right: 4%;
    min-height: 400px;
  }

  .price.section.right {
    margin: 0 0 0 0;
  }
}
/*  =====================================
       Reviews / Case studies
       =====================================  */
.featured {
  padding-top: 50px;
}

.case_study.feature {
  float: left;
  width: 32.5%;
  min-height: 200px;
  margin: 0 1% 0 0;
}

.case_study.feature.single {
  float: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.case_study span {
  position: relative;
}

.case_study.feature img {
  width: 100%;
  height: auto;
}

.case_study.feature h3, .case_study.featurecenter h3 {
  font-family: "Mada", Arial, sans-serif;
  font-size: 27px;
  font-size: 2.7rem;
  color: #333;
  margin: 0 0 0 0;
  padding: 10px 8px 10px 8px;
}

.case_study.feature.last {
  margin-right: 0;
}

.case_study.feature h3 small {
  color: #8B8989;
}

.case_study.feature.double {
  background-color: #DFDFDF;
  width: 85%;
  float: none;
  vertical-align: top;
  margin: 0 auto;
}

.case_study.feature.double.last {
  margin-top: 20px;
}

.quotes {
  margin-top: 50px;
}

.quotes .quote {
  width: 100%;
  display: block;
  margin: 0 auto 0;
  padding: 20px 0;
  border-bottom: 2px solid #E7E7E7;
  font-size: 120%;
}

.quotes .quote.clear_line {
  border-bottom: none;
}

.quotes .quote blockquote {
  margin: 0 0;
}

.quotes .quote p.author {
  margin-bottom: 0;
}

.review {
  margin-top: 40px;
}

#SW .review h3 {
  margin-top: 0;
  font-family: "Mada", Arial, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 300;
  color: #333;
}

.review h2.divorce_online {
  width: 100%;
  height: 65px;
  margin-top: 0;
  background: transparent url(/img/about/case_study/divorce_online_logo.png) no-repeat;
  background-size: 100%;
}

.review h2.famous_publicity {
  height: 147px;
  margin-top: 0;
  background: transparent url(/img/about/case_study/mot_online_logo.jpg) no-repeat;
}

.study.company_info img {
  width: 100%;
  margin: 0 0 0 0;
}

.study.company_info .info {
  padding: 12px 4%;
  background-color: #E7E7E7;
}

/*csimg used for about/reviews/case-studies*/
#about a {
  text-decoration: none;
}

#about .faq.list li a:hover, #about p a:hover, #about h3 a:hover {
  text-decoration: underline;
}

.csimg_inset.left {
  float: left;
  margin-right: 15px;
}

.csimg_inset {
  margin: 8px 0px 15px 0px;
  border: 1px solid #ccc;
}

.faq.list {
  margin-bottom: 40px;
}

@media only screen and (min-width: 480px) {
  /*  ==========================================================================
  	1 THIRD up
  	========================================================================== */
  .case_study.feature.double {
    width: 197px;
    float: none;
    margin: 0 5px 0 5px;
    display: inline-block;
    display: -moz-inline-stack;
    zoom: 1;
    *display: inline;
  }

  .case_study.feature.double.last {
    margin-top: 0;
  }

  .study.company_info {
    float: right;
    width: 35%;
    margin-left: 4%;
    margin-bottom: 12px;
  }

  .review h2.divorce_online {
    width: 420px;
    height: 90px;
  }
}
@media only screen and (min-width: 550px) {
  /*  ==========================================================================
  	2 THIRD up
  	========================================================================== */
  .case_study.feature.double {
    width: 216px;
    margin: 0 10px 0 10px;
  }
}
@media only screen and (min-width: 768px) {
  /*  ==========================================================================
  	3 THIRDS up
  	========================================================================== */
  .quotes .quote {
    width: 70%;
  }

  .side.right {
    width: 75%;
  }
}
@media only screen and (min-width: 1140px) {
  /*  ==========================================================================
  	FULL WIDTH
  	========================================================================== */
}
/*  =====================================
    ABOUT JOURNO specific
    =====================================  */
/* about box */
#ABOUT_NEWSROOMS {
  border: 1px solid #ccc;
  border-radius: 6px;
  font: 12px arial;
  margin: auto;
  width: 900px;
}

/* about li */
#ABOUT_NEWSROOMS li {
  width: 429px;
  padding: 10px;
  margin: 0 0 0 0;
  float: left;
  display: inline;
  background: #f9f9f9;
  border-bottom: 1px solid #e7e7e7;
}

#ABOUT_NEWSROOMS li.left {
  width: 429px;
  border-right: 1px solid #e7e7e7;
}

#ABOUT_NEWSROOMS li.last_row {
  border-bottom: none;
}

/* white row */
.about-box .white-row {
  background: #fff;
  border-top: 1px solid #ddd;
}

#ABOUT_NEWSROOMS h3 {
  font-size: 173.1%;
  margin-top: 10px;
  padding-left: 8px;
}

p.newsroom_promo {
  float: left;
  width: 306px;
  height: 100px;
}

p.newsroom_promo_icon {
  float: left;
  width: 106px;
  height: 100px;
  margin: 0 6px;
  background: url(/img/newsrooms/newsrooms_sprite.png) no-repeat left 4px;
}

p.newsroom_promo_icon.publish {
  background-position: left -96px;
}

p.newsroom_promo_icon.social {
  background-position: left -196px;
}

p.newsroom_promo_icon.tracking {
  background-position: left -296px;
}

p.newsroom_promo_icon.customise {
  background-position: left -396px;
}

p.newsroom_promo_icon.about {
  background-position: left -496px;
}

.newsroom_promo_action {
  text-align: center;
  margin: 30px 0;
}

.action {
  padding: 0 0 44px;
  text-align: center;
}

.action h3 {
  font-family: "Mada", Arial, sans-serif;
  font-weight: 300;
  font-size: 32px;
  font-size: 3.2rem;
  margin-top: 0;
}

.action p {
  margin-top: 30px;
  font-family: "Mada", Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
}

.opacity_mask {
  display: none;
  width: 100px;
  height: 100px;
}

/* ===================================== */
/* ! Styles for dashboard (main section) */
/* ===================================== */
#whats_new.dashboard .bloc_wrap .panel {
  padding: 0;
  margin-bottom: 20px;
}

.blog {
  margin-bottom: 20px;
}

i.icon {
  background: url(../css_core/icons/info_tool_sprite_14px.png) no-repeat 0 -28px;
  cursor: pointer;
  float: left;
  height: 14px;
  margin-left: 10px;
  position: absolute;
  width: 14px;
}

i.icon:hover {
  background: url(../css_core/icons/info_tool_sprite_14px.png) no-repeat;
}

.pricing_footer_notes {
  background: #f9f9f9;
  border: 1px solid #ddd;
  margin: auto;
  padding: 20px;
  padding-bottom: 8px;
  text-align: center;
  width: 75%;
}

.pricing_footer_notes p {
  font: 93% arial;
}

#release_info li {
  word-wrap: break-word;
}

/* ============================== */
/* Lightbox enquiry styles	 	  */
/* ============================== */
div h3.persuasive + .mliu_box {
  margin-top: 0;
}

/*Trying to restore topic tags*/
ul.release_filter {
  margin: 0 0 10px 0;
  padding: 0 14px 14px 14px;
  clear: both;
  display: table;
}

ul.release_filter li {
  float: left;
  display: inline;
  width: auto;
  height: auto;
  margin: 0 4px 4px 0;
  padding: 4px;
  position: relative;
  color: #444;
  font-size: 93%;
  white-space: nowrap;
}

.release_panel ul {
  display: block;
  position: relative;
  padding: 0 0 10px 0;
  background: #fff;
  height: auto;
}

.release_filter.topics li {
  background: #82C0FF;
}

.release_filter.topics li a {
  color: #000;
  text-decoration: none;
}

.release_filter.topics li a:hover {
  text-decoration: underline;
}

.tran_background {
  background: transparent;
}

.topics_container {
  margin: 0 14px 14px 14px;
  background: #fff;
}

.topics_container h3 {
  padding: 20px 14px 0 14px;
  font-size: 160%;
  font-family: "Mada", Arial, sans-serif;
  font-weight: 300;
}

/* force all sidebar images to conform */
#latest_images img {
  max-width: 206px !important;
  max-height: 300px !important;
}

img.sidebar-max-width {
  max-width: 206px;
  max-height: 300px;
}

/* ===============================*/
/* ! Styles changes for Newsroom  */
/* TEMPORARY CSS that needs to be */
/* 	   checked on gen_master      */
/* ===============================*/
.release_filter.topics li {
  background: #82C0FF;
}

.topics_container {
  margin: 0 14px 14px 14px;
  background: #fff;
}

.topics_container h3 {
  padding: 20px 14px 0 14px;
  font-size: 160%;
  font-family: "Mada", Arial, sans-serif;
  font-weight: 300;
}

.tran_background {
  background: transparent;
}

#wrapper #page_title h1.center {
  padding: 0 20%;
}

#contacts_tab_no_access.mliu_box.highlight p:first-child {
  margin-top: 0;
}

/* ====================================*/
/* ! Styles changes for release stats  */
/* ====================================*/
.print_wrapper {
  width: 750px;
  margin: 0 auto;
}

.no_marg_top {
  margin-top: 0;
}

#MAIN_PAGE.no_pad {
  padding: 0;
}

#premium h1 span {
  color: #cccccc;
}

#premium p, #premium table tr td, #premium .highlight {
  font-size: 93%;
  line-height: 1.8em;
  vertical-align: top;
  margin-bottom: 0;
}

#premium .form_area legend {
  top: -42px;
}

#premium table {
  width: 100%;
}

#premium table tr td {
  min-width: 240px;
}

/*mliu not being inherited as file is not included*/
.mliu_table.enquiries th {
  background: none repeat scroll 0 0 #333333;
  border-bottom: medium none;
  border-right: 1px solid #5D5D5D;
  color: #FFF;
}

.mliu_table.enquiries td {
  padding: 10px;
  border-right: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  color: #666;
}

.highlight.warning {
  border: 1px solid #F0E68C;
  background: #FFFFE0;
}

/*PLACE HOLDER WARNING - NEEDS REVISITING*/
.mliu_table .right {
  text-align: right;
  float: none;
}

/* ultra specific styling secton | dont overuse */
/*title area with utilities*/
.stat_title {
  position: relative;
}

.stat_title h1 {
  width: 75%;
  float: left;
  padding: 0;
  margin: 0;
}

.pstat_tools {
  position: absolute;
  bottom: 0;
  right: 0;
}

.print_metric {
  display: inline-block;
  height: 47px;
  width: 56px;
  background: transparent url(/img/tools.png) no-repeat left top;
  text-indent: -9999px;
  /* for ie7 */
  *text-indent: 0;
  *font-size: 0;
  *line-height: 0;
}

.download_metric {
  display: inline-block;
  height: 47px;
  width: 56px;
  background: transparent url(/img/tools.png) no-repeat right top;
  text-indent: -9999px;
  /* for ie7 */
  *text-indent: 0;
  *font-size: 0;
  *line-height: 0;
}

.print_metric:hover {
  background: transparent url(/img/tools.png) no-repeat left bottom;
}

.download_metric:hover {
  background: transparent url(/img/tools.png) no-repeat right bottom;
}

/*MERGRE CONFLICT / DOUBLE CHECK LATER*/
#wrapper #page_title h1.center {
  padding: 0 20%;
}

#contacts_tab_no_access.mliu_box.highlight p:first-child {
  margin-top: 0;
}

/*  =====================================
    SW NEWSROOMS ADMIN
    =====================================  */
.newsrooms_admin {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
}

#newsroom_admin {
  margin-bottom: 40px;
}

#admin_content {
  border: 1px solid #999999;
  padding: 20px;
  margin-top: 1px;
}

#admin_content h3 {
  font-family: "Mada", Arial, sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 400;
}

#admin_content .header h3 {
  float: left;
  width: auto;
}

#admin_content h4.social_link {
  width: 100px;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.1;
  font-family: "Mada", Arial, sans-serif;
  font-weight: normal;
  margin-top: 0px;
  margin-bottom: 0;
}

#SW #admin_content .label {
  float: left;
  width: 30%;
}

#admin_content .data {
  float: right;
  width: 70%;
}

#tab_li_container li.selected {
  border-color: #999999;
  height: 44px;
  background: #FFF;
}

#tab_li_container li.selected a {
  color: #333;
}

#change_newsroom {
  float: left;
  width: auto;
  margin-top: 4px;
}

#subscription_package {
  float: left;
  width: auto;
  margin-left: 10px;
  border-left: 1px solid #ccc;
  padding-left: 8px;
  margin-top: 4px;
  margin-right: 8px;
}

.no_alias #subscription_package {
  padding-left: 0;
  border-left: none;
  margin-left: 0;
}

#SW #admin_sub_info {
  margin-bottom: 18px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 8px;
  width: auto;
  background: #f7f7f7;
}

#SW #admin_sub_info.no_alias {
  float: right;
}

#SW #admin_sub_info label {
  width: 150px;
  padding: 5px 0;
  font-size: 123%;
}

#SW #admin_sub_info select {
  width: 250px;
  font-size: 123%;
  padding: 5px;
}

#info_tab ul {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

#info_tab ul li {
  margin-bottom: 12px;
}

#tab_li_container.newsrooms_admin li {
  padding-left: 7px;
  margin-right: 4px;
}

#tab_li_container li.last_menu_item {
  margin-right: 0;
}

/*  =====================================
    SOCIAL MEDIA tab
    =====================================  */
.content.social_admin {
  clear: both;
  padding-top: 1px;
  margin-top: 0;
}

.social_link {
  display: block;
  width: auto;
  height: 40px;
  background: url(../newsrooms/images/social_sharing_sprite.png) no-repeat left top;
  padding: 8px 0 0 44px;
  color: #333;
}

.social_link.youtube {
  background-position: left -140px;
}

.social_link.facebook {
  background-position: left -280px;
}

.social_link.linkedin {
  background-position: left -420px;
}

.social_link:hover {
  text-decoration: none;
  color: #333;
}

#admin_content h3.social_link {
  margin: 6px 0 10px 0;
}

#admin_content .pub_info_box {
  clear: both;
}

p.youtube_input {
  float: left;
  margin: 0 10px 0 0;
}

/*  =====================================
    LINKS tab
    =====================================  */
#links_tab h3 {
  float: left;
  width: auto;
}

#links_tab ul {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  clear: both;
}

#links_tab ul li {
  margin-bottom: 10px;
}

#links_tab ul li a {
  font-family: "Mada", Arial, sans-serif;
  font-weight: normal;
  font-size: 153.9%;
}

#links_tab a.tools {
  float: left;
  display: inline;
  margin-top: 22px;
}

.admin-header-help {
  clear: both;
}

/*  =====================================
    CONTACTS tab
    =====================================  */
#contacts_tab a.contact_avatar {
  float: left;
  margin-right: 6px;
}

#contacts_tab ul h4 {
  font-family: "Mada", Arial, sans-serif;
  font-weight: normal;
  font-size: 23px;
  font-size: 2.3rem;
  margin: 28px 0 0 0;
  float: left;
  width: 250px;
}

#contacts_tab ul li a.tools {
  float: right;
  display: inline;
}

#contacts_tab ul {
  width: 464px;
  float: left;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 0 20px 20px 0;
}

#contacts_tab ul li {
  margin-bottom: 6px;
}

#contacts_tab ul li .label {
  float: left;
  width: 30%;
}

#contacts_tab ul li .data {
  float: right;
  width: 70%;
}

span.NA {
  color: #ccc;
}

/*  =====================================
    THEMES tab
    =====================================  */
.theme-options label, .theme-options input[type=text], .theme-options select {
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "Roboto Slab", Arial, sans-serif;
}

#theme_tab ul li {
  margin-bottom: 10px;
}

#theme_tab ul li input {
  border-width: 1px;
  float: left;
}

#theme_tab ul li .label {
  width: 50%;
}

#theme_tab ul li .input {
  float: right;
  width: 50%;
  height: 33px;
}

#theme_tab fieldset {
  margin: 0 0 10px 0;
}

fieldset#design_options {
  border: 3px solid #E7e7e7;
  background-color: #f1f1f1;
  padding: 8px;
}

fieldset#design_options h4 {
  margin-top: 0;
}

#advance_theme {
  margin: 50px 0 0;
  padding: 0;
}

#advance_theme h4 {
  margin: 0 0 20px;
}

#advance_theme label {
  font-size: 16px !important;
  width: auto !important;
}

#advance_theme input[type=checkbox] {
  margin: 3px 10px;
  padding: 0;
  float: none;
}

#advance_theme .divider {
  border-bottom: 1px solid #E7E7E7;
  padding: 15px 0 10px;
}

#advance_theme #embed-site-instructions {
  font-family: "Roboto Slab", Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}

#advance_theme .instructions {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 5px 0 20px;
  padding: 5px;
  padding: 15px 15px 0;
  background-color: #F7F7F7;
}

#advance_theme .instructions ol {
  background-color: #F7F7F7;
}

#advance_theme .boxed {
  border: 1px solid #ccc;
  padding: 0 10px;
  margin: 10px 0;
  background-color: #F7F7F7;
}

#advance_theme .boxed pre {
  margin: 0;
}

#advance_theme #codeArea {
  margin-bottom: 20px;
}

#advance_theme.entry {
  border: 1px dotted #CCCCCC;
}

#advance_theme h3 {
  margin: 0;
}

#advance_theme textarea {
  width: 98.5%;
}

#advance_theme .entry_header {
  padding: 15px;
  background: transparent url(../css_core/icons/activity_expander_sprite_grey.gif) no-repeat right 5px;
  min-height: 29px;
}

#advance_theme .entry_header:hover {
  background-position: right -45px;
  cursor: hand;
  cursor: pointer;
}

#advance_theme .entry_header.minus {
  background-position: right -95px;
  cursor: hand;
  cursor: pointer;
}

#advance_theme .entry_header.minus:hover {
  background-position: right -145px;
  cursor: hand;
  cursor: pointer;
}

#advance_theme .mini_form .entry_header {
  background-position: right 3px;
}

#advance_theme .mini_form .entry_header:hover {
  background-position: right -47px;
  cursor: hand;
  cursor: pointer;
}

#advance_theme .mini_form .entry_header.minus {
  background-position: right -97px;
  cursor: hand;
  cursor: pointer;
}

#advance_theme .mini_form .entry_header.minus:hover {
  background-position: right -147px;
  cursor: hand;
  cursor: pointer;
}

.entry_content {
  padding: 8px 15px 20px 15px;
}

/*  =====================================
    UPLOAD tab
    =====================================  */
#upload_tab hr {
  margin: 25px 0 0 0;
}

.upload.logo {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.media {
  clear: both;
  padding-top: 20px;
}

#media_form_tab .media {
  padding: 0;
}

#upload_tab .media.logo {
  display: inline-block;
  margin-left: 5%;
  padding: 0 0 0 5%;
  border-left: 1px solid #eaeaea;
  text-align: center;
}

#upload_tab .thumb_list li {
  float: left;
  padding: 15px;
  border: 1px solid #eaeaea;
  min-height: 90px;
  width: 150px;
  text-align: center;
}

#upload_tab .thumb_list li img {
  height: 45px;
  max-width: 140px;
}

#upload_tab .thumb_list li .caption_util {
  border-top: 1px solid #eaeaea;
  margin-top: 15px;
  padding-top: 10px;
}

#logo_tab ul li, #media_form_tab ul li {
  margin-bottom: 10px;
}

#logo_tab ul li input, #media_form_tab ul li input {
  border-width: 1px;
}

#logo_tab ul li .label, #media_form_tab ul li .label {
  padding-top: 7px;
}

#logo_tab ul li .input, #media_form_tab ul li .input {
  float: left;
}

/*  =====================================
    CONTACT/COMPANY edit
    =====================================  */
#contact_edit ul li {
  margin-bottom: 10px;
}

#contact_edit ul li input {
  border-width: 1px;
}

#contact_edit ul li label {
  width: 30%;
  padding-top: 7px;
}

#contact_edit ul li .input {
  float: right;
  width: 70%;
}

#company_edit ul li {
  margin-bottom: 10px;
}

#company_edit ul li input {
  border-width: 1px;
}

#company_edit ul li label {
  width: 40%;
  padding-top: 7px;
}

#company_edit ul li .input {
  float: right;
  width: 60%;
}

#address_edit ul li {
  margin-bottom: 10px;
}

#address_edit ul li input {
  border-width: 1px;
}

#SW #wrapper #address_edit label {
  width: 30%;
}

#SW #wrapper #address_edit label.error {
  width: 30%;
}

#address_edit ul li label {
  width: 20%;
  padding-top: 7px;
}

#address_edit ul li .input {
  float: right;
  width: 70%;
}

/*  =====================================
    RELEASES tab
    =====================================  */
ul.admin_releases {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 0 0 20px 0;
}

ul.admin_releases li {
  border-bottom: 1px solid #e7e7e7;
  padding: 0 0 0 0;
}

ul.admin_releases li:hover {
  background-color: #F5F5F5;
  -webkit-transition: background-color 0.5s ease-in;
  -moz-transition: background-color 0.5s ease-in;
  -o-transition: background-color 0.5s ease-in;
  transition: background-color 0.5s ease-in;
}

ul.admin_releases li a {
  float: left;
  font-size: 16px;
  font-size: 1.6rem;
  width: 882px;
  /*874px;*/
  padding: 10px 0;
}

ul.admin_releases li a:hover {
  background-position: right -25px;
}

ul.admin_releases li span.release_date {
  float: left;
  width: 106px;
  color: #999;
  margin-right: 8px;
}

/* releases list tool icons */
ul.admin_releases li a.link_icon {
  float: left;
  width: 34px;
  height: 34px;
  padding: 0 0 0 0;
  margin: 6px 0 6px 8px;
  background: url(../newsrooms/images/admin_release_stats_sprite.png) no-repeat scroll left top transparent;
}

ul.admin_releases li a.link_icon.stats {
  background-position: left top;
}

ul.admin_releases li a.link_icon.stats:hover {
  background-position: left -34px;
}

ul.admin_releases li a.link_icon.stats.premium {
  background-position: left -68px;
}

ul.admin_releases li a.link_icon.stats.premium:hover {
  background-position: left -102px;
}

ul.admin_releases li a.link_icon.stats.locked {
  background-position: left -136px;
}

/*  =====================================
    PAGINATION 
    =====================================  */
.pagination {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 0 0 20px 0;
}

.pagination li {
  border: 1px solid #CCCCCC;
  display: inline;
  float: left;
  margin: 0 3px 0 0;
  padding: 0;
  text-align: center;
  border-bottom: 1px solid #CCCCCC;
}

.pagination li.current_page {
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 2px solid #666666;
  color: #333;
}

.pagination li#pagination_pages {
  padding: 8px;
  border-bottom: none;
}

.pagination a {
  float: left;
  display: inline;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: none;
  color: #333;
  text-decoration: none;
}

.pagination a:hover {
  text-decoration: underline;
}

.pagination a.pagination_nav {
  background-color: #F1EFEB;
}

#SW .pagination.days li,
#SW .pagination.months li,
#SW .pagination.years li {
  margin: 10px;
}

#SW .pagination.days a,
#SW .pagination.months a,
#SW .pagination.years a {
  width: auto;
}

/* for small pages number */
#pagination_pages {
  font-size: 85%;
  color: #333;
  border: none;
  position: relative;
  padding: 9px;
}

span.paginate_button, span.paginate_active {
  float: left;
  display: inline;
  width: auto;
  height: 16px;
  padding: 8px 12px;
  background: none;
  color: #333;
  border: 1px solid #CCCCCC;
  margin-right: 3px;
  cursor: pointer;
}

.previous.paginate_button,
.next.paginate_button,
.first.paginate_button,
.last.paginate_button {
  width: auto;
  background-color: #F1EFEB;
}

span.paginate_active {
  border: 2px solid #666;
}

.no-js .admin_bloc {
  border-bottom: 1px solid #999;
  padding-bottom: 20px;
}

.social_admin_bloc {
  width: 436px;
  float: left;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 0 20px 20px 0;
}

.social_admin_bloc:nth-child(4) {
  clear: left;
}

form#newsroom_edit {
  padding-bottom: 5px;
}

form#newsroom_edit ul {
  margin-bottom: 10px;
}

form#newsroom_edit li {
  margin-bottom: 8px;
}

form#newsroom_edit label {
  float: left;
  display: inline;
  padding: 6px;
  width: 100px;
}

form#newsroom_edit input {
  padding: 6px;
}

/*  =====================================
    STATS tab
    =====================================  */
#free_stats_container {
  padding-bottom: 15px;
}

#free_stats_container #page_title {
  padding: 0;
}

#free_stats_container li {
  display: block;
  padding-left: 0;
}

#free_stats_container .label, #free_stats_container .stat_result {
  float: left;
  display: inline;
  padding: 6px 6px 6px 0;
  width: 230px;
  font-size: 123.1%;
  color: #000;
}

#free_stats_container .stat_result {
  font-weight: bold;
  color: #000;
  width: auto;
}

#free_stats_container p.approx {
  margin-top: 8px;
}

#free_stats_container p.more_stats {
  margin-top: 25px;
}

/*setting width for the free stats litebox*/
.free-stat.white-popup {
  max-width: 320px;
}

.free-stat.white-popup p {
  font-size: 90%;
}

.no-avatar {
  background: url(/img/avatar.gif) no-repeat top;
  border: 1px dashed #ddd;
  border-radius: 100px;
  height: 70px;
}

.feed_switch {
  background: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 5px;
  padding: 8px;
  height: 40px;
}

.feed_switch .fb_btn {
  border-radius: 0;
  cursor: pointer;
  float: left;
  margin-left: 10px;
  padding: 5px;
}

.feed_switch .fb_btn:active {
  box-shadow: inset 2px 2px 2px #000;
}

.feed_switch select#fb_selection {
  border: 1px solid #ccc;
  border-radius: 3px;
  float: left;
  font: 12px arial;
  margin-left: 10px;
  width: 200px;
  margin-top: 10px;
}

/*  =====================================
    USERS tab
    =====================================  */
#newsroom_user_admin {
  padding: 8px;
  border: solid 1px #ccc;
  border-radius: 8px;
}
#newsroom_user_admin > form {
  font-size: 13px;
  font-size: 1.3rem;
}

#users_tab form {
  margin: 0 0 8px 0;
  border-bottom: 1px solid #e7e7e7;
}

#users_tab ul.newsroom_admin.heading li {
  margin-bottom: 16px;
  padding: 6px 0 10px;
  border-bottom: 1px solid #e7e7e7;
}

#users_tab ul.newsroom_admin li {
  float: left;
  display: inline;
  padding: 0 0 8px 0;
}

ul.newsroom_admin li.USER {
  width: 25%;
}

ul.newsroom_admin li.EMAIL {
  width: 40%;
}

ul.newsroom_admin li.ADMIN {
  width: 10%;
}

ul.newsroom_admin li.TOOLS {
  width: 25%;
}

#wrapper #newsroom_user_admin input {
  font-size: 100%;
}

.admin_upgrade {
  background: #e7e7e7 url(../css_core/icons/padlock_large.png) no-repeat center center;
  height: 140px;
  opacity: 0.6;
  filter: alpha(opacity=60);
  overflow: hidden;
  padding-top: 100px;
  text-align: center;
  width: 100%;
  z-index: 10;
}

.admin_upgrade.authorize {
  padding-top: 50px;
  height: 190px;
}

.admin_upgrade p {
  color: #333;
  font-size: 22px;
}

.admin_subscription_info {
  text-align: right;
  margin: 0 0 0 0;
  padding: 5px 0;
  font-size: 123.1%;
}

.admin_subscription_info a, a.request {
  font-size: 93%;
}

/*  =====================================
    GENERICS
    =====================================  */
.css_success {
  clear: both;
  background: #fff url(../css_core/icons/success_tick.gif) no-repeat 10px center;
}

.css_success h4 {
  color: #62A442;
  padding: 10px 10px 10px 70px;
  margin: 0 0 14px 0;
  font-size: 138.58%;
  font-weight: lighter;
}

.css_fail {
  clear: both;
  background: #fff url(../css_core/icons/fail_x.gif) no-repeat 10px center;
}

.css_fail h4 {
  color: #ff0033;
  padding: 10px 10px 10px 70px;
  margin: 0 0 14px 0;
  font-size: 138.58%;
  font-weight: lighter;
}

.oops_bubble {
  border: 1px solid #CCC;
  border-radius: 8px;
  background: #F7F7F7;
  padding: 8px;
}

ul#error_links li {
  float: left;
}

/*  =====================================
    POSTS tab
    =====================================  */
.textbox .text_class,
.text_class_type {
  color: #aaa;
  display: block;
  font: 12px;
  height: 100px;
  margin-bottom: 0;
  width: 100%;
  padding: 8px;
}

#advance_theme_edit .textbox .text_class_type {
  height: 300px;
}

.post_options {
  border-bottom: 2px solid #ddd;
  display: none;
  padding-bottom: 10px;
  padding-top: 10px;
}

/* div containing the status of the message being posted */
.post_status {
  background: #dff0d8;
  border: 1px solid #d6e9c6;
  color: #468847;
  display: none;
  font: 11px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 5px;
}

/* div that counts the number of characters */
.post_options .character_count {
  background: #000;
  border: 1px solid #333;
  color: #fff;
  display: none;
  padding: 3px;
}

/* The options (twitter and facebook) */
.post_options .media_options {
  background: url(../newsrooms/images/social_sharing_sprite.png) no-repeat;
  float: left;
  padding: 10px;
  padding-left: 50px;
  margin-bottom: 0;
}

.post_options .media_options.facebook_check {
  background-position: 0 -280px;
}

/* The share button */
button.share_btn {
  color: #fff;
  float: right;
  font: bold 12px;
}

/* where the posted status' will be placed */
#post_table {
  height: 500px;
  margin-top: 20px;
  overflow: auto;
}

/* post status contained here */
.newsroom_post {
  border-bottom: 2px solid #ddd;
  margin-bottom: 10px;
  padding: 10px;
}

.newsroom_post p {
  background: #f7f7f7;
  color: #333;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 10px;
  line-height: 1.6;
}

.newsroom_post p.newsroom_post_time {
  background: #fff;
  color: #888;
  font: 11px;
  padding-left: 12px;
}

.newsroom_post span {
  color: #ccc;
  font: 11px;
}

.newsroom_post span a.delete_newsroom_post {
  color: #c00;
  cursor: pointer;
  float: right;
  font: 11px;
}

.delete_post_tooltip {
  background: #a00;
  /* for non-css3 browsers */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#aa0000", endColorstr="#cc0000");
  /* for IE */
  background: -webkit-gradient(linear, left top, left bottom, from(#a00), to(#c00));
  /* for webkit browsers */
  background: -moz-linear-gradient(top, #a00, #c00);
  /* for firefox 3.6+ */
  border: 0;
  border-radius: 3px;
  color: #fff;
  display: none;
  font: bold 11px arial;
  left: 0;
  padding: 5px;
  position: fixed;
  text-align: center;
  top: 0;
  width: 330px;
}

/**
 * Main style for this Google Analytics block.
 */
/* tooltip style */
#tooltip {
  background: #D9EDF7;
  border: 1px solid #BCE8F1;
  border-radius: 3px;
  box-shadow: 0 0 10px #ccc;
  color: #3A87AD;
  display: none;
  font: 12px arial;
  left: 0;
  padding: 10px;
  position: fixed;
  top: 0;
  text-align: center;
  width: 250px;
}

.stats_info {
  width: 574px;
  background: #F7F7F7;
  border: 1px solid #DDD;
  padding: 10px;
  color: #468847;
}

.stats_info input, .stats_info select {
  float: left;
  width: 125px;
  margin: 4px 8px 4px 0;
}

#date_picker_info {
  background: #F9F9F9;
  border: 1px solid #DDD;
  border-top: 0;
  color: #888;
  font: 11px arial;
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
  width: 574px;
}

ol#premium_steps {
  list-style-position: inside;
  list-style-type: decimal;
  margin-left: 20px;
}

#analytics_results {
  clear: both;
  margin-bottom: 48px;
}

#analytics_results table {
  border-collapse: collapse;
  border: 1px solid #ccc;
  margin: auto;
  clear: both;
  font-size: 14px;
  font-size: 1.4rem;
}

#analytics_results th {
  border-left: 1px solid #ccc;
  padding: 6px;
  vertical-align: top;
  color: #666;
}

#analytics_results td {
  color: #333;
  background: #fff;
  border-left: 1px solid #ccc;
  cursor: pointer;
  font-size: 123%;
  font-weight: bold;
  margin-right: 5px;
  padding: 6px;
  text-align: center;
  width: 125px;
}

.stats-add-analytics {
  line-height: 1.6px;
}

/* Ashton - 8/8/12 */
#SW .cmxform .error {
  color: #FF0000;
  display: block;
  padding-top: 6px;
}

.breadcrumb {
  display: block;
  float: left;
}

.last-breadcrumb {
  display: block;
}

#tab_li_container li.last_menu_item {
  margin-right: 0;
}

/*** rss feeds ***/
.rss_left {
  float: left;
  width: 30%;
  padding-left: 30px;
}

.rss_left h3 {
  font-size: 16px;
  padding-bottom: 10px;
}

.rss_right {
  float: right;
  width: 60%;
  padding-right: 30px;
}

.rss_left .line {
  margin: 10px 0 20px 0;
}

.rss_left .line, .rss_right .line {
  width: 100%;
}

/** 
	Style for the admin post section 
*/
/*  =====================================
    MAGNIFIC popup style extensions
    =====================================  */
.white-popup {
  color: #333;
}

.white-popup h1 {
  margin: 0 0 0 0;
  font: 235%/1.1 "Mada", Arial, sans-serif !important;
}

.white-popup .label {
  float: left;
}

.white-popup input {
  padding: 6px;
}

.white-popup.sw p {
  font-size: 14px;
  font-weight: normal;
  color: #333;
}

.white-popup.sw p b {
  font-size: 14px;
  font-weight: bold;
}

.white-popup.sw ul {
  padding-left: 20px;
}

.white-popup.sw h2 {
  padding: 10px 0;
}

h1.small {
  padding: 5px;
  margin: 5px;
}

/*  ==========================================================================
    FEEDS
    ==========================================================================  */
.feed_list li {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

.feed_list li a {
  text-decoration: none;
  color: #333;
}

.feed_list li a.cat_name {
  display: inline-block;
  padding-top: 3px;
}

#main_feeds {
  text-align: center;
}

.main_feed {
  display: inline-block;
  margin-bottom: 40px;
  width: 200px;
  font: 235%/1.1;
  padding-top: 130px;
  text-decoration: none;
}

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

.main_feed.rss {
  background: url(img/icons/ico_feeds_rss_120_120.png) no-repeat center top;
}

.main_feed.twitter {
  background: url(img/icons/ico_feeds_twitter_148_120.png) no-repeat center top;
}

.cat_feed {
  width: 24px;
  height: 24px;
  float: left;
  margin-right: 3px;
}

.cat_feed.twitter {
  background: url(img/icons/ico_feeds_twitter_24_24.jpg);
}

.cat_feed.rss {
  background: url(img/icons/ico_feeds_rss_24_24.jpg);
}

@media only screen and (min-width: 480px) {
  /*  ==========================================================================
  	1 THIRD up ---------------------------------------------------------------
  	========================================================================== */
}
@media only screen and (min-width: 768px) {
  /*  ==========================================================================
  	2 THIRDS up
  	========================================================================== */
  .feed_list {
    padding-left: 10%;
  }

  .feed_list li {
    float: left;
    width: 33%;
    margin-bottom: 4px;
  }

  .main_feed {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1140px) {
  /*  ==========================================================================
  	FULL WIDTH
  	========================================================================== */
}
/*  ========
	PAGINANA
	======== */
.filter_group {
  border-top: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7;
  padding: 8px 0;
  margin-bottom: 20px;
}

#keyword_filter.filter_group.standard {
  padding-top: 18px;
  padding-bottom: 0;
}

.filter_group h3 {
  font-size: 93%;
  font-weight: normal;
  margin: 0 0 0 0;
  padding: 6px 0 0 0;
}

#date_select.search_filter h3 {
  padding-bottom: 14px;
}

#date_select.search_filter input {
  width: 50%;
}

#date_select.search_filter.border {
  padding: 16px 0;
  border-top: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7;
}

#search_filters {
  margin-bottom: 15px;
}

div.release_list h1 {
  margin-top: 0;
}

.search_filter {
  margin-bottom: 12px;
}

.search_filter h2 {
  margin: 0 0 0 0;
  padding: 6px 0 0 0;
  font-weight: normal;
  font-size: 100%;
}

.release_filters {
  margin-top: 10px;
}

span.date_range {
  float: left;
  padding: 8px;
  margin-right: 6px;
  background: #E7E7E7;
}

span.date_range.from {
  margin-right: 0;
}

span.date_range.to {
  background: transparent;
  margin-right: 0;
  padding: 8px 4px;
}

.paginator_list {
  float: right;
  width: auto;
  font-family: "Mada", Arial, sans-serif;
  font-size: 20px;
  font-size: 2rem;
}

.paginator li {
  float: left;
  border-bottom: 3px solid #e7e7e7;
  margin: 0 4px 0 0;
  text-align: center;
}

.paginator li a {
  background: none repeat scroll 0 0 transparent;
  color: #666;
  display: inline;
  float: left;
  padding: 8px;
  min-width: 35px;
  text-decoration: none;
  outline: none;
}

.paginator li.current {
  width: 35px;
  border-bottom: 3px solid #999;
  padding: 8px;
}

.paginator li.navigator a {
  color: #006699;
}

.paginator_info {
  margin: 6px 6px 0 0;
}

.paginator_list {
  float: none;
}

.cat_selector {
  font-size: 80%;
  padding: 20px 0 0 0;
  margin: 0;
  width: 100%;
}

.cat_selector li {
  font-family: "Mada", Arial, sans-serif;
  width: auto;
  float: left;
  padding: 8px;
  margin: 0 6px 6px 0;
  border: 1px solid #e7e7e7;
  background: #E7E7E7;
  cursor: pointer;
}

.cat_selector li label {
  cursor: pointer;
}

.cat_selector li input {
  padding: 0;
  margin: 0;
  width: 25px;
}

#adv_search {
  cursor: pointer;
}

#adv_search #more {
  display: inline;
}

#adv_search #less {
  display: none;
}

#adv_search.open #more {
  display: none;
}

#adv_search.open #less {
  display: inline;
}

#adv_search_content {
  display: none;
  margin: 20px 0 0 0;
}

#date_search {
  margin-top: 20px;
}

.form_area label.error {
  display: block;
  color: #ff0033;
  margin-top: 12px;
}

li.enabled {
  background: #0093C9 !important;
  border-color: #0093C9;
  color: #fff;
}

.options_expand {
  font-size: 80%;
  margin: 10px 0 0 0;
  float: left;
}

@media only screen and (min-width: 768px) {
  /*  ==========================================================================
  	2 THIRDS up
  	========================================================================== */
  .release_filters {
    float: right;
    width: 80%;
    margin-top: 0;
  }

  .search_filter h2 {
    float: left;
    width: 20%;
  }

  #date_select.filter_group h3 {
    float: left;
    font-size: 100%;
    font-weight: normal;
    margin: 0;
    padding: 6px 0 0;
    width: 20%;
  }

  #date_select.search_filter {
    border-bottom: 1px solid #E7E7E7;
    padding-bottom: 20px;
  }

  #date_select.search_filter input {
    width: 20%;
  }
}
/*  ==============
	JOURDASH BOARD
	============== */
/*Could make this global*/
#JOURNALIST_LOGIN a, .footer_section a {
  text-decoration: none;
}

#views_ul .sub_menu {
  margin-top: 0;
}

/*  ==============
	ARCHIVE BOARD
	============== */
.archive {
  padding-bottom: 40px;
}

.archive .tag_list {
  text-indent: 0;
  padding: 8px;
  margin: 2px;
  float: left;
  display: inline;
  border-bottom: none;
}

.archive .tag_list {
  padding: 0;
  font-size: 120%;
  color: #333;
  background: none;
}

.archive li {
  margin-bottom: 1%;
}

.archive li a {
  color: #006699;
  line-height: 1.6em;
  text-decoration: none;
}

.archive li a:hover {
  text-decoration: underline;
}

.archive_list li {
  margin-bottom: 10px;
  padding: 0 0 10px 10px;
  font-size: 120%;
  border-bottom: 1px dotted #ccc;
}

.archive p.release_date {
  display: inline-block;
  margin: 0;
  padding: 0 1% 0 0;
}

.archive h1 span {
  color: #999999;
}

/*  ============
	INDEX STYLES
	============ */
.index_message {
  background-color: #575859;
  border-bottom: 4px solid #61A233;
}

#what_is_sw h2 {
  margin: 0 0 0 0;
  font-size: 182%;
  padding: 14px 0;
  font-weight: lighter;
  letter-spacing: -1px;
  color: #fff;
  clear: both;
}

.promo.padding {
  border-width: 4px;
  padding: 96px 0;
}

.padding {
  border-width: 4px;
  padding: 96px 0;
}

.padding.dashboard {
  border-top: 0;
}

.promo.no_padding_top {
  padding-top: 0;
}

.promo.no_padding_bottom {
  padding-bottom: 0;
}

.home_line {
  /*border-style: solid none none none; border-width: 4px; border-color: #CCCCCC;*/
  padding: 30px 0 60px;
}

/*	.home_line.green { border-color: #61A233 !important; }
	.home_line.magenta { border-color: #ff0066; }
	.home_line.orange { border-color: #FBB611; }
	.home_line.blue { border-color: #13A1E1 !important; }
	.home_line.light_blue { border-color: #C0DDEA; }*/
.blog_whitey {
  background: url("img/backgrounds/rollz.jpg") repeat scroll center center 100% auto rgba(0, 0, 0, 0);
  border-top: 3px solid #CCCCCC;
}

.promo.rollz {
  background: url(img/backgrounds/rollz.jpg) no-repeat center center;
}

.img_promo {
  width: 100%;
  height: 500px;
  background: url(img/backgrounds/sw_images_promo_dbl.jpg) center center;
  border-bottom: 4px solid #ccc;
  border-top: 8px solid #ccc;
}

@media handheld, only screen and (max-width: 768px) {
  .mobile_center {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  /*  ==========================================================================
  	2 THIRDS up
  	========================================================================== */
  .index_message {
    background-color: transparent;
    border-bottom: none;
    padding-bottom: 30px;
  }

  #what_is_sw h2 {
    color: #4F4F4F;
  }

  .home_divider {
    height: 0px;
    background: #ccc;
    border-top: 4px solid #ccc;
  }
}
@media only screen and (min-width: 1140px) {
  /*  ==========================================================================
  	FULL WIDTH
  	========================================================================== */
  .promo.rollz {
    background-size: 100%;
  }
}
#sw_search_form {
  margin-bottom: 50px;
}

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

section#images ul li {
  position: relative;
  margin: 0 0 12px 0;
  padding: 0;
  border-radius: 4px;
}

section#images ul li img {
  max-width: 100%;
  max-height: 500px;
  padding: 0;
}

section#images ul li p {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  height: 0;
}

/*IE8 fixes to caption text over images used on /news/*/
.lt-ie9 section#images ul li p {
  bottom: -10px;
}

.lt-ie9 section#images ul li:hover p {
  bottom: 0;
}

section#images ul li p a {
  color: #fff;
  text-decoration: none;
}

/* class given to the <li> when a user hovers over the release on the results lists */
section#images ul li.rel_highlight p, section#images ul li:hover p {
  padding: 6px;
  margin: 0;
  transition: all 0.5s ease;
  opacity: 1;
  height: auto;
  background-color: #333333;
  background-color: rgba(51, 51, 51, 0.7);
}

/*  ==========================================================================
    CHANNELS | image / video channel
    ==========================================================================  */
.release_image {
  margin: 0 0 26px 0;
}

.release_image article {
  padding-left: 4px;
}

.release_image img {
  max-width: 100%;
}

.release_image a {
  font-size: 100%;
  text-decoration: none;
  color: #666;
}

.release_image h3 {
  font-weight: normal;
}

form.search.refine {
  text-align: left;
  margin-bottom: 20px;
}

form.search.refine input {
  padding: 8px;
}

@media only screen and (min-width: 768px) {
  /*  ==========================================================================
      2 THIRDS up
      ========================================================================== */
  .image_list {
    clear: both;
    padding: 20px 0;
  }

  .release_image {
    float: left;
    width: 31%;
    margin: 0 3% 26px 0;
  }

  .release_image a:hover h3 {
    text-decoration: underline;
    color: #333;
  }

  .release_image .text_hold p {
    margin-bottom: 0;
  }

  .channel_list .paginator {
    width: 60%;
    float: left;
  }

  form.search.refine {
    width: 40%;
    float: right;
  }

  form.search.refine input {
    float: right;
    padding: 8px;
  }
}
/*  =====================================
    FEEDS SUCCESS 
    =====================================  */
#feeds_success {
  font-family: "Mada", Arial, sans-serif;
  font-size: 20px;
  font-size: 2rem;
}

#feeds_success h2 {
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 12px;
}

#feeds_success p {
  margin-bottom: 48px;
  line-height: 1.6;
}

#feeds_success a {
  word-break: break-all;
  text-decoration: none;
}

#feeds_success a:hover {
  text-decoration: underline;
}

#feeds_success pre {
  font-family: "Courier New" Courier monospace;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 3%;
  margin: 0 0;
}

.placeholder {
  color: #aaa;
}

.input-text-upload {
  padding: 6px;
}

#theme_tab input {
  padding: 6px;
}

.css_success.theme {
  width: 100%;
}

.newsroom_examples {
  display: none;
  height: 100%;
}

.newsroom_showcase {
  border: 2px dashed #EAEAEA;
  background-color: #fff;
  height: 250px;
  vertical-align: middle;
  width: 100%;
}

/*Trying to standardise font sizes*/
.wrapper.font_st {
  margin-bottom: 40px;
}

.font_st {
  font-family: "Mada", Arial, sans-serif;
}

.font_st h2 {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: normal;
}

.font_st h3 {
  margin-top: 0;
  font-size: 24px;
  font-size: 2.4rem;
  color: #333333;
}

.font_st a, .font_st p {
  font-size: 20px;
  font-size: 2rem;
  text-decoration: none;
}

/*site map*/
.mliu_box.dual {
  float: none;
  width: 100%;
}

.font_st .mliu_box header {
  margin: 40px 0 20px 0;
  border-bottom: 1px solid #CCCCCC;
}

@media only screen and (min-width: 768px) {
  /*  ==========================================================================
  	1 THIRD up
  	========================================================================== */
  .mliu_box.dual {
    float: left;
    width: 45.7%;
  }

  #sitemap .mliu_box.dual.right {
    float: left;
    width: 53%;
  }

  /*small alteration to overide the standard used in mliu_core*/
  .font_st .mliu_box header {
    margin: 40px 20% 20px 0;
  }
}
.font_st .mliu_box section:first-child header {
  margin-top: 0;
}

.font_st .mliu_box ul li {
  list-style: inside square;
}

/*target sitemap page tag_list only*/
#sitemap .tag_list li {
  padding: 0;
  list-style: none;
}

#sitemap .tag_list li, #sitemap .tag_list li:hover {
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -kthtml-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

#sitemap .tag_list li a {
  color: #333;
  padding: 5px;
  display: block;
}

#sitemap .tag_list li.green {
  background-color: #A8C115;
}

#sitemap .tag_list li.green:hover {
  background-color: #96AC15;
}

#sitemap .tag_list li.blue {
  background-color: #82C0FF;
}

#sitemap .tag_list li.blue:hover {
  background-color: #3498FD;
}

#sitemap .tag_list li.orange {
  background-color: #FF9900;
}

#sitemap .tag_list li.orange:hover {
  background-color: #FF6600;
}

#MAIN_PAGE {
  padding: 40px 0;
}

/*  ==========================================================================
	404 page styling
	========================================================================== */
.forohfor {
  font-family: "Mada", Arial, sans-serif;
  font-weight: normal;
  text-align: left;
  padding: 20px;
  margin: 50px 0 50px 0;
}

.forohfor img {
  margin: 0 auto;
  width: 95%;
  max-width: 350px;
}

.forohfor h1 {
  font-weight: 700;
  font-size: 90px;
  font-size: 9rem;
  color: #333333;
  padding: 0 0 0 0;
  margin-bottom: 0;
}

.forohfor h2 {
  font-weight: 500;
  font-size: 26px;
  font-size: 2.6rem;
  color: #666666;
  margin: 10px 0 10px 0;
}

.forohfor p {
  font-size: 22px;
  font-size: 2.2rem;
  color: #999999;
  line-height: 1.4em;
}

@media only screen and (min-width: 768px) {
  .forohfor {
    text-align: right;
  }

  .forohfor img {
    float: left;
    margin-top: 75px;
    width: auto;
    max-width: 500px;
  }
}
span.hilite {
  background: #B2D3FA;
  color: #003300;
  padding: 4px 0;
}

a.stats_pdf_download {
  display: block;
  width: 150px;
  height: 33px;
  padding: 2px 43px 2px 2px;
  background: transparent url(img/icon/sprite_tools_article_34_32.gif) no-repeat 116px -63px;
  font: normal 12px "Mada", Arial, sans-serif, Trebuchet MS, arial, verdana, sans-serif;
  text-decoration: none;
}

a.stats_pdf_download:hover {
  background-position: 116px -95px;
  text-decoration: underline;
}

div.shadow.right {
  float: right;
  width: auto;
  border: 1px solid #cccccc;
  padding: 10px;
}

/*# sourceMappingURL=style-prw.css.map */
