/* ナビゲーションバー全体のスタイル */

#navbar {
	text-align: center; /* 配置 */
	font-family: Verdana, Arial, sans-serif; /* フォントスタイル */
	font-weight: normal; /* フォントの太さ */
	font-size: 10px; /* フォントサイズ */
	width: auto; /* 全体の幅 */
	line-height: 150%; /* テキストの高さ */

}

 

/* リンクのスタイル */

#navbar a{

    background-color: #ffffff; /* 背景色 */

    color:#666666; /* 文字色 */

    padding: 2px 5px 2px 5px; /* リンク文字のパディング */

}

 

/* リンクをポイントした時のスタイル */

#navbar a:hover{

    background-color: #8FABBE; /* 背景色 */

    color:#ffffff; /* 文字色 */

    text-decoration: none; /* テキストの装飾をなくす */

}
