html {
	margin: 0;
	height: 100%;
}	
body {
	overflow-y: hidden;
	font-family: 'Century Gothic', 'Apple Gothic', AppleGothic, "URW Gothic L", "Avant Garde", Futura, sans-serif;
	font-size: 0.9em;
	line-height: 1.45;
	-webkit-text-stroke: 0.1px; /* help chrome to smoothen the fonts, suprisingly all other browsers are fine */
	
	/**
	 * 	Gradient Background
	 */
	background: #4B9185; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover,  #4B9185 0%, #0f3848 67%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#4B9185), color-stop(67%,#0f3848)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #4B9185 0%,#0f3848 67%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #4B9185 0%,#0f3848 67%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #4B9185 0%,#0f3848 67%); /* IE10+ */
	background: radial-gradient(ellipse at center,  #4B9185 0%,#0f3848 67%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4B9185', endColorstr='#0f3848',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

#centerContainer {
	bottom: 0;
	height: 300px;
	left: 0;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	width: 960px;
}

/*  
 * Introduction	
 */
#introduction {
	float: left;
}

.textbox {
	/*box-shadow: 3px 3px 3px #333333;*/
	position: relative;
	margin-top: 0;
	background: #ffffff;
	padding: 5px;
}

.inline {
	display: inline-block;
}

.shadow:after{ 
    content: ""; 
    z-index: -1; 
    position: absolute; 
    width: 50%; 
    height: 24px;
    right: 3px; 
    bottom: 13px;
        
    transform: rotate(3deg);
    -ms-transform: rotate(3deg);
	-o-transform: rotate(3deg);
    -webkit-transform: rotate(3deg);  
     
    box-shadow: 0px 15px 10px #000000;
    -webkit-box-shadow: 0px 15px 10px #000000;
    -moz-box-shadow: 0px 15px 10px #000000;
    -ms-box-shadow: 0px 15px 10px #000000;
    -o-box-shadow: 0px 15px 10px #000000;
} 

.spacer {
	display: inline-block;
	padding: 20px 10px 5px 5px;
	font-size: 1.7em;
	font-family: Georgia, Times, 'Times New Roman', serif;
	font-weight: bold;
	font-style: italic;
	color: #FFFFFF;
	text-shadow: 2px 2px 5px #333333;
}
.spacerTop {
	padding-top: 0;
}

.bigText {
	color: #4B866D;
	font-size: 3em;
}

.mediumText {
	color: #6AAC90;
	font-size: 2em;
}

.smallText {
	color: #6AAC90;
	font-size: 1.5em;
}

/*
 * Image and Contact Info
 */
.right {
	float: right;
}

#foto {
	position: relative;
}
.foto-img {
	width: 220px;
	margin-right: 20px;
	transform: rotate(10deg);
	-ms-transform: rotate(10deg);
	-o-transform: rotate(10deg);
	-webkit-transform: rotate(10deg);
}

.stripLeft {
	background: url("../img/strip.png");
	width: 120px;
	height: 30px;
	position: absolute;
	opacity: 0.9;
	top: 0;
	left: -15px;
	transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	-o-transform: rotate(-30deg);
	-webkit-transform: rotate(-30deg);
}

.stripBottom {
	background: url("../img/strip.png");
	width: 120px;
	height: 30px;
	position: absolute;
	opacity: 0.9;
	bottom: -10px;
	right: 15px;
	transform: rotate(-10deg);
	-ms-transform: rotate(-10deg);
	-o-transform: rotate(-10deg);
	-webkit-transform: rotate(-10deg);
}

#contactInfo {
	position: relative;
	margin-top: 50px;
	left: -26px;
}

.contactButtonContainer {
	background: #ffffff;
	padding-top: 20px;
	text-align: center;
}

.contactButton {
	display: inline-block;
	margin: 5px;
}

.contactButton:hover {
	background: #6AAC90;
}

svg {
	vertical-align: middle;
}

.stripTop {
	background: url("../img/strip.png");
	width: 40px;
	height: 40px;
	position: absolute;
	opacity: 0.9;
	top: -20px;
	left: 40%;
	transform: rotate(93deg);
	-ms-transform: rotate(93deg);
	-o-transform: rotate(93deg);
	-webkit-transform: rotate(93deg);
}

/**
 * 	Tooltip
 */
.tooltip {
	background: #222222;
	color: #ffffff;
	opacity: 0.95;
	font-size: 1.2em;
	display: none;
	padding: 20px;
	
	-moz-border-radius: 15px;
	border-radius: 15px;
	
	position: absolute;
}
.visible {
	display: inline-block !important;
}
