/* Zero styling*/

*, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td { 
	margin: 0;
	padding: 0;
	outline: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset, img { 
	border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

caption, th {
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

q:before, q:after { 
	content: '';
}

abbr, acronym { 
	border: 0;
}

/** bg **/

body {
	background: #bcbcbc -webkit-gradient(
    linear,
    left top,
    right bottom,
    color-stop(0, rgb(237,237,237)),
    color-stop(1, rgb(164,164,164))
	);
	background: #bcbcbc -moz-linear-gradient(
    left top,
    rgb(237,237,237) 0%,
    rgb(164,164,164) 100%
	);

	font-family: Gill Sans, Myriad, Verdana, Arial;
}

#logo {
}

/**** Site ****/

/* Main blocks */
#container {
}

#headspace {
	height: 75px;
	width: 100%;
	border-bottom: 1px solid #000;
}

#midspace {
	height: 150px;
  padding: 25px 0;
	width: 100%;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	/*background: url(../img/middeco.png) no-repeat bottom center;*/
}

#lowerspace {
	height: 1px;
	width: 100%;
	border-top: 1px solid #000;
}

.content {
	width: 100%;
	border-top: 1px solid rgba(255,255,255,0.8);
	border-bottom: 1px solid rgba(255,255,255,0.8);
	overflow: auto;
	padding-bottom: 15px;
}

.contentinner {
	width: 960px;
	margin: 15px auto;
}

.inner {
	width: 450px;
	padding: 15px;
}

.orange {
	background: #ff9900 url(../img/stripes.png);
}

.green {
	background: #cbdb2a url(../img/stripes.png);
}

#hello {
	margin-left: -11px;
}

#supa {
	margin-top: -11px;
	margin-left: -11px;
}

.right {
	float: right;
}
.left {
	float: left;
}

p {
	text-align: justify;
	margin: 10px 0;
}

a {
	color: #4a4a4a;
	text-decoration: none;
	border-bottom: solid 1px;
}

a:hover {
	border-bottom: dashed 1px;
}

#me {
	float: right;
	border: 5px solid #fff;
	position: absolute;
	margin-left: 100px;
	margin-top: -65px;
	/* for firefox, safari, chrome, etc. */
	-webkit-transform: rotate(7deg);
	-moz-transform: rotate(7deg);
	/* for ie */
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);	
}

.shadow {
  box-shadow: 4px 4px 4px rgba(0,0,0,0.5);
  -moz-box-shadow: 4px 4px 4px rgba(0,0,0,0.5);
  -webkit-box-shadow: 4px 4px 4px rgba(0,0,0,0.5);
}

#fext {
	height: 100%;
}

#contacts {
	width: 440px;	
}

#contacts dt {
	float: left;
	clear: both;
}
#contacts dd {
	float: right;	
}

h2 {
	text-decoration: underline;
	margin-bottom: 6px;
}

.content2 {
	padding-top: 10px;	
}

#copy {
	height: 30px;
	padding: 10px 0 3px;
	float: right;
	margin-right: 13px;
}

#copy a {
	color: #888;
	border-bottom: none;
}

#copy a:hover {
	color: #666;
}

	.boxcontent h2 {
		font-size: 20px;
	}

  .box {
     position: relative;
     z-index: 0;
     padding: 0;
     margin: 50px auto;
     font-weight: normal;
     line-height: 1.2;
     text-align: center;
     background: #fff;
     width: 500px;
    }
    
    .box:before,
    .box:after {
      position: absolute;
      z-index: -1;
      content: '';
      background: transparent;
      bottom: 9px;
      width: 50%;
      height: 40%;
      
      -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
      -moz-box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
      box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
    }
    
    .box:before {
      left: 15px;
      -webkit-transform: rotate(-4deg);
      -moz-transform: rotate(-4deg);
      transform: rotate(-4deg);
    }
    
    .box:after {
      right: 15px;
      -webkit-transform: rotate(4deg);
      -moz-transform: rotate(4deg);
      transform: rotate(4deg);
    }
    
    .boxcontent {
      background: #fff;
      background: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#f2f2f2));
      padding: 30px;
    font-family: 'Arial';
    }
    
    .boxcloser {
    	float: right;
    }