@charset "UTF-8";

/******************************
@init.css
@author k
@dateCreated 2009/08/11 12:12
@dateModified 
@description 初期化css
@note 
******************************/

/*******************
 要素の初期化
*******************/
html, body, 
object, iframe, 
h1, h2, h3, h4, h5, h6, 
p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, 
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, textarea,caption{
    margin:0;
    padding:0;
    border:0;
    font-family:inherit;
    font-weight:normal;
    font-style:inherit;
    font-size:100%;
}
body{
    line-height:1.4;
    background:#fff;
    color:#000;  
}

table {
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
	font-size:inherit;
}
caption, th, td {
    text-align:left;
	font-size:inherit;
} 

textarea,
input{
    font-family:inherit;
    font-weight:normal;
    font-style:inherit;
    font-size:100%;
    padding:0.3em;
    color:#333;
    font-size:100%;
}

img {
    vertical-align:bottom;
    border:none;
}
a {
	overflow:hidden;
}

li{
	list-style-type:none;
}



/*******************
 float解除
 (モダンブラウザとIE6,7のみ)
*******************/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
/* IE7 */
.clearfix { zoom: 1; }
/* IE6 */
* html .clearfix { height: 1%; }

/* カラム落ち対策 hrで使う */
.dropClear{
	display:block;
	clear:both;
	height:0;
	font-size:0;
	border:0;
	visibility:hidden;
}