@charset "utf-8";
/* ===================================================================
CSS information

 file name  :base.css
 style info :サイトレイアウト設定 他
 
このスタイルシートの構成
 基本設定、リンクカラー、レイアウト、横幅設定など
 #navSkip
 #page
 #contents
 #main
 #sub
 
=================================================================== */

/*----------------------------------------------------
	基本設定
----------------------------------------------------*/
html {
	height: 100%;
}

body {
	height: 100%;
	color: #333333;
	background: url(../images/common/bg.jpg) 0 0 repeat-x;
	font-size:12px;
	font-weight:normal;
	font-style:normal;
	font-family: verdana,Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif,monospace;
/*	font-family: verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif,monospace; */
	line-height: 1.5;
}
*:first-child + html body {	/* for IF7 */
	font-family: "メイリオ","Meiryo";
}


a:link {
	color: #3399FF;
	text-decoration: underline;
}

a:visited {
	color: #3399FF;
	text-decoration: underline;
}

a:hover {
	color: #FF3399;
	text-decoration: underline;
}

a:active {
	color: #0099FF;
}



/*----------------------------------------------------
	#page
----------------------------------------------------*/
#page {
	width: 980px;
	border-top: 3px solid #99CCCC;
	margin: 0 auto;
	padding: 0 0 5px 0;
	text-align: left;
	background-color: #FFFFFF;
}

span#navSkip {
	position: absolute;
	top: 0;
	left: 0;
}

#container {
	width: 960px;
	margin: 0 auto;
	text-align: left;
}

/*----------------------------------------------------
	#contents
----------------------------------------------------*/
#contents {
	width: 960px;
	background-color: #FFFFFF;
}

/*----------------------------------------------------
	#main
----------------------------------------------------*/
#main {
	width: 740px;
	float: left;
	margin-right: 20px;
}

#main.wide {
	width: 960px;
	margin-right: 0;
}


/*----------------------------------------------------
	#sub
----------------------------------------------------*/
#sub {
	width: 200px;
	float: left;
}

/* #sub内のスタイルはmodule.cssに記述する */



