@charset "utf-8";
/* CSS Document */

/* BASE */
html
{
	margin: 0;
	padding: 0;
}
body
{
	background-color: #FFFFFF;
	color: #000000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	margin: 0;
	overflow-y: scroll;
	padding: 8px 0 50px;
}

/* STRUCTURE */
#wrap
{
	margin: 0 auto;
	width: 900px;
}
	#header
	{
		border-bottom: 17px solid #29A051;
		padding: 17px 0 17px 100px;
		text-align: left;
	}
		#header img
		{
			vertical-align: middle;
		}

	#content
	{
		min-height: 200px;
		padding: 30px 30px 80px;
	}
		
	#footer
	{
		
	}

/* STYLE */
h2
{
	font-size: 15px;
	font-weight: bold;
}
h1
{
	font-size: 20px;
	font-weight: bold;
	border-bottom: 1px solid #000;
	margin-bottom: 15px;
	padding: 4px 20px;
	position: relative;
		left: -20px;
	width: 100%;
}
a,
a img
{
	border: none;
	outline: none;
	text-decoration: none;
}

/* DOCUMENTS */
#intro
{
	padding: 0 30px;
	margin-bottom: 40px;
}

#documents
{
	border-top: 2px dotted #E7E7E7;
	padding: 15px 0px 0px;
}
	.file,
	.directory,
	.nofile
	{
		display: block;
		height: 30px;
		line-height: 30px;
		margin: 5px 0px;
		overflow: hidden;
		padding: 3px 10px 3px 50px;
		white-space: nowrap;
	}
	.file
	{
		background: url(../img/icons/file.png) 5px center no-repeat #EEFFEE;
		border: 1px solid #B7FEB7;
		color: #000;
		cursor: pointer;
		text-decoration: none;
	}
		.file:hover
		{
			background: url(../img/icons/download.png) 5px center no-repeat #FFFFFF;
			color: #06F;
		}
	.nofile
	{
		background: url(../img/icons/nofile.png) 5px center no-repeat #FFEEEE;
		border: 1px solid #FFCCCC;
		color: #FF7777;
	}
	.directory
	{
		background: url(../img/icons/directory.png) 5px center no-repeat #F4FAFF;
		border: 1px solid #CCE7FE;
		font-weight: bold;
		margin-top: 25px;
	}
		.dir_divider
		{
			display: block;
			height: 20px;
		}
		
		.indent_0
		{
			margin-left: 0px;
		}
		.indent_1
		{
			margin-left: 20px;
		}
		.indent_2
		{
			margin-left: 40px;
		}
		.indent_3
		{
			margin-left: 60px;
		}
		.indent_4
		{
			margin-left: 80px;
		}
		.indent_5
		{
			margin-left: 100px;
		}
		
/* LOGIN */
#error
{
	color: #F00;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}
#login
{
	color: #777;
	margin: 0 auto;
	width: 400px;
}
	#login label
	{
		display: block;
		font-weight: bold;
		margin: 40px 0;
	}
		
		#form_username,
		#form_password
		{
			display: block;
			margin-top: 10px;
			padding: 5px 5px;
			position: relative;
				left: -5px;
			width:100%;
		}
		
	#form_submit_box
	{
		margin-top: 55px;
		text-align: center;
	}
		#form_submit
		{
			color: #777;
			cursor: pointer;
			font-size: 14px;
			font-weight: bold;
			padding: 10px 30px;
		}
			#form_submit:hover
			{
				color: #000;
			}