/* 全体の設定*/
body{
    font-style:normal;/*文字のスタイル：普通*/
    font-weight:normal;/*文字の太さ：普通*/
    font-size:medium;/*文字の大きさ：中*/
    text-align:left;/*文字の寄せ方：左寄せ*/
    color:#000000;/*文字の色：黒*/
    background-image:url(/image/1.gif);/* 背景の画像 */
    background-color:#ffffff;/* 背景の色：白 */
  
}

/*枠用ID*/
#structure{
    width:700px;
    text-align:left;
    margin:0px auto;
}
#head{
    width:700px;
    height:125px;
}

#bar{
    width:700px; 
    height:30px;
     font-style:normal;/*文字のスタイル：普通*/
    font-weight:normal;/*文字の太さ*/
    font-size:medium;/*文字の大きさ：中*/
    text-align:left;/*文字の寄せ方*/
     background-image:url(/image/3-2.gif);
     background-repeat: repeat-x;}

#picture{
    width:700px;
    height:200px;
}

#main{
    width:700px;
    background-color:#FFFFFF
    color:#0b5089;/*文字の色：青*/
    font-style:normal;
    text-align:center; 
}
#foot{
    width:700px;
}


/* リスト設定*/
ul#menubar {
   margin: 0px; /* ul内部の左端余白(IE) */
   padding: 0px; /* ul内部の左端余白(Fx,Op) */
}
ul#menubar li {
   list-style-type: none; /* 先頭記号を消す */
   float: left; /* リスト項目を横方向に並べる */
   margin: 0.1em 42px; /* 各項目周囲の余白 */
   border: 0px gray solid; /* 項目の枠線 */
   padding: 0px; /* 枠線と内容の距離をゼロに */
}

p.aftermenu {
   clear: left;
}

/* まわりこみ設定*/

.fl_l{float:left; 
}

.fl_r{float:right;
}

.fl_n{float:none;
}


/* 画像の設定*/
img{/* 画像表示のデザイン設定*/
	border:0px;
}

.im_1{border:0px
          width:200px; height:100px;
          float:left;
}

.im_2{border:0px
          width:300px; height:200px;
           }

.im_3{border:0px
           width:200px; height:200px}


/*テキスト設定*/
.t_r{text-align:right}

.t_c{text-align:center}

.t_1{font-family:serif;/*文字のスタイル：明朝系*/ 
　　　text-align:center;
  }

.t_2{font-family:fantasy;/*文字のスタイル：装飾系*/
       text-align:center;
}

.t_blue{color:#0b5089;/*文字の色：青*/
}

/*リンク関係*/
a:link {/*リンクされた文字の色*/
    color:#0b5089;/*文字の色：青*/
    font-style:normal;
    font-weight:bolder;
   text-decoration:none;
}
a:visited {/*訪問後の色*/
    color:#934C7B;/*文字の色：紫*/
   font-weight:bolder;
   text-decoration:underline;
}
a:hover {/*カーソルを合わせたときの色*/
    color:#ff0000;/*文字の色：赤*/
    font-style:normal;
   font-weight:bolder;
  
}
a:active {/*クリック中の色*/
    text-decoration:none;/* なし */
}



