@charset "UTF-8";
/* CSS Document */
@import url(styles/layout.css);
@import url(styles/aspect.css);
@import url(styles/typography.css);
@import url(styles/network-collaboration.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 */
}



/* Clear */

.clear:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clear {display: inline-block}

/* Hide from IE Mac \*/
.clear {display:block}
/* End hide from IE Mac */
	

a img {
	border: 0;
}

ul {
	list-style:none;
}


/* - USEFUL CLASSES - */

.left {
	float: left;
}

.right {
	float: right;
}

.aRight {text-align: right}
.aLeft {text-align: left}