/* line 3 */
body {
  background: #eeeeee;
  font-family: "helvetica neue", helvetica, arial, sans-serif;
}

/* line 7 */
#warped {
  position: relative;
  z-index: 0;
  padding: 0;
  margin: 50px auto;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
  background: white;
  width: 500px;
}
/* line 17 */
#warped:before, #warped:after {
  position: absolute;
  z-index: -1;
}
/* line 20 */
#warped:before {
  content: "";
  text-align: left;
  background: transparent;
  bottom: 9px;
  right: 10px;
  width: 50%;
  height: 40%;
  -moz-transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
  -o-transform: rotate(4deg);
  transform: rotate(4deg);
  -moz-box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 50px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 50px;
  -o-box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 50px;
  box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 50px;
}
/* line 30 */
#warped:after {
  content: "";
  text-align: right;
  background: transparent;
  left: 10px;
  bottom: 9px;
  width: 50%;
  height: 40%;
  -moz-transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);
  transform: rotate(-4deg);
  -moz-box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 50px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 50px;
  -o-box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 50px;
  box-shadow: rgba(0, 0, 0, 0.7) 0px 0px 50px;
}
/* line 41 */
#warped .content {
  background: white;
  padding: 30px 0;
}

