@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	background-color: #66FF99;
}
#container  {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 0px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#mainContent p img   {
	text-align: center;
}

#header  {
	background-color: #336633;
	height: auto;
	padding-top: 0px;
	padding-right: 10px;
	padding-left: 20px;
	border-bottom-width: 10px;
	border-bottom-style: solid;
	border-bottom-color: #00FF00;
	padding-bottom: 0px;
} 
#header h1   {
	font-size: 10px;
	color: #CCCCCC;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
}
h2 {
	font-size: 18px;
	background-color: #0F5;
	border-top-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	margin: 0px;
}
h3 {
	background-color: #9900CC;
	border-bottom-width: 2px;
	border-left-width: 10px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	font-size: 18px;
	font-weight: bolder;
	margin: 0px;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 10px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	color: #FFF;
}

#header #logo   {
	height: 168px;
	width: 165px;
	float: left;
}
#header_main    {
	float: left;
	height: 168px;
	width: 750px;
}
#header #menulist   {
	clear: left;
	padding-bottom: 1px;
	padding-top: 1px;
}
#container #header #menulist li  {
	display: inline;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
	color: #FFF;
	font-size: 14px;
	margin: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 190px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
	margin: 0px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
#container #sidebar1 li  {
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	margin-left: 10px;
	margin-top: 3px;
	margin-bottom: 3px;
}
#sidebar2  {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
	margin: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}
#mainContent  {
	margin-right: 220px;
	margin-left: 200px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 14px;
} 
#mainContent-large  {
	margin-right: 20px;
	margin-left: 210px;
	background-color: #FFFFFF;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 12px;
} 
.thrColFixHdr #container #mainContent-large h5 {
	font-size: 14px;
	font-weight: bold;
	background-color: #CFF;
}

#footer  {
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #336633;
} 
#footer p  {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	font-size: 14px;
}


.thrColFixHdr #container #mainContent h5 {
	font-size: 14px;
	background-color: #CFF;
	padding-right: 20px;
	margin-right: 20px;
	margin-left: 20px;
	padding-left: 20px;
}
#sidebar2-moji001 {
	font-size: 14px;
	font-weight: bold;
	color: #2A00FF;
}

#divsmall-center01 {
	text-align: center;
}
#main_blockquote001 {
	font-size: 14px;
	font-weight: bold;
	color: #A00;
}
.thrColFixHdr #container #mainContent table {
	text-align: center;
}
#maincontent-center001 {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: #00F;
}
#tr-001 {
	font-size: 14px;
	color: #A00;
}
#maincontent-center-002 {
	font-size: 14px;
	font-weight: bolder;
	color: #00F;
	text-align: center;
}
#td-003 {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: #A00;
}
#tr004 {
	font-size: 14px;
	font-weight: bold;
	color: #A00;
	text-align: center;
}
#tr005 {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: #A00;
}
#tr-006 {
	font-size: 14px;
	font-weight: bold;
	color: #A00;
	text-align: center;
}
#aaa01 {
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	color: #F00;
}
#main-large-001 {
	font-size: 14px;
	font-weight: normal;
	color: #007F00;
}
#main-2-002 {
	font-size: 14px;
	color: #007F00;
}
#main-2-003 {
	font-size: 14px;
	color: #007F00;
}
#sideber-red01 {
	color: #F00;
	font-weight: bold;
}
a {
}
.p_senter {
	text-align: center;
}

strong {
	font-weight: bold;
}
.sidebar1_title_1 {
	background-color: #0F5;
	border: 2px solid #000000;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	font-weight: bolder;
}
.mainContent_title_1 {
	font-size: 18px;
	font-weight: bolder;
	background-color: #9900CC;
	border-left-width: 10px;
	border-left-style: solid;
	border-left-color: #000000;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	margin: 0px;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 10px;
	color: #FFF;
}

.sidebar1_title_2 {
	font-size: 14px;
	margin: 0px;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 10px;
}
.sidebar2_title_1 {
	font-size: 14px;
	font-weight: bold;
	border: 2px dotted #2A1FFF;
	background-color: #FFF;
	padding: 3px;
	margin: 0px;
}
.mainContent_p {
	padding-right: 20px;
	padding-left: 20px;
}
.mainContent_title_2 {
	font-size: 16px;
	border-top-width: 4px;
	border-bottom-width: 4px;
	border-top-style: double;
	border-bottom-style: double;
	border-top-color: #9900CC;
	border-bottom-color: #9900CC;
	font-weight: bold;
	padding-left: 15px;
	padding-top: 3px;
	padding-bottom: 3px;
	background-color: #EBEBEB;
	margin-right: 20px;
	margin-left: 20px;
}
h4 {
	font-size: 16px;
	font-weight: bold;
	margin-left: 20px;
	padding-left: 15px;
	border-top-width: 4px;
	border-bottom-width: 4px;
	border-top-style: double;
	border-bottom-style: double;
	border-top-color: #9900CC;
	border-bottom-color: #9900CC;
	margin-right: 20px;
	padding-top: 3px;
	padding-bottom: 3px;
}
