body {
	margin: 2em;
	font-family: monospace;
	background-color: #FFFFFF;
}

img {
	border: 0px;
}

h1 {
	font-size: medium;
	margin: .8em 0 .8em 0;
	padding: 0;
}

td {
	vertical-align: top;
	padding: 0 3em 1em 0;
}

table {
	border-collapse: collapse;
}

/* classes for 2 columns 
 * heavily inspired by 2 columns layout of Matthew James Taylors
 * http://matthewjamestaylor.com/blog/ultimate-2-column-left-menu-ems.htm
 */

/* column container */
.colmask {
	position: relative;
	/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	clear: both;
	float: left;
	width: 100%; /* width of whole page */
	overflow: hidden; /* This chops off any overhanging divs */
}

/* 2 column left menu settings */
.leftmenu .colright {
	float: left;
	width: 200%;
	position: relative;
	left: 18em;
	background: #fff;
}

.leftmenu .col1wrap {
	float: right;
	width: 50%;
	position: relative;
	right: 18em;
	padding-bottom: 1em;
}

.leftmenu .col1 {
	margin: 0 1em 0 19em;
	position: relative;
	right: 100%;
	overflow: hidden;
}

.leftmenu .col2 {
	float: left;
	width: 16em;
	position: relative;
	right: 17em;
}