﻿/* Basic code - don't modify */
#nav
{
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
}
 
#nav li
{
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    float: left;
    position: relative;
}
 
#nav a
{
    display: block;
}
 
#nav ul
{
    display: none;
    position: absolute;
    left: 0;
    margin: 0;
    padding: 0;
}
 
* html #nav ul { line-height: 0; }     /* IE6 "fix" */
#nav ul a { zoom: 1; } /* IE6/7 fix */
 
#nav ul li { float: none; }

#nav ul ul { top: 0; }
 
/* Essentials - configure this */
#nav ul { width: 112px; }
#nav ul ul { left: 113px; }
 
/* Everything else is theming */
#nav
{
    height: 48px;
/*
    background-color: #123456;
    background-image: url("./img/naviback.jpg");
    background-repeat: no-repeat;
    background-position: center center;
*/
}
 
#nav *:hover { background-color: none; }

#nav a
{
    width: 112px;
    border-right: none;
    color: white;
    font-size: 14px;
    padding: 6px 0px 6px 0px;
    line-height: 1;
    font-weight: bold;
}
 
/* 二段目のメニュー設定（横幅など） */
#nav ul ul li a
{
    width: 240px;
}
 
#nav ul { top: 56px; }
 
/* 一段目のメニュー設定（横幅など） */
#nav ul li a
{
   width: 110px;
   background-color: #D0D0D0;
}
 
#nav ul li a:hover 
{
   background-color: #002020;
}

#nav ul a 
{
   border-top: 1px solid #404040;
   border-bottom: 1px solid #404040;
   border-left: 1px solid #404040;
   border-right: 1px solid #404040;
}
