/*
	Theme Name: Skewld-U
	Description: Skewld-U is a custom Genesis Child theme developed and designed exclusively for http://skewld.com.
	Author: Andrew J. Gay
	Author URI: http://www.skewld.com/
 
	Version: 1.9
 
	Tags: black, orange, white, one-column, two-columns, three-columns, fixed-width, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
 
	Template: genesis
	Template Version: 1.9
 
	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php 
*/
 

/* Table of Contents

	01 Import Fonts
	02 Defaults
	03 Typography
		- Font Color
		- Font Family
		- Font Size
		- Font Miscellaneous
	04 Layout
		- Structure
		- 1152px CSS Grid
		- Header
		- Main Content
		- Post Info & Meta
		- Column Classes
		- Miscellaneous
	05 Menus
		- Primary Navigation Extras
	06 Headings
	07 Lists
	08 Post Navigation
	09 Comments
	10 Sidebars
	11 Footer
		- Footer Widgets
	12 Forms & Buttons
		- Gravity Forms
	13 Images & Captions
	14 Media Queries
		- max-width: 1024px
		- max-width: 768px
		- max-width: 480px

*/


/*
01 Import Fonts
---------------------------------------------------------------------------------------------------- */

@import url(https://fonts.googleapis.com/css?family=Sanchez:400,400italic);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,300italic,700);


/*
02 Defaults
---------------------------------------------------------------------------------------------------- */

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,
input, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 100%; /* 16px browser default */
}

body {
	background-color: #F6F8F8;
	line-height: 1;
}

body,
input,
select,
textarea,
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a,
a:visited,
button,
input[type="button"],
input[type="submit"],
.btn {
	-moz-transition: all 0.1s ease-in-out;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

::-moz-selection {
	background-color: #1e1e1e;
	color: #fff;
}

::selection {
	background-color: #1e1e1e;
	color: #fff;
}

a img {
	border: none;
}


/*
03 Typography
-------------------------------------------------------------------------------------------------------

	This section covers font colors, families, size, styles and weight.

	This style sheet uses rem values with a pixel fallback.
	The rem values are calculated per the examples below:

	12 / 16 =		0.75rem
	14 / 16 =		0.875rem
	16 / 16 =		1rem	
	18 / 16 =		1.125rem
	20 / 16 =		1.25rem
	24 / 16 =		1.5rem
	30 / 16 =		1.875rem
	36 / 16 =		2.25rem
	42 / 16 =		2.625rem
	48 / 16 =		3rem
	
	Further reading on the use and compatibility of rems:
	
	http://caniuse.com/rem
	http://snook.ca/archives/html_and_css/font-size-with-rem
	
*/

/* 03a - Font Color ----------- */

a:hover,
body,
h2 a,
h2 a:visited,
h4.widgettitle a,
input,
.genesis-nav-menu li li a,
.genesis-nav-menu li li a:link,
.genesis-nav-menu li li a:visited,
.post-comments {
	color: #1e1e1e;
}

.author,
.date {
	color: #888;
}

#title a,
#title a:hover {
	color: #00578E;
}

.genesis-nav-menu a {
	color: #FFF;
}

a,
h2 a:hover {
	color: #00578E;
	text-decoration: none;
}

.genesis-nav-menu li a:hover,
.genesis-nav-menu li:hover a,
.genesis-nav-menu li li a:hover {
	background-color: #69a0cb;
	color: #FFF;
}

.post-info,
.post-meta,
#description {
	color: #636363;
}

blockquote::before,
blockquote p,
input,
select,
textarea {
	color: #999;
}

button,
input[type="button"],
input[type="submit"],
.btn,
.genesis-nav-menu .highlight-menu-item a,
.genesis-nav-menu .highlight-menu-item a:hover,
.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	color: #fff;
}

/* 03b - Font Family ----------- */

body,
input,
textarea,
.author-box h1 {
	font-family: 'Sanchez', serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a,
#title {
	font-family: 'Source Sans Pro', sans-serif;
}

/* 03c - Font Size ----------- */

h1,
.entry-title,
.entry-title a {
	font-size: 36px;
	font-size: 2.25rem;
}

blockquote::before {
	font-size: 32px;
	font-size: 2rem;
}

h2 {
	font-size: 30px;
	font-size: 1.875rem;
}

h3 {
	font-size: 24px;
	font-size: 1.5rem;
}

h4,
.archive-title,
.taxonomy-description h1,
.widgettitle {
	font-size: 20px;
	font-size: 1.25rem;
}

h5 {
	font-size: 18px;
	font-size: 1.125rem;
}

h6,
.author-box h1,
.sidebar h2 a {
	font-size: 16px;
	font-size: 1rem;
}

input,
select,
textarea,
.post-info,
.post-meta,
.wp-caption,
#footer p {
	font-size: 14px;
	font-size: 0.875rem;
}

.genesis-nav-menu {
	font-size: 16px;
	font-size: 1.0rem;
}


/* 03d - Font Miscellaneous ----------- */

blockquote p {
	font-style: italic;
}

cite {
	font-style: normal;
}

button,
input[type="button"],
input[type="submit"],
h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.entry-title a,
.genesis-nav-menu,
.post-comments,
.post-info .author,
.post-info .date,
.wp-caption,
#footer p {
	font-weight: 700;
}

.wp-caption {
	text-align: center;
}

h2 a,
h2 a:visited,
.genesis-nav-menu a,
.navigation li a,
.widgettitle a,
#title a {
	text-decoration: none;
}


/*
04 Layout
---------------------------------------------------------------------------------------------------- */

/* 04a - Structure ----------- */

#wrap {
	margin: 0 auto;
}

#header .wrap,
#nav .wrap,
#footer .wrap {
	margin: 0 auto;
	max-width: 1152px;
	z-index: 200;
}

#inner {
	background-color: #FFF;
	border-color: #F1F1F1 #E7E6E6 #CFCFCF;
    border-style: solid;
    border-width: 1px;
    border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0 0 3px 3px;
	clear: both;
	overflow: hidden;
	margin: 0 auto;
	padding: 30px 50px;
	padding: 1.875rem 3.125rem;
	max-width: 1052px;
}

/* 04b - 1152px CSS Grid ----------- */

#sidebar-alt {
	width: 15.277777777%; /* 176px / 1152px */
}

.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.sidebar {
	width: 30.555555555%; /* 352px / 1152px */
}

#title-area {
	width: 150px;
}

.content-sidebar-sidebar .sidebar,
.sidebar-content-sidebar .sidebar,
.sidebar-sidebar-content .sidebar {
	width: 37.931034482%; /* 352px / 928px */
}

.content-sidebar-sidebar #content,
.sidebar-content-sidebar #content,
.sidebar-sidebar-content #content {
	width: 56.896551724%; /* 528px / 928px */
}

.content-sidebar #content,
.sidebar-content #content,
#header .widget-area {
	width: 65.277777777%; /* 752px / 1152px */
}

.content-sidebar-sidebar #content-sidebar-wrap,
.sidebar-content-sidebar #content-sidebar-wrap,
.sidebar-sidebar-content #content-sidebar-wrap {
	width: 80.555555555%; /* 928px / 1152px */
}

.content-sidebar #content-sidebar-wrap,
.full-width-content #content,
.full-width-content #content-sidebar-wrap,
.sidebar-content #content-sidebar-wrap {
	width: 100%; /* 1152px / 1152px */
}

.footer-widgets-1,
.footer-widgets-2,
.sidebar-content #sidebar,
.sidebar-sidebar-content #sidebar,
#content,
#content-sidebar-wrap,
#footer .gototop,
#sidebar-alt,
#title-area {
	float: left;
}

.content-sidebar-sidebar #sidebar-alt,
.footer-widgets-3,
.sidebar,
.sidebar-content #content,
.sidebar-content-sidebar #content-sidebar-wrap,
.sidebar-sidebar-content #content,
.sidebar-sidebar-content #content-sidebar-wrap,
#footer .creds,
#header .widget-area {
	float: right;
}

#header {
	background: url(images/header-bg.png) repeat-x center bottom #399ee4;
	border-top: 1px solid #81DCFD;
	min-height: 65px;
	padding-bottom: 10px;
	overflow: hidden;
	width: 100%;
}

#title-area #title {
	color: #00578E;
	margin: 0;
	margin: 0;
}

#title-area {
    background: url("images/skewld-logo.png") no-repeat scroll 0 0 transparent;
    margin: 8px 0;
    margin: 0.5rem 0;
}

.header-image #title {
	margin: 0;
}

#description {
	height: 0;
	margin-bottom: 0;
	line-height: 0;
	text-indent: -9999px;
}

.header-full-width #title,
.header-full-width #title a,
.header-full-width #title-area {
	width: 100%;
}

#title,
#title a,
#title-area {
	display: block;
	float: left;
	min-height: 53px;
	overflow: hidden;
	text-indent: -9999px;
	width: 150px;
}

#title-area:hover {
	opacity: 0.9;
}

.header-image #description {
	display: block;
	margin-bottom: 0;
	overflow: hidden;
}

/* 04d - Main Content ----------- */

#content {
	padding-bottom: 40px;
	padding-bottom: 2.5rem;
}

.entry,
.page .post.entry {
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
	margin-bottom: 40px;
	margin-bottom: 2.5rem;
}

.post {
	border-bottom: 3px solid #F6F8F8;
}

.single .entry {
	margin-bottom: 48px;
	margin-bottom: 3rem;
}

.page .entry {
	margin: 0;
}

.entry-content {
	overflow: hidden;
}

.entry-content,
.entry-content p {
	line-height: 1.625;
}

.entry-content p {
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

blockquote {
	padding: 24px 64px;
	padding: 1.5rem 4rem;
}

blockquote::before {
	content: "“";
	display: block;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}

.single-work blockquote {
	font-size: 14px;
}

.sort-courses h3 {
	text-align: center;
}

.sort-courses ul {
    -moz-box-sizing: border-box;
    overflow: hidden;
    padding: 0 0 48px 50px;
    padding: 0 0 3rem 3.125rem;
    width: 100%;
}

.sort-courses li {
    float: left;
    list-style-type: none;
    margin-bottom: 15px;
}

.sort-courses li a {
    border-radius: 10px 10px 10px 10px;
    color: #808286;
    display: block;
    font-size: 13px;
    line-height: 16px;
    margin-right: 10px;
    padding: 20px 20px 19px 60px;
    text-align: center;
    text-decoration: none;
    width: 70px;
}

.sort-courses li.all-courses a {
    background: none repeat scroll 0 0 #F5F5F5;
    font-weight: bold;
    padding: 20px 0 19px;
    width: 115px;
}

.sort-courses li a:hover, .sort-courses li.active a {
    background: none repeat scroll 0 0 #235C88;
    color: #FFFFFF;
}

.sort-courses li.marketing-automation a {
    background: url("images/icon-automation.png") no-repeat scroll 15px 20px #F5F5F5;
}

.sort-courses li.beginners-recipes a {
    background: url("images/icon-beginner.png") no-repeat scroll 15px 20px #F5F5F5;
}

.sort-courses li.content-marketing a {
    background: url("images/icon-content.png") no-repeat scroll 15px 20px #F5F5F5;
}

.sort-courses li.visual-marketing a {
    background: url("images/icon-design.png") no-repeat scroll 15px 20px #F5F5F5;
}

.sort-courses li.social-media a {
    background: url("images/icon-social.png") no-repeat scroll 15px 20px #F5F5F5;
}

.sort-courses li.marketing-automation.active a,
.sort-courses li.marketing-automation a:hover {
    background: url("images/icon-automation-hover.png") no-repeat scroll 15px 20px #235C88;
}

.sort-courses li.beginners-recipes.active a,
.sort-courses li.beginners-recipes a:hover {
    background: url("images/icon-beginner-hover.png") no-repeat scroll 15px 20px #235C88;
}

.sort-courses li.content-marketing.active a,
.sort-courses li.content-marketing a:hover {
    background: url("images/icon-content-hover.png") no-repeat scroll 15px 20px #235C88;
}

.sort-courses li.visual-marketing.active a,
.sort-courses li.visual-marketing a:hover {
    background: url("images/icon-design-hover.png") no-repeat scroll 15px 20px #235C88;
}

.sort-courses li.social-media.active a,
.sort-courses li.social-media a:hover {
    background: url("images/icon-social-hover.png") no-repeat scroll 15px 20px #235C88;
}

.directory-heading-wrap {
	border-bottom: 2px solid #F5F5F5;
}

.directory-heading {
	font-weight: 300;
	text-align: center;
}

.directory-subheading {
	color: #858786;
	font-family: 'Sanchez', serif;
	font-size: 22px;
	font-style: italic;
	font-weight: 300;
	padding-bottom: 16px;
	padding-bottom: 1rem;
	text-align: center; 
}

.sort-courses h3 {
	font-family: 'Sanchez', serif;
	font-weight: 400;
	font-size: 24px;
	padding-top: 16px;
	padding-top: 1rem;
}

.image {
	background: #ebebeb;
	border-bottom: 1px solid #CCC;
	border-top: 1px solid #DDD;
	border-right: 1px solid #DDD;
	border-left: 1px solid #DDD;
	padding: 2px;
}

.icon-type {
    display: inline-block;
    margin-right: 4px;
    margin-top: 5px;
    text-indent: -9999em;
}

.icon-type.beginners-recipes {
    background: url("images/icon-beginner.png") no-repeat scroll 0 0 transparent;
    background-size: 16px 17px;
    height: 16px;
    width: 17px;
}

.icon-type.content-marketing {
    background: url("images/icon-content.png") no-repeat scroll 0 0 transparent;
    background-size: 16px 17px;
    height: 16px;
    width: 17px;
}

.icon-type.marketing-automation {
    background: url("images/icon-automation.png") no-repeat scroll 0 0 transparent;
    background-size: 16px 17px;
    height: 16px;
    width: 17px;
}

.icon-type.social-media {
    background: url("images/icon-social.png") no-repeat scroll 0 0 transparent;
    background-size: 16px 17px;
    height: 16px;
    width: 17px;
}

.icon-type.visual-marketing {
    background: url("images/icon-design.png") no-repeat scroll 0 0 transparent;
    background-size: 16px 17px;
    height: 16px;
    width: 17px;
}

/* 04e - Post Info & Meta ----------- */

.post-info,
.post-meta {
	clear: both;
	line-height: 1.5;
}

.post-info {
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
}

.post-comments {
	background: url(images/post-comments.png) no-repeat center left;
	margin-left: 16px;
	margin-left: 1rem;
	padding-left: 20px;
	padding-left: 1.25rem;
}

.post-meta {
	border-top: 1px solid #ccc;
	padding-top: 24px;
	padding-top: 1.5rem;
}

.categories,
.tags {
	display: block;
	font-weight: bold;
}

.post-info .categories {
	display: inline;
}

/* 04f - Column Classes ----------- */

.five-sixths,
.four-fifths,
.four-sixths,
.one-fifth,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fifths,
.three-fourths,
.three-sixths,
.two-fifths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 4.166666666%; /* 48px / 1152px */
}

.one-half,
.three-sixths,
.two-fourths {
	width: 47.9166666666%; /* 552px / 1152px */
}

.one-third,
.two-sixths {
	width: 30.555555555%; /* 352px / 1152px */
}

.four-sixths,
.two-thirds {
	width: 65.277777777%; /* 752px / 1152px */
}

.one-fourth {
	width: 21.875%; /* 252px / 1152px */
}

.three-fourths {
	width: 73.958333333%; /* 852px / 1152px */
}

.one-fifth {
	width: 16.666666666%; /* 192px / 1152px */
}

.two-fifths {
	width: 37.5%; /* 432px / 1152px */
}

.three-fifths {
	width: 58.333333333%; /* 672px / 1152px */
}

.four-fifths {
	width: 79.166666666%; /* 912px / 1152px */
}

.one-sixth {
	width: 13.194444444%; /* 152px / 1152px */
}

.five-sixths {
	width: 82.638888888%; /* 952px / 1152px */
}

.first {
	margin-left: 0;
}

/* 04g - Miscellaneous ----------- */

.single-work .post-info {
	display: none;
}

p.subscribe-to-comments {
	padding: 24px 0 16px;
	padding: 1.5rem 0 1rem;
}

p.pages,
.clear,
.clear-line,
.first {
	clear: both;
}

.clear-line {
	border-bottom: 1px solid #ccc;
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.alignleft,
.archive-page {
	float: left;
}

.alignright {
	float: right;
}

.archive-page {
	width: 50%;
}

.author-box,
.sticky {
	margin-bottom: 80px;
	margin-bottom: 5rem;
}

.author-box,
.author-box h1,
.taxonomy-description {
	line-height: 1.5;
}

.author-box,
.breadcrumb,
.sticky,
.taxonomy-description {
	background-color: #f5f5f5;
	margin-bottom: 48px;
	margin-bottom: 3rem;
	overflow: hidden;
	padding: 32px;
	padding: 2rem;
}

#gform_widget-2,
#text-2 {
	background: #91c4e5;
	color: #FFF;
	border-bottom: none;
	text-shadow: 0 1px rgba(0,0,0,0.35);
}

#text-2 {
	border-radius: 5px 5px 0 0;
	-moz-border-radius:  5px 5px 0 0;
	-webkit-border-radius:  5px 5px 0 0;
	margin-bottom: 0;
	padding: 25px 25px 0;
}

#gform_widget-2 {
	border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	padding: 0 25px 25px;
}

.simple-social-icons {
	padding-left: 15px;
}

.info {
	background: #fffde9 url(images/icon-info.png) no-repeat 15px 15px;
	border: 1px solid #ffefc3;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin: 15px 0;
	padding: 15px 15px 0 55px;
}

.info p,
.info ul li,
.info h1,
.info h2,
.info h3,
.info h4,
.info h5, 
.info h6 {
	color: #6a5f21;
	text-shadow: 1px 1px #FFF;
}


/*
05 Menus
---------------------------------------------------------------------------------------------------- */

#nav {
	position: fixed;
	width: 100%;
	z-index: 200;
}

.genesis-nav-menu {
	clear: both;
	overflow: hidden;
}

#header .genesis-nav-menu {
	float: right;
	width: auto;
}

.genesis-nav-menu ul {
	float: left;
	width: 100%;
}

.genesis-nav-menu li {
	display: inline-block;
	float: left;
	list-style-type: none;
	text-align: left;
}

.genesis-nav-menu a {
	display: block;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	font-weight: 200;
	padding: 26px 16px 20px 42px;
	position: relative;
}

.genesis-nav-menu li.highlight-menu-item {
	margin-left: 20px;
	margin-left: 1.25rem;
}

.genesis-nav-menu .highlight-menu-item a {
	background-color: #1e1e1e;
}

.genesis-nav-menu .highlight-menu-item a:hover {
	background-color: #69a0cb;
}

.genesis-nav-menu li li a,
.genesis-nav-menu li li a:link,
.genesis-nav-menu li li a:visited {
	background: #69a0cb;
	border-top: none;
	border-right: none;
	color: #FFF;
	padding: 10px 16px;
	padding: 0.675rem 1rem;
	position: relative;
	width: 170px;
}

.genesis-nav-menu li li a:hover {
	color: #235C88;
}

.genesis-nav-menu li ul {
	left: -9999px;
	position: absolute;
	width: 212px;
	z-index: 99;
}

.genesis-nav-menu li ul ul {
	border: 1px solid #00578E;
	margin: -55px 0 0 211px;
}

.genesis-nav-menu li:hover ul ul,
.genesis-nav-menu li.sfHover ul ul {
	left: -9999px;
}

.genesis-nav-menu li:hover,
.genesis-nav-menu li.sfHover {
	position: static;
}

ul.genesis-nav-menu li:hover>ul,
ul.genesis-nav-menu li.sfHover ul,
#header .genesis-nav-menu li:hover>ul,
#header .genesis-nav-menu li.sfHover ul {
	background: #69a0cb;
	border-bottom: 2px solid #5b8cb2;
	border-left: 1px solid #6195be;
	border-right: 1px solid #6195be;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.15);
	-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15);
	border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	-webkit-border-radius: 0 0 3px 3px;
	left: auto;
}

.genesis-nav-menu li a .sf-sub-indicator,
.genesis-nav-menu li li a .sf-sub-indicator,
.genesis-nav-menu li li li a .sf-sub-indicator {
	position: absolute;
	text-indent: -9999px;
}

#wpadminbar li:hover ul ul {
	left: 0;
}

.menu-icon a {
	background-repeat: no-repeat;
	background-position: 16px 28px;
	background-size: 14px 14px;
}

.icon-home a {
	background-image: url(images/ss-icons/home-icon-16-white.png);
}

.icon-home a:hover {
	background-image: url(images/ss-icons/home-icon-16-blue.png);
}

.icon-bucket a {
	background-image: url(images/ss-icons/bucket-icon-16-white.png);
}

.icon-bucket a:hover {
	background-image: url(images/ss-icons/bucket-icon-16-blue.png);
}

.icon-courses a {
	background-image: url(images/ss-icons/book-icon-16-white.png);	
}

.icon-courses a:hover {
	background-image: url(images/ss-icons/book-icon-16-blue.png);	
}

.icon-members a {
	background-image: url(images/ss-icons/man-user-icon-16-white.png);
}

.icon-members a:hover {
	background-image: url(images/ss-icons/man-user-icon-16-blue.png);
}

.icon-work a {
	background-image: url(images/ss-icons/code-icon-16-white.png);
}

.icon-work a:hover {
	background-image: url(images/ss-icons/code-icon-16-blue.png);
}

.icon-freebies a {
	background-image: url(images/ss-icons/download-icon-16-white.png);
}

.icon-freebies a:hover {
	background-image: url(images/ss-icons/download-icon-16-blue.png);
}

@media only screen and (-Webkit-min-device-pixel-ratio: 1.5),
only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (min-device-pixel-ratio: 1.5) {
	.icon-home a {
		background-image: url(images/ss-icons/home-icon-32-white.png);
		background-size: 14px 14px;
	}
	
	.icon-home a:hover {
		background-image: url(images/ss-icons/home-icon-32-blue.png);
		background-size: 14px 14px;
	}
	
	.icon-bucket a {
		background-image: url(images/ss-icons/bucket-icon-32-white.png);
		background-size: 14px 14px;
	}
	
	.icon-bucket a:hover {
		background-image: url(images/ss-icons/bucket-icon-32-blue.png);
		background-size: 14px 14px;
	}
	
	.icon-courses a {
		background-image: url(images/ss-icons/book-icon-32-white.png);
		background-size: 14px 14px;	
	}
	
	.icon-courses a:hover {
		background-image: url(images/ss-icons/book-icon-32-blue.png);
		background-size: 14px 14px;	
	}
	
	.icon-members a {
		background-image: url(images/ss-icons/man-user-icon-32-white.png);
		background-size: 14px 14px;
	}
	
	.icon-members a:hover {
		background-image: url(images/ss-icons/man-user-icon-32-blue.png);
		background-size: 14px 14px;
	}
	
	.icon-work a {
		background-image: url(images/ss-icons/code-icon-32-white.png);
		background-size: 14px 14px;
	}
	
	.icon-work a:hover {
		background-image: url(images/ss-icons/code-icon-32-blue.png);
		background-size: 14px 14px;
	}
	
	.icon-freebies a {
		background-image: url(images/ss-icons/download-icon-32-white.png);
		background-size: 14px 14px;
	}
	
	.icon-freebies a:hover {
		background-image: url(images/ss-icons/download-icon-32-blue.png);
		background-size: 14px 14px;
	}
}


/* 05a - Primary Navigation Extras ----------- */

.genesis-nav-menu li.right {
	float: right;
	padding: 16px;
	padding: 1rem;
}

.genesis-nav-menu li.right a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu li.search {
	padding: 6px 0 0;
	padding: 0.375rem 0 0;
}

.genesis-nav-menu li.rss a {
	background: url(images/rss.png) no-repeat center left;
	margin-left: 20px;
	margin-left: 1.25rem;
	padding-left: 20px;
	padding-left: 1.25rem;
}

.genesis-nav-menu li.twitter a {
	background: url(images/twitter-nav.png) no-repeat center left;
	border-right: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	padding-left: 24px;
	padding-left: 1.5rem;
}

.genesis-nav-menu li.twitter a:hover {
	color: #08AEEC;
}


/*
06 Headings
---------------------------------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a {
	line-height: 1.2;
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.author-box h1 {
	margin: 0
}

.taxonomy-description h1 {
	margin-bottom: 4px;
	margin-bottom: 0.25rem;
}

.archive-title {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}


/*
07 Lists
---------------------------------------------------------------------------------------------------- */

.entry-content ol,
.entry-content ul {
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.entry-content ol li,
.entry-content ul li {
	line-height: 1.625;
}

.entry-content ol li,
.entry-content ul li {
	margin-left: 40px;
	margin-left: 2.5rem;
}

.entry-content ol li {
	list-style-type: decimal;
}

.entry-content ul li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}


/*
08 Post Navigation
---------------------------------------------------------------------------------------------------- */

.navigation li {
	display: inline;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	background-color: #1e1e1e;
	border-radius: 3px;
	cursor: pointer;
	padding: 12px;
	padding: 0.75rem;
}

.navigation li a:hover,
.navigation li.active a {
	background-color: #ff2a00;
}


/*
09 Comments
---------------------------------------------------------------------------------------------------- */

#comments,
#respond {
	line-height: 1.5;
	overflow: hidden;
}

.ping-list,
#comments {
	margin-bottom: 48px;
	margin-bottom: 3rem;
}

#author,
#email,
#url {
	width: 50%;
}

.commentmetadata,
#author,
#email,
#url {
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

#comment {
	margin: 12px 0;
	margin: 0.75rem 0;
}

.children li {
	border-top: 2px solid #F6F8F8;
}

.even,
.odd {
	background: #F6F8F8;
}

.children .odd {
	background: #FFF;
}

.children .even (
	background: #F6F8F8;
)

label {
	margin-left: 12px;
	margin-left: 0.75rem;
}

.comment-list li,
.ping-list li {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	list-style-type: none;
	margin-top: 24px;
	margin-top: 1.5rem;
	padding: 16px 8px 16px 16px;
	padding: 1rem 0.5rem 1rem 1rem;
}

.comment-list li ul li {
	margin-left: 24px;
	margin-left: 1.5rem;
}

.comment-header {
	overflow: hidden;
}

.comment {
	border-right: none;
}

.comment-content p {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.bypostauthor {
}

#comments .navigation {
	margin-top: 32px;
	margin-top: 2rem;
}

#comments h3,
#respond h3 {
	border-bottom: 2px solid #ff9a37;
	color: #ff9a37!important;
}


/*
10 Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	display: inline;
	line-height: 1.5;
	margin-top: 15px;
}

.sidebar p {
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.sidebar .widget {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
	padding-bottom: 16px;
	padding-bottom: 1rem;
	overflow: hidden;
}

.sidebar.widget-area ul li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
	word-wrap: break-word;
}

.course-sidebar-green {
	background: #72BC4D;
	padding: 15px 25px;
}

.sidebar-offer {
	background: #b2ddff;
	margin: 0 auto;
	width: 320px;
}

.sidebar-offer h3 {
	background: url(images/ss-sidebar-optin-header.jpg) no-repeat;
	color: #b5defe;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 22px;
	font-size: 1.375rem;
	font-weight: 200;
	padding: 22px 14px 48px;
	padding: 1.4375rem 0.875rem 3rem;
	text-align: center;
	text-shadow: -1px 1px rgba(0,0,0,0.15);
}

.sidebar-offer h3 strong {
	color: #FFF!important;
	font-weight: 400;
}

.sidebar-offer .optin-area {
	padding: 16px 24px;
}

.sidebar-offer .optin-area p {
	clear: both;
	color: #235C88;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: -0.5px;
}

.sidebar-offer .optin-area h4 {
	color: #235C88;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.5px;
	text-align: center;
}

#text-7 img.centered, #text-7 .aligncenter {
	margin: 0 auto 0;
}

#text-7 img:hover {
	opacity: 0.9;
}

.sidebar .widget.blue-box {
	background: #EFF5FA;
	border: 1px solid #dfedf8;
	padding: 15px;
}


/*
11 Footer
---------------------------------------------------------------------------------------------------- */

#footer {
	clear: both;
}

#footer p {
	font-size: 14px;
	font-weight: 300;
	padding: 10px 0;
	text-align: center;
}

#footer .wrap {
	overflow: hidden;
	padding: 32px 0;
	padding: 2rem 0;
}

#footer .creds {
	text-align: right;
}

#footer .creds,
#footer .gototop {
	margin: 8px 0;
	margin: 0.5rem 0;
}

/* 11a - Footer Widgets ----------- */

.footer-widgets {
	border-top: 2px solid #1e1e1e;
	clear: both;
	line-height: 1.5;
	overflow: hidden;
	padding: 32px 0 16px;
	padding: 2rem 0 1rem;
}

.footer-widgets p {
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.footer-widgets .widget {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.footer-widgets .widget-area ul li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
	word-wrap: break-word;
}

.footer-widgets-1 {
	margin-right: 4.166666666%; /* 48px / 1152px */
}


/*
12 Forms & Buttons
---------------------------------------------------------------------------------------------------- */

input,
select,
textarea,
.more-link {
	background-color: #FFF;
	border-bottom: 1px solid #DBDBDB;
	border-left: 1px solid #D1D1D1;
	border-right: 1px solid #D1D1D1;
	border-top: 1px solid #A9A9A9;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 0 3px #F6F8F8 inset;
	-webkit-box-shadow: 0 0 3px #F6F8F8 inset;
	margin-top: 10px;
	padding: 8px 16px;
	padding: 0.5rem 1rem;
}


input[type="checkbox"] {
	float: left;
	height: 15px;
	margin-top: 5px;
	width: 15px;
}

.more-link {
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
}

.more-link:hover {
	color: #FFF;
}

#header .search-form {
	float: right;
	margin-top: 56px;
	margin-top: 3.5rem;
	width: 100%;
}

.more-link {
	background-color: #ff9a37;
	border: none;
	box-shadow: none;
	cursor: pointer;
	padding: 8px 24px;
	padding: 0.5rem 1.5rem;
}

button,
input[type="button"],
input[type="submit"],
.btn {
	background: #53a7e5; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxMiUiIHN0b3AtY29sb3I9IiM1M2E3ZTUiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMzY2MTg3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
	background: -moz-linear-gradient(top,  #53a7e5 12%, #366187 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(12%,#53a7e5), color-stop(100%,#366187)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #53a7e5 12%,#366187 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #53a7e5 12%,#366187 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #53a7e5 12%,#366187 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #53a7e5 12%,#366187 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#53a7e5', endColorstr='#366187',GradientType=0 ); /* IE6-8 */
	border: 1px solid #193853;
	box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset;
	cursor: pointer;
	display: block;
	padding: 8px 24px;
	padding: 0.5rem 1.5rem;
	width: auto;
}

.newsletter-button button,
.newsletter-button input[type="button"],
.newsletter-button input[type="submit"],
.newsletter-button .btn {
	background-color: #08aeec;
	border: none;
	box-shadow: none;
	cursor: pointer;
	padding: 8px 24px;
	padding: 0.5rem 1.5rem;
	width: auto;
}

.newsletter-button button:hover,
.newsletter-button input:hover[type="button"],
.newsletter-button input:hover[type="submit"],
.newsletter-button .btn:hover {
	background-color: #7dd8fa;
}

button:hover,
input:hover[type="button"],
input:hover[type="submit"],
.btn:hover,
.more-link:hover {
	background-color: #00578E;
}

.enews input[type="submit"],
.search-form input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

input[type="button"].btn-orange,
input[type="submit"].btn-orange {
	background: url(images/button-orange.jpg) repeat-x center top #E9AC28;
	border: 1px solid #CF741D;
	box-shadow: 0 2px 3px rgba(0,0,0,0.35);
	-webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.35);
	color: #aa5f17!important;
	display: block!important;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 16px;
	font-weight: 400;
	text-shadow: -1px 1px rgba(255,255,255,0.35);
	width: 100%;
}

input[type="button"].btn-orange:hover,
input[type="submit"].btn-orange:hover {
	background: url(images/button-orange-hover.jpg) repeat-x center bottom #E9AC28;
}

/* 12a - Gravity Forms ----------- */

#content div.gform_wrapper input,
#content div.gform_wrapper select,
#content div.gform_wrapper textarea,
#content div.gform_wrapper .ginput_complex label {
	font-size: 16px;
	font-size: 1rem;
	padding: 8px 16px;
	padding: 0.5rem 1rem;
}

#content div.gform_wrapper input[type="submit"] {
	padding: 12px 24px;
	padding: 0.75rem 1.5rem;
}

#content div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 16px 0 0;
	margin: 1rem 0 0;
}

.gfield_checkbox label {
	font-style: italic;
	text-indent: 25px;
}

.gfield_checkbox {
	padding-bottom: 15px;
}

.gfield_label {
	margin-bottom: 10px;
	margin-left: 0;
}

/*
13 Images & Captions
---------------------------------------------------------------------------------------------------- */

embed,
img,
object,
video,
iframe {
	max-width: 100%;
}

img {
	height: auto;
}

.alignleft .avatar {
	margin-right: 24px;
	margin-right: 1.5rem;
}

.alignright .avatar {
	margin-left: 24px;
	margin-left: 1.5rem;
}

.author-box .avatar {
	float: left;
	margin-right: 24px;
	margin-right: 1.5rem
}

.comment-list li .avatar {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	float: left;
	margin: 0 16px 24px 0;
	margin: 0 1rem 1.5rem 0;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.5rem
}

img.alignnone {
	display: inline;
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

img.alignleft,
.post-image,
.wp-caption.alignleft {
	display: inline;
	margin: 0 24px 24px 0;
	margin: 0 1.5rem 1.5rem 0;
}

img.alignright,
.wp-caption.alignright {
	display: inline;
	margin: 0 0 24px 24px;
	margin: 0 0 1.5rem 1.5rem;
}

p.wp-caption-text {
	line-height: 1.2;
	margin-top: 12px;
	margin-top: 0.75rem;
}

.gallery-caption {
}

.ts-display-list a.image {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0 0 2px rgba(0,0,0,0.35);
}

#ts-display ul li {
	list-style-type: none;
}

/*
Course Layouts
---------------------------------------------------------------------------------------------------- */

#wpcw_fe_course {
	font-size: 1rem;
}

#wpcw_fe_course td {
	padding: 15px 25px;
}

#wpcw_fe_course .wpcw_fe_module td {
	background: #83c01f!important;
	color: #FFF;
}

img.course-icon {
	margin: 6px 10px 0 0;
}

.resources {
	border-bottom: 2px solid #EEE;
}

.resources img {
	margin: 0px 10px 0 0;
}

.resource-item {
	margin-left: 25px;
}

/*
14 Media Queries
---------------------------------------------------------------------------------------------------- */

@media \0screen {img { width: auto }} /* Prevent height distortion in IE8. */

/* Desktops, laptops and iPads (landscape) ----------- */

@media only screen and (max-width: 1024px) {

	#nav .wrap,
	#header .wrap,
	#inner,
	#footer .wrap {
		max-width: 96%;
		margin-left: 2%;
		margin-right: 2%;
	}	

}

/* iPads (portrait) ----------- */

@media only screen and (max-width: 768px) {

	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.wrap,
	#footer .creds,
	#footer .gototop,
	#header .widget-area,
	#wrap .sidebar,
	#wrap #content,
	#wrap #content-sidebar-wrap,
	#wrap #sidebar-alt {
		width: 100%;
	}
	
	#title-area {
		float: none!important;
		margin: 0 auto;
	}

	.genesis-nav-menu li,
	#footer .creds,
	#footer .gototop,
	#header ul.genesis-nav-menu,
	#header .search-form {
		float: none;
	}
	
	.genesis-nav-menu li a {
		text-indent: -9999px;
		width: 15px;
	}
	
	.genesis-nav-menu li li a {
		text-indent: 0;
	}

	.genesis-nav-menu,
	#description,
	#footer .creds,
	#footer .gototop,
	#header .search-form,
	#title,
	#title-area {
		text-align: center;
	}

	.genesis-nav-menu a {
		padding: 20px 16px;
		padding: 1.25rem 1rem;
	}

	#title {
		margin: 64px 0 0;
		margin: 4rem 0 0;
	}

	#header .search-form {
		margin: 32px auto 0;
		margin: 2rem auto 0;
		width: 50%;
	}

	.genesis-nav-menu li.right {
		display: none;
	}

	#footer .wrap {
		padding: 24px 0;
		padding: 1.5rem 0;
	}

	.footer-widgets-1,
	#header .genesis-nav-menu {
		margin: 0;
	}
	
	.post-type-archive-work .work {
		float: left;
		margin: 15px 1% 0;
		width: 45%;
		max-width: 48%;
	}
	
	
	.genesis-nav-menu,
	#nav .wrap {
		border-left: none;
		border-right: none;
		box-shadow: none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
	}

}

/* iPhones (portrait and landscape) ----------- */

@media only screen and (max-width: 480px) {

	html {
		font-size: 87.5%; /* 14px base */
	}

	#header .search-form {
		width: 100%;
	}

	.archive-page,
	.five-sixths,
	.four-fifths,
	.four-sixths,
	.one-fifth,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fifths,
	.three-fourths,
	.three-sixths,
	.two-fifths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}
	
	.post-type-archive-work .work {
		clear: both;
		display: block;
		float: none;
		margin: 15px 1% 0;
		max-width: 95%;
		width: 95%;
	}
	
	.menu-icon a {
		background-position: center center;
	}

}