#loginBox {
	color: #767676;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
	max-width: 450px;
	background: #F9FAFA; 
	border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border: 1px solid #ccc;		
	font-family: arial, sans-serif;
	font-size: 14px;
}

#loginBox h2 {
	font-family: arial, sans-serif;
	font-size: 18px;
	color: #000;
}

#loginBox .inputBox {
	font-family: arial, sans-serif;
	font-size: 18px;
	color: #767676;
/* 	max-width: 350px; */
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border-radius: 2px 2px 2px 2px;
	-moz-border-radius: 2px 2px 2px 2px;
	-webkit-border-radius: 2px 2px 2px 2px;
	border: 1px solid #ccc;	
}

#loginBox label {
	display: block;
	font-family: arial, sans-serif;
	color: #767676;
	padding-bottom: 5px;
}

#loginBox #formBox {
	padding: 20px 38px 15px 38px;
	overflow: auto;
}

#loginBox #loginInfo {
	margin: 5px;
	max-width: 372px;
}

#loginBox #loginMes {
	margin: 0 0 15px 0;
	color:#ba252f;
}

#loginBox #loginOpts {
	padding-top: 5px;
}

#loginBox #loginOpts a {
	padding-right: 10px;
	float: left;
/* 	color: #FBAF43; */
	text-decoration: none;
}

#loginBox #loginOpts a:hover {
	color: #000000;
}

.buttonBox {
	background-color: #7AB55C;
	-webkit-border-top-left-radius: 2px;
	-moz-border-radius-topleft: 2px;
	border-top-left-radius: 2px;
	-webkit-border-top-right-radius: 2px;
	-moz-border-radius-topright: 2px;
	border-top-right-radius: 2px;
	-webkit-border-bottom-right-radius: 2px;
	-moz-border-radius-bottomright: 2px;
	border-bottom-right-radius: 2px;
	-webkit-border-bottom-left-radius: 2px;
	-moz-border-radius-bottomleft: 2px;
	border-bottom-left-radius: 2px;
	text-indent: 0;
	border: 1px solid #7AB55C;
	display: inline-block;
	color: #ffffff;
	font-family: Arial;
	font-size: 15px;
	font-weight: bold;
	font-style: normal;
	height: 32px;
	line-height: 32px;
	text-decoration: none;
	text-align: center;
	padding: 0 15px;
}
.buttonBox:hover {
	background-color: #639648;
	border: 1px solid #639648;
}

.buttonBox:active {
	position: relative;
	top: 1px;
}

#logInOut, #nope {
	text-align: center;
	line-height: 20px;
	color: #767676;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
	width: 300px;
	background: #F9FAFA;
	border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border: 1px solid #ccc;
	font-family: arial, sans-serif;
	font-size: 16px;
	padding: 15px;	
}

#nope {
	text-align: left;
	width: 325px;
}

#logInOut a, #nope a {
	color: #FBAF43;
	text-decoration: none;
}

#logInOut a:hover, #nope a:hover {
	color: #2273bf;
}

/* for recaptcha box */
#recaptcha_widget_div {
	margin-left: -37px;
	margin-bottom: 15px;
}

/* member menu */
#memMenu {
	font-family: arial, sans-serif;
	font-size: 16px;
	min-height: 26px;
	width: auto;	
}

#memMenu a {
	padding: 4px 20px;
	display: block;
	text-decoration: none;
 	color: #FBAF43; 
/* 	border-right: 1px solid #CCC;     */
}

#memMenu a:hover {
	color: #ffffff;
    background-color: #5C5C5E;
}

#memMenu a.selected {
	color: #ffffff;
    background-color: #5C5C5E;
    cursor: default;
}

.memMenuItem {
	background-color: #eeeeee;
}

#loginDate {
	margin-top: 60px;
	font-size: 10px;	
}

/* password strength meter */
#pwd_strength_wrap {
	position: relative;
	background: #fff;
	border: 1px solid #ccc;
	width: 325px;
	padding: 10px;
	margin: 0 auto 20px auto;
	display: none;
}

#pwd_strength_wrap:before, #pwd_strength_wrap:after {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: ' ';
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

#pwd_strength_wrap:before {
	border-color: rgba(204, 204, 204, 0);
	border-bottom-color: #ccc;
	border-width: 11px;
	margin-left: -151px;
}

#pwd_strength_wrap:after {
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 10px;
	margin-left: -150px;
}

#pswd_info ul {
	list-style-type: none;
	margin: 5px 0 0;
	padding: 0;
}

#pswd_info ul li {
	padding: 0 0 0 20px;
}

#pswd_info ul li.valid {
	background-position: left -42px;
	color: #639648;
}

#passwordStrength {
	display: block;
	height: 5px;
	margin-bottom: 10px;
	transition: all 0.4s ease;
}

.strength0 {
	background: none; /* too short */
	width: 0px;
}

.strength1 {
	background: none 0 0 repeat scroll #ba252f;/* weak */
	width: 25px;
}

.strength2 {
	background: none repeat scroll 0 0 #FFC824;/* good */
	width: 75px;
}
.strength3 {
	background: none 0 0 repeat scroll #639648;/* strong */
	width: 100px;
}
 
.strength4 {
	background: none 0 0 repeat scroll green;/* best */
	width: 150px;
}

/* site specific for mg.donniebelldesign.com */
.border-top {
	border-top: 1px solid #5C5C5E;
	margin-top: 0;
	margin-bottom: 0;
}

.border-bottom {
	border-bottom: 1px solid #5C5C5E;
}

.border-left {
	border-left: 1px solid #5C5C5E;
	margin-left: 0;
}

.border-right {
	border-right: 1px solid #5C5C5E;
}

.row-header { background-color: #5C5C5E;color:#ffffff;font-weight: bold;}