/* START: modal.css */
.m_overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
	transition: opacity 200ms;
	display: none;
}

.m_overlay .cancel {
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: default;
}

.m_overlay:target {
	display: block;
}

.m_modal {
	margin: 96px auto;
	padding: 20px;
	background: #fff;
	border: 1px solid #666;
	width: 80%;
	border-radius: 6px;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
	position: relative;
	top: 0;
	left: 0;
	outline: none;
}

.m_modal h2 {
	margin-top: 0;
}

.m_modal .close {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 20px;
	right: 20px;
	opacity: 0.8;
	transition: all 200ms;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	color: #777;
}

.m_modal .close.guideflow_hovered {
	opacity: 1;
}

.m_modal .content {
	max-height: 400px;
	overflow: auto;
}

.m_modal p {
	margin: 0 0 1em;
	text-align: center;
}

.m_modal p:last-child {
	margin: 0;
}

/* END: modal.css */

/* START: bootstrap reset */
.m_modal {
	font-family: sans-serif;
	font-size: medium;
}

.m_modal h1, .m_modal h3 {
	color: black;
	float: none;
	clear: both;
	font-family: inherit;
	font-weight: bold;
	font-size: 32px;
	margin: .67em 0;
	padding: 0;
	width: auto;
	line-height: normal;
}

.m_modal h3 {
	font-size: 1.17em;
	margin: .83em 0;
}

.m_modal table {
	border-collapse: separate;
}

.m_modal p {
	margin: 0.5em 0;
	line-height: 1.2;
}

.m_modal input {
	float: none;
	clear: both;
}

/* END: bootstrap reset */
