@charset  "UTF-8";
/* CSS Document */


/*STRUCTURE*/
body  {
	background: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #ffffff;
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
}
div#container  {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 0; /* the auto margins (in conjunction with a width) center the page (I have removed this so that it aligns left*/
	border: 0px solid #000000;
	text-align: left;
	height: 950px;
} 
div#heading{
	background: #000000;
	width: 567px;
	position: absolute;
	left: 380px;
	top: 39px;
	height: 31px;
} 
/*don't really understand this bit about #header tags but it works OK, so best to leave it*/
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

div#header {  /*for the logo image*/
	background: #000000;
	padding: 20px 0px 0 5px;
	width: 330px;
	height: 50px;
} 

div#tagline  { /*for R Macdonald's quote, not on every page*/
	background: #000000;
	padding: 0 10px 0 10px;
	height: 35px;
	font-size: 12px;
	color: #CC9933;
	position: absolute;
	top: 72px;
	text-align: justify;
	width: 800px;
}
.Gill12gold {
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 10px;
	color: #996633;
	text-decoration: none;
}
div#spry {  /*for the drop down menus in Works*/
	background: #000000;
	height: 30px;
	width: 880px;
	padding-left: 160px;
}


.twoColFixLtHdr #sidebar1 {
	/* since this element is floated, a width must be given */
	width: 240px;
	border: 0px;
	height: auto;
	position: absolute;
	top: 109px;
}

div#mainContent  {
	position: relative;
	left: 240px;
	width: 750px;
	height: 880px;
	top: 37px;
	overflow: visible;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
} 
div#mainContentGrey  {
	position: relative;
	left: 240px;
	width: 700px;
	height: 840px;
	top: 37px;
	background: #eeeeee;
	overflow: auto;
	color: #000000;
	padding-left: 10px;
	padding-top: 10px;
	text-align: center;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
} 

div#lowerContent  {
	/* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position: relative;
	left: 80px;
	width: 700px;
	height: 500px;
	top: 180px;
} 
div#botttomContent  {
	/* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position: absolute;
	left: 240px;
	width: 600px;
	height: 500px;
	top: 413px;
	z-index: 0;
} 
div#player {
	margin-left: 240px;
}
div#something{ /*What is this? text area for everything except Works and Slideshows, with a light grey background BUT NOT SCROLLING*/
	width: 540px;
	font-family: Gill Sans, Arial, Helvetica;
	color: #000000;
	text-align: justify;
	margin: 0 0 0 240px;
	left: 0px;
	height: 713px;
	background: #cccccc;
	padding-left: 10px;
	padding-bottom: 10px;
	padding-right: 10px;
	padding-top: 0px;
	font-size: 12px;
	overflow: hidden;
	position: absolute;
	top: 109px;
}
div#textscroll{ /*text area for everything except Works and Slideshows, with a light grey background  PLUS scrollbar*/
	width: 540px;
	font-family: Gill Sans, Arial, Helvetica;
	color: #000000;
	text-align: justify; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position: relative;
	height: 620px;
	background: #cccccc;
	padding-bottom: 10px;
	padding-right: 10px;
	font-size: 12px;
	list-style-type: none;
	top: 37px;
	visibility: visible;
	left: 242px;
	padding-left: 10px;
	padding-top: 10px;
	overflow: scroll;
	}
div#textnoscroll{ /*text area for everything except Works and Slideshows, with a light grey background  PLUS scrollbar*/
	width: 540px;
	font-family: Gill Sans, Arial, Helvetica;
	color: #000000;
	text-align: justify; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position: relative;
	height: 620px;
	background: #cccccc;
	padding-bottom: 10px;
	padding-right: 10px;
	font-size: 12px;
	list-style-type: none;
	top: 37px;
	left: 241px;
	padding-left: 10px;
	padding-top: 10px;
	}
div#extratext{
	width: 540px;
	font-family:  Gill Sans, Arial, Helvetica;
	color: #FFFFFF;
	text-align: justify;
	margin: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position: absolute;
	left: 0px;
	height: 30px;
	}

.p {
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	line-height: normal;
	color: #000000;
	text-decoration: none;
}


div#caption {
	background-color: #000000;
	width: 560px;
	height: 20px;
	color: #FFFFFF;
	padding-top: 10px;
	margin-left: 0px;
}
div#symbol {
	font-family: "Gill Sans", Tahoma, Arial, sans-serif;
	text-decoration: none;
	top: 41px;
	left: 342px;
	width: 35px;
	position: absolute;
}

/*NAVIGATION*/
/*NAVIGATION LINKS - MUST INCLUDE outline: 0px TO AVOID DOTTED LINE AROUND LINKS IN FIREFOX*/
.navigation{
font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #000000;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/

} a img  { /*use this bit for images to stop them having a dotted border in Firefox*/
	display: block;
	border: 0px;
	
}

.navigation:hover{
font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #FF0000;
	text-decoration: none;
	background-color: #000000;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
}
.navigationgrey{
font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #cccccc;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
}
.navigationlightgrey{
font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #999999;
	text-decoration: none;
	background-color: #eee;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
}
.navigationlightgrey:hover{
font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #FF0000;
	text-decoration: none;
	background-color: #eee;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
	}
.navigationgrey: visited{
font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #333333;
	text-decoration: none;
	background-color: #cccccc;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
}
.navigationgrey:hover{
font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #FF0000;
	text-decoration: none;
	background-color: #cccccc;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
}
.navigationpale{
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #666666;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
}

.navigationpale:visited{
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #333333;
	text-decoration: none;
	background-color: #666666;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
}
.navigationpale:hover{
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #FF0000;
	text-decoration: none;
	background-color: #666666;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
}
.navigationdark{
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #FFFFFF;
	text-decoration: none;
	background-color: #333333;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
}
.navigationdark:visited{
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #999999;
	text-decoration: none;
	background-color: #333333;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
}
.navigationdark:hover{
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #FF0000;
	text-decoration: none;
	background-color: #333333;
	height: 80px;
	width: 80px;
	/*outline: 0px;  must use outline: 0px to remove dotted seletion line around links in Firefox*/
}
/* End of Navigation*/


.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.Gill_12red {
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	color: #FF0000;
	text-decoration: none;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 10px;
	line-height: 0px;
}
.para {
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #000000;
	text-decoration: none;
	background-color: #EEE;
}
.gill12black {
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
}
.gill12white {
	font-family: Gill Sans Light, Arial, Helvetica;
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
.red18 {
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 18px;
	color: #FF0000;
	text-decoration: none;
}
.author{
	font-size: 10px;
	font-variant: small-caps;
	}.workstitle {
	font-size: 18px;
	color: #FF0000;
	font: goudy old style;
	left: 350px;
	position: absolute;
	top: 39px;
	height: 25px;
	width: 587px;
}
.star-red16 capital D {
	font-size: 16px;
	font: Monotype Sorts;
}
a.img:visited{
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}
.clive {
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	color: #000000;
	text-decoration: none;
	text-align: justify;
}
.alternate1 {
}
.style6 {
	font-family: Gill Sans, Arial, Helvetica;
	font-size: 12px;
	font-style: normal;
	font-weight: lighter;
	color: #FFFFFF;
	text-decoration: none;
}
.fixedmid {
	background-color: #CCCCCC;
	height: 640px;
	width: 640px;
	left: 240px;
	top: 105px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
