/* the overlayed element */
.overlay {
	
	max-width: 790px;
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	
	
	/* styling */
	background-color:#000;
	max-height:600px;
	overflow: auto;
	padding: 35px;
	border:1px solid #444;	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;
	z-index:10000;	
}

/* close button positioned on upper right corner */
.overlay .close {
	position:absolute;
	background-image:url(../img/overlay/close-button.png);
	height:29px;
	width:29px;
	right:0;
	top:0;
	padding: 0;
	margin: 0;
	cursor:pointer;
}
.overlay .esc {
	position:absolute;
	font-size:10px;
	height:11px;
	width:20px;
	left:0;
	top:0;
	padding: 0;
	margin: 0;
	cursor:pointer;
}
.overlay h5 {
	font-size:16px;
	
	text-align:center;
	color: #ff6600;
}

#archive_box {
	float:right;
	margin-bottom: 20px;
}

.archive_btn {
	padding:0;
	margin:0;
	width:80px;
	font-size:11px;
	border: 1px solid #444;
	background-color: #000;
	color:#bbb;
}


#disco_box {
	float:right;
	margin-bottom: 20px;
}

.disco_btn {
	padding:0;
	margin:0;
	width:80px;
	font-size:11px;
	border: 1px solid #444;
	background-color: #000;
	color:#bbb;
}



#lang_box {
	margin-bottom: 20px;
}

.en_btn {
	padding:0;
	margin:0;
	border: none;
	height:16px;
	width:16px;
	background: url('../img/uk_flag.png') no-repeat center;
}
.fr_btn {
	padding:0;
	margin:0;
	border: none;
	height:16px;
	width:16px;
	background: url('../img/fr_flag.png') no-repeat center;
}
.en_btn:hover, .fr_btn:hover, .disco_btn:hover {
	cursor: pointer;
}



