@charset "UTF-8";


body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #CC3333;
	font-family: "Courier New", Courier, monospace;
	font-size: 12px;
	line-height: 1.4em;
	text-transform: lowercase;
	text-decoration: none;
	background-image: url(images/spotbakgrund.png);
	background-repeat: no-repeat;
	background-position: left 90px;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0; padding:  0;
}

a {
	text-decoration: none;
	color: #BA3927;
	
}

.underline {
	text-decoration: underline;
}


#container {
	width: 780px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 28px;
	padding-bottom: 28px;
	padding-left: 32px;

}

#menu {
	float: left; /* since this element is floated, a width must be given */
	width: 83px;
	height: 320px;
	padding-top: 2px;
}

#mainContent {
	width: 500px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 130px;
} 

#logos {
	height: 500px;
	width: 160px;
}

#logos img{
	padding-bottom: 15px;		
}

#mainContent img{
	margin-bottom: 5px;
	margin-top: 10px;
}

.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;
}

