/* 初期設定
--------------------------------------------------*/
body {
    margin: 0;
    padding: 0;
    color: #333;
    background: #f4f7f4;
}
p {
 line-height: 1.7;
}
a:link {
    color:#36c;
}
a:visited {
    color: #609;
}
a:hover {
    color: #666;
}
img {
    border: 0;
}
section, article, aside, nav, header, main, footer {
    display: block;
}

/* ページの枠組み
--------------------------------------------------*/
#page {
    margin: 0 auto;
    width: 1000px;
}
main section {
    position: relative;
    width: 1000px;
}
section:last-child {
    text-align: left ;
}




/* ヘッダー
--------------------------------------------------*/
h1 {
    float: left;
    margin: 10px 0;
}
header > ul li {
    display: block;
    float: right;
    margin: 30px 0 0 20px;
    padding-left: 10px;
    background: url(marker-blue.png) no-repeat left;
    font-size: small;
}



/* ナビゲーション
--------------------------------------------------*/
nav {
    clear: both;
    margin-bottom: 8px;
}
nav ul, nav li {
    margin: 0;
    padding: 0;
}
nav li, nav a {
    display: block;
}
nav ul {
    border: 1px solid #ccc;
    overflow: hidden;
}
nav li {
    float: left;
    width: 132px;
    border-right: 1px solid #ccc;
}
nav li:nth-child(6) {
    width: 133px;
    border-right: none;
}
nav a {
    padding: 14px 0;
    border-left: 1px solid #fff;
    text-align: center;
    text-decoration: none;
    line-height: 1.0;
    font-size: small;
    font-weight: bold;
}
nav a:link, nav a:visited {
    color: #36c;
    background: url(images/li-bg.png) repeat-x bottom;
}
nav a:hover {
    color: #666;
    background: url(images/li-bg-hover.png) repeat-x bottom;
}

/* メインコンテンツ
--------------------------------------------------*/
h2 {
 font-size: medium;
}
p,li {
 font-size: small;
}
main ul {
 list-style-image: url(images/marker-red.png);
}



/* フッター
--------------------------------------------------*/
footer {
    clear: both;
    border-top: 1px solid #ccc;
    text-align: center ;
}









