/*	
------------------------------------------------------------
Override all Browser Defaults
------------------------------------------------------------
	
Notes:

text-align: left; is not a default as such but it overrides the center 
declaration in the body tag that is used by ie5 to center all elements,
as margin auto is broken

*/
* 
{
	margin: 0;
	padding: 0;
	font-size: 100%;
	text-align: left; 
}




/* 
------------------------------------------------------------
BODY
------------------------------------------------------------
*/
 
body 
{ 
	font-size: 76%;
	font-family: Arial, Helvetica, sans-serif; 
	text-align: center; /* this makes sure the container div centres in IE/PC */
	color: #000; 
	background: #fff;
}




/*
------------------------------------------------------------
Structural
------------------------------------------------------------
*/

#main 
{
	margin: 30px auto;
	width: 780px;
}

#header 
{
	width: 780px;
	margin: 0 0 30px 0;
	padding: 0;
}

#columns 
{
	text-align: left; 
	width: 780px;
}

.col 
{
	float: left;
	width: 220px;
	text-align: left;
	padding: 5px 20px 0 20px;
}

/* http://www.cs.hmc.edu/~mbrubeck/clear-after/ */
#columns:after, 
.col:after 
{
	content: "";
	display: block;
	height: 0px;
	clear: both;
}

#footer 
{
	clear: left;
	text-align: center;
	width: 780px;
	padding: 20px 0 10px 0;
}




/* 
------------------------------------------------------------
Images and Links
------------------------------------------------------------
*/
 
img	
{
	border: 0;
}

a img
{
	margin: 0;
	padding: 0;
	border: 0;
	background-color: transparent;
}

a 
{
	color: #ff6600;
	text-decoration: none;
}

a:hover 
{
	text-decoration: underline;
}




/*
------------------------------------------------------------
Typography
------------------------------------------------------------
*/

h1#pagetitle
{
	height: 70px;
	background: #fff url("/images/futurelogo.jpg") top left no-repeat;
}

h1#pagetitle a
{
	display: block;
	height: 70px;
	width: 780px;
	text-indent: -9999px;
}

h2 
{
	color: #ff6600;
	text-transform: lowercase;
	margin: 15px 0 5px 0;
	padding: 0;
	font-size: 160%;
}

h2.sectionhead
{
	margin: 30px 0 5px 0;
	color: #999999;
	text-transform: lowercase;
}

h3 
{
	color: #ff6600;
	text-transform: lowercase;
	margin: 15px 0 5px 0;
	padding: 0;
	font-size: 150%;
}

h4 
{
	color: #ff6600;
	text-transform: lowercase;
	margin: 10px 0 5px 0;
	padding: 0;
	font-size: 120%;
}

h4.updateinfo
{
	text-transform: none;
}

#columns h4 
{
	margin: 10px 20px 5px 20px;
}

p
{
	margin: 0;
	padding: 3px 0 5px 0;
	font-size: 100%;
	line-height: 1.5;
}

#footer p
{
	text-align: center;
}

blockquote
{
	margin: 0 10px 5px 10px;
	padding: 5px 8px;
	background: #eee;
	line-height: 1.5;
}

ul 
{
	margin: 0;
	padding: 0;
}

ul.presslist li 
{
	list-style-type: none;
	padding: 0 0 10px 0;
}

ul li 
{
	list-style-type: none;
	line-height: 1.5;
}


