/* ie6 ignores this selector */
html>body .shadow {
	margin: 10px -10px -10px 10px;
	background: url("../bilder/shadow.png") right bottom no-repeat;
}

/* shadow corners */
.shadow:before,
.shadow:after {
	content: " ";
	display: block;
	width: 10px;
	height: 10px;
	background: inherit;	
}

.shadow:before {
	position: absolute;
	top: 0;
	right: 0;
	margin: -10px 0 0 auto;
	background-position: right top;
}

.shadow:after {
	margin: -10px 0 0 -10px;
	background-position: left bottom;
}

.shadow .inner {
	display: block;
	position: relative;
	overflow: hidden; /* prevents margin leakage from child elements */
	left: -4px;
	top: -4px;
}

/* ie6 ignores this selector */
html>body .shadow .inner {
	left: -10px;
	top: -10px;
	margin: 0;
}

.clear {
	clear: both;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: 0 -1px -1px 0;
	border: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
}

.left {
	float: left;
	display: inline; /* fixes ie double margin-left bug */
}

.right { float: right; }
