
/* Some browser compatibility notes (primarily for my own benefit):

  color specifications:
	Although colors may be shortened to 3 digits (e.g. #321 for #332211),
	Safari does the right thing, #abc -> #aabbcc
	IE5/Mac does the wrong thing, sometimes #abc -> #abc000, someimes ->#a0b0c0
	As of December 2006: I am no longer supporting IE/Mac
	
  background-color:
  	* use 'background' instead of 'background-color'
  	* in most cases set color at the same time, to avoid conflicts
  	    with users who set their own default styles.
  	    
  font-size:
    * use relative sizes (e.g. 120%) instead of absolutes (e.g. 10pt) to allow
    	users to increase/reduce font styles (at least to a certain extent).
*/	

/*
			Daniel A. Wright
			Fine Art Photography
*/
body {
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 80%;
	padding: 0px;
	margin: 0 auto 0 auto;
}

p, td, li { 
	font-family: Verdana, Helvetica, sans-serif;
	color: #aaaaaa;
	color: #111;
}

h1, h2, h3 {
	color: #ffffcc;
}

h2 {
	font-size: 180%;
}

.warning {
	color: red;
	padding: 0px;
}

a:link, a:visited, a:active { 
	color: #ff0000; 
	text-decoration: none;
	border-bottom: 1px dotted #ff0000;
}

a:hover {
		color:#ffffcc;
		border-bottom: 1px dotted #ffffcc;
}

a img {
	border: none;
}

a.img:link, a.img:visited, a.img:active {
	border-bottom: 0px;
	color: black;
}

table {
	background: #111;
}

div#main {
	background: url(/images/photo-back.png) repeat-x repeat-y #ccc;
	padding: 0px;
	
/*	margin: 0.15in auto 0.15in auto; */
	margin-top: 0.15in;
	margin-left: 0.20in;
	margin-bottom: 0.15in;
	margin-right: 0.15in;
	width: 10in;
}

div.main {
	margin-left: 0.85in; /* 0.85 = 0.15 (div#main:left) + 0.75 (ul#navigation: left + width) */
	margin-top: 0.5in;
}

small {
	color: #bbbbbb;
	font-size: 8pt;
}

.here
{
	color: #7777ff;
	font-weight: bold;
}


ul#navigation  {
	list-style-type: none;
	float: left;
	line-height: 15pt;
	width: 80px;
	height: 600px;
	text-align: right;
	padding-top: 30px;
	padding-left: 10px;
	padding-right: 10px;

	background: #111;
	/*border-right: 3px double #333;*/
	margin: 0px;
}

#primary > div {
	float: left;
}

div.middle {
	margin-left: auto;
	margin-right: auto;
	width: 600px;
	float: none !important;
}

div.form {
	margin: 1em 1em 1em 1em;
	float: left;
}

div.middle > div.form#register {
	padding-left: 2em;
	border-left: 1px solid #777;
}

p#navhistory {
	font-size: 8pt;
	margin-left: 10px;
	color: #ddddaa;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-box-shadow: rgba(0,0,0,0.25) 1px 1px 3px;
	-moz-box-shadow: rgba(0,0,0,0.25) 1px 1px 3px;
}

div#footer {
	clear: both;
}

div#fineprint {
	position: absolute;
	left: 7.55in;
	top: 0.15in;
}

#fineprint, #footer {
	font-size: 7pt;
	color: #777777;
	line-height: 95%;
	text-align: center;
	background: #111111;
	padding: 5px;
	z-index: 40;
}

#copyright {
	font-weight: bold;
}

#fineprint a:link, #fineprint a:visited, #footer a:link, #footer a:visited {
	color: #aa6666;
	border: none;
}

#fineprint a:hover, #footer a:hover {
	border-bottom: 1px dotted #aa6666;
}

#fineprint #kudos, #footer #kudos {
	text-align: left;
	padding-left: 1in;
	background: #222222;
	padding-top: 3px;
	/*border: 1px dotted #999999; */
}

td.price {
	text-align: right;
}

/* img shadows
	kudos: Jeff Harrel, theshapeofdays.com */
div.shadow {
	padding: 0 1px;
	/*background: #ccc; */
	background: #888; /*888*/
	border-left: 1px solid #a8a8a8; /*#eaeaea;*/
	border-right: 1px solid #a8a8a8; /*#eaeaea;*/
	position: relative;
}

img.shadow {
	padding: 5px 5px 9px 5px;
}

div.shadow img {
	background: white url(/images/shad_bottom_silver.png) repeat-x bottom left;
}

div.shadow div.topleft {
	width: 2px;
	height: 4px;
	background: url(/images/shad_tlcorner_silver.png) no-repeat top left;
	position: absolute;
	top: 0px;
	left: -1px;
}

div.shadow div.topright {
	width: 2px;
	height: 4px;
	background: url(/images/shad_trcorner_silver.png) no-repeat top right;
	position: absolute;
	top: 0px;
	right: -1px;
}

div.shadow div.bottomleft {
	width: 4px;
	height: 4px;
	background: url(/images/shad_blcorner_silver.png) no-repeat bottom left;
	position: absolute;
	bottom: 0px;
	left: -1px;
}

div.shadow div.bottomright {
	width: 4px;
	height: 4px;
	background: url(/images/shad_brcorner_silver.png) no-repeat bottom right;
	position: absolute;
	bottom: 0px;
	right: -1px;
}

p.error {
	color: #770000;
	background: #ffeeee;
	padding: 4px;
	border: 1px solid #770000;
}

p.error a {
	font-weight: bold;
}

p.success {
	color: #007700;
	background: #eeffee;
	padding: 4px;
	border: 1px solid #007700;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}