@charset "UTF-8";
/* CSS Document */

@import url(reset.css);
@import url(text.css);
@import url(960_12_col.css);

/* apply a natural box layout model to all elements */
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	}

body {
	color: #555;
	padding: 20px;
	}
	
a, a:link, a:visited {
	color: #3e7fa6;
	text-decoration: none;
	}
	
a:hover {
	text-decoration: underline;
	}

/* Header */
header {
	margin-bottom: 20px;
	}
	
/* Navigation */
nav {
	background-color: #ccc;
	margin-bottom: 20px;
	}
	
nav ul {
	list-style: none;
	margin-left: -10px;
	}
	
#nav li a {
	color: #666;
	display: block;
	float: left;
	font-weight: bold;
	margin-right: 10px;
	padding: 10px;
	text-decoration: none;
	text-transform: uppercase;
	}
	
#nav li a:hover {
	background-color: #969696;
	color: #e4e4e4;
	}
	
/* Content */
#content {
	margin-bottom: 20px;
}

#main, #asides {
	background-color: #ccc;
	padding: 10px;
	}
	
#main h3 {
	margin-bottom: 0;
}
	
.title {
	font-size: 18px;
	font-weight: bold;
	margin-top: 5px;
}

.row {
	margin-bottom: 10px;
}
	
/* Sidebar */
#asides h4 {
	margin-bottom: 0;
}
	
.links ul {
	list-style: none;
}
	
.links li {
	margin-left: 0;
	}
	
.links li a {
	display: block;
	padding: 5px 0;
	}

/* Footer */
footer {
	padding-bottom: 20px;
	}