.pr-display button {
	border: none;
	background: #fff;
	color: #a40001;
	cursor: pointer;
	display:  block;
	padding:8px 15px;
	outline:none;
	border:2px solid #a40001;
	font-weight:bold;
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}
.pr-display button:hover {
	background: #a40001;
	color:#fff
}
.md-base {
}
.md-close {
	background:#fff;
	color:#000;
	cursor:pointer;
	border:none;
	position: absolute;
	top: 5px;
	right: 5px;
	font-size:15px;
}
.md-close:hover {
	color:#ff6600;
}
/*--------------------*/
.md-perspective, .md-perspective body {
	height: 100%;
	overflow: hidden;
}
.md-perspective body {
	background: #222;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
	perspective: 600px;
}
.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width:95%;
	min-width: 300px;
	height: auto;
	z-index: 999999;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.md-modal#form-login {
	max-width: 400px;
}
.md-modal#form-join {
	max-width: 850px;
}
.md-modal#form-login iframe {
	width:100%;
	min-height:215px;
}
.md-modal#form-join iframe {
	width:100%;
	min-height:300px;
}
.md-show {
	visibility: visible;
}
.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 99999;
	opacity: 0;
	background: #333;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
 .md-show ~ .md-overlay {
 opacity: 0.8;
 visibility: visible;
}
/* Content styles */
.md-content {
	color: #666;
	background: #fff;
	position: relative;
	margin: 0 auto;
	height:auto;
	overflow:auto;
	padding:15px;
}
.md-content h2 {
	font-weight:300;
	padding-top:0px!important;
	margin-top:0px!important;
	margin-bottom:5px!important;
	color:#243877;
}
.md-content p {
	padding-bottom:10px!important;
}
.md-content > div {
	padding: 15px 10px 10px;
	margin: 0;
	font-weight: 300;
}
.model-group {
}
.model_left, .model_right {
	float:left;
	width:50%;
	box-sizing:border-box;
	border-bottom:1px solid #ccc;
	border-top:1px solid #ccc;
	height:auto;
	padding:10px;
	color:#333333;
}
.md-effect-1 .md-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.md-show.md-effect-1 .md-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
