/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background:black;
	font-family:arial,sans-serif;
	font-size:small;
	color:#ebe7e9;
}



div#sizer{
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:100%;
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers */
	min-width:1024px;
	/*max-width:1400px;*/
	max-width:1920px;
	
	
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:100%;
	background:url("../img/background.gif") 4px 10px black;
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers */
}





div#header {
	height:150px;
	display:block;
	padding:0;
	margin:0;
}


a {
	color:#ebe7e9;
}

p{
	font-size:12px;
	margin:0 0 15px 0;
	line-height:1.5em;
	text-align:justify;
}



div#content {
	padding:0em 0em 5em; /* bottom padding for footer */
}

body#collection div#content {
	padding:0; /* bottom padding for footer */
}

	div.main_hold{
		position:relative;
		margin:40px auto 20px auto;
		width:80%;
		padding:0;
	}
	
	div.maximize{
		width:100%;
		margin:0;
		padding:0;
	}
	
		div.main_hold div.heading{
			float:left;
			width:100%;
			display:inline;
			margin:0 0 15px 0;
		}
		
		div.main_hold div.heading div.title{
			float:left;
			background:black;
			padding:5px 10px;
		}
	
		div.main_hold div.heading div.title h1{
			display:inline;
			padding:0;
			margin:0;
			font-weight:bold;
			font-size:18px;
		}


		
		div.main_hold div.flash{
			float:left;
			width:100%;
			margin:0;
			padding:0;
		}



		














div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	font-size:11px;
	color:#727071;
}
	
	div#footer a:link,
	div#footer a:visited{
		color:#727071;
		text-decoration:none;
	}
	
	div#footer a:active,
	div#footer a:hover{
		color:white;
		text-decoration:none;
	}

	div#footer div.left{
		position:absolute;
		left:0px;
		bottom:0px;
		background:black;
		padding:4px 5px;	
	}

	div#footer div.right{
		position:absolute;
		right:0;
		bottom:0px;
		background:black;
		padding:4px 5px;
	}
