@charset "UTF-8";
/* CSS Document */

body {
	font-family: Helvetica, sans-serif;
	font-size: 12px;
	background: #FFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding-top: 10px;
	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 */
	color: #000000;
}
.oneColFixCtr #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtr #mainContent {
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 800px;
}

#content {
width: 800px;
margin-left: 0px;
}

nav {
word-spacing:120px;
font-size:14px;
line-height: 80px;
color: #666;
}

.block {
display:block;
width:500px;
height:500px;
float:right;
}

.img {
display: block;
margin: 5px;
}

.image {
float: right;
}

.caption {
float:left;
width: 300px;
height: 120px;
}

.pagination {
font-size:11px;
color: #666666;
float: left;
width: 270px;
margin-right: 2px;
}


.artist {
text-transform: uppercase;
font-weight: bold;
margin-bottom: 10px;
}

a:active, a:visited, a:link {
color: #000;
text-decoration:none;
text-transform: uppercase;
font-weight: bold;
}

a:hover {
color: #000;
text-decoration: underline;
text-transform: uppercase;
font-weight: bold;
}

a.pagination, a.pagination:link, a.pagination:visited {
	color: #000;
	text-decoration:none;
	font-weight: bolder;
	}
	
a.pagination:hover {
	color: #000;
	text-decoration: underline;
	font-weight: bolder;
	}
	

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.title {
text-transform: uppercase;
font-weight: bold;
font-size:24px;
margin-bottom: 10px;
}