/*
Theme Name: Driven Theme
Theme URI: http://cascading.io/wp-content/themes/driven
Author: Pierre-Yves Poli
Description: Based off of the Wordpress 2012 theme, this is the theme for the Driven Website.
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;vertical-align: baseline;}
body {line-height: 1;}
ol,ul {list-style: none;}
blockquote,q {quotes: none;}
blockquote:before,blockquote:after,q:before,q:after {content: '';content: none;}
table {border-collapse: collapse;border-spacing: 0;}
caption,th,td {font-weight: normal;text-align: left;}
h1,h2,h3,h4,h5,h6 {clear: both;}
html {overflow-y: scroll;font-size: 100%;-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;}
a:focus {outline: thin dotted;}
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section {display: block;}
audio,canvas,video {display: inline-block;}
audio:not([controls]) {display: none;}
del {color: #333;}
ins {background: #fff9c0;text-decoration: none;}
hr {background-color: #ccc;border: 0;height: 1px;margin:24px 0;}
sub,sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}
small {font-size: smaller;}
img {border: 0;-ms-interpolation-mode: bicubic;}




/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}

.menu-toggle:active,
.menu-toggle.toggled-on,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border-color: transparent;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {max-width: 100%; }
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {float: left;}
.alignright {float: right;}
.aligncenter {display: block;margin:0 auto;}
.wp-caption {max-width: 100%;padding: 4px;}

/* Navigation */
.site-content nav {clear: both;line-height: 2;overflow: hidden;}
#nav-above {padding: 24px 0;padding: 1.714285714rem 0;}
#nav-above {display: none;}
.paged #nav-above {display: block;}
.nav-previous,.previous-image {float: left;width: 50%;}
.nav-next,.next-image {float: right;text-align: right;width: 50%;}
.nav-single + .comments-area,#comment-nav-above {margin: 48px 0;margin: 3.428571429rem 0;}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: "proxima-nova",Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	color: #676767;
}
body.custom-font-enabled {
	font-family: "proxima-nova", Helvetica, Arial, sans-serif;
	font-size:16px;
	font-weight:300;
	line-height:160%;
}
a {
	text-decoration:none;
	color: #d8252e;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}

/* ********************* Global Styles ******************** */
hgroup{width:24%;display:inline-block;text-align:left!important;}
.grey-box {background-color:#2a2a2a; color:#fff;padding:40px 0;box-sizing:border-box;}
.center-div {max-width:1000px;margin:0 auto;}
div.light-grey{background-color:#eaeaea;}
button {border:none;border-radius:0px;}
button.large-btn{padding:20px 40px;font-size:18px;text-transform:uppercase;display:inline-block;letter-spacing:2px;}
button.try-driven{background-color: #d8252e;color:#fff;}
button.white-btn{background-color:#fff;color:#000;margin-left:15px;}
h1, h2, h3, h4 {font-weight:400;color:#d8252e;}
h3 {font-size:30px;line-height:32px;margin:0 0 7px;font-weight:300;color:#d8252e;}
div{box-sizing:border-box;}
hr.dark {background-color:#585858;}
hr.light {background-color:#e6e6e6;}
.one-third {width:33%;padding:20px 27px;display:inline-block;vertical-align:top;}
.one-half{width:49%;display:inline-block;vertical-align:top;}
.center-button {margin:50px auto;text-align:center;}
img {vertical-align:bottom;}
.no-padding{padding:0!important;}
.try-driven img {padding-bottom:3px;}
.white-btn img {padding-bottom:5px;}
#social img {padding:0 5px;}
.image-container {border:8px solid #fff;box-shadow:0px 0px 3px 3px #bdbdbd;display:inline-block;}
div.customers{text-align:center;padding:20px 40px;}
.image-frame {height:50px;white-space:nowrap;text-align:center;display:inline-block;width:19%;}
.center-text{text-align:center;}
.padded{margin:30px 0;}
.forty img {width:100%;}
p{margin-bottom:20px;}
.white-bg{padding:5px;background:#fff;border-radius:2px;}
header.head {margin-top:40px;}
header.entry-header{margin:40px auto 0 auto;max-width:1000px;}
header.entry-header h1{letter-spacing:2px; margin-bottom:40px;}
.type-post header.entry-header h1{margin-bottom:15px;}
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {	background-color: #fff;}
.widget-area {margin: 24px 0 0;margin: 1.714285714rem 0 0;}

/* Header */
.site-header {border-top:3px solid red;background-color:#000;color:#fff;box-shadow: 0px 3px 3px #888888;}
.site-header h1 a,.site-header h2 a {color:#fff;display: inline-block;text-decoration: none;}
.site-header h1 {padding-top:14px;margin-bottom: 14px;margin-bottom: 1rem;}
.site-header h2 {font-weight: normal;font-size: 12px;line-height: 1.846153846;color:#fff;}
.header-image {margin-top: 24px;margin-top: 1.714285714rem;}

/* Navigation Menu */
.main-navigation {text-align: right;width:75%;display:inline-block;vertical-align:top;}
.main-navigation li {font-size:12px;}
.main-navigation a {color:#fff;letter-spacing:1px;}
.main-navigation a:hover {color:#fff;}
.main-navigation ul.nav-menu,.main-navigation div.nav-menu > ul {display: none;}
.main-navigation ul.nav-menu.toggled-on,.menu-toggle {display: inline-block;}
.menu-header-secondary-container a {color:#cecece;}
button.try-driven.menu-button {display:inline-block;padding:7px 25px;text-transform:uppercase;}
.menu-header-main-container {display:inline-block;}
.menu-header-main-container a {font-size:16px;}
.main-menu-container {width:75%;text-align:right;display:inline-block;}

/* =Plugins
----------------------------------------------- */
img#wpstats {display: block;margin: 0 auto 24px;margin: 0 auto 1.714285714rem;}


/* =Media queries
-------------------------------------------------------------- */

/* Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
 */

.main-navigation ul.nav-menu,.main-navigation div.nav-menu > ul {display: inline-block !important;text-align: left;width: 100%;}
.main-navigation ul {margin: 0;text-indent: 0;}
.main-navigation li a,.main-navigation li {display: inline-block;text-decoration: none;}
.main-navigation li a {border-bottom: 0;line-height: 3.692307692;text-transform: uppercase;white-space: nowrap;}
.main-navigation li a:hover {color: #fff;}
.main-navigation li {margin: 0 40px 0 0;position: relative;}
.main-navigation li ul {display: none;margin: 0;padding: 0;position: absolute;top: 100%;z-index: 1;}
.main-navigation li ul ul {top: 0;left: 100%;}
.main-navigation ul li:hover > ul {border-left: 0;display: block;}
.main-navigation li ul li a {background: #efefef;border-bottom: 1px solid #ededed;display: block;font-size: 11px;font-size: 0.785714286rem;line-height: 2.181818182;padding: 8px 10px;padding: 0.571428571rem 0.714285714rem;	width: 180px;width: 12.85714286rem;white-space: normal;}
.main-navigation li ul li a:hover {background: #e3e3e3;color: #444;}
.menu-header-secondary-container li {margin: 0 0 0 10px;}
.menu-toggle {display: none;}
.entry-header .entry-title {font-size: 22px;font-size: 1.571428571rem;}
#respond form input[type="text"] {width: 46.333333333%;}
#respond form textarea.blog-textarea {width: 79.666666667%;}
.template-front-page .site-content,.template-front-page article {overflow: hidden;}
.template-front-page.has-post-thumbnail article {float: left;width: 47.916666667%;}
.entry-page-image {float: right;margin-bottom: 0;width: 47.916666667%;}
.template-front-page .widget-area .widget,.template-front-page.two-sidebars .widget-area .front-widgets {float: left;width: 51.875%;margin-bottom: 24px;margin-bottom: 1.714285714rem;}
.template-front-page .widget-area .widget:nth-child(odd) {clear: right;}
.template-front-page .widget-area .widget:nth-child(even),.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {float: right;width: 39.0625%;margin: 0 0 24px;margin: 0 0 1.714285714rem;}
.template-front-page.two-sidebars .widget,.template-front-page.two-sidebars .widget:nth-child(even) {float: none;width: auto;}
.commentlist .children {margin-left: 48px;margin-left: 3.428571429rem;}
body {background-color: #e6e6e6;}
body.custom-background-empty {background-color: #fff;}
body.custom-background-empty .site,body.custom-background-white .site {padding: 0;margin-top: 0;margin-bottom: 0;box-shadow: none;}

/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.singular .site-content,
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular .comments-title {
		margin: 0;
		width: 100%;
	}
	.entry-header .entry-title,
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}

/* ********************* Home Page ******************* */
@media screen and (min-width: 1000px) {
.home-banner {background:url("/wp-content/uploads/2015/02/driven-banner-1024x332.png") no-repeat;height:487px;background-size:100% 100%;}
}

.grey-box .banner-text div {font-size:40px;font-weight:400;color:#fff;margin:0;text-transform:none;line-height:120%;letter-spacing:0px;}
.grey-box .banner-text h1 {font-size:40px;color:#d8252e;font-weight:400;margin:30px 0;letter-spacing:0px;}
.grey-box .image-container{box-shadow:none;}
.banner-text {width:60%;margin:110px 0 0 42%;}
.center-image-helper {display:inline-block;height:100%;vertical-align:middle;}
img.customer{vertical-align:middle;max-height:50px; max-width:150px;}
.just-in-text h3, .just-in-text h4 {text-transform:uppercase;}
.grey-box h3 {color:#9d9d9d;font-size:18px;text-transform:uppercase;}
h4 {color:#d8252e; font-size:20px;margin-bottom:10px;font-weight:300;text-transform:uppercase;letter-spacing:2px;}
#just-in .image-container {width:35%;vertical-align:top;}
#just-in div {display:inline-block;}
#just-in {margin-bottom:40px;display:none;}
.just-in-text {width:64%;padding-left:30px;}
.grey-box p {font-weight:200;color:#fff;font-size:15px;}
.grey-box h1 {font-size:24px;padding:0 0 14px;text-transform:uppercase;letter-spacing:2px;font-weight:300;}
.grey-box h1 strong {color:#d8252e;font-weight:300;}
.get-driven-to{text-align:center;}
.get-driven-to p{font-size:18px;padding:0;color:#fff;}
.get-driven-to h3{font-size:23px;padding:0;color:#fff;letter-spacing:2px;margin:0;padding-top:10px;}
.get-driven-to h4{letter-spacing:1px;}
.functionality {padding:50px 10px 0 20px;border-bottom:1px solid #cecece;position:relative;}
.functionality div {display:inline-block;vertical-align:top;}
.functionality .text {width:74%;padding-bottom:50px;}
.testimony {width:25%;text-align:right;}
.testimony .author {margin-top:25px;line-height:100%;font-weight:bold;margin:0;}
.testimony .role {font-weight:200;font-size:14px;margin-bottom:10px;color:#cecece;} 
.functionality .text h1 {font-size:22px;font-weight:200;padding-bottom:20px;letter-spacing:2px;color:#676767;}
.functionality .text h1 strong {font-weight:400;color:#d8252e;text-transform:uppercase;}
.functionality .text h2 {font-size:18px;margin:0 0 10px 0;letter-spacing:2px;text-transform:uppercase;color:#676767;}
.video {padding-top:30px;display:none!important;}
.video a {color:#d8252e;text-decoration:none;}
.play-button{margin-right:5px;}
.forty{width:40%;padding-right:30px;display:inline-block;vertical-align:top;}
.forty.image-container{padding:0;}
.sixty{width:59%;display:inline-block;vertical-align:top;}
.sixty.left{padding-left:40px;}
#stories h1 {color:#fff;text-align:center;}
#stories h4 {padding:20px 0 0;}
#stories h3 {font-weight:400;letter-spacing:1px;}
.video-text {line-height:120%;font-size:13px;}
.video-text a {font-size:14px;}
.giver img {margin-right:45px;}
.testimonial{padding:30px 30px;background-color:#2a2a2a;color:#fff;font-weight:200;position:relative;text-align:left;margin-bottom:50px;}
.testimonial:before{bottom: 100%;left:68%;border: solid transparent;content:"";height: 0;width: 0;position: absolute;pointer-events: none;border-bottom-color: #2a2a2a;border-width: 15px;}
.testimonial img {margin-bottom:20px;}
.text-giver {margin-bottom:25px;}
.text-giver img {margin:0;}
.bot-pad {padding-bottom:25px;}
.thirty {width:30%;}
.seventy {width:69%;}
.read-more {color:#fff;}
.read-more, .functionality h2.top{padding-left:18px;background:url("/wp-content/uploads/2015/02/red-arrow.png") no-repeat;background-position-y:center;margin:0;}
div.connection {margin:60px auto;}
.connection-btn {text-align:center;}
.connection h2{color:#676767;text-transform:uppercase;font-size:18px;padding-left:20px;background:url("/wp-content/uploads/2015/02/grey-arrow.png") no-repeat;background-position-y:center;margin-bottom:10px;}
.connection form input{width:100%;background-color:#f8f8f8;color:#9a9a9a;border:2px #d1d1d1 solid;font-size:14px;padding:8px 15px;margin:20px 0 80px 0;box-sizing:border-box;}
.connection-buttons{text-align:center;}
button.small-btn {width:125px;height:40px;border:2px solid #9a9a9a;font-size:13px;color:#696969;background-color:#fff;text-transform:uppercase;}
.get-driven{text-align:center;margin-top:60px;}
.get-driven h1, .customers h1{font-size:22px;text-transform:uppercase;letter-spacing:2px;color:#000;margin-bottom:20px;}
.get-driven h1 strong {color:#d8252e;font-weight:400;}
#colophon{font-size:13px;letter-spacing:1px;color:#9d9d9d;line-height:130%;border-bottom:3px solid #d8252e;padding:20px 0;}
#colophon div div{display:inline-block;height:60px;vertical-align:top;}
#copyright{width:33%;padding:23px 0 0 30px;}
#social {width:40%;text-align:right;padding:23px 15px 0 30px;}
#address {width:26%;padding:15px 30px 0; border-left:1px solid #9d9d9d;}
.popup{background-color:#2a2a2a;border:1px solid #fff; position:absolute; color:#fff; padding:6px 10px;box-shadow:0px 0px 1px 2px #cecece;font-size:13px;text-align:center;line-height:120%;letter-spacing:1px;display:none;opacity:0.8;}
.popup:after, .popup:before {top: 100%;right:50%;border:solid transparent;content:"";height:0;width:0;position:absolute;pointer-events:none;font-size:13px;}
.popup:after {border-top-color: #2a2a2a;border-width: 7px;margin-right:-7px;}
.popup:before{border-top-color: #fff;border-width: 9px;margin-right: -9px;}
#post-1352 header.entry-header{display:none;}
.seventy .one-third {padding:0;width:32%;text-align:center;}

/* ********************* Customers Page ******************* */
.customers-image {width:35%; margin-left:5%;}

/* ****************** Responsive Design ******************* */
@media screen and (max-width: 1000px) {
div.testimony {display:none;}
.functionality .text {width:100%;} 
.popup {visibility:hidden;}
.center-div {width:100%;}
hgroup{width:100%;}
.main-navigation{width:100%;text-align:center;}
.menu-header-main-container li {width:100%;margin:0;}
.main-navigation li a{line-height:2;}
.try-driven.menu-button{margin-bottom:10px;}
.grey-box{padding:20px 0;}
div.customers{display:none;}
.banner-text{width:100%;margin:0;text-align:center;}
.white-btn{display:none!important;}
#just-in .image-container{display:none;}
.just-in-text {width:100%;padding:0;}
.one-third{width:32%;padding:0;}
.forty{width:100%;padding:0;}
.sixty{width:100%;}
.thirty{width:100%;}
.seventy{width:100%;}
.functionality h2.top{padding:0;background:none;}
.one-third{width:100%;padding:0 10px;}
#stories .image-container {display:none;}
#stories hr {margin:12px 0;}
#colophon div div{width:100%;padding:0 10px;height:30px;}
#address {border:none;}
#social {text-align:left;}
.main-menu-container{width:100%;}
.connection form input{margin:20px 0 20px 0;}
.connection-btn {text-align:left;margin-bottom:20px;}
}

/* ************************** Driven Access ***************** */
.access-driven{vertical-align:top;display:inline-block;width:45%;}
.access-driven.right{padding-left:5%;}
.access-other {background-color:#909090;color:#fff;padding:10px 10px;line-height:120%;width:90%;font-size:15px;}
.access-other a {color:#fff;font-weight:bold;}

/* ********************** Blog Page ************************* */
#blog-post div {display:inline-block;vertical-align:top;}
#blog-post #primary {width:74%;padding-right:25px;}
#blog-post #secondary {width:25%;}

/* ********************* Services Page ********************** */
#content-left{width:67%;display:inline-block;vertical-align:top;}
#sidebar{width:32%;padding-left:5%;display:inline-block;vertical-align:top;box-sizing:border-box;}
#content-left h1.entry-header {display:none;}
.support .info, .support .img-frame {display:inline-block;vertical-align:top;}
.support .info {width:89%;}
.support .img-frame {width:10%;}
.services h1 {font-size:30px;}
.services header.head {margin:40px 0 36px;}
.services header.head p {margin:0;}
.services h3 {font-size:22px; margin:20px 0;font-weight:400;color:#676767;}
#sidebar {margin-top:40px;}
#sidebar {line-height:120%;}
#sidebar .menu ul li.current_page_item a {font-weight:bold;}
#sidebar h4 {color:#676767;}
.training.widget {text-align:center;font-size:14px; margin: 40px 0 24px;font-weight:400;}
.training-button {background-image: url(https://www.eventbrite.com/custombutton?eid=13465623041);background-repeat: no-repeat;background-position:center;height:36px;margin-top:10px;}
.sold-out {text-transform:uppercase;font-size:20px;color:#d8252e;}
table.support {	margin: 0.5em 0 1em; border: 1px solid #848484; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; box-shadow: 0 2px 2px #CCCCCC; border-spacing: 0; line-height:none;}
table.support th {background: none repeat scroll 0 0 #ECEBE6; border: 1px solid #848484; font-weight: 400; padding: 0 0.8em; text-align: left; text-transform:none; }
table.support td {padding: 0.4em 0.8em; border-top: 1px solid #D1D0CB; line-height:12px;}
table.support td:first-child, .bordered th:first-child { border-left: medium none;}


/* ********************* Documentation ************************ */
.documentation {display:inline-block;}
.documentation .release {padding:30px;float:left;width:100%;box-sizing:border-box;border:1px solid #ccc;}
.documentation h3 {padding:20px 0 0;margin:0 0;}
.doc_list p {margin: 0 0;} 
.doc_list h4 {margin:0 0;}
.doc_list {padding-left:50px;}
.documentation p {margin:0 0; line-height:140%;}
.priors {display:none;}

/* ********************* Registration ************************ */
