/*初期設定 start*/
html {
	overflow-y:scroll;	/* スクロールバー常に表示 */
}

body{
	background-color:#ffffff;	/* 背景色：白 */
	margin:0px 0px 0px 0px;		/* マージン：上右下左0px */
	padding:0px 0px 0px 0px;	/* パディング：上右下左0px */
	font-family:sans-serif; 	/* フォント指定：ゴシック系 */
	color:#333333; 				/* 文字色：グレイ */
	font-size:10pt;				/* 基本文字サイズ：10pt */
	text-align:center;			/* テーブルのセンタリング対応（IE用） */ 
}

table{
	margin:auto;	/* テーブル配置：中央（IE以外のブラウザはこれだけでOK） */
}

hr{
	margin:10px 0px 10px 0px;	/* マージン：上下・10px　右左・0px */
    width:820px;				/* 幅：820px */
}

.c{ 
	text-align:center;	/* 中央揃え */
}
.r{ 
	text-align:right;	/* 右揃え */
}	
.l{ 
	text-align:left;	/* 左揃え */
}	

.f11 {font-size : 8pt;
}

/* リンク（リンクに下線表示、マウスオーバーで文字色＆背景色変更）　*/
/* 基本 */
a:link { 
	color:#333333;				/* 文字色：グレイ */
	text-decoration:underline;	/* テキスト装飾：アンダーライン */
}
a:visited { 
	color:#333333;				/* 文字色：グレイ */
	text-decoration:underline;	/* テキスト装飾：アンダーライン */
}
a:active { 
	color:#333333;				/* 文字色：グレイ */
    text-decoration:underline;	/* テキスト装飾：アンダーライン */
}
a:hover { 
	color:#ffffff; 				/* 文字色：白 */
	background-color:#525252;	/* 背景色：濃グレイ */
    text-decoration:none;		/* テキスト装飾：なし */
}

/* イメージ用 */
a.imglink:link { 
	text-decoration:none;		/* テキスト装飾：なし */ 			
	background-color:#ffffff;	/* 背景色：白 */
}
a.imglink:visited { 
	text-decoration:none;		/* テキスト装飾：なし */  
	background-color:#ffffff;	/* 背景色：白 */ 
}
a.imglink:active { 
	text-decoration:none; 		/* テキスト装飾：なし */ 
	background-color:#ffffff;	/* 背景色：白 */ 
}

a.imglink:hover { 
	text-decoration:none;		/* テキスト装飾：なし */  
	background-color:#ffffff;	/* 背景色：白 */ 
}

a.a2 {color:#666 }

/* イメージ */
/* 基本 */
img{ 
	border: none;	/* 枠線：なし */
}
/* 研究紹介等fig用 */
img.fig{ 
	border:none; 	/* 枠線：なし */
	margin:10px; 	/* マージン：上右下左・10px */
}
img.fig_r{ 
	border:none;	/* 枠線：なし */ 
	margin:10px; 	/* マージン：上右下左・10px */ 
	float:right; 	/* テキスト回り込み：右 */
}
img.fig_l{ 
	border:none;	/* 枠線：なし */ 
	margin:10px; 	/* マージン：上右下左・10px */ 
	float:left; 	/* テキスト回り込み：左 */
}
/* 顔写真用 */
img.photo{ 
	border:none;				/* 枠線：なし */ 
	vertical-align:middle; 		/* テキスト水平位置：中央 */ 
	margin:10px 5px 10px 15px; 	/* マージン：上下・10px　左・5px　右・15px */ 
}	
/* イベント写真用 */
img.event{ 
	border:none; 				/* 枠線：なし */
	margin:10px 10px 10px 15px; 	/* マージン：上下・10px　左・15px　右・5px */ 
}
/* バナー用 */
img.banner{ 
	border:none; 				/* 枠線：なし */
	margin:10px 5px 5px 0px;	/* マージン：上・10px　右・5px　下左・0px */
}

/* インナーフレーム */
iframe{ 
	margin:auto;	/* マージン：自動 */ 
}


/* リスト */
/* 箇条書きリスト */
ul{	
	list-style-type:none;		/* マーカー種類:なし */	 
	margin:10px 0px 0px 15px;	/* マージン：上・10px　右下・0px　左・15px */
	padding:0px 0px 0px 0px;	/* パディング：上右下左・0px　*/ 
}
ul.disc{ 
	list-style-type:disc;		/* マーカー種類:黒丸 */	  
	margin:10px 0px 0px 20px;	/* マージン：上・10px　右下・0px　左・20px */  
	padding:0px 0px 0px 0px;	/* パディング：上右下左・0px　*/   
}
/* 番号付きリスト */
ol{
	margin:10px 0px 0px 35px;	/* マージン：上・10px　右下・0px　左・35px */
	padding:0px 0px 0px 0px;	/* パディング：上右下左・0px　*/ 
}
/* リストアイテム（箇条書き・番号付き共通） */
li { 
	margin:0px 0px 12px 0px;	/* マージン：上右・0px　下・12px　左・0px */ 
}

/* 定義型リスト  */
dl{
	margin:10px 0px 0px 15px;	/* マージン：上・10px　右下・0px　左・15px */
	padding:0px 0px 0px 0px;	/* パディング：上右下左・0px　*/ 
}
dt { 
	margin:0px 0px 3px 0px;	/* マージン：上右・0px　下・3px　左・0px */ 
}
dd { 
	margin:0px 0px 12px 25px;	/* マージン：上右・0px　下・12px　左・25px */ 
}

/* 見出し */
h3{
	margin:5px 0px 5px 0px;
}

h4{
	margin:15px 0px 0px 0px;
}
/*初期設定 end*/


/** レイアウト **/
/* 全体 start */
#bg{
	background-color:#ffffff;	/* 背景色 */
	width:850px;				/* 幅：850px */
	text-align:left;			/* テキスト：左揃え */
	margin:auto; 				/* マージン：自動 */
	border-style:double;		/* 枠線：二重線 */
    border-width:middle;		/* 枠線太さ：中間 */
	border-color:#525252;		/* 枠線色：グレイ */
}
/* 全体 end */

/* ヘッダー start */	
#head{
	background-image:url(image_common/logo.jpg) ;	/* ヘッダ部画像指定 */
	background-repeat:no-repeat;					/* 繰り返しなし */
	background-position:center;						/* 左固定 */
	height:65px;									/* 高さ：65px */
}
#head h1{
	color:#ffffff;	/* 文字色：白 */
	font-size:1pt;	/* 文字サイズ：1pt */
	margin:10px;	/* テキスト：左揃え */
}
/* ヘッダー end */	
		
/* コンテンツ start */	
#contents{
	height:55px;				/* 高さ：55px */
	background-color:#ffffff;	/* 背景色 */

	
}
/* リンク：コンテンツ用（トップ, メンバー, 論文・講演・受賞, 研究テーマ, イベント, 学生の皆さんへ, テレビ・新聞報道） */
#contents a.main:link { 
	display:block;			/* 表示形式：ブロック */
	width:100%; 			/* 幅：100％ */
	background:#525252; 	/* 背景色：濃グレイ */
	text-decoration:none;	/* テキスト装飾：なし */
	color:#ffffff;			/* 文字色：白 */
	border-style:solid none;/* 枠線：上下・実線　左右・なし */
    border-width:thin;		/* 枠線太さ：細い */
	border-color:#333333;	/* 枠線色：グレイ */
	white-space:pre;		/* 空白類文字の扱い：空白類文字をそのまま表示＆自動折返し無し */
	line-height:1.8;		/* 行の高さ：1.8倍 */
}
#contents a.main:visited { 
	display:block;			/* 表示形式：ブロック */
	width:100%;  			/* 幅：100％ */
	background:#525252; 	/* 背景色：濃グレイ */
	text-decoration:none;	/* テキスト装飾：なし */
	color:#ffffff;			/* 文字色：白 */
	border-style:solid none;/* 枠線：上下・実線　左右・なし */
    border-width:thin;		/* 枠線太さ：細い */
	border-color:#333333;	/* 枠線色：グレイ */
	white-space:pre;		/* 空白類文字の扱い：空白類文字をそのまま表示＆自動折返し無し */
	line-height:1.8;		/* 行の高さ：1.8倍 */
}
#contents a.main:active { 
	display:block;			/* 表示形式：ブロック */
	width:100%; 			/* 幅：100％ */ 
	background:#525252; 	/* 背景色：濃グレイ */ 
	text-decoration:none;	/* テキスト装飾：なし */
	color:#ffffff;			/* 文字色：白 */
	border-style:solid none;/* 枠線：上下・実線　左右・なし */
    border-width:thin;		/* 枠線太さ：細い */
	border-color:#333333;	/* 枠線色：グレイ */
	white-space:pre;		/* 空白類文字の扱い：空白類文字をそのまま表示＆自動折返し無し */
	line-height:1.8;		/* 行の高さ：1.8倍 */
}
#contents a.main:hover { 
	display:block;			/* 表示形式：ブロック */
	width:100%; 			/* 幅：100％ */ 
	background:#ffffff; 	/* 背景色：白 */ 
	text-decoration:none;	/* テキスト装飾：なし */
	color:#333333;			/* 文字色：濃グレイ */
	border-style:solid none;/* 枠線：上下・実線　左右・なし */
    border-width:thin;		/* 枠線太さ：細い */
	border-color:#333333;	/* 枠線色：グレイ */
	white-space:pre;		/* 空白類文字の扱い：空白類文字をそのまま表示＆自動折返し無し */
	line-height:1.8;		/* 行の高さ：1.8倍 */
}

/* イメージ（国旗） */
#contents img.flag{
	margin:5px 2px 0px 0px;	/* マージン：上・5px　右・2px　下左・0px */
}
/* コンテンツ end */	

/* メイン start */	
#main{
	margin:10px 15px;	/* マージン：上下・10px　左右・15px */
	width:820px;		/* 幅：820px */
}

/* テキストサイズ定義 */
/* テキスト極小（研究紹介のfigのキャプションとか） */
.text_ss { 
	font-size:9pt;		/* 文字サイズ：9pt */
	line-height:12pt;	/* 行の高さ：12pt */
}
/* テキスト小（テキスト基本サイズ） */
.text_s { 
	font-size:10pt;		/* 文字サイズ：10pt */
	line-height:13pt;	/* 行の高さ：12pt */
}
/* テキスト中（現在地表示とか） */
.text_m { 
	font-size:11pt;		/* 文字サイズ：11pt */
	line-height:15pt;	/* 行の高さ：15pt */
}
/* テキスト中中央揃え（研究紹介の「その○」表示用） */
.text_m_c { 
	font-size:11pt;			/* 文字サイズ：11pt */
	line-height:15pt;		/* 行の高さ：15pt */
	text-align:center;		/* テキスト：中央揃え */
	margin:20px 0px 0px 0px;/* マージン：上・20px　右下左・0px */
}
/* テキスト大（未使用） */
.text_l { 
	font-size:12pt;		/* 文字サイズ：12pt */
	line-height:14pt;	/* 行の高さ：14pt */
}

/* 研究紹介用テーブル設定 */
table.intro{
	margin:auto;	/* マージン：自動（中央） */		
	width:800px; 	/* 幅：800px */
}
td.fig{
	text-align:center;	/* テキスト：中央揃え */
	padding:0px 0px 15px 0px;
}
td.fig_nowrap{
	text-align:center;	/* テキスト：中央揃え */
	white-space:nowrap;	/* テキスト折り返し：禁止 */
	padding:0px 0px 15px 0px;
}

table.member{
	margin:auto;	/* マージン：自動（中央） */		
	width:830px; 	/* 幅：830px */

}
td.photo{
	width:150px; 	/* 幅：150px */
}

/* メイン end */

/* ニュース start */
#news{
	margin:10px 10px 10px 10px;	/* マージン：上下左右・10px */
	text-align: left;			/* テキスト：左揃え */
}
/* ニュース end */

/* フッター start */
#footer{
	background-color:#525252;	/* 背景色：濃グレイ */
	color:#ffffff;				/* 文字色：白 */
	height:15px;				/* 高さ：12px */
	text-align:center;			/* テキスト中央揃え */
	margin:20px 0px 0px 0px;	/* マージン：上・20px　右下左・0px */	
	font-size:10px;				/* フォントサイズ：10px */
}
#footer a{
	color:#ffffff;			/* 文字色：白 */
	text-decoration:none;	/* テキスト装飾：なし */
}
#footer a:hover{
	color:#ffffff;				/* 文字色：白 */
	text-decoration:underline;	/* テキスト装飾：アンダーライン */
}
/* フッター end */