@charset "utf-8";
/* CSS Document */

/* ブラウザ間の差異のリセット */
p,h1,h2,h3,h4,h5,h6,address, ul, ol, li, dl, dt, dd, table, caption, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	text-align:left;
}

/* テキストエリア内文字サイズのブラウザ間での差異をなくす */
textarea {
	font-size: 100%;
}
/* 画像の下にできる余白をなくす */
img {
	vertical-align: bottom;
}
/* hr 要素は不可視で使う */
hr {
	display: none;
}

/* CSSのちらつき防止 */
html { 
    filter: expression(document.execCommand("BackgroundImageCache", false, true)); 
}
/*fireFoxの時リンク部分に点線の枠が延びすぎるのを防ぎます*/
a{overflow:hidden;}