@charset "utf-8";

/*---------------------------------------
Version: 1.0
Author: Juan Caviglia
email: juan@vixur.com
Website: www.vixur.com
---------------------------------------*/


@import url(layout.css);
@import url(typography.css);
@import url(looks.css);


/* --- C R O S S  S I T E  D E F A U L T S --- */

* {/* zeros all margins and paddings */
	margin: 0;
	padding: 0;
}

body {
	font-size: 62.5%;/* creates an equivalency of 1em = 10 pixels */
	text-align: center; /* centers all page content => wrapper element is set to align text back to the left */
	height:100%; /* NOTE MISSING */
}

html {/* IE has a problem with ems - resizing text from medium (default) to large in IE5/6 would lead to a huge increase in font size rather than the gradual one expected - so another selector is needed to get IE to behave */
	font-size: 100%; 
}

.clear { /* NOTE MISSING */
    clear: both;
	line-height: 0em; /* added so that the div does not take up space */
}

a img {
	border: 0;
}

ul {
	list-style:none;
}


/* - USEFUL CLASSES - */

.left {
	float: left;
}

.right {
	float: right;
}

/* Navigation menu */