/* ************************************************ 
 *	共通設定
 * ************************************************ */
* {
	margin:0px;
	padding: 0px;
}

body {
	color: #000000;
	font-size: small;
	font-family: "Verdana", "ヒラギノ角ゴ Pro W3", "ＭＳ ゴシック", "Osaka‐等幅";
	line-height: 1.6em;
	background-color: #ffffff;
	text-align:center;
}

br.clear {
	clear: both;
	font: 0pt/0pt sans-serif;
}

img {
	border: 0px;
}

a {
	text-decoration: none;
	color: #666666;
}

/* ------------------------------------- 
 *	ページレイアウト
 * ------------------------------------- 
 *※ページ全体の幅は800pxとなっています。
    幅を広げる場合は、.sideと.mainのwidth
    の合計値が#containerのwidthになるよう
    設定してください。
* ------------------------------------- */

/*ページ全体の幅、レイアウトをセンタリング*/
#container {
	margin:0px auto;
	width:800px;
	text-align:left;
}

/*ヘッダー（ページタイトル、グローバルメニュー）*/
.header {
 width:100%;
 clear:left;
}

/*　画面左側メニューの幅　*/
.side {
	float: left;
	width:200px;
}

/*　画面右側の幅　*/
.main {
	float: right;
	width: 600px;
}

/*　フッター（コピーライト）　*/
.footer {
 width:100%;
 clear: both;
}

/*  
!#group-list {
	border-top:#838383 dotted 1px;
	padding:5px 5px 5px;
	margin:10px 20px 0px 0px;
}
*/