/* --- ナビゲーションバー --- */
/*div.nav {
    width: 100%;  ナビゲーションの幅 
    background-color: #ccffcc;  ナビゲーションの背景色 
    border-top: 1px #cccccc solid;  上境界線 
    border-bottom: 1px #cccccc solid;  下境界線 
    font-size: 80%;
    position: fixed;
}

 --- メニューエリア --- 
div.nav ul.nl {
    width: 800px;  メニューの幅 
    margin: 0 auto;  センターに配置 
    margin: 0 0;  左よせに配置 
    padding: 0;
    background-color: #ccffcc;  メニューの背景色 
    list-style-type: none;
    text-align: center;
}

 --- メニュー項目 --- 
div.nav ul.nl li {
    width: 20%;  項目の幅 
    float: left;
}

 --- リンク --- 
div.nav ul.nl li a {
    display: block;
    position: relative;  IE6用 
    padding: 8px 2px;  リンクエリアのパディング（上下、左右） 
}
 --- ポイント時の設定 --- 
div.nav ul.nl li a:hover {
    background-color: #e6e6fa;  ポイント時の背景色 
    text-decoration: underline;  テキストの下線（あり） 
}

 --- clearfix --- 
.clearFix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearFix {
    min-height: 1px;
}

.logout{
    position:absolute; top:1%; right:2%;
}*/