
Theme Name: Wesson
Theme URI: http://www.thewebsite.com
Author: Randy Jensen & Randy Hoyt
Author URI: http://www.handcraftedwp.com
Description: HTML5 starter theme based off Ian Stewart's HTML5 Toolbox Theme with other goodies added plus chunks of Paul Irish's HTML5 Boilerplate mixed in for good measure. Shake well. 
Version: 0.9.1
*/

/* html5doctor.com Reset Stylesheet \\v1.6.1 \\ Last Updated: 2010-09-17 \\ http://richclarkdesign.com \\ @rich_clark */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display:block; }
nav ul { list-style:none; }
blockquote, q { quotes:none; }
blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }
a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }
ins { background-color:#ff9; color:#000; text-decoration:none; }
mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }
del { text-decoration: line-through; }
abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }
/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }
hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }
input, select { vertical-align:middle; }

/*
 *
 * Base Typography 
 *
 */
body { font:13px/1.231 sans-serif; *font-size:small; -webkit-font-smoothing: antialiased; }
select, input, textarea, button { font:99% sans-serif; }
pre, code, kbd, samp { font-family: monospace, sans-serif; }

/*
 *
 * Base Styles 
 *
 */
body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}
/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }
/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }
a, a:active, a:visited { color:#7f726b; text-decoration:underline; }
a:hover { color:#7f726b; text-decoration:none; }
ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }
/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 
small { font-size: 85%; }
strong, th { font-weight: bold; }
td, td img { vertical-align: top; } 
sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }
pre { 
  padding: 15px; 
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */
/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }
/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }
/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }
/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #7e7e7e; color:#fff; text-shadow: none; }
::selection { background:#7e7e7e; color:#fff; text-shadow: none; } 
/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #7e7e7e; } 
/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {width: auto; overflow: visible;}
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {-ms-interpolation-mode: bicubic;}

/*
 *
 * Nonsemantic Base Styles 
 *
 */
/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }
/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 
/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }
/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }
/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }

/*
 *
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 *
 */
@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
}
@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
}
/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/*
 *
 * Base Print Styles, inline to save the HTTP request
 *
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

/*
 *
 * Structure
 *
 */
 html, body { padding:0; margin:0; text-rendering: geometricPrecision; }
#page {
	display: block;
	width:100%;
	min-width:980px;
	overflow:hidden;
}
#main { width:100%; }
#primary {
	width: 980px; margin:0 auto; margin-bottom:100px;
}
#content {
}
#main .widget-area {
	float: right;
	overflow: hidden;
	width: 220px;
}
#colophon {
	clear: both;
	display: block;
	width: 100%;
}

/* Increase the size of the content area for templates without sidebars */
.full-width #content,
.image-attachment #content,
.error404 #content {
	margin: 0;
}

/* Alignment */
.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/*
 *
 * Header
 *
 */
.header-wrap { width:100%; height:112px; position:absolute; top:50px; background:url(images/header-bg.png) repeat-x; -webkit-box-shadow: 0 16px 5px 0 rgba(0,0,0,.2); box-shadow: 0 10px 10px 0 rgba(0,0,0,.3); z-index:500; }
#branding { height:128px; width:980px; margin:0 auto; z-index:500; }
	#branding .logo { float:left; padding:20px 0 0 5px; }
		#branding .logo img {/* width:155px; height:auto; */ }
#featured { position:relative; height:400px; overflow:hidden; width:100%; margin-bottom:60px; }
#featured.home { height:auto; width:100%; overflow:hidden; }
	#featured.home .featured-inner img.featured-image { min-height:473px; min-width:620px; height:auto; width:100%; }
	.featured-inner > img { width:100%; min-width:1400px;  height:auto; min-height:400px; }
	.slider-content { position:absolute; top:59%; margin-top:-107px; left:-505px; width:410px; height:230px; padding:10px 0 0 35px; background:url(images/slider-content-bg.png) repeat; }
	.slider-content h1 { font:100 46px/42px 'PFDinTextPro', sans-serif; color:#fff; text-transform:uppercase; }
		.slider-content h1 a { font:100 55px/51px 'PFDinTextPro', sans-serif; color:#fff; text-transform:uppercase; text-decoration:none; }
		.slider-content h1 a:hover { text-decoration:none; }
	.slider-content img { display:inline !important; }
	li.slide { position:relative; overflow:hidden; }
/* bxslider */
ul.slides { margin:0; padding:0; line-height:0; }
.slider-nav { left:auto !important; bottom:20px !important; margin-left:0 !important; right:30px; }
#featured .slider-nav__item { width:46px; height:4px; background:#828282; }
#featured .slider-nav__item.slider-nav__item--current { background:#7a695e; }

/*
 *
 * Menu
 *
 */
#access {
	display: block;
	float: right;
	margin-top:75px;
}
#access ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
#access li {
	display:inline-block;
	position:relative;
	padding:0 0 20px;
}
#access li li { display:block; padding:0; width: 100%; border-bottom:1px solid #bcbcbc; }
#access li li:last-of-type { border-bottom:0; }

#access a {
	
	text-decoration: none;
	color:#d6d6d6;
	font:normal 14px/14px 'ProximaNovaRg', Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-transform:uppercase;
	padding:0 8px;
}
#access ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99999;
	width:250px;
	padding:0;
	margin:0;
}
#access ul ul ul {
	left: 100%;
	top: 0;
}
#access ul ul a {
	text-transform:uppercase;
	color: #515050;
	line-height: 12px;
	font-size:12px;
	padding:11px 15px;
	height: auto;
	display:block;
	background: rgba(255,255,255,.85);
}
#access ul ul a:hover { background: rgba(255,255,255,.85); color:#252525; }

#access li:hover > a
#access li.current_page_item a {
 color:#fff;
}

#access li:hover > ul{
    display:block;
    -moz-animation: fadeInDown .3s ease-in ;
    -webkit-animation: fadeInDown .3s ease-in ;
    animation:fadeInDown .3s ease-in ;
}
 
#magic-line { position: absolute !important; bottom: -22px; left: 0; width: 100px; height: 4px; }
	#magic-line div { background:#fff; width:62px; margin:0 auto; height:4px; }

/*
 *
 * Content
 *
 */
#content nav {
	display: block;
	overflow: hidden;
}
#content nav .nav-previous {
	float: left;
	width: 50%;
}
#content nav .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
#content #nav-above {
	display: none;
}
.paged #content #nav-above,
.single #content #nav-above {
	display: block;
}
#nav-below {
	margin: 1em 0 0;
}
.page-link {
	margin: 0 0 1em;
}
/* Page Content */
#content .entry-content { font:normal 16px/26px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#515050; }
#content .entry-content h3 { font:200 18px/26px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#515050; text-transform:uppercase; margin-top:40px;}
#content .entry-content p  { font:normal 16px/26px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#515050; margin-bottom:20px; }
#content ul { list-style:none; margin-left:20px; padding:0; }
	#content li { font:normal 16px/26px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#515050; padding-left:20px; background:url(images/bullet-img.png) no-repeat 0 8px; margin:0 0 10px; }
a.read-more { font:700 12px/12px 'PFDinTextPro', sans-serif; color:#7f726b; text-transform:uppercase; display:block; }
.content-area-1, .content-area-2 { padding:85px 0 110px; width:100%; font:200 17px/30px 'Helvetica Neue', 'HelveticaNeue', sans-serif; text-transform:uppercase; color:#fff; }
.content-area-1 { background:#7f726b; }
.content-area-2 { /* background:#999999; */ background:#999; }
	.content-area-1 h2, .content-area-2 h2 { font:100 50px/50px 'PFDinTextPro', sans-serif; color:#fff; padding-bottom:5px; border-bottom:1px solid #fff; text-transform:uppercase; margin-bottom:40px; }
	.content-area-1 .inner, .content-area-2 .inner { width:980px; margin:0 auto; }
	.content-area-1 h3 { font:200 20px/26px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#fff; text-transform:uppercase; margin-bottom:15px; }
	.content-area-1 h3 strong { font:normal 20px/26px 'HelveticaNeueMedium', sans-serif; }
	.about .left { float:left; width:340px; margin-right:60px; }
	.about .right { float:left; width:580px; font:200 17px/26px 'Helvetica Neue', 'HelveticaNeue', sans-serif; text-transform:none; }
	.about .right p { margin-bottom:10px; }
.entry-content h1 { font:100 50px/50px 'PFDinTextPro', sans-serif; color:#515050; padding-bottom:5px; border-bottom:1px solid #515050; text-transform:uppercase; margin-bottom:40px; margin-top:0; }

ul.client-list { list-style:none; margin-left:0; padding:0; float:left; width:50%; }
	ul.client-list li { margin-bottom:5px; }

/* Home Page */
.home-content { margin-bottom:100px; }
.home-content .one-third { width:282px; padding-top:20px; margin-right:67px; border-top:6px solid #7f726b; float:left; }
.home-content .one-third.last { margin-right:0; }
	.home-content h2 { font:200 38px/35px 'PFDinTextPro', sans-serif; color:#7f726b; text-transform:uppercase; margin-bottom:30px; padding-right:5px; }
	.home-content p { font:normal 17px/26px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#515050; margin-bottom:15px; padding-right:5px; }
	.home-content .one-third.last p { margin-bottom:10px; padding-right:0; }
	.home-content span { display:block; font:normal 13px/16px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#515050; text-transform:uppercase; margin-bottom:15px; }
	.home-content span strong { font:normal 13px/16px 'HelveticaNeueMedium', sans-serif; }
	.home-content a { font:700 12px/12px 'PFDinTextPro', sans-serif; color:#7f726b; text-transform:uppercase; display:block; }

/* Contact Form */

.contact-columns { margin-top:60px; }
	.contact-columns .col { width:295px; float:left; }
	.contact-columns .col.first { margin-right:45px; }
		.contact-columns .col.first a { padding-top:15px; }
	.contact-columns .col.last { width:345px; }
	.contact-columns .col.last a { color:#7f726b; text-decoration:underline; text-transform: lowercase; }
		.contact-columns .col, .contact-columns .col p { font:100 30px/33px 'PFDinTextPro', sans-serif; color:#515050; text-transform:uppercase; }
		.contact-columns .icon { float:left; padding-right:10px; }
		.contact-columns .text { float:left; }
}

.wpcf7 .left { float:left; width:424px; margin-right:130px; }
	.wpcf7 .left input { text-transform:uppercase; width:50%; padding:10px 0; background:transparent; color:#fff; border:0; border-bottom:2px solid #cccccc; margin-bottom:25px; font:200 17px/17px 'Helvetica Neue', 'HelveticaNeue', sans-serif; }	
.wpcf7 .right { float:left; width:425px; font:200 17px/30px 'Helvetica Neue','HelveticaNeue', sans-serif; color:#fff; }
	.wpcf7 .right textarea { width:415px; height:230px; padding:5px; margin-bottom:25px; border:0; }
	.wpcf7 .right input[type="submit"] { font:200 20px/20px 'Helvetica Neue','HelveticaNeue', sans-serif; float:left; color:#fff; background:#515050; border:0; padding:14px 30px; text-transform:uppercase; text-shadow:none; }
	.wpcf7 .right input[type="submit"]:hover { background:#333232; }
	.wpcf7 .wpcf7-response-output { border:0; }
	.wpcf7 .wpcf7-mail-sent-ok { margin:0; padding:0; font-size:32px; }
	
	::-webkit-input-placeholder { color: #fff; opacity:1; }
	:-moz-placeholder { /* Firefox 18- */ color: #fff; opacity:1; }
	::-moz-placeholder {  /* Firefox 19+ */ color: #fff; opacity:1; }
	:-ms-input-placeholder { color: #fff; opacity:1; }

/* Testimonials Section */
.testimonials-wrapper { background:#999999; }
.testimonials-wrapper .testimonials { width:980px; margin:0 auto; padding:85px 0 110px; }
	.testimonials h2 { font:100 50px/50px 'PFDinTextPro', sans-serif; color:#fff; padding-bottom:5px; border-bottom:1px solid #fff; text-transform:uppercase; margin-bottom:40px; }
	.testimonials .box { float:left; width:267px; padding:30px 22px 0; height:380px; margin-right:23px; background:#6e6e6e; margin-bottom:20px; font:normal 16px/24px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#fff; }
	.testimonials .box.last { margin-right:0; }
	#content .testimonials p { font:200 16px/24px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#fff; margin-bottom:10px; }
	.testimonials .client-name { display:block; font:700 14px/20px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#fff; text-transform:uppercase; }
	.testimonials .client-title { display:block; font:200 14px/20px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#fff; text-transform:uppercase; }

/* Process Slider */
#process { width:100%; margin:0 auto 100px auto; }
	#process ul { list-style:none; margin-left:40px; padding:35px 40px 0 0; }
		#process li { font:normal 16px/22px 'Helvetica Neue', 'HelveticaNeue', sans-serif; color:#515050; padding-left:20px; background:url(images/bullet-img.png) no-repeat 0 8px; margin:0 0 10px; }
	#process hgroup { width:980px; margin:0 auto; }
		#process h2, .entry-content #bioContainer h2 { font:100 50px/50px 'PFDinTextPro', sans-serif; color:#7f726b; padding-bottom:5px; border-bottom:1px solid #7f726b; text-transform:uppercase; margin-bottom:40px; }
		.entry-content #bioContainer h2.second {margin-top: 100px; }
	.process-slider { height:530px; width:100%; }
	.process-slider .box { height:530px; margin-right:22px; margin-left:21px; background:#f2f2f2; opacity:0.5; }
	.process-slider .film_roll_child { vertical-align:top; }
	.process-slider .heading { background:#6d6d6d; height:147px; position:relative; }
		.process-slider .arrow { position:absolute; width:19px; height:8px; bottom:-8px; left:73px; background:url(images/process-arrow-active.png) no-repeat; }
		.process-slider .inner { position:absolute; bottom:45px; left:47px; vertical-align:bottom; }
		.process-slider span.title { float:left; font:100 30px/30px 'PFDinTextPro', sans-serif; color:#fff; text-transform:uppercase; }
		.process-slider span.number { float:left; font:100 70px/60px 'PFDinTextPro', sans-serif; color:#fff; padding-right:20px; }
		.process-slider .one-line span.title { padding-top:28px; }
		.process-slider .one-line span.number { padding-right:10px; }
	.process-slider .active.box { opacity:1; }
	#process .film_roll_next { height:71px; width:26px; margin-top:-35px; border:0; overflow:hidden; text-indent:-9999px; background:url(images/process-next.png) no-repeat; opacity:1; right:30px; top:50%; }
	#process .film_roll_prev { height:71px; width:26px; margin-top:-35px; border:0; overflow:hidden; text-indent:-9999px; background:url(images/process-prev.png) no-repeat; opacity:1; left:30px; top:50%; }

	
/* About Grid */
.wrapper-grey { background:#999999; }
.wrapper-grey h2 { border-bottom:1px solid #fff; color:#fff; }
.container { width:981px; margin:0 auto; padding:85px 0 110px; }
.page-id-502 #bioContainer {padding-top: 0; width: 100%; }
.container h2 { font:100 50px/50px 'PFDinTextPro', sans-serif; padding-bottom:5px; text-transform:uppercase; margin-bottom:40px; }
.page-id-502 #bioContainer h2 {margin-top: 0; }
	.col-3 { width:317px; float:left; margin-right:15px; margin-bottom:16px; position:relative; }
	.entry-content #bioContainer .col-3 { width: 348px; }
		.entry-content #bioContainer .col-3 img { width: 348px; height: auto !important;}
	#bioContainer .col-3 { background-color:#676565; }
	#bioContainer .col-3.last { margin-right:0; }
	.col-3:last-of-type { margin-right:0; }
		#bioContainer .col-3 a { display:block; position:relative; text-decoration:none; line-height:0; }
		#bioContainer .col-3 a:hover { background-color:#515050; }
		#bioContainer .col-3 a.active { background-color:#515050; }
		#bioContainer .col-3.thumbnail a { background-color:rgba(81,80,80,0.8); }
		#bioContainer .col-3 img { z-index:0; }
		#bioContainer .col-3.thumbnail a:hover {  }
		#bioContainer .col-3.thumbnail a:hover .bioContentWrap, #bioContainer .col-3.thumbnail a.active .bioContentWrap { opacity:0; -moz-animation: fadeOutDown .3s ease-in-out; -webkit-animation: fadeOutDown .3s ease-in-out; animation:fadeOutDown .3s ease-in-out; }
		.col-3.thumbnail a img { opacity:0.3; -moz-animation: all .3s ease-in-out; -webkit-animation: all .3s ease-in-out; animation:all .3s ease-in-out; }
		.col-3.thumbnail a:hover img , .col-3.thumbnail a.active img { opacity:1; }
		#bioContainer .col-3:hover a:after, .col-3 a.active:after { position:absolute; display:block; width:100%; height:7px; background:#fff; content:""; bottom:0; left:0; }
		.entry-content #bioContainer .col-3:hover a:after, .entry-content .col-3 a.active:after {  background:#999999 ; }
			.col-3 h3 { font:100 40px/36px 'PFDinTextPro', sans-serif; color:#fff; text-transform:uppercase; margin-bottom:16px; }
			.col-3 span.title, .col-3 span.sub-title { font:100 18px/20px 'PFDinTextPro', sans-serif; color:#fff; display: block;  }
			.col-3 span.title { text-transform:uppercase; }
		#bioContainer .col-3 .bioContentWrap { position:absolute; padding:234px 26px 0; top:0; left:0; }
		.col-3 span.icon { display:block; position:absolute; bottom:25px; right:22px; width:15px; height:13px; background:transparent url(images/bio-off.png) no-repeat; }
		.col-3 a.active span.icon { background:transparent url(images/bio-on.png) no-repeat; }
		
		.bioContentWrap span.sep { display:none; }
		.bioContentWrap span.cpc { display:block; }
		.bioContent, .bioContentWrap span.close { display:none; }
		.bioWrapper { width:100%;  clear:left; margin-bottom:16px; background:#515050; position:relative; -moz-animation: fadeInDown .3s ease-in ; -webkit-animation: fadeInDown .3s ease-in ; animation:fadeInDown .3s ease-in ;  }
		.bioWrapper .bioContentWrap { padding:60px 45px; }
			#bioContainer .bioWrapper .bioContent { display:block; color:#fff !; }
			#bioContainer .bioWrapper .bioContentWrap span.close { cursor:pointer; display:block; position:absolute; top:22px; right:22px; }
			#bioContainer .bioWrapper .bioContentWrap span.sep, #bioContainer .bioWrapper .bioContentWrap span.cpc, #bioContainer .bioWrapper h3  { display:inline; color:#fff; text-transform:uppercase; font:600 20px/36px 'PFDinTextPro', sans-serif; }
			.entry-content #bioContainer .bioWrapper .bioContentWrap span.sep, .entry-content #bioContainer .bioWrapper .bioContentWrap span.cpc, .entry-content #bioContainer .bioWrapper h3  { display: inline-block; margin:0; line-height: 1em; padding:0; clear: both;  }
			#bioContainer .bioWrapper span.title, #bioContainer .bioWrapper span.sub-title { font:100 20px/24px 'PFDinTextPro', sans-serif; color:#fff; text-transform:uppercase; font-style:normal !important;}
			#bioContainer .bioWrapper span.title { display: block; }
			#bioContainer .bioWrapper span.sub-title em { font-style:inherit; }
			#bioContainer .bioWrapper p { font:normal 18px/26px 'PFDinTextPro', sans-serif; margin-bottom:15px; color: #fff; }
			#bioContainer .bioWrapper span.close { font:100 20px/20x 'PFDinTextPro', sans-serif; color:#fff; text-transform:uppercase; }
		
		.attorney-bio .thumbnail { width:32%; float:left; }
			.attorney-bio .thumbnail img { max-width:100%; height:auto; }
		.attorney-bio .attorney-content { float:right; width:63%; }
			.attorney-bio h3 { margin-top:0; }
			.attorney-bio h3 span.title { display:inline-block; font:100 20px/24px 'PFDinTextPro', sans-serif; }
				.attorney-bio p { font:normal 18px/26px 'PFDinTextPro', sans-serif; margin-bottom:15px; color: #fff; text-transform:none; }
	
#locationsContainer .col-3 { margin-bottom:85px; }	
	#locationsContainer .contentWrap { border-top:6px solid #fff; width:280px; }
		#locationsContainer h3 { margin-top:15px; margin-bottom:30px; }
		#locationsContainer p { font:200 22px/27px 'PFDinTextPro', sans-serif; margin-bottom:15px; color:#fff; text-transform:uppercase; }
			#locationsContainer strong { font-weight:600; }

.client-list { padding-top:35px; }			
.client-list .logo { display:inline-block; margin-right:45px; }
.client-list .logo:last-of-type { margin-right:0; }

#content.left-content { float:left; width:714px;  }
#sidebar { float:left; width:180px; margin-right:86px; }
	#sidebar ul { list-style:none; padding:20px 0 0; margin:5px 0 40px 0; border-top:6px solid #6e6c6c; }
		#sidebar li { margin-bottom:18px; }
			#sidebar li a { font:200 11px/14px 'ProximaNovaARegular', sans-serif; text-transform:uppercase; color:#515050; text-decoration:none; }
			#sidebar li.current_page_item a, #sidebar li a:hover { color:#252525; }

/*
 *
 * Images
 *
 */
/*
Resize images to fit the main content area.
- Applies only to images uploaded via WordPress by targeting size-* classes.
- Other images will be left alone. Use "size-auto" class to apply to other images.
*/
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-area img {
	max-width: 100%; /* When images are too wide for containing element, force them to fit. */
	height: auto; /* Override height to match resized width for correct aspect ratio. */
}
img.alignleft {
	margin-right: 1em;
}
img.alignright {
	margin-left: 1em;
}
.wp-caption {
	padding: .5em;
	text-align: center;
}
.wp-caption img {
	margin: .25em;
}
.wp-caption .wp-caption-text {
	margin: .5em;
}

/* Forms - Class for labelling required form items */
.required {
	color: #cc0033;
}


/*
 *
 * Comments
 *
 */
article.comment {
	display: block;
}
#respond input[type=text] {
	float: left;
	margin: 0 1em 0 0;
	width: 60%;
}
#respond .comment-form-comment label {
	display: none;
}
#respond textarea {
	margin: 0 1em 1em 0;
	float: left;
	width: 80%;
}
#respond .form-allowed-tags {
	clear: both;
	width: 80%;
}
#respond .form-allowed-tags code {
	display: block;
}


/*
 *
 * Footer
 *
 */
.footer-wrap { width:100%; padding:55px 0; background:#515050; }
#colophon {
	width:980px;
	margin:0 auto;
}

	#colophon .logo { float:left; padding-top:30px; }
	.footer-nav { float:left; margin-left:65px; }
		.footer-nav ul { list-style:none; margin:0; padding:0; }
			.footer-nav li { padding:0 0 10px; }
				.footer-nav li a { font:normal 12px/12px 'ProximaNovaARegular', sans-serif; color:#fff; text-transform:uppercase; letter-spacing:0.02em; text-decoration:none; }
				.footer-nav li a:hover { color:#ccc; }
	#colophon .footer-right { float:right; text-align:right; padding-top:20px; color:#fff; font:normal 12px/18px 'ProximaNovaARegular', sans-serif; }
		#colophon .footer-right a { color:#fff; text-decoration:none; }
		#colophon .footer-right a:hover { color:#ccc; }
		ul.social { list-style:none; margin:0 0 25px; padding:0; }
			ul.social li { display:inline; padding-left:10px; }
				ul.social li a:hover { opacity:0.8; }
		span.copyright span { padding:0 2px; }
		
@media (max-width:1440px) {
	.slider-content { position:absolute; top:195px; margin-top:-107px; margin-top:0 !important; }	
}
		
@media (max-width: 1280px) {
	.slider-content {  }
}

@media (max-width: 960px) {
	.slider-content {  }
}