/* Style Sheet for version 4 browsers*/
/*defines style for main body of page including the background color and image*/
body {
	background-color: #FFFFFF;
	background-image: url(images/bgmain.jpg);
	background-repeat: repeat-x;
	margin: 100px 0px 0px;
	padding: 0px;
}
/*Provides the width of the left column in percentage so that it remains "fluid", 
also gives the background color and image*/
#leftcolumn {
	width: 20%;
	background-color: #0066FF;
	background-image: url(images/leftcolbg.jpg);
}
/*Provides the width of the side column in percentage so that it remains "fluid", 
also gives the background color and image*/
#sidecolumn {
	width: 20%;
	background-color: #FFCC99;
	background-image: url(images/rcolbg.jpg);
}
/*defines style for paragraphs, table cells and unordered lists*/
p, td, ul {
	font:	12px/1.5 Verdana, Arial, Helvetica, sans-serif;
}
/* Defines background color and width of the main content cell with a percentage to keep
it "fluid"*/
#maincontent {
	width: 60%;
}
/*Provided main content cell paragraphs with a small margin*/
#maincontent p {
	margin-left: 10px;
}
/* Provides style for headers in the main content cell*/
#maincontent h1 {
	margin-left: 10px;
}
/* Provides style for headers in the main content cell*/
#maincontent h2 {
	margin-left: 10px;
}
/* Provides style for headers in the main content cell*/
#maincontent h3 {
	margin-left: 10px;
}

/* Defines style for the side column paragraphs fonts (color and size)*/
#sidecolumn p {
	font-size: 11px;
	color: #0066FF;
	margin: 5px;
}
/*Defines background image and repeat patern for the page footer*/
#footer {
	background-image: url(images/footerbg.jpg);
	background-repeat: repeat-x;
	background-color: #FFFF66;
}
/*Defines style for the page footer paragraphs fonts (color and size)*/
#footer p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}

/* when applied to a paragraph gives it a different font style to the rest of the page
, can be used to highlight imprtant text on the page*/
p.tip {
	color: #0066FF;
	padding: 5px;
	font-size: 12px;
}
h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	color: #FF6600;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FF6600;
	font-style: italic;
}
h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #FF6600;
	font-style: italic;
}
h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	color: #FF6600;
	font-style: italic;
}
.ltcolinset {
	text-align: center;
	border: 10px double #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding: 10px;
	background-color: #FFCC99;
}
