/* Reset
----------------------------------------------------------*/
/*! normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */
* {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/*
 * Prevents modern browsers from displaying 'audio' without controls
 * Remove excess height in iOS5 devices
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */
[hidden] {
  display: none;
}
/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}
/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}
/*
 * Addresses margins handled incorrectly in IE6/7
 */
body {
  margin: 0;
}
/* =============================================================================
   Links
   ========================================================================== */
/*
 * Addresses outline displayed oddly in Chrome
 */
a:focus {
  outline: thin dotted;
}
/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:hover,
a:active {
  outline: 0;
}
/* =============================================================================
   Typography
   ========================================================================== */
/*
 * Addresses font sizes and margins set differently in IE6/7
 * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}
h4 {
  font-size: 1em;
  margin: 1.33em 0;
}
h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}
h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}
/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
/*
 * Addresses styling not present in S5, Chrome
 */
dfn {
  font-style: italic;
}
/*
 * Addresses styling not present in IE6/7/8/9
 */
mark {
  background: #ff0;
  color: #000;
}
/*
 * Addresses margins set differently in IE6/7
 */
p,
pre {
  margin: 1em 0;
}
/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/*
 * Improves readability of pre-formatted text in all browsers
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */
/* 1 */
q {
  quotes: none;
}
/* 2 */
q:before,
q:after {
  content: '';
  content: none;
}
small {
  font-size: 75%;
}
/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* =============================================================================
   Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE6/7
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}
dd {
  margin: 0 0 0 40px;
}
/*
 * Addresses paddings set differently in IE6/7
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}
/*
 * Corrects list images handled incorrectly in IE7
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}
/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}
/*
 * Corrects overflow displayed oddly in IE9
 */
svg:not(:root) {
  overflow: hidden;
}
/* =============================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0;
}
/* =============================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7
 */
form {
  margin: 0;
}
/*
 * Define consistent border, margin, and padding
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3
 * 3. Corrects alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}
/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}
/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */
button,
input {
  line-height: normal;
  /* 1 */
}
/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  *overflow: visible;
  /* 3 */
}
/*
 * Re-set default cursor for disabled elements
 */
button[disabled],
input[disabled] {
  cursor: default;
}
/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
      Known issue: excess padding remains in IE6
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}
/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}
/* =============================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Mixins
----------------------------------------------------------*/
/* Typography
----------------------------------------------------------*/
/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/
/* Variables
-------------------------------------------------------------------------------*/
/* new Linux- and Windows-friendly sans-serif font stack: http://mky.be/fontstack */
body {
  font: 16px Arial, Helvetica, Freesans, sans-serif;
}
.boldVag {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.thinvag {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* we like off-black for text */
body,
select,
input,
textarea {
  color: #454545;
}
a {
  color: #27aec2;
  text-decoration: none;
}
a:hover {
  color: #dbdbdb;
}
a:hover,
a:active,
a:visited,
a:link {
  outline: none;
}
/* Custom text-selection colors (remove any text shadows: twitter.com/miketaylr/status/12228805301) */
::-moz-selection {
  background: #fcd700;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #fcd700;
  color: #fff;
  text-shadow: none;
}
/*	j.mp/webkit-tap-highlight-color */
a:link {
  -webkit-tap-highlight-color: #fcd700;
}
ins {
  background-color: #fcd700;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #fcd700;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
/* Header
-------------------------------------------------------------------------------*/
.description {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 30px;
  font-size: "3rem";
  color: #454545;
  height: 140px;
  float: left;
}
.contactMeta,
.contactMeta a {
  font-size: 16px;
  font-size: "1.6rem";
  color: #7f7f7f;
  text-decoration: none;
}
.contactMeta a:hover {
  color: #27aec2;
}
/* Body Styles
-------------------------------------------------------------------------------*/
p {
  line-height: 1.5;
}
h1.entry-title {
  font-weight: normal;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 34px;
  font-size: "3.4rem";
  color: #454545;
}
h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 20px;
  font-size: "2rem";
  font-weight: normal;
}
h3.sideTitle {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 25px;
  font-size: "2.5rem";
  font-weight: normal;
}
/* Menu
-------------------------------------------------------------------------------*/
#menu-main-menu li {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 20px;
  font-size: "2rem";
}
#menu-main-menu li a {
  color: #454545;
  display: block;
  text-decoration: none;
}
#menu-main-menu li a:hover {
  background: url("../assets/arrow_navMain.png") no-repeat scroll 100% 0%;
}
#menu-main-menu li.current-menu-item a {
  background: url("../assets/arrow_navMain.png") no-repeat scroll 100% 0%;
}
#menu-main-menu li.current-menu-item ul.sub-menu li a {
  padding-left: 17px;
  background-image: none;
}
#menu-main-menu li.current-menu-item ul.sub-menu li.current-menu-item a,
#menu-main-menu li.current-menu-item ul.sub-menu li a:hover {
  background: url("../assets/arrow_navSub.png") no-repeat scroll 0px 4px;
}
#menu-main-menu li ul.sub-menu li {
  font-size: 15px;
  font-size: "1.5rem";
  padding: 3px;
}
/* HOME PAGE SLIDER
-------------------------------------------------------------------------------*/
.slideCaption h2 {
  color: #dbdbdb;
}
.slideCaption p {
  color: #7f7f7f;
}
/* ABOUT US PAGE
-------------------------------------------------------------------------------*/
.awards {
  font-size: 14px;
  font-size: "1.4rem";
}
.awards p {
  margin: 0.2em 0;
}
.awards h2,
.prod-links h3 {
  padding: 10px 0;
  border-bottom: 1px solid #8f8f8f;
  border-top: 1px solid #8f8f8f;
  margin: 0px;
}
.page-template-page-about-us-php article.post h2,
.prod-links h3 {
  padding: 0px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  font-size: "1.8rem";
  font-weight: normal;
}
.prod-links h3 {
  padding: 10px 0;
}
.prod-info {
  margin-bottom: 40px;
}
.prod-links ul {
  list-style: none;
  padding-left: 0px;
}
.prod-links a {
  color: #454545;
  padding-bottom: 7px;
  display: block;
}
/* Contact Us Page
-------------------------------------------------------------------------------*/
.submit h2 {
  padding: 10px 0;
  border-bottom: 1px solid #8f8f8f;
  border-top: 1px solid #8f8f8f;
  margin: 0px;
}
/* Footer
-------------------------------------------------------------------------------*/
.clients p {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 25px;
  font-size: "2.5rem";
  color: #dbdbdb;
}
.address p {
  font-size: 18px;
  font-size: "1.8rem";
  color: #7f7f7f;
}
.address a,
ul#menu-footer-menu li a {
  color: #7f7f7f;
  text-decoration: none;
}
.address a:hover,
ul#menu-footer-menu li a:hover {
  color: #cfd2d1;
  text-decoration: none;
}
/* Grid
----------------------------------------------------------*/
body {
  width: 100%;
  *zoom: 1;
}
body:before,
body:after {
  content: "";
  display: table;
}
body:after {
  clear: both;
}
/* Custom theme styles
----------------------------------------------------------*/
/* Variables
-------------------------------------------------------------------------------*/
/* OUR GRID
-------------------------------------------------------------------------------*/
.sideSpan {
  display: inline;
  float: left;
  width: 21.666666666666668%;
  margin: 0 1.6666666666666667%;
}
.centreSpan {
  display: inline;
  float: left;
  width: 62.22222222222222%;
  margin: 0 2.2222222222222223%;
}
.mainSpan {
  display: inline;
  float: left;
  width: 71.66666666666667%;
  margin: 0 1.6666666666666667%;
}
.fullSpan {
  display: inline;
  float: left;
  width: 96.66666666666667%;
  margin: 0 1.6666666666666667%;
}
/* OUR NESTED GRIDS
-------------------------------------------------------------------------------*/
.thumb-grid {
  display: inline;
  float: left;
  width: 96.66666666666667%;
  margin: 0 1.6666666666666667%;
}
.thumb-grid .lineContainer {
  display: block;
  width: 103.33333333333334%;
  margin: 0 -1.6666666666666667%;
  *zoom: 1;
}
.thumb-grid .lineContainer:before,
.thumb-grid .lineContainer:after {
  content: "";
  display: table;
}
.thumb-grid .lineContainer:after {
  clear: both;
}
.thumb-grid .lineContainer .gridWrapper {
  display: inline;
  float: left;
  width: 71.66666666666667%;
  margin: 0 1.6666666666666667%;
}
.thumb-grid .lineContainer .gridWrapper .gridHolder {
  display: block;
  width: 104.44444444444446%;
  margin: 0 -2.2222222222222223%;
  *zoom: 1;
}
.thumb-grid .lineContainer .gridWrapper .gridHolder:before,
.thumb-grid .lineContainer .gridWrapper .gridHolder:after {
  content: "";
  display: table;
}
.thumb-grid .lineContainer .gridWrapper .gridHolder:after {
  clear: both;
}
.thumb-grid .lineContainer .gridWrapper .gridHolder .post.grid {
  display: inline;
  float: left;
  width: 28.888888888888886%;
  margin: 0 2.2222222222222223%;
  margin-bottom: 40px;
}
#productions,
#social-stream {
  display: inline;
  float: left;
  width: 71.66666666666667%;
  margin: 0 1.6666666666666667%;
}
#productions .gridHolder,
#social-stream .gridHolder {
  display: block;
  width: 104.44444444444446%;
  margin: 0 -2.2222222222222223%;
  *zoom: 1;
}
#productions .gridHolder:before,
#social-stream .gridHolder:before,
#productions .gridHolder:after,
#social-stream .gridHolder:after {
  content: "";
  display: table;
}
#productions .gridHolder:after,
#social-stream .gridHolder:after {
  clear: both;
}
#productions .gridHolder:before,
#social-stream .gridHolder:before,
#productions .gridHolder:after,
#social-stream .gridHolder:after {
  content: "";
  display: table;
}
#productions .gridHolder:after,
#social-stream .gridHolder:after {
  clear: both;
}
#productions .gridHolder .post,
#social-stream .gridHolder .post {
  display: inline;
  float: left;
  width: 28.888888888888886%;
  margin: 0 2.2222222222222223%;
  margin-bottom: 40px;
}
#productions,
#social-stream {
  margin: 0;
  width: 75%;
}
.page-template-page-about-us-php .about_wrap {
  display: inline;
  float: left;
  width: 71.66666666666667%;
  margin: 0 1.6666666666666667%;
  overflow: hidden;
}
.page-template-page-about-us-php .about_wrap .aboutHolder {
  display: block;
  width: 104.44444444444446%;
  margin: 0 -2.2222222222222223%;
  *zoom: 1;
}
.page-template-page-about-us-php .about_wrap .aboutHolder:before,
.page-template-page-about-us-php .about_wrap .aboutHolder:after {
  content: "";
  display: table;
}
.page-template-page-about-us-php .about_wrap .aboutHolder:after {
  clear: both;
}
.page-template-page-about-us-php .about_wrap .aboutHolder .sideSpan {
  display: inline;
  float: left;
  width: 28.888888888888886%;
  margin: 0 2.2222222222222223%;
}
.page-template-page-about-us-php .lineContainer {
  border-top: 1px solid #8f8f8f;
  float: left;
  padding: 20px 0;
  min-width: 100%;
}
.page-template-page-contact-php .about_wrap {
  display: inline;
  float: left;
  width: 71.66666666666667%;
  margin: 0 1.6666666666666667%;
  overflow: hidden;
}
.page-template-page-contact-php .about_wrap .aboutHolder {
  display: block;
  width: 104.44444444444446%;
  margin: 0 -2.2222222222222223%;
  *zoom: 1;
}
.page-template-page-contact-php .about_wrap .aboutHolder:before,
.page-template-page-contact-php .about_wrap .aboutHolder:after {
  content: "";
  display: table;
}
.page-template-page-contact-php .about_wrap .aboutHolder:after {
  clear: both;
}
.page-template-page-contact-php .about_wrap .aboutHolder .sideSpan {
  display: inline;
  float: left;
  width: 28.888888888888886%;
  margin: 0 2.2222222222222223%;
}
.page-template-page-contact-php .lineContainer {
  border-top: 1px solid #8f8f8f;
  float: left;
  padding: 20px 0;
  min-width: 100%;
}
.page-template-page-contact-php .lineContainer p {
  margin: 0px;
}
#main {
  padding-top: 40px;
  border-top: 1px solid #8f8f8f;
}
/* GLOBAL
-------------------------------------------------------------------------------*/
body {
  background-image: url("../assets/bg_tile.jpg");
}
.container {
  max-width: 1140px;
  min-width: 1020px;
  margin: 0 auto;
  *zoom: 1;
}
.container:before,
.container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}
img {
  max-width: 100%;
}
/* SLIDER
-------------------------------------------------------------------------------*/
.slideCaption {
  background: none repeat scroll 0 0 #2d2d2d;
  bottom: 113px;
  float: right;
  max-width: 535px;
  min-height: 170px;
  position: relative;
  padding: 0 15px 15px 15px;
  z-index: 50;
}
#featured {
  max-height: 462px;
  margin-bottom: 20px;
}
#slider img {
  width: 824px;
  height: 364px;
}
#bullets {
  position: relative;
  bottom: 145px;
  z-index: 100;
}
#bullets a {
  background: url("../assets/dotbutton_10pxGap.png") no-repeat scroll 0 0 transparent;
  display: block;
  float: left;
  text-decoration: none;
  width: 33px;
  text-indent: -9999em;
}
#bullets a.activeSlide,
#bullets a:hover {
  background-position: 0 -26px;
}
/* HEADER
-------------------------------------------------------------------------------*/
header {
  *zoom: 1;
  margin-bottom: 30px;
}
header:before,
header:after {
  content: "";
  display: table;
}
header:after {
  clear: both;
}
header p {
  margin: 0;
}
header .contactMeta {
  float: right;
  padding-top: 10px;
}
header .description {
  padding-top: 38px;
}
/* MENU
-------------------------------------------------------------------------------*/
ul#menu-main-menu {
  margin-top: 0px;
  padding: 0px;
  border-bottom: 1px solid #8f8f8f;
}
ul#menu-main-menu li {
  border-top: 1px solid #8f8f8f;
  padding: 15px 0 12px 0;
}
ul#menu-main-menu li ul.sub-menu {
  display: none;
}
ul#menu-main-menu li.current-menu-parent ul.sub-menu,
ul#menu-main-menu li.current-menu-item ul.sub-menu {
  display: block;
}
ul#menu-main-menu li.current-menu-parent ul.sub-menu li,
ul#menu-main-menu li.current-menu-item ul.sub-menu li {
  border-top: 0px;
}
/* POST GRID
-------------------------------------------------------------------------------*/
article.grid a,
article.grid a img {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
article.grid a:hover {
  color: #fff;
}
article.grid > a {
  display: block;
  text-decoration: none;
  color: #2d2d2d;
}
article.grid > a:hover {
  background-color: #c9c9c9;
}
article.grid > a:hover img {
  opacity: 0.85;
}
article.grid h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  font-size: "1.5rem";
  color: #2d2d2d;
  padding: 0 16px;
  font-weight: normal;
}
article.grid .postCat {
  font-size: 12px;
  font-size: "1.2rem";
  color: #ffffff;
  bottom: 0;
  padding: 16px;
  position: absolute;
}
article.grid.hidden {
  display: none;
}
.post.grid > a {
  min-height: 252px;
  background: #cfd2d1;
  position: relative;
}
/* FOOTER
-------------------------------------------------------------------------------*/
footer {
  height: 270px;
  background: #2d2d2d;
  clear: both;
  width: 100%;
  margin-top: 15px;
}
ul#menu-footer-menu {
  padding: 0px;
  *zoom: 1;
}
ul#menu-footer-menu:before,
ul#menu-footer-menu:after {
  content: "";
  display: table;
}
ul#menu-footer-menu:after {
  clear: both;
}
ul#menu-footer-menu li {
  display: inline;
}
.address {
  border-top: 1px solid #8f8f8f;
  padding: 10px 0;
}
.clients {
  padding: 0px;
}
footer .more {
  float: right;
  margin-right: 30px;
}
footer .more a {
  background: url(../assets/footerTab_10pxGap.png) no-repeat 0 -40px;
  display: block;
  width: 124px;
  height: 35px;
  padding: 4px 0 0 0;
  text-align: center;
  color: #7f7f7f;
}
footer .more a:hover {
  background-position: 0 0px;
}
p.copyright {
  float: right;
  *zoom: 1;
}
p.copyright:before,
p.copyright:after {
  content: "";
  display: table;
}
p.copyright:after {
  clear: both;
}
span.badge a {
  margin: 1.2em 0;
}
span.badge.client01 a {
  background: url(../assets/clients/client01.png) no-repeat 0 0px;
  display: block;
  float: left;
  height: 40px;
  width: 65px;
}
span.badge.client02 a {
  background: url(../assets/clients/client02.png) no-repeat 0 0px;
  display: block;
  float: left;
  height: 40px;
  width: 65px;
}
span.badge.client03 a {
  background: url(../assets/clients/client03.png) no-repeat 0 0px;
  display: block;
  float: left;
  height: 40px;
  width: 78px;
}
span.badge.client04 a {
  background: url(../assets/clients/client04.png) no-repeat 0 0px;
  display: block;
  float: left;
  height: 40px;
  width: 90px;
}
span.badge.client05 a {
  background: url(../assets/clients/client05.png) no-repeat 0 0px;
  display: block;
  float: left;
  height: 40px;
  width: 79px;
}
span.badge.client06 a {
  background: url(../assets/clients/client06.png) no-repeat 0 0px;
  display: block;
  float: left;
  height: 40px;
  width: 46px;
}
span.badge.client07 a {
  background: url(../assets/clients/client07.png) no-repeat 0 0px;
  display: block;
  float: left;
  height: 40px;
  width: 80px;
}
span.badge.client08 a {
  background: url(../assets/clients/client08.png) no-repeat 0 0px;
  display: block;
  float: left;
  height: 40px;
  width: 105px;
}
span.badge.client09 a {
  background: url(../assets/clients/client09.png) no-repeat 0 0px;
  display: block;
  float: left;
  height: 40px;
  width: 47px;
}
span.badge a:hover {
  background-position: 0 -40px;
}
/* Page Specific Stuff
-------------------------------------------------------------------------------*/
/* ABOUT US PAGE
-------------------------------------------------------------------------------*/
#gallery-title {
  width: 100%;
  display: block;
  padding: 10px;
  background-color: #2d2d2d;
  color: white;
  text-align: right;
}
.page-template-page-about-us-php .post img {
  float: left;
  padding: 0 2em 1em 0;
}
.page-template-page-about-us-php .post p {
  margin-top: 0;
}
.show-more,
.show-less {
  width: 100%;
  text-align: right;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-size: "1.2rem";
  color: #2d2d2d;
  display: block;
  padding: 5px 40px;
  cursor: pointer;
}
.show-more {
  display: block;
  background: url('../assets/arrow_readMore.png') no-repeat scroll 97% 10px #dbdbdb;
}
.show-more:hover {
  background-position-y: -10px;
}
.show-less {
  display: block;
  background: url('../assets/arrow_readLess.png') no-repeat scroll 97% -10px #dbdbdb;
}
.show-less:hover {
  background-position-y: 10px;
}
.awards div {
  padding: 28px 0;
  border-bottom: 1px solid #8f8f8f;
}
.awards div a {
  color: #2d2d2d;
}
.awards div a:hover {
  color: #dbdbdb;
}
/* SINGLE/ PRODUCTION PAGE
-------------------------------------------------------------------------------*/
#video {
  position: relative;
  padding-bottom: 53.3%;
  padding-top: 25px;
  height: 0;
}
#video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single h1 {
  border-bottom: 1px solid #8f8f8f;
  padding-bottom: 0.67em;
  margin-bottom: 0;
}
.single article .centreSpan {
  margin-left: 0;
}
.single article .sideSpan {
  width: 32.4%;
  margin-right: 0;
}
.single .sub-menu {
  display: block;
}
.fixed {
  position: fixed;
  top: 0;
  max-width: 247px;
}
/* CONTACT PAGE
-------------------------------------------------------------------------------*/
/*#map_canvas {float:right;}*/
.submitStory a {
  display: block;
  background: url(../assets/arrow_sendStory.png) no-repeat 95% 10px #dbdbdb;
  text-decoration: none;
  color: #2d2d2d;
  margin-top: 1em;
  padding: 6px 8px;
}
.submitStory a:hover {
  background-position: 95% -17px;
  background-color: #cfd2d1;
}
/* NEW SOCIAL STREAM PAGE STYLES
-------------------------------------------------------------------------------*/
span.who {
  margin-right: 0.4em;
}
article.twitter,
article.facebook,
article.tumblr {
  background: none repeat scroll 0 0 #CFD2D1;
}
article.twitter p,
article.facebook p,
article.tumblr p {
  padding: 0 16px;
}
article.twitter div,
article.facebook div,
article.tumblr div {
  padding: 0 16px 16px;
}
article.twitter span,
article.facebook span,
article.tumblr span {
  color: #FFFFFF;
  font-size: 12px;
}
article.twitter img,
article.facebook img,
article.tumblr img {
  width: 100%;
  height: auto;
}
/* BART FROM RAW or whoever you want to highlight */
article.raw-news-filter {
  background: none repeat scroll 0 0 #454545;
  color: #ffffff;
}
article.raw-news-filter span {
  color: #CFD2D1;
  font-size: 12px;
}
/*------SOCIAL STREAM---------*/
/* Reset */
.dcwss ul,
.dcwss li {
  padding: 0;
  margin: 0;
  list-style: none!important;
  background: none;
}
#social-stream article p {
  white-space: pre;
  /* CSS 2.0 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3.0 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -hp-pre-wrap;
  /* HP Printers */
  word-wrap: break-word;
  /* IE 5+ */
}
/* !!!!!!!!!WALL!!!!!!!!!!!!!!!!!!!!!! */
/* Feeds */
.dcwss.dc-wall {
  color: #444;
  list-style: none outside none;
  margin: 0;
}
.dcwss.dc-wall ul.stream {
  padding-top: 1px;
}
.dcwss.dc-wall .dcwss-content {
  position: relative;
  padding: 0;
}
.dcsns-loading {
  background: url(../images/loading_light.gif) no-repeat 0 0;
  height: 24px;
  padding: 6px 0 0 30px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.dcsns-toolbar .dcsns-loading {
  right: 10px;
  left: auto;
  display: none;
}
.dcwss.dc-wall .stream li a {
  color: #2DB6E8;
}
.dcwss.dc-wall .stream li {
  background-color: #FFFFFF;
  box-shadow: 0 1px 2px rgba(34, 25, 25, 0.4);
  font-size: 11px;
  padding: 15px 0 0 0;
  position: relative;
  font-family: Arial, sans-serif;
  line-height: 1.35em;
  margin: 0 2% 2% 0;
}
.dcwss.dc-wall.col-1 .stream li {
  width: 100%;
  margin: 0 0 2% 0;
}
.dcwss.dc-wall.col-2 .stream li {
  width: 48%;
}
.dcwss.dc-wall.col-3 .stream li {
  width: 31%;
}
.dcwss.dc-wall.col-4 .stream li {
  width: 23%;
}
.dcwss.dc-wall.col-5 .stream li {
  width: 18%;
}
.dcwss.dc-wall .stream li .inner {
  overflow: hidden;
  margin: 0 15px 15px;
}
.dcwss.dc-wall .stream li .icon {
  position: absolute;
  left: 3px;
  bottom: 0;
  z-index: 3;
}
.dcwss.dc-wall .stream li .section-intro {
  padding: 7px 15px 7px 30px;
  display: block;
  color: #fff;
  font-style: normal;
  font-weight: bold;
  font-size: 10px;
  z-index: 2;
  position: relative;
}
.dcwss.dc-wall .stream li .clear {
  clear: both;
}
/* Content blocks */
.dcwss.dc-wall .stream li .section-intro a {
  text-decoration: underline;
  color: #fff;
}
.dcwss.dc-wall .stream li .section-title {
  display: block;
  font-weight: bold;
  margin-bottom: 3px;
}
.dcwss.dc-wall .stream li .section-title a {
  color: #555;
}
.dcwss.dc-wall .stream li .section-title a:hover {
  color: #2DB6E8;
}
.dcwss.dc-wall .stream li .section-thumb {
  float: left;
  margin: 0 7px 0 0;
}
.dcwss.dc-wall .stream li .section-thumb img {
  border: 1px solid #ccc;
  padding: 1px;
  background: #fff;
}
.dcwss.dc-wall .stream li .section-text {
  display: block;
}
.dcwss.dc-wall .stream li .section-text br {
  display: none;
}
.dcwss.dc-wall .stream li .section-user {
  clear: both;
  font-style: italic;
  margin: 0 8px 5px 0;
  display: block;
  float: left;
  padding: 5px 0 0 15px;
  line-height: 12px;
  background: url(../images/profile.png) no-repeat 0 5px;
}
.dcwss.dc-wall .stream li.dcsns-error {
  color: #990000;
}
/* Toolbar */
.wall-outer .dcsns-toolbar {
  padding: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5em;
}
/* Filter */
.wall-outer .dcsns-toolbar .filter {
  padding: 0;
  margin: 0 0 15px 0;
}
.wall-outer .dcsns-toolbar .filter li {
  display: inline;
  background: none;
  padding: 0;
  margin: 0;
  height: 24px;
}
.wall-outer .dcsns-toolbar .filter .link-all {
  color: #fff;
  height: 21px;
  padding: 7px 7px 4px 7px;
  text-shadow: 0 0 1px #555;
  font-weight: bold;
}
.wall-outer .dcsns-toolbar .filter li a {
  padding: 4px 3px 0 3px;
  margin: 0 1px 0 0;
  display: block;
  float: left;
  background: #777;
  height: 28px;
}
.wall-outer .dcsns-toolbar .filter li img {
  margin: 0;
  height: 24px;
}
/* Controls */
.dcwss.dc-wall .controls {
  display: none;
}
/* Facebook */
.dcwss.dc-wall .stream li.dcsns-facebook .section-text img {
  margin: 5px 7px 5px 0;
  float: left;
  border: 1px solid #ddd;
  padding: 1px;
  background: #fff;
}
.dcwss.dc-wall .stream li.dcsns-facebook .section-text a {
  margin-right: 4px;
}
/* google */
.dcwss.dc-wall .stream li.dcsns-google .section-title {
  margin-bottom: 5px;
}
.dcwss.dc-wall .stream li.dcsns-google .meta span.plusones {
  padding-left: 0;
}
/* stumbleupon */
.dcwss.dc-wall .stream li.dcsns-stumbleupon .section-title {
  display: block;
  clear: both;
}
/* vimeo */
.dcwss.dc-wall .stream li.dcsns-vimeo .section-thumb img {
  max-width: 190px;
}
.dcsns .dcwss.dc-wall .stream li.dcsns-vimeo .section-title {
  display: block;
  clear: both;
}
.dcwss.dc-wall .stream li.dcsns-vimeo .section-text {
  margin-bottom: 5px;
}
.dcwss.dc-wall .stream li.dcsns-vimeo .section-text .meta {
  padding-top: 5px;
}
.dcwss.dc-wall .stream li.dcsns-vimeo .logo {
  margin-bottom: 3px;
}
/** Flickr **/
.dcwss.dc-wall .stream li.dcsns-flickr .section-thumb {
  margin: 0;
}
.dcwss.dc-wall .stream li.dcsns-flickr .section-thumb img {
  height: 70px;
}
/* Pinterest */
.dcwss.dc-wall .stream li.dcsns-pinterest .section-thumb {
  display: block;
}
.dcwss.dc-wall .stream li.dcsns-pinterest .section-text {
  clear: both;
}
.dcwss.dc-wall .stream li.dcsns-pinterest .section-thumb img {
  width: 190px;
}
/* dribbble */
.dcwss.dc-wall .stream li.dcsns-dribbble .inner img {
  margin-bottom: 5px;
}
/* lastfm */
.dcwss.dc-wall .stream li.dcsns-lastfm .section-title {
  background: url(../images/tracks.png) no-repeat 0 0;
  padding-left: 17px;
  margin-bottom: 0;
}
/* deviantart */
.dcwss.dc-wall .stream li.dcsns-deviantart .section-thumb {
  display: block;
  float: none;
}
.dcwss.dc-wall .stream li.dcsns-deviantart .section-thumb img {
  width: 190px;
}
/* tumblr */
.dcwss.dc-wall .stream li.dcsns-tumblr .section-text img {
  margin: 0 7px 5px 0;
  float: left;
  border: 1px solid #ddd;
  padding: 1px;
  background: #fff;
}
.dcwss.dc-wall .stream li.dcsns-tumblr .track {
  display: block;
  background: url(../images/tracks.png) no-repeat 0 5px;
  padding: 5px 0 0 17px;
  margin-bottom: 0;
}
/*isotope */
.isotope,
.isotope .isotope-item {
  /* change duration value to whatever you like */
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: top, left, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/* Common */
.dcwss .stream p {
  margin: 0;
  padding: 0;
}
.dcwss .stream li .meta {
  display: block;
  font-size: 90%;
  color: #999;
}
.dcwss .stream li .meta span {
  margin: 0 8px 5px 0;
  display: block;
  float: left;
  padding: 0 0 0 15px;
  line-height: 12px;
}
.dcwss .meta span.shares {
  background: url(../images/shares.png) no-repeat 0 0;
  padding-left: 20px;
}
.dcwss .meta span.views {
  background: url(../images/views.png) no-repeat 0 0;
  padding-left: 18px;
}
.dcwss .meta span.likes {
  background: url(../images/likes.png) no-repeat 0 0;
  padding-left: 16px;
}
.dcwss .meta span.comments {
  background: url(../images/comments.png) no-repeat 0 0;
}
.dcwss .meta span.users {
  background: url(../images/users.png) no-repeat 0 0;
}
.dcwss .meta span.videos {
  background: url(../images/videos.png) no-repeat 0 0;
  padding-left: 16px;
}
/*-----------CHRIS STREAM ADDS/MODS------------*/
#social-stream-2380.dcwss.dc-wall .stream li a {
  color: #ffffff;
}
#social-stream-2380.dcwss.dc-wall .stream li {
  background-color: #2d2d2d;
  box-shadow: 0 1px 2px rgba(34, 25, 25, 0.4);
  font-size: 11px;
  padding: 15px 0 0 0;
  position: relative;
  font-family: Arial, sans-serif;
  line-height: 1.35em;
  margin: 0 2% 2% 0;
}
#social-stream-2380.dcwss.dc-wall {
  color: #7a7a7a;
  list-style: none outside none;
  margin: 0;
}
/* THIS WAS HERE ALREADY!
-------------------------------------------------------------------------------*/
ol.commentlist {
  list-style: none;
}
ol.commentlist li.comment {
  border-bottom: 1px dotted #666;
  padding: 10px;
}
ol.commentlist li.comment div.vcard cite.fn {
  font-style: normal;
}
ol.commentlist li.comment div.vcard img.avatar {
  float: right;
  margin: 0 0 10px 10px;
}
ol.commentlist li.comment div.comment-meta {
  font-size: 10px;
}
ol.commentlist li.comment div.comment-meta a {
  color: #ccc;
}
ol.commentlist li.comment div.reply {
  font-size: 11px;
  font-size: "1.1rem";
}
ol.commentlist li.comment div.reply a {
  font-weight: bold;
}
ol.commentlist li.comment ul.children {
  list-style: none;
  margin: 10px 0 0;
}
ol.commentlist li.comment ul.children li.depth-2 {
  border-left: 5px solid #555;
  margin: 0 0 10px 10px;
}
ol.commentlist li.comment ul.children li.depth-3 {
  border-left: 5px solid #999;
  margin: 0 0 10px 10px;
}
ol.commentlist li.comment ul.children li.depth-4 {
  border-left: 5px solid #bbb;
  margin: 0 0 10px 10px;
}
ol.commentlist li.even {
  background: #fff;
}
ol.commentlist li.odd {
  background: #f6f6f6;
}
ol.commentlist li.parent {
  border-left: 5px solid #111;
}
