/* general */

html {
	overflow-y: auto;
}

body {
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	background-color: #FFF;
}

.subpage {
	margin-top: 10px;
}

/* layout */

.mainwrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	
	/* This enables horizontal scrolling in Mozilla and IE, 
	but cause the horizontal scrollbar to overlap content, 
	including the bottom of the vertical scrollbars. Works
	perfectly in Safari without these 2 lines */
	
	overflow-y: hidden;
	overflow-x: auto; /* necessary for IE */
}

.secondwrapper
{
	position: absolute;
	width: 100%;
	height: 100%;
	min-width: 970px;
}

.column1 {
	width: 475px;
	/* height: 100%; /* height set in JS */
	position: relative;
	overflow: auto;
	overflow-x: hidden;
	overflow-y: auto;
	float: left;
}

.column2 {
	width: 475px;
	/* height: 100%; /* height set in JS */
	position: relative;
	overflow: auto;
	overflow-x: hidden;
	overflow-y: auto;
	float: right;
}

.nav_col {
	margin: 0px;
	padding: 0px;
	width: 106px;
	height: 100%;
	position: fixed;
	background-color: #FFF;
	z-index: 2;
	top: 0px;
	left: 10px;
}


.nav {
	width: 106px;
	position: fixed;
	background-color: #FFF;
	z-index: 3;
	top: 160px;
	left: 10px;
}

.caption {
	width: 106px;
	position: relative;
	float: left;
	left: 10px;
}

.content {
	margin-left: 116px;
	width: 339px;
	max-width: 339px;
	min-width: 223px;
	position: absolute;
}

.piece {
	margin-left: 116px;
	width: 339px;
	position: relative;
	background-color: #FFF;
}

.title {
	margin-left: 116px;
	width: 339px;
	height: 150px;
	position:relative;
	background-color: #FFF;
}

form {
	margin-bottom: 15px;
}

.thumbnail { 
	float: left;
	margin-right: 10px;
}


/* text formatting */

.menu {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 21px;
}

.menu2 {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 21px;
	color: #F00;
}


.body {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 21px;
}

.body2 {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 21px;
	color: #F00;
}

.headline {
	text-transform: uppercase;
}


/* links */

a {
	text-decoration: underline;
	color: #000000;
}
a:visited {
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

.menu a {
	text-decoration: none;
	color: #000000;
}
.menu a:visited {
	text-decoration: none;
}
.menu a:hover {
	text-decoration: underline;
}

.menu2 a {
	text-decoration: none;
	color: #F00;
}
.menu2 a:visited
{
	text-decoration: none;
}
.menu2 a:hover {
	text-decoration: underline;
}

.selected {
	text-decoration: line-through;
	color: #000000;
}

.selected2 {
	text-decoration: line-through;
	color: #F00;
}

.img { 
	border: 0; 
	text-decoration: none;
}

.copyright {
	text-transform: uppercase;
}
