/* CSS Document */
body {
	font-family:Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
h1{
	font-size:24px;
}
#container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color:#000;
	background-image: url(images/bg_main.jpg);
	background-repeat: no-repeat;
}
#header {
	padding-top: 15px;
	padding-right: 45px;
	padding-bottom: 0px;
	padding-left: 45px;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#menu{
	background-image:url(images/bg_menu.png);
	background-repeat:no-repeat;
	width:183px;
	float:left;
	position:relative;
}
#menu a{
	display:block;
	background-image:url(images/bg_blackbutton.png);
	background-repeat:no-repeat;
	height:32px;
	width:135px;
	padding-right:15px;
	margin-top:9px;
	line-height:28px;
	text-align:right;
	color:#FFF;
	text-decoration:none;
	font-weight:bold;
	font-size:12px;
}
#menu a:hover{
	color:#F00;
}

#mainContent {
	padding:20px;
	margin-top:10px;
	margin-left:45px; /*228px;*/
	background-color:#939598;
	border:5px solid #FFF;
	float:left;
	position:relative;
	font-size:12px;
}
#mainContent a{
	text-decoration:none;
	color:#F00;
}
#mainContent a:hover{
	text-decoration:underline;
}
#mainContent a.folder{
	padding-left:46px;
	background-image:url(images/icon_folder.png);
	background-repeat:no-repeat;
	display:block;
	line-height:46px;
	vertical-align:middle;
}
#mainContent a.file{
	padding-left:46px;
	background-image:url(images/icon_file.png);
	background-repeat:no-repeat;
	display:block;
	line-height:46px;
	vertical-align:middle;
}

#mainContent h1, #mainContent h2, #mainContent h3{
	margin:0px;
	padding:0px;
	margin-bottom:5px;
}
#mainContent p{
	margin:0px;
	margin-bottom:5px;
}
#mainContent fieldset{
	border:1px solid black;
	background-color:#FFF;
	padding:10px;
}
#mainContent label{
	font-weight:bold;
	display:block;
	margin:0px;
	margin-top:10px;
}
#sidebar1{
	background-image:url(images/bg_sidebar1.png);
	background-repeat:repeat-x;
	width:162px;
	height:627px;
	padding:10px;
	margin-top:10px;
	margin-left:45px;
	float:left;
	position:relative;
}

#sidebar1 h1, #sidebar1 h2, #sidebar1 h3{
	margin:0px;
	padding:0px;
	margin-bottom:10px;
	font-size:1em;
	text-align:center;
}

#sidebar1 .newsblock{
	margin-bottom:10px;
	font-size:0.7em;
}

#footer {
	margin-top:20px;
	padding-right: 5px;
	padding-left: 0px;
	text-align:right;
	color:#FFF;
	font-size:10px;
	background-image:url(images/www_ovikbigband_com.png);
	background-repeat:no-repeat;
	height:30px;
	padding-top:55px;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

