/*
	Drop shadow
*/

.shadows_aren {
	display: block;
	width:100%;
	position: relative;
	margin: 4px -4px -4px 4px;
	background: url(/images/shadow/shadow-grid.gif) repeat;
}

/* ie6 ignores this selector */
html>body .shadows_aren {
	margin: 10px -10px -10px 10px;
	background: url(/images/shadow/shadow.png) right bottom no-repeat;
}

/* shadow corners */
.shadows_aren:before,
.shadows_aren:after {
	content: " ";
	display: block;
	width: 10px;
	height: 10px;
	background: inherit;	
}

.shadows_aren:before {
	position: absolute;
	top: 0;
	right: 0;
	margin: -10px 0 0 auto;
	background-position: right top;
}

.shadows_aren:after {
	margin: -10px 0 0 -10px;
	background-position: left bottom;
}

.shadows_aren .inner {
	display: block;
	position: relative;
	overflow: hidden; /* prevents margin leakage from child elements */
	left: -4px;
	top: -4px;	
}

/* ie6 ignores this selector */
html>body .shadows_aren .inner {
	left: -10px;
	top: -10px;
	margin: 0;
}


/* helper classes (not shadows_aren related) */
.sleft {
	float: left;
	display: inline; /* fixes ie double margin-left bug */
}

