/* @override 
	http://localhost/test.css
	http://dev.ajcates.com/tests/wrap-shadow/test.css
*/

body {
	font-family: Helvetica Neue, Arial, Helvetica, Geneva, sans-serif;
	font-size: 13px;
	background: #3a6682;
	margin: 0px;
}

body:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	display: block;
	-webkit-box-shadow: inset 0px 0px 2px rgba(255,255,255, .7);
}

article {
	width: 50%;
	margin: 0 auto;
	background: #fbf8f1;
	-webkit-border-radius: 4px;
	padding: 1.5em;
	color: rgba(0,0,0, .8);
	text-shadow: 0px 1px 0px #fff;
	position: absolute;
	left: 25%;
	top: 30%;
	z-index: 999;
	line-height: 1.5;
	text-align: center;
}

article > *:first-child {
	position: static;
}

article > *:last-child {
	margin-bottom: 0px !important;
}

article:after {
	display: block;
	content: "";
	width: 100%;
	height: 20%;
	background-color: rgba(0,0,0, .3);
	opacity: 1;
	position: absolute;
	bottom: 8px;
	left: 0px;
	width: 98%;
	margin-left: 1%;
	z-index: 5 !important;
	-webkit-box-shadow: 0px 0px 30px rgba(0,0,0, .7);
	-webkit-transform: rotate(-4deg);
}

article:before {
	display: block;
	content: "";
	width: 100%;
	height: 20%;
	background-color: rgba(0,0,0, .3);
	opacity: 1;
	position: absolute;
	bottom: 8px;
	left: 0px;
	width: 98%;
	margin-left: 1%;
	z-index: 5 !important;
	-webkit-box-shadow: 0px 0px 30px rgba(0,0,0, .7);
	-webkit-transform: rotate(4deg);
}

article > *:first-child > * {
	position: relative;
	z-index: 99;
}
article > *:first-child:after {
	display: block;
	content: "";
	-webkit-border-radius: 3px;
	-webkit-box-shadow: 0px 2px 10px rgba(0,0,0, .3);
	border: 1px solid #fff;
	-webkit-transform: rotate(0deg);
	position: absolute;
	width: 100%;
	height: 100%;
	background: #e8eaed;
	opacity: 1;
	top: 0px;
	left: 0px;
	z-index: 55;
	
}

article > * {
	z-index: 99;
	position: relative;
}

h1 {
	margin: 0;
	line-height: 1;
}

code {
	white-space: pre;
	display: block;
}


