body
{ 
	margin:	0;
}
#header
{
	position: fixed;
	width: 100%;
	display: table;
	background-color: #333;
	border-bottom: 2px solid rgb(127, 127, 127); /* for browsers that can't handle rgba */
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
	-webkit-background-clip: padding-box; /* for Safari */
	z-index: 3;
}
#nav
{
	display: table;
	margin: 0 auto;
}
#login
{
	margin: 0 auto;
	position: absolute;
	left: 0;
}
ul
{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333;
	float: center;
}
li
{
	float: left;
}
li a
{
	display: block;
	color: #ddd;
	font-family: 'Orbitron', sans-serif;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}
li a:hover
{
    color: #111;
}
::-webkit-scrollbar
{
  width: 12px;  /* for vertical scrollbars */
  height: 12px; /* for horizontal scrollbars */
}

::-webkit-scrollbar-track
{
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb
{
  background: rgba(0, 0, 0, 0.5);
}