@charset "utf-8";

/* common.css */

* {
	margin: 0;
	padding: 0;
}

/* base font
---------------------------------------------*/
body {
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Osaka, sans-serif;
	color: #333;
	line-height: 1;
}

/* Opera6 */
html>body, tr>th, tr>td {
	font-size: 12px;
}
/* latest browzer */
head:first-child+body, head:first-child+body th, head:first-child+body td {
	font-size: 12px;
}
/* added for ie7 */
*:first-child+html head:first-child+body {
	font-size: 75%;
}
*:first-child+html head:first-child+body th,
*:first-child+html head:first-child+body td {
	font-size: 100%;
}

/* table
---------------------------------------------*/
table, td, th {
	border-style: none;
	vertical-align: top;
}

/* img
---------------------------------------------*/
img {
	border: none;
}

/* hr
---------------------------------------------*/
hr {
	display: none;
}

/* ul li
---------------------------------------------*/
ul, li {
	list-style: none;
}
/* list with disc */
ul.uDisc {
	margin-bottom: 1em;
}
ul.uDisc li {
	margin-bottom: 7px;
	margin-left: 20px;
	padding-left: 0;
	list-style-type: disc;
	line-height: 1.6;
}
ul.uDisc li a {
	line-height: 1.6;
}
html>body ul.uDisc li{
	height:auto;
	margin-left: 18px;
	padding-left: 0;
}
/* added for ie7 */
*:first-child+html ul.uDisc li {
	margin-left: 20px;
	padding-left: 5px;
}

/*	ol li
-------------------------------------------------*/
ol, li {
	list-style: none;
}
/* list with number */
ol.oNum {
	margin-bottom: 1em;
}
ol.oNum li {
	margin-bottom: 7px;
	margin-left: 25px;  /* IE */
	padding-left: 0;    /* IE */
	list-style-type: decimal;
	line-height: 1.6;
}
html>body ol.oNum li {
	margin-left: 25px;
	padding-left: 0px;
	height: auto;
}
ol.oNum li a {
	line-height: 1.6;
}
/* added for ie7 */
*:first-child+html ol.oNum li {
	margin-left: 20px;
	padding-left: 0px;
}

/* easy clearing by PIE
----------------------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix { display: block; }
/* End hide from IE-mac */