@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too.css : 2005.06.28
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}
.hide
{
	display: none;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. The purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. To achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't want this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 5px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-bottom: 0;
}
.top {
	color:				#FFCC00; /* yellow text #FFCC00 */
	background:			#0033CC; /* blue background 0033CC */
	border-color:		#000000; /* black box border */
	border-style:		solid;
	border-width:		4px;
	margin:				1px 0 0 0;
	padding:			1px 0 0 0;
	border-collapse:	collapse;
}
.logo {
	margin: 0px 0 -4px 0;
	height: 110px;
	width: 140px;
}
h1	{
	font-family:		Georgia, "Times New Roman", Times, serif;
	font-weight:		bold;
	font-size:			300%; /* 45px */
	font-style:			italic;
	margin:				20px 0 0 0;
	padding:			0;
	text-align:			center;
	vertical-align:		center;
}
table {
	border-collapse:	collapse;
	width:				100%;
	margin:				0px;
	padding:			0px;
}
td {
	padding:			0;
	margin:				0;
}
td.subh1 {
	font-family:		Georgia, "Times New Roman", Times, serif;
	font-style:			italic;
	font-size:			150%; /* 22px */
	padding-right:		20px;
	padding-bottom:		10px;	
	text-align:			right;
	vertical-align:		bottom;
}
h2 {
  	color:				#FF0000; /* red */
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	font-weight:		bold;
	font-size:			150%;
	font-style:			normal;
	text-align:			center;
}
h3 {
	font-size:			100%; /* 15px */
	margin-top:			20px;
	padding:			0px;
	text-align: left;
	}
h4	{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}
.ruler {
	background-color:	#0033CC; /* blue ruler line to separate the headers and footers from the main body */
	height:				2px;
	width:				100%;
	padding:			0px;
	margin:				0px;
	margin-left:		auto;
	margin-right:		auto;
	border-width:		0px;
}

table.webring {
	background-color:	GRAY; /* GREY BACKGROUND */
	border-style:		solid;
	border-width:		2px;
	border-color:		red;
	border-collapse:	collapse;
	margin-left:		auto;
	margin-right:		auto;
	text-align:			center;
}



/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: none;
}
a:hover
{
	text-decoration: none;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 2px 1%;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 100.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}
#pageWrapper
{
	border-left:1px solid #000000; border-right:1px solid #000000; border-top:0px solid #000000; border-bottom:0px solid #000000; min-width: 45em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	border-left:0px solid #000000; border-right:0px solid #000000; border-top:0px solid #000000; border-bottom:0px solid #000000; padding:0; 
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. However you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 15em #FFF3D9;
	border-right: solid 15em #FFF3D9;
}
#innerColumnContainer
{
	/* compensate for the borders because of
				   100% width declaration */
	border-left:0px solid #fff; border-right:0px solid #fff; border-top:0px solid #fff; border-bottom:0px solid #fff; margin:0 -1px; width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}
#leftColumn
{
	float: left;
	margin: 0 0 0 -15em;
	width: 14em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 20em;
	margin: 0 -20em 0 1px;
	z-index: 2;
}
#footer
{
	border-left:0px solid #000000; border-right:0px solid ##000000; border-top:1px solid ##000000; border-bottom:1px solid ##000000; padding:0.5em; 
}

p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}
/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */

.vnav, .avnav
{
	margin: 0.5em 0; /*set spacing between navmenu buttons*/
	padding-top:	0px;
}
.vnav ul, .vnav ul li, .avnav ul, .avnav ul li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;
	align:	left;
}
.vnav ul, .avnav ul
{
	/*border-left:1px solid #fff; border-right:1px solid #fff; border-top:1px solid #fff; border-bottom:0px solid #fff; */
}
.vnav ul li, .avnav ul li
{
	/*border-bottom: solid 1px #fff;*/
}
.vnav ul li, .vnav ul li a, .avnav ul li, .avnav ul li a
{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
.vnav ul li a, .avnav ul li a
{
	display: block;
	padding: 1px 5px 3px 5px;
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover, .vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover
{
	text-decoration: none;
	cursor: pointer;
}
.vnav h3, .avnav h3
{
	margin-bottom: 0;
	padding-bottom: 1px;
	font-size: 126%;
}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .vnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}
* html .avnav ul li a/* hide from IE5.0/Win & IE5/Mac */
{
	height: 0.01%;
}
* html .avnav ul
{
	position: relative;	/* IE needs this to fix a rendering problem */
}
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .avnav ul, .avnav ul li, .vnav ul li
{
	border-color: #000000;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	
	background-color:	#FFF3D9;
	font-family:		Verdana, Georgia, "Times New Roman", Times, serif;
	margin:				0px;
	padding:			0px;
	text-align:			justify
}
#pageWrapper
{
	font-size: 100%; /* set your default font size here. */
}
#masthead
{
	background-color: #0033CC;
	color: #FFCC00;
}
#outerColumnContainer
{
	border-left-color: #FFF3D9;	/* left column background color */
	border-right-color: #FFF3D9;	/* right column background color */
}
.vnav ul li a:active, .vnav ul li a:visited, .vnav ul li a:link
{
	text-decoration: none;
	background-color: #0033CC;
	color: white;
	text-align:	center;
	border: 5px solid #0033CC;
	border-style: outset; 
}

.avnav ul li a:active, .avnav ul li a:visited, .avnav ul li a:link
{
	text-decoration: none;
	background-color: rgb(133, 215, 255);
	color: #000;
	text-align:	center;
	border: 5px solid rgb(133, 215, 255);
	border-style: outset; 
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #ded;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
	background-color: #ded;
	color: red;
}
.avnav ul li a:hover, #rightColumn .avnav ul li a:hover
{
	text-decoration: none;
	background-color: #ded;
	color: red;
}
#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. So, apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 95%;
	padding-top:		45px;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}
#leftColumn .inside
{
	/* if you apply a font size to just #leftColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. So, apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 95%;
	padding-top:		0px;
}
#leftColumn .inside .vnav
{
	font-size: 110%;
}
#leftColumn .inside .avnav
{
	font-size: 110%;
}

.licence {
	font-size:			90%;
	color:				#0033CC;
}
.smallpicture {
	height:				10em; /*135px*/ 
	width:				12.5em; /*180px*/ 
	border-width:		1px;
	border-style:		solid;
	border-color:		white;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
.portraitsmallpicture {
	width:				10em; /*135px*/ 
	height:				12.5em; /*180px*/ 
	border-width:		1px;
	border-style:		solid;
	border-color:		white;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.largepicture {
	padding:			30px 0 0 0;
	width:				448px;
	height:				336px;
}

.mediumpicture {
	padding:			30px 0 0 0;
	width:				320px;
	height:				240px;
	align:				centre;
}
.invisibleimage {
	display:			none;
}

.portraitmediumpicture {
	padding:			30px 0 0 0;
	width:				240px;
	height:				320px;
	align:				centre;
}

.portraitlargepicture {
	padding:			30px 0 0 0px;
	height:				448px;
	width:				336px;
	align:				center;
}

table.largepicturetable {
	padding-top:		20px;
	width:				450px;
	margin-left:		auto;
	margin-right:		auto;
}
table.portraitlargepicturetable {
	padding-top:		20px;
	width:				336px;
	margin-left:		auto;
	margin-right:		auto;
}

.hornav {
	font-weight:		normal;
	font-size:			130%;
	text-align:			center;
	padding:			0 0 10px 0;
	margin:				10px 0 40px 0;
}
.footer {
	font-weight:		bold;
	font-size:			80%;
	margin:				10px 0 20px 0;
	padding:			0 0 80px 0;

}
p.imagedescription {
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	padding:			0 0px 0 5px;
	margin:				1px 0 5px 0px;
	width:				90%;
	text-align:			justify;
	font-weight:		normal;
}
#features_list {
	background-color:	#facd8a;
	font-size: 			0.9em;
	font-family:		Verdana, Georgia, "Times New Roman", Times, serif;
	text-align:			left;
}

/* Main Selectors */
/* Thumbnail Index */
#index {
	align: center;
	padding: 40px 10px 40px 0px;
	width: 70%;
}
div#index table {
	background-color: #000000;
	color:	white;
	align: right;
}

div#index td.thumbcell, div#index td.portraitthumbcell {
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-color: red;
	border-width: 1px;
	vertical-align: middle;
	padding: 20px 20px 5px 20px;
	width: 15%;
}
/*div#index td.portraitthumbcell {
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-color: red;
	border-width: 1px;
	vertical-align: middle;
	padding: 10px 20px 10px 20px;
	width: 15%;
}*/

div#index td.thumbcell img{
	border-style: solid;
	border-width: 1px;
	border-color:	white;
	height: 135px;
	width: 180px;
}
div#index td.portraitthumbcell img {
	border-style: solid;
	border-width: 1px;
	border-color:	white;
	height: 180px;
	width: 145px;
	margin-left: 20px;
}

/* Photograph Caption */
.caption {
	font-family: tahoma, arial, helvetica, sans-serif;
	font-size: 0.8em;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	padding: 0 20px 10px 20px;
	border-top-style: none;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-color: red;
	border-width: 1px;
}

/* Right column of images */
div#rightphotocolumn {
	align:	right;
	padding: 20px 0px 40px 0px;
	width: 18em;
	margin: 0;
}
div#rightphotocolumn table {
	background-color: #000000;
	align: right;
	color:	white;
	width: 80%;
}

div#rightphotocolumn td.rightcolumnpicture {
	border-style: solid;
	border-color: red;
	border-width: 1px;
	text-align: center;
	vertical-align: middle;
	padding: 10px 0 0 0;
	margin: 0 0 0 0px;
}

div#rightphotocolumn td.rightcolumnpicture img {
	border-style: solid;
	border-width: 1px;
	border-color:	white;
	text-align: center;
}
p.rightcolumnpicturedescription {
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	padding:			0;
	margin-top:			10px;
	margin-bottom:		10px;
	margin-left:		auto;
	margin-right:		auto;
	width:				12.5em;
	text-align:			justify;
	font-weight:		normal;
}

/* Left column of images */
div#picture {
	padding-top: 		40px;
	align:				center;
}
div#picture table {
	border-style: 		solid;
	border-color: 		red;
	border-width: 		1px;
	background-color: 	#000000;
	align: 				right;
	color:				white;
	width: 				80%;
	text-align:			justify;
}
div#picture img {
	border-style: solid;
	border-width: 1px;
	border-color:	white;
	margin-left: 0.45em;
	margin-right: 0.45em;
	margin-top: 10px;
}

.picturedescription {
	font-family:		Arial, Verdana, Georgia, "Times New Roman", Times, serif;
	text-align:			justify;
	font-weight:		normal;
	font-size:			90%;
	padding-top:		10px;
	padding-bottom:		15px;
	width:				100%;
	padding-top:		10px;
	padding-left: 		0.5em;
	padding-right: 		0.5em;
}
.together {
	white-space:		nowrap;
}
div#backnav {
	padding: 			20px 0 30px 0;

}
div#backnav a {
	text-decoration:	underline;
}	


/******************************************************************************/