* {
  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; }

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; }

/* 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 {
  height: auto;
  padding-bottom: 0;
  /* Adding caption to home slider */ }
  body.home #banner body.home .inner #banner .moduletable .wk-slideshow .caption {
    /* 	position: absolute */
    bottom: auto;
    right: auto;
    top: 50px; }
    body.home #banner body.home .inner #banner .moduletable .wk-slideshow .caption body.home .inner #banner .moduletable .wk-slideshow .caption blockquote {
      font-size: 1.8em; }

.moduletable.home-text {
  /* 	background: white; */
  color: white;
  padding: 10px; }

.moduletable.home-text ul {
  margin-left: 30px; }

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

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

.moduletable.top-menu {
  padding-left: 0; }

.moduletable.search-bar {
  float: left;
  padding-left: 49px; }

.moduletable.contact-number {
  float: right; }
  .moduletable.contact-number p {
    margin: 0; }
  .moduletable.contact-number a {
    color: white;
    font-size: 18px;
    text-decoration: none; }

div#subscribe {
  left: 575px; }

/* Footer Contacts */
.icons.pacific, .icons.careers {
  width: 24%; }

.moduletable.footer-contact {
  float: right;
  padding: 0;
  width: 33%; }
  .moduletable.footer-contact p {
    border: none;
    font-size: 15px;
    font-weight: normal;
    padding-top: 5px;
    text-align: right; }

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

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 a {
  background: url(../assets_v_1_0/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(../assets_v_1_0/img/subscribe-btn.png) no-repeat left -18px;
  color: #f3bd03; }

#subscribe .moduletable.subscribe p {
  margin: 0; }

#menu-button {
  display: none; }

#content {
  overflow: hidden; }

#footer {
  padding-bottom: 100px; }

#footer .inner {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 960px; }

.icons-container {
  margin: 59px 0 63px;
  overflow: hidden; }

.icons {
  color: #898989;
  float: left;
  font: bold 12px/1.2 Arial, sans-serif;
  min-height: 37px;
  height: 57px;
  padding: 12px 0 0 85px;
  width: 365px; }

.icons a {
  color: #898989;
  display: block;
  text-decoration: none; }

.icons a:hover,
.icons a:focus,
.icons a:active {
  color: #000; }

.icons p {
  border-left: 3px solid #dadada;
  margin: 0;
  padding-left: 6px; }

.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; }

#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; }

#featured p {
  /*     margin: 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; }

#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 .maintain {
  font-size: 32px;
  letter-spacing: 0px;
  line-height: 30px; }

.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; }

/*
.areas:hover > p,
.areas:focus > p,
.areas:active > p {
  color: #fff;
  text-decoration: none;
}*/
.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; }

.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; }

.areas h3,
.areas p {
  border-left: 3px solid #7d7d7d;
  margin-left: 168px;
  margin-top: 0;
  padding-left: 8px; }

#main-content .one {
  background: url("/images/home-thumb-sprite-1.jpg") no-repeat; }

/*
#main-content .one:hover {
  background: url( '/images/home-thumb-sprite-1.jpg' ) no-repeat 0 -86px;
}
*/
#main-content .two {
  background: url("/images/home-thumb-sprite-2.jpg") no-repeat; }

/*

#main-content .two:hover {
  background: url( '/images/home-thumb-sprite-2.jpg' ) no-repeat 0 -86px;
}
*/
#main-content .three {
  background: url("/images/home-thumb-sprite-3.jpg") no-repeat; }

/*

#main-content .three:hover {
  background: url( '/images/home-thumb-sprite-3.jpg' ) no-repeat 0 -86px;
}
*/
#main-content .four {
  background: url("/images/home-thumb-sprite-4.jpg") no-repeat; }

/*

#main-content .four:hover {
  background: url( '/images/home-thumb-sprite-4.jpg' ) no-repeat 0 -86px;
}
*/
/******************************

SUB CSS

******************************/
#side-nav {
  float: left;
  margin: 0 2px 0 0;
  overflow: hidden;
  padding: 0 0 20px;
  width: 210px; }

#side-nav .moduletable,
#side-nav .moduletable-side-menu {
  margin: 19px 0 0; }

.sub #content {
  padding-bottom: 47px; }

.sub #main-content {
  background: #ececec;
  float: left;
  width: 748px; }

.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: 28px;
  overflow: hidden;
  padding: 37px 48px 0;
  text-transform: uppercase; }

.breadcrumbs a {
  color: #898989; }

.breadcrumbs a:hover,
.breadcrumbs a:focus,
.breadcrumbs a:active {
  color: #ffc819;
  text-decoration: none; }

#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; }

.sub #main-content #page p,
.sub #main-content #page li {
  text-align: justify; }

.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

******************************/
#main-content .contact-info {
  width: 50%;
  float: left;
  margin-bottom: 30px; }

.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 textarea {
  height: 75px; }

.contact-form .rsform-block-test {
  margin-bottom: 10px; }

.contact-form .rsform-block input#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 {
  color: #fff; }

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

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

SUBSCRIBE FORM

******************************/
#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

******************************/
.dash {
  background: url(../img/dash.png) no-repeat 0 0;
  background-size: 190px auto;
  display: block;
  font-size: 0;
  height: 29px;
  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 {
  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: 14px;
  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(../images/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(../images/com-mod-gradient-bg.png) repeat-y;
  color: #fff;
  float: left;
  min-height: 348px;
  height: auto !important;
  height: 348px;
  padding: 0 26px 26px;
  width: 216px; }

.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 !important; }

#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 h1 {
    font-size: 1.8em;
    padding: 0 0 0 5px; }

#head #top, #head #subscribe, #head #search, #head #mainmenu {
  display: none; }

#head {
  height: 130px; }
  #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 #logo {
  height: 60px;
  left: 10px;
  top: 10px;
  width: 100%; }

#head #logo img {
  height: 60px; }

#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; }

#head #mainmenu.open {
  background: #000;
  display: block;
  top: 71px;
  width: 100%; }

#head #mainmenu.open li {
  background: url(../img/menu-bg.png) repeat-x top left;
  display: block;
  height: auto;
  min-height: 45px;
  padding: 0 0px;
  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: #fff; }

#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 > ul > li {
  background: #262525;
  width: 100%; }

#head #mainmenu.open > li.open > ul > li > ul {
  display: none; }

#content p {
  margin: 5px 0; }

#content ul {
  margin: 15px 10px; }

#content ul li {
  margin: 5px 0px 5px 10px; }

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

.home #main-content {
  width: 100%; }

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 #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; }

.home #content #main-content .areas {
  background: #3f3e3e url(../img/area-bg.png) repeat-x top left;
  float: none;
  height: auto;
  margin: 0;
  width: 100%; }

.home #content #main-content .areas:hover {
  color: inherit; }

.home #content #main-content .areas h3 {
  background: url(../img/area-h3.png) no-repeat top left;
  border: none;
  font-size: 13px;
  line-height: 42px;
  margin: 0;
  padding: 12px 5px 11px 20px; }

.home #content #main-content .areas h3 a {
  font-size: 13px; }

.home #content #main-content .areas p {
  border: none;
  font-size: 13px;
  margin: 0;
  padding: 10px 0px 10px 20px; }

.home #content #main-content .areas p:hover {
  color: inherit; }

.home #banner {
  border: none;
  height: 180px;
  overflow: hidden;
  padding: 0;
  width: 100%; }

h1 {
  font-size: 1.7em; }

.home #banner #introduction {
  display: none; }

.home #banner #featured {
  left: 0px;
  position: absolute;
  top: 230px; }

.home #banner .banner {
  display: none; }

.home #banner .banner img {
  display: none; }

.sub #content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse; }
  .sub #content #side-nav {
    width: 100%; }
    .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 #main-content {
    max-width: 748px; }
    .sub #content #main-content .item-page {
      padding: 22px 10px 10px; }
    .sub #content #main-content h2 a, .sub #content #main-content h1 a, .sub #content #main-content h3 a {
      text-decoration: none; }

.sub #sub-banner {
  display: none !important; }

.home #content {
  padding-bottom: 10px; }

.sub #content {
  padding-bottom: 30px !important; }

.sub #main-content {
  width: 100%; }

.sub #main-content #page {
  color: #5c5c5c; }

.sub #main-content #page img {
  height: auto !important;
  width: 100% !important; }

.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 .breadcrumbs {
  display: none; }

#main-content #page, #main-content div.contact, #main-content #acymodifyform, #main-content #acylistslisting, #main-content div.xmap {
  padding: 15px 15px; }

#footer {
  height: 170px !important;
  padding: 10px 5px !important;
  position: relative; }

#footer .inner {
  position: static !important;
  width: 100% !important; }

#footer .icons-container {
  margin: 0; }

#footer .icons {
  border-bottom: 1px solid #d9d9d9;
  padding-left: 68px !important;
  width: 100%; }

#footer .icons p {
  padding-left: 5px !important; }

#footer .pacific {
  background-position: 0px 0px; }

#footer .careers {
  background-position: 6px 0px;
  letter-spacing: -0.2px;
  margin: 5px 0px; }

#footer #footer-menu {
  border-bottom: 1px solid #D9D9D9;
  padding: 0px 0px 10px 0px;
  width: 100%; }
  #footer #footer-menu li {
    margin: 0 0 10px;
    padding: 0 8px; }

#footer-menu {
  display: block;
  float: left;
  line-height: 1;
  margin: 0 0 85px 0; }

#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:hover,
#footer-menu a:focus,
#footer-menu a:active,
#footer-menu #current a,
#footer-menu .active a {
  background-color: transparent;
  color: #000;
  text-decoration: underline; }

#copyright {
  bottom: -70px;
  left: 10px;
  position: relative; }

#credit {
  bottom: -140px;
  right: 10px; }

/*  Enquire now button, new home text and phone link */
.wk-slideshow ul.slides li img {
  height: 300px !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; }

body.home div#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; }

#footer .moduletable.footer-contact {
  float: left;
  height: auto;
  margin-left: -68px;
  text-align: left;
  width: 100%; }

.moduletable.footer-contact p {
  display: inline-block;
  text-align: left; }

#footer #footer-menu {
  padding-top: 15px; }

/* as soon as a parent menu is expanded, the padding at the bottom poses problems to the last child. kill it */
.expanded {
  padding-bottom: 0px !important; }

.expanded .nav-child {
  display: block !important;
  font-size: 70%; }
  .expanded .nav-child li {
    border-bottom: 1px solid #FFC600;
    margin: 0;
    line-height: 1.1;
    list-style-type: none; }
  .expanded .nav-child li:last-child {
    border-bottom: none;
    padding-bottom: 0px; }
  .expanded .nav-child li:first-child {
    padding-top: 20px; }
  .expanded .nav-child a {
    display: block;
    font-size: 15px;
    font-weight: bold;
    padding: 15px;
    text-decoration: none; }

/* adds a chevron to the right of menu items */
.more::before {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: '';
  float: right;
  height: 0.45em;
  position: relative;
  right: 5%;
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  -webkit-transition: all 0.1s ease-in-out;
  /* Safari */
  transition: all 0.1s ease-in-out;
  width: 0.45em; }

/* rotates the chevron when the menu item is open */
.expanded.more::before {
  -ms-transform: rotate(135deg);
  /* IE 9 */
  -webkit-transform: rotate(135deg);
  /* Chrome, Safari, Opera */
  transform: rotate(135deg); }

.blog, .tag-category {
  padding: 22px 10px 10px; }
  .blog h2, .tag-category h2 {
    color: #262525;
    font-size: 20px; }
  .blog ul.category, .tag-category ul.category {
    margin: 0; }
    .blog ul.category li, .tag-category ul.category li {
      list-style-type: none; }

#content .item-page h1 {
  padding: 0; }
#content .item-page h3 {
  font-size: 20px; }
#content .item-page #page {
  padding: 0; }
#content ul.tags {
  margin-left: 0; }
  #content ul.tags li {
    list-style-type: none;
    margin-left: 0; }
    #content ul.tags li a {
      background: #fff;
      clip-path: polygon(0 0, 100% 0%, 100% 80%, 85% 100%, 0% 100%);
      display: inline-block;
      padding: 5px 15px;
      text-decoration: none; }
      #content ul.tags li a:active, #content ul.tags li a:hover, #content ul.tags li a:focus {
        background: #FFC600;
        color: #000; }

@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(../images/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(../images/menu-more.png) no-repeat top right; }
      #head #mainmenu.open > li.open > a {
        background: url(../images/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 {
    margin: 0 !important; }
    .home #content #main-content {
      width: 100%; }
      .home #content #main-content .areas {
        background: #252525 url(../images/area-bg.png) repeat-x top left;
        float: none;
        height: auto;
        margin: 0;
        width: 100%; }
        .home #content #main-content .areas.active {
          background: #252525 url(../images/area-bg.png) repeat-x bottom left;
          cursor: pointer; }
          .home #content #main-content .areas.active a {
            color: #fff; }
        .home #content #main-content .areas:hover {
          color: inherit; }
        .home #content #main-content .areas h3 {
          background: url(../images/area-h3.png) no-repeat top left;
          border: none;
          line-height: 42px;
          margin: 0;
          padding: 12px 5px 11px 20px; }
          .home #content #main-content .areas h3 a {
            font-size: 12px !important;
            line-height: 17px; }
        .home #content #main-content .areas p {
          display: none; }
          .home #content #main-content .areas p:hover {
            color: inherit; }
  .home .home #banner {
    background: url(../images/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(../images/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 #sub-banner {
    display: none !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(../images/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 div.contact, #main-content #acymodifyform, #main-content #acylistslisting, #main-content div.xmap {
    padding: 15px 15px; }

  #content .tag-category ul.category {
    margin: 0; }
    #content .tag-category ul.category li {
      margin: 0; } }
@media screen and (min-width: 768px) {
  h1 {
    font-size: 2em; }

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

  #head #logo {
    height: auto;
    width: auto; }
    #head #logo img {
      height: 75px; }
  #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: 137px;
    top: 94px;
    width: auto; }
    #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;*/
		width: 100px !important;
	  }
      #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; }
  #banner #featured h1 {
    text-align: center; }

  #footer .icons-container {
    display: flex;
    align-items: baseline;
    flex-direction: row;
    flex-wrap: wrap; }
    #footer .icons-container .moduletable.icons {
      width: 340px; }
      #footer .icons-container .moduletable.icons.footer-contact {
        height: auto; }
  #footer #footer-menu {
    border-bottom: 0;
    float: right;
    margin-top: -40px;
    width: 50%; }

  #copyright {
    bottom: 0;
    position: absolute;
    top: 155px; }

  #credit {
    bottom: 0; }

  /******************************
  
  TOP MENU CSS
  
  ******************************/
  .top-menu {
    float: left; }

  .top-menu {
    height: 15px;
    padding: 5px 0 0 28px; }

  #top-menu {
    height: 15px; }

  #top-menu,
  #top-menu li,
  #top-menu a {
    display: block; }

  #top-menu,
  #top-menu li {
    margin: 0;
    padding: 0; }

  .top-menu #top-menu li {
    border-left: 1px solid #636363;
    float: left;
    padding: 0 12px; }

  #top-menu li:first-child {
    border: 0 none; }

  #top-menu a {
    color: #b7b7b7;
    font: bold 10px/1 Arial, sans-serif;
    text-transform: uppercase;
    text-decoration: none; }

  #top-menu a:hover,
  #top-menu a:focus,
  #top-menu a:active,
  #top-menu #current a,
  #top-menu li.active a {
    color: #ffc819; }

  /******************************
  
  SIDE MENU CSS
  
  ******************************/
  #home-side-menu,
  #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:hover,
  #home-side-menu a:focus,
  #home-side-menu a:active {
    background-position: 0 -50px;
    color: #000; }

  #side-nav .menu,
  #side-nav .menu li,
  #side-nav .menu a {
    display: block; }

  #side-nav .menu,
  #side-nav .menu li {
    margin: 0;
    padding: 0; }

  #side-nav .menu > li {
    border-top: 1px solid #646464;
    margin: 0;
    padding: 9px 20px; }

  #side-nav .menu > li a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none; }

  #side-nav .menu li:hover > a {
    color: #ffc600; }

  #side-nav .menu > .active {
    padding: 9px 0; }

  #side-nav .menu .active a {
    padding: 0 20px; }

  #side-nav .menu .active ul {
    background: #5e6060;
    border: 0 none;
    margin-top: 8px;
    padding: 5px 0; }

  #side-nav .menu .active li {
    padding: 5px 0; }

  #side-nav .menu .active li a {
    font-size: 12px; }

  #side-nav .menu .active > a {
    border-left: 3px solid #ffc600;
    color: #ffc600;
    padding-left: 17px; }

  #side-nav #sub-banner .moduletable {
    margin: 0; }

  .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 #main-content {
      width: 78%;
      max-width: 748px; }
      .sub #content #main-content .item-page, .sub #content #main-content .blog, .sub #content #main-content .tag-category {
        padding: 22px 50px 40px; } }
@media screen and (min-width: 1000px) {
  #wrap {
    padding: 0 10px; }

  #head {
    height: 168px; }
    #head #logo {
      height: 90px;
      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 .icons-container {
    margin-left: 8px; }
    #footer .icons-container .moduletable.icons.footer-contact {
      height: 53px; }
  #footer #footer-menu {
    float: left;
    margin: 5px 0 20px;
    width: 100%; }

  #copyright {
    bottom: -70px;
    position: relative;
    top: auto; }

  #credit {
    position: relative;
    float: right;
    bottom: 50px; } }
@media screen and (min-width: 1280px) {
  #head #logo {
    height: 109px; }
  #head #mainmenu {
    right: 90px; } }

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