html {
	height: 100%; /* this sets height of page to 100% */
}

body {
	margin: 0;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 62.5%;
	background-repeat: no-repeat;
	background-position: center;
	height: 100%; /* this sets height of page to 100% */
}

p {
	color: #222222;
	font-size: 1.1em;
	line-height: 1.4em;
}

a:link, a:visited {
	color: #333333;
	text-decoration: none;
}

a:hover {
	color: #66FFFF;
	border-bottom: 0px;
}

#main {
	position: relative; /* this tells #main to follow it's parent for positioning */
	min-height: 100%; /* this stops the footer swallowing content */
	width: 760px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 15px;  /* this stops the footer eating into the div before it */
}

#threeCells {
	margin-top: 5px;
	margin-bottom: 5px;
}

#threeCells td {
	padding-left: 5px;
	padding-right: 5px;
}

#footer {
	width: 760px;
	height: 26px;
	line-height: 26px;
	position: absolute; /* this makes positioning absolute */
	bottom: 0; /* this sets positioning to bottom of 'body' */
}

.desi {
	margin-left: 15px;
}


