/* The GoD Page is broken into 4 main cells */
/* A cell across the top of the page, "topbar" */
/* A cell down the left side of the page, "leftbar" */
/* A cell across the bottom of the page, "bottombar" */
/* A cell in the middle of the page, "main" */

/* The "main" style is applied to the main table cell of the page, ie where all the information goes */
/* It makes the background of the cell grey */
.main	{background-color: #333333;}

/* The "main td" style formats all table cells that are within the table cell that is formatted as "main" */
/* It makes the background of the cells black */
/* It makes a 2 pixel gap round the inside of the cells */
.main td	{background-color: #333333;
	padding: 2px;}

/* The "leftbar" style is applied to the left cell of the page where the navigation menu is */
/* It makes the background of the cell black */
/* It makes the width of the cell 125 pixels */
.leftbar	{background-color: black;
	width: 125px;}

/* The "topbar" style is applied to the top cell of the page where the GoD logo & page title is */
/* It makes the cell background black */
.topbar	{background-color: black;}

/* The "bottombar" style is applied to the cell at the bottom of the page where the extra navigation buttons are */
/* It makes the cell background black */
.bottombar	{background-color: black;}

/* The "body" style defines the standard body tag */
/* It makes the font arial */
/* It makes the font colour white */
/* It makes the cel  background colour white */
body 	{font-family: Arial;
	color: white;
	background-color: white;}

/* The "h1" style defines the standard h1 tag */
/* It makes it left aligned */
/* It makes the font colour white */
h1 	{text-align: left;
	color: #c0c0c0;}

/* The "h2" style defines the standard h2 tag */
/* It makes it left aligned */
/* It makes the font colour white */
h2 	{text-align: left;
	color: white;}

/* The "h3" style defines the standard h3 tag */
/* It makes the font colour white */
h3	{color: white;}

/* The "h1.contents" style defines a special h3 tag style, used for the Contents text at bottom of the page */
/* It makes the font colour white */
h3.contents
	{color: #c0c0c0;}

/* The "h4" style defines the standard h4 tag */
/* It makes the font colour white */
h4 	{color: white;}

/* The "h5" style defines the standard h5 tag */
/* It makes the font colour white */
h5 	{color: white;}

/* The "p" style defines the standard p tag */
/* It makes the font arial */
p 	{font-family: Arial;}

/* The "a:link" style defines the hyperlink visual settings */
/* It makes hyperlinks white */
/* It makes hyperlinks bold */
a:link 	{color: white;
	font-weight: bold;}

/* The "a:hover" style defines the hyperlink visual settings */
/* It makes hyperlinks yellow when you hover the mouse over them */
/* It makes hyperlinks bold when you hover the mouse over them */
a:hover	{color: yellow;
	font-weight: bold;}

/* The "a:visited" style defines the hyperlink visual settings */
/* It makes hyperlinks white when you have visited them */
/* It makes hyperlinks bold when you have visited them */
a:visited 	{color: white;
	font-weight: bold;}

/* The "a:active" style defines the hyperlink visual settings */
/* It makes hyperlinks yellow when you click them */
/* It makes hyperlinks bold when you click them */
a:active 	{color: yellow;
	font-weight: bold;}

/* The "hr" style defines the standard horizontal rule */
/* It makes the colour white */
hr 	{color: white;}