/******************************************************************************/
/* GENERAL                                                                    */
/******************************************************************************/
* {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: medium;
}
html {
	margin: 0;
    padding: 0;
	background-color: #8e7f7f;
	color: #fff;
    height: 100%;
}
body {
	margin: 0 auto;
	background-color: #fff;
	color: #333;
	width: 700px;
	border-left: solid 2px #666;
	border-right: solid 2px #666;
    min-height: 100%;
}
.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;
    display: block;
}
	header h1 {
		margin: 0;
		font-size: 2em;
		background-color: #fff;
		color: #1a9eaa;
	}
/******************************************************************************/
/* MENU                                                                       */
/******************************************************************************/
nav {
	border-bottom: solid 1px #666;
	padding: 2px 10px;
	background-color: #666;
	color: #fff;
    display: block;
}
    nav a {
        color: #fff;
        background-color: #666;
        text-decoration: none;
    }
    nav a:hover {
        color: #feba55;
        background-color: #666;
    }
/******************************************************************************/
/* CONTENT                                                                    */
/******************************************************************************/
section {
	padding: 0 10px;
    display: block;
}
	section p {
		font-size: .8em;
	}
	section a {
		font-size: 1em;
	}
	section h2 {
		border-bottom: dotted 1px #ce8a25;
		color: #ce8a25;
		background-color: #fff;
		margin: 2em 0 5px 0;
	}
	section h3 {
		border-bottom: dotted 1px #1a9eaa;
		color: #1a9eaa;
		background-color: #fff;
		margin: 0;
	}
	section ul {
		margin: 0 0 0 2em;
		padding: 0;
		list-style-type: square;
	}
	section table {
		border: solid 1px #333;
		width: 100%;
		border-collapse: collapse;
	}
		section table tfoot {
			display: none;
		}
		section table th {
			text-align: left;
			border-bottom: solid 1px #999;
			padding: 5px;
			font-size: .8em;
			white-space: nowrap;
		}
		section table td {
			text-align: left;
			padding: 5px;
			font-size: .8em;
		}
		section table td.param {
			white-space: nowrap;
		}
	section 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;
	}
