﻿@charset "UTF-8";
/*
ブラウザ間でのmarginとpaddingの誤差を解消
見やすい文字サイズと行間を指定
*/
* {
    margin:0px;
	padding:0px;
	line-height:1.4;
	font-family:Arial, sans-serif;
	font-size:0.9em;
}

a{
    text-decoration:none;
}

a:alink {
    text-decoration:none;
}

a:vlink {
    text-decoration:none;
}

/*
画像のプリロード
ロールオーバー時のギザツキを解消
*/
#preloadedImages {
       width: 0px;
       height: 0px;
       display: inline;
       background-image: url(../img/menu_index_name_r.jpg);
       background-image: url(../img/menu_index_map_r.jpg);
       background-image: url(../img/menu_index_detail_r.jpg);
}

/*
ページ全体のセンタリング
*/
#container {
    width:730px;
	height:100%;
    margin-left:auto;
    margin-right:auto;
	margin-top:8px;
}

/*
ヘッダー
*/
#i_header {
    width:730px;
	height:101px;
	background-image:url(../img/bg_index_head.jpg);
	background-repeat:no-repeat;
}

#i_header img{
    margin-top:16px;
	margin-left:12px;
}

/*
ヘッダー内メニュー（ロールオーバーつき）
*/
#i_header ul#menu{
    display:block;
	width:447px;
	margin-top:-10px;
	margin-left:290px;
}

#i_header ul#menu li{
    display:inline;
    list-style-type: none;
	height:42px;
	float:left;
}

#i_header #menu li#name a{
    width:144px;
	height:100%;
	float:left;
    background-image:url(../img/menu_index_name.jpg);
	background-repeat:no-repeat;
	text-indent:-9999em;
}

#i_header #menu li#name a:hover{
    background-image:url(../img/menu_index_name_r.jpg);
}

#i_header #menu li#map a{
    width:149px;
	height:42px;
	float:left;
    background-image:url(../img/menu_index_map.jpg);
	text-indent:-9999em;
}

#i_header #menu li#map a:hover{
    background-image:url(../img/menu_index_map_r.jpg);
}

#i_header #menu li#detail a{
    width:145px;
	height:42px;
	float:left;
    background-image:url(../img/menu_index_detail.jpg);
	text-indent:-9999em;
}

#i_header #menu li#detail a:hover {
    background-image:url(../img/menu_index_detail_r.jpg);
}

/*
メイン
*/
#i_main {
    width:726px;
    height:100%;
	_height:409px;
	background-image:url(../img/bg_index_body.jpg);
	background-position:top;
	background-repeat:no-repeat;
	border-right:2px solid #0D5D27;
	border-left:2px solid #0D5D27;
}

#i_main p {
	display:block;
    margin:auto;
	padding-top:40px;
	width:480px;
	height:300px;
	font-size:12px;
	text-align:center;
}

#i_main #list {
	display:block;
    margin:auto;
	padding-top:40px;
	width:480px;
	height:300px;
	font-size:12px;
	text-align:left;
}

#i_main #list ul {
	list-style-type: disc;
}

/*
フッター
*/
#i_footer {
    width:730px;
	height:78px;
	background-image:url(../img/bg_index_foot.jpg);
	background-repeat:no-repeat;
}

