/*
    Western Showcase
    CSS Positioning version
 */

/* ===== global styles ===== */

div#outer{
	postion: relative;
	text-align:left;
	width: 900px;
	height: auto;
	margin-left:  auto; 
	margin-right: auto;
	background-color: #FFF;
	overflow: hidden;
	}
	
	div#banner {
        float: right;
        width: 900px;
		height: 132px;      
	}
	
	 div#nav {
       float:right;
       width: 900px;      
    }	

	
	div#player {
        float: left;
        height: 375px;
        width: 266px; 
		background-image:url(images/kozun.jpg)
	}
	
	div#title {
	position: absolute;
	width: 473px;
	top: 185px;
	left: 280px;
	}
	
	div#content {
	float: right;
	width: 600px;
	padding-right: 15px;
	}
	
	div#footer {
	float: right;
	width: 900px;
	height: 154px;
	background-image:url(images/mountains.png);
	}
	
	div#body {
	position: absolute;
	top: 159px;
	height: auto;
	left: 0;
	width: 900px;
	background-color:#FFF;
    }
	
	body {
		font-family: arial; 
		font-size: 13px;
		font-family: verdana,geneva,sans-sarif; 
	}
	
	h2 {
		
		color:#d66902;
		font-size: 16px;
	}
	hr {
		
		color:#fe7807;
		
	}
	
	.hyperlink {
	color: #F60;
	}

