body {background-color:#F2F2F2;
background-image:url(images/back.jpg);
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
color:#999999; /* basic font colour */
text-align: center;
}


H1		{font: 16px Arial;font-weight: bold;color:black;}
H2		{font: 14px Arial;font-weight: bold;color:#999999;}
H3		{font: 12px Arial;font-weight: bold;color:#990000;}

.oneColElsCtr #container {
width: 60em;
background: #FFFFFF;
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
border: 0px solid #000000;
text-align: center; /* this overrides the text-align: center on the body element. */
padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}


/* Home button - with state managed for mouse over etc */
a#home {
	display: block;
	width: 186px;
	height: 37px;
	background-image: url("images/homestate.jpg");
	background-repeat:no-repeat;
	background-position: 0 0;
	
   }
a#home:hover {
   background-position: -186px 0;
}
a .alt { display: none; }

/* Back to Portfolio button - with state managed for mouse over etc */
a#port {
	display: block;
	width: 189px;
	height: 37px;
	background-image: url("images/backtoportstate.jpg");
	background-repeat:no-repeat;
	background-position: -193px 0;
   }
a#port:hover {
   background-position:  0 0;
}

/* Normal hyperlink */
a {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
color:#99CCCC;
background: none;
border:none;
text-decoration:none;
}


/* If have a hyperlink with an img tag inside we don't want the border around it */
img.link{
	border:0;
}

/* Don't want dotted lina round Flash in Firefox - use this in conjunction with attributes.styleclass = “noOutline” */
.noOutline { outline:none; }


/*main centered block often of text - used to constrain width */

/* Top page block - allows us to have a grey window (defined in body) with a white page on it */
div.page{
	background-image: url("images/paper.jpg");
	z-index: 1;
	position:absolute;
	text-align: center;
	top:10px;
	width:830px;
	height:601px;
    left: 50%;
    margin-left: -415px;
}

div.pagelined{
	background-image: url("images/paperblack1.jpg");
	z-index: 1;
	position:absolute;
	text-align: center;
	top:10px;
	width:830px;
	height:601px;
    left: 50%;
    margin-left: -415px;
}

/* Equivalent of a HR
   Seem to need font-size to keep IE happy
*/
div.line
{
	background-color: silver;
	width: 780px;
	height: 2px;
	position:absolute;
	top:62px;
	left: 50%;
    margin-left: -390px;
	font-size:1px;
}

/* Main block on the page - with main content */
div.block
{
	background-color:#FFFFFF;
	z-index:1;
	position:absolute;
	text-align: center;
	top:15px;
	left: 50%;
    margin-left: -390px;
	margin-right: auto;
	width:780px;
	height:520px;
	text-align: left;
	font-size: 12px;
}

/* Footer Bar - with copyright etc 
   Could just have background-image - but maybe useful to have image and alts for search engine*/
div.footer
{
	background-color:#FFFFFF;
	z-index:5;
	position:absolute;
	top:565px;
	left: 50%;
	margin-left: -390px;
	width:760px;
	height:30px;
}

/* Often use a main block and a right bar
   E.g. main block contains text and the right block contains links etc*/
div.mainblock
{
	background-color:#FFFFFF;
	z-index:1;
	position:absolute;
	text-align: center;
	top:130px;
	left:0px;
	width:600px;
	height:400px;
	text-align: left;
	font-size: 12px;
}
div.rightbarblock
{
	background-color:#FFFFFF;
	z-index:2;
	position:absolute;
	text-align: center;
	top:130px;
	left:600px;    
	width:180px;
	height:400px;
	text-align: left;
	font-size: 12px;
}   
 
 
 
   
/* Use the bucket for elements that don't currently appear on the main page e.g. links and keywords*/
div.bucket {
 position:absolute;
 top:0px;
 left:-600px;
 width:400px;
}

/* Use the Footnotes for elements that appear below the main page */
div.footnotes {
 position:absolute;
 top:620px;
 width:830px;
 height:100px;
 left: 50%;
 margin-left: -412px;
}

div.portfolio {
	font-size:10px;
}
div.leftleftBlock {
	position:absolute;
	left: 0;
	font-size: 12px;
	width: 60px;
}
div.leftBlock {
	position:absolute;
	left: 60;
	font-size: 12px;
	width: 320px;
}
div.rightBlock {
	position:absolute;
	left: 400;
	font-size: 12px;
	width: 320px;
}
div.rightrightBlock {
	position:absolute;
	left: 730;
	font-size: 12px;
	width: 60px;
}


/*Used for data input forms - which i often do using tables as it is easy to format */
.formInput
{	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:left;
	vertical-align:text-top;  /* Useful for textarea */
}
