.market-login-header {
	margin-top: 20px;
	margin-bottom: 10px;
}

.contentbox {
	width: 400px;
	background-color: #FFFFFF;
	margin: 25px auto;

	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);

	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.contentbox h1 {
	font-weight: lighter !important;
	font-size: 25px !important;
	text-transform: uppercase;
	background-color: #59ae59;
	margin: 0;
	padding: 20px 25px;
	color: #FFFFFF;
	text-align: left;
}

.contentbox a {
	text-decoration: none;
	font-size: 1rem;
	color: #79a8c1;
}

.contentbox a:hover {
	color: #507184;
}

.contentbox > div {
	padding: 25px;
	line-height: 150%;
}

.notifybox {
	position: fixed;
	width: 450px;
	background-color: #FFFFFF;
	top: 10px;
	left: 50%;
	margin-left: -225px;
	overflow: hidden;

	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	-moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);

	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	z-index: 999;
	display: table;
}

.notifybox > div {
	display: table-cell;
	line-height: 150%;
}

.notifybox > div:nth-child(1) {
	width: 80px;
	text-align: center;
	vertical-align: middle;
}

.notifybox > div:nth-child(2) {
	padding: 10px 15px;
	text-align: left;
	font-weight: lighter;
	font-size: 18px;
}

.notifybox h2 {
	text-align: left;
	margin: 3px 0 10px 0;
	font-weight: bold;
	font-size: 18px;
	text-transform: uppercase;
}

.notifybox button {
	border: none;
	background: transparent;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 16px;
	float: right;
	margin-top: 10px;
	padding: 5px 10px;
}

#error h2, #error button {
	color: #db4040;
}

#error.notifybox > div:nth-child(1) {
	background-color: #db4040;
}

#success h2, #success button {
	color: #19c29c;
}

#success.notifybox > div:nth-child(1) {
	background-color: #19c29c;
}

.button_wrapper {
	margin-top: 20px;
	text-align: center;
}

#loginform_wrapper {
	padding: 20px 0;
	text-align: center;
}

#loginform {
	text-align: left;
}

#loginform:not(.has-login-header) {
	margin-top: 20px;
}

.label {
	font-weight: lighter;
	font-size: 14px;
	display: block;
	margin-top: 15px;
}

#forgottenPassword h1, #forgottenPassword .button {
	background-color: #f8992e;
}

#registrationform h1, #registrationform .button {
	background-color: #79a8c1;
}

#forgottenPassword {
	display: none;
}

#logintypes a {
	text-decoration: none;
	color: #79a8c1;
	display: inline-block;
	border: 1px solid #C0C0C0;
	padding: 5px 10px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	width: 150px;
	text-align: left;
}

.separator {
	padding: 10px 0;
	text-align: center;
}

.separator hr {
	border: 0;
	border-top: 1px solid #dce0e0;
	margin: -16px 0 -10px 0;
}

.separator span {
	background-color: #FFFFFF;
	padding: 8px;
	font-size: 16px;
	display: inline-block;
}

.contentbox-separator {
	margin: 0 auto;
	padding: 0;
	text-align: center;
	display: block;
	list-style-type: none;
	font-size: 70px;
	color: #FFFFFF;
}

.contentbox-separator li {
	line-height: 40px;
	margin: 0;
	padding: 0;
}

.contentbox-separator li:before {
	content: '\2022';
	text-shadow: 0px 3px 1px rgba(0, 0, 0, 0.1);
}

/** Dialog **/
.dlg-modal {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.5);
	text-align: center;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}

.dlg-modal-content {
	position: relative;
	z-index: 101;
	display: inline-block;
	text-align: left;
	background-color: #FFFFFF;
	min-width: 55%;
	max-width: 90%;
	max-height: 70%;
	padding: 20px 20px 5px 20px;
	line-height: 150%;
}

.dlg-modal-content p {
	padding: 20px 0 20px 0;
}

.dlg-modal-buttons {
	text-align: right;
}