@charset "UTF-8"; /* PublishCharset into mt-config.cgi */

/*
 * File      : styles-site.css
 * Version   : 5.00
 * Update    :
 * 2.00 2005.09.01: Update for Movable Type 3.2.
 * 2.01 2005.09.03: add font-size to content-nav.
 * 2.02 2005.09.27: correct the capital letter to the small letter.
 * 2.03 2005.10.13: add ul and ol type selectors to .entry class selector.
 * 2.04 2005.11.26: fixed typo.
 * 2.05 2006.01.26: comment out the specification of the background image.
 * 2.06 2006.02.26: delete font-weight property from all name selector and add h type selectors
 *                            and brought property for the title together.
 * 2.07 2006.06.01: add .archive-list class selector.
 * 3.00 2006.06.27: Update for Movable Type 3.3.
 * 3.01 2006.07.07: correct class selector.
 * 4.00 2007.05.11: XHTML 1.0 Strict.
 * 4.01 2007.06.16: Update for Movable Type 4.
 * 4.02 2007.11.12: add div.page class selector.
 * 5.00 2008.02.01: Update for Movable Type 4.1.
 *
 * Copyright (C) 2005-2008 www.koikikukan.com All rights reserved.
 */

/* すべて */
* {
    margin: 0;
    padding: 0;   
}
body {
    font-size: 100%;
    font-family: Verdana, Arial, sans-serif;
}
html>body {
    font-size: 12pt;
    color: #000000;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

/* リンク */
a,
a:link,
a:visited {
    color: #069;
    text-decoration: none;
}
a:hover {
    color: #069;
    text-decoration: underline;
}
a:active {}

/* リンクつき画像 */
a img {
    border: none;
}

/* フォーム */
form {
    margin: 0px;
}
#search-options,
input,
textarea {
    padding: 1px;
}
#search {
    width: 140px;
    height: 20px;
}
html > body #search {
    height: 15px;
}

/* ヘッダ */
#header {
    border-bottom: 1px solid #669;
    height: 100px;
    background: url(images/banner/top_banner2.jpg);
    background-repeat: no-repeat;
    text-indent: -9999px;
    outline-width: 0;
}

#header a,
#header a:link,
#header a:visited {
    color: #0c5000;
    background: transparent;
    font-size: 32px;
    font-family: Verdana, Arial, sans-serif;
    text-decoration: none;
}
#header a:hover {}
#header a:active {}

/* タイトルバナー下の説明 */
.blog-description {
    color: #fff;
    background: transparent;
    font-size: 12px;
    font-family: Verdana, Arial, sans-serif;
}

/* ブログ記事日付 */
.date {
    margin: 8px 0 3px;
    color: #666;
    font-size: 83.3%;
    font-weight: bold;
    font-family: Verdana, Arial, sans-serif;
    text-align: right;
}

/* ブログ記事日付・各タイトル */
.appendix-header,
.trackbacks-header,
.comments-header,
.comments-open-header{
    padding-left: 10px;
    border: 1px solid #ccc;
    background: #eee;
    font-size: 83.3%;
    font-weight: bold;
    font-family: Verdana, Arial, sans-serif;
    line-height: 2.0;
}
.search-header,
.search-result-header{
    padding-left:0px;
    font-size: 83.3%;
    font-weight: bold;
    font-family: Verdana, Arial, sans-serif;
    line-height: 2.0;
}


/* ブログ記事タイトル */
.entry-header {
    margin: 0px 3px 5px 13px;
    padding: 8px 8px 10px 110px;
    background: url(images/banner/blog_title.jpg);
    background-repeat: no-repeat;
    font-size: large;
    font-weight: bold; 
    font-family: ＭＳ Ｐゴシック;
}


.entry-header a:link,
.entry-header a:visited{
    color: #663300;
}
.entry-header a:hover,
.entry-header a:active{
    color: #FF0033;
}

.entry-header2 {
    margin: 0px 3px 5px 10px;
    padding: 8px 8px 10px 0px;
    background: none;
    font-size: large;
    font-weight: bold; 
    font-family: ＭＳ Ｐゴシック;
}


/* ブログ記事 */
.entry-content{
    width: auto;
    margin: 0px 3px 0px 10px;
    padding: 10px 10px 10px 10px;
    color: #000;
    background: none;
    font-size: 12px;
    font-family: Verdana, Arial, sans-serif;
    font-weight: none;
    line-height:24px;
    letter-spacing: 2px;
    word-break: break-all;
}

/* 段落 */
.entry p {
    margin: 15px 0;
}

/* 順序なしリスト */
.entry ul,
.entry ol {
    padding-left: 16px;
}
.entry ul li {
    list-style-type: circle;
}

/* 定義リスト */
.entry dl {}
.entry dt {}
.entry dd {
    padding-left: 8px;
}

/* テキストエリア */
.entry textarea {
    width: 97%;
}

/* 引用 */
blockquote {
    width: auto;
    margin: 15px 20px 0;
    padding: 10px;
    border: 1px solid #666;
    background: #f6f6f6;
    font-size: 83.3%;
    font-family: Verdana, Arial, sans-serif;
    line-height: 1.5;
}
.quotetitle { /* 引用文タイトル */
    font-size: 83.3%;
    font-family: Verdana, Arial, sans-serif;
    border-bottom: 1px solid #666;
    padding: 3px;
}

pre {
    margin: 15px 20px 0px;
    padding: 10px;
    background: #f6f6f6;
    border: 1px solid #999;
    font-size: 83.3%;
    font-family: Verdana, Arial, sans-serif;
    line-height: 1.5;
    width: 100%;
    overflow: scroll;
}
html>body pre {
    width: 87%;
}

/* 追記 */
.entry.extended {}

/* 投稿者 */
p.entry-footer {
    margin: 0 3px 15px;
    padding: 8px 0;
    border-top: 1px dotted #36414d;
    font-size: 75%;
    font-family: Verdana, Arial, sans-serif;
    text-align: right;
}

/* タグ */
.entry-tags {
    margin-bottom: 5px;
}
.entry-tags-header,
.entry-tags-list,
.entry-tag {
    display: inline;
    font-size: 100%;
    font-family: Verdana, Arial, sans-serif;
}
.entry-tags-list { 
    list-style:none;
    padding-left: 5px;
}

/* Typekeyコメンタ－画像 */
.commenter-profile img {
    vertical-align: middle;
    border-width: 0;
}

/* ウェブページ */
div.page {
    margin-top: 13px;
    font-size: 12px;
    font-family: ＭＳ Ｐゴシック;
    font-weight: none;
 
}

/* アーカイブページ本文 */
.archive-list {
    margin: 10px 0;
    font-size: 12px;
    font-family: ＭＳ Ｐゴシック;
    font-weight: none;
}

/* アーカイブテンプレートの前後リンク */
.content-nav {
    margin: 10px;
    text-align: center;
    font-size: 83.3%;
    font-family: Verdana, Arial, sans-serif;
}

/* カレンダー */
.calendarhead {
    padding-bottom: 5px;
    text-align: center;
    color: #333;
    font-size: 12px;
    font-family: Verdana, Arial, sans-serif;
    font-weight: bold;
    background: none;
    letter-spacing: 0.2em;
}
#calendar table {
    text-align: center;
    padding: 0px;
    border-collapse: collapse;
}
#calendar th {
    padding-bottom: 3px;
    font-size: 10px;
    font-family: Verdana, Arial, sans-serif;
    width: 30px;
}
#calendar td {
    padding: 2px 0;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    line-height: 120%;
}
.today {
    display: block;
    border: 1px solid #444444;
    background: #ffff33;
}
.sunday,
.holiday,
.holiday a:link,
.holiday a:visited {
    color: #e50003;
}
.saturday,
.saturday a:link,
.saturday a:visited {
    color: #0000ff;
}

#links-left-box dd,
#links-right-box dd {
    font-size: 75%;
    font-family: Verdana, Arial, sans-serif;
}

.side dt,
.side dd {
    margin: 0;
    padding: 0;
}

/* サイドメニュータイトル */
.sidetitle {
    margin-top: 3px;
    border: 1px solid  #cfe6c5;
    color: #333;
    background: url(images/wallppr/wallppr013.gif);
    text-align: center;
    font-size: 75%;
    font-family: Verdana, Arial, sans-serif;
    font-weight: bold;
    line-height: 2.2;
}

/* サイドメニュー */
.side {
    margin: 5px 0px 20px 0px;
    background: none;
    color: #99999;
    font-size: 75%;
    font-family: Verdana, Arial, sans-serif;
    line-height: 1.5;
}
.side ul,
.side ol {
    padding-left: 16px;
}
.side ul li {
    list-style-type: square;
}
.side ul li ul {
    padding-left: 0px;
}
.side li li {
    list-style-type: none;
}

/* サイドメニュー(サブカテゴリー用) */
.side #categories ul {
    padding-left: 8px;
}
.side #categories ul ul {
    padding-left: 5px;
}
.side #categories li {
    list-style: none;
}

/* サイドメニュー(タグクラウド用) */
ul#tags {
    margin-top: 5px;
    padding-left: 0;
    list-style: none;
}
ul#tags .module-list-item {
    display: inline;
}
ul#tags li.taglevel1 {
    font-size: 125%;
    font-weight: bold;
    font-family: Verdana, Arial, sans-serif;
}
ul#tags li.taglevel2 {
    font-size: 125%;
    font-family: Verdana, Arial, sans-serif;
}
ul#tags li.taglevel3 {
    font-size: 116.6%;
    font-family: Verdana, Arial, sans-serif;
}
ul#tags li.taglevel4 {
    font-size: 108.3%;
    font-family: Verdana, Arial, sans-serif;
}
ul#tags li.taglevel5 {
    font-size: 100%;
    font-family: Verdana, Arial, sans-serif;
}
ul#tags li.taglevel6 {
    font-size: 91.6%;
    font-family: Verdana, Arial, sans-serif;
}

/* 検索 */
fieldset {
    border: none;
}

/* カウンター */
.counter {
    margin: 8px 0 25px;
    padding: 2px;
    background: none;
}

/* RSSフィード */
.syndicate {
    margin-bottom: 5px;
    text-align: left;
    color: #666666;
    font-size: 75%;
    font-family: Verdana, Arial, sans-serif;
    line-height: 1.5;
}
.syndicate img {
margin-right: 8px;
border: none;
vertical-align: middle;
}

/* クレジットバナー */
.powered {
    margin-top: 50px;
    text-align: left;
    color: #666666;
    font-size: 75%;
    font-family: Verdana, Arial, sans-serif;
    line-height: 1.5;
}
.powered img {
    margin-top: 3px;
}
.powered ul,
.powered li {
    list-style: none;
}
.module-powered {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
    text-align: center;
}

/* コメント・トラックバック */
#trackbacks,
#comments {
    margin: 10px 0;
}

.appendix-header,
.trackbacks-header,
.comments-header,
.comments-open-header {
    margin: 15px 0;
}

#trackbacks-info,
.trackback-content,
.comment-content,
.comments-open-content {
    margin: 0 2px;
    padding: 0;
    font-size: 83.3%;
    font-family: Verdana, Arial, sans-serif;
    line-height: 1.5;
    word-break: break-all;
}

.trackback-content p,
.comment-content p {
    margin-top: 10px;
    margin-bottom: 5px;
}

.trackback-footer,
.comment-footer {
    margin-right: 2px;
    padding-top: 3px;
    border-top: 1px dotted #36414d;
    font-size: 66.6%;
    font-family: Verdana, Arial, sans-serif;
    text-align: right;
}

#comments-open-data p {
    margin-bottom: 10px;
}
#comment-post {
    font-weight: bold;
    font-family: Verdana, Arial, sans-serif;
}
#comment-author, #comment-email, #comment-url {
    width: 220px;
    height: 20px;
}
html > body #comment-author,
html > body #comment-email,
html > body #comment-url {
    height: 15px;
}
#comment-text {
    width: 400px;
    height: 150px;
}
#comment-bake-cookie {
    margin-left: 2px;
    vertical-align: middle;
}
#comments-open-footer {
    margin-top: 15px;
    text-align: center;
}
.comments-open label {
    display: block;
}

/* 検索結果画面 */
#search-form {
    font-size: 83.3%;
    font-family: Verdana, Arial, sans-serif;
}
.search-header {
    margin: 15px 0;
}
.search-result-header {
    margin: 15px 0 0;
}

/* カラム切り替え */
body.layout-three-column,
body.layout-two-column-left,
body.layout-two-column-right,
body.layout-one-column {
    text-align: center;
    background: url(images/wallppr/blog_wallppr3.jpg);
    background-repeat: no-repeat;
}
.layout-three-column #container,
.layout-two-column-left #container,
.layout-two-column-right #container {
    margin-bottom: 10px;
}
.layout-one-column #container {
    margin-bottom: 0;
}

/* 固定レイアウト共通 */
.layout-three-column #box,
.layout-two-column-left #box,
.layout-two-column-right #box,
.layout-one-column #box {
    margin-right: auto;
    margin-left: auto;
    padding: 0px 0px 0px 0px;
    border-bottom: 0px solid #669;
    border-left: 0px solid #669;
    border-right: 0px solid #669;
    text-align: left;
    background-color: #fff;
}

/* 3カラム固定レイアウト幅 */
.layout-three-column #box {
    width: 945px;
}

html > body.layout-three-column #box {
    width: 943px;
}

/* 2カラム固定レイアウト幅 */
.layout-two-column-left #box,
.layout-two-column-right #box {
    width: 665px;
}

/* 1カラム固定レイアウト幅 */
.layout-one-column #box {
    width: 478px;
}

/* 3カラム固定レイアウト */
.layout-three-column #content {
    float: left;
    width: 480px;
    padding: 0 5px 0 5px;
    border-left: 3px dotted #cfe6c5;
    border-right: 3px dotted #cfe6c5;
}
.layout-three-column #links-left-box,
.layout-three-column #links-right-box {
    float: left;
    width: 217px;
}
.layout-three-column #links-left,
.layout-three-column #links-right {
    padding: 15px 0px 0px 0px;
}

/* 2カラム固定レイアウト(右サイドバー) */
.layout-two-column-right #content {
    float: left;
    width: 478px;
    border-bottom: 1px solid #669;
    border-right: 1px solid #669;
}
.layout-two-column-right #links-right-box {
    float: left;
    width: 185px;
}
.layout-two-column-right #links-right {
    padding: 15px 15px 0;
}

/* 2カラム固定レイアウト(左サイドバー) */
.layout-two-column-left #content {
    float: left;
    width: 478px;
    border-bottom: 1px solid #669;
    border-left: 1px solid #669;
}
.layout-two-column-left #links-left-box {
    float: left;
    width: 185px;
}
.layout-two-column-left #links-left {
    padding: 15px 15px 0;
}

/* 1カラム固定レイアウト */
.layout-one-column #content {}

/* 3カラム固定レイアウト(ブログ記事全体) */
.layout-three-column .blog {
    padding: 5px 0px 10px 0px;
}

/* 2カラム固定レイアウト(左サイドバー:ブログ記事全体) */
.layout-two-column-left .blog {
    padding: 10px 15px;
}

/* 2カラム固定レイアウト(右サイドバー:ブログ記事全体) */
.layout-two-column-right .blog {
    padding: 10px 15px;
}

/* 1カラム固定レイアウト(ブログ記事全体) */
.layout-one-column .blog {
    padding: 0 15px;
}

/* フッタ */
.layout-one-column #footer {
    text-align: center;
}
.layout-one-column-liquid #footer {
    padding-bottom: 15px;
    text-align: center;
}

/* 3カラムリキッドレイアウト */
.layout-three-column-liquid #content {
    margin: 0 185px 20px;
    border-bottom: 1px solid #669;
    border-left: 1px solid #669;
    border-right: 1px solid #669;
}
.layout-three-column-liquid #links-left{
    position: absolute;
    width: 155px;
    top: 95px;
    left: 15px;
}
.layout-three-column-liquid #links-right{
    position: absolute;
    width: 155px;
    top: 95px;
    right: 15px;
}

/* 2カラムリキッドレイアウト(右サイドバー) */
.layout-two-column-liquid-right #content {
    margin: 0 185px 10px 0;
    border-bottom: 1px solid #669;
    border-right: 1px solid #669;
}
.layout-two-column-liquid-right #links-right {
    position: absolute;
    width: 155px;
    top: 95px;
    right: 15px;
}

/* 2カラムリキッドレイアウト(左サイドバー) */
.layout-two-column-liquid-left #content {
    margin: 0 0 10px 185px;
    border-bottom: 1px solid #669;
    border-left: 1px solid #669;
}
.layout-two-column-liquid-left #links-left {
    position: absolute;
    width: 155px;
    top: 95px;
    left: 15px;
}

/* 1カラムリキッドレイアウト */
.layout-one-column-liquid #content {
    margin: 0 100px 10px;
    border-bottom: 1px solid #669;
    border-left: 1px solid #669;
    border-right: 1px solid #669;
    background: #fff;
}
/* 1カラムリキッドレイアウト用 */
/* タイトルバナー */
.layout-one-column-liquid #banner {
    margin-right: 100px;
    margin-left : 100px;
    border-left: 1px solid #669;
    border-right: 1px solid #669;
}

/* 1カラム用 */
body.layout-one-column-liquid {
    background: #36414d;
}

/* フッタ */
.layout-one-column #footer,
.layout-three-column #footer,
.layout-two-column-left #footer,
.layout-two-column-right #footer {
    margin-right: auto;
    margin-left: auto;
    border-left: 1px solid #669;
    border-right: 1px solid #669;
    border-bottom: 1px solid #669;
    height: 45px;
    color: #333;
    background: #dff6d5;
    font-size: 12px;
    font-family: Verdana, Arial, sans-serif;
    text-align: center;
    line-height: 3.5;
}
.layout-three-column #footer {
    width: 932px;
}

html > body.layout-three-column #footer {
    width: 930px;
}


.layout-two-column-left #footer,
.layout-two-column-right #footer {
    width: 665px;
}
.layout-one-column #footer {
    width: 478px;
}

input,textarea {
    font-family: "Osaka", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", arial, sans-serif;
}

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-table;}

ul#navigator li {
	display: inline;
         font-size: 12px;
}

/* メニュー折りたたみ */
.sidetitle2 {
width: auto;
margin: 0px;
padding: 0px;
text-align: center; /* テキスト配置 */
}

.sidetitle2 a {
width: auto;
}

/* 通常 */
.sidetitle2 a:link,
.sidetitle2 a:visited {
display: block;
padding: 2px;
border-bottom: 1px solid #a0a0e0; /* 枠線 */
color:#333; /* 文字色 */
background-color:#f6f6f6; /* 背景色 */
font-family: Verdana, Arial, sans-serif;
font-size:10px;
text-decoration: none;
}

/* マウスポイント時 */
.sidetitle2 a:hover {
padding: 2px;
border: 1px solid #999999; /* 枠線 */
color:#ffffff; /* 文字色 */
background-color: #999999; /* 背景色 */
font-family: Verdana, Arial, sans-serif;
font-size:10px;
text-decoration: none;
}

ul li.tree{
background:url(images/tree/tree.gif)no-repeat;
}
ul li.tree_end{
background:url(images/tree/tree_end.gif)no-repeat;
}

.bookmark {
    margin: 0 4px 5px 0;
 text-align: right;
}


#sidebar1 {
         padding:0px 0px 0 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	background-image: url(../sozai/contentsmenu/contents_menu.jpg);
	background-repeat: no-repeat;
         background-position: 0px 0px;
}

ul#menu{
    list-style:none;
    padding:20px 0 0 0;
}
ul#menu li{
    list-style:none;
    float:center;
    padding: 0px 10px 0 13px; 
}
ul#menu a{
    width:171px;
    height:43px;
    display:block;

}


a.index{
    background-image:url(../sozai/navi/ok-bkog_menu/home.jpg);
}
a:hover.index{
    background-image:url(../sozai/navi/ok-bkog_menu/home_down.jpg);
}
a.kensannzai{
    background-image:url(../sozai/navi/ok-bkog_menu/kensannzai.jpg);
}
a:hover.kensannzai{
    background-image:url(../sozai/navi/ok-bkog_menu/kensannzai_down.jpg);
}
a.denntoutekiminnka{
    background-image:url(../sozai/navi/ok-bkog_menu/denntoutekiminnka.jpg);
}
a:hover.denntoutekiminnka{
    background-image:url(../sozai/navi/ok-bkog_menu/denntoutekiminnka_down.jpg);
}
a.reform{
    background-image:url(../sozai/navi/ok-bkog_menu/reform.jpg);
}
a:hover.reform{
    background-image:url(../sozai/navi/ok-bkog_menu/reform_down.jpg);
}

a.work{
    background-image:url(../sozai/navi/ok-bkog_menu/work.jpg);
}
a:hover.work{
    background-image:url(../sozai/navi/ok-bkog_menu/work_down.jpg);
}

a.kaisya{
    background-image:url(../sozai/navi/ok-bkog_menu/kaisya.jpg);
}
a:hover.kaisya{
    background-image:url(../sozai/navi/ok-bkog_menu/kaisya_down.jpg);
}
a.map{
    background-image:url(../sozai/navi/ok-bkog_menu/map.jpg);
}
a:hover.map{
    background-image:url(../sozai/navi/ok-bkog_menu/map_down.jpg);
}










ul#menu2{
    list-style:none;
    padding: 20px 0px 0px 8px;
}
ul#menu2 li{
    list-style:none;
    float:center;
    padding: 0px 0px 0px 0px; 
}
ul#menu2 a{
    width:200px;
    height:100px;
    display:block;

}
a.ok-blog{
    background-image:url(../sozai/navi/ok-blog/blog-banner_up.jpg);
    background-repeat: no-repeat;
}
a:hover.ok-blog{
    background-image:url(../sozai/navi/ok-blog/blog-banner.jpg);
    background-repeat: no-repeat;
}


ul#links{
    list-style:none;
    padding:0 0 0 0;
}
ul#links li{
    list-style:none;
    float:center;
    padding: 0px 0px 0 0px; 
}
ul#links a{
    width:180px;
    height:150px;
    display:block;
}

a.stopondanka{
    background-image:url(../sozai/eco/love_earth_fukui.jpg);
}

ul#links2{
 list-style:none;
  padding:0 0 0 0;
 }
 
 
ul#links2 li{
  list-style:none;
  float:center;
  padding: 0px 0px 0 0px;
	 }
	 
ul#links2 a{
	  width:114px;
	  height:114px;
	  display:block;
}

a.qr{
 background-image:url(../images/qrcode/qr-ok-blog.jpg);
 }

.paginate {
    text-align: center;
    font-size: 9px;
}

#header_catch {
	position : relative;
	z-index : 1;
	margin-bottom : 0px;
	margin-left : 0px;
	color : #0099FF;
}

#header_catch2 {
	position : inherit;
	z-index : 1px;
	margin-bottom : 0px;
	margin-left : 0px;
	color : #333333;
}


h1, h2, h3, h4, h5, h6 { 
font-family : "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3"; 
font-size : 10pt; 
line-height : 14pt; 
font-weight : normal; 
} 

.paginate {
    text-align: center;
    font-size: 9px;
}

.banner{margin-bottom: 5px;
}
/*クレジットバナー*/
.powere{
margin-top: 50px;
:}
.module-powered{
margin-top: 15px;
:
}


/* ▼メニューバー▼ */
ul#menu_bar {
font-size: 80%; /* 文字サイズ */
height:25px; /* 高さ */
background-color:#000000; /* 背景色 */
padding-left:0px;
margin-left:0px;
margin-top:0px; /* 上の間隔 */
margin-bottom:5px; /* 下の間隔 */
}

#menu_bar li {
list-style-type:none;
float:left;
line-height:25px; /* 高さ */
margin:0px;
padding:0px;
}

#menu_bar li a {
display:block;
text-align:center;
width:100px; /* １つのメニューボタンの幅 */
border-right:1px solid #333333; /* 区切り線 */
color:#ffffff; /* リンク文字の色 */
background-color:#000000; /* メニューボタンの背景 */
text-decoration:none;
}

#menu_bar li a:hover{
color:#fff; /* マウスが乗ったときのリンク文字の色 */
background-color:#222; /* マウスが乗ったときの背景色 */
text-decoration:none;
}
/* ▲メニューバー▲ */

.thrColAbsHdr #header {
	width: 800px;
	margin-left: 200px;
}


/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */





