@charset "UTF-8";
/* CSS Document */
body{
	font-family:Verdana, Geneva, sans-serif;
	font-size:11px;
	font-weight:400;
	background: #999 url(photography/gradient.jpg);
    background-repeat:repeat-x;	height:500px;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
h1{
	font-size:16px;
	font-weight:400;
	color:#09f;
}
h2{
	font-size:15px;
	font-weight:400;
	color:#909;
}
h3{
	font-size:14px;
	font-weight:400;
	color:#fff;
}
h4{
	font-size:11px;
	font-weight:400;
	color:#ccc;
	font-style: italic;
}
.art #container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.art #header { 
	padding:15px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	color: #09f;
} 
.art #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 100px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding:15px;
	vertical-align:top;
}
.art #mainContent { 
	vertical-align:top;
	margin: 0 0 0 130px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 15px;/* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.art #footer { 
	padding:15px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color: #ccc;
	text-align:center;
} 
.artist{
	font-size:36px;
	color:#09f;
	font-weight:400;
}
.digital-art{
	color:#fff;
	font-weight:400;
	text-decoration:none;
}
.digital-art:hover{
	color:#000;
	font-weight:400;
	text-decoration:underline;
}
.paintings{
	color:#666;
	font-weight:400;
	text-decoration:underline;
}
.paintings:hover{
	color:#09f;
	font-weight:400;
	text-decoration:underline;
}
.photography{
	color:#666;
	font-weight:400;
	text-decoration:underline;
	padding-left:15px;
	padding-right:15px;
}
.photography:hover{
	color:#09f;
	font-weight:400;
	text-decoration:underline;
}
#thumbBox{ /*Outermost DIV for thumbnail viewer*/
position: absolute;
left: 0;
top: 0;
width: auto;
padding: 3px;
padding-bottom: 0;
background: #333;
visibility: hidden;
z-index: 10;
cursor: hand;
cursor: pointer;
}

#thumbBox .footerbar{ /*Footer DIV of thumbbox that contains "close" link */
font: bold 16px Tahoma;
letter-spacing: 5px;
line-height: 1.1em;
color: white;
padding: 5px 0;
text-align: right;
}


#thumbBox #thumbImage{ /*DIV within thumbbox that holds the enlarged image */
background-color: white;
}

#thumbLoading{ /*DIV for showing "loading" status while thumbbox is being generated*/
position: absolute;
visibility: hidden;
border: 1px solid black;
background-color: #000000;
padding: 5px;
z-index: 5;
}
