@charset "utf-8";
/* Universal selector to remove browser's default values, set own */
* {
	margin: 0;
	padding: 0;
}

a:hover {
	font-weight: bold;
}

#main {
	padding: 5px;
}

/* Header */
#logo {
	width: 96%;
	padding: 2%;
}
#logo a {
	font-size: 30px;
	text-decoration: none;
	color: black;
}

#menu{
	padding: 2%;
	margin-left: 5px;
	margin-bottom: 5px;
	width: 10%;
	float: left;
	color: black;
	border:	1px solid black; 
}
#menu a {
	color: black;
}
#menu ul {
	list-style-type: none;
}

/* Main body */
#content {
	padding: 30px;
	width: 78%;
	float: right;
	background: gray;
	color: white;
	margin-bottom:5px;
}

#content a{
	color: black;
}

/* First attribute is CSS3, others are propietary: Firefox and Safari (No IE support considered) */
.rounded {
	border-radius: 5px; 
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px; 
	-khtml-border-radius: 5px;
}

.selected  {
	text-decoration: none;
}

/* Footer */
#footer {
	padding: 2%;
	margin: 10px;
	clear: both;
	background: #6F6C6C;
	overflow: auto;
}

#footer ul {
	list-style-type: none;
}
#footer li {
	padding: 0 20%;
	float: left; /* Make horizontal menu */
}

#footer a {
	text-decoration: none;
	color: white;
}
