body {
	font-family: sans-serif;
	background: black;
}

.right {
	float: right;
}

.left {
	float: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

strong {
	font-weight: bold;
}

hr {
	width:100%;
	height: 1px;
	border-top: 1px solid #e0e0e0;
	margin: 5px 0;
}

img { 
	-ms-interpolation-mode: bicubic;
}

/* ************************************************************************ */
/* Navigation */

.hsom-nav-wrap {
	width: 100%;
	background: #0a0a0a;
}

.hsom-nav-sub-wrap {
	width: 100%;
	background: #464544;
	height: 28px;
	line-height: 28px;
	color: #e0e0e0;
	font-size: 12px;
}

.hsom-nav-promotoer {
	text-align: center;
	font-size: 14px;
	color: #e0e0e0;
}

.hsom-nav-bg {
	background: url('images/nav-bg.jpg') no-repeat;
	position: relative;
}

.hsom-nav-user-wrap {
	position: absolute;
	right: 0;
	bottom: 0;
	color: #e0e0e0;
	font-size: 12px;
	line-height: 24px;
	margin-bottom: 6px;
}

.hsom-nav-user-wrap .hsom-username {
	color: #e5b00a;
	display: inline;
}

.hsom-nav-user-wrap .hsom-logout {
	display: inline;
	margin-left: 5px;
	margin-right: 5px;
}

.hsom-nav-user-wrap .hsom-logout a {
	color: #e0e0e0;
	text-decoration: none;
}

.hsom-nav-user-wrap input {
	border: none;
	background: white;
	color: black;
	padding: 3px;
	margin-left: 4px;
	font-size: 11px;
	line-height: 13px;
}

.hsom-nav-user-wrap button {
	border: none;
	padding: 3px 6px;
	color: #ffffff;
	text-shadow: 1px 1px 3px #66541d;
	background: #ddb53d;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
	font-size: 11px;
	line-height: 13px;
}

.hsom-nav-user-wrap button:hover {
	background: #cca737;
}

#nav-user-input {
	width: 100px;
}

#nav-password-input {
	width: 100px;
}

.hsom-nav-forgot {
	font-size: 9px;
	line-height: 12px;
	padding: 0 55px 3px 0;
	float: right;
}	

.hsom-nav-menu-bg {
	background: url('images/nav-menu-bg.jpg') no-repeat;
	height: 32px;
	padding: 1px 0;
	color: #e0e0e0;
	font-size: 14px;
}

.hsom-nav-menu {
	list-style: none;
	line-height: 32px;
	display: block;
	margin: 0 auto;
}

.hsom-nav-menu li {
	position: relative;
	float: left;
	padding: 0;
	margin: 0 2px;
	cursor: pointer;
	font-size: 11px;
	white-space: nowrap;
}

.hsom-nav-menu li.has-sub-menu {
	padding: 0 18px;
	cursor: default;
}

.hsom-nav-menu .sub-menu {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url('images/nav-menu-ind.png') no-repeat 0 3px;
	margin: 0 0 0 5px;
}

.hsom-nav-menu li a {
	display: block;
	padding: 0 18px;
	line-height: 32px;
	text-decoration: none;
	color: #e0e0e0
}

.hsom-nav-menu li.active,
.hsom-nav-menu li:hover {
	background: rgba(255,255,255,0.2);
}

.hsom-nav-menu > li.active {
	cursor: auto;
}

.hsom-nav-menu > li > ul {
	list-style: none;
	display: none;
	background: #484848;
	min-width: 100%;
	-moz-box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
	-webkit-box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
	box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
	margin-top: -1px;
}

.hsom-nav-menu > li > ul > li {
	float: none;
	margin: 0;
}

.hsom-nav-menu > li:hover > ul {
	display: block;
	position: absolute;
	z-index: 50000;
	left: 0;
}

.hsom-nav-logo {
	background: url('images/nav-logo.jpg') no-repeat;
	width: 300px;
	height: 120px;
	position: relative;
}

.hsom-nav-logo a {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* ************************************************************************ */
/* Overlay */

.hsom-overlay {
	position: fixed;
	left: 50%;
	top: 40%;
	margin-left: -220px;
	margin-top: -120px;
	width: 400px;
	min-height: 100px;
	background: #ddc277; /* Old browsers */
	background: -moz-linear-gradient(top, #ddc277 0%, #cea016 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ddc277), color-stop(100%,#cea016)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ddc277 0%,#cea016 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ddc277 0%,#cea016 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ddc277 0%,#cea016 100%); /* IE10+ */
	background: linear-gradient(to bottom, #ddc277 0%,#cea016 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddc277', endColorstr='#cea016',GradientType=0 ); /* IE6-9 */
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	padding: 20px;
	z-index: 60000;
	-moz-box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
	-webkit-box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
	box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
	border: 1px solid #b39d60;
	cursor: pointer;
	display: none;
}

.hsom-overlay-msg {
	font-size: 20px;
	color: black;
	color: #ffffff;
	text-shadow: 1px 1px 3px #66541d;
	margin-bottom: 20px;
}

.hsom-overlay-dismiss {
	position: absolute;
	left: 20px;
	bottom: 20px;
	font-size: 12px;
	color: #404040;
	opacity: 0.5;
}

/* ************************************************************************ */
/* Body */

p {
	margin-bottom: 0.8em;
}

p:last-child {
	margin-bottom: 0.2em;
}

.hsom-block-html ul {
	list-style: disc;
	margin-left: 30px;
}

.hsom-block-html ol {
	list-style: decimal;
	margin-left: 30px;
}

.hsom-block-html ul li,
.hsom-block-html ol li {
	margin-bottom: 0.8em;
}

h1 {
	font-size: 20px;
	color: #d8b247;
	margin: 4px 0 8px 0;
}

h2 {
	font-size: 16px;
	color: #d8b247;
	margin: 4px 0 8px 0;
}

h3 {
	font-size: 14px;
	color: #d8b247;
	margin: 4px 0 6px 0;
}

h4 {
	font-size: 12px;
	color: #d8b247;
	margin: 4px 0;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child {
	margin-top: 0;
}

a {
	color: #d8b247;
	text-decoration: none;
}

a.block {
	display: block;
}

blockquote {
	margin-left: 30px;
}

#disqus_thread {
	clear:both;
	margin-top: 30px;
}

.hsom-section-wrap {
	background: white;
	padding-top: 20px;
	padding-bottom: 20px;
}

.hsom-section-wrap.hsom-no-gap {
	padding-top: 0;
	padding-bottom: 0;
}

.hsom-section-wrap-odd {
	background: #f7f7f7;
}

.hsom-quote {
	margin-top: 10px;
	font-size: 13px;
	color: #404040;
}

.hsom-toolkit-link {
	margin-top: 35px;
	margin-bottom: 4px;
	text-align: right;
	color: #606060;
	font-size: 22px;
}

.hsom-gold-btn-big {
	padding-bottom: 8px;
	background: url('images/shadow-120.jpg') no-repeat center bottom;
}

.hsom-gold-btn-big a {
	display: block;
	width: 104px;
	text-align: center;
	text-decoration: none;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	background: #ddb53d;
	color: #ffffff;
	text-shadow: 1px 1px 3px #66541d;
	padding: 8px;
	display: block;
}

.hsom-gold-button-grow {
	display: inline-block;
	height: 43px;
	min-width: 167px;
	line-height: 34px;
	font-size: 16px;
	text-align: center;
	background: url('images/gold-button-left.png') no-repeat left top;
}

.hsom-gold-button-grow,
.hsom-gold-button-grow a {
	color: white;
	text-shadow: 1px 1px 3px #66541d;
}

.hsom-gold-button-grow div {
	height: 43px;
	min-width: 167px;
	padding: 0 15px;
	background: url('images/gold-button-right.png') no-repeat right top;
}

.hsom-green-button-grow {
	display: inline-block;
	height: 43px;
	min-width: 167px;
	line-height: 34px;
	font-size: 16px;
	text-align: center;
	background: url('images/green-button-left.png') no-repeat left top;
}

.hsom-green-button-grow,
.hsom-green-button-grow a {
	color: white;
	text-shadow: 1px 1px 3px #66541d;
}

.hsom-green-button-grow div {
	height: 43px;
	min-width: 167px;
	padding: 0 15px;
	background: url('images/green-button-right.png') no-repeat right top;
}

.hsom-video-list-wrap {
	position: relative;
	z-index: 50;
	padding-bottom: 13px;
}

.hsom-video-list-wrap .hsom-shadow-holder {
	position: absolute;
	bottom: 0;
	left: -20px;
	width: 980px;
	height: 16px;
	z-index: -1;
	background: url('images/shadow-grid-12-videos.jpg') no-repeat;
}

.hsom-video-list {
	list-style: none;
	white-space: nowrap;
	font-size: 0px;
}

.hsom-video-list {
	list-style: none;
}

.hsom-video-list li {
	position: relative;
	margin-right: 3px;
	list-style: none;
	display: inline-block;
}

.hsom-video-list-4 li  {
	width: 186px;
	position: relative;
	margin-right: 9px;
	list-style: none;
	display: block;
	float: left;
}

.hsom-video-list-4 li.hidden {
	display: none;
}

.hsom-video-list-4 li:last-child {
	margin-right: 0;
}

.hsom-video-list .hsom-video-locked {
	background: url('images/front-video-locked.png') no-repeat;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 400;
}

.hsom-video-list-4 .hsom-video-locked {
	background: url('images/front-video-locked-large.png') no-repeat;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 400;
}

.hsom-locked-wrap {
	position: relative;
}

.hsom-post-wrap .hsom-content-locked {
	background: url('images/small-content-locked-tall.png') no-repeat;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 400;
}

.hsom-post-wrap:hover .hsom-content-locked,
.hsom-video-list li:hover .hsom-video-locked,
.hsom-video-list-4 li:hover .hsom-video-locked {
	display: block;
}

.hsom-videos-list-title {
	margin-top: 4px;
	font-size: 12px;
	font-weight: bold;
	color: black;
}

.hsom-videos-list-title a {
	color: black;
}

.hsom-video-with-overlay {
	position: relative;
}

.hsom-video-list-overlay {
	position: absolute;
	display: none;
	width: 360px;
	margin: 0;
	padding: 10px 10px 60px 10px;
	background: white;
	z-index: 100000;
	border: 1px solid #323232;
	-moz-box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
	-webkit-box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
	box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
	font-size: 12px;
}

.hsom-video-list-overlay img {
	float: left;
	margin: 0 10px 10px 0;
}

.hsom-video-list-overlay h3 {
	color: black;
}

.hsom-video-list-overlay .hsom-gold-button-grow {
	position: absolute;
	right: 10px;
	bottom: 6px;
}

.hsom-video-next {
	width: 60px;
	height: 110px;
	background: url('images/video-next-large.png') no-repeat center center;
	opacity: 0.8;
	cursor: pointer;
}

.hsom-video-next.disabled {
	background: url('images/video-disabled-next-large.png') no-repeat center center;
	cursor: default;
}

.hsom-video-next:hover	{
	opacity: 1.0;
}

.hsom-video-prev {
	width: 60px;
	height: 110px;
	background: url('images/video-prev-large.png') no-repeat center center;
	opacity: 0.8;
	cursor: pointer;
}

.hsom-video-prev.disabled {
	background: url('images/video-disabled-prev-large.png') no-repeat center center;
	cursor: default;
}

.hsom-video-prev:hover	{
	opacity: 1.0;
}

.hsom-sidebar {
	background: #ececec;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	font-size: 14px;
	color: #656565;
}

.hsom-gs-vault-ad {
	background: url('/static/hsom/HSOM_GS_Vault_Banner_ad.jpg') no-repeat center center;
	width: 300px;
	height: 315px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	margin-bottom: 20px;
	position: relative;
}

.hsom-sidebar-core {
	padding: 15px;
}

.hsom-sidebar p {
	line-height: 1.3em;
	margin-bottom: 1em;
}

.hsom-post-wrap {
	margin-bottom: 30px;
}

.hsom-post-special-wrap {
	margin-bottom: 15px;
}

.hsom-front-hero {
	margin-bottom: 4px;
}

.hsom-grid-8-shadow {
	padding-bottom: 12px;
	position: relative;
}

.hsom-grid-12-shadow {
	padding-bottom: 16px;
	position: relative;
}

.hsom-grid-8-shadow .hsom-shadow-holder {
	position: absolute;
	bottom: 0;
	left: -14px;
	width: 648px;
	height: 12px;
	background: url('images/shadow-grid-8-plus.jpg') no-repeat;
}

.hsom-grid-12-shadow .hsom-shadow-holder {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 940px;
	height: 16px;
	background: url('images/shadow-grid-12.jpg') no-repeat;
}

.hsom-play-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;        
    transition: 0.5s ease-in-out;
	background: transparent url('images/play-overlay.png') no-repeat center center;
	opacity: 0.5;
}

.hsom-play-overlay:hover {
	-webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;        
    transition: 0.5s ease-in-out;
    opacity: 1.0;
}

.hsom-grid-2-shadow {
	padding-bottom: 10px;
	background: transparent url('images/shadow-grid-2-gray.jpg') no-repeat center bottom;
}

.hsom-post-head {
	margin-bottom: 8px;
}

.hsom-post-head-special {
	margin-bottom: 8px;
}

.hsom-post-head-special h1,
.hsom-post-head-special h1 a {
	color: #202020;
}

.hsom-special-feature {
	font-size: 18px;
	color: #d8b247;
}

.hsom-post-title {
	margin: 0 0 2px 0;
}

.hsom-post-title a {
	font-size: 20px;
	color: #d8b247;
	text-decoration: none;
}

.hsom-post-date,
.hsom-post-author {
	font-size: 11px;
	color: #bebebe;
	float: left;
	margin-right: 10px;
}

.hsom-post-description {
	color: #666666;
	font-size: 14px;
	margin-bottom: 10px;
}

.hsom-post-sub {
	float: right;
}

.hsom-comment-count {
	font-size: 13px;
	float: left;
	margin-right: 10px;
}

.hsom-post-sub .addthis-block {
	float: left;
	width: 140px;
}

.hsom-comment-count a {
	text-decoration: none;
	color: #d8b247;
}

/* ************************************************************************ */
/* Yield Forms */

.hsom-yield {
}

.hsom-yield form {
	display: block;
	padding: 15px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	
	background: #ddc277; /* Old browsers */
	background: -moz-linear-gradient(top, #ddc277 0%, #cea016 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ddc277), color-stop(100%,#cea016)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ddc277 0%,#cea016 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ddc277 0%,#cea016 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ddc277 0%,#cea016 100%); /* IE10+ */
	background: linear-gradient(to bottom, #ddc277 0%,#cea016 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddc277', endColorstr='#cea016',GradientType=0 ); /* IE6-9 */
}

.hsom-yield .form-row {
	clear: both;
	margin: 4px 0;
}

.hsom-yield .form-row.form-row-gap {
	padding-top: 24px;
}

.hsom-yield .form-row + .form-row {
	margin-top: 12px;
}

.hsom-yield label {
	display: block;
	color: white;
	text-shadow: 1px 1px 3px #66541d;
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.hsom-yield label.small {
	font-size: 14px;
	text-decoration: none;
	text-transform: none;
}

.hsom-yield input[type="text"],
.hsom-yield input[type="email"],
.hsom-yield input[type="password"] {
	display: block;
	border: none;
	background: white;
	padding: 6px;
	font-size: 20px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}

.hsom-yield button {
	display: block;
	margin: 0;
	border: none;
	background: #2e2e2e;
	color: white;
	text-transform: uppercase;
	padding: 8px 16px;
	font-size: 16px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	cursor: pointer;
	
	background: #898e88; /* Old browsers */
	background: -moz-linear-gradient(top, #898e88 0%, #040205 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#898e88), color-stop(100%,#040205)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #898e88 0%,#040205 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #898e88 0%,#040205 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #898e88 0%,#040205 100%); /* IE10+ */
	background: linear-gradient(to bottom, #898e88 0%,#040205 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#898e88', endColorstr='#040205',GradientType=0 ); /* IE6-9 */
}

.hsom-yield button:hover {
	background: #020102; /* Old browsers */
	background: -moz-linear-gradient(top, #898e88 18%, #020102 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(18%,#898e88), color-stop(100%,#020102)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #898e88 18%,#020102 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #898e88 18%,#020102 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #898e88 18%,#020102 100%); /* IE10+ */
	background: linear-gradient(to bottom, #898e88 18%,#020102 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#898e88', endColorstr='#020102',GradientType=0 ); /* IE6-9 */
}

.hsom-yield .form-related-links {
	margin-top: 20px;
}

.hsom-yield .show-hide,
.hsom-yield .form-related-links a {
	display: block;
	float: left;
	clear: left;
	text-decoration: none;
	background: rgba(255,255,255,0.25);
	color: white;
	text-shadow: 1px 1px 3px #b39232;
	text-transform: uppercase;
	padding: 4px 8px;
	font-size: 12px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	cursor: pointer;
	margin-right: 10px;
	margin-bottom: 6px;
}

.hsom-yield .show-hide:hover,
.hsom-yield .form-related-links a:hover {
	background: rgba(255,255,255,0.35);
}

.hsom-yield .form-related-links a:last-child {
	margin-bottom: 0;
}

.hsom-yield .flash-message {
	font-size: 16px;
	color: red;
	font-weight: bold;
	text-shadow: 1px 1px 3px rgba(255,255,255,0.5);
	margin-top: 10px;
}

/* ************************************************************************ */
/* Post */

.hsom-post h1 {
	font-size: 24px;
}

.hsom-author,
.hsom-date {
	font-size: 12px;
	color: #656565;
}

.hsom-post .hsom-video {
	margin-bottom: 8px;
	position: relative;
	z-index: 50;
}

.hsom-post .hsom-block-main {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.25em;
}

.hsom-block-primary-image {
	margin: 10px 0;
}

/* ************************************************************************ */
/* Toolkit */

.hsom-toolkit-intro {
	background: url('images/toolkit-intro-background.jpg') no-repeat;
	height: 281px;
}

.hsom-toolkit-intro-text {
	padding: 20px;
	font-size: 20px;
	color: white;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.hsom-toolkit-intro h1 {
	font-size: 32px;
	color: white;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
}

.hsom-toolkit-intro-signature {
	height: 64px;
	background: url('images/mm-signature.png') no-repeat right top;
}

.grid_12.hsom-toolkit-special {
	padding: 10px 0;
	margin: 0 2px;
	width: 956px;
	background: #f3c740; /* Old browsers */
	background: -moz-linear-gradient(top, #f3c740 0%, #cca122 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3c740), color-stop(100%,#cca122)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f3c740 0%,#cca122 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f3c740 0%,#cca122 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #f3c740 0%,#cca122 100%); /* IE10+ */
	background: linear-gradient(to bottom, #f3c740 0%,#cca122 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3c740', endColorstr='#cca122',GradientType=0 ); /* IE6-9 */
}

.hsom-toolkit-special-heading {
	font-size: 14px;
	font-weight: bold;
	color: #535353;
	padding-bottom: 2px;
}

.hsom-toolkit-special-title,
.hsom-toolkit-special-title a {
	font-size: 20px;
	font-weight: bold;
	color: black;
}

.hsom-toolkit-special-desc,
.hsom-toolkit-special-desc a {
	color: #404040;
	font-size: 13px;
}

.hsom-toolkit-special-more,
.hsom-toolkit-special-more a {
	margin-top: 0.8em;
	color: #535353;
	font-size: 11px;
}

.hsom-section-toolkit-columns h1 {
	font-size: 36px;
	color: #838385;
	text-align: center;
	padding-bottom: 10px;
}

.hsom-toolkit-step-number {
	height: 58px;
	min-width: 57px;
	line-height: 58px;
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	color: white;
	background: url('images/toolkit-step-number-background.png') no-repeat center center;
	padding-left: 2px;
	padding-top: 2px;
}

.hsom-toolkit-step-number-small {
	display: inline-block;
	height: 40px;
	min-width: 40px;
	line-height: 40px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	color: white;
	background: url('images/toolkit-step-number-background-small.png') no-repeat center center;
	padding-right: 1px;
	padding-top: 2px;
	margin-right: 10px;
}

.hsom-section-toolkit-columns .right-border {
	border-right: 1px solid #d8d8d8;
	margin-right: 0;
	padding-right: 9px;
}

.hsom-section-toolkit-columns h2 {
	font-size: 36px;
	color: #838385;
	text-align: center;
}

.hsom-section-toolkit-columns .grid_4 {
	position: relative;
}

.hsom-toolkit-start {
	background: url('images/toolkit-start.png') no-repeat;
	width: 58px;
	height: 64px;
	position: absolute;
	left: 12px;
	top: 44px;
}

.hsom-toolkit-column-detail {
	padding: 10px;
	font-size: 14px;
	color: #535353;
	margin-bottom: 10px;
}

.hsom-toolkit-column-detail li {
	padding-left: 30px;
	padding-top: 4px;
	padding-bottom: 0.8em;
	background: url('images/toolkit-icon-play.png') no-repeat;
}

.hsom-toolkit-column-detail li.hsom-completed {
	background: url('images/toolkit-icon-complete.png') no-repeat;
}

.hsom-toolkit-column-detail li,
.hsom-toolkit-column-detail li a {
	color: #cb9809;
}

.hsom-toolkit-essentials-detail {
	clear: both;
	font-size: 13px;
	color: #535353;
	margin-bottom: 10px;
}

.hsom-toolkit-essentials-detail li {
	padding-left: 30px;
	padding-top: 5px;
	padding-bottom: 0.8em;
	background: url('images/toolkit-icon-play.png') no-repeat;
}

.hsom-toolkit-essentials-detail li.hsom-completed {
	background: url('images/toolkit-icon-complete.png') no-repeat;
}

.hsom-toolkit-essentials-detail li,
.hsom-toolkit-essentials-detail li a {
	color: #cb9809;
}

h2.hsom-toolkit-icon-complete {
	float: left;
	padding-left: 45px;
	padding-right: 26px;
	background: url('images/toolkit-icon-complete-large.png') no-repeat;
	color: #838385;
	font-size: 24px;
	line-height: 40px;
	position: relative;
}

.hsom-essentials-question {
	position: absolute;
	right: 0;
	top: 4px;
	background: url('images/question-icon.png') no-repeat;
	width: 17px;
	height: 17px;
	cursor: pointer;
}

.hsom-essentials-question-answer {
	display: none;
	position: absolute;
	padding: 15px;
	z-index: 100000;
	right: 1px;
	top: 18px;
	width: 450px;
	background: white;
	border: 1px solid #838385;
	font-weight: normal;
	font-size: 13px;
	color: #303030;
	line-height: normal;
	-moz-box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
	-webkit-box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
	box-shadow: 3px 3px 5px rgba(0,0,0,0.55);
}

.hsom-toolkt-main-header {
	margin-bottom: 20px;
}

.hsom-toolkt-main-header h2 {
	font-size: 24px;
	color: #cb9809;
}

.hsom-toolkt-main-header h2 > span {
	font-size: 24px;
	color: #838385;
}

.hsom-tookit-header-quote {
	background: url('images/mm-header-quote.jpg') no-repeat;
	padding-left: 65px;
	margin-top: -8px;
	margin-left: 50px;
	color: #838385;
	font-size: 14px;
	min-height: 68px;
}


.hsom-complete-button {
	position: relative;
	display: inline-block;
	height: 43px;
	min-width: 167px;
	line-height: 34px;
	font-size: 16px;
	text-align: center;
	background: url('images/gold-button-left.png') no-repeat left top;
	margin-bottom: 10px;
}

.hsom-complete-button,
.hsom-complete-button a {
	color: white;
	text-shadow: 1px 1px 3px #66541d;
}

.hsom-complete-button div {
	height: 43px;
	min-width: 167px;
	padding: 0 15px 0 40px;
	background: url('images/gold-button-right.png') no-repeat right top;
}

.hsom-complete-button.hsom-completed {
	background: url('images/green-button-left.png') no-repeat left top;
}

.hsom-complete-button.hsom-completed div {
	background: url('images/green-button-right.png') no-repeat right top;
}

.hsom-complete-button .hsom-complete-check {
	position: absolute;
	display: block;
	top: -6px;
	left: 20px;
	z-index: 50;
	width: 40px;
	height: 35px;
	background: url('images/completed-check-empty.png') no-repeat;
}

.hsom-complete-button.hsom-completed .hsom-complete-check {
	background: url('images/completed-check-checked.png') no-repeat;
}

.hsom-offer-locked-wrap {
	margin-top: 20px;
	padding: 14px;
	background: #e4e4e4; /* Old browsers */
	background: -moz-linear-gradient(top, #e4e4e4 0%, #d5d5d5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e4e4e4), color-stop(100%,#d5d5d5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #e4e4e4 0%,#d5d5d5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #e4e4e4 0%,#d5d5d5 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #e4e4e4 0%,#d5d5d5 100%); /* IE10+ */
	background: linear-gradient(to bottom, #e4e4e4 0%,#d5d5d5 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e4e4', endColorstr='#d5d5d5',GradientType=0 ); /* IE6-9 */
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	color: #8a8a8a;
}

.hsom-offer-locked {
	padding: 0 0 0 36px;
	min-height: 30px;
	background: url('images/lock-gray.png') no-repeat left top;
}

.hsom-offer-locked h3 {
	font-weight: bold;
	color: #8a8a8a;
}

.hsom-offer-unlocked-wrap {
	margin-top: 20px;
	padding: 10px 10px 2px 10px;
	background: #4a8136; /* Old browsers */
	background: -moz-linear-gradient(top, #4a8136 0%, #3e5e21 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4a8136), color-stop(100%,#3e5e21)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #4a8136 0%,#3e5e21 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #4a8136 0%,#3e5e21 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #4a8136 0%,#3e5e21 100%); /* IE10+ */
	background: linear-gradient(to bottom, #4a8136 0%,#3e5e21 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4a8136', endColorstr='#3e5e21',GradientType=0 ); /* IE6-9 */
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	color: white;
}

.hsom-offer-unlocked {
	padding: 0 0 0 40px;
	min-height: 30px;
	background: url('images/unlocked-check.png') no-repeat left top;
}

.hsom-offer-unlocked h3 {
	font-size: 26px;
	font-weight: bold;
	color: white;
}

.hsom-offer-unlocked-wrap > div {
	padding-bottom: 8px;
}

.hsom-offer-unlocked-wrap a {
	font-size: 14px;
}

.hsom-action-post h1,
.hsom-action-post h2,
.hsom-action-post h3 {
	color: #535353;
}

.hsom-toolkit-action {
	position: relative;
	padding-left: 50px;
	margin-bottom: 20px;
	font-size: 14px;
	color: #535353;
}

.hsom-toolkit-action h1 {
	padding-top: 5px;
	font-size: 22px;
}

.hsom-toolkit-action-button {
	position: absolute;
	left: 0;
	top: 0;
	background: url('images/toolkit-icon-play-large.png') no-repeat;
	width: 40px;
	height: 50px;
	cursor: pointer;
}

.hsom-toolkit-action-button a {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.hsom-toolkit-action-button.hsom-completed {
	background: url('images/toolkit-icon-complete-large.png') no-repeat;
}

.hsom-toolkit-action blockquote {
	padding: 10px 15px;
	margin: 5px 10px 0 0;
	background: #ececec;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.45);
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.45);
	box-shadow: 1px 1px 2px rgba(0,0,0,0.45);
}

/* ************************************************************************ */
/* Footer */

.hsom-section-wrap-footer {
	background: black;
	color: #e0e0e0;
	font-size: 10px;
	text-align: center;
}

.hsom-footer-gap {
	padding-top: 30px;
}

.hsom-section-wrap-odd + .hsom-footer-gap {
	background: #f7f7f7;
}

.hsom-footer-line {
	margin-bottom: 0.25em;
}
