@charset "utf-8";

/*---------------------------------------
Version: 1.0
Author: Federico Deal
email: fede@vixur.com
Website: www.vixur.com
---------------------------------------*/


@import url(layout.css);
@import url(typography.css);
@import url(colors.css);


* {/* zero all margins and padding */
	margin: 0;
	padding: 0;
}

body { /* set page background colour/image */
	font-size: 62.5%;
	text-align:center;
	height:100%;
}

html {
	font-size:100%;
}

.clear {
    clear: both;
	line-height: 0em; /* Needed if clear DIV contains a space... long story. */
}

.left {
	float: left;
}

.right {
	float: right;
}

a img {/* remove borders from linked images */
	border: 0;
}

a {
	text-decoration:none;
}

a:hover {
	text-decoration:underline;
}

ul {
	list-style:none;
}

/* Header logo image replacement. */

#title h1 {
	width:366px;
	height:72px;
	position:relative;
}
	
#title h1 span {
	background: url(../images/logo.png) no-repeat;
	position:absolute;
	width:100%;
	height:100%;
}