/*-----------------------------------------------------
スタイルシート(010x1) ※フレーム１(左か上フレーム用)
スタイルシートがわかる人は自由に記述してください
※バージョンの低いブラウザ対策のため「背景色・壁紙・リンク色」などの基本的な設定は<body>タグ内に書いた方がいいようです。
-----------------------------------------------------*/

/*◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ 全体の設定 ◆◆◆*/
body {

	/*---[背景・壁紙]----------------------------------------------*/
	background-attachment: fixed;                /* 壁紙の固定 */

	/*---[画像の並べ方] 一面(repeat) 横(repeat-x) 縦(repeat-y) １個(no-repeat) */
	background-repeat: repeat;

	/*---[画像の表示位置] 中央(center) 右(right) 左(left) 上(top) 下(bottom) */
	background-position: left top;

	/*---[スクロールバー(ブラウザ)※IEのみ]------------------------*/
	scrollbar-face-color:       #F7E1E1;    /* スクロールバー上面の色 */
	scrollbar-highlight-color:  white;    /* スクロールバー下面の色 */
	scrollbar-darkshadow-color: white;
	scrollbar-shadow-color:     white;    /* 枠線の色1 */
	scrollbar-3dlight-color:    white;    /* 枠線の色2 */
	scrollbar-arrow-color:      red;      /* ▼の色 */

	/*---[マージン(余白)]-------------------------------------------*/
	margin: 0px 10px 10px 10px;         /* (上/右/下/左) */
}

/*◆◆◆◆◆◆◆◆◆◆◆ メニュー(セレクトボタン) ◆◆◆*/
select {
	background-color: pink;       /* 背景色 */
	color: black;                 /* 文字色 */
	font-size: 12px;              /* サイズ */
	font-family: MS UI GOTHIC;    /* フォントの種類 */
}

/*---[セレクトボタンの表示場所]------------------------------------*/
.menu_posi {
	position: absolute;
	top: 0px;             /* 上からどれだけ離すか ※下からの場合は(bottom) */
	left: 0px;            /* 左からどれだけ離すか ※右からの場合は(right) */
}

/*◆◆◆◆◆◆◆◆◆◆◆◆◆ メニュー(リンク表示) ◆◆◆*/

/*---[フォント]----------------------------------------------------*/
body,tr,td,th {

	font-size: 12px;         /* サイズ */
	font-family: Verdana;    /* フォントの種類 */
	letter-spacing:;         /* フォント間のスペース(2pxなど) */
}

a { text-decoration: none; }  /* リンクの下線 */
a:hover { color: red; }       /* マウスが上に来た時の色 */
