/* --- ボックス --- */
div {  
word-break:break-all;
word-wrap: break-word;
}

/* ------------------ */
/* --- class name --- */
/* ------------------ */
div.header {
width: 100% /* 300px; /* ボックスの幅 */
padding-bottom: 1px; /* ボックスの下パディング */
background: #ffffff; /* url(maru1_300_bottom.gif) no-repeat bottom; /* ボックスの背景 */
font-size: 100%;
color: #ff0000;
border: 4px; border-style:solid; /* dotted dashed; */
margin: 4px 4px 4px 4px;
}

/* --- 見出し --- */
div.header h3 {
margin: 0; /* 見出しのマージン */
padding: 5px 5px 5px; /* 見出しのパディング（上、左右、下） */
background: #ff0000;/*#e0ffff; /* url(maru1_300_top.gif) no-repeat top; /* 見出しの背景 */
font-size: 400%; /* 見出しの文字サイズ */
text-align: right;
color: #ffffff;
/*margin: 1em 10px;*/
}

/* --- ボックス内の段落 --- */
div.header p {
margin: 1em 10px; /* 段落のマージン（上下、左右） */
}

div.section {
width: 100% /* 300px; /* ボックスの幅 */
padding-bottom: 1px; /* ボックスの下パディング */
background: #ffffff; /* url(maru1_300_bottom.gif) no-repeat bottom; /* ボックスの背景 */
font-size: 100%;
color: #ff0000;
border: 4px; border-style:solid; /* dotted dashed; */
margin: 4px 4px 4px 4px;
}

/* --- 見出し --- */
div.section h3 {
margin: 0; /* 見出しのマージン */
padding: 5px 5px 5px; /* 見出しのパディング（上、左右、下） */
background: #ff0000;/*#e0ffff; /* url(maru1_300_top.gif) no-repeat top; /* 見出しの背景 */
font-size: 100%; /* 見出しの文字サイズ */
color: #ffffff;
margin: 1em 10px;
}

/* --- ボックス内の段落 --- */
div.section p {
margin: 0.5em 10px; /* 段落のマージン（上下、左右） */
color: #000000;
}

/* --- 水平の罫線(Horizontal Rule) --- */
hr {
background-color:red;
border:none;
width:100%;
height:0.3em;
}

/*----------------- */
/* --- ベタ文字 --- */
/*----------------- */
pre {  
white-space: -moz-pre-wrap; /* Mozilla */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* CSS3 */
word-wrap: break-word; /* IE 5.5+ */
/*background-color: #d3d3d3;*/
font-size: 120%;
color: #000000;
}

pre.section {
width: 100%;
/* padding-bottom: 1px; */
background-color: #d3d3d3;
font-size: 100%;
color: #000000;
border:2px; border-style:solid; /* dotted dashed; */
}


/* --- ナビゲーションバー --- */
div.nav {
width: 100%; /* ナビゲーションの幅 */
padding-top: 0px; /* ナビゲーションの上パディング */
background-color: #ffffff; /* ナビゲーションの背景色 */
border-bottom: 10px #ff0000 solid; /* 下境界線 */
font-size: 100%;
}

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

/* --- メニュー項目 --- */
div.nav ul.nl li {
width: 120px; /* タブの幅 */
margin-right: 4px; /* タブの右マージン */
background: #ff7f50 left top; /* タブの背景（左） */
float: left;
}

/* --- リンク --- */
div.nav ul.nl li a {
display: block;
position: relative; /* IE6用 */
padding: 6px 2px 5px; /* リンクエリアのパディング（上、左右、下） */
background: #ff7f50 no-repeat right top; /* タブの背景（右） */
text-decoration: none; /* テキストの下線（なし） */
}
/* --- ポイント時の設定 --- */
div.nav ul.nl li a:hover {
text-decoration: underline; /* テキストの下線（あり） */
}

/* --- アクティブなタブ --- */
div.nav ul.nl li.active {
background: #004080 no-repeat left top; /* タブの背景（左） */
}
div.nav ul.nl li.active a {
background: #ff0000 no-repeat right top; /* タブの背景（右） */
color: #ffffff; /* アクティブタブの文字色 */
}

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

.clearfix:after{
    content: ".";
    display: block;
    height: 0;
    font-size:0;
    clear: both;
	visibility:hidden;
}
.clearfix{
	display: inline-block;
min-height: 1px;
}
/* Hides from IE Mac */
* html .clearfix{
	height: 1%;
}
.clearfix{
	display:block;
}
/* End Hack */

