/******************************************************************************/
/* GENERAL                                                                    */
/******************************************************************************/
* {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: medium;
}
html {
	margin: 0;
	background-color: #8e7f7f;
	color: #fff;
}
body {
	margin: 0;
	background-color: #fff;
	color: #333;
	width: 700px;
	margin: auto;
	border-left: solid 2px #666;
	border-right: solid 2px #666;
}
.flash {
	position: absolute;
}
a {
	color: #1a9eaa;
	background-color: inherit;
}
a:hover {
	color: #0a6e7a;
	background-color: inherit;
}
code {
	font-family: "Courier New",Courier,monospace;
}
/******************************************************************************/
/* HEADER                                                                     */
/******************************************************************************/
#header {
	padding: 10px;
	border-bottom: solid 1px #666;
}
	#header h1 {
		margin: 0;
		font-size: 2em;
		background-color: #fff;
		color: #1a9eaa;
	}
/******************************************************************************/
/* MENU                                                                       */
/******************************************************************************/
#menu {
	border-bottom: solid 1px #666;
	padding: 2px 10px;
	background-color: #666;
	color: #fff;
}
	#menu ul {
		margin: 0;
		padding: 0;
	}
		#menu ul li {
			display: inline;
			margin-right: 1em;
		}
			#menu ul li a {
				color: #fff;
				background-color: #666;
				text-decoration: none;
			}
			#menu ul li a:hover {
				color: #feba55;
				background-color: #666;
			}
/******************************************************************************/
/* CONTENT                                                                    */
/******************************************************************************/
#content {
	padding: 10px;
}
	#content h2 {
		border-bottom: dotted 1px #ce8a25;
		color: #ce8a25;
		background-color: #fff;
		margin: 2em 0 5px 0;
	}
	#content h3 {
		border-bottom: dotted 1px #1a9eaa;
		color: #1a9eaa;
		background-color: #fff;
		margin: 0;
	}
	#content ul {
		margin: 0 0 0 2em;
		padding: 0;
		list-style-type: square;
	}
	#content table {
		border: solid 1px #333;
		width: 100%;
		border-collapse: collapse;
	}
		#content table tfoot {
			display: none;
		}
		#content table th {
			text-align: left;
			border-bottom: solid 1px #999;
			padding: 5px;
			font-size: .8em;
			white-space: nowrap;
		}
		#content table td {
			text-align: left;
			padding: 5px;
			font-size: .8em;
		}
		#content table td.param {
			white-space: nowrap;
		}
	#content pre {
		border: solid 1px #666;
		border-left: solid 5px #666;
		padding: 5px;
		font-family: "Courier New",Courier,monospace;
		font-size: .8em;
		overflow: auto;
		background-color: #f5f5f5;
		color: #000;
	}

