body {
	overflow:hidden; 		/* needed to eliminate scrollbars caused by the background image */
	padding:0;margin:0;		/* necesarry for the raster to fill the screen */
	height:100%;width:100%;
}

#bgimg {
	position:absolute;
	z-index: -1;
}

#realBody{
	position:absolute;
	z-index: 5;				/* Place the new body above the background image */
	overflow:auto; 			/* restore scrollbars for the content */
	height:100%;
	width:100%;	/* Make the new body fill the screen */
	background: url('../img/raster.png'); /* this is just a fancy raster, you can remove it; I kinda like it though */
	left: 0px;
	top: 0px;
}

/* 
	The following CSS code is for illustrative purposes, and is NOT necesarry for the fullscreenr plugin to work
*/

#navDiv {
	width:100%;
	height:95px;
	background-image:url('../img/top_nav_bg.png');
	background-repeat:repeat-x;
	position:absolute;
	top: 50px;
	text-align:left;
	vertical-align:middle;
	color:#fff;
}

	#exampleDiv a {
		color:#fff;
		text-decoration:underline;
	}

	#exampleDiv a:hover {
		background:#fff;
		color:#000;
	}


#main_tx {
	width:500px;
	overflow:auto;
	background-image:url('../img/txt_bg.png');
	background-repeat:repeat;
	border:solid 1px #ccc;
	position:absolute;
	top: 200px;
	left:100px;
	text-align:left;
	padding:20px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:20px;
	color:#fff;
	margin-bottom:30px;
}

	#main_tx a {
		color:#fff;
		text-decoration:underline;
	}

	#main_tx a:hover {
		background:#fff;
		color:#000;
	}
	
#main_tx_700 {
	width:700px;
	overflow:auto;
	background-image:url('../img/txt_bg.png');
	background-repeat:repeat;
	border:solid 1px #ccc;
	position:absolute;
	top: 200px;
	left:100px;
	text-align:left;
	padding:20px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	line-height:20px;
	color:#fff;
	margin-bottom:30px;
}

	#main_tx_700 a {
		color:#fff;
		font-family:Verdana;
		font-size:12px;
		text-decoration:none;
	}

	#main_tx_700 a:hover {
		background:#fff;
		color:#000;
	}	
	
.pg_ttl {
font-family:Arial, Helvetica, sans-serif;
font-size:24px;
font-weight:bold;
color:#fff;
}	

.artist_disc{
padding:5px;
border:solid 1px #CCC;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
}