@charset "utf-8";/*	1. Reseting		2. General	3. Heading	4. Layout*//*	1. Reseting	------------------------------*/	* {		margin: 0;		padding: 0;	}	a { text-decoration: none; }/*	2. General	------------------------------*/	html, body {
		height: 100%;
		-webkit-font-smoothing: antialiased;
	}	body {		margin: 0 auto;		background: #fff url("../images/background.png") top left no-repeat;		font-size: 12px;		font-family: Tahoma, sans-serif;		display: table;		height: 100%;		width: 100%;	}/*	3. Heading	------------------------------*/	h1#logotype {		display: block;
		margin: auto;		background-color: transparent;		background-image: url('../images/logotype.png');		background-position: 0 0;		background-repeat: no-repeat;		width: 154px;		height: 90px;		text-indent: -9999px;	}/*	4. Layout	------------------------------*/	#wrapper {		margin: 0px;		display: table-cell;		vertical-align: middle;		/* For IE6/7 */		position: relative;		top: expression(this.parentNode.clientHeight/2 - this.firstChild.clientHeight/2 + " px");	}		#content {			margin: 0 auto;			width: 300px;		}			#content ul {				margin: auto;				width: 280px;			}			#content li {				float: left;				list-style: none;				padding-right: 5px;			}			.contact {				-webkit-border-radius: 5px;				-moz-border-radius: 5px;
				border-radius: 5px;				padding: 10px;				background-color: #03bbff;
				background-image: -moz-linear-gradient(top, #36c9ff, #03bbff);
				background-image: -webkit-gradient(linear, left top, left bottom, from(#36c9ff), to(#03bbff));
				background-image: linear-gradient(top, #36c9ff, #03bbff);
				-webkit-text-shadow: rgba(255,255,255,0.5) 1px 1px 0;
				-moz-text-shadow: rgba(255,255,255,0.5) 1px 1px 0;
				text-shadow: rgba(255,255,255,0.5) 1px 1px 0;				color: #000;
				-webkit-transition: background-color .7s linear, color 1s linear, text-shadow .3s linear;			}
			
			a.contact {
				font-weight: bold;
			}
						a.contact:hover {				background-color: #008bbe;
				-webkit-text-shadow: rgba(0,0,0,0.2) 1px 1px 0;
				-moz-text-shadow: rgba(0,0,0,0.2) 1px 1px 0;
				text-shadow: rgba(0,0,0,0.2) 1px 1px 0;				color: #fff;			}
