<!-- sets the margin and padding for the body of the page -->
body {margin: 10px; padding:0px}

<!-- sets the heading color to black, font size to twice users default size and font type too-->
h1 {color: black;}
h1 {font:bold 2.8em Tempus Sans ITC, sans-serif;}

<!-- subtitle attributes -->
h2 {color:black;}
h2 {font:1.5em Verdana, Lucida Sans, sans-serif; padding:5px;}

<!-- sets date font attributes -->
h3 {color: black; font:bold 1em Lucida Sans, Verdana, sans-serif; }
h3 {margin: 10px}



/* sets any paragraph of text */
/* to a certain font and font size of users default text size */
p {font:1em Verdana, Lucida Sans, sans-serif; }
p.med {font:0.8em Verdana, Lucida Sans, sans-serif; }
p.medpad {font:0.8em Verdana, Lucida Sans, sans-serif; padding:5px;}
p.medBold {font:bold 0.8em Verdana, Lucida Sans, sans-serif;}
p.medPadBold {font:bold 0.8em Verdana, Lucida Sans, sans-serif; padding:5px;}

p.small {font:0.6em Verdana, Lucida Sans, sans-serif;}
p.links {font:1em Verdana, Lucida Sans, sans-serif; padding:10px;}
p.intro {font:0.8em Verdana, Lucida Sans, sans-serif; padding:10px}

p.large {font:1.2em Verdana, Lucida Sans, sans-serif;}

/* sets any action ie link to a certain font and font size of users default text size*/
a {font:bold 1em Lucida Sans, Verdana, sans-serif; }

<!-- puts a margin around all images of 10 pixels -->
img {margin: 10px; } 



/* makes links work in certain ways */
a:link {text-decoration: none;}
a:visited {text-decoration: none; }
a:hover {color: red } <!--mouse hovering on link=red -->
a:active {text-decoration: none;} 


/*sets a list to a certain font like the programme in courses pages*/
ul.prog {font:0.8em Verdana, Lucida Sans, sans-serif;}

/*sets a list to a certain font like the webcam links on conds page*/
ul.cam {font:0.6em Verdana, Lucida Sans, sans-serif;}



/*lightbox Styles*/
#lightbox{
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
	}

#lightbox a img{ border: none; }

#outerImageContainer{
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	}

#imageContainer{
	padding: 5px;
	}

#loading{
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
	}
#hoverNav{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
	}
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{
	width: 49%;
	height: 100%;
	background: transparent url(gallery/images/blank.gif) no-repeat; /* Trick IE into showing hover */
	display: block;
	}
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(gallery/images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(gallery/images/nextlabel.gif) right 15% no-repeat; }


#imageDataContainer{
	font: 10px Verdana, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	overflow: auto;
	width: 100%	
	}

#imageData{	padding: 20px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em;	}	
		
#overlay{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
	background-color: #000;
	}