/* 足利工業大学 すたいる☆しーと */



/* CSS Indexだっちゃ ******************************

00 body_基本部分（背景の指定、基本フォントの指定、罫線の表示を消す）

01 my_header_ヘッダー部分（サイズ指定、中央寄せ）

02 menu1_対象者別メニュー（リストのデザインを変更）

03 menu2_分野別メニュー（リストのデザインを変更 #aboutで縦の区切り線を用意）

04 contents_メインコンテンツ部分（横幅の設定）

05 topic_path_メインコンテンツパンくず式ナビ（リストを変更 画像を使って区切る）

06 contents h1_メインコンテンツタイトル（h1を利用してタイトル）

07 contents p_メインコンテンツ本文（pを利用して本文 ）

08 contents f1_メインコンテンツ画像（画像のfloatとpのfloat解除）

09 my_navigation_左枠ナビゲーション部分（横幅とバナー画像の設定）

10 navi_左枠ナビゲーションメニュー（リストのデザインを変更）

11 reference_左枠お問い合わせ（文字の設定とメールアドレスのリンク）

12 footer_下のフッダー部分（横幅と文字、画像）

13 footnavi_下のフッダーナビメニュー（リストのデザインを変更）

***************************************************/







/* 00 body_基本部分  *************************************************************/

/*ブラウザスタイルの初期化*/

*{
  margin:0;
  padding:0;
}
/*基本フォントと背景色の設定*/

BODY{
  width:100%;
  padding:0;
  background-color:#ffffff;
}
/*罫線の非表示化*/

HR{
  visibility : hidden;
  margin:0;
  padding:0;
}
/*基本枠の設定*/

#my_body{
  position:relative;
  margin-top:12px;
}
/* 01 my_header_ヘッダー部分  ****************************************************/

/*ヘッダーのサイズ設定 margin-auto設定で中央寄せ*/

#my_header{
  width:740px;
  height:auto;
  margin-left:auto;
  margin-right:auto;
}
/* 02 menu1_対象者別メニュー  ****************************************************/

/*メニュー上部のマージン設定*/

#menu1{
  margin-left:2px;
}
/*フォント設定とリストのボタン消し*/

#menu1 UL,#menu1 LI{
  font-size:13px;
  color:#ffffff;
  font-family:osaka, "ms ui gothic", arial, gothic,;
  margin:0;
  padding:0;
  list-style:none;
}
/*右並べに変更と背景色、余白の設定*/

#menu1 LI{
  float:left;
  color:#ffffff;
  background-color:#b32c01;
  margin-right:2px;
  margin-top:4px;
  width:102px;
  text-align:center;
}
/*リンク色と下線削除*/

#menu1 A,#menu1 A:LINK,#menu1 A:VISITED{
  text-decoration:none;
  color:#ffffff;
  background-color:transparent;
  width:102px;
  hight:auto;
  padding:2px 0;
  text-align:center;
  display:block;
  position;
  relative;
}
/*リンク選択中の色設定*/

#menu1 A:HOVER{
  text-decoration:none;
  background-color:#ff6600;
  color:#ffffff;
  width:102px;
  display:block;
  position;
  relative;
}
/* 03 menu2_分野別メニュー  ******************************************************/

/*メニューを中央寄せにする*/

#menu2{
  margin-left:auto;
  margin-right:auto;
}
/*メニューの文字サイズとボタン消し*/

#menu2 UL,#menu2 LI{
  font-size:12px;
  margin:0;
  list-style:none;
}
/*上下の線の設定と余白、右並べ*/

#menu2 LI{
  border-top:1px solid #666666;
  border-bottom:1px solid #666666;
  padding-top:4px;
  padding-bottom:4px;
  margin-top:3px;
  float:left;
}
/*リンクの色と文字の中央寄せ*/

#menu2 A,#menu2 A:LINK,#menu2 A:VISITED{
  text-decoration:none;
  color:#666666;
  width:145px;
  text-align:center;
  padding:0;
  display:block;
}
/*リンク選択中の色、太文字になる*/

#menu2 A:HOVER{
  font-weight:bold;
  color:#ff6600;
}
/*右側の区切り線*/

#about{
  border-right:1px solid #666666;
}
/* 04 my_main_メインコンテンツ部分  **********************************************/

/*メインの幅とマージン設定 IE以外のブラウザ用*/

html>body #my_main{
  width:740px;
  margin-top:50px;
  margin-left:auto;
  margin-right:auto;
  margin-top:50px;
}
/*メインの幅とマージン設定 IEのみ対応*/

#my_main{
  width:740px;
  margin-top:14px;
  margin-left:auto;
  margin-right:auto;
}
/*本文の幅とマージン設定*/

#my_contents{
  float:right;
  width:590px;
  margin-top:4px;
  margin-left:auto;
  margin-right:auto;
}
/* 05 topic_path_メインコンテンツパンくず式ナビ  *********************************/

/*左右のマージン設定*/

#topic_path IMG{
  margin-left:4px;
  margin-right:4px;
  padding:0;
}
/*文字の設定*/

#topic_path UL,#topic_path LI{
  font-size:12px;
  font-family:osaka, "ms ui gothic", arial, gothic,;
  margin:0;
}
/*リストを右に並べる、上に余白*/

#topic_path LI{
  float:left;
  margin-top:4px;
  list-style:none;
}
/*リンクの色設定と下線消し*/

#topic_path A,#topic_path A:LINK,#topic_path A:VISITED{
  text-decoration:none;
  color:#666666;
  width:auto;
  hight:auto;
  padding:0;
}
/*リンクの選択色*/

#topic_path A:HOVER{
  color:#f68b1f;
}
/* 06 contents_メインコンテンツタイトル  *****************************************/

/*見出しタイトル 上下の線と余白設定*/

#my_contents H1{
  border-top:1px solid #f68b1f;
  border-bottom:1px solid #f68b1f;
  font-size:18px;
  color:#f68b1f;
  width:570px;
  margin-top:20px;
  margin-bottom:10px;
  padding-top:8px;
  padding-bottom:8px;
  height:auto;
  text-align:left;
}
/*サブタイトル余白設定*/

#my_contents H2{
  font-weight:normal;
  font-size:14px;
  border-bottom:1px solid #666666;
  color:#666666;
  width:200px;
  margin-top:5px;
  margin-bottom:5px;
  padding-left:6px;
  height:auto;
  text-align:left;
}
/*もう一つしたのタイトル太字*/

#my_contents H3{
  font-weight:bold;
  font-size:90%;
  color:#666666;
  margin-top:5px;
  height:auto;
  text-align:left;
}
/*見出し 副題*/

#my_contents H4{
  font-weight:normal;
  font-size:100%;
  color:#666666;
  margin-top:5px;
  margin-left:10px;
  margin-right:20px;
  margin-bottom:5px;
  height:auto;
  text-align:left;
}
#my_contents H4 A,#my_contents H4 A:LINK,#my_contents H4 A:VISITED{
  text-decoration:none;
  color:#cc0000;
}
/*見出し 副題下線付き*/

#my_contents H5{
  font-weight:normal;
  font-size:100%;
  border-bottom:1px solid #666666;
  color:#666666;
  width:95%;
  margin-top:5px;
  margin-right:20px;
  margin-bottom:5px;
  padding-left:8px;
  height:auto;
  text-align:left;
}
#my_contents H5 A,#my_contents H5 A:LINK,#my_contents H5 A:VISITED{
  text-decoration:none;
  color:#cc0000;
}
/*テーブル内のリンク選択色*/

#my_contents H5 A:HOVER{
  text-decoration:none;
  color:#f68b1f;
}
/* 07 contents_メインコンテンツ本文  *********************************************/

/*本文になる段落設定 文字の縦間隔や左揃えに設定*/

#my_contents P{
  font-size:90%;
  line-height:145%;
  color:#333333;
  width:570px;
  margin-left:5px;
  margin-right:5px;
  padding:0;
  height:auto;
  text-align:left;
}
/*本文のリンク色*/

#my_contents P A,#my_contents P A:LINK,#my_contents P A:VISITED{
  text-decoration:none;
  color:#cc0000;
}
/*本文のリンク選択色*/

#my_contents P A:HOVER{
  text-decoration:none;
  color:#f68b1f;
}
/*テーブル内の色*/

#my_contents TBODY{
  font-size:90%;
  line-height:145%;
  font-color:#333333;
}
#my_contents TD{
  padding-left:2px;
  padding-right:2px;
}
/*テーブル内のリンク色*/

#my_contents TBODY A,#my_contents TBODY A:LINK,#my_contents TBODY A:VISITED{
  text-decoration:none;
  color:#cc0000;
}
/*テーブル内のリンク選択色*/

#my_contents TBODY A:HOVER{
  text-decoration:none;
  color:#f68b1f;
}
/* 08 float_メインコンテンツ画像  ************************************************/

/*画像のフロート設定 左に表示*/

#f1{
  float:left;
  margin-left:0;
  margin-right:5px;
  padding:0;
}
/*画像のフロート設定 右に表示*/

#f2{
  float:right;
  margin-left:5px;
  margin-right:5px;
  padding:0;
}
/*フロート解除*/

#cleafloat{
  clear:both

;
}
/* 09 index_navi_メインコンテンツナビゲーション  ******************************/

/*文字の大きさと行間*/

#index_navi{
  font-size:90%;
  color:#666666;
  line-height:160%;
  margin-left:40px;
}
/*リストのボタンを枠の中に入れる*/

#index_navi UL{
  list-style-position:inside;
}
/*ボタンを画像に変更*/

#index_navi LI{
  list-style-image : url(file:///C:/Documents and Settings/KIZAWA/Application Data/IBM/Homepage Builder Version 13/tmp/a_arrow04.gif);
}
/*リンクの色設定*/

#index_navi A,#index_navi A:LINK,#index_navi A:VISITED{
  text-decoration:none;
  color:#666666;
}
/*リンクの色設定選択中*/

#index_navi A:HOVER{
  color:#ff6600;
}
/*マージン左側30ピクセル*/

#ml30{
  margin-left:30px;
}
/* 09 index_l_メインコンテンツ２段分け  ******************************************/

/*フロートで2段に分ける 横幅設定でおしゃれに2分割*/

#index_l{
  float:right;
  width:295px;
  margin-bottom:40px;
}
/* 09 my_navigation_左枠ナビゲーション部分  **************************************/

/*左枠の文字サイズと余白の設定*/

#my_navigation{
  font-size:12px;
  float:left;
  width:150px;
  margin-top:6px;
  margin-left:auto;
  margin-right:auto;
}
/*バナーに使われる画像の設定 上に余白が入る*/

#my_navigation IMG{
  margin-top:2px;
  padding:0;
}
/* 10 navi_左枠ナビゲーションメニュー  *******************************************/

/*横幅と上野余白設定*/

#navi{
  width:140px;
  height:auto;
  margin-top:10px;
}
/*リストの文字設定とボタン消し*/

#navi UL,#navi LI{
  font-size:12px;
  font-family:osaka, "ms ui gothic", arial, gothic,;
  margin:0;
  padding:0;
  list-style:none;
}
/*下線の色の設定*/

#navi UL{
  border-top:1px solid #666666;
}
/*リスト表示を変更*/

#navi LI{
  display:inline;
}
/*リンクの色設定と余白*/

#navi A,#navi A:LINK,#navi A:VISITED{
  text-decoration:none;
  color:#666666;
  background-color:#ffffff;
  display:block;
  width:auto;
  height:auto;
  padding:0.5em 0.5em;
  border-bottom:1px solid #666666;
}
/*リンクの選択中の色とふせんぽい設定*/

#navi A:HOVER{
  color:#333333;
  text-align:right;
  width:120px;
  border-right:8px solid #cc0000;
}
/* 11 reference_左枠お問い合わせ  ************************************************/

/*お問い合わせの文字と上下に線を設定*/

#reference1{
  border-top:1px solid #666666;
  border-bottom:1px solid #666666;
  font-size:12px;
  color:#666666;
  font-family:osaka, "ms ui gothic", arial, gothic,;
  width:140px;
  padding-top:4px;
  padding-bottom:4px;
  height:auto;
  float:left;
}
/*電話番号やFAX番号の文字設定*/

#reference2{
  border-bottom:1px solid #666666;
  font-size:12px;
  color:#666666;
  font-family:osaka, "ms ui gothic", arial, gothic,;
  line-height:145%;
  width:140px;
  padding-top:8px;
  padding-bottom:8px;
  height:auto;
  float:left;
}
/*メールアドレスのリンク設定*/

#reference2 A,#reference2 A:LINK,#reference2 A:VISITED{
  font-size:9px;
  text-decoration:none;
  color:#666666;
}
/*メールアドレスの選択中設定*/

#reference2 A:HOVER{
  text-decoration:none;
  color:#cc0000;
}
/* 12 my_footer_下のフッダー部分  ************************************************/

/*フッターの幅設定 中央揃え*/

#my_footer{
  width:740px;
  margin-top:10px;
  clear:both;
  margin-left:auto;
  margin-right:auto;
}
/*フッターの矢印画像の設定 ちょっと上になるように*/

#my_footer IMG{
  vertical-align:text-bottom;
  padding-bottom:1px;
}
/*フッターの管理運営の文字設定*/

#my_footer P{
  font-size:12px;
  color:#666666;
  margin-top:4px;
  margin-right:4px;
  margin-bottom:2px;
  height:auto;
  text-align:right;
}
/* 13 footnavi_下のフッダーナビメニュー  *****************************************/

/*文字の大きさと余白*/

#footnavi UL,#footnavi LI{
  font-size:12px;
  margin:0;
  padding-top:4px;
  padding-bottom:4px;
  list-style:none;
}
/*上下の線とリストの右並べ*/

#footnavi LI{
  border-top:1px solid #666666;
  border-bottom:1px solid #666666;
  float:left;
  width:123px;
}
/*リンクの色と横幅と下線消し*/

#footnavi A,#footnavi A:LINK,#footnavi A:VISITED{
  text-decoration:none;
  color:#666666;
  width:123px;
  text-align:center;
  padding:0;
  display:block;
}
/*リンク選択中の色*/

#footnavi A:HOVER{
  color:#ff6600;
}
/* ココまでが、基本フレームのCSS設定  ********************************************/



/* ココからは、各ページのスタール設定wwwww  **************************************/



/*検索用画像*/

#goo{
  vertical-align:middle;
/* バスの時刻表 **************************************/

/*バスの時刻表のリスト*/

#bus_list{
  font-size:90%;
  line-height:145%;
  color:#333333;
  padding-left:40px;
}
/*リストのボタンを枠の外に出し、ボタンを矢印にする*/

#bus_list UL,#bus_list LI{
  list-style-position:outside;
  list-style-image : url(file:///C:/Documents and Settings/KIZAWA/Application Data/IBM/Homepage Builder Version 13/tmp/a_arrow04.gif);
}
/*リンクの色設定*/

#bus_list A,#bus_list A:LINK,#bus_list A:VISITED{
  text-decoration:none;
  color:#666666;
}
/*リンクの色設定選択中*/

#bus_list A:HOVER{
  color:#ff6600;
}
/* 以上、足利工業大学入試広報課ですたwwwww  **************************************/
