/*
Theme Name: valmcdermid
Description: A responsive Wordpress theme
Author: Ian Forster @ T-Creative
*/


/* reset */
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset, figure {
    margin: 0;
    padding: 0;
}



img, fieldset {
    border: 0;
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

/* set img max-width */
img {
border: none;
max-width: 100%;
height: auto;
width: auto \9; /* Old IE */
}
 
.image-container {
width: 100%;
}

img, object, video {
	max-width: 100%;

}
/* ie 8 img max-width */
@media screen\0 {
    img {
        width: auto;
    }
}











.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
 
.clearfix:after {
    clear: both;
}
 
/* IE6/7 support */
.clearfix {
    *zoom: 1;
}














* {
 	padding: 0;
	margin: 0;	
}

*,
*:after,
*:before {
	margin:0;
	padding:0;
	border:0;
    outline:0;	
text-rendering:optimizeLegibility;
}



html {
height: 100%!important;
min-height: 100%!important;
width: 100%;
padding: 0;
margin: 0;
background: #fff;
}



body {
min-height: 100%!important;
height: 100%!important;
width: 100%;
color: #4f4f4f;
font: 1em/150% Arial, Helvetica, sans-serif;
background: transparent;
-webkit-touch-callout: none;
}




/*  creates subtle shadow at top of browser page  */

body:before {
          content: "";
          position: fixed;
          top: -5px;
          left: 0;
          width: 100%;
          height: 5px;
          -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
          -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
          box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
          z-index: 999999;
}



a {
    color: #375b84;
    text-decoration: none;
    outline: none;
    font-weight: bold;
    -webkit-transition: 300ms linear 0s;
    -moz-transition: 300ms linear 0s;
    -o-transition: 300ms linear 0s;
    transition: 300ms linear 0s;

}

a:hover {
    text-decoration: none;
    font-weight: bold;
    color: #cb4a37;
    -webkit-transition: 300ms linear 0s;
    -moz-transition: 300ms linear 0s;
    -o-transition: 300ms linear 0s;
    transition: 300ms linear 0s;
}




a:hover
a:active,
a:selected,
a:focus {
  text-decoration: none;
  outline: none;
  -moz-outline-style:none;

}



a img, a img.preview {
	border: none;
	text-decoration: none;
	padding: 0;
	outline:none;
	-moz-outline-style:none;
}


a[href], input[type='submit'], input[type='image'], label[for], select, button, .pointer {
       cursor: pointer;
}








/* button over pop begins */
@-webkit-keyframes pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pop {
  50% {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pop {
  display: inline-block;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.pop:hover {
  -webkit-animation-name: pop;
  animation-name: pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* button over pop ends */





/* button over grow begins */

.grow {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.grow:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

/* button over grow ends */










/* button over shrink begins */

.shrink {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.shrink:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
/* button over shrink ends */








/* button over hover begins */
@-webkit-keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }

  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

@keyframes hover {
  50% {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
  }

  100% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}

.hover {
  display: inline-block;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hover:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-animation-name: hover;
  animation-name: hover;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
/* button over hover ends */









/* button over push begins */
@-webkit-keyframes push {
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes push {
  50% {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.push {
  display: inline-block;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.push:hover {
  -webkit-animation-name: push;
  animation-name: push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* button over push ends */








/* zoom-in list (books page) effect begins */
.booksthumbnailscontainer {
width: 58%;
height: auto;
float: right;
position: relative;
clear: right;
padding: 0 2% 10px 0;
margin: 0 0 30px 0;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: -moz-linear-gradient(-45deg,  rgba(233,236,239,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(233,236,239,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9ecef', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
border: 0;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}


ul[data-liffect="zoomIn"] li {
    opacity: 0;
    position: relative;
	display: inline-block;
    -webkit-animation: zoomIn 600ms ease both;
    -webkit-animation-play-state: paused;
    -moz-animation: zoomIn 600ms ease both;
    -moz-animation-play-state: paused;
    -o-animation: zoomIn 600ms ease both;
    -o-animation-play-state: paused;
    animation: zoomIn 600ms ease both;
    animation-play-state: paused;
background: none!important;
}

ul[data-liffect="zoomIn"].play li {
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}

@-webkit-keyframes zoomIn {
    0% { opacity: 0; -webkit-transform: scale(1.8); }
    100% { opacity: 1; -webkit-transform: scale(1); }
}

@-moz-keyframes zoomIn {
    0% { opacity: 0; -moz-transform: scale(1.8); }
    100% { opacity: 1; -moz-transform: scale(1); }
}

@-o-keyframes zoomIn {
    0% { opacity: 0; -o-transform: scale(1.8); }
    100% { opacity: 1; -o-transform: scale(1); }
}

@keyframes zoomIn {
    0% { opacity: 0; transform: scale(1.8); }
    100% { opacity: 1; transform: scale(1); }
}
/* zoom-in list effect ends */










.centeredimage{
max-width: 100%;
height: auto;
position: relative;
overflow: hidden;
display: block;
float: none;
clear: both;
margin: 0 auto 10px auto;
padding: 0;
}


.floatimageright {
max-width: 48.5%;
height: auto;
margin: 0 0 10px 1.5%;
float: right;
clear: right;
position: relative;
padding: 0;
}


.floatimagerightsmall {
max-width: 30%;
height: auto;
margin: 0 0 10px 1.5%;
float: right;
clear: right;
position: relative;
padding: 0;
}


.floatimageleftextrasmall {
max-width: 30%;
height: auto;
margin: 0 1.5% 10px 0;
float: left;
clear: left;
position: relative;
padding: 0;
}

.floatimagerightextrasmall {
max-width: 30%;
height: auto;
margin: 0 0 10px 1.5%;
float: right;
clear: right;
position: relative;
padding: 0;
}


.floatimagerightsmallfixed {
margin: 0 0 10px 1.5%;
float: right;
clear: right;
position: relative;
padding: 0;
}


.floatimageleft {
max-width: 48.5%;
height: auto;
margin: 0 2% 10px 0;
float: left;
clear: left;
position: relative;
padding: 0;
}

.floatimageleftsmall {
max-width: 30%;
height: auto;
margin: 0 1.5% 10px 0;
float: left;
clear: left;
position: relative;
padding: 0;
}


.smallbannerfloatleft {
max-width: 46.5%;
height: auto;
margin: 0 1.5% 0 0;
float: left;
clear: left;
position: relative;
padding: 0;
}
.smallbannerfloatright {
max-width: 46.5%;
height: auto;
margin: 0 0 0 1.5%;
float: right;
clear: right;
position: relative;
padding: 0;
}


.profileimage {
max-width: 45%;
height: auto;
margin: 2px 2% 0 0;
float: left;
clear: left;
position: relative;
padding: 0;
}



.featuredbookimg {
width: 67%;
max-width: 67%;
height: auto;
margin: 4px -13% -5px 1.5%;
float: right;
display: inline;
padding: 0 0 0 0;
border: 0;
outline: 0;
clear: right;
z-index: 99;
}



.singlebookpagemainimg {
max-width: 68%;
height: auto;
margin: 0 -23% 10px 2%;
float: right;
clear: right;
position: relative;
padding: 0;
z-index: 99;
}




.piratebookimg {
width: 50%;
max-width: 50%;
height: auto;
margin: -5% -13% 0 1.5%;
float: right;
display: inline;
padding: 0 0 0 0;
border: 0;
outline: 0;
clear: right;
z-index: 99;
}


.seriesimage {
max-width: 48.5%;
height: auto;
margin: 0 0 10px 1.5%;
float: right;
clear: right;
position: relative;
padding: 0;
}


.playsimageleft {
max-width: 48.5%;
height: auto;
margin: 0 1.5% 10px 0;
float: left;
clear: left;
position: relative;
padding: 0;
}









p {
font-family: 'Raleway', sans-serif;
font-weight: 400;
    margin: 0 0 15px 0;
    padding: 0;
    color: #4f4f4f;
line-height: 130%;
}






small {
font-size: 12px;
font-weight: 700;
color: #888;
line-height: 110%!important;
}


small span {
color: #fff;
}



em {
    font-style: italic;
font-size: 100%!important;
}


.boldgreen {
    font-family: 'Raleway', sans-serif;
font-weight: 700;
color: #375b84;
font-size: 120%;
}


strong {
font-weight: 700;
}

.bullet {
    font-family: 'Droid Sans', sans-serif;
    font-weight: 700;
    color: #cb4a37;
}

.cleardiv {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
}

.cleardiv5 {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
height: 5px;
}

.cleardiv10 {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
height: 10px;
}

.cleardiv15 {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
height: 15px;
}

.cleardiv20 {
  content: ".";
  display: block;
  clear: both;
  height: 20px;
  visibility: hidden;
}

.cleardiv25 {
  content: ".";
  display: block;
  clear: both;
  height: 25px;
  visibility: hidden;
}

.cleardiv30 {
  content: ".";
  display: block;
  clear: both;
  height: 30px;
  visibility: hidden;
}

.cleardiv40 {
  content: ".";
  display: block;
  clear: both;
  height: 40px;
  visibility: hidden;
}

ul, ol {
    padding: 0;
list-style: none;
list-style-type: none;
}

li {
    padding: 0;
list-style-type: none;

}








/* pillbutton begins */
.pillbutton {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  height: 32px;
  line-height: 32px;
  padding: 0px 25.6px;
  font-size: 14px;
 font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
  margin: 0;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
    -webkit-transition-property: background, color;
  -moz-transition-property: background, color;
  -o-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #7d92cb;
  color: #eaeaea!important;
  text-shadow: none;
  border: none;
}

.pillbutton:hover {
  background: #cb4a37;
color: #ffffff!important;
}

.pillbutton:active {
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
   background: #6475a2;
  color: #eaeaea!important;
  -webkit-transition-duration: 0!important;
  -moz-transition-duration: 0!important;
  -o-transition-duration: 0!important;
  transition-duration: 0!important;
}
/* pillbutton ends */






/* infobutton begins */
.infobutton {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  height: 32px;
  line-height: 32px;
  padding: 0px 25px 0 50px;
  font-size: 14px;
 font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
  margin: 0;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
    -webkit-transition-property: background, color;
  -moz-transition-property: background, color;
  -o-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #7d92cb!important;
  color: #eaeaea!important;
  text-shadow: none;
  border: none;
}

.infobutton:hover {
  background: #cb4a37!important;
color: #ffffff!important;
}

.infobutton:active {
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
   background: #6475a2!important;
  color: #eaeaea!important;
  -webkit-transition-duration: 0!important;
  -moz-transition-duration: 0!important;
  -o-transition-duration: 0!important;
  transition-duration: 0!important;
}

.Infoicon {
width: 64px;
height: 64px;
float: left;
position: relative;
padding: 0 0 0 0;
margin: -27px -50px 0 0;
z-index: 99;
}
/* infobutton ends */






/* audiosamplebutton begins */
.audiosamplebutton {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  height: 32px;
  line-height: 32px;
  padding: 0px 25px 0 40px;
  font-size: 14px;
 font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
  margin: 0;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
    -webkit-transition-property: background, color;
  -moz-transition-property: background, color;
  -o-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #7d92cb;
  color: #eaeaea!important;
  text-shadow: none;
  border: none;
}

.audiosamplebutton:hover {
  background: #cb4a37;
color: #ffffff!important;
}

.audiosamplebutton:active {
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
   background: #6475a2;
  color: #eaeaea!important;
  -webkit-transition-duration: 0!important;
  -moz-transition-duration: 0!important;
  -o-transition-duration: 0!important;
  transition-duration: 0!important;
}

.audiosampleicon {
width: 64px;
height: 64px;
float: left;
position: relative;
padding: 0 0 0 0;
margin: -15px -35px 0 0;
z-index: 99;
}
/* audiosamplebutton ends */








/* readbutton begins */
.readbutton {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  height: 32px;
  line-height: 32px;
  padding: 0px 25px 0 60px;
  font-size: 14px;
 font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
  margin: 0;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
    -webkit-transition-property: background, color;
  -moz-transition-property: background, color;
  -o-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #7d92cb;
  color: #eaeaea!important;
  text-shadow: none;
  border: none;
}

.readbutton:hover {
  background: #cb4a37;
color: #ffffff!important;
}

.readbutton:active {
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
   background: #6475a2;
  color: #eaeaea!important;
  -webkit-transition-duration: 0!important;
  -moz-transition-duration: 0!important;
  -o-transition-duration: 0!important;
  transition-duration: 0!important;
}

.readextractglasses {
width: 64px;
height: 64px;
float: left;
position: relative;
padding: 0 0 0 0;
margin: -13px -50px 0 0;
z-index: 99;
}
/* readbutton ends */










/* watchbutton begins */
.watchbutton {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  height: 32px;
  line-height: 32px;
  padding: 0px 25px 0 40px;
  font-size: 14px;
 font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
  margin: 0;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
    -webkit-transition-property: background, color;
  -moz-transition-property: background, color;
  -o-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #7d92cb;
  color: #eaeaea!important;
  text-shadow: none;
  border: none;
}

.watchbutton:hover {
  background: #cb4a37;
color: #ffffff!important;
}

.watchbutton:active {
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
   background: #6475a2;
  color: #eaeaea!important;
  -webkit-transition-duration: 0!important;
  -moz-transition-duration: 0!important;
  -o-transition-duration: 0!important;
  transition-duration: 0!important;
}

.movieboard {
width: 64px;
height: 64px;
float: left;
position: relative;
padding: 0 0 0 0;
margin: -15px -35px 0 0;
z-index: 99;
}
/* watchbutton ends */






/* signedbooksbutton begins */
.signedbooksbutton {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  height: 32px;
  line-height: 32px;
  padding: 0px 25px 0 45px;
  font-size: 14px;
 font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
  margin: 0;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
    -webkit-transition-property: background, color;
  -moz-transition-property: background, color;
  -o-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #7d92cb;
  color: #eaeaea!important;
  text-shadow: none;
  border: none;
}

.signedbooksbutton:hover {
  background: #cb4a37;
color: #ffffff!important;
}

.signedbooksbutton:active {
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
   background: #6475a2;
  color: #eaeaea!important;
  -webkit-transition-duration: 0!important;
  -moz-transition-duration: 0!important;
  -o-transition-duration: 0!important;
  transition-duration: 0!important;
}

.signedbooksicon {
width: 64px;
height: 64px;
float: left;
position: relative;
padding: 0 0 0 0;
margin: -15px -35px 0 0;
z-index: 99;
}
/* signedbooksbutton ends */






/* interviewbutton begins */
.interviewbutton {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  height: 32px;
  line-height: 32px;
  padding: 0px 25px 0 40px;
  font-size: 14px;
 font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
  margin: 0;
  text-decoration: none;
  text-align: center;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border-radius: 50px;
    -webkit-transition-property: background, color;
  -moz-transition-property: background, color;
  -o-transition-property: background, color;
  transition-property: background, color;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #7d92cb;
  color: #eaeaea!important;
  text-shadow: none;
  border: none;
}

.interviewbutton:hover {
  background: #cb4a37;
color: #ffffff!important;
}

.interviewbutton:active {
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px white;
   background: #6475a2;
  color: #eaeaea!important;
  -webkit-transition-duration: 0!important;
  -moz-transition-duration: 0!important;
  -o-transition-duration: 0!important;
  transition-duration: 0!important;
}

.interviewicon {
width: 64px;
height: 64px;
float: left;
position: relative;
padding: 0 0 0 0;
margin: -12px -50px 0 0;
z-index: 99;
}
/* interviewbutton ends */








blockquote {
    background: transparent;
    border-left: 2px solid #7d92cb;
    margin: 30px 4% 20px 4%;
    padding: 0px 4% 0px 4%;
display: block;
position: relative;
}

blockquote p {
color: #7d92cb;
font-size:2.3em;
font-family: 'Arapey', serif!important;
font-weight: 400;
font-style: italic;;
	line-height: 110%;
	font-size: 2.3em;
}








hr {
	margin: 50px auto 50px auto;
	padding: 0;
	border: 0;
	height: 0;
	border-top: 1px dotted #909ba5;
}
.condensedhrspacing {
	margin: 0 auto 50px auto!important;
}







/* fblikecontainer begins */
.fblikecontainer {
width:80px;
height: 80px;
position: relative;
float: left;
padding: 0;
margin: 3px 2.5% 2px 0px;
padding: 15px 0 0 0;
border: 1px solid #c6ced5;
background:rgba(198, 206, 213, 0.5);
border-radius:4px;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;	
}

.fbooklike{
	position: relative;
	display: block;
	height: 70px!important;
	width: 50px!important;
	border: 0!important; 
	font-color:#dddddd;
	margin: 0 auto;
	font-size:10px;
}
/* fblikecontainer ends */







/* pullquote begins */
.pquote {
font-family: 'Arapey', serif!important;
font-weight: 400;
font-style: italic;;
	line-height: 110%;
	font-size: 28px;
	color: #7d92cb;
	margin: 4px 0 10px 30px;
	max-width: 45%;
	float: right;
	clear: right;
	border: 0;
}

.pquotetop {
	clear: left;
	border: 0;
	padding: 0 0 0 0;
	margin: 0 10px 0 0;
	float: left;
}

.pquotebottom {
	position: relative;
	overflow: hidden;
	display: block;
	border: 0;
	padding: 0;
	margin: 0 0 10px 0;
}
/* pullquote ends */







/* testimonial begins */
.testimonial {
font-family: 'Arapey', serif!important;
font-weight: 400;
font-style: italic;
	line-height: 120%;
	font-size: 22px;
	color: #375b84;
	margin: 0 auto 30px auto;
	max-width: 100%;
	display: block;
	position: relative;
	clear: both;
	border: 0;
}

.testimonial a {
font-family:Arial, Helvetica, sans-serif!important;	
font-weight: 700!important;
font-style:normal!important;
color: #777!important;
font-size: 16px!important;
}

.testimonial a:hover {
color: #cb4a37!important;
}

.testimonialcite {
font-size: 13px;
color: #7d92cb;
font-family: 'Raleway', sans-serif;
font-weight: 500;
float: right;
position: relative;
display: block;
font-style:normal!important;
}

.testimonialciteleft {
font-size: 13px;
color: #7d92cb;
font-family: 'Raleway', sans-serif;
font-weight: 500;
float: left;
position: relative;
display: block;
font-style:normal!important;
}
/* testimonial ends */







h1 {
    font-size: 5em;
    letter-spacing: -0.03em;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 300;
    color: #7d92cb!important;
    line-height: 110%;
margin: 0 0 15px 0;
}

h2 {
    font-size: 2.75em;
color: #375b84;
    font-family: 'Open Sans Condensed', sans-serif;
font-weight: 300;
    margin: 0 0 15px 0;
    line-height: 110%;
}

h2 span {
font-weight: 700;
}


h3 {
    font-size: 2.5em;
    font-family: 'Open Sans Condensed', sans-serif;
color: #5c8e6f;
font-weight: 300;
    line-height: 105%;
margin: 0 0 15px 0;
white-space: normal !important;
}

h3 span {
color: #fff;
}

h4 {
    font-size: 2.2em;
    font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
    color: #777;
    line-height: 100%;
    margin: 0 0 15px 0;
letter-spacing: -0.03em;
}


h5 {
    font-size: 1.5em;
    font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
	line-height: 115%;
color: #777;
margin:0 0 15px 0;
}

h5 span {
    font-size: 1.5em!important;
    font-family: 'Open Sans Condensed', sans-serif;
font-weight: 300;
color: #777!important;
line-height: 120%;
}

h6 {
    font-size: 1.65em;
    color: #7d92cb;
    font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
    line-height: 105%;
margin: 0 0 5px 0;
}

h6 span {
color: #ffffff;
}






/* latestnewscontainer begins */

.latestnewscontainer {
position: relative;
overflow: hidden;
margin: 0 auto 30px auto;
padding: 20px 5%;
width: 80%;
height: auto;
background: #cb4a37;
}

.latestnewshead {
color: #fff;
 font-size: 1.65em;
font-weight: 700;
    line-height: 105%;
margin: 0 0 15px 0;
 font-family: 'Open Sans Condensed', sans-serif;
}

.latestnewsp {
color: #fff!important;
font-family: 'Raleway', sans-serif;
font-weight: 400;
    margin: 0 0 15px 0;
    padding: 0;
line-height: 130%;
font-size: 1em!important;
}

.latestnewsp a {
font-weight: 800;
color: #000!important;
}

.latestnewsp a:hover {
font-weight: 800;
color: #f9c20b!important;
}

.latestnewspbold {
font-weight: 800;
color: #fff!important;
font-size: 115%!important;
}

/* latestnewscontainer ends */







.greenboldsectionhead {
    font-size: 1.65em;
    color: #7fb593;
    font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
    line-height: 105%;
margin: 0 0 15px 0;
}


.greysmallheading {
    font-size: 1.3em;
    font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
	line-height: 115%;
color: #777;
margin:0 0 15px 0;
}



span.amp{font-family:Adobe Caslon Pro,Baskerville,"Goudy Old Style","Palatino","Palatino Linotype","Book Antiqua",Georgia,"Times New Roman",Times,serif;font-style:italic;font-size:110%;line-height:0;position:relative;vertical-align:baseline;} /* best available ampersand */





.tooltip {
    display: none;
    position: absolute;
    background-color: #cb4a37;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 10px;
    color: #fff;
    line-height: 110%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 11px!important;
    max-width: 150px!important;
    text-align: center;
    z-index: 999999;
    -moz-box-shadow: 0 2px 3px rgba(0,0,0,0.45);
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.45);
    box-shadow: 0 2px 3px rgba(0,0,0,0.45);
}










#pagewrap {
width: 100%;
border: 0;
padding:0;
  background: transparent;
  position: relative;
  border: 0;
  margin: 0;
  padding: 0;
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -120px; /* the bottom margin is ideally the negative value of the footer's height */
}





.pagewidth {
   width: 100%;
max-width: 1920px;
    margin: 0 auto;
border: 0;
}







/* styles for main content div's begin... */

#content {
    background: none;
width: 66%;
    float: left;
	position: relative;
    padding: 0px 2% 0px 2%;
    margin: 0px 0 20px 0;
    border: 0;
overflow: visible;
}


#intropagecontent {
    background: none;
    width: 66%;
    float: left;
    padding: 0px 2% 0px 2%;
    margin: 0px 0 20px 0;
    border: 0;
	overflow: hidden;
}


#contentfullwidth {
    background: none;
    width: 96%;
    float: none;
display: block;
	position: relative;
	overflow: hidden;
    padding: 0 2% 0 2%;
    margin: 0px auto 20px auto!important;
    border: 0;
z-index: 1;
}

#content a, #intropagecontent a, #contentfullwidth a {
	position: relative;
		white-space: nowrap;
	outline: none;
	color: #375b84;
	text-decoration: none;
}

#content a:hover, #intropagecontent a:hover, #contentfullwidth a:hover {
color: #cb4a37;
}


/* ... styles for main content div's end */








/* content lists for content div's begin */

#content ul, #intropagecontent ul, #contentfullwidth ul {
    font-size: 100%;
    font-family: 'Raleway', sans-serif;
font-weight: 700;
    margin: 2em 0 2em 24px;
    padding: 0;
    line-height: 130%;
list-style: none;
}

#content li, #intropagecontent li, #contentfullwidth li {
margin: 0 0 .7em 0;
padding: 0;
list-style: none;
background: url('images/listbullet.png') no-repeat top left;
padding: 0 0 0 17px;
}

/* content lists for content div's end */










/* pageboxmodule - box to contain separate articles/items on a page begins */
.pageboxmodule {
width: 92%;
height: auto;
position: relative;
overflow: hidden;
display: block;
clear: both;
padding: 30px 4% 30px 4%;
margin: 0 auto 20px auto;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: -moz-linear-gradient(-45deg,  rgba(233,236,239,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(233,236,239,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9ecef', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
border: 0;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}
/* pageboxmodule - box to contain separate articles/items on a page ends */


.pageboxmodule a {
 
}

.pageboxmodule ul li a {
 white-space: pre-wrap!important;     
    white-space: -moz-pre-wrap!important; 
    white-space: -pre-wrap!important;   
    white-space: -o-pre-wrap!important;    
    word-wrap: auto!important;
}


.pageboxmoduleclear {
width: 92%;
height: auto;
position: relative;
overflow: hidden;
display: block;
clear: both;
padding: 30px 4% 30px 4%;
margin: 0 auto 20px auto;
background:none;
border: 0;
word-wrap: auto!important;
}




.pageboxmoduleleft40 {
width: 32%;
height: auto;
float: left;
clear: left;
position: relative;
overflow: hidden;
clear: both;
padding: 25px 3% 25px 3%;
margin: 0 0 30px 0;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: -moz-linear-gradient(-45deg,  rgba(233,236,239,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(233,236,239,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9ecef', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
border: 0;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
word-wrap: auto!important;
}







.pageboxmoduleright60 {
width: 54%;
height: auto;
float: right;
position: relative;
clear: right;
padding: 20px 3% 20px 3%;
margin: 0 0 30px 0;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: -moz-linear-gradient(-45deg,  rgba(233,236,239,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(233,236,239,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9ecef', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
border: 0;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
word-wrap: auto!important;
}






.pageboxmoduleright60clear {
width: 56%;
height: auto;
float: right;
position: relative;
clear: right;
padding: 20px 2% 20px 2%;
margin: 0 0 20px 0;
background: none;
overflow: hidden;
border: 0;
word-wrap: auto!important;
}



.pageboxmoduleright60clearborder {
width: 52%;
height: auto;
float: right;
position: relative;
clear: right;
padding: 20px 4% 30px 4%;
margin: 10px 0 20px 0;
background: #fff url(images/contactbg.png) no-repeat bottom right;
-moz-background-size:  auto 45%;
-webkit-background-size:  auto 45%;
-o-background-size:  auto 45%;
background-size: auto 45%;
overflow: hidden;
border: 0;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
-moz-box-shadow: 0 1px 2px #63717c!important;
-webkit-box-shadow: 0 1px 2px #63717c!important;
box-shadow: 0 1px 2px #63717c!important;
word-wrap: auto!important;
}


.pageboxmoduleleft40clear {
width: 32%;
height: auto;
float: left;
clear: left;
position: relative;
padding: 20px 2% 20px 2%;
margin: 0 0 20px 0;
background: none;
border: 0;
word-wrap: auto!important;
}





.pageboxmoduleleft49 {
width: 43%;
height: auto;
float: left;
clear: left;
position: relative;
padding: 20px 3% 20px 3%;
margin: 0 0 20px 0;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: -moz-linear-gradient(-45deg,  rgba(233,236,239,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(233,236,239,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9ecef', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
border: 0;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
word-wrap: auto!important;
}

.pageboxmoduleright49 {
width: 43%;
height: auto;
float: right;
clear: right;
position: relative;
padding: 20px 3% 20px 3%;
margin: 0 0 20px 0;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: -moz-linear-gradient(-45deg,  rgba(233,236,239,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(233,236,239,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9ecef', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
border: 0;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
word-wrap: auto!important;
}





.biblioitemleft {
width: 43%;
height: auto;
float: left;
position: relative;
overflow: hidden;
padding: 0 3% 0 3%;
margin: 0 0 20px 0;
border: 0;
}

.biblioitemright {
width: 43%;
height: auto;
float: right;
position: relative;
overflow: hidden;
padding: 0 3% 0 3%;
margin: 0 0 20px 0;
border: 0;
}







/* publishingdetailsbox begins */
.publishingdetailsbox {
width: 92%;
height: auto;
float: left;
clear: left;
position: relative;
overflow: hidden;
padding: 20px 4% 10px 4%;
margin: 0 0 20px 0;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: rgba(104, 156, 123, 0.55);
}

.publishingdetails {
color: #fff;
font-size: 12px;
line-height: 130%;
}

.publishingdetails a {
color: #4f705b;
}

.publishingdetails a:hover {
}

/* publishingdetailsbox ends */













/* signedbooksbox begins */
.signedbooksbox {
width: 32%;
height: auto;
float: left;
clear: left;
position: relative;
padding: 25% 3% 10px 3%;
margin: 0 0 30px 0;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: #fff url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/signedbooksbg.jpg) no-repeat top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
border: 0;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}
/* signedbooksbox ends */




/* signedbooksboxright begins */
.signedbooksboxright {
width: 54%;
height: auto;
float: right;
clear: right;
position: relative;
padding: 25% 3% 10px 3%;
margin: 0 0 30px 0;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: #fff url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/signedbooksbg.jpg) no-repeat top center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
border: 0;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}
/* signedbooksboxright ends */












/* vendorbuttonscontainer begins */
#vendorbuttonscontainer {
	float: left;
	position: relative;
	overflow: hidden;
	border: 1px solid red;
	margin:0 0 10px 0;
	padding: 3%;
	width: 54%;
	max-width: 440px;
	background: #9fabb5;
	background: rgba(159, 171, 181, 0.5);
	border: 0;
	-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
}


.vendorbuttonleft {
	float: left;
	width: 48.5%;
	height: auto;
	padding: 0;
	margin: 0;
}

.vendorbuttonright {
	float: right;
	width: 48.5%;
	height: auto;
	padding: 0;
	margin: 0;
}
/* vendorbuttonscontainer ends */










/* video panels begins */

.videopanelleft {
	margin: 0 3% 20px 0;
	float: left;
	position: relative;
	width:43%;
	max-width:43%;
	height: auto;
	padding: 15px 2% 20px 2%;
background: -moz-linear-gradient(-45deg,  rgba(233,236,239,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(233,236,239,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9ecef', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	border: 0;
	-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}

.videopanelright {
	margin: 0 0 20px 3%;
	float: right;
	position: relative;
	width:43%;
	max-width:43%;
	height: auto;
	padding: 15px 2% 20px 2%;
background: -moz-linear-gradient(-45deg,  rgba(233,236,239,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(233,236,239,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9ecef', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	border: 0;
	-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}

.videopanelfullwidth {
	margin: 0 auto 30px auto;
	float: none;
	position: relative;
	clear: both;
	width:96%;
	max-width:96%;
	height: auto;
	padding: 20px 2% 20px 2%;
background: -moz-linear-gradient(-45deg,  rgba(233,236,239,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(233,236,239,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9ecef', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	border: 0;
	-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}

.videopanelright p, .videopanelfullwidth p, .videopanelleft p {
	color: #fff!important;
}

.videoribbon {
width: 100px;
height: 100px;
position: absolute;
left: -5px;
top: -5px;
border: 0;
padding:0;
z-index: 99;
}

.video-wrapper {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* video panels ends */








/* groupbox begins */
.groupbox {
width: 92%;
height: auto;
position: relative;
overflow: hidden;
display: block;
clear: both;
padding: 30px 4% 30px 4%;
margin: 0 auto 20px auto;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: #7d92cb!important;
border: 0;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}
/* groupbox ends */




.mediaicondark {
width: 62px;
height: 48px;
float: left;
clear: left;
margin: 0;
padding: 0;
border: 0;
} 



.witbintromodule {
width: 92%;
height: auto;
position: relative;
overflow: hidden;
display: block;
clear: both;
padding: 30px 4% 30px 4%;
margin: 0 auto 20px auto;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: -moz-linear-gradient(-45deg,  rgba(233,236,239,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(233,236,239,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9ecef', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
border: 0;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}















/* sidebar */
#sidebar {
    width: 26%;
    float: right;
position: relative;
    padding: 0 2% 20px 0;
    margin: 0 0 20px 0;
border: 0;
}












#headerwrapper {
    border: 0;
	display: block;
    position: relative;
	clear: both;
width: 100%;
    height: auto;
    margin: 0 auto;
    border: 0;
padding: 0;
 background: url(wp-content/themes/valmcdermid/images/headerwrapperbg.png) no-repeat top left;
  -webkit-background-size: 60% auto;
  -moz-background-size: 60% auto;
  -o-background-size: 60% auto;
  background-size: 60% auto;
}

#header {
   width: 100%;
	float: none;
    position: relative;
display: block;
clear: both;
    height: auto;
    margin: 0 auto 30px auto;
    padding: 0!important;
    border: 0;
}









#topstrip {
    height: 45px;
    width: 100%;
    position: absolute;
    margin: 0 0 5px 0;
    padding: 0;
    left: 0;
    top: 0px;
    z-index: 999;
    border: 0;
border-bottom: 1px solid #000;
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #000;
  background: -webkit-gradient(linear, left top, right top, from(#000000), to(rgba(0, 0, 0, 0.15)));
  background: -webkit-linear-gradient(left, #000000, rgba(0, 0, 0, 0.15));
  background: -moz-linear-gradient(left, #000000, rgba(0, 0, 0, 0.15));
  background: -ms-linear-gradient(left, #000000, rgba(0, 0, 0, 0.15));
  background: -o-linear-gradient(left, #000000, rgba(0, 0, 0, 0.15));
}


#sociallinkscontainer {
height: 25px;
   
position: absolute;
    margin: 0;
    padding: 10px 10px 10px 10px;
    left: 0;
    top: 0px;
border: 0;
}

.share-buttons{
	list-style: none;
}

.share-buttons li{
	display: inline;
}












.headerimagecontainer {
    display: block;
    position: relative;
    overflow: hidden;
	width: 100%;
    height: auto;
    border: 0;
    margin: 0 auto;
    padding: 0!important;
z-index: 9;
}








/* headerslides begin */
.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    height: auto;
}

.rslides li {
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
    padding: 0;
    margin: 0;
}

.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    max-width: 100%;
    border: 0;
}






/* alternative header images begin */

.blog .headerimagecontainer { 
background-color: #FFFFFF; 
background-image:url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/slide2.jpg); 
background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.single-post .headerimagecontainer { 
background-color: #FFFFFF; 
background-image:url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/slide2.jpg); 
background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.archive .headerimagecontainer { 
background-color: #FFFFFF; 
background-image:url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/slide2.jpg); 
background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4075 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/tvseriesheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4216 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/tvseriesheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4214 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/tvseriesheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-8660 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/tvseriesheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-3767 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/slide3.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}




.page-id-7717 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/slide3.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-3769 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-8432 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}




.page-id-7801 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-7772 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-6874 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5423 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5208 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5403 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-5391 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-7513 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-5287 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5166 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-5105 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5410 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-5371 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5416 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5477 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-5389 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-5337 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-5405 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}
.page-id-4115 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-5373 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}
.page-id-4117 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5408 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4119 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5315 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5128 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5188 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5228 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4835 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4724 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5421 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5324 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-5305 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-5381 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5386 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5401 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5331 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5299 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5350 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5280 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4524 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-5418 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4220 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/mediaheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4222 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/mediaheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4218 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/mediaheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4212 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/mediaheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-4224 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/slide2.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-4226 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/slide4.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-6089 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booksheaderimg.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}


.page-id-5646 .headerimagecontainer { /* events page  */
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/slide1.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.page-id-6543 .headerimagecontainer { 
background: #FFFFFF url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/slide2.jpg) no-repeat top left;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

.single.single-events .headerimagecontainer { /* events single pages  */
background-color: #FFFFFF; 
background-image:url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/slide1.jpg); 
background-repeat: no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}

/* alternative header images ends */










.headerlogo1 {
    position: absolute;
    padding: 0;
    margin: 0 0 0 0;
    outline: 0;
    z-index: 99;
    border: 0;
    max-width: 55%;
    height: auto;
    right: 0%;
    bottom:38px;
}

.headerlogo2 {
display: none;
}








/* media icons container begins */

.mediaiconscontainer {
	position: absolute;
	display: block;
	bottom: 44px;
	left: 1.5%;
	max-width: 12%;
	height: auto;
	border: 0;
	padding: 0;
	margin: 0;
	z-index: 999;
}

.mediaicon {
	float: left;
	display: inline-block;
	border: 0;
	padding: 0;
	margin: 0;
	width: 33%;
	height: auto;
}

/* media icons container ends */








/* search form */
#header #searchform {
    position: absolute;
    right: 0;
    top: 0;
    width: 160px;
    z-index: 9999;
margin: 0;
padding: 0;
    border: 0;
}

#header #searchform #s {
    width: 100px;
height: 45px;
    color: #fff;
    background: #375b84 url(images/search.png) no-repeat 8px center;
    padding: 0 0 0 28px;
    float: right;
margin: 0;
    -webkit-transition: width .7s!important;
    -moz-transition: width .7s!important;
    transition: width .7s!important;
    border: none!important;
    font-weight: normal!important;
-webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 0;
}

#header #searchform #s:focus {
    width: 140px;
    color: #fff;
    font-weight: normal!important;
background: #cb4a37 url(images/search.png) no-repeat 8px center;
}









/* #main-nav responsive menu begins */
#main-nav > ul:after {
  content: "";
  display: table;
  clear: both;
}

#main-nav {
	font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
	margin: 0 auto;
	padding: 0;
	position: relative;
	z-index: 999;
	font-size: 15px;
	font-weight: normal;
	height: 40px;
	width: 100%;
border-top: 6px solid #000;
}
#main-nav * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#main-nav li {
  position: relative;
}

#main-nav li:hover > ul {
  opacity: 1;
  visibility: visible;
  margin: 0;
}
#main-nav li:hover > a {
background-color: #000000;
  color: white;
	position: relative;
	  width: 100%!important;
}

#main-nav input[type=checkbox] {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
#main-nav label {
  display: none;
  cursor: pointer;
  user-select: none;
}

#main-nav > ul {
  border: 0;
  background-color: #000;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(#000000));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), #000000);
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), #000000);
  background: -ms-linear-gradient(left, rgba(0, 0, 0, 0.5), #000000);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), #000000);
  }
#main-nav > ul > li {
  float: left;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}
#main-nav > ul > li > a {
  float: left;
  padding: 0 2em;
  height: 40px;
  line-height: 40px;
background:#375b84;
	display: block!important;
	position: relative;
	  width: 100%!important;
}
#main-nav > ul a {
 color: #fff;
 text-decoration: none;
-webkit-transition: 300ms linear 0s;
-moz-transition: 300ms linear 0s;
-o-transition: 300ms linear 0s;
transition: 300ms linear 0s;
}


#main-nav > ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  margin: 2em 0 0 0;
  background-color: #444;
  background-image: none;
  -webkit-transition-property: margin, opacity;
  -moz-transition-property: margin, opacity;
  -o-transition-property: margin, opacity;
  transition-property: margin, opacity;
  -webkit-transition-duration: .30s;
  -moz-transition-duration: .30s;
  -o-transition-duration: .30s;
  transition-duration: .30s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
box-shadow: 0 8px 8px -4px rgba(0, 0, 0, 0.75);
}
#main-nav > ul ul li {
  display: block;
  -webkit-box-shadow: 0 1px 0 #222, 0 2px 0 #666;
  -moz-box-shadow: 0 1px 0 #222, 0 2px 0 #666;
  box-shadow: 0 1px 0 #222, 0 2px 0 #666;
}
#main-nav > ul ul li:first-child > a {

}
#main-nav > ul ul li:first-child > a:after {
  content: '';
  position: absolute;
  left: 4em;
  top: -12px;
  border: 6px solid transparent;
  border-bottom-color: inherit;
}
#main-nav > ul ul li:last-child {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#main-nav > ul ul li:last-child > a {
-webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#main-nav > ul ul a {
  padding: 1em;
  width: 215px;
  display: block;
  border-color: #444;
	position: relative;
	  width: 100%!important;
	display: block!important;
}
#main-nav > ul ul a:hover {
  background-color: #cb4a37;
  border-color: #cb4a37;
}

#main-nav > ul ul li {
width: 200px !important;
}

/* #main-nav responsive menu ends */










.emaillinkcontainer {
background: #7d92cb;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0px;
    border: 0;
    height: 40px;
    width: 25px;
    margin: 0 0 0 0;
    padding:  0 10px 0 10px;
    z-index: 999;
    line-height: 40px;
}

.emailicon1 {
    float: left;
    display: inline-block;
    margin: 9px 0 0 0;
    border: 0;
    padding: 0;
}




.panelbaseshadow {
	display: block;
	max-width: 100%;
	max-height: 100%;
	outline: 0;
	border: 0;
	position: relative;
	margin: 0;
	padding: 0;
}



/* straplinecontainer begins */

#straplinecontainer {
float: left;
position: relative;
    overflow: hidden;
    height: auto;
    margin: 0 0 40px 0;
    border: 0;
    background: none;
border: 0;
width: 46%;
padding: 0 1% 0 2%;
}

.pintro {
    margin: 0 0 10px 0;
    padding: 0;
    color: #555;
    font-size: 1.8em;
font-family: 'Raleway', sans-serif;
font-weight: 300;
    line-height: 115%;

}

.pintrosecondary {
   margin: 0 0 10px 0;
    padding: 0;
    color: #555;
    font-size: 1.35em;
font-family: 'Raleway', sans-serif;
font-weight: 300;
    line-height: 125%;

}

.pintro span {
font-family: 'Raleway', sans-serif;
font-weight: 700;
}

.pintro:first-letter {
font-size: 150%;
font-weight: 800;
float: left;
width: 1em;
color: #375b84;
}

/* straplinecontainer ends */








/* news box begins */

#newsboxcontainer {
float: right;
position: relative;
display: block;
overflow: hidden;
width:46%;
margin: 0 2% 40px 1%;
padding: 0;
border-top: 0;
border-right: 1px solid #375b84!important;
border-bottom: 7px solid #375b84!important;
border-left: 1px solid #375b84!important;
background: #fff;
background: rgba(255, 255, 255, 0.80);
}

#scrollercontainer{
	position: relative;
	width: 100%;
	height: 30px;
	overflow: hidden;
	margin: 0 0 20px 0;
	background: #375b84;
}
#titlescroller{
	white-space: nowrap;
}
#titlescroller p{
	font-family: 'Source Code Pro';
	font-weight: 400;
	padding: 0;
	margin:0;
	color: rgba(255, 255, 255, 0.45);
	line-height: 30px;
	font-size: 20px;
}

.newscontainer {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0 auto;
	padding: 0 4% 0 4%;
	width: 90%;
	height: auto;
	border: 0;
}

.newsimageleft {
	float: left;
	border: 0;
	outline: 0;
	max-width: 30%;
	height: auto;
	padding: 0 1% 0 0;
	border: 0;
}

.newsimageright {
	float: right;
	border: 0;
	outline: 0;
	max-width: 30%;
	height: auto;
	padding: 0 0 0 1%;
	border: 0;
}

.newsimagerightsmall {
	float: right;
	border: 0;
	outline: 0;
	max-width: 25%;
	height: auto;
	padding: 0 0 0 1%;
	border: 0;
}

.newscontainer .pquote {
font-family: 'Arapey', serif;
font-weight: 400;
font-style: italic;
	line-height: 110%;
	color: #375b84;
	margin: 4px 0 10px 4%;
	max-width: 30%;
	float: right;
	clear: right;
	border: 0;
}

.newscontainer .pquotetop {
	clear: left;
	border: 0;
	padding: 0 0 0 0;
	margin: 0 10px 0 0;
	float: left;
}

.newscontainer .pquotebottom {
	position: relative;
	overflow: hidden;
	display: block;
	border: 0;
	padding: 0;
	margin: 0 0 10px 0!important;
}

.newscontainer .quotecredit {
font-size: 12px;
color: #999;
font-weight: 400;
font-family: Arial, Helvetica, sans-serif;
display: block;	
}
/* news box ends */





.facebookbanner {
float: none;
position: relative;
overflow: hidden;
width: 94%;
left: 0;
right: 0;
margin: 3%;
padding: 0;
}


.raithroversbanner {
float: none;
position: relative;
overflow: hidden;
width: 94%;
left: 0;
right: 0;
margin: 3%;
padding: 0;
}






/* featureimagesgridcontainer begins */

.featureimagesgridcontainer {
    position: relative;
    overflow: hidden;
	width: 96%;
    height: auto;
    margin: 0 auto 20px auto;
    padding: 0!important;
    border: 0;
    height: auto;
    background: none;
}

.featureimagesgrid {
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	width: 100%;
	list-style: none;
	text-align: center;
	border: 0;
}

.featureimagesgrid figure {
	box-sizing: border-box;
	position: relative;
	float: left;
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	margin: 0 2% 0 0;
	width: 32%;
	height: 250px;
	text-align: center;
	cursor: pointer;
	background: #7d92cb;
}

.featureimagesgrid .figureright {
	box-sizing: border-box;
	position: relative;
	float: right;
	z-index: 1;
	display: inline-block;
	overflow: hidden;
	margin: 0 0 0 0;
	width: 32%;
	height: 250px;
	text-align: center;
	cursor: pointer;
}

.featureimagesgrid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	opacity: 1.0;
}

.featureimagesgrid .figureright img {
	position: relative;
	display: block;
	min-height: 100%;
	opacity: 1.0;
}

.featureimagesgrid figure figcaption {
	box-sizing: border-box;
	padding: 0 5% 0 5%;
	color: #fff;
	font-size: 14px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.featureimagesgrid figure figcaption::before,
.featureimagesgrid figure figcaption::after {
	box-sizing: border-box;
	pointer-events: none;
}

.featureimagesgrid figure figcaption,
.featureimagesgrid figure a {
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* anchor covers the whole item by default */
.featureimagesgrid figure a {
	box-sizing: border-box;
	z-index: 999;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.featureimagesgrid figure h2 {
	font-weight: 300;
	font-size: 28px;
color: #fff!important;
}

.featureimagesgrid figure h2 span {
	font-weight: 700;
color: #fff!important;
}

.featureimagesgrid figure p {
line-height: 120%!important;
color: #fff!important;
font-weight: 600;
}

.featureimagesgrid figure h2,
.featureimagesgrid figure p {
	margin: 0;
}

figure.img {
	opacity: 0.85;
}

figure:hover img {
	opacity: 0.1;
		-webkit-transition: 400ms opacity 0s;
	-moz-transition: 400ms opacity 0s;
	-o-transition: 400ms opacity 0s;
	transition: 400ms opacity 0s;
}

.figureright.img {
	opacity: 0.85;
}

.figureright:hover img {
	opacity: 0.1;
		-webkit-transition: 400ms opacity 0s;
	-moz-transition: 400ms opacity 0s;
	-o-transition: 400ms opacity 0s;
	transition: 400ms opacity 0s;
}

figure h2 {
	padding-top: 20%;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
}

figure p {
	padding: 20px 0.5em;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
}

figure figcaption:before,
figure:hover figcaption:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure:hover h2,
figure:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* featureimagesgridcontainer ends */









/* page title */
.page-title {
    margin: 0 0 15px;
    padding: 0;
    font-size: 300%;
    line-height: 110%;
    display: none;

 /* commented out */
    
}



/* post */
.post {
position: relative;
overflow: hidden;
    margin-bottom: 30px;
    padding: 20px 4%;
width: 90%;
   -moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: -moz-linear-gradient(-45deg,  rgba(233,236,239,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(233,236,239,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(-45deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(135deg,  rgba(233,236,239,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9ecef', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
border: 0;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}



/* post content */
.post-content {
    min-width: 120px;
}

.post-title {
    font-size: 3em!important;
    letter-spacing: -0.03em;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 110%!important;
white-space: normal !important;
}


.post-title a {
    font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
    text-transform: none;
color: #375b84!important;
white-space: normal !important;
}


.post-title a:hover {
color: #cb4a37!important;
}



.post a {
color: #375b84!important;
white-space: normal !important;
}

.post a:hover {
color: #cb4a37!important;
}



/* post image */
.post-image {
    margin: 0 0 5px;
}

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

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

/* lightbox zoom image */
.post-image .lightbox {
    position: relative;
    display: inline-block;
    zoom: 1;
    *display: inline;
    max-width: 100%;
}

.post-image .lightbox .zoom {
    width: 40px;
    height: 40px;
    background: url(images/icon-zoom.png) no-repeat center center;
    margin: -20px 0 0 -20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-border-radius: 10em;
    -moz-border-radius: 10em;
    border-radius: 10em;
}

.post-image .lightbox:hover .zoom {
    background-color: #000;
}

/* post meta */
.post-meta {
    font-family: 'Droid Sans', sans-serif;
    font-weight: 700;
    font-size: 0.813em;
    margin: 0 0 25px;
}

.post-meta a {
color: #375b84!important;
}

.post-meta a:hover {
color: #cb4a37!important;
}

.post-meta .post-author {
    background: url(images/post-author.png) no-repeat 0 2px;
    padding: 2px 0 2px 16px;
    margin-right: 7px;
}

.post-meta .post-category {
    background: url(images/post-category.png) no-repeat 0 2px;
    padding: 2px 0 2px 16px;
    margin-right: 7px;
}

.post-meta .post-tag {
    background: url(images/post-tag.png) no-repeat 0 3px;
    padding: 2px 0 2px 16px;
    margin-right: 7px;
}

.post-meta .post-comment a {
    background: url(images/post-comment.png) no-repeat 0 3px;
    padding: 0 0 0 16px;
}

.post-date {
    font-family: 'Droid Sans', sans-serif;
    font-weight: 400;
    color: #777;
    font-size: 1em!important;
    padding: 0 0 0 2px;
}



/* page nav */
.pagenav {
    clear: both;
    padding-bottom: 20px;
    text-align: right;
}

.pagenav a, .pagenav span {
    line-height: 100%;
    padding: 6px 0 0;
    margin: 0 2px;
    vertical-align: middle;
    display: inline-block;
    zoom: 1;
    *display: inline;
    min-width: 24px;
    min-height: 18px;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.pagenav a {
    background: #7fb593;
    color: #fff;
    text-decoration: none;
    -webkit-transition: 300ms linear 0s;
    -moz-transition: 300ms linear 0s;
    -o-transition: 300ms linear 0s;
    transition: 300ms linear 0s;
}

.pagenav a:hover {
    background-color: #cb4a37;
    -webkit-transition: 300ms linear 0s;
    -moz-transition: 300ms linear 0s;
    -o-transition: 300ms linear 0s;
    transition: 300ms linear 0s;
}

.pagenav .current {
    text-decoration: none;
}

/* post nav */
.post-nav {
    margin: 0 0 30px;
    padding: 15px 0;
    clear: both;
 position: relative;
z-index: 999999999;
}

.post-nav span {
    width: 47%;
    position: relative;
}

.post-nav a {
    text-decoration: none;
    display: block;
}

.post-nav a:hover {
    text-decoration: none;
}

.post-nav .prev {
    float: left;
}

.post-nav .next {
    float: right;
    text-align: right;
}

/* post nav arrow */
.post-nav span span {
    background: #7fb593;
    color: #fff;
    font: normal 20px/100% "Times New Roman", Times, serif;
    display: block;
    width: auto;
    float: left;
    width: 32px;
    height: 28px;
    padding: 4px 0 0;
    text-align: center;
    margin: -8px 10px 17px 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
-webkit-transition: 300ms linear 0s;
	-moz-transition: 300ms linear 0s;
	-o-transition: 300ms linear 0s;
	transition: 300ms linear 0s;
}

.post-nav .next span {
    float: right;
    margin-left: 10px;
    margin-right: 0;
}

.post-nav a:hover span {
    background: #cb4a37;
}

.single-post .post-nav span {
    width: 47%;
    position: relative;
display:none; /* commented out on single pages */
}

.post-comment {
}











/* comments */

.commentwrap {
    margin: 10px 0 20px;
    position: relative;
    clear: both;
}

/* comment title */
.comment-title, #reply-title {
    font-size: 140%;
    margin: 0 0 10px;
    padding: 0;
}

/* comment pagenav */
.commentwrap .pagenav {
    margin: 10px 0;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.commentwrap .pagenav.top {
    margin: 0;
    position: absolute;
    top: 10px;
    right: 0;
}

/* commentlist */
.commentlist {
    margin: 0 0 30px;
    padding: 5px 0 0;
    border-top: 1px solid rgba(113, 132, 149, 0.5);
}

.commentlist li {
    margin: 0;
    padding: 15px 0 0;
    position: relative;
list-style: none;
list-style-type: none;
}

.commentlist .comment-author {
    margin: 2px 0 5px;
    padding: 0;
}

.commentlist .avatar {
    float: left;
    margin: 0 15px 0 0;
}

.commentlist cite {
    font-style: normal;
    font-size: 130%;
}

.commentlist cite a {
    text-decoration: none;
}

.commentlist .bypostauthor > .comment-author cite {
    background: url(images/icon-author-comment.png) no-repeat 0 2px;
    padding-left: 18px;
}

.commentlist .comment-time {
    font-size: 75%;
    text-transform: uppercase;
}

.commentlist .commententry {
    border-bottom: 1px solid rgba(113, 132, 149, 0.5);
    position: relative;
    min-height: 40px;
    overflow: hidden;
    padding-bottom: 5px;
    word-wrap: break-word;
}

.commentlist ul, .commentlist ol {
    margin: 0 0 0 7%;
    padding: 0;
}

/* reply link */
.commentlist .reply {
    position: absolute;
    right: 0;
    top: 8px;
}

.commentlist .comment-reply-link {
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
}

.commentlist .comment-reply-link:hover {
    text-decoration: none;
}



/* comment form */

#respond {
    margin: 0;
    padding: 10px 0 0;
    position: relative;
    clear: both;
}

#respond #cancel-comment-reply-link {
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 85%;
    line-height: 100%;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
    color: #fff;
    background: #7d92cb;
}

#respond #cancel-comment-reply-link:hover {
    background: #cb4a37;
}

#commentform {
    margin: 15px 0 0;
}

#commentform input[type=text] {
    width: 200px;
    margin: 0 5px 0 5px;
}

#commentform label {
    font-weight: bold;
    font-size: 80%;
    display: block;
    line-height: 110%;
    margin-top: 5px;
    padding-left: 15px;
}

#commentform label small {
    font-weight: normal;
    font-size: 70%;
    display: block;
    line-height: 110%;
    margin-top: 5px;
    padding-left: 15px;
}

#commentform textarea {
    height: 140px;
}

#commentform input#submit {
    padding: 7px 20px;
}

.comment-form-author, .comment-form-email, .comment-form-url {
    color: #999;
}

span.required {
    display: none;
}















.widget {
    margin: 0 0 30px 0!important;
    word-wrap: break-word;
    padding: 20px 5% 30px 5%;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
position: relative;
border: 0!important;
background:#fff;
background:rgba(255, 255, 255, 0.80);
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}



.widgettitle {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 120%;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 300;
    font-size: 2.5em;
    color: #7d92cb;
}


.widget ul {
    margin: 0;
    padding: 0;
}

.widget li {
    margin: 0;
    padding: 6px 0;
    list-style: none;
    clear: both;
}

.widget li a {
color: #888;
}

.widget li a:hover {
color: #cb4a37;
}













/* example styles for no bg or border on widget css begins  */

#text-00 {
    margin: 0 auto 20px auto!important;
    padding: 0;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    border-radius: none;
    border: 0;
background: none;
position: relative;
-moz-box-shadow: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}

/* example styles for no bg or border on widget css ends  */












#text-2 {
    margin: 0 auto 0 auto!important;
    padding: 0;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    border-radius: none;
    border: 0;
background: none;
position: relative;
-moz-box-shadow: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}




/* twitterfeedwrapper begins */

#twitterfeedwrapper {
	float: left;
	width: 100%;
	margin: 0 auto 30px auto;
	padding: 0 0 0 0;
	position: relative;
	clear: both;
	border: 1px solid #96cbf2;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
	min-height: 400px;
	background-color: #fff;
	-moz-background-size: 80% auto;
	-webkit-background-size: 80% auto;
	-o-background-size: 80% auto;
	background-size: 80% auto;
	background-image: url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/twitterfeedbgimg.png);
	background-repeat: no-repeat;
	background-position: right 10%;
-moz-box-shadow: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}

.twitterfeedcontainer {
	width: 90%;
	max-width: 90%;
	display: block;
	margin: 0 auto;
	padding: 0 5% 0 5%;
	position: relative;
	border: 0;
	
}

#twitter-widget-0 {
width: 100%;

}


.tweettitlelink {
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	width: 91%;
	line-height: 105%;
	font-size: 1.2em;
	margin: 3px auto 30px auto;
	padding: 15px 4% 15px 4%;
	display: block;
	color: #59adeb;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10) ;
	outline: 0;
	background: rgba(255, 255, 255, 0.60);
}

.tweettitlelink a {
	 -webkit-transition: 300ms linear 0s;
	-moz-transition: 300ms linear 0s;
	-o-transition: 300ms linear 0s;
	transition: 300ms linear 0s;
	color: #59adeb;
	text-decoration: none;
}

.tweettitlelink a:hover {
	 -webkit-transition: 300ms linear 0s;
	-moz-transition: 300ms linear 0s;
	-o-transition: 300ms linear 0s;
	transition: 300ms linear 0s;
	color:#cb4a37;
	text-decoration: none;
}

/* twitterfeedwrapper ends */







#text-3 {
    margin: 0 auto 20px auto!important;
    padding: 0;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    border-radius: none;
    border: 0;
background: none;
position: relative;
-moz-box-shadow: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}





#archives-3 {
height: 100%!important;
padding: 15px 5% 90px 5%;
 background: url(images/newsarchivebg.jpg) no-repeat bottom right;
border: 1px solid #c6ced5;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}





#text-4 {
    margin: 0 auto 20px auto!important;
    padding: 0;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    border-radius: none;
    border: 0;
background: none;
position: relative;
-moz-box-shadow: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}


/* booklistboxcontainer begins */
.booklistboxcontainer {
width: 95%;
height: auto;
overflow: hidden;
border: 0;
position: relative;
margin: 0 auto 30px auto;
padding: 20px 0 20px 0;
-moz-border-radius:4px;
-khtml-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background: #7d92cb url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/booklistboxcontainerbg.png) no-repeat bottom right!important;
-moz-background-size: 50% auto!important;
-webkit-background-size: 50% auto!important;
-o-background-size: 50% auto!important;
background-size: 50% auto!important;
-moz-box-shadow: 0 1px 2px #63717c!important;
    -webkit-box-shadow: 0 1px 2px #63717c!important;
    box-shadow: 0 1px 2px #63717c!important;
}

.booklistbox {
width: 90%;
height: 300px;
overflow-y:scroll;
border: 0;
position: relative;
margin: 0 auto;
padding: 0 4% 0 4%;
font-family: 'Raleway', sans-serif;
font-weight: 600;
font-size: 14px;	
}

.booklistboxtitle {
margin: 0 0 15px 0;
    padding: 0;
	display: block;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #ffffff;
line-height: 105%;	
}

.scrolltag {
width: 20px;
height: 81px;
display: block;
position: absolute;
z-index: 99;
right: 6px;
top: 3px;
border: 0;
margin: 0;
padding: 0;	
}

.booklistbox a {
	display: inline-block;
    color: #ffffff!important;
    text-decoration: none;
    outline: none;
    font-weight: 600;
    -webkit-transition: 300ms linear 0s;
    -moz-transition: 300ms linear 0s;
    -o-transition: 300ms linear 0s;
    transition: 300ms linear 0s;
	margin:0;
	padding: 2px 0;
	-moz-border-radius:3px;
-khtml-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
}

.booklistbox a:hover {
	display: inline-block;
    text-decoration: none;
    font-weight: 600;
    color: #ffffff!important;
    -webkit-transition: 300ms linear 0s;
    -moz-transition: 300ms linear 0s;
    -o-transition: 300ms linear 0s;
    transition: 300ms linear 0s;
	margin:0;
	padding: 2px 6px;
	background: rgba(0, 0, 0, 0.35);
	-moz-border-radius:3px;
-khtml-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
}

.booklistbox a:hover
.booklistbox a:active,
.booklistbox a:selected,
.booklistbox a:focus {
  text-decoration: none;
  outline: none;
  -moz-outline-style:none;
}
/* booklistboxcontainer ends */








/* wp-calendar styles */

#calendar-2 {
height: 100%!important;
 background: url(images/calendarbg.png) no-repeat bottom right;
border: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#wp-calendar_wrap {

}

#wp-calendar thead {
    color: #7d92cb!important;
}

#wp-calendar caption {
    color: #7d92cb!important;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 300;
line-height: 110%;
    margin: 0 0 10px 0;
    font-size: 2.5em;
    text-align: left!important;
}

#wp-calendar a {
color: #7d92cb!important;
}

#wp-calendar a:hover {
color: #cb4a37!important;
}
















.footerpush { /* .footerpush should ideally be the same height as #footerbottomwrapper */
height: 120px;
border: 0;
position: relative;
display: block;
overflow: hidden;
margin: 0 auto;
z-index: 0;
}




#footerbottomwrapper {
    border: 0;
    position: relative;
    height: auto;
    margin: 0 auto 0 auto;
    padding: 0;
 background: #000 url(https://www.valmcdermid.com/wp-content/themes/valmcdermid/images/footerwrapperbg.jpg) no-repeat top center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale');
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')";
border: 0;
}



#footerbottom {
width: 96%;
margin: 0 auto;
    clear: both;
    position: relative;
    padding: 0 0 30px 0;
    border: 0;
background:  transparent;
height: 170px;
border: 0;
}

#footerlogocontainer {
    height: 68px;
    width: 150px;
    float: left;
    padding: 0;
    margin: 120px 0 0 0;
}

#footertextdetailscontainer {
    float: left;
    padding: 5px 0 5px 15px;
    margin: 120px 0 0 15px;
    height: 55px;
    border-left: 1px dotted rgba(255, 255, 255, 0.30);
}

#footercreditscontainer {
    float: left;
position: relative;
    padding: 5px 0 5px 15px;
    margin: 120px 0 0 15px;
    height: 55px;
    border-left: 1px dotted rgba(255, 255, 255, 0.30);
z-index: 999;
}

.footertext {
    font-size: 12px;
    color: #fff;
    line-height: 125%;
    margin: 0;
    padding: 0;
    letter-spacing: normal;
    font-family: 'Droid Sans', sans-serif;
    font-weight: 400;
}

.footertextbold {
    font-family: 'Droid Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    padding: 0;
    margin: 0;
}

.footertext a {
    font-family: 'Droid Sans', sans-serif;
    font-weight: 700;
    color: #7d92cb;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.footertext a:hover {
   font-family: 'Droid Sans', sans-serif;
    font-weight: 700;
    color: #cb4a37;
    text-decoration: none;
    padding: 0;
    margin: 0;
}








/* back to top link */
.toplink {
    position: absolute;
    width: 40px;
    height: 40px;
    display: block;
    padding: 0!important;
    margin: 0!important;
    outline: 0;
    z-index: 99;
    right: 20px;
    top: -20px;
    border: none;
}










/* wp post formatting */

img.alignleft {
 margin-right: 3%;
max-width: 60%;
height: auto;
}

img.alignright {
 margin-left: 3%;
max-width: 60%;
height: auto;
}

img.aligncenter {
margin: 0 auto 10px auto;
max-width: 100%;
clear: both;
 position: relative;
    overflow: hidden;
}

img.alignnone {
margin: 0 auto 10px auto;
max-width: 100%;
clear: both;
 position: relative;
    overflow: hidden;
}


.alignleft {
    float: left;
    margin-right: 3%;
}

.alignright {
    float: right;
    margin-left: 3%;
}

.aligncenter {
    text-align: center;
    display: block;
}

.wp-caption {
    text-align: center;
    margin-bottom: 20px;
    max-width: 100%;
    position: relative;
    overflow: hidden;

}

.wp-caption-text {
    font-size: 85%;
    line-height: 110%;
    margin: 6px 0;
color: #999;
}








/* wp gallery */

#body .gallery {
    margin: 10px 10px 20px 10px;
}


#body .gallery img {
    border: none;
}


/* gallery item */
#body .gallery dl {
    margin: 0 0.5% 8px 0!important;
    display: inline-block;
    vertical-align: top;
    zoom: 1;
    *display: inline;
    width: auto;
    float: none;
    text-align: center;
}


/* gallery caption */
#body .gallery dd {
    width: 100%;
    line-height: 110%;
    font-size: 80%;
   /*text-align: left!important;*/
    margin: 0 auto;
font-style: normal!important;
color: #999!important;
border: 0;
}


/* get rid of wp gallery br tag */
.gallery br {
    display: none;
 /* commented out */

}


.gallery-columns-3 {
width: 100%!important;
height: auto;
margin: 0 auto;
border: 0;
padding: 0;
}

#body .gallery dl {
max-width: 31.333%!important;
height: auto;
margin: 0 2% 0 0;
padding: 0;
outline:0;
border: 0;
}














/* clear & align */
.clear {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

.textleft {
    text-align: left;
}

.textright {
    text-align: right;
}

.textcenter {
    text-align: center;
}








#topanchor {
    position: absolute;
    top: -20px;
    left: 0px;
}














/* general wp forms etc */

input, textarea, select, input[type=search], button {
    font-size: 100%;
    font-family: inherit;
    color: #777;
}

input[type=text], input[type=email], input[type=password], textarea, input[type=search] {
    background: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #bcc3d4;
    padding: 6px 10px;
    -webkit-appearance: none;
}

input[type=text], input[type=email], input[type=search] {
    width: 240px;
    max-width: 90%;
}

/* text area */
textarea {
    line-height: 150%;
    width: 94%;
}

/* form input:focus */
textarea:focus, input[type=password]:focus, input[type=text]:focus, input[type=search]:focus {
    outline: none;
    background: #fff;
}

/* form button */
input[type=reset], input[type=submit], button {
    background: #6b9984;
    color: #fff;
    border: none;
    padding: 7px 20px;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: 300ms linear 0s;
    -moz-transition: 300ms linear 0s;
    -o-transition: 300ms linear 0s;
    transition: 300ms linear 0s;
	-webkit-appearance: none;
}

/* form button:hover */
input[type=reset]:hover, input[type=submit]:hover, button:hover {
    background: #cb4a37;
    color: #fff;
    -webkit-transition: 300ms linear 0s;
    -moz-transition: 300ms linear 0s;
    -o-transition: 300ms linear 0s;
    transition: 300ms linear 0s;
	-webkit-appearance: none;
}

input[type=text], textarea {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    padding: 3px 0px 3px 3px;
    margin: 5px 1px 3px 0px;
    border: 1px solid #ddd;
	-webkit-appearance: none;
}
 
input[type=text]:focus, textarea:focus {
    padding: 3px 0px 3px 3px;
    margin: 5px 1px 3px 0px;
    border: 1px solid rgba(81, 203, 238, 1);
	-webkit-appearance: none;
}









.bigemaillinkcontainer {
position: relative;
display: block;
margin: 0 auto;
padding: 0;
width: 100%;
height: auto;
border: 0;
}


.bigemaillink {
position: relative;
display: block;
margin: 0 0 0 -7%;
padding: 0;
width: 93%;
height: auto;
border: 0;
}


.contactmessage {
max-width: 78%;
display: block;
overflow: hidden;
font-size: 1.2em;
font-family: 'Open Sans Condensed', sans-serif;
font-weight: 700;
line-height: 120%;
color: #777;
padding: 10px 0 15px 0;
border: 0;
}


.bigasterix {
float: left;
width:52px;
height:52px;
margin: 0 1.5% 0 0;
padding: 0 0 0 0;
border: 0;
}






/* contact form 7 */

.wpcf7-form p {
    color: #5f5f5f!important;
    font-family: 'Raleway', sans-serif;
font-weight: 700;
    font-size: 90%;
}

.wpcf7-form input {
    background-color: #bbc6e2!important;
background-color: rgba(151, 168, 213, 0.8)!important;
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.30)!important;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.30)!important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.30)!important;
    -moz-border-radius: 3px!important;
    -khtml-border-radius: 3px!important;
    -webkit-border-radius: 3px!important;
    border-radius: 3px!important;
    border: 0!important;
width: 78%!important;
padding: 6px 1% 6px 1%!important;
font-family: 'Raleway', sans-serif;
font-weight: 600;
-webkit-appearance: none;
-moz-appearance: none;
color: #ffffff!important;
}



.wpcf7-form textarea {
    background-color: #bbc6e2!important;
background-color: rgba(151, 168, 213, 0.8)!important;
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.30)!important;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.30)!important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.30)!important;
    -moz-border-radius: 3px!important;
    -khtml-border-radius: 3px!important;
    -webkit-border-radius: 3px!important;
    border-radius: 3px!important;
    border: 0!important;
width: 78%!important;
padding: 6px 1% 6px 1%!important;
font-family: 'Raleway', sans-serif;
font-weight: 600;
float: none;
margin: 0 auto;
-webkit-appearance: none;
-moz-appearance: none;
color: #ffffff!important;
}

.wpcf7-form-control.wpcf7-submit {
    background-color: #7fb593!important;
    color:#fff!important;
-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.50)!important;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.50)!important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.50)!important;
    -moz-border-radius: 3px!important;
    -khtml-border-radius: 3px!important;
    -webkit-border-radius: 3px!important;
    border-radius: 3px!important;
    border: 0!important;
padding: 5px 20px 5px 20px!important;
font-family: 'Raleway', sans-serif;
font-weight: 700;
font-size: 1.3em;
width: 150px!important;
-webkit-appearance: none;
-moz-appearance: none;
}

.wpcf7-form-control.wpcf7-submit:hover {
    background-color: #cb4a37!important;
    color: #fff!important;
}

.wpcf7-not-valid-tip {
background-color: #cb4a37!important;
color: #fff;
-moz-border-radius: 3px!important;
    -khtml-border-radius: 3px!important;
    -webkit-border-radius: 3px!important;
    border-radius: 3px!important;
-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.50)!important;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.50)!important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.50)!important;
    border: 0!important;
	max-width: 208px;
padding: 6px!important;
-webkit-appearance: none;
-moz-appearance: none;
}


.wpcf7-form .wpcf7-validation-errors {
background-color: #cb4a37!important;
color: #fff;
-moz-border-radius: 3px!important;
    -khtml-border-radius: 3px!important;
    -webkit-border-radius: 3px!important;
    border-radius: 3px!important;
-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.50)!important;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.50)!important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.50)!important;
    border: 0!important;
padding: 6px 2% 6px 2%;
width: 96%;
float: left;
position: relative;
font-family: 'Raleway', sans-serif;
font-weight: 600;
margin: 0 0 20px 0!important;
line-height: 115%;
-webkit-appearance: none;
-moz-appearance: none;
}

span.wpcf7-not-valid-tip {
color:#fff!important;
}

.fluid-width-video-wrapper  {

 padding-top: 0!important;

}





@media only screen and (max-width : 768px) {


nav#main-nav  {
		display: none!important;
	}
	
.mobmenu .headertext {
    display: none;
}
	
}



