/* CONFIRMBOX */

#cOverlay
{
	position: absolute;
	left: 0;
	width: 100%;
	background-color: #000;
	cursor: pointer;
}

#cContainer
{
	position: absolute;
	z-index: 100;

	top: 0;
	left: 0;

	width: 100%;
}

#cConfirm
{
	position: relative;
	text-align: center;

	width: 300px;
	
	padding: 10px;
	margin: 0 auto;

	background: #fff;	
}

#cInputs
{
	margin: 10px;
}

#cAccept, #cCancel
{
	color: #777;
	background: #f6f6f6;
	border: 1px solid #e0e0e0;

	padding: 0.2em 1em;
	margin: 0 0.3em;

	text-decoration: none;
}

#cAccept:hover, #cCancel:hover
{
	color: #000;
	background: #e0e0e0;
	border: 1px solid #aaa;
}
