/* CSS Document */

/* Developed by Chris Maxwel */

/* KNOWN ISSUES:
   -   */


/* --------------------\
|       INDEX          |
|   ----------------   |
|    1- layout         |
|   ----------------   |
|    2- typography     |
|   ----------------   |
|    3- tables         |
|   ----------------   |
|    4- misc           |
\-------------------- */


/* ------------------------------- layout ------------------------------------ */

* {
	font-family: Verdana, sans-serif;
	margin: 0;
	padding: 0;
	}

html {
	height: 100%;
	margin-bottom: 1px;
	}

body {
	padding: 20px;
	font-size: 76%; /* font sizing in ems, change this to change sizes, do not set below 76% */
	color: #000;
	background: #fff;
	}

/* rounded corner images are found in "brickets" and the h2 tag */

/* -------------
    brickets
------------- */

.container {
	background: url(images/bricket-gry-mid-670.gif) repeat-y;
	margin-bottom: 10px;
	}

.content {
	width: 670px;
	background: url(images/bricket-gry-bot-670.gif) bottom left no-repeat;
	padding-bottom: 20px;
	}

/* ------------------------------- typography -------------------------------- */

a {
	text-decoration: underline;
	font-weight: normal;
	color: #35329b;
	}

a:hover {
	text-decoration: none;
	}


h1 {
	padding-bottom: 5px;
	}

h2 {
	background: url(images/bricket-gry-top-670.gif) top left no-repeat;
	width: 670px;
	padding: 12px 0 10px 15px;
	font-size: 1em;
	}

h3 {
	padding: 15px 0 7px;
	font-size: 1.3em;
	color: #369;
	}

h4 {
	padding-bottom: 3px;
	font-size: 1.1em;
	font-style: italic;
	font-weight: normal;
	color: #369;
	}

p {
	margin-bottom: 10px;
	}

pre {
	color: #999;
	}
/* ------------------------------- tables ------------------------------------ */

#table p {
	clear: both;
	width: 100%;
	margin: 0;
	padding-left: 3px;
	font-size: 1em;
	line-height: 1.8em;
	}

#table span {
	float: left;
	padding: 0 10px;
	border-right: 1px solid #e3e7e7;
	border-bottom: 1px solid #e3e7e7;
	}

#table span.col1 {
	width: 110px;
	}

#table span.col2 {
	width: 382px;
	}

#table span.col3 {
	width: 110px;
	text-align: right;
	border-right: none;
	}

/* table 2 */

#table2 p {
	float: left; /* needs to float in order for images to catch in ff and opera */
	clear: both;
	width: 100%;
	margin: 0;
	padding-left: 3px;
	font-size: 1em;
	line-height: 1.8em;
	background: url(images/borders.gif) 4px 0 repeat-y; /* add an image to create left and right borders, the 4 px is to offset the left padding */
	}

#table2 span {
	float: left;
	padding: 0 10px;
	/* border-right: 1px solid #e3e7e7; removed this because the image now replaces the border */
	border-top: 1px solid #e3e7e7; /* switched this from border-bottom to border-top so that all row lines are even */
	}

#table2 p.firstLine span { /* to get rid of the top border caused by the border switch above */
	border-top: none;
	}

#table2 span.col1 {
	width: 110px;
	}

#table2 span.col2 {
	width: 382px;
	}

#table2 span.col3 {
	width: 112px; /* add 2px to compensate for the right border removed above */
	text-align: right;
	/* border-right: none; you don't need this anymore either since we lost it in the parent class */
	}

#table2 .lastLine { /* you need this class on the empty last line to create an even border on the last row of the table */
	clear: both;
	width: 666px;
	margin-left: 3px;
	border-top: 1px solid #e3e7e7;
	}

/* ------------------------------- misc -------------------------------------- */

.cleaner {
	height: 0;
	clear: both;
	}

.outline { /* for testing purposes */
	border: 1px dotted #f00;
	}

.highlight {
	/* font-weight: bold; */
	color: #390;
	}

.sum { 
	border-collapse: collapse;
	margin: 10px 0 20px 30px;
	}

.sum td {
	padding: 2px;
	border: 1px dotted #e3e7e7;
	}

.author {
	margin-bottom: 15px;
	color: #666;
	}
