#posts {
    position: relative;
    left: 20%;
    width: 60%;
}

/* 
 * Drop-down menu 
 *
 * Reference: http://csswizardry.com/2011/02/creating-a-pure-css-dropdown-menu/ 
 *
 */
#navbar{
	list-style: none;
	font-weight: bold;
    font-family: Helvetica;
    left: 35%;
    position:absolute;
	z-index:5;
	
}
#navbar li{
	float:left;
	margin-right:10px;
	position:relative;
}
#navbar a{
	display:block;
	padding:5px;
	color:#fff;
	background: #ADD8E6;
	text-decoration:none;
}
#navbar a:hover{
	color:#fff;
	background: #ADD8E6;
	text-decoration: none;
}

#navbar ul{
	background:#fff;
	background:rgba(255,255,255,0);
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}

#navbar ul li{
	padding-top:1px;
	float:none;
}

#navbar ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}

#navbar li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}

#navbar li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background: #ADD8E6;
	text-decoration: none;
}

#navbar li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration: none;
}

#navbar li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background: #ADD8E6;
    color: black;
}

ol, ol li {
    font-family: Helvetica;
}

h3 {
    font-family: Helvetica;
}

