/*
	Modal window
*/
#modal_background {
	display: none;
	position: absolute;
	z-index: 2000;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #1A1818;
}
.modal_window {
	display: none;
	position: absolute;
	z-index: 2001;
	left: 400px;
	top: 400px;
	min-width: 200px;
	background-color: #fff;
	border: 1px solid #E9E7E7;
	-webkit-box-shadow: 0px 0px 20px #1A1818; /* Saf 3-4 */
	-moz-box-shadow: 0px 0px 20px #1A1818; /* FF 3.5 - 3.6 */
	box-shadow: 0px 0px 20px #1A1818; /* Opera 10.5, IE 9, FF 4+, Chrome 10+ */
	/* NOTE: make IE equivalent */
}
	.modal_window .close {
		position: absolute;
		right: 9px;
		top: 9px;
	}

/* Feedback-type modal */
#feedback {
	min-width: 200px;
	padding: 38px;
	position: fixed;    /* We want it in the middle always, even when scrolling */
}
	#feedback h2 {
		font-size: 130%;
		font-weight: normal;
		margin-bottom: 1em;
		line-height: 1.3;
		font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Arial, Helvetica, sans-serif;
		margin-top: -2px;
	}
	#feedback p {
		font-size: 130%;
		color: #1A1818;
	}
    #feedback p a {
		color: #900;
    }
