/* コンテナ */
#container	{
	border-top: solid 1px #666666;
	border-left: solid 1px #666666;
	border-right: solid 1px #666666;
	border-bottom: solid 1px #666666;
	width: 900px;
	margin-left: auto;
	margin-right: auto;
}

/* ヘッダー */
#header	{
	background-color: #017acd;
	background-image: url(img_header/head.jpg);
	padding: 5px 20px 175px
}


#header p	{
	color: #000000;
	font-size: 0.75em;
	margin: 0
}

/* メインメニュー */

#menu ul{
	display: block;
	list-style-type:none;
	font-size: 1em;
	margin-top: 0;
	margin-bottom: 10px;
	margin-left: 0px;
	padding-left: 0;
	height: 40px;
	background-image: url(img_header/rollover.png)
}

#menu li a{
	display: block;
	width: 150px;
	line-height: 40px;
	text-decoration: none;
	text-align: center;
	background: #666;
	color: #ffffff;
	background-image: url(img_header/rollover.png)
}

/* サブメニュー */

#menu ul ul{
	display:none;
	position:absolute;
	top:100%;
	left:0;
}

/* リスト */

#menu li	{

	float: left;
}

#menu li li{
	clear :both;
	}
	
#menu li:hover {
	position:relative;
/*	display: block;
	width: 150px;
	line-height: 40px;
	text-decoration: none;
	text-align: center;
	background: #666;
	color: #ffffff;
	background-image: url(img_header/rollover.png)
*/
}

#menu li:hover > ul{
	display:block;
}

/* IE6用 */

* html #menu li {
   behavior: expression(
      this.onmouseover=new Function("this.className='column1'"),
	  this.onmouseout=new Function("this.className=''"),
	  this.style.behavior = 'none'
	);
}

* html #menu li li {
   behavior: expression(
      this.onmouseover=new Function("this.className='column2'"),
	  this.onmouseout=new Function("this.className=''"),
	  this.style.behavior = 'none'
	);
}

* html #menu li li li {
   behavior: expression(
      this.onmouseover=new Function("this.className='column3'"),
      this.onmouseout=new Function("this.className=''"),
      this.style.behavior = 'none'
    );
}

#menu .column1 {position:relative;}
#menu .column1 ul {display:block;}
#menu .column1 * ul {display:none;}
#menu .column2 {position:relative;}
#menu .column2 ul {display:block;}
#menu .column2 * ul {display:none;}
#menu .column3 {position:relative;}
#menu .column3 ul {display:block;}
#menu .column3 * ul {display:none;}


/* フッター */
div#footer	{color: #ffffff;
	background-color: #005087;
	font-size: 12pt;
	text-align: center;
	margin-top: 25px;
	padding-top: 8px;
	padding-bottom: 8px}
