@media (max-width:480px) {
		
	#popup {
		display: none;
		z-index: 2;
		position: fixed;
		width:280px;
		top: 25%;
		left: 50%;
		margin-left: -150px;
		background: none repeat scroll 0 0 #000;
		border: 1px solid #fff;
		z-index:10000000;
	}
	
	div.schliessen {
		position: relative;
		height: 30px;
		width: 30px;
		left: 27px;
		bottom: 24px;
		background: url("../images/close.png") no-repeat scroll 0 0 transparent;
		float: right;
		cursor: pointer;
	}
	
	#popup_inhalt {
	    margin: 15px;
	}

}

@media (min-width:481px) {
	
	#popup {
		display: none;
		z-index: 2;
		position: fixed;
		width:500px;
		top: 25%;
		left: 50%;
		margin-left: -250px;
		background: none repeat scroll 0 0 #000;
		border: 1px solid #fff;
		z-index:10000000;
	}
	
	div.schliessen {
		position: relative;
		height: 30px;
		width: 30px;
		left: 27px;
		bottom: 24px;
		background: url("../images/close.png") no-repeat scroll 0 0 transparent;
		float: right;
		cursor: pointer;
	}
	
	#popup_inhalt {
	    margin: 15px;
	}

}