@import url("header.css");
@import url("content.css");
@import url("footer.css");


* {
	margin: 0;
	padding: 0;
}

html, body { width: 100%; height: 100%; padding: 0; margin: 0; }

body{
	background-color: #000;
	font-family: "Trebuchet MS";
	font-size: 11px;
	color: #ffc;
	line-height: 13px;
	text-align: justify;
}

a { outline: none; -moz-outline: 0; border: none; border-width: 0px; }
a:active { outline: none; -moz-outline: 0; /* убирает в мозиле пунктиры вокруг ссылок */ }
a:focus { outline: none; -moz-outline: 0; } 

img { border: none; border-width: 0px; }

.clear { clear: both; font-size: 0pt; line-height: 0px; height: 0px;  }

body a{
	text-decoration: underline;
	color: #ffc;
}
body a:hover{
	text-decoration: none;
}

body p{
	padding-bottom: 15px;
}
body h1, h2, h3{
	line-height: normal;
}

body ul{
	padding: 0;
	margin: 0 0 10px 20px;
}
body ol{
	padding: 0;
	margin: 0 0 10px 25px;
}
*html body ol{
	padding: 0;
	margin: 0 0 10px 28px;
}
*:first-child+html body ol{
	margin: 0 0 10px 28px; 
}
body dl{
	margin: 0 0 10px 10px;
}
*html body dl{
	margin: 0 0 10px 7px;
}
/* хак IE7 */
*:first-child+html body dl{
	margin: 0 0 10px 4px;
}

/* хак для mozzila */
html:root body dl{
	margin: 0 0 10px 20px;
}



/**************************/
#main{
	width: 1000px;
	background-color: transparent;
	background-image: url(../images/bg.jpg);
	background-attachment: scroll;
	background-repeat: no-repeat;
	
	position: relative;
	
	margin: 0 auto;
}
