* {
  box-sizing: border-box; }

select {
  background-color: transparent; }

html {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll; }

body {
  height: 100%;
  background: #fff;
  color: #5c5c5c;
  font-size: 15px;
  line-height: 1.4; }

body, input, button, textarea, select {
  font-family: Arial, sans-serif; }

h1, h3, h4, h5, h6 {
  font-family: Arial, sans-serif; }

h2 {
  font-family: Arial, sans-serif; }

pre, tt, code, kbd, samp, var {
  font-family: "Courier New", Courier, monospace; }

h1 {
  font-size: 36px;
  font-weight: bold;
  color: #5c5c5c; }

h2 {
  font-size: 30px;
  font-weight: normal;
  color: #ffc600; }

h3 {
  font-size: 24px;
  font-weight: bold;
  color: #000; }

h4 {
  font-size: 16px;
  font-weight: bold;
  color: #5c5c5c; }

h5 {
  font-size: 14px;
  font-weight: bold;
  color: #000; }

h6 {
  font-size: 14px;
  font-weight: bold;
  color: #5c5c5c; }

a:link {
  color: #000;
  text-decoration: underline; }

a:visited {
  color: #000;
  text-decoration: underline; }

a:hover {
  color: #ffc819;
  text-decoration: underline; }

a:focus {
  color: #ffc819;
  text-decoration: underline; }

a:focus, :focus {
  outline: none; }

a:hover, a:active {
  color: #ffc819;
  outline: none; }

body, p, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, blockquote, th, td {
  margin: 0;
  padding: 0; }

fieldset, img {
  border: 0; }

img {
  vertical-align: bottom;
  max-width: 100%; }

ol li,
ul ol li {
  list-style-type: decimal; }

ul li {
  list-style-type: disc; }

ul ul li {
  list-style-type: circle; }

ul ul ul li {
  list-style-type: square; }

ol ol li {
  list-style-type: lower-alpha; }

ol ol ol li {
  list-style-type: lower-roman; }

sub {
  line-height: 0;
  vertical-align: sub;
  font-size: smaller; }

sup {
  line-height: 0;
  vertical-align: super;
  font-size: smaller; }

/**
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    contenteditable attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that are clearfixed.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after {
  clear: both; }

/**
* For IE 6/7 only
* Include this rule to trigger hasLayout and contain floats.
*/
.cf {
  *zoom: 1; }

/* color is to make that element stands out (see color set via body)
 * padding is used so Internet Explorer does not cut-off descenders in letters like p, g, etc.)
 */
legend {
  color: #000;
  padding-bottom: .5em; }

/* according to Eric Meyer's reset: tables still need 'cellspacing="0"' in the markup
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* caption and summary are very important for tabular data but because caption is nearly impossible to style across browsers many authors do not use it or use display:none to "hide" it (which is almost the same as not using it).
 * so to prevent such workaround, I am positioning this element off-screen
 */
caption {
  position: absolute;
  left: -999em; }

/* all th should be centered unless they are in tbody (table body)
 */
th {
  text-align: center; }

tbody th {
  text-align: left; }

/* See Eric Meyer's article about Fixed Monospace Sizing 
 * http://meyerweb.com/eric/thoughts/2010/02/12/fixed-monospace-sizing/
 */
code {
  color: #06f; }

code, pre {
  font-family: "Courier New", monospace, serif;
  font-size: 1em; }

/* This should be self explanatory
 */
blockquote, q, em, cite, dfn, i, cite, var, address {
  font-style: italic; }

/* to prevent some browsers from inserting quotes on "q" and "p" ("p" in blockquotes)
 */
blockquote p:before, blockquote p:after, q:before, q:after {
  content: ''; }

/* These should be self explanatory
 */
th, strong, dt, b {
  font-weight: bold; }

ins {
  text-decoration: none;
  border-bottom: 3px double #333; }

del {
  text-decoration: line-through; }

abbr,
acronym {
  border-bottom: 1px dotted #333;
  font-variant: normal; }

/* this is to reset the left/right gaps on nested elements
 */
dd p, dd pre, dd ul, dd ol, dd dl, li p, li pre, li ul, li ol, li dl, fieldset p, fieldset ul, fieldset ol {
  padding-right: 0;
  padding-left: 0; }

/* These should be self explanatory
 */
dd {
  padding-left: 20px;
  margin-top: .5em; }

ul li {
  margin-left: 14px; }

ol li {
  margin-left: 14px; }

/* we use margin for hr for the same reason we do for table 
 */
hr {
  border-style: inset;
  border-width: 1px; }

/* top margin solution */
/* this is my approach to create white space between elements, you do not have to adhere to it
 * rather than stylling these elements with top and bottom margin, or simply bottom margin I only use top margin
 */
h1, h2, h3, h4, h5, h6, p, pre, dt, li, hr, legend, input, button, textarea, select, address, table {
  margin-top: 1.2em; }

/* top padding solution */
/* this is a different approach which may be less frustrating for novice because it avoids running into collapsing margin and allows to clear floats while preserving space above the element
 * if you decide to give this a try, then comment out the above rule and uncomment the two next ones
 */
/* 
h1, h2, h3, h4, h5, h6, p, pre, dt, dd, li, legend, address {padding-top: 1.2em;}
hr, input, button, textarea, select, table {margin-top: 1.2em;}
*/
/* form elements
 * this should not affect the layout of the labels unless you style them in a way that padding applies
 * if I include this here it is mostly because when labels are styled with float and clear, top padding creates a gap between labels (bottom margin would, but not top margin)
 */
label {
  padding-top: 1.2em; }

/* line height helps to set the vertical alignment of radio buttons and check boxes (remember to group these in fieldsets) 
 */
fieldset {
  line-height: 1; }

/* vertical alignment of checkboxes (a different value is served to IE 7)
 */
input[type="checkbox"] {
  *vertical-align: baseline; }

/* vertical alignment of radio buttons
 */
input[type="radio"] {
  vertical-align: bottom; }

/* vertical alignment of input fields for IE 6
 */
input {
  _vertical-align: text-bottom; }

/* all values set to 'inherit"
 * the line-height is to override FF's default styling
 */
input, button, textarea, select, optgroup, option {
  font: inherit;
  text-transform: inherit;
  line-height: inherit !important; }

/*
 * in webkit/Mac, select fails to inherit color, font-*, etc if there is no other styling like background for example (border will do to)
 */
select {
  background-color: transparent; }

/* this is to fix IE 6 and 7 which create extra right/left padding on buttons
 * IMPORTANT: because IE 6 does not understand the first selector below, you need to apply the class "inputButton" to all input of type="button" in your documents
 * the first declaration is for IE 6 and 7, the second one for IE 6 only, the third one is for all browsers.
 */
button,
input[type="submit"],
input[type="reset"],
input[type="button"],
.inputButton {
  *overflow: visible;
  _width: 0;
  padding: .2em .4em; }

/* classes
 * to style elements with the default padding and margin we set on headings, paragraphs, lists, etc.
 * for example, this class could be used on a DIV inside a blockquote or a DIV inside a FORM, etc.
 */
.block {
  padding: 0 30px;
  margin-top: 1.2em; }

/* to swap padding for margin
 * for example, this class could be used on a heading you'd style with a bottom border
 */
.padding2margin {
  margin-right: 30px;
  margin-left: 30px;
  padding-right: 0;
  padding-left: 0; }

/* list items are styled by default with markers (disc, etc.) and left margin
 * if you apply the class "noMarker" to a list, its items won't display markers and won't have left margin
 */
.noMarker li {
  list-style: none;
  margin-left: 0; }

body.home #banner {
  padding-bottom: 0; }
body.home .inner #banner .moduletable .wk-slideshow .caption .wk-slideshow .caption {
  bottom: auto;
  right: auto;
  top: 50px; }
  body.home .inner #banner .moduletable .wk-slideshow .caption .wk-slideshow .caption blockquote {
    font-size: 1.8em; }

.moduletable.home-text {
  color: white;
  padding: 10px; }
  .moduletable.home-text ul {
    margin-left: 30px; }
.moduletable.top-menu {
  padding-left: 0; }
.moduletable.contact-number {
  float: right; }
  .moduletable.contact-number p {
    margin: 0; }
  .moduletable.contact-number a {
    color: white;
    font-size: 18px;
    text-decoration: none; }

ul#mainmenu {
  right: 150px;
  width: auto; }

/* Linked Phone number */
div#top {
  width: 590px; }

div#subscribe {
  left: 780px; }

/******************************

GENERAL CSS

******************************/
#wrap {
  background: #3a3a3a; }
  #wrap > .inner {
    margin: 0 auto;
    width: 960px; }

#head {
  height: 168px;
  position: relative;
  z-index: 999; }

#logo, #printlogo {
  height: 109px;
  left: 10px;
  position: absolute;
  top: 29px;
  width: 301px; }

#printlogo {
  display: none; }

#top {
  height: 20px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 29px;
  width: 590px; }

#subscribe {
  left: 780px;
  position: absolute;
  top: 55px; }
  #subscribe .moduletable.subscribe p {
    margin: 0; }
  #subscribe .moduletable.subscribe a {
    background: url(../img/subscribe-btn.png) no-repeat 0px 1px;
    color: #b7b7b7;
    font-size: 11px;
    padding: 0px 0px 0px 20px;
    text-decoration: none;
    text-transform: uppercase; }
    #subscribe .moduletable.subscribe a:hover {
      background: url(../img/subscribe-btn.png) no-repeat left -18px;
      color: #f3bd03; }

#menu-button {
  display: none; }

#content {
  overflow: hidden; }

#footer {
  background: #fff;
  padding-bottom: 100px; }
  #footer .inner {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 960px; }

.icons-container {
  margin: 59px 0 63px;
  overflow: hidden; }
  .icons-container .pacific {
    background: url("/images/logos/pacific-energy-logo.jpg") no-repeat 5px 0; }
  .icons-container .electric {
    background: url("/images/electric-tower-icon.jpg") no-repeat 30px 0; }
  .icons-container .clock {
    background: url("/images/clock-icon.png") no-repeat 36px 0; }
  .icons-container .careers {
    background: url("/images/careers-icon.png") no-repeat 28px 0; }
  .icons-container .media_releases {
    background: url("/images/media-releases-icon.png") no-repeat 50px 0;
    width: 50px; }
  .icons-container .listing {
    font-weight: normal;
    padding-left: 50px;
    width: 280px; }
    .icons-container .listing p {
      border: none;
      margin: 0px 0px 4px 0px; }
    .icons-container .listing a {
      font-weight: bold; }
    .icons-container .listing img {
      float: left;
      margin: 0px 2px 0px 0px; }

.icons {
  color: #898989;
  float: left;
  font: bold 12px/1.2 Arial, sans-serif;
  min-height: 49px;
  height: auto;
  padding: 12px 0 0 85px; }
  .icons p {
    border-left: 3px solid #dadada;
    margin: 0;
    padding-left: 6px; }
  .icons a {
    color: #898989;
    display: block;
    text-decoration: none; }
    .icons a:active, .icons a:hover, .icons a:focus {
      color: #000; }

#copyright {
  color: #898989;
  float: left;
  font: bold 10px/1 Arial, sans-serif;
  margin: 0;
  text-transform: uppercase; }

#credit {
  bottom: -7px;
  display: block;
  height: 34px;
  position: absolute;
  right: 0;
  width: 190px; }
  #credit a {
    display: block;
    overflow: hidden;
    text-indent: -9999em;
    width: 190px; }

/******************************

HOME CSS

******************************/
#banner {
  border-bottom: 1px solid #1b1b1b;
  height: 376px;
  padding: 0 0 57px;
  overflow: hidden; }

#banner-text {
  display: none; }

.banner {
  float: left;
  height: 351px;
  width: 770px; }

#introduction {
  color: #b7b7b7;
  float: left;
  font-size: 14px;
  height: 351px;
  padding: 0 0 0 10px;
  width: 180px; }
  #introduction h2 {
    color: #fff;
    font-size: 35px;
    margin: 0;
    line-height: 1; }

#featured {
  padding: 10px 0px 10px 10px; }
  #featured h1 {
    color: #fff;
    font-size: 30px;
    margin: 10px 0px 0px 0px; }

.corporate-video {
  background: url(/images/corporate-video-sprite.jpg) no-repeat;
  display: block;
  height: 114px;
  overflow: hidden;
  text-indent: -9999em;
  width: 180px; }
  .corporate-video:hover {
    background-position: 0 -114px; }

.home #content {
  margin-top: 37px; }
.home #main-content {
  float: left;
  width: 960px; }
.home #aside {
  float: left;
  margin: 0 0 0 10px;
  width: 180px; }
  .home #aside .build, .home #aside .own, .home #aside .maintain {
    color: #5C5C5C;
    display: block;
    font-size: 52px;
    line-height: 40px;
    margin: 0px 0px; }
  .home #aside .build {
    letter-spacing: 2px; }
  .home #aside .own {
    font-size: 59px;
    letter-spacing: 0px;
    line-height: 50px;
    margin: 0px 0px 0px 0px; }
  .home #aside .home #aside .maintain {
    font-size: 32px;
    letter-spacing: 0px;
    line-height: 30px; }
.home.portrait #content #main-content .moduletable.areas {
  height: 40px;
  overflow: hidden; }
  .home.portrait #content #main-content .moduletable.areas.active {
    color: #fff;
    height: auto;
    overflow: visible;
    padding-bottom: 40px; }

.areas {
  color: #959595;
  float: left;
  font-size: 14px;
  height: 86px;
  line-height: 1.3;
  margin: 0 10px 32px 0;
  /*overflow: hidden;*/
  width: 470px; }
  .areas h3, .areas h3 a {
    color: #ffc600;
    font: bold 16px/1.1 Arial, sans-serif;
    text-decoration: none; }
  .areas p a {
    color: #959595;
    text-decoration: none; }

.portrait .areas a.readmore {
  background: #000;
  border-left: 3px solid #707070;
  color: #ffc600;
  display: block;
  float: left;
  font-size: 13px;
  height: 30px;
  line-height: 30px;
  margin: 0px 0 10px;
  overflow: hidden;
  padding: 0 20px 0 20px;
  width: auto; }
  .portrait .areas a.readmore:hover {
    color: #fff; }

#main-content .one {
  background: url("/images/home-thumb-sprite-1.jpg") no-repeat; }
#main-content .two {
  background: url("/images/home-thumb-sprite-2.jpg") no-repeat; }
#main-content .three {
  background: url("/images/home-thumb-sprite-3.jpg") no-repeat; }
#main-content .four {
  background: url("/images/home-thumb-sprite-4.jpg") no-repeat; }
#main-content #page, #main-content .blog, #main-content div.contact, #main-content #xmap > ul {
  padding: 22px 50px 40px; }
#main-content #searchForm {
  padding: 20px 50px 0 50px; }
#main-content .search-results {
  padding: 0 50px 20px 50px; }
#main-content .contact-info {
  width: 50%;
  float: left;
  margin-bottom: 30px; }

/******************************

SUB CSS

******************************/
.sub #content {
  padding-bottom: 47px; }
.sub #main-content {
  background: #ececec;
  float: left;
  width: 748px; }
  .sub #main-content #page p, .sub #main-content #page li {
    text-align: justify; }

.breadcrumbs {
  background: #000 url(../img/kps-icon-top.png) no-repeat right top;
  color: #898989;
  display: block;
  font: bold 10px/1 Arial, sans-serif;
  height: 65px;
  overflow: hidden;
  padding: 37px 48px 0;
  text-transform: uppercase; }
  .breadcrumbs a {
    color: #898989; }
    .breadcrumbs a:active, .breadcrumbs a:hover, .breadcrumbs a:focus {
      color: #ffc819;
      text-decoration: none; }

.wk-slideshow ul {
  margin: 0;
  padding: 0; }
  .wk-slideshow ul li {
    list-style: none;
    padding: 0;
    margin: 0; }

.pagination li {
  border: none !important;
  float: left;
  padding: 10px 15px !important; }

/******************************

CONTACT FORM

******************************/
.contact-form {
  width: 216px;
  float: left;
  margin-bottom: 30px; }
  .contact-form .caption {
    display: block;
    font: bold 12px/1 Arial, sans-serif;
    padding-top: 1.2em; }
  .contact-form .rsform-block input, .contact-form .rsform-block textarea {
    background: #fff;
    border: 1px solid #b5b5b5;
    height: 20px;
    margin-top: 5px;
    padding: 2px;
    width: 210px; }
    .contact-form .rsform-block input#Submit, .contact-form .rsform-block textarea#Submit {
      background: #000;
      border: 0 none;
      border-left: 6px solid #757575;
      color: #ffc600;
      cursor: pointer;
      font: bold 15px/1 Arial, sans-serif;
      height: 35px;
      padding: 8px 16px !important;
      width: auto; }
      .contact-form .rsform-block input#Submit:hover, .contact-form .rsform-block textarea#Submit:hover {
        color: #fff; }
  .contact-form .rsform-block textarea {
    height: 75px; }
  .contact-form .rsform-block-test {
    margin-bottom: 10px; }

.formRed, .formError {
  color: #dddddd;
  text-align: left !important; }

/******************************

SUBSCRIBE FORM

******************************/
#subForm div div {
  background: #f3f3f3;
  border-bottom: 1px solid #757575;
  padding: 0 20px 15px; }
  #subForm div div.formSend {
    background: none;
    border: none;
    padding: 0; }
#subForm div #subForm label {
  display: inline-block;
  font: normal 13px/1.2 Arial, sans-serif;
  width: 100px; }

/******************************

FOOTER

******************************/
.dash {
  background: url(../img/dash.png) no-repeat 0 0;
  background-size: 190px auto;
  display: block;
  font-size: 0;
  height: 28px;
  line-height: 0;
  width: 190px; }
  .dash:hover {
    background-position: 0 100%; }

.rsfiles-layout {
  padding: 20px; }

.rsf_navbar_ul li {
  list-style: none;
  margin: 0 5px 0 0; }

.rsfiles-layout .btn-primary .btn-primary {
  color: #fff !important;
  text-decoration: none !important; }

/******************************

GENERAL CSS

******************************/
.buttonheading,
.leading_separator,
.article_separator,
.row_separator,
legend {
  display: none; }

#side-nav .moduletable h3,
#side-nav .moduletable-side-menu h3 {
  border-left: 7px solid #757575;
  color: #fff;
  font: bold 18px/1.2 Arial, sans-serif;
  margin: 0 0 19px;
  padding: 9px 19px; }

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

.cf:after {
  clear: both; }

/******************************

INPUT FIELDS AND BUTTONS

******************************/
.inputbox {
  background: #fff;
  color: #5c5c5c;
  border: 1px solid #bdbdbd;
  padding: 2px; }

/******************************

SEARCH BAR

******************************/
div.search-bar {
  float: right;
  height: 20px;
  width: 180px; }

.search-bar label {
  display: none; }

#mod-search-searchword {
  background: transparent;
  border: 1px solid #5e5c5c;
  color: #b7b7b7;
  float: left;
  font: bold 10px/1 Arial, sans-serif;
  height: 18px;
  margin: 0;
  padding: 0 5px;
  width: 118px; }

.search-bar .button {
  background: transparent;
  border: 0 none;
  color: #b7b7b7;
  cursor: pointer;
  font: bold 10px/1 Arial, sans-serif;
  float: left;
  height: 20px;
  margin: 0;
  padding: 0 !important;
  text-align: center;
  text-transform: uppercase;
  width: 50px; }

.search-bar .button:hover,
.search-bar .button:focus,
.search-bar .button:active {
  color: #fff; }

/******************************

SEARCH PAGE

******************************/
#search-searchword {
  background: #f6f5f5;
  border: 1px solid #5d5c5c;
  display: block;
  float: left;
  font: bold 10px/1 Arial, sans-serif;
  height: 20px;
  margin: 0;
  width: 227px; }

#searchForm .button {
  background: #3a3a3a;
  border: 1px solid #5d5d5c;
  color: #ececec;
  cursor: pointer;
  display: block;
  float: left;
  font: bold 12px/1 Arial, sans-serif;
  height: 20px;
  margin: 0;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  width: 60px; }

#searchForm .button:hover {
  color: #fff; }

#searchForm {
  margin-bottom: 1.2em;
  overflow: hidden; }

#searchForm .label {
  display: none; }

.searchintro {
  margin-top: 20px; }

.searchintro p:first-child {
  border-bottom: 1px solid #5e6060;
  color: #5e6060;
  font: normal 18px/1 Arial, sans-serif;
  padding: 12px 0; }

.searchintro p {
  margin: 0; }

.searchintro strong {
  background: #ffc819;
  padding: 2px; }

.searchintro a,
.results h3,
.results p {
  display: none; }

.results h4 {
  margin: 0; }

.search-results li, .pagination li {
  border-bottom: 1px solid #5e6060;
  display: block;
  margin: 0;
  padding-bottom: 20px; }

.search-results li .result-text {
  margin-top: 0; }

.search .counter {
  display: none; }

.pagination {
  padding: 0 50px 20px 50px; }

.pagination a {
  font-weight: bold; }

.tooltip {
  display: none !important; }

/******************************

READ MORE LINK

******************************/
a.readon {
  background: url(../img/plus-icon.gif) no-repeat right center;
  color: #000;
  font: normal 13px/1 Arial, sans-serif;
  padding: 0 19px 0 0;
  text-decoration: none; }

a.readon:hover,
a.readon:focus,
a.readon:active {
  color: #000;
  text-decoration: underline; }

/******************************

BLOG LAYOUT

******************************/
.article_row,
.leading {
  border-top: 1px solid #5e6060;
  padding: 0 0 20px; }

.blog .article_row:first-child,
.blog .leading {
  border-top: 0 none; }

/******************************

CONTACT PAGE

******************************/
.contact {
  overflow: hidden; }

.contact_address {
  float: left;
  width: 50%; }

#emailForm {
  background: url(../img/com-mod-gradient-bg.png) repeat-y;
  color: #fff;
  float: left;
  min-height: 348px;
  height: auto !important;
  height: 348px;
  padding: 0 26px 26px; }

.contact_email label {
  display: block;
  font: bold 13px/1 Arial, sans-serif; }

.contact_email input,
.contact_email textarea {
  margin: 8px 0 0; }

.contact_email input {
  background: #fff;
  border: 1px solid #b5b5b5;
  height: 20px;
  width: 210px;
  padding: 2px; }

.contact_email textarea {
  background: #fff;
  border: 1px solid #b5b5b5;
  height: 60px;
  width: 210px;
  padding: 2px; }

button, .button {
  background: #000;
  border: 0 none;
  border-left: 6px solid #757575;
  color: #ffc600;
  cursor: pointer;
  font: bold 15px/1 Arial, sans-serif;
  padding: 8px 16px; }
  button:active, button:hover, button:focus, .button:active, .button:hover, .button:focus {
    background: #FFC600;
    color: #000; }

#searchForm button {
  padding: 0px !important; }

button:hover {
  color: #fff; }

/******************************

CONTACT PAGE

******************************/
.acymailing_form {
  color: #fff;
  font-weight: bold; }

.acymailing_form input {
  margin-top: 5px; }

/******************************

SYSTEM MESSAGES

******************************/
#head #system-message {
  background: none repeat scroll 0 0 #ECECEC;
  bottom: 0;
  display: block;
  left: 0;
  margin-bottom: 2px;
  padding: 0;
  position: absolute;
  width: 100%; }

#head #system-message dd {
  margin: 0;
  padding: 0;
  text-indent: 0; }

#head #system-message dd ul {
  border-bottom: 3px solid #84A7DB;
  border-top: 3px solid #84A7DB;
  color: #0055BB;
  list-style: none outside none;
  margin: 0;
  padding: 10px; }

#head #system-message dd ul li {
  display: block;
  margin: 0; }

.page-header h1,
h1.page-title,
.page-header h2,
h2.page-title,
#xmap h1 {
  /*background: transparent url( ../images/kps-icon-bottom.png ) no-repeat right top;*/
  /*color: $yellow;*/
  font-size: 30px;
  font-weight: bold;
  min-height: 40px;
  height: auto !important;
  height: 40px;
  line-height: 1.2;
  margin: 0;
  padding: 20px 49px 5px; }

h1, h2, h3, h4, h5, h6 {
  font-weight: bold; }

#featured #h1 {
  font-weight: normal; }

.blog h3 {
  color: #5c5c5c;
  font: bold 16px/1.2 Arial, sans-serif; }

th {
  background: #000;
  color: #fff;
  font: bold 16px/1 Arial, sans-serif;
  padding: 7px 17px;
  text-align: center; }

td {
  background: #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  color: #5c5c5c;
  font: normal 13px/1.2 Arial, sans-serif;
  padding: 12px; }

.introtext {
  font: bold 16px/1.2 Arial, sans-serif; }

blockquote {
  border-top: 3px solid #FFC600;
  border-bottom: 3px solid #FFC600;
  font: bold 16px/1.2 Arial, sans-serif;
  margin-top: 1.2em;
  padding: 5px 0; }

.marker {
  display: block;
  font-weight: bold; }

body {
  font-size: 15px; }

.inner {
  margin: 0 auto;
  max-width: 960px;
  position: relative; }

#wrap {
  padding: 0 0;
  width: 100%; }
  #wrap > .inner {
    width: 100%; }
  #wrap .page-header {
    border: none;
    margin: 0;
    padding: 0; }
    #wrap .page-header h1 {
      font-size: 1.8em;
      padding: 15px 15px; }

#head {
  height: 80px; }
  #head #top, #head #subscribe, #head #search, #head #mainmenu {
    display: none; }
  #head #mainmenu {
    position: absolute;
    top: 130px;
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 0 0 0 0px;
    right: 0;
    z-index: 999; }
    #head #mainmenu > li {
      background: #f3f3f3;
      border-bottom: 3px solid #FFC600;
      display: block;
      margin: 0;
      padding: 20px 0;
      text-align: center;
      width: 100%; }
      #head #mainmenu > li:first-child {
        border-top: 3px solid #FFC600; }
      #head #mainmenu > li > a {
        display: block;
        text-decoration: none;
        font: bold 15px/1 Arial, sans-serif;
        margin: 0;
        padding: 0 5px 0 6px; }
      #head #mainmenu > li > ul {
        display: none; }
    #head #mainmenu.open {
      display: block;
      top: 71px;
      width: 100%; }
      #head #mainmenu.open li {
        display: block;
        height: auto;
        min-height: 20px;
        padding: 0 0px;
        width: 100%; }
        #head #mainmenu.open li a {
          border: none;
          display: block;
          min-height: 45px;
          line-height: 45px;
          padding: 0 20px; }
        #head #mainmenu.open li span {
          display: inline; }
        #head #mainmenu.open li:hover ul {
          display: none;
          padding: 0;
          top: 0; }
        #head #mainmenu.open li.open ul {
          display: block;
          margin: 0;
          padding: 0;
          position: relative;
          width: 100%; }
      #head #mainmenu.open > li.parent > a {
        background: url(../img/menu-more.png) no-repeat top right; }
      #head #mainmenu.open > li.open > a {
        background: url(../img/menu-more.png) no-repeat right -47px;
        color: #FFC600; }
      #head #mainmenu.open > li.open > ul > li > ul {
        display: none; }
      #head #mainmenu.open > li > ul {
        background: #f8f8f8;
        padding: 10px 0px !important; }
        #head #mainmenu.open > li > ul > li {
          width: 100%;
          height: 14px;
          min-height: inherit;
          margin: 5px 0px 10px;
          font-weight: bold; }
          #head #mainmenu.open > li > ul > li a {
            height: auto !important;
            min-height: inherit;
            line-height: normal;
            padding: 0 14px;
            text-decoration: none;
            color: #262525; }
            #head #mainmenu.open > li > ul > li a:last-child {
              padding-bottom: 10px; }
  #head #logo {
    height: 60px;
    left: 10px;
    top: 10px; }
    #head #logo img {
      height: 60px;
      width: auto; }
  #head #menu-button {
    background: url(../img/menu-btn.png) no-repeat top left;
    color: #FFC600;
    cursor: pointer;
    display: block;
    height: 27px;
    right: 10px;
    overflow: hidden;
    padding: 4px 0px 0px 11px;
    position: absolute;
    text-transform: uppercase;
    top: 40px;
    width: 82px; }
    #head #menu-button.open {
      background: url(../img/menu-btn.png) no-repeat bottom left;
      color: #fff; }

.moduletable.contact-number a {
  font-size: 15px; }

form.search_result #search_searchword {
  font-size: 14px;
  width: 60%; }
form.search_result #content #main-content {
  width: 100%; }

h1 .contentheading, h1 .componentheading, h2 .contentheading, h2 .componentheading {
  font-size: 23px;
  padding-left: 20px; }

#acymodifyform .inputbox {
  width: 100%; }
#acymodifyform .key {
  width: 60px; }

#content .areas h3, #content .areas p {
  border-left: 3px solid #7d7d7d;
  margin-left: 168px;
  margin-top: 0;
  padding-left: 8px;
  width: calc(100vw - 168px);
  max-width: 302px; }
#content #main-content .banner-image {
  height: 250px;
  overflow: hidden; }
  #content #main-content .banner-image ul {
    margin: 0; }
    #content #main-content .banner-image ul li {
      margin: 0; }
  #content #main-content .banner-image p {
    margin-top: 0; }
#content p {
  margin: 5px 0; }
#content ul {
  margin: 15px 10px; }
  #content ul li {
    margin: 5px 0px 5px 10px; }

h1 {
  font-size: 1.7em; }

.home #content {
  padding-bottom: 10px; }
  .home #content #main-content {
    width: 100%; }
    .home #content #main-content .areas:hover {
      color: inherit; }
.home #banner {
  height: 180px;
  overflow: hidden;
  padding: 0;
  width: 100%; }
  .home #banner .banner {
    display: none; }
    .home #banner .banner img {
      display: none; }
  .home #banner #featured {
    left: 0px;
    position: absolute;
    top: 230px; }
  .home #banner #introduction {
    display: none; }

#page img {
  height: auto !important;
  width: 100% !important; }

.sub .breadcrumbs {
  display: none; }
.sub #sub-banner .moduletable {
  padding: 0; }
.sub #content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  padding-bottom: 30px !important; }
  .sub #content #side-nav {
    margin: 0 2px 0 0;
    overflow: hidden;
    width: 100%; }
    .sub #content #side-nav .menu {
      display: block;
      margin: 0;
      padding: 0; }
      .sub #content #side-nav .menu li, .sub #content #side-nav .menu a {
        display: block; }
      .sub #content #side-nav .menu li {
        margin: 0;
        padding: 0; }
      .sub #content #side-nav .menu > li {
        border-top: 1px solid #646464;
        margin: 0;
        padding: 9px 20px; }
        .sub #content #side-nav .menu > li a {
          color: #fff;
          font-size: 14px;
          font-weight: bold;
          text-decoration: none; }
        .sub #content #side-nav .menu > li:hover > a {
          color: #ffc600; }
      .sub #content #side-nav .menu > .active {
        padding: 9px 0; }
      .sub #content #side-nav .menu .active a {
        padding: 0 20px; }
      .sub #content #side-nav .menu .active ul {
        background: #5e6060;
        border: 0 none;
        margin-top: 8px;
        padding: 5px 0; }
      .sub #content #side-nav .menu .active li {
        padding: 5px 0; }
        .sub #content #side-nav .menu .active li a {
          font-size: 12px; }
      .sub #content #side-nav .menu .active > a {
        border-left: 3px solid #ffc600;
        color: #ffc600;
        padding-left: 17px; }
    .sub #content #side-nav #sub-banner .moduletable {
      margin: 0; }
    .sub #content #side-nav .moduletable {
      background-color: #969796; }
      .sub #content #side-nav .moduletable li {
        list-style-type: none; }
        .sub #content #side-nav .moduletable li a {
          text-decoration: none; }
    .sub #content #side-nav img {
      display: none; }
  .sub #content #main-content {
    max-width: 748px; }
.sub #main-content {
  width: 100%; }
  .sub #main-content h2.contentheading {
    background: #000 url(../img/port-title.png) no-repeat top right;
    min-height: 30px;
    padding: 12px 0 8px 15px !important; }
  .sub #main-content h3 {
    color: #5c5c5c;
    font-family: Arial !important;
    font-size: 16px;
    font-weight: bold;
    line-height: 30px !important;
    margin: 10px 0 0 0;
    min-height: 30px; }
  .sub #main-content #page, .sub #main-content .blog, .sub #main-content div.contact, .sub #main-content #acymodifyform, .sub #main-content #acylistslisting, .sub #main-content div.xmap {
    padding: 15px 15px; }
  .sub #main-content #page {
    color: #5c5c5c; }

#subForm div {
  background: #f3f3f3;
  border-bottom: 1px solid #757575;
  padding: 0 20px 15px; }
  #subForm div.formSend {
    background: none;
    border: none;
    padding: 0; }
#subForm label {
  display: inline-block;
  font: normal 13px/1.2 Arial, sans-serif;
  width: 100px; }

#footer {
  position: relative;
  left: 0;
  width: 100vw;
  padding: 10px 5px; }
  #footer .inner {
    width: 100%; }
  #footer .moduletable.footer-contact {
    float: left;
    height: auto;
    margin-left: -68px;
    text-align: left;
    width: 100%; }
    #footer .moduletable.footer-contact p {
      display: inline-block;
      text-align: left; }
  #footer #footer-menu {
    border-bottom: 1px solid #D9D9D9;
    margin: 5px 0px 5px -2px !important;
    width: 100%;
    float: left;
    display: block;
    line-height: 1; }
    #footer #footer-menu li {
      margin: 0 0 10px;
      padding: 0 8px; }
  #footer #copyright {
    margin: 5px 0px 5px -2px !important;
    width: 100%;
    float: left;
    padding: 0px 8px; }
  #footer #credit {
    display: none; }
  #footer .careers, #footer .pacific {
    background-position: 0px 0px;
    border-bottom: 1px solid #d9d9d9;
    letter-spacing: -0.2px;
    margin: 5px 0px; }
  #footer .icons-container {
    margin: 0; }
  #footer .icons {
    width: 100%; }
    #footer .icons p {
      padding-left: 5px !important; }

#footer-menu {
  display: block;
  float: left;
  line-height: 1;
  margin: 0 0 0 45px; }
  #footer-menu li {
    border-left: 1px solid #898989;
    display: block;
    float: left;
    line-height: 1;
    margin: 0;
    padding: 0 16px; }
    #footer-menu li:first-child {
      border: 0 none;
      padding-left: 0; }
  #footer-menu a {
    color: #898989;
    display: block;
    font: bold 10px/1 Arial, sans-serif;
    text-transform: uppercase;
    text-decoration: none; }
    #footer-menu a:active, #footer-menu a:hover, #footer-menu a:focus {
      background-color: transparent;
      color: #000;
      text-decoration: underline; }
  #footer-menu #current a, #footer-menu .active a {
    background-color: transparent;
    color: #000;
    text-decoration: underline; }

/*  Enquire now button, new home text and phone link */
.wk-slideshow ul.slides li img {
  height: auto !important;
  width: auto !important; }
.wk-slideshow .caption {
  font-size: 1.7em;
  line-height: 1.2;
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: auto; }

.home #banner {
  background-size: contain;
  height: auto; }
  .home #banner #featured {
    position: relative;
    top: auto; }

ul#mainmenu {
  right: 0; }

#call-to-action {
  padding: 0 10px;
  position: absolute;
  top: 85px;
  width: 100%; }
  #call-to-action .moduletable.contact-number {
    width: 50%;
    float: right; }
    #call-to-action .moduletable.contact-number p {
      text-align: right; }
  #call-to-action .moduletable.enquire-now-button {
    float: left;
    position: relative;
    top: -98px;
    width: 50%; }
    #call-to-action .moduletable.enquire-now-button .enquire-button {
      background-color: #FFC600;
      clip-path: polygon(0 0, 100% 0%, 100% 60%, 85% 100%, 0% 100%);
      padding: 10px 15px 10px 20px;
      position: absolute;
      right: auto;
      top: 90px; }
      #call-to-action .moduletable.enquire-now-button .enquire-button a {
        color: #5c5c5c;
        font: bold 15px/1 Arial, sans-serif;
        margin: 0;
        text-decoration: none; }

a[title='Shopping Cart'] {
  background: #000;
  color: #FFC600;
  font-size: 30px;
  padding: 7px;
  position: absolute;
  right: 30px;
  top: 100px; }
  a[title='Shopping Cart']:active, a[title='Shopping Cart']:hover, a[title='Shopping Cart']:focus {
    background: #FFC600;
    color: #000; }
  a[title='Shopping Cart'] span {
    display: none; }

.container_oc .row.home > div:first-child {
  margin-bottom: 40px; }
.container_oc .product-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; }
  .container_oc .product-list .product-teaser {
    margin-bottom: 41px; }
    .container_oc .product-list .product-teaser a {
      text-decoration: none; }
    .container_oc .product-list .product-teaser .image {
      height: 90vw;
      max-height: 300px;
      overflow: hidden;
      width: 90vw;
      max-width: 300px; }
      .container_oc .product-list .product-teaser .image img {
        height: auto;
        max-height: 100%;
        min-height: 100%;
        margin-left: 50%;
        transform: translateX(-50%);
        width: auto;
        min-width: 100%; }
    .container_oc .product-list .product-teaser .caption {
      background: #fff;
      color: #000;
      font-size: 16px;
      padding: 20px 15px 15px; }
      .container_oc .product-list .product-teaser .caption h4 {
        font-weight: normal;
        margin: 0 0 4px; }
      .container_oc .product-list .product-teaser .caption #price {
        color: #000;
        font-size: 23px;
        font-weight: bold;
        margin: 0; }
    .container_oc .product-list .product-teaser .button-group {
      margin-top: 9px; }
      .container_oc .product-list .product-teaser .button-group a {
        color: #FFC600; }
      .container_oc .product-list .product-teaser .button-group .button:active, .container_oc .product-list .product-teaser .button-group .button:hover, .container_oc .product-list .product-teaser .button-group .button:focus {
        background: #FFC600;
        color: #000; }

#content_oc {
  padding: 20px; }

.product-page .product-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  float: left;
  width: 90vw;
  max-width: 307px; }
  .product-page .product-gallery .image-container {
    height: 90vw;
    max-height: 307px;
    overflow: hidden;
    width: 90vw;
    max-width: 307px; }
    .product-page .product-gallery .image-container img {
      height: auto;
      max-height: 100%;
      min-height: 100%;
      margin-left: 50%;
      transform: translateX(-50%);
      width: auto;
      min-width: 100%; }
    .product-page .product-gallery .image-container.image-additional {
      height: 20vw;
      max-height: 80px;
      margin-top: 5px;
      width: 20vw;
      max-width: 80px; }
.product-page .product-info {
  background: #fff;
  float: right;
  padding: 30px 20px;
  position: relative;
  width: 336px; }
.product-page .product-price span.price {
  color: #000;
  font-size: 26px;
  font-weight: bold; }
.product-page .product-price small {
  color: #66666;
  font-size: 16px; }
.product-page .buy-options {
  color: #000;
  margin: 7px 0 -5px; }
  .product-page .buy-options label {
    font-weight: bold; }
  .product-page .buy-options input[type="text"] {
    background: #ececec;
    border: 1px solid #b7b7b7;
    padding: 4px 15px;
    width: 80px; }
  .product-page .buy-options button {
    position: absolute;
    bottom: -37px;
    left: 0; }
    .product-page .buy-options button:active, .product-page .buy-options button:hover, .product-page .buy-options button:focus {
      color: #000; }
.product-page .product-spec {
  color: #000;
  font-size: 16px;
  margin-top: 25px; }
.product-page .product-descr {
  clear: both; }

.container div.alert button {
  background: none;
  border: none;
  color: #d31d1d; }
.container div.alert.alert-success, .container div.alert.alert-danger {
  text-align: right; }
.container div.alert.alert-danger {
  padding-right: 10px; }
  .container div.alert.alert-danger > span {
    border: 1px solid #d31d1d;
    padding: 5px 0px 5px 10px; }
.container div.alert .text-danger {
  font-weight: bold; }
.container div.text-danger {
  color: #d31d1d; }
.container.cart table {
  width: 100%; }
  .container.cart table td {
    background: none;
    border: none; }
  .container.cart table thead td {
    font-size: 12px;
    padding: 10px 12px 6px 2px; }
  .container.cart table tbody td {
    background: #fff;
    border: 2px solid #ececec;
    font-size: 14px; }
    .container.cart table tbody td.img-thumbnail {
      padding: 9px;
      max-width: 118px; }
      .container.cart table tbody td.img-thumbnail .image-container {
        max-height: 100px;
        margin: 0;
        max-width: 100px; }
    .container.cart table tbody td.product-name {
      padding-left: 15px;
      max-width: 210px; }
    .container.cart table tbody td.product-qty {
      max-width: 60px; }
      .container.cart table tbody td.product-qty input[type="text"] {
        width: 100%; }
      .container.cart table tbody td.product-qty .btn {
        padding: 0; }
    .container.cart table tbody td.product-total {
      font-weight: bold; }
.container.cart button {
  background: none;
  border: none;
  color: #000; }
  .container.cart button.btn {
    display: inline-block !important; }
.container.cart .total-cost div {
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 3px;
  padding: 15px;
  text-align: right;
  min-width: 153px; }
  .container.cart .total-cost div.Total {
    background: #FFC600; }
.container.cart .image-container {
  height: 30vw;
  max-height: 150px;
  margin: 5px;
  overflow: hidden;
  width: 30vw;
  max-width: 150px; }
  .container.cart .image-container img {
    height: auto;
    max-height: 100%;
    min-height: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 100%; }
.container.cart .buttons a {
  display: inline-block;
  color: #FFC600;
  padding: 10px 15px 10px 20px;
  text-align: center;
  text-decoration: none;
  min-width: 153px; }
  .container.cart .buttons a:first-child {
    margin-right: 10px; }
  .container.cart .buttons a:active, .container.cart .buttons a:hover, .container.cart .buttons a:focus {
    color: #000; }
.container.checkout input[type="button"] {
  color: #FFC600;
  cursor: pointer;
  background-color: #000;
  border: none;
  border-left: 6px solid #757575;
  font: bold 15px/1 Arial, sans-serif;
  height: 35px;
  padding: 8px 16px;
  width: auto; }
  .container.checkout input[type="button"]:hover {
    color: #000;
    background-color: #FFC600; }
.container.checkout .panel-group .panel {
  clear: both; }
  .container.checkout .panel-group .panel h2 {
    color: #262525;
    font-size: 20px;
    margin: 0; }
  .container.checkout .panel-group .panel .panel-heading {
    clear: both; }
    .container.checkout .panel-group .panel .panel-heading a {
      text-decoration: none; }
      .container.checkout .panel-group .panel .panel-heading a:hover {
        color: #000; }
  .container.checkout .panel-group .panel .panel-collapse#collapse-checkout-option .login-box {
    background: #fff;
    float: right;
    padding: 1.2em;
    text-align: right;
    width: auto; }
    .container.checkout .panel-group .panel .panel-collapse#collapse-checkout-option .login-box #input-password {
      margin-bottom: 1.2em; }
  .container.checkout .panel-group .panel .panel-collapse#collapse-payment-address .col-sm-6 label {
    display: inline-block;
    width: 40%; }
  .container.checkout .panel-group .panel .panel-collapse#collapse-payment-address .col-sm-6 input, .container.checkout .panel-group .panel .panel-collapse#collapse-payment-address .col-sm-6 select {
    width: 50%; }
  .container.checkout .panel-group .panel .panel-collapse#collapse-payment-method textarea {
    width: 100%; }
  .container.checkout .panel-group .panel .panel-collapse#collapse-checkout-confirm h2 {
    margin-top: 1.2em; }

@media screen and (min-width: 480px) {
  body {
    font-size: 14px; }

  #wrap > .inner {
    width: 100%; }

  #head #top, #head #subscribe, #head #search, #head #mainmenu {
    display: none; }
  #head #logo {
    height: 60px;
    left: 10px;
    top: 10px;
    width: 100%; }
    #head #logo img {
      height: 60px; }
  #head #menu-button {
    color: #FFC600;
    cursor: pointer;
    display: block;
    height: 27px;
    right: 10px;
    overflow: hidden;
    padding: 4px 0px 0px 11px;
    position: absolute;
    text-transform: uppercase;
    top: 40px; }
    #head #menu-button.open {
      color: #fff; }

  #head #mainmenu.open {
    display: block;
    top: 71px;
    width: 100%; }
    #head #mainmenu.open > li {
      background: url(../img/menu-bg.png) repeat-x top left;
      display: block;
      height: auto;
      padding: 0 0px;
      width: 100%; }
      #head #mainmenu.open > li > a {
        font-size: 22px !important;
        border: none;
        display: block;
        min-height: 45px;
        line-height: 45px;
        padding: 0 20px; }
      #head #mainmenu.open > li span {
        display: inline; }
      #head #mainmenu.open > li ul {
        display: none; }
      #head #mainmenu.open > li.parent > a {
        background: url(../img/menu-more.png) no-repeat top right; }
      #head #mainmenu.open > li.open > a {
        background: url(../img/menu-more.png) no-repeat right -47px;
        color: #fff; }
      #head #mainmenu.open > li.open ul {
        background: #262525;
        display: block;
        margin: 0;
        padding: 10px 0;
        position: relative;
        width: 100%; }
        #head #mainmenu.open > li.open ul li {
          background: #262525;
          display: block;
          float: none;
          width: 100%; }
          #head #mainmenu.open > li.open ul li a {
            border: none;
            display: block;
            padding: 5px 20px; }
      #head #mainmenu.open > li:hover ul {
        display: none;
        padding: 0;
        top: 0; }

  #content p {
    margin: 7px 0; }
  #content ul {
    margin: 15px 10px; }
    #content ul li {
      margin: 7px 0px 7px 10px; }

  form.search_result {
    margin-top: 20px; }
    form.search_result #search_searchword {
      font-size: 15px;
      height: 18px;
      width: 60%; }
    form.search_result form.search_result button.button {
      font-size: 15px;
      height: 24px;
      line-height: 20px;
      padding: 4px 5px;
      width: auto; }

  .home #content #main-content {
    width: 100%; }
  .home .home #banner {
    background: url(../img/pic-landscape.png) no-repeat top left;
    border: none;
    float: right;
    height: 179px;
    overflow: hidden;
    padding: 0;
    right: 10px;
    width: 222px; }
    .home .home #banner h1 {
      font-size: 16px !important; }
    .home .home #banner #introduction {
      display: none; }
    .home .home #banner #featured {
      left: 0px;
      position: absolute;
      top: 230px;
      padding: 10px 20px;
      text-align: left;
      top: 250px; }
    .home .home #banner .banner {
      display: none; }
      .home .home #banner .banner img {
        display: none; }
      .home .home #banner .banner .home #banner #banner-text {
        color: #999;
        display: none; }
        .home .home #banner .banner .home #banner #banner-text.active {
          background: url(../img/banner-text-bg.png) no-repeat top left;
          display: block;
          font-size: 13px;
          height: 141px;
          padding: 10px;
          position: absolute;
          top: 90px;
          width: 202px; }

  .sub h1 .componentheading,
  .sub h1 .contentheading, .sub h2 .componentheading,
  .sub h2 .contentheading {
    font-size: 23px !important;
    padding-left: 20px !important;
    margin-bottom: 20px !important; }
  .sub #content {
    padding-bottom: 30px; }
  .sub .sub #main-content {
    width: 100% !important; }
    .sub .sub #main-content #page {
      color: text_main;
      padding: 0 20px 20px !important; }
      .sub .sub #main-content #page img {
        height: auto !important;
        width: 100% !important; }
    .sub .sub #main-content h2.contentheading {
      background: #000 url(../img/port-title.png) no-repeat top right;
      min-height: 30px;
      padding: 12px 0 8px 15px !important; }
    .sub .sub #main-content .sub #main-content h3 {
      color: text_main;
      font-family: Arial !important;
      font-size: 16px;
      font-weight: bold;
      line-height: 30px !important;
      margin: 10px 0 0 0;
      min-height: 30px; }

  #main-content #page, #main-content .blog, #main-content div.contact, #main-content #acymodifyform, #main-content #acylistslisting, #main-content div.xmap {
    padding: 15px 15px; } }
@media screen and (min-width: 600px) {
  .container_oc .product-list .product-teaser:nth-child(2n) {
    margin-left: 10px; } }
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2em; }

  .moduletable.contact-number a {
    font-size: 18px; }

  #head {
    height: 130px; }
    #head #logo {
      height: auto;
      width: auto; }
      #head #logo img {
        height: 75px; }
    #head #subscribe {
      left: auto;
      right: 20px; }
    #head #top, #head #subscribe {
      display: block; }
    #head #call-to-action {
      right: 0;
      top: 45px;
      width: auto; }
      #head #call-to-action .moduletable {
        float: none;
        width: auto; }
        #head #call-to-action .moduletable.enquire-now-button {
          top: -75px; }
          #head #call-to-action .moduletable.enquire-now-button .enquire-button {
            right: 0; }
    #head #menu-button {
      display: none; }
    #head #mainmenu {
      display: block;
      margin: 0;
      padding: 0 0 0 0px;
      position: absolute;
      right: 0;
      top: 94px;
      width: 630px; }
      #head #mainmenu li {
        float: left;
        list-style-type: none; }
        #head #mainmenu li:active > ul, #head #mainmenu li:hover > ul, #head #mainmenu li:focus > ul {
          display: block;
          left: 0;
          top: 36px; }
        #head #mainmenu li a {
          text-decoration: none; }
      #head #mainmenu > li {
        background: transparent;
        border: none;
        height: 40px;
        margin: 0;
        padding: 0;
        position: relative;
        text-align: left;
        width: 120px; }
        #head #mainmenu > li:first-child {
          border: none; }
        #head #mainmenu > li > a {
          border-left: 3px solid #707070;
          color: #FFC600;
          height: 30px; }
        #head #mainmenu > li:active > ul, #head #mainmenu > li:hover > ul, #head #mainmenu > li:focus > ul {
          display: block;
          margin: 0; }
        #head #mainmenu > li:hover > a, #head #mainmenu > li#current > a, #head #mainmenu > li.active > a {
          color: #fff; }
      #head #mainmenu span {
        display: block; }
      #head #mainmenu ul {
        background: #262525;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        line-height: 1.3;
        padding: 15px 0;
        position: absolute;
        text-transform: none;
        width: 250px; }
        #head #mainmenu ul li {
          margin: 0;
          padding: 0;
          text-align: left; }
          #head #mainmenu ul li > a {
            color: #fff;
            display: block;
            font-size: 15px;
            font-weight: bold;
            padding: 9px 10px; }
          #head #mainmenu ul li:hover > a, #head #mainmenu ul li:active > a, #head #mainmenu ul li:focus > a, #head #mainmenu ul li#current #head #mainmenu ul li.active > a {
            border-left: 3px solid #FFC600;
            color: #FFC600;
            padding-left: 7px; }
          #head #mainmenu ul li:hover > ul, #head #mainmenu ul li:focus > ul {
            left: -251px;
            top: 0; }
        #head #mainmenu ul > li {
          position: relative;
          width: 250px; }

  #mainmenu ul li.item33:hover > ul {
    left: -400px;
    margin: 0px; }
  #mainmenu li.item89, #mainmenu li.item90, #mainmenu li.item91, #mainmenu li.item92 {
    display: none; }

  #banner .wk-slideshow {
    margin: 0 auto;
    max-width: 820px; }
    #banner .wk-slideshow .caption {
      font-size: 2em;
      font-weight: bold;
      top: 20px; }

  body.home #banner {
    height: 433px;
    padding: 0 0 57px; }

  #footer .icons-container .moduletable.icons {
    width: 450px; }
    #footer .icons-container .moduletable.icons.footer-contact {
      height: auto; }
  #footer #footer-menu li {
    padding: 0 16px; }
  #footer .pacific, #footer .careers, #footer #footer-menu {
    border-bottom: none; }
  #footer #footer-menu {
    width: auto; }
  #footer #copyright {
    width: auto; }
  #footer #credit {
    display: block; }

  /******************************
  
  TOP MENU CSS
  
  ******************************/
  .top-menu {
    float: left;
    height: 15px;
    padding: 5px 0 0 28px; }
    .top-menu #top-menu li {
      border-left: 1px solid #636363;
      float: left;
      padding: 0 12px; }

  #top-menu {
    display: block;
    height: 15px;
    margin: 0;
    padding: 0; }
    #top-menu #current a {
      color: #ffc819; }
    #top-menu li, #top-menu a {
      display: block; }
    #top-menu li {
      margin: 0;
      padding: 0; }
      #top-menu li:first-child {
        border: 0 none; }
      #top-menu li.active a {
        color: #ffc819; }
    #top-menu a {
      color: #b7b7b7;
      font: bold 10px/1 Arial, sans-serif;
      text-transform: uppercase;
      text-decoration: none; }

  /******************************
  
  SIDE MENU CSS
  
  ******************************/
  #home-side-menu {
    display: block; }
    #home-side-menu li, #home-side-menu a {
      display: block; }
    #home-side-menu li {
      height: 50px;
      margin: 0 0 1px;
      overflow: hidden;
      padding: 0;
      width: 180px; }
    #home-side-menu a {
      background: url(../img/side-menu-bg-sprite.png) no-repeat;
      color: #fff;
      font: bold 13px/1 Arial, sans-serif;
      height: 30px;
      padding: 10px;
      text-decoration: none; }
      #home-side-menu a:active, #home-side-menu a:hover, #home-side-menu a:focus {
        background-position: 0 -50px;
        color: #000; }

  #side-nav {
    float: left;
    padding: 0 0 20px; }
    #side-nav img {
      display: block !important; }

  .sub #content {
    flex-wrap: nowrap; }
    .sub #content #side-nav {
      width: 22%;
      max-width: 210px; }
      .sub #content #side-nav .moduletable {
        background-color: #969796;
        background-image: -webkit-linear-gradient(bottom, #676767, #969796);
        background-image: -moz-linear-gradient(bottom, #676767, #969796);
        background-image: -o-linear-gradient(bottom, #676767, #969796);
        background-image: linear-gradient(to top, #676767, #969796);
        clip-path: polygon(0 0, 100% 0%, 100% 94%, 82% 100%, 0% 100%);
        margin: 0;
        padding: 20px 0; }
        .sub #content #side-nav .moduletable ul {
          margin: 0; }
      .sub #content #side-nav #sub-banner {
        height: 120px;
        overflow: hidden; }
        .sub #content #side-nav #sub-banner .moduletable {
          padding: 0; }
    .sub #content #main-content {
      padding-bottom: 40px;
      width: 78%;
      max-width: 748px; }
      .sub #content #main-content .breadcrumbs {
        display: block; }
        .sub #content #main-content .breadcrumbs a, .sub #content #main-content .breadcrumbs span {
          border-right: 1px solid #898989;
          padding: 0px 4px; }
          .sub #content #main-content .breadcrumbs a:first-child, .sub #content #main-content .breadcrumbs span:first-child {
            margin-left: -4px; }
          .sub #content #main-content .breadcrumbs a.cart, .sub #content #main-content .breadcrumbs span.cart {
            color: #FFC600;
            float: right;
            font-size: 11px;
            font-weight: normal;
            margin-top: -4px; }
            .sub #content #main-content .breadcrumbs a.cart i, .sub #content #main-content .breadcrumbs span.cart i {
              font-size: 17px; }
        .sub #content #main-content .breadcrumbs span {
          border-right: none; }
      .sub #content #main-content .item-page #page {
        padding: 22px 50px 40px; }
      .sub #content #main-content #content_oc {
        padding: 32px 50px 40px; }

  #wrap .page-header h1 {
    background: #000 url(../img/kps-icon-bottom.png) no-repeat right top;
    color: #FFC600;
    padding: 22px 50px 5px; }

  .container_oc .product-list {
    justify-content: space-between; }
    .container_oc .product-list .product-teaser:nth-child(2n) {
      margin-left: 0; }
  .container.cart .total-cost {
    margin-left: 75%; }
  .container.cart .buttons {
    margin-top: 20px;
    text-align: right; }
  .container.checkout .panel-group .panel .panel-collapse .panel-body {
    margin: 1.2em 0; }
    .container.checkout .panel-group .panel .panel-collapse .panel-body .col-sm-6 {
      float: left;
      margin-left: 2%;
      padding-bottom: 15px;
      width: 49%; }
      .container.checkout .panel-group .panel .panel-collapse .panel-body .col-sm-6:first-child {
        margin-left: 0; } }
@media screen and (min-width: 1000px) {
  #wrap {
    padding: 0 10px; }

  #head {
    height: 168px; }
    #head #logo {
      height: 109px;
      left: 10px;
      position: absolute;
      top: 29px; }
      #head #logo img {
        height: 100%; }
    #head #mainmenu > li {
      width: 120px; }

  #banner .wk-slideshow {
    margin: 0 auto;
    max-width: none; }
    #banner .wk-slideshow img {
      height: auto !important;
      width: 960px !important; }
    #banner .wk-slideshow .caption {
      top: 40px; }
  #banner #featured h1 {
    text-align: left; }

  .item-page.innovation blockquote {
    padding: 5px 25px; }

  #footer {
    left: -10px; }
    #footer .icons-container {
      margin: 59px 0 63px; }
      #footer .icons-container .moduletable.icons.footer-contact {
        height: 53px; }
    #footer #footer-menu {
      float: right !important;
      margin-right: 200px !important; }

  #credit {
    display: block; } }

/*# sourceMappingURL=style.css.map */
