/*
 * LineNumberWriter 0.4.1
 * http://likealunatic.jp/2008/04/04_linenumberwriter.php
 * Author: Naoki Sekiguchi (http://likealunatic.jp)
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
 *
 * Since:    2007-04-04
 * Modified: 2009-10-15
 */

div.LNW {
	width: 100%;
	margin: 20px 0;
	overflow: auto;
	color: #000;
	font-size: 12px;
	line-height: 1.3;
	}

/* [Header] section */
div.LNW div.header {
	position: relative;
	height: 1.35em;
	margin: 0;
	font-size: 10px;
	line-height: 1.2;
	font-family: "Verdana","Geneva","Arial","Helvetica",sans-serif !important;
	}
div.LNW div.header .ctrl1 {
	position: absolute;
	top: 0;
	right: 11.5em;
	width: 11em;
	height: 1.35em;
	border-top:  1px solid #D9D9D9;
	border-right:1px solid #D9D9D9;
	border-left: 1px solid #D9D9D9;
	text-align: center;
	}
div.LNW div.header .ctrl2 {
	position: absolute;
	top: 0;
	right: 0;
	width: 11em;
	height: 1.35em;
	border-top:  1px solid #D9D9D9;
	border-right:1px solid #D9D9D9;
	border-left: 1px solid #D9D9D9;
	text-align: center;
	}
div.LNW div.header a {
	color: #FFF;
	background-color: #C3C3C3;
	}
div.LNW div.header a:hover {
	color: #FFF;
	background-color: #999;
	}
div.LNW div.header span {
	color: #AAA;
	background-color: #FFF;
	}

/* [with Line Number] section */
div.LNW ol {
	width: auto;
	margin: 0;
	padding: 0 0 0 3.2em !important;
	border-top:   1px solid #D9D9D9;
	border-right: 1px solid #D9D9D9;
	border-bottom:1px solid #D9D9D9;
	background-color: #D9D9D9;
	font-family: "Consolas","Courier New","Courier",monospace !important;
	}
div.LNW ol li {
	display: list-item !important;
	list-style-type: decimal !important;
	margin: 0 !important;
	padding: 0 5px;
	border-left: 3px solid #FFB546;
	}
div.LNW ol li.odd {
	background-color: #FFF;
	}
div.LNW ol li.even {
	background-color: #F3F3F3;
	}

/* [Plain Text] section */
div.LNW pre {
	width: auto;
	overflow: visible;
	margin: 0;
	padding: 0 0 0 3.2em;
	border: 1px solid #D9D9D9;
	background-color: #FFF;
	}
div.LNW pre code {
	display: block;
	margin: 0 0 0 7px;
	font-family: "Consolas","Courier New","Courier",monospace !important;
	}

/* CSS Hack for WinIE */
* html div.LNW {
	overflow-y: hidden;
	margin: 20px 0 3px;
	}
* html div.LNW div.header a,
* html div.LNW div.header span {
	padding-bottom: 2px;
	}
* html div.LNW ol,
* html div.LNW pre {
	margin: 0 0 17px 0;
	}
*:first-child+html div.LNW {
	overflow-y: hidden;
	margin: 20px 0 3px;
	}
*:first-child+html div.LNW ol,
*:first-child+html div.LNW pre {
	margin: 0 0 17px 0;
	}
