html, body{
	background-color: #D7D7D7;
	font-family: Lucida Grande, Trebuchet Ms, Arial, Sans-serif;
	margin: 0;
	padding: 0;
	line-height: 150%;
	font-size: 13px;
	height: 100%;
}

/* default headlines */

h1, h2, h3, h4, h5, h6{
	color: #000;
	padding: 0;
	margin: 5px 5px 0 0;
	line-height: 150%;
}

h1{
	font-size: 26px;
	font-weight: lighter;
}

h2{
	font-size: 22px;
	font-weight: lighter;
}

h3{	
	font-size: 18px;
	font-weight: lighter;
}

h4{
	font-size: 15px;
}

h5{
	font-size: 13px;
}

h6{
	font-size: 12px;
	font-weight: lighter;
}

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

a:active{ color: #b51019; }
a:link{ color: #b51019; }
a:visited{ color: #b51019; }
a:hover{ color: #b51019; text-decoration: none; }

/* Layout structure */

#container{
	width: 700px;
	background: #fff;
	margin: 0 auto;
}

/* Här lägger du in header bilden. */

#header{
	height: 100px;
	background-image: url(../layout/header.jpg);
	backround-repeat: no-repeat;
}

#content{
	clear: left;
	padding: 20px 50px 20px 50px;
	margin: 0;
	overflow: auto;
	height: 400px;
}

#footer{
	background-image: url(../layout/bottom.gif);
	background-repeat: no-repeat;
	background-position: bottom;
	background-color: #fff;
	padding-top: 15px;
	height: 47px;
	text-align: center;
}

/* Här är css för huvudmenyn. */

ul#menu{
	float: left;
	border-top: 2px solid #c0c0c0;
	border-bottom: 2px solid #c0c0c0;
	width: 100%;
	padding: 0;
	margin: 0;
}

ul#menu li{
	display: inline;
	
}

ul#menu li a{
	width: 114px; // detta är bredden på varje meny knapp.
	padding: 1px 0px 1px 0px;
	text-decoration: underline;
	float: left;
	border-right: 2px solid #c0c0c0;
	color: #808080;
	font-weight: bold;
	text-transform : uppercase;
	font-size: 11px;
	text-align: center;
}

ul#menu li a:hover{
	color: #000;
}

ul#menu li a.active{
	color: #000;	
}

/* Här är css för sub menyn. */

ul#subMenu{
	float: left;
	border-bottom: 2px solid #c0c0c0;
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: #b51019;
}

ul#subMenu li{
	display: inline;
	
}

ul#subMenu li a{
	padding: 1px 25px 1px 25px;
	text-decoration: none;
	float: left;
	color: #fff;
	font-size: 11px;
	text-align: center;
	background-image: url(../layout/arrow.gif);
	background-repeat: no-repeat;
	background-position: 13px 8px;
}

ul#subMenu li a:hover{
	color: #000;
}

ul#subMenu li a.active{
	font-weight: bold;	
}