@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700);
* 
{
	margin: 0;
	padding: 0;
	font-family: 'Open Sans';
}

#container 
{
	margin: auto;
	background-color: #dedede;
	width: 800;
	border: 2px solid grey;
	border-radius: 20px;
	overflow: hidden;
}

#header
{
	display: inline-block;
	width: 800px;
	background-color: #dedede;
	padding-left: 30px;
	margin: 5px 0;
}

#logo 
{
	background-color: grey;
	width: 80px; 
	height: 80px; 
	display: inline-block;
	float: left;
	font-size: 1.5em;
	border-radius: 80px; 
	margin-top: 2px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.logo
{
	display: inline-block;
	height: 80px;
	font-size: 2.7em;
	position: relative;
	top: -5px;
	font-weight: bold;
	left: 0px;
}

#banner 
{
	display: inline-block;
	float: left;
	margin-left: 15px;
	position: relative;
	height: 80px;
	top: 15px;
	font-size: 1.3em;
}

#navigation
{
	width: 100%;
}

#navigation ul li
{
	display: inline-block;
	background-color: grey;
	width: 160px;
	float: left;
	text-align: center;
	font-size: 1.3em;
	padding: 2px 0;
}

/*#navigation ul li:hover //this makes the hoverstate change of the li, but the link is not connected, thus useless.
{
	background-color: red;
}*/

#navigation a, #navigation-secondary a, #logo a
{
	color: black;
	text-decoration: none;
}

#navigation a:hover, #navigation-secondary a:hover, #logo a:hover
{
	color: #dedede;
	text-decoration: none;
}

#content-container
{
	width: 100%;
	display: inline-block;
	background-color: grey;
}

#navigation-secondary
{
	width: 100px;
	float: left;
}

#navigation-secondary ul li
{
	display: inline-block;
	width: 90;
	padding-left: 10px;
	border-bottom: 1px solid black;
	font-size: .999em;
}

#navigation-secondary ul li:last-child
{
	border-bottom: none;
}

#content
{
	background-color: #dedede;
	padding: 15px;
	width: 770px; //670 for Notes/Projects and 770 for regular
	float: left;
	overflow: hidden;
}

#footer
{
	width: 800px;
	display: inline-block;
	text-align: center;
	border-top: 1px solid grey;
}

.degree
{
	text-decoration: underline;
	font-size: 1.1em;
}

.details
{
	padding-left: 25px;
	display: inline-block;
}