@charset "utf-8";

/*
======= NOTES =======
	
	last-updated: 20 Nov 2007;
	
	+1: Base CSS Set
	+2: Layout of outline
		- Header Area
		- Main Area
		- Footer Area
	+3: Decoration of link

====================
*/

/* =====================================================
	+1: Base CSS Set
===================================================== */
body {
	padding: 0;
	margin: 0 auto;
	font-size: 12px;
	text-align: center;
	background-color: #FFF;
}

/* CSS Hack: IE 7 and below
===================================================== */
*:first-child+html body { font-size: small; }
* html body { font-size: small; }

/* =====================================================
	+2: Layout of outline
===================================================== */
div#container {
	width: 800px;
	padding: 0;
	margin: 0 auto;
	text-align: left;
}
div#header {
	width: 800px;
	text-align: left;
	height: 46px;
	padding-top: 100px;
	padding-bottom: 50px;
}

/*	Footer Area
===================================================== */
div#footer {
	clear: both;
	height: auto;
	width: 800px;
	margin-bottom: 100px;
}

/* =====================================================
	+3: Decoration of link
===================================================== */
/* Link usually */
div#footer a:link {
}

/* Link that has been visited */
div#footer a:visited {
	color: #999999;
	text-decoration: none;
}

/* Link of states exaggerated mouse & actively */
div#footer a:hover,
a:active {
	color: #000000;
	text-decoration: none;
}

/* =============================================== */
/* Link usually */
a:link {
	color: #999999;
	text-decoration: none;
}

/* Link that has been visited */
a:visited {
	color: #999999;
	text-decoration: none;
}

/* Link of states exaggerated mouse & actively */
a:hover,
a:active {
	color: #000000;
	text-decoration: none;
}
