/*
Theme Name: Default Theme - FEB 2014
Theme URI: http://www.internetstack.com/
Author: INTERNETSTACK
Author URI: http://www.internetstack.com/
Description: Designed by www.internetstack.com.
Version: 9.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, light, white, black, gray, one-column, two-columns, left-sidebar, right-sidebar, fixed-width, flexible-width, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: internetstack-2014.FEB-v1
Template: internetstack-2014.FEB-v1
*/

/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */

@import url(//fonts.googleapis.com/css?family=Open+Sans:100,400,700,800);


small {
    font-size: smaller !important;
}

#author-link{
    display: block;
    clear: none;
    padding-top: 60px;
    left: -120px;
    position: absolute;
    width: 100px;
    text-align: center;
}

#author-link img{
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    vertical-align: middle;
    background-color: #f1f1f1;
}

#author-link .post-date{
    font-size: 11px;
    color: #838383;
}

.download_invoice{
    background-image: url('icons/pdf_icon_16x16.png') !important;
    background-repeat: no-repeat !important;
    background-position: 5px center !important;
    text-indent: 20px;
    clear: both;
    display: block !important;
    width: 100px;
    margin: 20px 0px;
}


/*
	LIVE CHAT
*/

.live_chat{
    width: 250px;
    height: 350px;
    position: fixed;
    bottom: -300px;
    background: #f1f1f1;
    right: 10%;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    z-index: 9999;
    -moz-box-shadow: 0 3px 9px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.2);
    box-shadow: 0 3px 9px rgba(0,0,0,0.2);
    overflow: hidden;
}

.live_chat.alert{
    z-index: 99999;
}

.live_chat .received,
.live_chat .sent{
    max-width: 200px;
    margin: 10px 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 5px;
    clear: both;
    display: block;
}

.live_chat .received{
    float: left;
    background-color: #D8D9E1;
}

.live_chat .sent{
    float: right;
    background-color: #DDE3D7;
}

.live_chat_header{
    width: 230px;
    background: #931251;
    height: 30px;
    color: white;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

.live_chat_body{
    overflow-y: auto;
    height: 230px;
}

.live_chat_message{
    bottom: 0px;
    left: 0px;
    width: 180px;
    height: 50px;
    position: absolute;
    padding: 10px;
    border: 0px;
    border-top: 1px solid #eee;
    resize: none;
	-moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

.live_chat_last_online,
.live_chat .live_chat_url{
    font-size: 9px;
    line-height: 10px;
}

.live_chat_last_online{
    display: none;
}

.live_chat_send{
    bottom: 0px;
    right: 0px;
    width: 50px;
    height: 70px;
    position: absolute;
    text-indent: -1000px;
    background-color: #EED3E1;
    border: 0px;
    border-top: 1px solid #eee;
    background-image: url('icons/arrow.png');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.live_chat_close{
    width: 20px;
    height: 20px;
    display: none;
    background-image: url('icons/waste_basket.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    background-color: #AB2466;
    padding: 5px;
    cursor: pointer;
    float: right;
}

.live_chat_last_online.active{
    display: block;
}


.live_chat.multiple.active .live_chat_close{
    display: inline-block;
}

.live_chat.multiple .live_chat_last_online{
    width: 40px;
    display: block;
    margin: -5px;
    font-size: 8px;
}

.live_chat.multiple.active .live_chat_last_online{
    width: initial;
    font-size: 9px;
    margin: 0px;
}

.live_chat.multiple{
    width: 50px;
}

.live_chat .live_chat_url,
.live_chat.multiple .live_chat_header_title,
.live_chat.multiple .live_chat_close{
    display: none;
}

.live_chat.multiple.active .live_chat_header_title{
    line-height: 15px;
}

.live_chat.multiple.active .live_chat_header_title,
.live_chat.multiple.active .live_chat_close,
.live_chat.multiple.active .live_chat_url{
    display: block;
}

.live_chat.active{
    width: 250px;
    bottom: 0px;
    z-index: 99999;
    width: 250px;
}

.live_chat_header.new-message{
    background-image: url('icons/error-exclaim.png');
    background-repeat: no-repeat;
    background-position: 10px;
    animation: live_chat_flash 2s infinite;
    -webkit-animation: live_chat_flash 2s infinite; /* Safari and Chrome */
    text-indent: -1000px;
}

@keyframes live_chat_flash
{
    0%   {background-color: orange;}
    50%  {background-color: yellow;}
    100% {background-color: orange;}
}

@-webkit-keyframes live_chat_flash /* Safari and Chrome */
{
    0%   {background-color: orange;}
    50%  {background-color: yellow;}
    100% {background-color: orange;}
}

/*
	A white color scheme for Twenty Eleven
*/

body{
    background:#f9f9f9;
}

body.search h1.entry-title{
	font-size: 13px !important;
}

body.search time{
	display: none !important;
}

body.single-account #secondary{
    display: none !important;
}


#access ul ul a{
	background: white;
	border-bottom: none;
}

#access ul.menu > li{
	height: 30px;
}

a.breadcrumb{
    display: block;
    clear: both;
    margin: 0px 0px 30px 0px;
}


#access ul ul{
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
	-moz-box-shadow: 1px 2px 2px 1px rgba(0,0,0,0.15);
	-webkit-box-shadow: 1px 2px 2px 1px rgba(0,0,0,0.15);
	box-shadow: 1px 2px 2px 1px rgba(0,0,0,0.15);
}

input[type=text],
input[type=datetime],
input[type=number],
input[type=url],
input[type=password],
textarea,
select{
	-webkit-appearance: none;
	margin: 0px;
	border: 1px solid rgba(0, 0, 0, 0.48);
	border-radius: 3px;
	line-height: 24px;
	padding: 4px 7px 5px 10px;
	-webkit-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
	-moz-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
	box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
}

#featured-image{
	margin:0px auto;
	text-align:center;
	width:100%;
	overflow:hidden;
	display:block;
	position: relative;
	top: -8px;
	background: #FECD04;
	background: -moz-linear-gradient(top,#FFD93C 0%,#FECD04 100%) 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#FFD93C),color-stop(100%,#FECD04 100%)));
	background: -webkit-linear-gradient(top,#FFD93C 0%,#FECD04 100%) 100%);
	background: -o-linear-gradient(top,#FFD93C 0%,#FECD04 100%) 100%);
	background: -ms-linear-gradient(top,#FFD93C 0%,#FECD04 100%) 100%);
	background: linear-gradient(to bottom,#FFD93C 0%,#FECD04 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFD93C',endColorstr='#FECD04 100%)',GradientType=0);
	border-top: 1px solid #F1C50E;
	border-bottom: 1px solid #F1C50E;
}

#featured-image_REDOLD {
	margin: 0px auto;
	text-align: center;
	width: 100%;
	overflow: hidden;
	display: block;
	background: #E62A10;
	background: -moz-linear-gradient(top,#E62A10 0%,#C00A0A 100%) 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#E62A10),color-stop(100%,#C00A0A 100%)));
	background: -webkit-linear-gradient(top,#E62A10 0%,#C00A0A 100%) 100%);
	background: -o-linear-gradient(top,#E62A10 0%,#C00A0A 100%) 100%);
	background: -ms-linear-gradient(top,#E62A10 0%,#C00A0A 100%) 100%);
	background: linear-gradient(to bottom,#E62A10 0%,#C00A0A 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgb(230, 42, 16)',endColorstr='rgb(192, 10, 10) 100%)',GradientType=0);
}

#wpadminbar{
	display: none !important;
}

html{
    margin-top: 0px !important;
}

.yellow_bg1{
	background-color: #FECD04;
	color: white;
	font-weight: bold;
}

.yellow_bg2{
	background-color: #FFD93C;
	color: white;
	font-weight: bold;
}

.purple_bg1{
	background-color: #931251;
	color: white;
	font-weight: bold;
}

.purple_bg2{
	background-color: #931251;
	color: white;
	font-weight: bold;
}

.green_bg1{
	background-color: #3C551F;
	color: white;
	font-weight: bold;
}

.green_bg2{
	background-color: #557135;
	color: white;
	font-weight: bold;
}

.blue_bg1{
	background-color: #2A2F55;
	color: white;
	font-weight: bold;
}

.blue_bg2{
	background-color: #393F6A;
	color: white;
	font-weight: bold;
}

.red_bg1{
	background-color: #D40000;
	color: white;
	font-weight: bold;
}

.red_bg2{
	background-color: #DF2B2B;
	color: white;
	font-weight: bold;
}

.grey_bg1{
	background-color: #F1F1F1;
	color: white;
	font-weight: bold;
}

.grey_bg2{
	background-color: #77758D;
	color: white;
	font-weight: bold;
}

.notapplicable{
	color: rgba(0, 0, 0, 0.3);
}

hr{
margin: 50px 0px;
position: relative;
height: 0px;
border-style:solid;
border-top: 1px solid #DDD;
border-bottom: 1px solid white;
margin-bottom: 1.625em;
color:transparent;
}

#akismet-warning,
.entry-format{
    display: none;
}

.checkout .submit{
	background: white !important;
}

a[rel=home]:hover{
    opacity: 0.7;
}


#featured-image{
	margin:0px auto;
	text-align:center;
	width:100%;
	overflow:hidden;
	display:block;
}


#stack_widget-2{
	position: absolute;
	top: 0px;
	right: 10%;
}



.singular .entry-content .section h2{
    font-size: 20px;
    color: #474a54;
    font-weight: normal;
}


.singular .entry-content .section{
    min-height: 250px;
    font-size: 16px;
    color: #474a54;
}

.singular .entry-content .section h2.special{
    font-size: 50px;
    line-height: 50px;
}

.singular .entry-content .section h2.special.blue{
    color: #0065B3;
}

.singular .entry-content .section h2.special.green{
    color: #557135;
}

.singular .entry-content .section h2.special.red{
    color: #DF2B2B;
}

.singular .entry-content .section h2.special.purple{
    color: #AB2466;
}

.singular .entry-content .section h2.special.yellow{
    color: #FFD93C;
}

.singular .entry-content .section.special{
    color: #858585;
    font-size: 22px;
}

.singular .entry-content .section{
    -webkit-box-shadow: 10px 20px 10px -20px rgba(0,0,0,0.2);
    -moz-box-shadow: 10px 20px 10px -20px rgba(0,0,0,0.2);
    box-shadow: 10px 20px 10px -20px rgba(0,0,0,0.2);
    padding: 50px 0px;
}


.singular .entry-content .section .cell-third{
    width: 28%;
    float: left;
    text-align: left;
    margin: 2%;
}


.singular .entry-content .section .cell-half{
    width: 45%;
    float: left;
    text-align: center;
}

.singular .entry-content .section .cell-half.text{
    padding: 50px 15px;
}

.singular .entry-content .section.tall{
    min-height: 400px;
}

.singular .entry-content .section:last-of-type{
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.singular .entry-content .section .alignleft{
    text-align: left;
}


/* Campaign Monitor and Individuals */

.price-overview .meta {
color: #AAA;
font-weight: 500;
padding-left: 5px;
font-size: 12px;
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
zoom: 1;
line-height: .95;
position: relative;
top: -8px;
}

.price-overview .plus{
    margin: 0px 30px;
}


.price-overview {
display: block;
position: relative;
margin-top: 25px;
margin-left: 1px;
font-weight: bold;
margin: 50px 20px;
}

.symbol.small {
    font-size: 70px;
    top: -4px;
    color: #0065B3;
}

.amount.small {
    font-size: 70px!important;
    color: #0065B3;
}

.meta.small {
margin: 0px 10px;
top: -6px;
text-align: left;
}

.meta.no-right-margin {
margin-right: 0!important;
}




.renewal_list .expiry-date{
    position: absolute;
    right: 10px;
}

.renewal_list ul{
    margin: 50px 0px;
}

.renewal_list li{
    list-style: none;
    position: relative;
    display: block !important;
    width: 500px;
}

.renewal_list li:hover{
    background: #eee;
}








/* ======================================
 * UTILITY CLASSES
 * ======================================
 */

.hide {
	left: -999999px;
	position: absolute;
}

/* ======================================
 * NOSCRIPT STYLES
 * ======================================
 */

.no-js .credit-card-group			{ border: 0; }
.no-js .credit-card-group input		{ margin-top: 10px; }

/* ======================================
 * SCRIPT STYLES
 * ======================================
 */
.js .credit-card-group {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;

	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-o-perspective: 1000;
	perspective: 1000;

	border: 1px solid rgba(0, 0, 0, 0.48);
	border-radius: 3px;
	line-height: 24px;
	padding: 4px 20px 5px 10px;
	-webkit-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
	-moz-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
	box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
	
	background: #FFF;
	overflow: hidden;
	width: 265px;
	height: 28px !important;
}

.js .credit-card-group input {
	background: transparent !important;
	border: 0;
	box-shadow: none;
	outline: 0;
	padding: 0;
	vertical-align: 13%;
	display: inline-block !important;
}

.js .credit-card-group input.card-number {
	width: 206px !important;
}

.js .credit-card-group input.card-number.transitioning-out {
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-duration: .4s;
	-moz-animation-duration: .4s;
	-o-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: slide;
	-moz-animation-name: slide;
	-o-animation-name: slide;
	animation-name: slide;
}
.js .credit-card-group input.card-number.transitioning-in {
	-webkit-transition: width 0s linear;
	-moz-transition: width 0s linear;
	-ms-transition: width 0s linear;
	-o-transition: width 0s linear;
	transition: width 0s linear;
	width: 206px;
}

.js .credit-card-group input.card-expiration		{ width: 28% !important; }
.js .credit-card-group input.card-zip 				{ width: 20% !important; }
.js .credit-card-group input.card-cvv				{ width: 20% !important; }
.js .credit-card-group input.card-expiration.full,
.js .credit-card-group input.card-zip.full,
.js .credit-card-group input.card-cvv.full			{ text-align: center; }
.js .credit-card-group input.card-number.full		{ width: 15% !important; }


div.card-expiry select{
    width: 122px !important;
}

.credit-card-group .card-image {
	background: white url(icons/money.png) 50% 50% no-repeat;
	display: inline-block;
	height: 19px;
	margin: 3px 5px 0 3px;
	position: relative;
	width: 30px !important;
	z-index: 2;

	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;

	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

.credit-card-group .card-image.visa					{ background: url(icons/visa.png) 0 50% no-repeat; }
.credit-card-group .card-image.amex					{ background: url(icons/amex.png) 0 50% no-repeat; }
.credit-card-group .card-image.mc					{ background: url(icons/mastercard.png) 0 50% no-repeat; }
.credit-card-group .card-image.disc					{ background: url(icons/discover.png) 0 50% no-repeat; }

.credit-card-group .card-image.cvv2 {
	background: url(icons/cvv.png) 0 50% no-repeat;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.credit-card-group.invalid							{ border: 1px solid #A51D33; }
.credit-card-group.invalid input					{ color: #A51D33; }

.stripeTokenLabel{
    width: 290px !important;
}

.stripeToken{
    vertical-align: top;
    margin: 8px 20px;
    clear: left;
    float: left;
}

.card-digits{
    margin: 10px 0px 5px 0px;
}

.card-expiry{
    margin: 5px 0px;
}

.card-cvv{
    margin: 5px 0px;
}

.credit-card-group{
    border: 1px solid rgb(197, 197, 197);
    padding: 10px;
    background: rgb(247, 247, 247);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.11);
    color: rgba(0, 0, 0, 0.71);
    border-radius: 5px;
}

.shake {
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-o-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-duration: .4s;
	-moz-animation-duration: .4s;
	-o-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shake;
	-moz-animation-name: shake;
	-o-animation-name: shake;
	animation-name: shake;
}

/* ======================================
 * ANIMATIONS
 * ======================================
 */
@-webkit-keyframes shake {
  0%, 100% { -webkit-transform: translateX(0); }
  30%, 60% { -webkit-transform: translateX(-10px); }
  40%, 80% { -webkit-transform: translateX(10px); }
}

@-webkit-keyframes slide {
	0%, 10% { text-indent: 0; width: 186px; -webkit-transform: translateX(-10%); }
	10%, 20% { text-indent: -15px; width: 176px; -webkit-transform: translateX(-10%); }
	20%, 30% { text-indent: -30px; width: 156px; -webkit-transform: translateX(-10%); }
	30%, 40% { text-indent: -45px; width: 136px; -webkit-transform: translateX(0%); }
	40%, 50% { text-indent: -60px; width: 116px; -webkit-transform: translateX(0%); }
	50%, 60% { text-indent: -75px; width: 96px; -webkit-transform: translateX(0%); }
	60%, 70% { text-indent: -90px; width: 76px; -webkit-transform: translateX(0%); }
	70%, 80% { text-indent: -100px; width: 66px; -webkit-transform: translateX(0%); }
	80%, 90% { text-indent: -105px;width: 56px; -webkit-transform: translateX(0%); }
	90%, 100% { text-indent: -108px;width: 46px; -webkit-transform: translateX(0%); }
}

@-moz-keyframes slide {
	0%, 10% { text-indent: 0; width: 186px; -webkit-transform: translateX(-10%); }
	10%, 20% { text-indent: -15px; width: 176px; -webkit-transform: translateX(-10%); }
	20%, 30% { text-indent: -30px; width: 156px; -webkit-transform: translateX(-10%); }
	30%, 40% { text-indent: -45px; width: 136px; -webkit-transform: translateX(0%); }
	40%, 50% { text-indent: -60px; width: 116px; -webkit-transform: translateX(0%); }
	50%, 60% { text-indent: -75px; width: 96px; -webkit-transform: translateX(0%); }
	60%, 70% { text-indent: -90px; width: 76px; -webkit-transform: translateX(0%); }
	70%, 80% { text-indent: -100px; width: 66px; -webkit-transform: translateX(0%); }
	80%, 90% { text-indent: -105px;width: 56px; -webkit-transform: translateX(0%); }
	90%, 100% { text-indent: -108px;width: 46px; -webkit-transform: translateX(0%); }
}

@-o-keyframes slide {
	0%, 10% { text-indent: 0; width: 186px; -webkit-transform: translateX(-10%); }
	10%, 20% { text-indent: -15px; width: 176px; -webkit-transform: translateX(-10%); }
	20%, 30% { text-indent: -30px; width: 156px; -webkit-transform: translateX(-10%); }
	30%, 40% { text-indent: -45px; width: 136px; -webkit-transform: translateX(0%); }
	40%, 50% { text-indent: -60px; width: 116px; -webkit-transform: translateX(0%); }
	50%, 60% { text-indent: -75px; width: 96px; -webkit-transform: translateX(0%); }
	60%, 70% { text-indent: -90px; width: 76px; -webkit-transform: translateX(0%); }
	70%, 80% { text-indent: -100px; width: 66px; -webkit-transform: translateX(0%); }
	80%, 90% { text-indent: -105px;width: 56px; -webkit-transform: translateX(0%); }
	90%, 100% { text-indent: -108px;width: 46px; -webkit-transform: translateX(0%); }
}

@keyframes slide {
	0%, 10% { text-indent: 0; width: 186px; -webkit-transform: translateX(-10%); }
	10%, 20% { text-indent: -15px; width: 176px; -webkit-transform: translateX(-10%); }
	20%, 30% { text-indent: -30px; width: 156px; -webkit-transform: translateX(-10%); }
	30%, 40% { text-indent: -45px; width: 136px; -webkit-transform: translateX(0%); }
	40%, 50% { text-indent: -60px; width: 116px; -webkit-transform: translateX(0%); }
	50%, 60% { text-indent: -75px; width: 96px; -webkit-transform: translateX(0%); }
	60%, 70% { text-indent: -90px; width: 76px; -webkit-transform: translateX(0%); }
	70%, 80% { text-indent: -100px; width: 66px; -webkit-transform: translateX(0%); }
	80%, 90% { text-indent: -105px;width: 56px; -webkit-transform: translateX(0%); }
	90%, 100% { text-indent: -108px;width: 46px; -webkit-transform: translateX(0%); }
}

@-moz-keyframes shake {
  0%, 100% { -moz-transform: translateX(0); }
  30%, 60% { -moz-transform: translateX(-10px); }
  40%, 80% { -moz-transform: translateX(10px); }
}

@-o-keyframes shake {
  0%, 100% { -o-transform: translateX(0); }
  30%, 60% { -o-transform: translateX(-10px); }
  40%, 80% { -o-transform: translateX(10px); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  30%, 60% { transform: translateX(-10px); }
  40%, 80% { transform: translateX(10px); }
}




input.lock{
	background: url('icons/lock.png') 3px center no-repeat;
	background-size: 12px 12px;
	text-indent: 15px;
}

article.account .entry-meta{
	display:none;
}

#signup h1, 
#signup h2, 
#signup h3, 
#signup h4, 
#signup h5, 
#signup h6{
	clear: both;
	display: block;
}


#simple-my-account-user select{
	background-image: url('icons/down.png');
	background-position: 100% center;
	background-repeat: no-repeat;
	background-size: auto 18px;
}

div.subscriber-email{
	width: 45%;
	display: inline-block;
	background: #fafafa;
	border: 1px solid #EEE;
	float: left;
	margin: 5px 5px 5px 0px;
	padding: 3px;
	overflow: hidden;
	cursor: default;
	min-width: 300px;
}

div.email_template img{
	margin-bottom: 15px;
}

div.email_template{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #f1f1f1;
	padding: 15px;
	width: 200px;
	margin: 0px 50px 50px 0px;
	float: left;
}

div.email_template .preview,
div.email_template .create-new,
div.email_template .edit-campaign{
	font-size: small;
	padding: 3px 8px;
	width:170px;
	clear:both;
	display: block;
	margin: 5px 0px;
	background-color: #FFF;
	color: #535353 !important;
	text-shadow: none;
	font-weight: normal;
}

div.email_template .button:hover{
	background-color: #DDD;
}

div.email_template small{
	font-size: smaller;
}

#signup legal{
	background-image: url('icons/error-exclaim.png') !important;
	background-position: 97% center !important;
	background-repeat: no-repeat !important;
	background-size: auto 18px !important;
	height: 18px;
	width: 18px;
	float: right;
	clear: right;
	opacity: 0.7;
}

#signup legal:hover{
	opacity: 1;
}

#signup #product_hosting{
    margin-top: 140px;
}

#simple-my-account-content label{
	width: 150px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	line-height:30px;
}

#simple-my-account-content iframe{
	width: 100%;
	height: 1200px;
    z-index: 9998;
}

#simple-my-account-content iframe.campaigns{
	background: #f9f9f9;
    position: fixed;
    left: 0px;
    top: 85px;
    height: 95%;
}

#simple-my-account-content iframe.subscribers{
	background: #f9f9f9;
    border: 0px;
    position: fixed;
    left: 0px;
    top: 85px;
    height: 95%;
}

.voucher-token{
    display: block;
    clear: both;
    background-color: rgb(203, 255, 203);
    border: 1px solid rgb(147, 247, 147);
    padding: 5px 5px 5px 50px;
    background-image: url('icons/money_2X.png');
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: 5px center;
    height: 25px;
    margin: 20px 0px;
    cursor: default;
    width: 350px;
}

.voucher-token div{
    display: inline-block;
    clear: left;
    margin-right: 20px;
}

.voucher-number{
    opacity: 0.6;
}

.voucher-amount{
    font-weight: bold;
}

#simple-my-account-content legal{
	background-image: url('icons/error-exclaim.png') !important;
	background-position: 97% center !important;
	background-repeat: no-repeat !important;
	background-size: auto 18px !important;
	height: 18px;
	width: 18px;
	float: right;
	clear: right;
	opacity: 0.7;
}

#simple-my-account-content legal:hover{
	opacity: 1;
}

#simple-my-account-content #newticket{
	float: right;
	background-color: #fafafa;
	border: 1px solid #f1f1f1;
	border-radius: 5px;
	width: 35%;
	padding: 10px;
	margin: 0px 0px 50px 0px;
}

#simple-my-account-content #newticket textarea{
	width: 80%;
}

#simple-my-account-content #raisedtickets{
	min-width: 60%;
	float: left;
}

#simple-my-account-content input.submit{
	margin: 0px !important;
}


#simple-my-account-right{
	width: 100%;
	clear: both;
	display: block;
}

#simple-my-account-content hr{
	clear: both;
}

#simple-my-account-content label[for='simple-local-avatar']{
	display: none;
}

#simple-my-account-content input.button,
#simple-my-account-content input.submit{
	clear:both;
	margin: 50px 0px;
}

#simple-my-account-content img.avatar{
	max-width: none !important;
    border-radius: 100px;
}

#simple-my-account-user label{
    clear: left;
	float: left;
	width: 150px;
	display: inline-block;
	margin-bottom: 10px;
}

#simple-my-account-content .remove_nameserver{
    background-image: url('icons/delete.png');
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center center;
    display: inline-block;
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin-left: 5px;
    text-indent: -1000px;
    vertical-align: middle;
}

#simple-my-account-content .remove_nameserver.active{
    background-image: url('icons/ajax-load-fb-tan.gif');
}

#simple-my-account-user input,
#simple-my-account-user select{
	float: left;
	display: inline-block;
    clear: none;
	width: 200px;
	margin-bottom: 10px;
}

#simple-my-account-user input[type=checkbox]{
    width: 10px;
}

#simple-my-account-user #first_visit_page{
    clear: both;
    float: none;
}

#simple-my-account-user label.no-clear{
    clear: none;
    line-height: 15px;
}

#simple-my-account-user table.form-table span.description,
#simple-my-account-user table.form-table,
#simple-my-account-user h3{
	display: none;
}

#simple-my-account-content p.error{
	border: 1px solid rgb(255, 224, 0);
	background: rgb(255, 255, 144);
	padding: 10px 5px;
}

.payment-errors{
	border: 1px solid rgb(255, 224, 0);
	background: rgb(255, 255, 144);
	padding: 20px;
    display: none;
    clear: both;
    margin: 20px 0px;
}



#simple-my-account-content #overview{
	padding: 0px;
	width: 90%;
}

#simple-my-account-content .cell{
	display: inline-block;
	min-width: 120px;
	padding: 5px 15px 5px 35px;
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: 10px 10px;
	cursor: default;
	border: 1px solid transparent;
}

#simple-my-account-content .cell p,
#simple-my-account-content .row p{
    margin: 0px;
}


#simple-my-account-content .link{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#simple-my-account-content .link:hover{
	cursor: pointer;
	border-color: #ededed;
}

#simple-my-account-content .row{
	display: block;
	clear: both;
	width: 100%;
	border: 1px solid transparent;
}

#simple-my-account-content .row-header{
	display: block;
	clear: both;
	font-weight: bold;
	width: 100%;
	border: 1px solid transparent;
	margin-top: 15px;
}

#simple-my-account-content .row-header:nth-of-type(n+2) .cell{
	padding-top: 30px;
	background-position: 10px 35px;
	border-top: 1px solid #eee;
}


#simple-my-account-content .row[for=nameservers]{
	width: 183% !important;
	background: rgb(252, 252, 252);
	border: 1px solid #eee;
	box-shadow: 1px 1px 2px #f1f1f1;
}

#simple-my-account-content server{
	clear: left;
	display: block;
	float: left;
}

#simple-my-account-content host,
#simple-my-account-content ip{
	padding: 2px 5px;
	margin: 0px 10px 0px 0px;
}

#simple-my-account-content .fullspan{
	column-span:all;
	-webkit-column-span:all; /* Safari and Chrome */
}

#simple-my-account-content .domain{
	padding-left: 0px;
	width: 100%;
}

#simple-my-account-content div[meta],
#simple-my-account-content .hoverbox,
#simple-my-account-content .settings{
	border: 1px solid transparent;
	min-width: 250px;
    color: rgb(55, 55, 55);
}

#simple-my-account-content .hoverbox:hover,
#simple-my-account-content .settings:hover,
#simple-my-account-content .settings.active{
	border-color: #ededed;
	background-color: #fafafa;
    text-decoration: none;
}

#simple-my-account-content .hoverbox{
    cursor: pointer;
}

#simple-my-account-content div[meta].active{
    cursor: default !important;
    text-decoration: none !important;
    width: 100%;
    box-shadow: 0px 3px 4px #EEE;
    -moz-box-shadow: 0px 3px 4px #EEE;
    -webkit-box-shadow: 0px 3px 4px #EEE;
    border-color: #EDEDED !important;
    background-color: #FFF !important;
}

#simple-my-account-content div[meta].active + .domain_renew,
#simple-my-account-content div[meta].active + .hosting_renew{
    cursor: default !important;
    border-bottom: 1px solid #EDEDED;
    border-left: 1px solid #EDEDED;
    border-right: 1px solid #EDEDED;
    text-decoration: none !important;
    width: 100%;
    box-shadow: 0px 3px 4px #EEE;
    -moz-box-shadow: 0px 3px 4px #EEE;
    -webkit-box-shadow: 0px 3px 4px #EEE;
    z-index: 9999;
    position: relative;
    padding: 20px 15px 20px 35px;
    background: #FFFF90;
}

#simple-my-account-content .settings .domain_label,
#simple-my-account-content .settings .hosting_label,
#simple-my-account-content .settings .payment_label,
#simple-my-account-content .settings .status_indicator{
    cursor: pointer;
}

#simple-my-account-content .domain_renew,
#simple-my-account-content .hosting_renew{
    padding-left: 35px;
}

#simple-my-account-content .domainstatus{
	background-image: url('icons/globe.png');
}

#simple-my-account-content .domainstatus[provider=OTH]{
	background-image: url('icons/globe-ext.png');
}

#simple-my-account-content .domainstatus[status=STE]{
	background-image: url('icons/globe-ext.png');
}

#simple-my-account-content .domainstatus[redirect]{
    background-image: url('icons/shuffle.png');
}

#simple-my-account-content .status_indicator{
    background-color: #ddd;
	width: 200px;
    height: 5px;
    margin: 10px 0px;
}

#simple-my-account-content .status_bar{
    height: 5px;
    width: 5%;
    background-color: #0065b3;
}

#simple-my-account-content .settings:not(.active){
    cursor: pointer;
}

#simple-my-account-content .settings:not(.active):hover{
    background-image: url('icons/down.png');
    background-size: 26px;
    background-position: 8px 10px;
}

#simple-my-account-content .settings.active.up{
    background-image: url('icons/up.png');
    background-size: 26px;
    background-position: 8px 10px;
}


/* BEGIN general status indicators */

#simple-my-account-content div[status=STR] .status_indicator{ display: none; }
#simple-my-account-content div[status=STE] .status_indicator{ display: none; }
#simple-my-account-content div[status=STA] .status_indicator{ display: none; }

#simple-my-account-content div[status=STR] .status_bar{ width: 100%; }
#simple-my-account-content div[status=STA] .status_bar{ width: 100%; }

#simple-my-account-content div[status=STD] .status_bar{ width: 10%; background-color: #d40000; }

#simple-my-account-content div[status=STS] .status_bar{ width: 66%; }
#simple-my-account-content div[status=STP] .status_bar{ width: 33%; }

/* END general status indicators */



/* BEGIN hosting status dependent on domain setup */

#simple-my-account-content div[domainstatus=STS] .status_bar{ width: 5%; }
#simple-my-account-content div[domainstatus=STU] .status_bar{ width: 5%; }
#simple-my-account-content div[domainstatus=STP] .status_bar{ width: 5%; }

/* END hosting status dependent on domain setup */




#simple-my-account-content .backorder{
	background-image: url('icons/trolley.png');
}

#simple-my-account-content .hosting{
	background-image: url('icons/network.png');
}

#simple-my-account-content .hosting[quota=NA]{
	background-image: url('icons/network-off.png');
}

#simple-my-account-content .hosting[provider=OTH],
#simple-my-account-content .hosting[status=STE]{
	background-image: url('icons/network-ext.png');
}

#simple-my-account-content .email{
	background-image: url('icons/letter_open.png');
}

#simple-my-account-content .reports{
	background-image: url('icons/graph_bar_trend.png');
}

#simple-my-account-content .subscribers{
	background-image: url('icons/people_family.png');
}

#simple-my-account-content .cell[status=STS]{
	background-image: url('icons/clock.png');
}

#simple-my-account-content .cell[status=STP]{
	background-image: url('icons/clock.png');
}

#simple-my-account-content .loading{
	background-image: url('icons/ajax-loader-tan.gif');
	background-position: 10px 13px;
    background-repeat: no-repeat;
    min-height: 40px;
}

#simple-my-account-content .payment{
	background-image: url('icons/piggy_bank.png');
}

#simple-my-account-content .noicon{
	padding-left: 0px !important;
}

#simple-my-account-content ajax{
	display: inline;
	padding-right: 0.3em;
	font-size: 0px;
	-webkit-transition: all .2s ease;
       -moz-transition: all .2s ease;
            transition: all .2s ease;
}

#simple-my-account-content ajax.complete{
	font-size: inherit !important;
}

#simple-my-account-content ajax.loading{
	width: 16px;
	display: block;
	content: '';
	height: 11px;
	min-height: 11px;
	min-width: 16px;
	background-position: 0px 0px;
	float: left;
	margin: 0px 10px 0px 0px;
}

#simple-my-account-content .narrow{
	width: 5px !important;
}

#simple-my-account-content .hidden{
	display: none;
}


#campaign_new_init label{
	clear: both;
	display: block;
}

#campaign_new_init input.button{
	clear: both;
	display: block;
}


#simple-my-account-content .toggle {
    display: block;
    width: 170px;
    height: 25px;
    overflow: hidden;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
    background-repeat: no-repeat;
    background-position: 50%;
}

#simple-my-account-content .toggle.auto_renew {
    width: 127px;
}

#simple-my-account-content .toggle input[type=checkbox] {
    display: none;
}

#simple-my-account-content .toggle input[type=checkbox] + label {
    margin: 0;
    padding: 0;
    cursor: pointer;
    text-indent: -9999px;
    display: block;
    width: 100%;
    height: 100%;
    background: transparent url(icons/toggle.png) no-repeat -46px 0;
    -webkit-transition: background-position 0.2s ease-in-out;
    -moz-transition: background-position 0.2s ease-in-out;
}

#simple-my-account-content .toggle.auto_renew input[type=checkbox] + label {
    background: transparent url(icons/toggle-autorenew.png) no-repeat -103px 0;
}

#simple-my-account-content .toggle input[type=checkbox]:checked + label {
    -webkit-transition: background-position 0.2s ease-in-out;
    -moz-transition: background-position 0.2s ease-in-out;
    background-position: 0;
}

#simple-my-account-content .toggle input[type=checkbox]:disabled + label {
    background-image: url(icons/toggle-disabled.png);
}

#simple-my-account-content .toggle.active input[type=checkbox] + label{
    opacity: 0.1;
}

#simple-my-account-content .toggle.active{
    background-image: url('icons/ajax-load-fb-tan.gif');
}

.users{
	margin: 5px;
	list-style: none;
}

.last_login{
	display: inline-block;
	font-size: 11px;
	position: absolute;
    left: 700px;
    padding: 5px;
}

.users .viewas{
	position: absolute;
    right: 5px;
	display: inline-block;
	font-size: 10px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	padding: 1px 4px;
	background: #F1F1F1;
	font-weight: bold;
	color: rgba(0, 0, 0, 0.6);
	opacity: 0;
	cursor: pointer;
}

.users .email-sent{
    background-color: rgb(255, 239, 189);
    background-image: url('icons/letter_closed.png');
    background-repeat: no-repeat;
    background-position: 300px 5px;
}

#simple-my-account-content .users .status_bar{
    background-color: #DF2B2B;
}

#simple-my-account-content .users .status_indicator{
    display: inline-block;
    position: absolute;
    left: 400px;
}

#simple-my-account-content .users .status_bar[total="100"]{
    background-color: #F5F5F5;
}

.users li:hover .viewas{
	opacity: 0.7;
}

.users li:hover .viewas:hover{
	opacity: 1.0;
}

.users .displayname{
	display: inline-block;
	line-height: 30px;
}

.newMetaMenu{
	display: none;
	background-image: url('icons/plus.png');
	background-repeat: no-repeat;
	background-size: 8px;
	background-color: transparent;
	opacity: 0.7;
	height: 20px;
	width: 70px;
	background-position: 5px 5px;
	margin-right: 10px;
	position: absolute;
    right: 100px;
	padding: 0px 4px 4px 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #F1F1F1;
    height: 15px;
}

.newMetaMenu:hover{
	opacity: 1;
    height: auto;
    padding: 25px 4px 4px 4px;
}

ul.users li.active:hover .newMetaMenu{
	display: inline-block;
}

ul.users li[sync=ready]{
	background-image: url('icons/ajax-loader-tan.gif');
	background-size: 16px;
	background-position: 350px center;
	background-repeat: no-repeat;
}

ul.users li[sync=done]{
	background-image: url('icons/tick.png');
	background-size: 16px;
	background-position: 350px center;
	background-repeat: no-repeat;
}

.newMetaMenu li{
	display: none;
	text-align: left;
	font-size: 12px;
	cursor: pointer;
}

.newMetaMenu:hover li{
	display: block;
}

.newMetaMenu li:hover{
	color: rgb(212,0,0);
}

.wpdata .edit{
	background-image: url('icons/pencil.png');
	background-size: 16px;
	background-position: center right;
	background-repeat: no-repeat;
}

.wpdata h3 div.title{
	display: inline-block;
}

.wpdata desc{
	margin-left: 20px;
	font-size: 10px;
	color: rgba(0,0,0,0.5);
	text-transform: uppercase;
	font-weight: normal;
}

.wpdata ul{
	list-style: none;
}

.wpdata > ul > li > ul > li{
	margin: 3px 0px;
}

.wpdata h3{
	font-weight: bold;
	font-size: 12px;
	display: inline-block;
	color: rgb(0, 83, 148);
}

.wpdata h3:hover{
	color: rgb(0,101,179);
}

.wpdata > ul > li{
	margin: 20px 0px;
}

.wpdata ul > li > ul{
	display: none;
}

.wpdata label{
	text-transform: uppercase;
	font-size: 11px;
	width: 200px;
	vertical-align: top;
}

.wpdata input,
.wpdata textarea{
	width: 300px;
}

.users > li{
	cursor: default;
	margin: 5px 0px;
	border-radius: 3px;
	border: 1px solid transparent;
	padding: 5px;
	height: 30px;
	overflow: hidden;
	width: 100%;
	display: block;
	background-color: rgba(0,0,0,0.02);
	-webkit-transition: background 0.1s ease-in;
	-moz-transition: background 0.1s ease-in;
	-o-transition: background 0.1s ease-in;
	transition: background 0.1s ease-in;
	background-position: 95% center;
}

.users li.active{
	background-color: rgba(255,248,216,1);
	height: auto;
	min-height: 100px;
}


.users li img.avatar{
	text-align: left;
	float: left;
	vertical-align: middle;
	margin: 5px 10px 5px 5px;
	box-shadow: none;
	height: 24px;
	width: 24px;
}


#simple-my-account-content date{
	color: rgb(119, 119, 119);
	float: right;
	font-weight: normal;
}

#STACK_BusinessNumberType{
	font-size: smaller;
}

#simple-my-account-content .invalid{
	border-color: rgb(255, 133, 0) !important;
	background-image: url('icons/error-exclaim.png') !important;
	background-position: 97% center !important;
	background-repeat: no-repeat !important;
	background-size: auto 18px !important;
}



#STACK_NewProduct_image{
	background: white url('icons/photos_polaroid.png') 3px center no-repeat;
	background-size: 12px 12px;
	text-indent: 15px;
	cursor: default;
}

.website_thumb{
	width: 100%;
	clear: both;
	margin: 10px 0px;
	padding: 10px 0px;
	border-bottom: 1px solid #eee;
	float: left;
	display: block;
}

.website_thumb img{
	width:30%;
	float: right;
	margin: 0px 0px 20px 50px;
}

.website_thumb:last-of-type{
	border-bottom: none;
}

.load{
	background: url('icons/load.gif') center center no-repeat;
	width: 50px;
	height: 30px;
}

body.wp-core-ui #login h1 a{
    display: none;
}

body.wp-core-ui #login h1{
    display: block;
	background-image: url('images/logo.png') !important;
    background-repeat: no-repeat !important;
    background-size: auto;
    background-position: center 30px !important;
	height: 18px !important;
    width: 166px !important;
    background: #0065b3;
    height: 86px !important;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100% !important;
}

body.wp-core-ui p.submit{
    background: transparent !important;
    border: 0px !important;
    text-shadow: 0px;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    display: block;
}

body.wp-core-ui #login a{
	color: #e3322b !important;
}

body.wp-core-ui #login .button{
	height: 35px;
	overflow: visible;
	text-align: left;
	cursor: pointer;
	color: white!important;
	background-color: #e3322b !important;
	background: #7ebd26 -moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0.15) 100%);
	background: #7ebd26 -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0.15)));
	background: #7ebd26 -webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0.15) 100%);
	background: #7ebd26 -o-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0.15) 100%);
	background: #7ebd26 -ms-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0.15) 100%);
	background: #7ebd26 linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0.15) 100%);
	padding: 8px 12px 10px 12px;
	font-size: 16px;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	border: 1px solid rgba(0,0,0,0.1);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	font-family: 'Open Sans', "Helvetica Neue",HelveticaNeue,Arial,Helvetica,sans-serif;
	font-weight: bold;
	-webkit-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
	-moz-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
	box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-transition-duration: .3s;
	line-height: 1;
    float: right;
}






/* Collapsible content areas
------------------------------------------ */

H4{
	padding: 25px 0px 0px 25px;
	text-indent: 25px;
	cursor: pointer;
	background-image: url('./images/expand-icon.png');
	background-repeat: no-repeat;
	background-position: 0px 5px;
	display: inline-block;
	clear: both;
}

H4.active{
	background-image: url('./images/collapse-icon.png');
}

H5{
	padding: 0px 0px 0px 25px !important;
	cursor: pointer;
	background-image: url('./images/expand-icon.png');
	background-repeat: no-repeat;
	background-position: 3px 3px;
	display: inline-block;
	clear: both;
}

table.compare{
	cursor: default;
}

table.compare tr:nth-child(even){
	background: #fafafa;
}

table.compare tr:nth-child(odd){
	background: #f5f5f5;
}

table.compare td:nth-child(2n+3){
	background: rgba(0,0,0,0.02);
}

table.compare td:nth-child(n+2){
	text-align: center;
}

table.compare tr.highlight{
	background: #fecd04;
}

table.compare td{
	padding: 10px;
}

table.compare tr.header{
	background: #f1f1f1;
}

table.compare tr.header td:first-of-type{
	background: #f9f9f9;
}


.button,
.submit{
	overflow: visible;
	text-align: left;
	cursor: pointer;
	color: white!important;
	background-color: #003258;
	background: #003258 -moz-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0.15) 100%);
	background: #003258 -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,0.15)));
	background: #003258 -webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0.15) 100%);
	background: #003258 -o-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0.15) 100%);
	background: #003258 -ms-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0.15) 100%);
	background: #003258 linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,0.15) 100%);
	padding: 8px 12px 10px 12px;
	font-size: 15px;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	border: 1px solid rgba(0,0,0,0.1);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
	font-family: 'Open Sans', "Helvetica Neue",HelveticaNeue,Arial,Helvetica,sans-serif;
	font-weight: bold;
	-webkit-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
	-moz-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
	box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-transition-duration: .3s;
	line-height: 1;
    display: inline-block;
}

.button:hover,
.submit:hover{
	text-decoration:none;
	background-color: #00243F;
}

/* MCE editor */
.mcecontentbody{
padding:15px !important;
}




/* Easy Signup Wizard Plugin */
#easy-signup .msg{
    display: block;
    color: red;
    margin: 10px 0px;
}

#easy-signup .error{
    border: 1px solid red;
}

#easy-signup table, 
#easy-signup td, 
#easy-signup th{
    border: initial !important;
    padding: 5px 0px;
}

#easy-signup th{
    min-width: 150px;
}

#easy-signup .wide{
    width: 80%;
    min-width:300px;
}

#easy-signup .medium{
    width: 30%;
    min-width:200px;
}

#easy-signup .small{
    width: 10%;
    min-width:50px;
}

#easy-signup small{
    font-size: smaller;
}

#easy-signup .payment_type{
    display: inline-block;
}

#easy-signup .hidden{
    display: none;
}

#easy-signup .available{
	color: green;
	text-transform: capitalize;
}

#easy-signup tr:hover .accept,
#easy-signup tr:hover .available{
    color: green;
}

#easy-signup .deny{
    color:grey;
    text-decoration: line-through;
}

#easy-signup .accept{
    color: green;
}

#easy-signup .registered{
	color: grey;
	text-transform: capitalize;
}

#easy-signup label.error{
    border: none;
    color: red;
    clear:left;
    display:block;
}
#easy-signup .newemail{
    position:relative;
}

#easy-signup .atemail{
    position: absolute;
    top: 13px;
    right: 23%;
    color: grey;
}

#easy-signup iframe{
    width:100%;
}

#easy-signup .progress{
    clear: both;
    margin: 0px 0px 20px 0px;
}

#easy-signup{
margin: 0px;
}


/* For API.INTERNETSTACK.COM/LOG.PHP */
#log .logstats{   
height: 0px;
overflow: hidden;
}

#log h2:hover + .logstats{
height:auto;
margin:20px 0px;  
-webkit-transition:all 0.2s ease;
-moz-transition:all 0.2s ease;
}

#log h2{
cursor: default;
}

#log h2 .domain,
#log h2 .template,
#log h2 .version
{
display: inline-block;
width:30%;
}

#log h2 .template,
#log h2 .version{
font-weight: normal;
}

#log .offline{
    color:red;
    }

#log .online{
    color: green;
    }

*{
	-webkit-font-smoothing: antialiased;
}

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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
:focus {/* remember to define focus styles! */
	outline: 0;
}
body {
	line-height: 1;
    min-width:450px;
}
ol, ul {
	list-style: none;
}
table {/* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a img {
	border: 0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}


/* =Structure
----------------------------------------------- */

#branding{
    background:#F1F1F1;
}
#branding{
    background: #0065b3;
    height: 86px;
}
body.home #branding{
    height: 700px;
    background-image: url('images/www-man.png');
    background-repeat: no-repeat;
    background-position: right 260px;
    background-size: 400px;
}

body.home #branding{
    height: 700px;
    background-image: url('images/hero-bg.png');
    background-repeat: no-repeat;
    background-position: 35% 0px;
    background-size: initial;
}

body.page-slug-individuals #branding{
    background-image: url('images/glbti-man-2.png');
    background-size: 550px;
    background-repeat: no-repeat;
    background-position: 100% 78px;
    height: 550px;
}

body.page-slug-individuals.segment-glbti #branding{
    background-image: url('images/glbti-man.png');
    background-size: 550px;
    background-position: 100% 78px;
    height: 550px;
}


body.page-slug-individuals.segment-personaltrainer #branding{
    background-image: url('images/job-pt.png');
    background-size: 550px;
    background-position: 100% 78px;
}


body.home #branding.small{
    background-size: 260px;
    height: 500px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

body.home #branding.small{
    background-size: 1100px; /* HERO BG */
}

#header{
    max-width:1000px;
    margin:auto;
    z-index: 9999;
}

#header #site-title{
    display: inline-block;
    width: 200px;
    margin: 5px 20px 0px 20px;
    vertical-align: top;
}

#access a{
display:block;
width:auto;
overflow:hidden;
}

#branding hgroup {
	padding: 28px 0px;
}

#primary {
	float: left;
	margin: 0;
    width:70%;
}
#content {
    margin: 0 15px;
}
#secondary {
	float: right;
	margin-right: 7.6%;
	width: 18.8%;
    margin-top:30px;
}

#secondary.support{
	float: right;
	margin: 140px 20px 0px 20px;
}

/* Singular */
.singular #primary {
	margin: 0;
}

.singular #content,
.left-sidebar.singular #content {
	margin: 0 15px;
	position: relative;
	width: auto;
}
.singular .entry-header,
.singular .entry-content,
.singular footer.entry-meta,
.singular #comments-title {
	margin: 0 auto;
	width: 100%;
}

/* Attachments */
.singular .image-attachment .entry-content {
	margin: 0 auto;
	width: auto;
}
.singular .image-attachment .entry-description {
	margin: 0 auto;
	width: 68.9%;
}

/* Showcase */
.page-template-showcase-php #primary,
.left-sidebar.page-template-showcase-php #primary {
	margin: 0;
}
.page-template-showcase-php #content,
.left-sidebar.page-template-showcase-php #content {
	margin: 0 15px;
	width: auto;
}
.page-template-showcase-php section.recent-posts {
	float: right;
	margin: 0 0 0 31%;
	width: 69%;
}
.page-template-showcase-php #main .widget-area {
	float: left;
	margin: 0 -22.15% 0 0;
	width: 22.15%;
}

/* error404 */
.error404 #primary {
	float: none;
	margin: 0;
}
.error404 #primary #content {
	margin: 0 7.6%;
	width: auto;
}

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

/* Right Content */
.left-sidebar #primary {
	float: right;
	margin: 0 0 0 -26.4%;
}
.left-sidebar #content {
    margin: 0 15px 0 230px;
    width: 700px;
}
.left-sidebar #secondary {
	float: left;
	margin-left: 15px;
	margin-right: 0;
	width: 18.8%;
}

/* One column */
.one-column #content {
	margin: 0 15px;
	width: auto;
}
.one-column #nav-below {
	border-bottom: 1px solid #ddd;
	margin-bottom: 1.625em;
}
.one-column #secondary {
	float: none;
	margin: 0 7.6%;
	width: auto;
}
/* Simplify the showcase template */
.one-column .page-template-showcase-php section.recent-posts {
	float: none;
	margin: 0;
	width: 100%;
}
.one-column .page-template-showcase-php #main .widget-area {
	float: none;
	margin: 0;
	width: auto;
}
.one-column .page-template-showcase-php .other-recent-posts {
	border-bottom: 1px solid #ddd;
}
/* Simplify the showcase template when small feature */
.one-column section.featured-post .attachment-small-feature {
	border: none;
	display: block;
	height: auto;
	max-width: 60%;
	position: static;
}
.one-column article.feature-image.small {
	margin: 0 0 1.625em;
	padding: 0;
}
.one-column article.feature-image.small .entry-title {
	font-size: 20px;
	line-height: 1.3em;
}
.one-column article.feature-image.small .entry-summary {
	height: 150px;
	overflow: hidden;
	padding: 0;
	text-overflow: ellipsis;
}
.one-column article.feature-image.small .entry-summary a {
	left: -9%;
}
/* Remove the margin on singular articles */
.one-column.singular .entry-header,
.one-column.singular .entry-content,
.one-column.singular footer.entry-meta,
.one-column.singular #comments-title {
	width: 100%;
}
/* Simplify the pullquotes and pull styles */
.one-column.singular blockquote.pull {
	margin: 0 0 1.625em;
}
.one-column.singular .pull.alignleft {
	margin: 0 1.625em 0 0;
}
.one-column.singular .pull.alignright {
	margin: 0 0 0 1.625em;
}
.one-column.singular .entry-meta .edit-link a {
	position: absolute;
	left: 0;
	top: 40px;
}
.one-column.singular #author-info {
	margin: 2.2em -8.8% 0;
	padding: 20px 8.8%;
}
/* Make sure we have room for our comment avatars */
.one-column .commentlist > li.comment {
	margin-left: 102px;
	width: auto;
}
/* Make sure the logo and search form don't collide */
.one-column #branding #searchform {
	right: 40px;
	top: 4em;
}
/* Talking avatars take up too much room at this size */
.one-column .commentlist > li.comment {
	margin-left: 0;
}
.one-column .commentlist > li.comment .comment-meta,
.one-column .commentlist > li.comment .comment-content {
	margin-right: 85px;
}
.one-column .commentlist .avatar {
	background: transparent;
	display: block;
	padding: 0;
	top: 1.625em;
	left: auto;
	right: 1.625em;
}
.one-column .commentlist .children .avatar {
	background: none;
	padding: 0;
	position: absolute;
	top: 2.2em;
	left: 2.2em;
}
.one-column #respond {
	width: auto;
}


/* =Global
----------------------------------------------- */


body, input, textarea, select {
	color: #373737;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
	font: 15px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 200;
	line-height: 1.625;
}

/* Headings */
h1,h2,h3,h4,h5,h6 {
	clear: both;
	display: block;
}


/* Text elements */
p {
	margin-bottom: 1.625em;
}
ul, ol {
	margin: 0 0 1.625em 2.5em;
}
ul {
	list-style: square;
}
ol {
	list-style-type: decimal;
}
ol ol {
	list-style: upper-alpha;
}
ol ol ol {
	list-style: lower-roman;
}
ol ol ol ol {
	list-style: lower-alpha;
}
ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0;
}
dl {
	margin: 0 1.625em;
}
dt {
	font-weight: bold;
}
dd {
	margin-bottom: 1.625em;
}
strong {
	font-weight: bold;
}
cite, em, i {
	font-style: italic;
}
blockquote {
	font-family: Georgia, "Bitstream Charter", serif;
	font-style: italic;
	font-weight: normal;
	margin: 0 3em;
}
blockquote em, blockquote i, blockquote cite {
	font-style: normal;
}
blockquote cite {
	color: #666;
	font: 12px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
pre {
	background: #f4f4f4;
	font: 13px "Courier 10 Pitch", Courier, monospace;
	line-height: 1.5;
	margin-bottom: 1.625em;
	overflow: auto;
	padding: 0.75em 1.625em;
}
code, kbd, samp, var {
	font: 13px 'Open Sans', Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym, dfn {
	border-bottom: 1px dotted #666;
	cursor: help;
}
address {
	display: block;
	margin: 0 0 1.625em;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 10px;
	height: 0;
	line-height: 1;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}

/* Forms */
input[type=text],
input[type=password],
textarea,
select {
	background: #fafafa;
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
	box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
	border: 1px solid #ddd;
	color: #888;
}
input[type=text]:focus,
textarea:focus {
	color: #373737;
}
textarea {
	padding-left: 3px;
	width: 98%;
}
input[type=text] {
	padding: 3px;
}
input#s {
	background: url(images/search.png) no-repeat 5px 6px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-size: 14px;
	height: 22px;
	line-height: 1.2em;
	padding: 4px 10px 4px 28px;
}
input#searchsubmit {
	display: none;
}

/* Links */
a {
	color: #1982d1;
	text-decoration: none;
}
a:focus,
a:active,
a:hover {
	text-decoration: underline;
}

/* Assistive text */
.assistive-text {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}
#access a.assistive-text:active,
#access a.assistive-text:focus {
	background: #eee;
	border-bottom: 1px solid #ddd;
	color: #1982d1;
	clip: auto !important;
	font-size: 12px;
	position: absolute;
	text-decoration: underline;
	top: 0;
	left: 7.6%;
}


/* =Header
----------------------------------------------- */

#branding {
	position: relative;
    z-index: 9999;
}


/* =Menu
-------------------------------------------------------------- */

#access {
	width: 750px;
    display: inline-block;
}
#access ul {
	font-size: 13px;
	list-style: none;
	margin: 0 0 0 0;
	padding-left: 0;
    display:inline-block;
}
#access li {
	float: left;
	position: relative;
}
#access a {
	color: #FFF;
	display: block;
	line-height: 28px;
	padding: 0 1.2em;
	text-decoration: none;
	font-size:14px;
    text-transform:uppercase;
    font-weight:bold;
    border-bottom:2px solid transparent;
}
#access ul ul {
	-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	display: none;
	float: left;
	margin: 0;
	position: absolute;
	left: 0;
	width: 188px;
	z-index: 99999;
}
#access ul ul ul {
	left: 100%;
	top: 0;
}
#access ul ul a {
	background: #f1f1f1;
	border-bottom: 2px solid #eee;
	color: #444;
	font-size: 13px;
	font-weight: normal;
	height: auto;
	line-height: 1.4em;
	padding: 10px 10px;
	width: 168px;
}

#access div > ul > li:hover > a,
#access div > ul > a:focus {
	color: #D8D9E1;
}
#access ul li:hover > ul {
	display: block;
}
#access .current-menu-item > a,
#access .current-menu-ancestor > a,
#access .current_page_item > a,
#access .current_page_ancestor > a {
	font-weight: bold;
    background: #005394;
    box-shadow: none;
    color: #fff;
    border-radius: 3px;
}

#access, .menu-simple-container{
line-height:initial;
}

/* Search Form */
#branding #searchform {
	position: absolute;
	top: 3.8em;
	right: 7.6%;
	text-align: right;
}
#branding #searchform div {
	margin: 0;
}
#branding #s {
	float: right;
	-webkit-transition-duration: 400ms;
	-webkit-transition-property: width, background;
	-webkit-transition-timing-function: ease;
	-moz-transition-duration: 400ms;
	-moz-transition-property: width, background;
	-moz-transition-timing-function: ease;
	-o-transition-duration: 400ms;
	-o-transition-property: width, background;
	-o-transition-timing-function: ease;
	width: 72px;
}
#branding #s:focus {
	background-color: #f9f9f9;
	width: 196px;
}
#branding #searchsubmit {
	display: none;
}
#branding .only-search #searchform {
	top: 5px;
	z-index: 1;
    display:none;
    position:relative;
}
#branding .only-search #s {
	background-color: #666;
	border-color: #000;
	color: #222;
}
#branding .only-search #s,
#branding .only-search #s:focus {
	width: 85%;
}
#branding .only-search #s:focus {
	background-color: #bbb;
}
#branding .with-image #searchform {
	top: auto;
	bottom: -27px;
	max-width: 195px;
}
#branding .only-search + #access div {
	padding-right: 205px;
}


/* =Content
----------------------------------------------- */

#main {
	clear: both;
	max-width:1000px;
    margin:auto;
}
.page-title {
	font-size: 28px;
	font-weight: 500;
	line-height: 2.6em;
	margin: 0;
}
.page-title a {
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0;
	text-transform: none;
}
.hentry,
.no-results {
	margin: 0 0 1.625em;
	padding: 0 0 1.625em;
	position: relative;
}

.hentry:last-child,
.no-results {
	border-bottom: none;
}
.blog .sticky .entry-header .entry-meta {
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}
.entry-title,
.entry-header .entry-meta {
	padding-right: 76px;
}
.entry-title,
.page-title {
	clear: both;
	color: #222;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.5em;
	padding-bottom: .3em;
	padding-top: 15px;
}
.entry-title,
.entry-title a {
	color: #222;
	text-decoration: none;
}
.entry-title a:hover,
.entry-title a:focus,
.entry-title a:active {
	color: #1982d1;
}
.entry-meta {
	color: #666;
	clear: both;
	font-size: 11px;
	line-height: 18px;
}

.single-author .entry-meta .by-author {
	display: none;
}
.entry-content,
.entry-summary {
	padding: 1.625em 0 0;
}
.entry-content h1,
.entry-content h2,
.comment-content h1,
.comment-content h2 {
	color: #000;
	font-weight: bold;
	margin: 20px 0 .8125em 0;
}
.entry-content h1:first-of-type,
.entry-content h2:first-of-type{
	margin: 0 0 .8125em;
}

.entry-content h3,
.comment-content h3 {
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 2.6em;
	text-transform: uppercase;
}
.entry-content table.content,
.wp-editor table.content,
.comment-content table.content {
	margin: 0 0 1.625em;
	width: 100%;
    border-style: solid;
}

table.align-middle td{
    vertical-align: middle;
}

table.break-rows td {
    border-top: 1px solid #E0E0E0;
    padding-top: 80px;
    padding-bottom: 80px;
}

.entry-content th,
.comment-content th {
	color: #666;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 2.6em;
	text-transform: uppercase;
}
.entry-content td,
.comment-content td {
	padding: 6px 10px 6px 0;
    min-height: 24px !important;
}

.entry-content table.content th,
.entry-content table.content thead tr,
.wp-editor table.content th,
.wp-editor table.content thead tr,
.entry-content table.content tfoot,
.wp-editor table.content tfoot{
    background: rgba(0,0,0,0.1);
}

.entry-content table.content tfoot td,
.wp-editor tfoot td{
    border-top: 1px solid rgba(0,0,0,0.1);
}

.entry-content table.content thead td,
.wp-editor thead td{
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.entry-content table.content tr:nth-child(even),
.wp-editor table.content tr:nth-child(even)
{background: rgba(0,0,0,0.02);}

.entry-content #s {
	width: 75%;
}
.comment-content ul,
.comment-content ol {
	margin-bottom: 1.625em;
}
.comment-content ul ul,
.comment-content ol ol,
.comment-content ul ol,
.comment-content ol ul {
	margin-bottom: 0;
}
dl.gallery-item {
	margin: 0;
}
.page-link {
	clear: both;
	display: block;
	margin: 0 0 1.625em;
}
.page-link a {
	background: #eee;
	color: #373737;
	margin: 0;
	padding: 2px 3px;
	text-decoration: none;
}
.page-link a:hover {
	background: #888;
	color: #fff;
	font-weight: bold;
}
.page-link span {
	margin-right: 6px;
}
.entry-meta .edit-link a,
.commentlist .edit-link a {
	background: #eee;
	color: #666;
	float: right;
	font-size: 12px;
	line-height: 1.5em;
	font-weight: 300;
	text-decoration: none;
	padding: 0 8px;
}
.entry-meta .edit-link a:hover,
.commentlist .edit-link a:hover {
	background: #888;
	color: #fff;
}
.entry-content .edit-link {
	clear: both;
	display: block;
}

/* Images */
img{
    -ms-interpolation-mode: bicubic;
}
.entry-content img,
.comment-content img,
.widget img {
	max-width: 97.5%; /* Fluid images for posts, comments, and widgets */
}
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 {
	max-width: 97.5%;
	width: auto; /* Prevent stretching of full-size and large-size images with height and width attributes in IE8 */
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
.entry-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
img.alignleft,
img.alignright,
img.aligncenter {
	margin-bottom: 1.625em;
}
p img,
.wp-caption {
	margin-top: 0.4em;
}
.wp-caption {
	background: #eee;
	margin-bottom: 1.625em;
	max-width: 96%;
	padding: 9px;
}
.wp-caption img {
	display: block;
	margin: 0 auto;
	max-width: 98%;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	color: #666;
	font-family: Georgia, serif;
	font-size: 12px;
}
.wp-caption .wp-caption-text {
	margin-bottom: 0.6em;
	padding: 10px 0 5px 40px;
	position: relative;
}
.wp-caption .wp-caption-text:before {
	color: #666;
	content: '\2014';
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	margin-right: 5px;
	position: absolute;
	left: 10px;
	top: 7px;
}
#content .gallery {
	margin: 0 auto 1.625em;
}
#content .gallery a img {
	border: none;
}
img#wpstats {
	display: block;
	margin: 0 auto 1.625em;
}
#content .gallery-columns-4 .gallery-item {
	width: 23%;
	padding-right: 2%;
}
#content .gallery-columns-4 .gallery-item img {
	width: 100%;
	height: auto;
}

/* Image borders */
img[class*="align"],
img[class*="wp-image-"],
#content .gallery .gallery-icon img {/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	padding: 6px;
}
.wp-caption img {
	border-color: #eee;
}
a:focus img[class*="align"],
a:hover img[class*="align"],
a:active img[class*="align"],
a:focus img[class*="wp-image-"],
a:hover img[class*="wp-image-"],
a:active img[class*="wp-image-"],
#content .gallery .gallery-icon a:focus img,
#content .gallery .gallery-icon a:hover img,
#content .gallery .gallery-icon a:active img {/* Add some useful style to those fancy borders for linked images ... */
	background: #eee;
	border-color: #bbb;
}
.wp-caption a:focus img,
.wp-caption a:active img,
.wp-caption a:hover img {/* ... including captioned images! */
	background: #fff;
	border-color: #ddd;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/* Password Protected Posts */
.post-password-required .entry-header .comments-link {
	margin: 1.625em 0 0;
}
.post-password-required input[type=password] {
	margin: 0.8125em 0;
}
.post-password-required input[type=password]:focus {
	background: #f7f7f7;
}

/* Author Info */
#author-info {
	font-size: 12px;
	overflow: hidden;
}
.singular #author-info {
	background: #f9f9f9;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	margin: 2.2em -35.6% 0 -35.4%;
	padding: 20px 35.4%;
}
.archive #author-info {
	border-bottom: 1px solid #ddd;
	margin: 0 0 2.2em;
	padding: 0 0 2.2em;
}
#author-avatar {
	float: left;
	margin-right: -78px;
}
#author-avatar img {
	background: #fff;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 2px #bbb;
	-moz-box-shadow: 0 1px 2px #bbb;
	box-shadow: 0 1px 2px #bbb;
	padding: 3px;
}
#author-description {
	float: left;
	margin-left: 108px;
}
#author-description h2 {
	color: #000;
	font-size: 15px;
	font-weight: bold;
	margin: 5px 0 10px;
}

/* Comments link */
.entry-header .comments-link a {
	background: #eee url(images/comment-bubble.png) no-repeat;
	color: #666;
	font-size: 13px;
	font-weight: normal;
	line-height: 35px;
	overflow: hidden;
	padding: 0 0 0;
	position: absolute;
	top: 1.5em;
	right: 0;
	text-align: center;
	text-decoration: none;
	width: 43px;
	height: 36px;
    display:none;
}
.entry-header .comments-link a:hover,
.entry-header .comments-link a:focus,
.entry-header .comments-link a:active {
	background-color: #1982d1;
	color: #fff;
	color: rgba(255,255,255,0.8);
}
.comments-link, .leave-reply, .sep, .musub{
	display:none !important;
}






/*
Post Formats Headings
To hide the headings, display: none the ".entry-header .entry-format" selector,
and remove the padding rules below.
*/
.entry-header .entry-format {
	color: #666;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 2.6em;
	position: absolute;
	text-transform: uppercase;
	top: -5px;
}
.entry-header hgroup .entry-title {
	padding-top: 15px;
}

article.format-aside .entry-content,
article.format-link .entry-content,
article.format-status .entry-content {
	padding: 20px 0 0;
}
article.format-status .entry-content {
	min-height: 65px;
}
.recent-posts .entry-header .entry-format {
	display: none;
}
.recent-posts .entry-header hgroup .entry-title {
	padding-top: 0;
}

article.type-post{
    display: inline-block;
    width: 100%;
}


/* =Standard
----------------------------------------------- */

body:not(.singular) article.format-standard{
    border-top: 1px solid #dbdbdb !important;
    margin: 10px 0px;
}


/* =ALL Articles
----------------------------------------------- */

body:not(.singular) article:first-of-type{
    border-top: 0px !important;
}

body:not(.singular) article:last-of-type{
    border-bottom: 0px !important;
}



/* =Gallery
----------------------------------------------- */


body:not(.singular):not(.search) article.format-gallery{
    clear: left;
    display: inline-block;
    width: 27% !important;
    max-width: 200px !important;
    vertical-align: top;
    padding: 0px !important;
    margin: 20px 30px 0px 0px !important;
    min-height: 230px;
}

body:not(.singular):not(.search) article.format-gallery .ratings .meta{
    display: none;
}

body:not(.singular):not(.search) article.format-gallery .gallery-thumb {
	clear:both;
	display: block;
	margin: .375em 1.625em 0 0;
}

body:not(.singular):not(.search) article.format-gallery .gallery-text{
    display: block;
    clear:both;
    font-size: small;
    width: 100% !important;
}

body:not(.singular):not(.search) article.format-gallery .entry-content h2{
    margin: 0px;
}

body:not(.singular):not(.search) article.format-gallery .entry-title,
body:not(.singular):not(.search) article.format-gallery .entry-content,
body:not(.singular):not(.search) article.format-gallery .entry-meta{
    padding: 0px !important;
}

body:not(.singular):not(.search) article.format-gallery .entry-meta{
    margin: 0px 0px 5px 0px;
}


body:not(.singular):not(.search) article.format-gallery footer{
display:none;
}

body:not(.singular):not(.search) article.format-gallery .entry-header{
    overflow: hidden;
    max-width: 200px !important;
}




/* Singular content styles for Posts and Pages */
.singular .hentry {
	padding: 0;
	position: relative;
}
.singular.page .hentry {
	padding: 0;
	margin: 0;
	border-bottom: none;
}
.singular .entry-title,
.category .page-title {
    color: #003258;
    font-size: 38px;
    font-weight: 100;
    line-height: 48px;
}
.singular .entry-title,
.singular .entry-header .entry-meta,
.category .page-title {
	padding-right: 0;
    margin-top: 40px;
}

blockquote.pull {
	font-size: 21px;
	font-weight: bold;
	line-height: 1.6125em;
	margin: 0 0 1.625em;
	text-align: center;
}
.singular blockquote.pull {
	margin: 0 -22.25% 1.625em;
}
.pull.alignleft {
	margin: 0 1.625em 0 0;
	text-align: right;
}
.singular .pull.alignleft {
	margin: 0 1.625em 0 -22.25%;
}
.pull.alignright {
	margin: 0 0 0 1.625em;
	text-align: left;
}
blockquote.pull.alignleft,
blockquote.pull.alignright {
	width: 33%;
}
.singular .pull.alignright {
	margin: 0 -22.25% 0 1.625em;
}
.singular blockquote.pull.alignleft,
.singular blockquote.pull.alignright {
	width: 33%;
}
.singular .entry-meta .edit-link a {

}


/* =Aside
----------------------------------------------- */

.format-aside .entry-title,
.format-aside .entry-header .comments-link {
	display: none;
}
.singular .format-aside .entry-title {
	display: block;
}
.format-aside .entry-content {
	padding: 0;
}
.singular .format-aside .entry-content {
	padding: 1.625em 0 0;
}


/* =Link
----------------------------------------------- */

.format-link .entry-title,
.format-link .entry-header .comments-link {
	display: none;
}
.singular .format-link .entry-title {
	display: block;
}
.format-link .entry-content {
	padding: 0;
}
.singular .format-link .entry-content {
	padding: 1.625em 0 0;
}





/* =Status
----------------------------------------------- */

.format-status .entry-title,
.format-status .entry-header .comments-link {
	display: none;
}
.singular .format-status .entry-title {
	display: block;
}
.format-status .entry-content {
	padding: 0;
}
.singular .format-status .entry-content {
	padding: 1.625em 0 0;
}
.format-status img.avatar {
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 2px #ccc;
	-moz-box-shadow: 0 1px 2px #ccc;
	box-shadow: 0 1px 2px #ccc;
	float: left;
	margin: 4px 10px 2px 0;
	padding: 0;
}


/* =Quote
----------------------------------------------- */

.format-quote blockquote {
	color: #555;
	font-size: 17px;
	margin: 0;
}


/* =Image
----------------------------------------------- */

.indexed.format-image .entry-header {
	min-height: 61px; /* Prevent the comment icon from colliding with the image when there is no title */
}
.indexed.format-image .entry-content {
	padding-top: 0.5em;
}
.indexed.format-image .entry-content p {
	margin: 1em 0;
}
.indexed.format-image .entry-content p:first-child,
.indexed.format-image .entry-content p:first-child a,
.indexed.format-image .entry-content p:first-child img {
	display: block;
	margin: 0;
}
.indexed.format-image .entry-content .wp-caption .wp-caption-text {
	margin: 0;
	padding-bottom: 1em;
}
.indexed.format-image footer.entry-meta {
	background: #ddd;
	overflow: hidden;
	padding: 4%;
	max-width: 96%;
}
.indexed.format-image div.entry-meta {
	display: inline-block;
	float: left;
	width: 35%;
}
.indexed.format-image div.entry-meta + div.entry-meta {
	float: none;
	width: 65%;
}
.indexed.format-image .entry-meta span.cat-links,
.indexed.format-image .entry-meta span.tag-links,
.indexed.format-image .entry-meta span.comments-link {
	display: block;
}
.indexed.format-image footer.entry-meta a {
	color: #444;
}
.indexed.format-image footer.entry-meta a:hover {
	color: #fff;
}
#content .indexed.format-image img {
	border: none;
	max-width: 100%;
	padding: 0;
}
.indexed.format-image .wp-caption {
	background: #111;
	margin-bottom: 0;
	max-width: 96%;
	padding: 2% 2% 0;
}
.indexed.format-image .wp-caption .wp-caption-text {
	color: #ddd;
}
.indexed.format-image .wp-caption .wp-caption-text:before {
	color: #444;
}
.indexed.format-image a:hover img {
	opacity: 0.8;
}


/* =error404
----------------------------------------------- */

.error404 #main #searchform {
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-width: 1px 0;
	margin: 0 -8.9% 1.625em;
	overflow: hidden;
	padding: 1.625em 8.9%;
}
.error404 #main #s {
	width: 95%;
}
.error404 #main .widget {
	clear: none;
	float: left;
	margin-right: 3.7%;
	width: 30.85%;
}
.error404 #main .widget_archive {
	margin-right: 0;
}
.error404 #main .widget_tag_cloud {
	float: none;
	margin-right: 0;
	width: 100%;
}
.error404 .widgettitle {
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 2.6em;
	text-transform: uppercase;
}


/* =Showcase
----------------------------------------------- */

h1.showcase-heading {
	color: #666;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 2.6em;
	text-transform: uppercase;
}

/* Intro */
article.intro {
	background: #f9f9f9;
	border-bottom: none;
	margin: -1.855em -8.9% 1.625em;
	padding: 0 8.9%;
}
article.intro .entry-title {
	display: none;
}
article.intro .entry-content {
	color: #111;
	font-size: 16px;
	padding: 1.625em 0 0.625em;
}
article.intro .edit-link a {
	background: #aaa;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #fff;
	font-size: 12px;
	padding: 0 8px;
	position: absolute;
	top: 30px;
	right: 20px;
	text-decoration: none;
}
article.intro .edit-link a:hover,
article.intro .edit-link a:focus,
article.intro .edit-link a:active {
	background: #777;
}

/* Featured post */
section.featured-post {
	float: left;
	margin: -1.625em -8.9% 1.625em;
	padding: 1.625em 8.9% 0;
	position: relative;
	width: 100%;
}
section.featured-post .hentry {
	border: none;
	color: #666;
	margin: 0;
}
section.featured-post .entry-meta {
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

/* Small featured post */
section.featured-post .attachment-small-feature {
	float: right;
	height: auto;
	margin: 0 -8.9% 1.625em 0;
	max-width: 59%;
	position: relative;
	right: -15px;
}
section.featured-post.small {
	padding-top: 0;
}
section.featured-post .attachment-small-feature:hover,
section.featured-post .attachment-small-feature:focus,
section.featured-post .attachment-small-feature:active {
	opacity: .8;
}
article.feature-image.small {
	float: left;
	margin: 0 0 1.625em;
	width: 45%;
}
article.feature-image.small .entry-title {
	line-height: 1.2em;
}
article.feature-image.small .entry-summary {
	color: #555;
	font-size: 13px;
}
article.feature-image.small .entry-summary p a {
	background: #222;
	color: #eee;
	display: block;
	left: -23.8%;
	padding: 9px 26px 9px 85px;
	position: relative;
	text-decoration: none;
	top: 20px;
	width: 180px;
	z-index: 1;
}
article.feature-image.small .entry-summary p a:hover {
	background: #1982d1;
	color: #eee;
	color: rgba(255,255,255,0.8);
}

/* Large featured post */
section.feature-image.large {
	border: none;
	max-height: 288px;
	padding: 0;
	width: 100%;
}
section.feature-image.large .showcase-heading {
	display: none;
}
section.feature-image.large .hentry {
	border-bottom: none;
	left: 9%;
	margin: 1.625em 9% 0 0;
	position: absolute;
	top: 0;
}
article.feature-image.large .entry-title a {
	background: #222;
	background: rgba(0,0,0,0.8);
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	font-weight: 300;
	padding: .2em 20px;
}
section.feature-image.large:hover .entry-title a,
section.feature-image.large .entry-title:hover a {
	background: #eee;
	background: rgba(255,255,255,0.8);
	color: #222;
}
article.feature-image.large .entry-summary {
	display: none;
}
section.feature-image.large img {
	display: block;
	height: auto;
	max-width: 117.9%;
	padding: 0 0 6px;
}

/* Featured Slider */
.featured-posts {
	border-bottom: 1px solid #ddd;
	display: block;
	height: 328px;
	margin: 1.625em -8.9% 20px;
	max-width: 1000px;
	padding: 0;
	position: relative;
	overflow: hidden;
}
.featured-posts .showcase-heading {
	padding-left: 8.9%;
}
.featured-posts section.featured-post {
	background: #fff;
	height: 288px;
	left: 0;
	margin: 0;
	position: absolute;
	top: 30px;
	width: auto;
}
.featured-posts section.featured-post.large {
	max-width: 100%;
	overflow: hidden;
}
.featured-posts section.featured-post {
	-webkit-transition-duration: 200ms;
	-webkit-transition-property: opacity, visibility;
	-webkit-transition-timing-function: ease;
	-moz-transition-duration: 200ms;
	-moz-transition-property: opacity, visibility;
	-moz-transition-timing-function: ease;
}
.featured-posts section.featured-post {
	opacity: 0;
	visibility: hidden;
}
.featured-posts #featured-post-1 {
	opacity: 1;
	visibility: visible;
}
.featured-post .feature-text:after,
.featured-post .feature-image.small:after {
	content: ' ';
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	background: linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C */
	width: 100%;
	height: 45px;
	position: absolute;
	top: 230px;
}
.featured-post .feature-image.small:after {
	top: 253px;
}
#content .feature-slider {
	top: 5px;
	right: 8.9%;
	overflow: visible;
	position: absolute;
}
.feature-slider ul {
	list-style-type: none;
	margin: 0;
}
.feature-slider li {
	float: left;
	margin: 0 6px;
}
.feature-slider a {
	background: #3c3c3c;
	background: rgba(60,60,60,0.9);
	-moz-border-radius: 12px;
	border-radius: 12px;
	-webkit-box-shadow: inset 1px 1px 5px rgba(0,0,0,0.5), inset 0 0 2px rgba(255,255,255,0.5);
	-moz-box-shadow: inset 1px 1px 5px rgba(0,0,0,0.5), inset 0 0 2px rgba(255,255,255,0.5);
	box-shadow: inset 1px 1px 5px rgba(0,0,0,0.5), inset 0 0 2px rgba(255,255,255,0.5);
	display: block;
	width: 14px;
	height: 14px;
}
.feature-slider a.active {
	background: #1982d1;
	-webkit-box-shadow: inset 1px 1px 5px rgba(0,0,0,0.4), inset 0 0 2px rgba(255,255,255,0.8);
	-moz-box-shadow: inset 1px 1px 5px rgba(0,0,0,0.4), inset 0 0 2px rgba(255,255,255,0.8);
	box-shadow: inset 1px 1px 5px rgba(0,0,0,0.4), inset 0 0 2px rgba(255,255,255,0.8);
	cursor: default;
	opacity: 0.5;
}

/* Recent Posts */
section.recent-posts {
	padding: 0 0 1.625em;
}
section.recent-posts .hentry {
	border: none;
	margin: 0;
}
section.recent-posts .other-recent-posts {
	border-bottom: 1px solid #ddd;
	list-style: none;
	margin: 0;
}
section.recent-posts .other-recent-posts li {
	padding: 0.3125em 0;
	position: relative;
}
section.recent-posts .other-recent-posts .entry-title {
	border-top: 1px solid #ddd;
	font-size: 17px;
}
section.recent-posts .other-recent-posts a[rel="bookmark"] {
	color: #373737;
	float: left;
	max-width: 84%;
}
section.recent-posts .other-recent-posts a[rel="bookmark"]:after {
	content: '-';
	color: transparent;
	font-size: 11px;
}
section.recent-posts .other-recent-posts a[rel="bookmark"]:hover {
}
section.recent-posts .other-recent-posts .comments-link a,
section.recent-posts .other-recent-posts .comments-link > span {
	border-bottom: 2px solid #999;
	bottom: -2px;
	color: #444;
	display: block;
	font-size: 10px;
	font-weight: 500;
	line-height: 2.76333em;
	padding: 0.3125em 0 0.3125em 1em;
	position: absolute;
	right: 0;
	text-align: right;
	text-transform: uppercase;
	z-index: 1;
}
section.recent-posts .other-recent-posts .comments-link > span {
	border-color: #bbb;
	color: #888;
}
section.recent-posts .other-recent-posts .comments-link a:hover {
	color: #1982d1;
	border-color: #1982d1;
}
section.recent-posts .other-recent-posts li:after {
	clear: both;
	content: '.';
	display: block;
	height: 0;
	visibility: hidden;
}


/* =Attachments
----------------------------------------------- */

.image-attachment div.attachment {
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-width: 1px 0;
	margin: 0 -8.9% 1.625em;
	overflow: hidden;
	padding: 1.625em 1.625em 0;
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto 1.625em;
	max-width: 100%;
}
.image-attachment div.attachment a img {
	border-color: #f9f9f9;
}
.image-attachment div.attachment a:focus img,
.image-attachment div.attachment a:hover img,
.image-attachment div.attachment a:active img {
	border-color: #ddd;
	background: #fff;
}
.image-attachment .entry-caption p {
	font-size: 10px;
	letter-spacing: 0.1em;
	line-height: 2.6em;
	margin: 0 0 2.6em;
	text-transform: uppercase;
}


/* =Navigation
-------------------------------------------------------------- */

#content nav {
	clear: both;
	overflow: hidden;
	padding: 0 0 1.625em;
}
#content nav a {
	font-size: 12px;
	font-weight: bold;
	line-height: 2.2em;
}
#nav-above {
	padding: 0 0 1.625em;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous {
	float: left;
	width: 50%;
}
.nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
#content nav .meta-nav {
	font-weight: normal;
}

/* Singular navigation */
#nav-single {
	float: right;
	position: relative;
	top: -0.3em;
	text-align: right;
	z-index: 1;
    display: none;
}
#nav-single .nav-previous,
#nav-single .nav-next {
	width: auto;
}
#nav-single .nav-next {
	padding-left: .5em;
}
#nav-single .nav-previous {
	padding-right: .5em;
}


/* =Widgets
----------------------------------------------- */

.widget-area {
	font-size: 12px;
}
.widget {
	clear: both;
	margin: 0 0 2.2em;
}
.widget-title {
	color: #666;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 2.6em;
	text-transform: uppercase;
}
.widget ul {
	font-size: 15px;
	margin: 0;
}
.widget ul ul {
	margin-left: 1.5em;
}
.widget ul li {
	color: #777;
	font-size: 13px;
    list-style: none;
}
.widget a {
	text-decoration: none;
}
.widget a:hover,
.widget a:focus,
.widget a:active {
	text-decoration: underline;
}

/* Search Widget */
.widget_search form {
	margin: 0 0 1.625em;
}
.widget_search #s {
	width: 77%;
}
.widget_search #searchsubmit {
	background: #ddd;
	border: 1px solid #ccc;
	-webkit-box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.09);
	box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.09);
	color: #888;
	font-size: 13px;
	line-height: 25px;
	position: relative;
	top: -2px;
}
.widget_search #searchsubmit:active {
	background: #1982d1;
	border-color: #0861a5;
	-webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
	color: #bfddf3;
}

/* Ephemera Widget */
section.ephemera ol,
.widget_twentyeleven_ephemera ol {
	list-style: square;
	margin: 5px 0 0;
}
.widget_twentyeleven_ephemera .widget-entry-title {
	font-size: 15px;
	font-weight: bold;
	padding: 0;
}
.widget_twentyeleven_ephemera .comments-link a,
.widget_twentyeleven_ephemera .comments-link > span {
	color: #666;
	display: block;
	font-size: 10px;
	font-weight: 500;
	line-height: 2.76333em;
	text-transform: uppercase;
}
section.ephemera .entry-title .comments-link a:hover,
.widget_twentyeleven_ephemera .entry-title .comments-link a:hover {
}
section.ephemera .entry-title a span {
	color: #29628d;
}

/* Twitter */
.widget_twitter li {
	list-style-type: none;
	margin-bottom: 14px;
}
.widget_twitter .timesince {
	display: block;
	font-size: 11px;
	margin-right: -10px;
	text-align: right;
}

/* Widget Image */
.widget_image img {
	border: 0;
	padding: 0;
	height: auto;
	max-width: 100%;
}

/* Calendar Widget */

.widget_calendar #wp-calendar {
	color: #555;
	width: 95%;
	text-align: center;
}
.widget_calendar #wp-calendar caption,
.widget_calendar #wp-calendar td,
.widget_calendar #wp-calendar th {
	text-align: center;
}
.widget_calendar #wp-calendar caption {
	font-size: 11px;
	font-weight: 500;
	padding: 5px 0 3px 0;
	text-transform: uppercase;
}
.widget_calendar #wp-calendar th {
	background: #f4f4f4;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-weight: bold;
}
.widget_calendar #wp-calendar tfoot td {
	background: #f4f4f4;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}


/* =Comments
----------------------------------------------- */



#comments-title {
	color: #666;
	font-size: 10px;
	font-weight: 500;
	line-height: 2.6em;
	padding: 0 0 2.6em;
	text-transform: uppercase;
}
.nopassword,
.nocomments {
	color: #aaa;
	font-size: 24px;
	font-weight: 100;
	margin: 26px 0;
	text-align: center;
}
.commentlist {
	list-style: none;
	margin: 0 auto;
	width: 68.9%;
}
.content .commentlist,
.page-template-sidebar-page-php .commentlist {
	width: 100%; /* reset the width for the one-column and sidebar page layout */
}
.commentlist > li.comment {
	background: #f6f6f6;
	border: 1px solid #ddd;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0 0 1.625em;
	padding: 1.625em;
	position: relative;
}
.commentlist .pingback {
	margin: 0 0 1.625em;
	padding: 0 1.625em;
}
.commentlist .children {
	list-style: none;
	margin: 0;
}
.commentlist .children li.comment {
	background: #fff;
	border-left: 1px solid #ddd;
	-moz-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	margin: 1.625em 0 0;
	padding: 1.625em;
	position: relative;
}
.commentlist .children li.comment .fn {
	display: block;
}
.comment-meta .fn {
	font-style: normal;
}
.comment-meta {
	color: #666;
	font-size: 12px;
	line-height: 2.2em;
}
.commentlist .children li.comment .comment-meta {
	line-height: 1.625em;
	margin-left: 50px;
}
.commentlist .children li.comment .comment-content {
	margin: 1.625em 0 0;
}
.comment-meta a {
	font-weight: bold;
}
.comment-meta a:focus,
.comment-meta a:active,
.comment-meta a:hover {
}
.commentlist .avatar {
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 1px 2px #ccc;
	-moz-box-shadow: 0 1px 2px #ccc;
	box-shadow: 0 1px 2px #ccc;
	left: -102px;
	padding: 0;
	position: absolute;
	top: 0;
}
.commentlist > li:before {
	content: url(images/comment-arrow.png);
	left: -21px;
	position: absolute;
}
.commentlist > li.pingback:before {
	content: '';
}
.commentlist .children .avatar {
	background: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	left: 2.2em;
	padding: 0;
	top: 2.2em;
}
a.comment-reply-link {
	background: #eee;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #666;
	display: inline-block;
	font-size: 12px;
	padding: 0 8px;
	text-decoration: none;
}
a.comment-reply-link:hover,
a.comment-reply-link:focus,
a.comment-reply-link:active {
	background: #888;
	color: #fff;
}
a.comment-reply-link > span {
	display: inline-block;
	position: relative;
	top: -1px;
}

/* Post author highlighting */
.commentlist > li.bypostauthor {
	background: #ddd;
	border-color: #d3d3d3;
}
.commentlist > li.bypostauthor .comment-meta {
	color: #575757;
}
.commentlist > li.bypostauthor .comment-meta a:focus,
.commentlist > li.bypostauthor .comment-meta a:active,
.commentlist > li.bypostauthor .comment-meta a:hover {
}
.commentlist > li.bypostauthor:before {
	content: url(images/comment-arrow-bypostauthor.png);
}

/* Post Author threaded comments */
.commentlist .children > li.bypostauthor {
	background: #ddd;
	border-color: #d3d3d3;
}

/* sidebar-page.php comments */
/* Make sure we have room for our comment avatars */
.page-template-sidebar-page-php .commentlist > li.comment,
.page-template-sidebar-page-php.commentlist .pingback {
	margin-left: 102px;
	width: auto;
}
/* And a full-width comment form */
.page-template-sidebar-page-php #respond {
	width: auto;
}

/* Comment Form */
#respond {
	background: #ddd;
	border: 1px solid #d3d3d3;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin: 0 auto 1.625em;
	padding: 1.625em;
	position: relative;
	width: 68.9%;
}
#respond input[type="text"],
#respond textarea {
	background: #fff;
	border: 4px solid #eee;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
	-moz-box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
	box-shadow: inset 0 1px 3px rgba(204,204,204,0.95);
	position: relative;
	padding: 10px;
	text-indent: 80px;
}
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url,
#respond .comment-form-comment {
	position: relative;
}
#respond .comment-form-author label,
#respond .comment-form-email label,
#respond .comment-form-url label,
#respond .comment-form-comment label {
	background: #eee;
	-webkit-box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
	-moz-box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
	box-shadow: 1px 2px 2px rgba(204,204,204,0.8);
	color: #555;
	display: inline-block;
	font-size: 13px;
	left: 4px;
	min-width: 60px;
	padding: 4px 10px;
	position: relative;
	top: 40px;
	z-index: 1;
}
#respond input[type="text"]:focus,
#respond textarea:focus {
	text-indent: 0;
	z-index: 1;
}
#respond textarea {
	resize: vertical;
	width: 95%;
}
#respond .comment-form-author .required,
#respond .comment-form-email .required {
	color: #bd3500;
	font-size: 22px;
	font-weight: bold;
	left: 75%;
	position: absolute;
	top: 45px;
	z-index: 1;
}
#respond .comment-notes,
#respond .logged-in-as {
	font-size: 13px;
}
#respond p {
	margin: 10px 0;
}
#respond .form-submit {
	float: right;
	margin: -20px 0 10px;
}
#respond input#submit {
	background: #222;
	border: none;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	color: #eee;
	cursor: pointer;
	font-size: 15px;
	margin: 20px 0;
	padding: 5px 42px 5px 22px;
	position: relative;
	left: 30px;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.3);
}
#respond input#submit:active {
	background: #1982d1;
	color: #bfddf3;
}
#respond #cancel-comment-reply-link {
	color: #666;
	margin-left: 10px;
	text-decoration: none;
}
#respond .logged-in-as a:hover,
#respond #cancel-comment-reply-link:hover {
	text-decoration: underline;
}
.commentlist #respond {
	margin: 1.625em 0 0;
	width: auto;
}
#reply-title {
	color: #373737;
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
}
#cancel-comment-reply-link {
	color: #888;
	display: block;
	font-size: 10px;
	font-weight: normal;
	line-height: 2.2em;
	letter-spacing: 0.05em;
	position: absolute;
	right: 1.625em;
	text-decoration: none;
	text-transform: uppercase;
	top: 1.1em;
}
#cancel-comment-reply-link:focus,
#cancel-comment-reply-link:active,
#cancel-comment-reply-link:hover {
	color: #ff4b33;
}
#respond label {
	line-height: 2.2em;
}
#respond input[type=text] {
	display: block;
	height: 24px;
	width: 75%;
}
#respond p {
	font-size: 12px;
}
p.comment-form-comment {
	margin: 0;
}
.form-allowed-tags {
	display: none;
}


/* =Footer
----------------------------------------------- */

#colophon {
	clear: both;
    background:#FCFCFC;
	border-top: 8px solid #F1F1F1;
}
#supplementary {
    margin:auto;
    max-width:1000px;
	padding: 1.625em 15px;
	overflow: hidden;
}

#supplementary .widget-area{
padding:15px;
}

/* Two Footer Widget Areas */
#supplementary.two .widget-area {
	float: left;
	margin-right: 3.7%;
	width: 45.1%;
}
#supplementary.two .widget-area + .widget-area {
	margin-right: 0;
}

/* Three Footer Widget Areas */
#supplementary.three .widget-area {
	float: left;
	margin-right: 3.7%;
	width: 25.85%;
}
#supplementary.three .widget-area + .widget-area + .widget-area {
	margin-right: 0;
}


/* Site Generator Line */
#site-generator {
	background: #f9f9f9;
	border-top: 1px solid #ddd;
	color: #666;
	font-size: 12px;
	line-height: 2.2em;
	padding: 2.2em 0.5em;
	text-align: center;
}
#site-generator a {
	color: #555;
	font-weight: bold;
}


/* =INTERNETSTACK FANCYBOX TWEAK FOR IFRAME + ZOOM CAPABILITY 
----------------------------------------------- */

#fancybox-frame{
background:black;
}



/* Signup
------------------------------------------ */



#signup{
	padding: 15px;
	width: 630px;
	margin: 80px 0px 0px 0px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

body.page-slug-individuals #signup{
    margin: 100px 0px 0px 0px;
}

body.page-slug-individuals.segment-glbti #signup{
    margin: 50px 0px 0px 0px;
}

body.page-slug-individuals.segment-men #signup{
    margin: 50px 0px 0px 0px;
}



#signup .section > h2{
	color: #373737;
}

#signup #product_domain p,
#signup #product_domain > h2{
    color: white;
}

body.home #signup #product_domain.initial{
    height: 450px;
    background: url('images/price-tag.png') no-repeat 0px 210px;
}

body.home.segment-sme #signup #product_domain.initial{
    height: 450px;
    background: url('images/price-tag.png') no-repeat -5px 230px;
}

body.home #signup #product_domain.transfer.initial{
    background: url('images/home-transfer.png') no-repeat 0px 210px;
}

body.home #signup #product_domain.hosting.initial{
    background: url('images/price-hosting.png') no-repeat 0px 210px;
}

body.home.segment-diy #signup #product_domain{
    background: url('images/home-diy.png') no-repeat 0px 210px;
}

#signup #currency{
	margin-top: -15px;
	border-top-color: transparent;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	width: 70px;
	cursor: pointer;
    visibility: hidden;
    position: absolute;
    top: 0px;
    right: 15px;
    margin: 0px;
}

#signup #billfrequency{
	margin-top: -15px;
	border-top-color: transparent;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	width: 90px;
	cursor: pointer;
    visibility: hidden;
    position: absolute;
    top: 0px;
    right: 90px;
    margin: 0px;
}

#signup.active #billfrequency,
#signup.active #currency{
    visibility: visible;
    margin-top: -3px;
}

#featured-image + #main .entry-header{
	display: none;
}

#featured-image img{
	max-width: 100% !important;
	padding: 35px 0px;
}

#signup .section > h2:first-of-type{
	display: inline-block;
	margin-bottom: 30px;
}



#signup .section > h2.major{
	font-size: 24px;
}

#signup .section > h2.welcome{
	font-size: 42px;
    font-weight: bold;
    margin-bottom: 0px;
}

#signup .section p.emphasise{
    font-size: 26px;
}

.tipsy { padding: 5px; font-size: 12px; font-weight: bold; position: absolute; z-index: 100000; }
  .tipsy-inner { padding: 5px 8px 4px 8px; background-color: black; color: white; max-width: 200px;  }
  .tipsy-inner { border-radius: 3px; -moz-border-radius:3px; -webkit-border-radius:3px; }
  .tipsy-arrow { position: absolute; background: url('icons/tipsy.gif') no-repeat top left; width: 9px; height: 5px; }
  .tipsy-n .tipsy-arrow { top: 0; left: 50%; margin-left: -4px; }
    .tipsy-nw .tipsy-arrow { top: 0; left: 10px; }
    .tipsy-ne .tipsy-arrow { top: 0; right: 10px; }
  .tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -4px; background-position: bottom left; }
    .tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; background-position: bottom left; }
    .tipsy-se .tipsy-arrow { bottom: 0; right: 10px; background-position: bottom left; }
  .tipsy-e .tipsy-arrow { top: 50%; margin-top: -4px; right: 0; width: 5px; height: 9px; background-position: top right; }
  .tipsy-w .tipsy-arrow { top: 50%; margin-top: -4px; left: 0; width: 5px; height: 9px; }


#signup input,
#signup div.box,
#signup select,
#signup #do_results{
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

#signup div.box div.price{
    margin-left: 10px;
}


#signup .newline{
	clear: both;
	float: left;
}

#signup .right{
	float: right;
}

#signup .passive{
	opacity: 0.8;
}

#signup #available_domain{
	float: left;
	display: block;
	clear: none;
	margin-top: 10px;
}

#signup #domain_results small{
	font-size: small;
    margin: 10px 28px;
    display: block;
}

#signup #domain_results #domain_spinner{
    font-size: small;
    margin-left: 25px;
    width: 80%;
}

#signup #domain_results #domain_spinner label{
    line-height: initial;
    height: 20px;
}

#signup #domain_results #domain_spinner tr{
    height: 32px;
}

#signup #domain_results #domain_spinner tr.optional{
    opacity: 0.7;
}

#signup #domain_results #domain_spinner td:nth-of-type(n+2){
    padding: 5px;
    min-width:100px;
}

#signup #domain_results #domain_spinner_intro{
    display: none;
    margin: 50px 0px 20px 25px;
}

#signup #domain_results label{
	margin-left: 28px;
	display: block;
}

#signup .passive:hover{
	opacity: 1;
}



#signup div.section{
	padding: 0px 0px 25px 0px;
	display: block;
	clear: left;
}

#signup div.section:nth-of-type(n+3){
	border-top: 1px solid rgb(233, 233, 233);
	padding-top: 25px;
}

#signup select{
	background-image: url('icons/down.png');
	background-position: 100% center;
	background-repeat: no-repeat;
	background-size: auto 18px;
	width: 250px;
	background-color: white;
}

#signup select.small{
	width: 100px;
}


#signup select#tld{
	margin-left: -7px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-left-style: dashed;
	cursor: pointer;
	vertical-align: bottom;
	height: 48px;
}

@-moz-document url-prefix() {
#signup select#tld{
     padding-right: 10px;
     vertical-align: middle;
     padding-top: 10px;
  }
}

#signup select#tld:hover{
	color: #333;
}

#signup select#billfrequency,
#signup select#currency{
	padding-right: 7px;
    height: 28px;
    font-size: 13px;
    line-height: 14px;
}


#signup #email_account{
	border-right: none !important;
	margin-right: -3px !important;
	padding-right: 3px !important;
}

#signup select#email_domain{
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	margin-left: 0px;
	border-left: none;
	padding-left: 1px;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.05) !important;
	-webkit-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) !important;
	-moz-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) !important;
}

#signup #domain[action='tpp_whois']{
	background-image: none;
}

#signup #domain[action='syra_whois']{
	background-image: url('icons/forward_to_end_01.png');
	background-size:10px !important;
}

#signup #domain[action='private_whois']{
	background-image: url('icons/forward_to_end_02.png');
	background-size:10px !important;
}

#signup #domain[action='private_whois'].invalid,
#signup #domain[action='syra_whois'].invalid{
	background-size: auto 18px !important;
}

#signup label{
	width: 100px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	line-height:30px;
}

#signup label.wide{
	width: auto !important;
}

#signup input[type=text],
#signup input[type=password]{
	width: 250px;
	background-color: white;
}

#signup input.wide{
	width: 250px;
}

#signup input.extrawide{
	width: 250px;
}

#signup input.invalid{
	background-image: url('icons/error-exclaim.png') !important;
	background-position: 97% center !important;
	background-repeat: no-repeat !important;
	background-size: auto 18px !important;
    background-color: rgb(255, 249, 234) !important;
}

#signup label.invalid{
	padding-right: 30px !important;
	background-image: url('icons/error-exclaim.png') !important;
	background-position: 97% center !important;
	background-repeat: no-repeat !important;
	background-size: auto 18px !important;
}

#signup select.invalid{
	background-color: rgb(255, 249, 234) !important;
}

#signup input.next{
	background-image: url('icons/arrow.png') !important;
	background-position: 95% center !important;
	background-repeat: no-repeat !important;
	background-size: auto 15px !important;
	width: 220px;
	margin: 0px;
}

#signup input.active{
	background-image: url('icons/load.gif') !important;
}

#simple-my-account-content .button{
    background-position: 95% center;
    background-repeat: no-repeat;
}

#signup #submit.active,
#simple-my-account-content .button.active{
    background-color: rgb(233, 233, 233);
    background-image: url(icons/ajax-loader-E9E9E9.gif) !important;
    color: rgb(255, 255, 255) !important;
    text-shadow: 1px 1px rgba(138, 138, 138, 0.37), -1px -1px rgba(187, 187, 187, 0.37);
    border: 1px solid rgb(199, 199, 199);
    box-shadow: 0 0 0 1px rgba(218, 218, 218, 0.15) inset,0 0 6px rgba(170, 170, 170, 0.2) inset;
    padding-right: 40px;
}

#signup div.box{
	padding: 10px;
	margin: 0px 2% 25px 0px;
	border: 1px solid #eee;
	width: 27%;
	display: inline-block;
	min-height: 190px;
	cursor: pointer;
	height: 100%;
	vertical-align: top;
	background: rgba(0,0,0,0.02);
}

#signup div.box *{
	cursor: pointer;
}

#signup div.box p{
	margin-bottom: 18px;
}

#signup div.box:hover{
	background-color: rgba(0, 0, 0, 0.05);
	border-color: #CACACA;
}

#signup .box.active{
	background-color: rgba(0, 0, 0, 0.05);
	border-color: #CACACA;
}

#signup ul.tick{
	margin: 0px;
}

#signup ul.tick li{
	background-image: url('icons/tick.png');
	background-position: left 6px;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	list-style-type: none;
	padding-left: 18px;
	font-size: 12px;
}

#signup ul.tick li.delete{
	background-image: url('icons/delete.png') !important;
	background-size: 12px 12px;
	background-position: 2px 6px !important;
}

#signup .price,
#signup #total{
	font-weight: bold;
	color: #e3322b;
}

#signup #total del{
    color: rgb(165,0,0);
}

#signup .price,
#signup .pricesingle,
#signup .price-optional{
	display: inline;
}

#signup .price-optional{
    font-weight: bold;
}

#signup #domain_results .price{
    margin:0px;
}

#signup .price small{
	font-size: 11px;
	color: rgba(227, 50, 43, 0.82);
	font-weight: normal;
	padding-left: 1px;
}

#signup #domain_results .price small{
	display: none;
}

#signup .box .price{
	padding: 0px 0px 0px 0px;
}

#signup #total{
	padding: 10px 0px 10px 0px;
	clear: both;
	display: block;
	font-size: larger;
	border: 1px solid;
	min-width: 160px;
	max-width: 230px;
	text-align: center;
	margin: 0px 0px 0px 122px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	border-color: rgb(197, 197, 197);
	border-bottom-color: transparent;
	border-bottom-width: 0px;
	background: rgb(247, 247, 247);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.11);
	color: rgba(0, 0, 0, 0.71);
}

#signup #total small{
	font-size: 12px;
}

#signup #total:before{
	content: 'Total: ';
}

#signup p.error{
	color: #e3322b;
	margin: 0px !important;
}

#signup #domain_results{
	border-color: transparent;
	margin: 0px;
	font-size: larger;
	background: #FFD424;
}

#signup #rules{
    background: #FFD424;
    padding: 20px 46px;
}

#signup #domain_results:empty{
	margin: 0px;
}

#signup #domain_results.valid{
	padding: 20px;
    font-size:22px;
}

#signup #domain_results.valid h2{
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
}

#signup #domain_results.invalid{
	padding: 20px 42px;
	border-color: rgb(233, 0, 0);
	border-style: dashed;
	border-width: 1px;
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
}

#signup #domain{
	background-image: url('icons/blank.png');
	background-position: 97% center !important;
	background-repeat: no-repeat !important;
	background-size: auto 18px !important;
	vertical-align: bottom;
	height: 40px;
}

#signup #domain_options{
    opacity: 0;
    width: 218px;
    padding: 0px 0px 5px 0px;
    background: #003258;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    list-style: none;
    margin: -2px 0px 0px 1px;
    -webkit-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
    -moz-box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.05) inset,0 1px 0 0 rgba(255,255,255,0.2) inset,0 1px 1px rgba(0,0,0,0.08);
    -webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

#signup #domain_options li{
    font-size: 16px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-weight: bold;
    padding: 10px 9px;
    cursor: pointer;
}

#signup #domain_options small{
    font-size: 11px;
    margin: 8px 0px 0px 0px;
    padding: 0px;
    display: block;
    font-weight: normal;
}

#signup #domain_options li:hover{
    background: #00243F;
}

#signup #domain_search{
    height: 50px;
    margin: 0px;
}

#signup #domain_pw{
    clear: both;
    display: none;
    width: 346px;
    margin: 5px 0px;
    background-position: 97% center !important;
}

#signup #domain_search_area{
    margin: 0px 10px;
    display: inline-block;
    position: absolute;
    width: 220px;
    height: 50px;
    overflow: hidden;
    -webkit-transition: all 0.25s ease-in;
	-moz-transition: all 0.25s ease-in;
	-ms-transition: all 0.25s ease-in;
	-o-transition: all 0.25s ease-in;
	transition: all 0.25s ease-in;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#signup #domain_search_area:hover,
#signup #domain_search_area.active{
    height: 320px;
    overflow: initial;
}

#signup #domain_search_area:hover #domain_options,
#signup #domain_search_area.active #domain_options{
    opacity: 1;
    display: block;
}



#signup #submit{
	background-image: url('icons/arrow.png');
	background-position: 95% center !important;
	background-repeat: no-repeat !important;
	padding-right: 40px;
}



/* LOGIN FORM STYLE */
.post-12{
    border: 1px solid #ddd !important;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: white;
    padding: 20px !important;
    width: 280px;
    margin: 100px auto !important;
}
.post-12 .entry-title{
    border-bottom: 1px solid #ddd;
    padding-bottom: 25px;
    margin-top: 0px;
}


#signup #customer_details label{
	float: left;
	width: 150px;
	clear: left;
}

#signup #customer_payment.no-payment-required{
    padding-bottom: 0px;
}

#signup div.box label{
	font-size: larger;
}

#signup .box.ftp{
	background-image: url('icons/folder.png');
	background-position: 70% 10px;
	background-repeat: no-repeat;
}

#signup .box.wordpress{
	background-image: url('icons/wordpress.png');
	background-position: 90% 10px;
	background-repeat: no-repeat;
	background-size: 28px;
}

#signup .inactive{
	display: none !important;
}





/* =Contact Form
----------------------------------------------- */


#cntctfrm_contact_form input.text, 
#cntctfrm_contact_form textarea,
#cntctfrm_contact_message, 
#cntctfrm_contact_name, 
#cntctfrm_contact_email,
#cntctfrm_contact_subject {
	width:320px;
}
#adminmenu #toplevel_page_bws_plugins div.wp-menu-image
{
	background: url("../images/icon_16.png") no-repeat scroll center center transparent;
}
#adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image
{
	background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
}	
.wrap #icon-options-general.icon32-bws
{
	background: url("../images/icon_36.png") no-repeat scroll left top transparent;
}
#toplevel_page_bws_plugins .wp-submenu .wp-first-item, .cntctfrm_hidden
{
	display:none;
}
.cntctfrm_info {
	color: rgb(136, 136, 136); 
	font-size: 10px;
	clear:both;
}
#cntctfrm_contact_attachment {
	margin-bottom:0;
}
#cntctfrm_contact_send_copy, #cntctfrm_attachment, #cntctfrm_send_copy, #cntctfrm_change_label {
	position:relative;
	top:2px;
}
#cntctfrm_attachment, #cntctfrm_send_copy, #cntctfrm_change_label {
	position:relative;
	top:3px;
}
#cntctfrm_select_email_user, #cntctfrm_select_email_custom {
	position:relative;
	top:5px;
}
.cntctfrm_change_label_block input {
	margin: 1px 0;
}



/* =Frontend Login Menu
----------------------------------------------- */

body.home h1.entry-title{
	display: none;
}


#user_login,
#user_pass{
    padding: 10px;
    width: 250px;
}

#myaccount{
	margin-left: 20px;
}



#login,
.mobile #login{
    padding: 100px 0px 0px 0px;
}


#myaccount a.login img{
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    vertical-align: middle;
    margin-right: 10px;
    background-color: #f1f1f1;
}

#myaccount a.login.current_menu_item{
    background: #005394;
    box-shadow: none;
    color: #fff;
    border-radius: 3px;
}

@media (max-width: 450px) {
	#myaccount{
		margin-left: 0px;
	}
}

@media (max-width: 1000px) {
	#myaccount{
		margin-left: 20px;
	}
}

#myaccount a.login{
    z-index: 9999;
    position: relative;
    width: 162px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: smaller;
    padding: 5px 13px;
    margin-top: -5px;
}

#myaccount:hover a.login{
    background: transparent;
    color: #444;
}

#myaccount:hover a.login:hover{
    background: #DDDFE4;
    border-radius: 0px;
}

#myaccount .sub-menu{
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
	z-index: 9998;
    position: absolute;
    opacity: 0;
    display: none;
    left: 0px;
    height: 0px;
    padding-top:66px;
    margin-top: -45px;
	-moz-box-shadow: 0 3px 9px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.2);
	box-shadow: 0 3px 9px rgba(0,0,0,0.2);
    background: #f1f1f1;
    overflow: hidden;
}

#myaccount .sub-menu > a{
    padding: 5px 5px;
}

#myaccount strong{
	margin-bottom: 10px;
	display: block;
}

#myaccount .sub-menu li a:hover{
    background: #DDDFE4;
}

#myaccount .active,
#myaccount:hover .sub-menu{
	display: block !important;
    opacity: 1;
}
#myaccount:hover .sub-menu{
    height: auto;
}

#myaccount .active > a{
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}

#myaccount .menu h2{
    padding-bottom: 5px;
    font-weight: bold;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 20px;
}

#myaccount .menu{
    display: inline-block;
}

#myaccount .forgot-password{
	margin-top: 20px;
	border-top: 1px dashed #EEE;
}

#myaccount .forgot{
	font-size: smaller;
	margin: 0px;
	padding: 0px;
}

#access .button{
	border-width: 0px !important;
	border-bottom-right-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

#myaccount .errormsg{
    color: red;
    display: none;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 20px;
    font-weight: bold;
}

#simple-my-account-content .settings_section{
    margin: 0px;
    list-style: none;
}

#simple-my-account-content .settings_section li{
    margin: 10px 0px;
}

#simple-my-account-content .settings_subsection_content,
#simple-my-account-content .settings_subsection_help{
    display: none;
}

#simple-my-account-content .settings_subsection_content .invoice-paid{
    background-image: url('icons/paid.png');
    background-repeat: no-repeat;
    background-position: 95% 5px;
    background-size: 80px;
    width: 80px;
    height: 60px;
    display: block;
    float: right;
}


#simple-my-account-content .settings_subsection_content .invoice-top{
    background-image: url('images/inv-top.png');
    width: 489px;
    height: 12px;
    display: block;
}

#simple-my-account-content .settings_subsection_content .invoice-middle{
    background-image: url('images/inv-middle.png');
    width: 409px;
    display: block;
    padding: 20px 40px;
}

#simple-my-account-content .settings_subsection_content .invoice-bottom{
    background-image: url('images/inv-bottom.png');
    width: 489px;
    height: 12px;
    display: block;
}

#simple-my-account-content .settings_subsection_help{
    padding-left: 40px;
    background-image: url('icons/page_empty.png');
    background-repeat: no-repeat;
    background-position: 5px 5px;
    background-size: 18px;
    margin: 20px 0px;
}

#simple-my-account-content .domain_contact{
    width: 250px;
}

#simple-my-account-content .settings_subsection_help{
    font-size: 11px;
}

#simple-my-account-content .settings_subsection_label{
    cursor: pointer;
    font-weight: bold;
    background-image: url('icons/plus.png');
    background-repeat: no-repeat;
    padding-left: 15px;
    background-size: 7px;
    background-position: left center;
}

#simple-my-account-content .settings_subsection_label.active{
    background-image: url('icons/minus.png');
    margin-bottom: 20px;
}

#simple-my-account-content .payment .settings_subsection_label{
    font-size: 12px;
}

#simple-my-account-content .settings_section.locked li[action="domain_contact"],
#simple-my-account-content .settings_section.locked li[action="domain_nameserver"],
#simple-my-account-content .settings_section.locked li[action="domain_redirect"],
#simple-my-account-content .settings_section.locked li[action="domain_password"],
#simple-my-account-content .settings_section.locked li[action="domain_advanced"],
#simple-my-account-content .settings_section.locked li[action="product_autorenew"]{
    display: none;
}

#simple-my-account-content .settings_section.locked{
    min-height: 100px;
    background-image: url('icons/lock.png');
    background-repeat: no-repeat;
    background-position: 90% 10px;
}

#simple-my-account-content .settings_section.locked li[action="domain_lock"] .settings_subsection_label{
    display: none;
}

#simple-my-account-content .settings_section.locked li[action="domain_lock"] .settings_subsection_content,
#simple-my-account-content .settings_section.locked li[action="domain_lock"] .settings_subsection_help{
    display: block !important;
}

#simple-my-account-content .domain_settings,
#simple-my-account-content .hosting_settings{
    display: none;
    min-height: 30px;
    background-repeat: no-repeat;
}

#simple-my-account-content .domain_expiry{
    margin: 20px 0px;
    font-size: 12px;
    color: #808080;
}



/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		font-size: 10pt;
	}
	footer.entry-meta a[rel=bookmark]:link:after,
	footer.entry-meta a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	#page {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	#branding {
		border-top: none !important;
		padding: 0;
	}
	#branding hgroup {
		margin: 0;
	}
	#site-title a {
		font-size: 21pt;
	}
	#site-description {
		font-size: 10pt;
	}
	#branding #searchform {
		display: none;
	}
	#branding img {
		display: none;
	}
	#access {
		display: none;
	}
	#main {
		border-top: none;
		box-shadow: none;
	}
	#primary {
		float: left;
		margin: 0;
		width: 100%;
	}
	#content {
		margin: 0;
		width: auto;
	}
	.singular #content {
		margin: 0;
		width: 100%;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.entry-meta .edit-link a {
		display: none;
	}
	#content nav {
		display: none;
	}
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular #comments-title {
		margin: 0;
		width: 100%;
	}
	.singular .hentry {
		padding: 0;
	}
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	.entry-meta {
		font-size: 10pt;
	}
	.entry-header .comments-link {
		display: none;
	}
	.page-link {
		display: none;
	}
	.singular #author-info {
		background: none;
		border-bottom: none;
		border-top: none;
		margin: 2.2em 0 0;
		padding: 0;
	}
	#respond {
		display: none;
	}
	.widget-area {
		display: none;
	}
	#colophon {
		display: none;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		border: 1px solid #ddd;
		-moz-border-radius: 3px 3px 3px 3px;
		border-radius: 3px 3px 3px 3px;
		margin: 0 auto 1.625em;
		padding: 1.625em;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.commentlist li.comment .comment-meta {
		line-height: 1.625em;
		margin-left: 50px;
	}
	.commentlist li.comment .fn {
		display: block;
	}
	.commentlist li.comment .comment-content {
		margin: 1.625em 0 0;
	}
	.commentlist .comment-edit-link {
		display: none;
	}
	.commentlist > li::before,
	.commentlist > li.bypostauthor::before {
		content: '';
	}
	.commentlist .reply {
		display: none;
	}

	/* Post author highlighting */
	.commentlist > li.bypostauthor {
		color: #444;
	}
	.commentlist > li.bypostauthor .comment-meta {
		color: #666;
	}
	.commentlist > li.bypostauthor:before {
		content: none;
	}

	/* Post Author threaded comments */
	.commentlist .children > li.bypostauthor {
		background: #fff;
		border-color: #ddd;
	}
	.commentlist .children > li.bypostauthor > article,
	.commentlist .children > li.bypostauthor > article .comment-meta {
		color: #666;
	}

}

.mobile-menu{
    display: none;
}



/* Desktop devices */

@media (min-width:800px) {

    #page{
        min-width: 1000px;
    }

}

/* larger desktops */
@media (min-width:1500px) {

    body.page-slug-individuals #branding {
        background-position: 90% 78px !important;
    }

}

/* smaller desktops */
@media (max-width:1300px) {

    body.page-slug-individuals #branding {
        background-position: 100% 180px !important;
    }

}

/* iPad landscape devices */

@media (max-width:1024px) {

    #signup #domain_search_area.touchdevice{
        height: 50px;
        overflow: hidden;
    }
    
    #signup #domain_search_area.active{
        height: 300px;
        overflow: initial;
    }

    body.page-slug-individuals #branding {
        background-position: 100% 150px !important;
    }
    
    body.page-slug-individuals #signup {
        margin: 0px  !important;
        padding: 0px 15px;
    }


}


/* iPad portrait devices */

@media (max-width:800px) {

    #access{
        width: 100%;
        clear: both;
        display: block;
    }
    
    #access ul.menu{
        margin: 20px;
    }
    
    body.home #branding{
        background-size: 180px;
        background-position: right 505px;
    }
    
    body.home #branding{
        background-image: url('images/hero-bg.png');
        background-repeat: no-repeat;
        background-position: -300px 0px;
        background-size: initial;
    }

    #branding{
        min-height: 130px;
    }
    
    #signup{
        margin: 30px 0px 0px 0px;
    }

    
    body.page-slug-individuals #branding {
        background-size: 200px !important;
        background-position: 100% 400px !important;
    }

}

/* iPhone and Mobile devices */

@media (max-width:568px) {

    table.break-rows tr td:first-of-type {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    table.break-rows tr td:last-of-type {
        border-top: none;
        padding-top: 20px;
        padding-bottom: 80px;
    }

    .live_chat:not(.multiple){
        width: 150px;
        left: 20px;
    }
    
    .live_chat.active:not(.multiple){
        width: 250px;
        left: 20px;
    }

    #simple-my-account-content .settings_subsection_content .invoice-paid{
        background-size: 40px;
        width: 40px;
        height: 35px;
    }

    #simple-my-account-content .settings_subsection_content table.compare{
        font-size:11px;
    }

    #simple-my-account-content .settings_subsection_content .invoice-top{
        background-size: 245px;
        width: 245px;
        height: 6px;
        display: block;
    }

    #simple-my-account-content .settings_subsection_content .invoice-middle{
        background-size: 245px;
        width: 225px;
        display: block;
        padding: 10px;
    }

    #simple-my-account-content .settings_subsection_content .invoice-bottom{
        background-size: 245px;
        width: 245px;
        height: 6px;
        display: block;
    }

    #signup #domain_search_area:hover{
        height: 50px;
        overflow: hidden;
    }
    
    #signup #domain_search_area.active{
        height: 300px;
        overflow: initial;
    }

    #signup #product_hosting{
        margin-top: 250px;
    }

    body.login h1{
        background-size: 250px !important;
        background-position: center center !important;
    }
    
    body.home #signup #product_domain.initial{
        height: initial;
        background: transparent !important;
    }

    .mobile-scroll{
        width: 100%;
        overflow-x: scroll;
    }
    
    table.rounded td,
    table.mobile-responsive td,
    div.mobile-responsive{
        clear: both;
        width: 90%;
        display: block;
    }

    .singular .entry-title{
        font-size: 24px;
    }
    
    body.page-slug-individuals #signup {
        margin: 20px 0px 0px 0px;
        padding: 15px;
    }
    
    .mobile-hidden{
        display: none;
    }
    
    .credit-card-form input[type="radio"]{
        margin: 9px 9px 9px 0px;
    }
    
    .users .viewas{
        opacity: 1;
        margin-top: 3px;
    }
    
    .users .displayname{
        font-size: 12px;
    }
    
    #simple-my-account-content .users .status_indicator{
        position: initial;
        left: initial;
        display: block;
        clear: both;
        width: 100%;
    }
    
    .last_login{
        position: initial;
        left: initial;
        display: block;
        clear: both;
        width: 100%;
    }
    
    .users > li{
        height: auto;
        margin: 10px 0px;
    }
    
    .mobile-menu{
        display: block;
        height: 32px;
        width: 32px;
        background-image: url('images/mobile-menu.png');
        background-size: 60%;
        border-radius: 3px;
        background-repeat: no-repeat;
        background-color: rgba(255,255,255,0.1);
        background-position: center;
        cursor: pointer;
        position: absolute;
        top: 26px;
        right: 20px;
    }
    
    #access{
        width: 100%;
    }
    
    #secondary{
        display: none;
    }
    
    #primary{
        width: 100%;
    }
    
    #access ul.menu{
        display: none;
        position: absolute;
        top: 70px;
        left: 0px;
        width: 100%;
        margin: 0px;
        clear: both;
        background-color: #005394 !important;
        padding: 20px 0px;
        z-index: 9999;
        box-shadow: 0px 1000px 0px 1000px #005394;
        border-top: 2px solid rgb(0, 70, 124);
    }
    
    #access ul.menu li{
        clear: both;
        width: 100%;
        margin: 10px 0px;
    }
    
    #access ul.menu #myaccount{
    
    }
    
    #access ul.menu li ul.sub-menu{
        display: block;
        height: auto;
        position: initial;
        box-shadow: initial;
        background-color: #005394 !important;
        -webkit-box-shadow: initial;
        -moz-box-shadow: initial;
        width: 100%;
        left: initial;
        float: initial;
        top: initial;
        padding: 0px;
        margin: 0px;
        opacity: 1;
    }
    
    #access .current-menu-item,
    #access .current_page_item > a{
        background: #003864;
        border-radius: 0px;
    }
    
    #myaccount a{
        width: 100%;
        color: white;
        font-size: 13px;
    }
    
    #myaccount ul li{
        text-indent: 45px;
    }
    
    #access ul.menu > li#myaccount{
        height: auto;
    }
    
    #access ul ul a,
    #myaccount:hover a.login:hover{
        color: white;
        width: 100%;
        border: 0px;
        font-weight: bold;
        background: transparent !important;
    }
    
    #myaccount .sub-menu li a:hover{
        background: initial;
    }
    
    #myaccount a.login,
    #myaccount:hover a.login{
        font-size: 13px;
        width: 100%;
        margin: 0px;
        color: white;
        height: 30px;
        padding: 5px 0px;
        text-indent: 15px;
    }
    
    body.home #branding{
        height: 568px;
    }
    
    body.home #branding.small{
        background-size: 110px;
        height: 468px;
    }
    
    body.home #branding.small{
        background-size: 1100px; /* HERO BG */
    }

    body.page-slug-individuals #branding.small{
        height: 500px;
    }
    
    #signup div.box{
		clear: both;
		display: block;
		width: 90%;
		min-height: 150px;
	}
    
    label[for="STACK_BusinessNumberType"]{
        clear: left !important;
        display: block !important;
        width: 100% !important;
    }
    
    label[for="STACK_State"]{
        display: block !important;
        width: 100% !important;
        margin-bottom: 25px;
    }
    
    label[for="STACK_CountryCode"],
    .card-expiry label{
        width: 100% !important;
        display: block !important;
    }

    
    #STACK_State{
        position: absolute;
        left: 182px;
        width: 88px !important;
    }
    
    #STACK_State + span{
        padding: 0px !important;
    }
    
    #STACK_Postcode{
        position: absolute;
        left: 182px;
        width: 88px !important;
    }
    
    #signup,
    body.page-slug-individuals #signup{
        margin-top: 0px;
    }
    
    #signup .section > h2.welcome{
        font-size: 20px;
    }
    
    #signup #domain_search_area{
        display: block;
        clear: both;
        margin: 40px 0px 20px 0px;
    }

    
    #signup #domain_pw{
        width: 257px;
    }
    
    #signup #domain_options small{
        font-size: 10px;
        margin: 0px;
    }

    #signup #domain_options li{
        padding: 7px 9px;
    }

    #signup{
        width: 90%;
        padding: 5%;
    }
    
    body.home #branding{
        background-size: 200px;
        background-position: right 350px;
    }

    body.page-slug-individuals #branding{
        background-size: 230px !important;
        background-position: 100% 390px !important;
        height: 568px !important;
    }
    
    body.home #branding{
        background-image: url('images/hero-bg.png');
        background-repeat: no-repeat;
        background-position: -500px 0px;
        background-size: 1300px;
    }
    
    #signup .section p.emphasise{
        font-size: 13px;
        margin-bottom: 40px;
    }
    
    .singular .entry-content .section .cell-third,
    .singular .entry-content .section .cell-half,
    #supplementary .widget-area{
        clear: both;
        width: 100% !important;
        float: none !important;
        clear: both !important;
        padding: 0px;
    }
    
    body{
        min-width: initial;
    }
    
    #signup #domain{
        width: 160px;
    }
    
    .singular .entry-content .section h2.special{
        font-size: 20px;
    }
    
    #signup input, #signup div.box, #signup select, #signup #do_results {
        -webkit-transition: background-color 0.1s ease-in;
        -moz-transition: background-color 0.1s ease-in;
        -o-transition: background-color 0.1s ease-in;
        transition: background-color 0.1s ease-in;
    }
    
    #domain_spinner tr td{
        display: block;
    }
    
    #domain_spinner tr td:nth-of-type(1){
        width: 10%;
        float: left;
    }
    
    #domain_spinner tr td:nth-of-type(2){
        width: 80%;
        padding: 5px 0px;
    }
    
    #domain_spinner tr td:nth-of-type(3){
        clear: both;
        width: 80%;
        margin-bottom: 20px;
    }
    
    .voucher-token{
        width: 230px;
        height: 50px;
    }

}


/* =IE7
----------------------------------------------- */

#ie7 article.intro {
	margin-left: -7.6%;
	margin-right: -7.6%;
	padding-left: -7.6%;
	padding-right: -7.6%;
	max-width: 1000px;
}
#ie7 section.featured-post {
	margin-left: -7.6%;
	margin-right: -7.6%;
	max-width: 850px;
}
#ie7 section.recent-posts {
	margin-right: 7.6%;
}

/* =IE8 
----------------------------------------------- */ 
 
#ie8 section.feature-image.large img { 
	width: 100%; 
} 