/*
	yDSF (ydnar Drop-Shadow-Fu)
	ydnar@sixapart.com - http://www.sixapart.com
*/

.ydsf {
	display: block;
	position: relative;
	margin: 6px -6px -6px 6px;
	background: url(../images/shadow-grid.gif) repeat;
}

/* ie6 ignores this selector */
html>body .ydsf {
	margin: 12px -12px -12px 12px;
	background: url(../images/shadow.png) right bottom no-repeat;
}

/* shadow corners */
.ydsf:before,
.ydsf:after {
	content: " ";
	display: block;
	width: 12px;
	height: 12px;
	background: inherit;	
}

.ydsf:before {
	position: absolute;
	top: 0;
	right: 0;
	margin: -12px 0 0 auto;
	background-position: right top;
}

.ydsf:after {
	margin: -12px 0 0 -12px;
	background-position: left bottom;
}

.ydsf .inner {
	display: block;
	position: relative;
	overflow: hidden; /* prevents margin leakage from child elements */
	left: -6px;
	top: -6px;
}

/* ie6 ignores this selector */
html>body .ydsf .inner {
	left: -12px;
	top: -12px;
	margin: 0;
}


.left {
	float: left;
	display: inline; /* fixes ie double margin-left bug */
}

.right { float: right; }