#specialWindow {
	position: fixed;
	overflow: hidden;
	
	width: 100%;
	height: 100%;
	
	margin: 0px;
	padding: 0px;

	z-index: 2000;
}

#specialBackground {
	position: absolute;
	overflow: hidden;
	
	width: 100%;
	height: 100%;
	
	top: 0px;
	left: 0px;
	
	margin: 0px;
	padding: 0px;
	
	background-color: black;
	z-index: 2001;

	opacity: 0.7;
}

#specialPlayer {
	width: 300px;
	height: 230px;
}

#specialBox {
	position: relative;
	overflow: hidden;
	
	background-color: white;
	z-index: 2002;
	
	width: 300px;
	height: 250px;
	
	margin: 150px auto 5px auto;

	-moz-border-radius: 1em;
	border-radius: 1em;
	
	padding: 2em;
}

#specialInformation {
	text-align: center;
}

#specialCloseBox {
	position: absolute;
	
	top: 5px;
	right: 5px;
	
	width: 1.1em;
	height: 1.1em;
	
	border: 1px solid red;
	
	text-align: center;
	color: red;
	
	z-index: 2003;
	cursor: pointer;
}

