@charset "utf-8";

/*リセット
----------------------------------------------------------*/
body,
div, 
ul, ol, li,
dl, dt, dd,
h1, h2, h3, h4, h5, h6,
pre,
form, fieldset, input, textarea, 
p, blockquote,
th, td {
	margin: 0 ;
	padding: 0 ;
}

/*常にスクロールバーを表示*/
html {
    overflow-y:/**/scroll;
    }

/*デフォルトフォントサイズを13ピクセルに設定*/
body {
	font: 13px; /*Firefox、Safari、Opera等モダンブラウザやMac IE5に適用*/

	*font-size: small; /*Win IE7およびWin IE6標準準拠モードに適用*/
	*font: x-small; /*Win IE 5-5.5､6(後方互換モード)に適用*/
	text-align: center;
}

/*リンク画像の枠線を削除*/
/*画像下の隙間を埋める*/
img {
	border: none;
	vertical-align:bottom;
}

/*行頭記号の非表示*/
li {
	list-style: none;
}

/*デフォルトの斜体をトル*/
address , em {
	font-style: normal;
}

/*リンクの設定
----------------------------------------------------------*/
/*表示前リンク　「カラー／アンダーラインなし」*/
a:link {
	color: ;
	text-decoration: none;
}

/*表示済みリンク　「カラー／アンダーラインなし」*/	
a:visited {
	color: ;
	text-decoration: none;
}

/*マウスオーバーの設定　「カラー／アンダーライン表示」*/
a:hover {
	color: ;
	text-decoration: underline;
}

/*マウスクリックの設定　「カラー／アンダーラインなし」*/
a:active {
	color: ;
	text-decoration: none;
}

/*IE7のみ適用*/
*:first-child+html /*セレクタ*/{
}

/*IE6以下のみ適用*/
* html /*セレクタ*/ {
}

