@charset "utf-8";

/**
 * reset.css
 */

/**
 * Modified Eric Meyer's reset CSS
 * http://meyerweb.com/eric/tools/css/reset/
 * 
 * @version 0.07(20110209)
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

/* Structure modules */

html {
	background: #13100D;
	overflow-y: scroll;
}

body {
	background: #F6F3ED url(../img/bg-body.png) 0 0 repeat scroll;
	color: #555;
	font-family: sans-serif;
	font-size: 12px; /* 87.5% * 20px = 14px */
	line-height: 1.8;
}

/* pseudo class */

:focus {
	outline: 0;
}

/* Text moudles(Block) */

blockquote {
	quotes: none;
}

blockquote:before,
blockquote:after {
	content: '';
	content: none;
}

/* Hypertext modules */

a {
	color: #DEAC15; 
	outline: none;
	overflow: hidden;
	text-decoration: underline;
}

a:visited { color: #551A8B; }
a:hover   { color: #333; }

	a img {
		border: none;
	}


/* List modules */

ol,
ul {
	list-style: none;
}


/* Presentation modules */

hr {
	background: transparent;
	border: 0;
	border-bottom: 1px solid #000;
	height: 0;
}

/* Form modules */

input,
textarea,
select {
	font-size: 100%;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: middle;
}

input[type="text"],
input.text,
textarea {
	border: 1px solid #ccc;
	padding: 3px;
}

input[type="text"]:focus,
textarea:focus {
	border: 1px solid #DEAC15;
}


/* Table modules */

table {
	border-collapse: collapse;
	border-spacing: 0;
}
	td,
	th {
		padding: 5px;
	}

	thead th,
	thead td {
		text-align: center;
		vertical-align: middle;
	}

	tbody th,
	tfoot th {
		text-align: left;
	}
	
	tfoot td {
		text-align: right;
	}

/* Multimedia modules */

img {
	vertical-align: top;
}