*
{
	margin: 0; padding: 0;
}

body
{
	background: #eee;
}

#overlay
{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.6;
	filter: alpha(opacity=60);
	z-index: 10;
}

#verification
{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 20;
}

#verification form
{
	width: 300px;
	height: 300px;
	margin: 300px auto;
	z-index: 21;
}

#verification input
{
	width: 300px;
	height: 30px;
	background-color: #222;
	color: black;
	text-align: center;
	padding: 10px;
	font-size: 2em;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border: 2px solid #ccc;
	z-index: 22;
}

#verification input:focus
{
	outline: none;
}

#verification h1
{
	margin-top: 25px;
	text-align: center;
	font: 2em bold;
	color: #f00;
	z-index: 22;
}

article
{
	width: 800px;
	margin: 20px auto;
}

header
{
	text-align: center;
	margin: 20px;
	font-size: 3.5em;
	color: #444;
	text-shadow: -1px -1px #888, 1px 1px 
	black;
	font-family: georgia, Arial, serif;
}

table
{
	width: 600px;
	margin: 50px 100px;
	background: #222;
	box-shadow: 10px 10px 8px 0px #888;
	-moz-box-shadow: 10px 10px 8px 0px #888;
	-webkit-box-shadow: 10px 10px 8px 0px #888;
	-o-box-shadow: 10px 10px 8px 0px #888;
	border-radius: 3px;
}

th
{
	font-size: 1.5em;
	background: #555;
	color: #D0D0D0;
	padding: 8px;
}

th:nth-child(2)
{
	width: 120px;
}

th:last-child
{
	width: 80px;
}

td
{
	text-align: center;
	padding: 5px;
}

td:first-child
{
	text-align: left;
	padding-left: 10px;
}

td.type
{
	padding-bottom: 0px;
}

tr:nth-child(2n+1) td
{
	background: #aaa;
}

tr:nth-child(2n) td
{
	background: #888;
}

tr td.folder
{
	
	cursor: pointer;
	background: #333;
	text-align: center;
	color: #d0d0d0;
	font-weight: bold;
	font-size: 1.2em;
}

tr.none
{
	display: none;
}

.arrow
{
	margin-left: 5px;
	margin-bottom: -5px;
}

a
{
	color: blue;
}

.hidden
{
	display: none !important;
}