@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;
}
.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}
.thumbnail img{
border: 2px solid white;
margin: 0 5px 5px 0;
}
.thumbnail:hover{
background-color: transparent;
}
.thumbnail:hover img{
border: 2px solid black;
}
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 0px;
left: -1000px;
visibility: hidden;
color: black;
text-decoration: none;
}
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;
}
.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 490px; /*position where enlarged image should offset horizontally */
z-index: 50;
}
.text-center {
  text-align: center;
}

#countdown {
  margin-top: 100px;
  font-size: 50px;
  color: #1E8AEB;
  font-style: normal;
  font-variant: normal;
}