/*
	Copyright (c) 2004, Pikesley.org
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions are met:

 * Redistributions of source code must retain the above copyright notice, this
 list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice,
 this list of conditions and the following disclaimer in the documentation
 and/or other materials provided with the distribution.
 * Neither the name of Pikesley.org nor the names of its contributors may be
 used to endorse or promote products derived from this software without
 specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

 $Author: sam $
 */

/*
	The stylesheet, wherein we can change the look of the page. Simple styling
	can be achieved by setting either '$bgcolor' or '$fgcolor' in 'config.inc'.
	If either of these are set, some style elements are activated in 'index.php';
	the sections which are overridden are marked in the comments which follow...
	*/

/*
	main body of the page
	*/
body
{
background-color: #bac6ba; /* overridden if $bgcolor or $fgcolor are set */
color: #262f25; /* overridden if $bgcolor or $fgcolor are set */
margin: 20px;	
border: 0px;
padding: 0px;
font-family: Arial, Helvetica, Verdana, sans-serif;
text-transform: lowercase;
}

/*
	the main title
	*/
h1
{
margin: 0px;
padding: 10px;
border: 0px;
text-align: left;
font-size: 200%;
letter-spacing: -2px;
}

/*
	headings in the left-hand column
	*/
h2
{
margin: 0px;
padding: 5px;
border: 0px;
text-align: right;
font-size: 150%;
letter-spacing: -1px;
}

/*
	non-link text in the left column
	*/
h3
{
margin: 0px;
padding: 5px;
border: 0px;
text-align: right;
font-size: 80%;
}

/*
	'previous' and 'next' text
	*/
h4
{
font-size: 80%;
}

/*
	captions
	*/
h5
{
	text-align: right;
	font-size: 90%;
padding: 5px;
margin: 0px;
}

/*
	footer text
	*/
h6
{
font-size: 70%;
padding-top: 10px;
}

/*
	list of links in left-hand column
	*/
ul
{
list-style: none;
padding: 0px;
margin: 0px;
padding-bottom: 10px;
text-align: right;
}

/*
	links in left-hand column
	*/
li
{
padding: 0px;
}

/*
	regular text
	*/
p
{
margin: 5px;
text-transform: none;
text-align: justify;
font-size: 80%;
}

/*
	main layout; also thumb bar
	*/
table
{
border: 0px;
margin: 0px;
padding: 0px;
}

/*
	images
	*/
img
{
border: 0px;
margin: 0px;
padding: 0px;
text-align: center;
}

/*
	generic table cell
	*/
td
{
padding: 0px;
margin: 0px;
border-color: #262f25; /* overridden if $bgcolor or $fgcolor are set */
border: 2px;
border-style: solid;
}

/*
	thumbnail
	*/
td.thumb
{
padding: 0px;
margin: 0px;
border: 0px;
}

/*
	link
	*/
a
{
text-decoration: none;
font-weight: bold;
background-color: transparent;
margin: 0px;
border: 0px;
padding: 2px;
color: #262f25; /* overridden if $bgcolor or $fgcolor are set */
}

/*
	link on mouseover
	*/
a:hover
{
background-color: #262f25; /* overridden if $bgcolor or $fgcolor are set */
color: #bac6ba; /* overridden if $bgcolor or $fgcolor are set */
}

/*
	selected link
	*/
a:active
{
}

/*
	these are the 'album' links
	*/
a.list
{
padding-right: 5px;
padding-left: 5px;
border-style: solid;
}

/*
	thumbnails
	*/
a.image
{
border: 0px;
padding: 0px;
margin: 0px;
background-color: transparent;
color: #ffffff;
}

/*
	thumbnails on mouseover
	*/
a:hover.image
{
border: 0px;
padding: 0px;
margin: 0px;
background-color: transparent;
color: #000000;
}

/*
	top left corner table cell
	*/
.topleft
{
border-left: 0px;
border-top: 0px;
}

/*
	where the title goes
	*/
.topright
{
border-right: 0px;
border-top: 0px;
}

/*
	where the 'album' links are
	*/
.left
{
	border-left: 0px;
}

/*
	where the main image goes
	*/
.right
{
border-right: 0px;
}

/*
	where the thumbs go
	*/
.bottom
{
border-left: 0px;
border-right: 0px;
}

/*
	where the footer goes
	*/
.foot
{
border-left: 0px;
border-right: 0px;
border-bottom: 0px;
}

