@charset "UTF-8";
/**
 * ONC STYLE BASE
 * @author EG
 * 2008/12/12　新規作成
 *
 * @description
 * ONC全ページの共通定義を行うスタイルシートです。
 * 細かい指定については各階層用スタイルシートで上書きして定義します。
 */

 /*--------------------------------
memo
 ・ptによるサ文字サイズ指定はしない
 ・段組スタイル、及び基本タグ定義を行う
 ---------------------------------*/


/* プロパティ初期化 */
* {
	padding: 0;
	margin: 0;
	font-family: sans-serif;
	font-size: medium;
	color: #4c3b22;
}
body {
	text-align: center;
}

/* 段組のベース */
#container {
	margin-left: auto;
	margin-right: auto;
	width: 800px;
	height: auto;
	text-align: left;

}
#header {
	width: 800px;
	height: 200px;

}
#main {
	width: 800px;
	height: auto;

}

/* 左右のwidthについては各ページで上書きして調整 */
#content_l {
	width: 500px;
	float: left;
	height: auto;

}

#content_r {
	width: 300px;
	float: right;
	height: auto;

}

#footer_spacer {
	clear: both;
	height: 100px;
}

#footer {
	width: 800px;
	height: 100px;
	clear: both;


}

/**
共通フッタスタイル
*/

.footer_list {
	list-style: none;
	height: 40px;
	padding-right: 40px;
}
/* 各はリスト表示 */
.footer_list li {
	float: right;
	width: auto;
	padding-left: 15px;
}
.footer_list img {
	border-width: 0;
	padding-right: 6px;
	vertical-align: middle;

}
.footer_list li a {
	color: #D54211;
}

/**
 * 共通タグ定義
 */
a:link, a:visited ,a:active  {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	position: relative;
	left: 1px;
	bottom: -1px;
}
/**
 * TODO p、img、table等の基本スタイルを定義する
 */
img {
	border-width: 0;
}



/**
 * 共通使用クラス定義
 */

/* 要素の非表示に使用 */
.hidden {
	display: none;
}

/* マウスオーバー時に移動効果を適用したくない場合に使用 */
a:hover.nomove, a:active.nomove {
	position: static;
}

