/* General styles for the modal */

/* 
Styles for the html/body for special modal where we want 3d effects
Note that we need a container wrapping all content on the page for the 
perspective effects (not including the modals and the overlay).
*/


.md-modal {
	position: absolute;
	top:68px;
	left:112px;
	
	width: 224px;
	height: 134px;
	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-show {
	visibility: visible;
}



/* Content styles */
.md-content {
	background: #eef5fd;
	position: relative;
	border-radius: 3px;
	margin: 0 auto;
	 height:134px;
	
}






.md-content button {
	display: block;
	margin: 0 auto;
	font-size: 0.8em;
}

/* Individual modal styles with animations/transitions */

/* Effect 1: Fade in and scale up */
.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:0.9;
	-moz-opacity:0.9;
	filter:alpha(opacity=90);
}



.md-close{border: none;
                padding:2px;
	background: #c0392b;
    font-size:12px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	border-radius: 2px; right:0px;}



.xzcfzy{ float:left; margin-left:10px; line-height:26px;}
