button {
	border: none;
	padding: 10px 25px;
	background: #0064b0;
	color: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	display: inline-block;
	margin: 3px 2px;
	}
button:focus{outline:0}
button:hover {background: #02518d;}

.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 90%;
	max-width: 600px;
	min-width: 320px;
	max-height: 400px;
	overflow:auto;
	z-index: 2000;
	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::-webkit-scrollbar {
     width:6px;
	 height:640px;     
 }
 .md-modal::-webkit-scrollbar-thumb {
     border-radius: 3px;
     -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
     background: rgba(0,0,0,0.2);
 }
 .md-modal::-webkit-scrollbar-track {
     -webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0.1);
     border-radius: 0;
     background: rgba(0,0,0,0.1);
  }


.md-show {
	visibility: visible;
}
.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(234,234,234,0.8);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}
.md-content {
	color: #fff;
	background: #fff;
	position: relative;
	margin: 0 auto;
}
.md-content h3 {
	margin: 0;
	padding: 15px;
	text-align: center;
	font-size: 20px;
	font-weight: 300;
	color: #fff;
	background:#0064b0;
}
.md-content > div {
	padding: 10px 20px 20px;
	margin: 0;
	font-weight: 300;
	font-size: 16px;
	color: #000
}
.md-content > div a{
	color: #000
}
.md-content > div p {
	margin: 0;
	padding: 10px 0;
}
.md-content > div ul {
	margin: 0;
	padding: 0 0 20px 0;
}
.md-content > div ul li {
	padding: 10px 0 5px;
	line-height: 40px;
	border-bottom: 1px solid #EBECED;
}
.imgcss {
    width: 45px;
    vertical-align: middle;
	padding-right: 10px;
	float: left
}
.md-content button {
	display: block;
	margin: 0 auto;
	font-size: 0.8em;
}

.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;
}