/* 
    Document   : style
    Created on : Jan 10, 2009, 11:02:09 AM
    Author     : Andry
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
}
html {
	margin: 0;
	padding: 0;
}

body {
	font-family:Arial, Helvetica, sans-serif;
	line-height:18px;
	font-size:12px;
	color: #06185c;
	background: #f0f0f0;
	margin: 0;
	padding: 0;
}

body a:link, a:active, a:visited{
	text-decoration:none;
	color:#720a0b;
}

body a:hover{
	text-decoration:underline;
}

p{
	margin: 10px;
	padding: 0;
}

ul {
	list-style-type: none;
	padding-left: 0;
	margin-left: 0;
}

li {
	padding-left: 7px;
	margin-bottom: 5px;
}

acronym {
	border-bottom: none;
}

#header{
	width:600px;
	height:100px;
	background-image: url(images/header.jpg);
}

#container {
	margin: auto;
	width:600px;
	background: #ffffff;
	position:relative;
}

#content{
  position:absolute;
	top:110px;
	left:160px;
	width:435px;
	background:#ffffff;
}

#navigation {
	position:absolute;
	width:150px;
	top:110px;
	z-index:5;
	left: 5px;
	height:400px;
	background: #85a3c2;
}

#navigation a:hover{
	text-decoration: underline;
}

#player {
  width:relative;
  height:200px;
  text-align:center;
}
#comment {
  position:relative;
}
#downleftdiv {
	position:absolute;
	width:150px;
	top:520px;
	z-index:5;
	left: 5px;
	height:200px;
}

#downleftdiv h3 {
	background: #ffffff;
	text-align:center;
	color: #336699;
}

#footer {
	position:absolute;
	width:600px;
	top:1850px;
	left: 0px;
	height:50px;
	background: #9DBADF;
}


