﻿#panel {
	position: relative;
	background-color: #404040;
	color: cornsilk;
	width: 60%;
	left: 20%;
	right: 20%;
	padding: 5px;
	box-shadow: 3px 3px 3px #808080;
}
#panel img {
	width: 50%;
}
#panelClose {
	position: absolute;
	width: 20px;
	height: 20px;
	top: -5px;
	right: -5px;
	border: 2px DodgerBlue solid;
	border-radius: 50%;
	text-align: center;
	cursor: pointer;
	font-weight: bold;
	color: Khaki;
	background-color: #404040;
}
#panelClose:hover {
	color: IndianRed;
}
