/* reset and change of box model sizing */
*, *:before, *:after {
	border: 0;
	outline: 0;
	margin: 0;
	padding: 0;	
/*
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
*/
}

body {
	background-color: hsla(0, 0%, 80%, 1);
	color: hsla(0, 0%, 30%, 1);
/*	font-family: Verdana, Geneva, sans-serif;  */
	font-family: Arial, Helvetica, sans-serif;

}

#container {
	}

div.title {
	font-size: 1.5em;
	font-weight: bold;
	margin: 10px 0 5px 40px;
}

a {
	font-size: 1em;
	text-decoration: none;
	line-height: 1.5em;
	color: hsla(0, 0%, 30%, 1);
}

a:hover {
	color: hsla(90, 60%, 100%, 1);
	color: hsla(120, 100%, 40%, 1);
	text-decoration: underline;
}

ul li:first-child a{
	font-weight: bold;
}

ul {
	list-style: none;
    min-width: 50px;
}

div ul {
	float: left;
	white-space: nowrap;
	margin: 0 20px 0 40px;
}

div:after {
	content: ""; 
	clear: both; 
	display: block;
}

.copyright {
	margin: 20px 0 0 40px;
}
