﻿/* undohtml.css */
/* (CC) 2004 Tantek Celik. Some Rights Reserved.             */
/*   http://creativecommons.org/licenses/by/2.0                   */
/* This style sheet is licensed under a Creative Commons License. */
/* Purpose: undo some of the default styling of common (X)HTML browsers */
/* link underlines tend to make hypertext less readable, 
   because underlines obscure the shapes of the lower halves of words */
:link, :visited {
	text-decoration: none;
}
/* no list-markers by default, since lists are used more often for semantics */
ul, ol {
	list-style: none;
}
/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h1, h2, h3, h4, h5, h6, pre, code {
	font-size: 1em;
}
/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with 
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, input {
	margin: 0;
	padding: 0;
}
/* whoever thought blue linked image borders were a good idea? */
a img, :link img, :visited img {
	border: none;
}
/* de-italicize address */
address {
	font-style: normal;
}
/* more varnish stripping as necessary... */
html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: "Futura Lt BT", Arial, Helvetica, sans-serif;
	font-size: medium;
	font-weight: lighter;
	text-decoration: none;
	background-image: url('../../images/sky.jpg');
	background-attachment: fixed;
}
p {
	font-size: 100%;
	color: #990000;
	width: 50%;
	margin: auto;
}
h1 {
	font-size: 200%;
	font-weight: normal;
	color: #339;
	text-shadow: 4px 2px 7px #895252;
}
h2 {
	font-size: 150%;
	color: #333333;
}
h3 {
	font-size: 110%;
	color: #333333;
}
h4 {
	font-size: 75%;
	font-weight: lighter;
	color: #333333;
}
h5 {
	font-size: 65%;
	color: #333333;
}
h6 {
	font-size: 70%;
	color: #333333;
}
.oblique {
	font-style: oblique;
	font-family: "Futura Std Book";
	color: #0000FF;
	font-size: 110%;
}
.artistNames {
	color: #333333;
}
p {
	font-size: 95%;
	color: #333333;
}
a img {
	border: none !important;
	display: block;
}
#background {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
}
#scroller {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: auto;
	z-index: 2;
}
#content {
	padding: 5px 300px 20px 200px;
}
p {
	line-height: 1.8em;
	letter-spacing: 0.1em;
	text-align: left;
}
#fixed {
	position: absolute;
	top: 25px;
	left: 10px;
	width: 150px;
	z-index: 10;
	color: #567;
	border: 1px solid #000;
	padding: 10px;
}
a:link {
	color: #fff;
	-webkit-transition: color 1s ease-in-out;
	-moz-transition: color 1s ease-in-out;
	-o-transition: color 1s ease-in-out;
	transition: color 1s ease-in-out;
	text-decoration: none;
	text-shadow: 1px 2px 4px rgba(33, 33, 33, 1);
	letter-spacing: 2px;
}
a:visited {
	color: #fff;
	text-decoration: none;
	text-shadow: 1px 2px 4px rgba(33, 33, 33, 1);
}
a:hover {
	text-decoration: none;
	color: rgba(127, 255, 212, 1);
	-webkit-transition-property: color, background;
	-webkit-transition-duration: 0.75s, 0.75s;
	-webkit-transition-timing-function: linear, ease-in-out;
	text-shadow: 0px 0px 9px rgba(255, 255, 255, 1);
	letter-spacing: 2px;
	position: relative;
	z-index: 1000;
}
a:active, focus {
	color: yellow;
	text-shadow: 0px 0px 2px rgba(255, 255, 255, 1), 0px 0px 4px rgba(255, 255, 255, 1), 0px 0px 8px rgba(255, 255, 255, 1);
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.1);
}
table {
	width: 55%;
	margin: auto;
}
.AlignRight {
	text-align: right;
}
td {
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
#bannerSelectedArt {
	right: 5%;
	position: fixed;
}
