


/* --- ナビゲーションバー --- */
.nav {
width: 1024px; /* ナビゲーションの幅 */
padding-top: 10px; /* ナビゲーションの上パディング */
border-bottom: 2px #55cc18 solid; /* 下枠線 */
font-size: 80%;
}

/* --- メニューエリア --- */
.nav .nl {
width: 99%; /* メニューの幅 */
margin: 0 auto; /* メニューのマージン（上下、左右） */
padding: 0;
list-style-type: none;
text-align: center;
}

/* --- メニュー項目 --- */
.nav .nl li {
margin-right: 2px; /* タブの右マージン */
background: #ccffb3; /* タブの背景（左） */
float: left;
}

/* --- タブの幅（emで指定） --- */
.nav .nl li.item {
width:120px;
}


/* --- リンク --- */
.nav .nl li a {
display: block;
position: relative; /* IE6用 */
padding: 2px 0px 2px 0px; /* リンクエリアのパディング（上右下左） */
color:#45457f;
font-weight:bold;
font-size:12px;
}

/* --- アクティブなタブ --- */
.nav .nl li.active {
background: #55cc18; /* タブの背景（左） */
}
.nav .nl li.active a {
color: #ffffff; /* アクティブタブの文字色 */
}

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