/* -----------------------------------------

	01: apply to all
	02: default value
	03: headding
	04: structured text
	05: font style elements
	06: list
	07: clear floating
	08: hide/delete

----------------------------------------- */

/* 01: apply to all
----------------------------------------- */

* {
	margin: 0;
	padding: 0;
	text-decoration: none;
	text-transform: lowercase;
	vertical-align: baseline;
	}

body {
	font-family:
		verdana,
		geneva,
		helvetica,
		arial,
		sans-serif;
	font-size: xx-small;
	line-height: 135%;
	text-align: left;
	color: #333;
	}


/* 02: default value
----------------------------------------- */
a, a:visited, a:link, a:active {
	color: #333;
	text-decoration: none;
	}

a:hover {
	/*background-color:  #deff00;*/
	}

a img {
	text-decoration: none;
	background-color: transparent;
	}

img, table {
	border-width: 0;
	border-style: none;
	border-color: #fff;
	}

img {
	vertical-align: bottom;
	}

td {
	text-align: left;
	vertical-align: top;
	}

sup {
	vertical-align: super;
	}

input {
	vertical-align: middle;
	color: #000;
	}

textarea {
	color: #000;
	}

button {
	border: 0;
	}


/* 03: headding
----------------------------------------- */

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-style: normal;
	font-size: 1em;
	}


/* 04: structured text
----------------------------------------- */
em, strong, dfn, code, samp, kbd, var, blockquote, q, cite, pre, abbr, acronym, ins, th {
	font-weight: normal;
	font-style: normal;
	}


/* 05: font style elements
----------------------------------------- */
b, strong { font-weight: bold; }
i, em { font-style: italic; }
del { text-decoration: line-through; }


/* 06: list
----------------------------------------- */
ul, ol, dl, menu, dir, li, dt, dd {
	list-style: none;
	}


/* 07: clear floating
----------------------------------------- */
.x:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	}

.x {
	display: inline-table;
	}

/* hide from ie-mac ¥*/
* html .x { height: 1%; }
.x { display: block; }
/* end hide from ie-mac */

.z {
	clear: both;
	display: block;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	visibility: hidden;
	}


/* 08: hide/delete
----------------------------------------- */
.alt {
	display: block;
	font-size: 0;
	line-height: 0;
	width: 0;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	text-indent: -50000px;
	}

.dlt {
	display: none;
	font-size: 0;
	line-height: 0;
	width: 0;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	text-indent: -50000px;
	}
