
/*------------------------------------------------------*/
/* Auther unType::TALO::0612 */
/*------------------------------------------------------*/
/* Relation of CSS Files
	common.css 
		|----header.css
		|----contents.css
		|			|----mainarea.css
		|			|----sidearea.css
		|	
		|----footer.css
		|----style.css	
		|----top.css
*/
/*------------------------------------------------------*/
/* Common */
/*------------------------------------------------------*/
/* CSS Import --------------------------------- */
	@import url(header.css);
	@import url(footer.css);
	@import url(contents.css);
	@import url(style.css);
	@import url(top.css);

/* HTML --------------------------------- */
	html {
		height:100%;
	}
	
/* Body --------------------------------- */
	body {
		height: 100%;
		background: #13224e url("../images/contents/bg.jpg") repeat-y;
		margin: 0;
		padding: 0;
	}

/*------------------------------------------------------*/
/* End */
/*------------------------------------------------------*/