@charset "utf-8";
body  {
	font: 70% Verdana, Arial, Helvetica, sans-serif;
	background: #1f1f1f;
	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;
}

/* länkarna */
a { color: #bd1f29; text-decoration: none; }
a:visited { color: #bd1f29; }
a:hover { color: #bd1f29; text-decoration: underline; }
a img { border: none; }

h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color:#4e4e4e;
}

#container { 
	width: 962px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #040404;
	height: 113px;
	padding: 0 0 0 48px;
	background-image: url(../bilder/meny_bg.gif);
	background-repeat: repeat-x;
}
#logo {
	float: left;
	width: 228px;
	padding: 0 69px 0 0;
}
#meny {
	float: left;
	width: 389px;
	padding: 30px 54px 0 0;
}
.menyknapp1 {
	padding-right: 24px;
	padding-bottom: 14px;
}
.menyknapp2 {
	padding-right: 24px;
}
#bollen {
	float: left;
}
#flashbild { 
	height: 206px;
	padding: 0;
	border-bottom: #1f1f1f solid 3px;
	margin-bottom: 27px;
}
#sidebar1 {
	float: right;
	width: 446px;
	padding: 0;
	margin-right: 51px;
}
#sidebar1-1 {
	float: left;
	width: 188px;
	padding: 0;
	margin-right: 70px;
}
#sidebar1-2 {
	float: left;
	width: 188px;
	padding: 0;
}

#mainContent { 
	margin: 0 546px 0 0;
	padding: 0 20px;
} 
#footer { 
	padding-top: 30px;
	padding-bottom: 20px;
} 
#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 */
	text-align: center;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}