@charset "utf-8";
/* 日本語 */
/*	=== Browser memo... ===
	others = Firefox, Opera, Safari, Chrome
	ie6 only:
		* html body selector
	ie7 or later only:
		*:first-child + html body selector
	ie7 or later and others:
		html > body selector
	ie8 and others:
		html > / ** / body selector
	others only:
		html:not(:target) selector
		
	background: (color|inherit) url("url") (repeat-x|repeat-y|no-repeat|repeat) (top|center|bottom) (left|center|right) (fixed|scroll)
*/

/* ========== 初期化 ========== */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video,
hr {
	margin: 0;
	padding: 0;
	background: transparent none;
	border: 0 none;
	font-size: 100%;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

audio, video {
	display: inline-block;
}

/* ========== html, body ========== */
html {
}

* html {
	behavior: expression(
	this.style.behavior || (
		document.execCommand('BackgroundImageCache', false, true),
		this.style.behavior = 'none'
		)
	);
}

body {
	color: #ccc;
	background: #030200 none;
	font-size: small;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	line-height: 1.5;
}
html:not(:target) body {
	/* for modern browzers except ie 8 */
	font-size: 13px;
}
/* ========== General - Block elements ==========

	h1, h2, h3, h4, h5, h6, p, blockquote, address, pre, hr,
	li, ul, ol, dl, dt, dd, (form, fieldset, legend,
	table, noframes, noscript, menu, dir, center)
	
	but table and form elements are defined other groups.
*/
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	margin: 0 0 0.5em;
	color: white;
	vertical-align: bottom;
}
h1 {
	margin: 0;
	font-size: 100%;
}
h2 {
	font-size: 200%;
	border-width: 0 0 2px;
	border-style: solid;
	border-color: #333;
	padding: 0.3em;
}
h3 {
	font-size: 150%;
	border-left: 20px solid #333;
	margin: 0.5em 0.4em;
	padding-left: 0.4em;
}
h4 {
	font-size: 120%;
	border-bottom: 2px solid #333;
	margin: 0.5em 1em;
	padding: 0 0.5em;
}
h5 {
	font-size: 100%;
	margin: 1.5em 2em;
}
h6 {
	font-size: 100%;
	margin: 1.5em 2em;
	display: run-in;
}
p {
	margin: 1.5em 2em;
}
blockquote {
	margin: 1.5em 3em;
	padding: 1px 1em;
	background: #222 none;
	color: inherit;
	border: 2px solid #333;
}
blockquote p {
	margin: 1em 0;
}
pre {
	margin: 1.5em 3em;
	padding: 1em;
	font-family: Consolas, monospace;
	background: #222 none;
	color: inherit;
	white-space: pre-wrap;
}
address {
}
hr {
	overflow: visible;
	height: 2px;
	width: 100%;
	margin: 1.5em 0;
	text-align: center;
	color: #333;
	background: #333 none;
	clear: both;
}
ul, ol {
	margin: 1.5em 1em;
	padding: 0;
	list-style-image: none;
	list-style-position: outside;
}
li {
	margin-left: 2.5em;
}
ul {
	list-style-type: disc;
}
ul ul {
	list-style-type: circle;
}
ul ul ul {
	list-style-type: square;
}
ol {
	list-style-type: decimal;
}
ol ol {
	list-style-type: lower-alpha;
}
ol ol ol {
	list-style-type: lower-roman;
}
ul ul, ul ol, ol ol, ol ul, dl dd ul, dl dd ol {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
dl {
	padding: 0 !important;
	margin: 1.5em 2em;
}
dl dt {
	font-weight: bold;
	border-bottom: 2px solid #333;
	margin-top: 0.5em;
}
dl dt:first-child {
	margin-top: 0;
}

dl dd {
	margin: 0 2em;
}
dl dd p {
	margin: 0.5em 0;
}
dl dd table {
	margin: 0;
	width: 100%;
}
dl dd > ul > li, dl dd > ol > li {
	margin-left: 0;
}
/* ========== General - Inline elements ==========

	a, abbr, acronym, cite, code, dfn, em, kbd, q, samp,
	strong, sub, sup, var, bdo, big, small, br, img, b, i, tt, img
*/
a {
	color:#fbd840;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a[id^="footnote_body_"] {
	/* 注釈 */
	font-size: 75%;
	vertical-align: super;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
cite {
}
code {
	display: block;
	font-family: Consolas, monospace;
}
dfn {
}
kbd {
	font-family: Consolas, monospace;
}
q {
}
samp {
	font-family: Consolas, monospace;
}
sup {
	vertical-align: super;
	font-size: 75%;
}
sub {
	vertical-align: sub;
	font-size: 75%;
}
var {
}
em {
	font-weight: bold;
	font-style: normal;
	color: white;
}
html > /**/ body em {
	font-style: inherit;
}
mark {
	background: #fbd840 none !important;
	color: #222 !important;
	font-weight: bold !important;
}
strong {
	font-weight: bold;
	color: red;
	background: transparent none;
}
br {
	letter-spacing: 0;
}
img {
	vertical-align: bottom;
}

/* ========== General - Special elements ==========

	del, ins, iframe, object, script, noscript
*/
del {
	color: #555;
	background: transparent none;
	text-decoration: line-through;
}
ins {
	text-decoration: none;
	color: inherit;
	background: #444 none;
}
iframe, object {
	vertical-align: bottom;
}
/* ========== General - Table elements ==========

	table, thead, tbody, tfoot, tr, th, td
*/
table {
	font-family: Helvetica, Arial, sans-serif;
	border-collapse: collapse;
	font-size: 100%;
	width: 90%;
	margin: 1.5em auto;
	border-spacing: 0 !important;
	empty-cells: show;
	caption-side: bottom;
}
table, th, td {
	border: 2px solid #333;
}
td, th {
	padding: 1px;
}
th {
	font-weight: bold;
	text-align: center;
	background: #222 none;
	color: inherit;
}
td {
	background: #030200 none;
}
/*
thead td, thead th,
tfoot td, tfoot th {
	background: #222 none;
	color: inherit;
}*/
/* ========== General - Form elements ==========

	form, input, button, textarea, select, option, optgroup, fieldset, legend
*/

form {
	margin: 1.5em 2em;
}
input, button, textarea, select, option, optgroup {
	background: #222 none;
	color: #ddd;
}
input[type='checkbox'], input[type='image'], input[type='image'], input[type='radio'] {
	background: transparent none;
	color: inherit;
}
input, button, select, option, fieldset, legend, optgroup {
	font-family: Helvetica, Arial, sans-serif;
}
input, button, select, option, fieldset, legend, optgroup, textarea {
	font-size: 100%;
}
textarea {
	font-family: 'MS Gothic', monospace;
	line-height: normal;
}

/* ========== Page layouts ========== */

/* Layouts */
div#skin-wrap {
	width: 80%;
	min-width: 1000px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}
div#skin-wrap header {
	border-width: 0 2px 1px;
	border-style: solid;
	border-color: #333;
	background: #222 none;
	/* background: #473e05 url("./cssimg/header-bg-l.png") repeat-y left top scroll; */
	color: inherit;
	position: relative;
	height: 165px;
	overflow: hidden;
}
div#skin-wrap header div#skin-logo {
	/* background: transparent url("./cssimg/header-bg-r.png") repeat-y right top scroll; */
	width: 100%;
	height: 165px;
}
div#skin-wrap header div#skin-logo h1 {
	margin: 10px 0 0 10px;
	padding: 0;
	height: 145px;
	line-height: 145px;
	vertical-align: top;

}
div#skin-wrap header div#skin-navibar {
	position: absolute;
	top: 0.7em;
	right: 1em;
	
}
div#skin-wrap header div#skin-navibar ul {
	list-style: none outside;
	margin: 0;
	padding: 0;
}
div#skin-wrap header div#skin-navibar ul li {
	list-style: none outside;
	margin: 0;
	padding: 0;
	display: inline;
}
html > /**/ body div#skin-wrap div#skin-header div#skin-navibar ul li {
	display: inline-block;
}
div#skin-wrap header div#skin-clock {
	position: absolute;
	text-align: right;
	bottom: 0.7em;
	right: 1em;
	display: inline;
	color: #777;
}
div#skin-wrap header div#skin-clock:hover {
	color: #ccc;
}
div#skin-wrap header div#skin-clock span {
	font-family: Consolas, monospace;
}

div#skin-wrap div#skin-body {
	border-width: 1px 2px;
	border-style: solid;
	border-color: #333;
	background: #030200 url("./cssimg/menu-bg.png") repeat-y top left scroll;
	display: inline-block;
}
html > /**/ body div#skin-wrap div#skin-body {
	display: block;
}
div#skin-wrap div#skin-body:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}
div#skin-wrap div#skin-body article {
	width: 100%;
	float: right;
	margin-left: -200px;
	overflow: hidden;
}
div#skin-wrap div#skin-body div#skin-main-margin {
	margin-left: 200px;
	display: inline-block;
}
html > /**/ body div#skin-wrap div#skin-body div#skin-main-margin {
	display: block;
}
div#skin-wrap div#skin-body div#skin-main-margin:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}
div#skin-wrap div#skin-body article div#skin-main-margin img {
}
div#skin-wrap div#skin-body article div#skin-main-margin a[href^="http:"]:after,
div#skin-wrap div#skin-body article div#skin-main-margin a[href^="https:"]:after {
	content: url("./cssimg/external.png");
	vertical-align: middle;
	margin: 0 2px;
}

div#skin-wrap div#skin-body article div#skin-main-margin a[href^="http://l4d2.ngnl.org"]:after,
div#skin-wrap div#skin-body article div#skin-main-margin a[href^="https://l4d2.ngnl.org"]:after {
	content: "";
	margin: 0;
}

div#skin-wrap div#skin-body div#skin-main-margin div#skin-topicpath {
	color: inherit;
	background: #111 none;
	border-bottom: 2px solid #333;
	padding: 0.1em 0.5em;
}
div#skin-wrap div#skin-body div#skin-main-margin div#skin-alias {
	text-align: right;
	float: right;
	line-height: 1;
	padding-top: 0.2em;
	padding-right: 0.2em;
	background: transparent none;
	color: #999;
}
div#skin-wrap div#skin-body div#skin-main-margin div#skin-content {
}
div#skin-wrap div#skin-body div#skin-main-margin div.edit_form textarea {
	width: 700px;
	height: 30em;
}

div#skin-wrap div#skin-body div#skin-main-margin div#skin-note {
	border-top: 2px solid #333;
	margin: 0.5em auto;
	padding: 0.5em 1em;
}
div#skin-wrap div#skin-body div#skin-main-margin div#skin-attach {
	border-top: 2px solid #333;
	margin: 0.5em auto;
	padding: 0.5em 1em;
}
div#skin-wrap div#skin-body div#skin-main-margin div#skin-note hr,
div#skin-wrap div#skin-body div#skin-main-margin div#skin-attach hr {	
	display: none;
}


div#skin-wrap div#skin-body nav {
	width: 200px;
	float: right;
	overflow: hidden;
}
div#skin-wrap div#skin-body nav div#skin-menu-margin {
	background: #111 none;
	border-right: 2px solid #333;
	width: 198px;
	overflow: hidden;
}
div#skin-wrap div#skin-body nav div#skin-menu-margin ul,
div#skin-wrap div#skin-body nav div#skin-menu-margin ul li {
	margin: 0;
	padding: 0;
	line-height: 1.1;
}
div#skin-wrap div#skin-body nav div#skin-menu-margin ul li span.menu-title {
	display: block;
	width: 100%;
	border-bottom: 2px solid #333;
	padding: 0.3em 0.2em 0.3em 0.5em;
	font-weight: bold;
	background: #222 none;
}
div#skin-wrap div#skin-body nav div#skin-menu-margin ul li a,
div#skin-wrap div#skin-body nav div#skin-menu-margin ul li span.noexists {
	display: block;
}

div#skin-wrap div#skin-body nav div#skin-menu-margin ul li span.noexists a {
	display: none;
}
div#skin-wrap div#skin-body nav div#skin-menu-margin ul li ul li {
	border-bottom: 2px solid #333;
	padding: 0.3em 0.2em 0.3em 1.2em;
}
* html div#skin-wrap div#skin-body nav div#skin-menu-margin ul li ul li {
	display: inline-block;
}
div#skin-wrap div#skin-body nav div#skin-menu-margin ul li ul li a {
	width: 100%;
	display: block;
	margin: -0.3em -0.2em -0.3em -1.2em;
	padding: 0.3em 0.2em 0.3em 1.2em;
}
div#skin-wrap div#skin-body nav div#skin-menu-margin ul li ul li span.noexists a {
	display: inline;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}


div#skin-wrap footer {
	border-width: 1px 2px 0;
	border-style: solid;
	border-color: #333;
	padding: 0.5em 0.2em 0.2em 0.5em;
	display: inline-block;
}
html > /**/ body div#skin-wrap footer {
	display: block;
}
div#skin-wrap div#skin-footer:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}
div#skin-wrap footer p {
	margin: 0;
}
div#skin-wrap footer address {
	font-style: inherit;
}

div#skin-wrap footer div#skin-toolbar {
	
}
div#skin-wrap footer div#skin-toolbar ul {
	list-style: none outside;
	margin: 0;
	padding: 0;
	width: 50%;
	float: right;
	text-align: right;
}


div#skin-wrap footer div#skin-toolbar ul li {
	margin: 0;
	padding: 0;
	display: inline;
}
html > /**/ body div#skin-wrap footer div#skin-toolbar ul li {
	display: inline-block;
}
div#skin-wrap footer div#skin-copyright {
	width: 48%;
}
div#skin-wrap footer div#skin-copyright p {
	font-size: 75%;
	margin-top: 0.5em;
}

/* toolbars */

a.toolbar-item {
	margin-left: 0.5em;
	white-space: nowrap;
}
a.toolbar-item span {
	display: inline-block;
	background-color: transparent;
	background-image: url("./cssimg/toolbar.png");
	background-repeat: no-repeat;
	line-height: 0;
	overflow: hidden;
	margin: 0; padding: 0;
	vertical-align: middle;
}
a.toolbar-item.reload span	{ background-position: 0 -320px; }
a.toolbar-item.new span	{ background-position: 0 -240px; }
a.toolbar-item.edit span	{ background-position: 0 -100px; }
a.toolbar-item.freeze span	{ background-position: 0 -140px; }
a.toolbar-item.unfreeze span	{ background-position: 0 -460px; }
a.toolbar-item.diff span	{ background-position: 0 -80px; }
a.toolbar-item.file span	{ background-position: 0 -120px; }
a.toolbar-item.copy span	{ background-position: 0 -60px; }
a.toolbar-item.rename span	{ background-position: 0 -340px; }
a.toolbar-item.top span	{ background-position: 0 -440px; }
a.toolbar-item.list span,
a.toolbar-item.filelist span	{ background-position: 0 -220px; }
a.toolbar-item.search span	{ background-position: 0 -400px; }
a.toolbar-item.recentchanges span	{ background-position: 0 -300px; }
a.toolbar-item.backup span	{ background-position: 0 -40px; }
a.toolbar-item.help span	{ background-position: 0 -160px; }
a.toolbar-item.rss span,
a.toolbar-item.rss10 span	{ background-position: 0 -383px; width: 53px; height: 14px; }
a.toolbar-item.rss20 span	{ background-position: 0 -363px; width: 53px; height: 14px; }
a.toolbar-item.rdf span	{ background-position: 0 -283px; width: 53px; height: 14px; }

/* plugins */
div.plugin-collapse {
	border: 2px solid #333;
	margin: 1.5em 1em;
}
div.plugin-collapse div.handle {
	height: 2em;
	line-height: 2em;
	padding: 0 1em;
	background: #111 none;
}
div.plugin-collapse div.handle a {
	display: block;
	margin: 0 -1em;
	padding: 0 1em;
	height: 2em;
	line-height: 2em;
}
div.plugin-collapse div.handle span.title {
	font-weight: bold;
	float: left;
}
div.plugin-collapse div.handle a span.switch {
	float: right;
	display: inline-block;
}

div.plugin-msgbox {
	margin: 1.5em 3em;
	padding: 1em;
}
div.plugin-msgbox.notice {
	border: 2px solid #333;
	background: #111 none;
}

div.plugin-msgbox.caution {
	border: 2px solid #555;
	/* border: 2px solid #a78a03; */
	background: #333 none;
	color: white;
}
div.plugin-msgbox.warning {
	border: 2px solid red;
	background: #200 none;
	color: white;
}
div.plugin-msgbox p {
	margin: 0;
	padding: 0;
}
div.plugin-msgbox p span.title {
	font-weight: bold;
}
div.plugin-quote {
	margin: 1.5em 0;
	width: auto;
}
div.plugin-quote div {
	display: inline-block;
}
html div.plugin-quote div {
	display: inline;
}
html > /**/ body div.plugin-quote > div {
	display: inline-block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	width: auto;
	max-width: 100%;
	padding: 0 2em;
}
div.plugin-quote div * {
	margin: 0;
	padding: 0;
	border: 0 none;
	background: transparent none;
	width: auto;
}
div.plugin-quote blockquote p {
}
div.plugin-quote blockquote p.en {
	font-style: italic;
	margin-left: 0.5em;
	text-indent: -0.5em;
}
div.plugin-quote blockquote p.ja {
	font-style: normal;
	margin-left: 0.7em;
	text-indent: -0.7em;
}
div.plugin-quote p.info {
	text-align: right;
}
div.plugin-quote p.info cite {
	font-style: inherit;
}
div.plugin-mcol {
	display: inline-block;
	table-layout: fixed;
	overflow: hidden;
	width: 100%;
	margin: 1em 0;
}
html div.plugin-mcol {
	display: inline;
}
html > /**/ body div.plugin-mcol {
	display: table;
}
div.plugin-mcol div.col {
	display: inline-block;
	vertical-align: top;
}
html div.plugin-mcol div.col {
	display: inline;
}
html > /**/ body div.plugin-mcol div.col {
	display: table-cell;
}

figure.plugin-imgbox {
	display: inline-block;
	padding: 0.6em;
	border: 2px solid #333;
	background: #222 none;
	color: inherit;
	margin: 1em;
}
figure.plugin-imgbox.noborder {
	border: 0;
	background: transparent none;
	color: inherit;
	padding: 0em;
	margin: 0.5em;
}
figure.plugin-imgbox.pos-right {
	float: right;
	clear: right;
}
figure.plugin-imgbox.pos-left {
	float: left;
	clear: left;
}
figure.plugin-imgbox.pos-center {
	clear: both;
	margin: 0;
	text-align: center;
}

div.plugin-imgbox.center {
	text-align: center;
	margin: 1em 0;
}

figure.plugin-imgbox figcaption {
	display: inline;
	speak: none;
	line-height: 1.2;
	display: block;
	width: auto;
	margin: 0.2em 0 -0.3em;
}

span.tate {
	writing-mode: tb-rl;
	line-height: 1;
	width: auto;
	height: auto;
	font-family: "MS Gothic", monospace;
}
html:not(:target) span.tate {
	width: 1em;
	height: auto;
	font-family: "MS Gothic", monospace;
	white-space: break-all;
	word-wrap: break-word;
	display: inline-block;
}

table.plugin-infobox {
	width: 352px;
	float: right;
	clear: right;
	margin: 1em;
	table-layout: fixed;
}
table.plugin-infobox tr td.image {
	text-align: center;
	padding: 0;
	margin: 0;
}
table.plugin-infobox ul.navi {
	margin: 0;
	padding: 0 7px;
	display: block;
}
table.plugin-infobox col.key {
	width: 8em;
}
table.toc, table.toc td, table.toc th {
	border: 0 none;
	margin: 0;
	padding: 0;
}
table.toc td.toctitle {
	display: none;
}
div.youtube {
	margin: 0 1em;
}
div.youtube.left {
	float: left;
	clear: left;
}
div.youtube.right {
	float: right;
	clear: right;
}
div.youtube.none {
	margin: 0;
}

ul.navi {
	list-style: none outside;
	margin: 0.5em 0;
	padding: 0 2em;
	height: 1%;
}
html > /**/ body ul.navi {
	height: auto;
}
ul.navi li {
	margin: 0;
	padding: 0;
}
ul.navi:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}
ul.navi li.navi_left {
	width: 33%;
	text-align: left;
	float: left;
}
ul.navi li.navi_right {
	width: 33%;
	text-align: right;
	float: right;
}
ul.navi li.navi_none {
	text-align: center;
	margin: 0 auto;
	display: inline-block;
}
html > body ul.navi li.navi_none {
	width: 33%;
	display: block;
}

a.note_super {
	font-size: 80%;
	vertical-align: super;
}

a.anchor_super {
	font-size: 60%;
	vertical-align: super;
}
div.jumpmenu {
	float: right;
	width: 2em;
}
div.clear {
	clear: both;
}

span.noexists a {
	vertical-align: super;
}

span.diff_added {
	color: blue;
	text-decoration: underline;
}
span.diff_removed {
	color: red;
	text-decoration: line-through;
}
div.ofuda {
	text-align: right;
	padding-right: 1em;
}
div.ofuda img {
	vertical-align: top;
}
div.ofuda a:after {
	content: "" !important;
	margin: 0 !important;
}


/* captcha */
div#recaptcha_widget_div {
}
div#recaptcha_widget_div a:after {
	content: '';
	display: none;
}
div#recaptcha_widget_div input[type="text"] {
	background: #222 none;
	color: #ddd;
}
