/* Denna kod tar bort all margin och padding*/
* {
	padding: 0;
	margin: 0;
}

/* Det två raderna nedan ser till att font-size motsvarar 1em=10px och blir därför relativa värden om em används */
html {font-size: 125%;}
body {font-size: 50%;}

/* I body läggs med fördel sådant in som ska påverka hela webbsidan*/
body {background-color:#FFF}

p {font-family:Verdana, Geneva, sans-serif; font-size:1em; color:#000;}

h1 {font-family: "Times New Roman", Times, serif; color:#000; font-size:5em; text-align:center; font-weight:bold;}
h2 {font-family: "Times New Roman", Times, serif; color:#000; font-size:3em; text-align:center;}
h3 {font-family: "Times New Roman", Times, serif; color:#000; font-size:2.5em; margin-top:3px; text-align:left; margin-bottom:5px}
h4 {font-family: "Times New Roman", Times, serif; color:#000; font-size:1.1em; margin-top:3px; text-align:left; margin-bottom:2px; font-weight:bold}

/* Wrapper centrerar allt*/
#wrapper {width: 600px; margin:auto;}

#rubrik {width: 600px; height: 100px;  margin-top:30px; margin-bottom:1px}
#banner {width:600px; height:330px; background-image: url(files/header.jpg); float:left; margin-top:1px}
#bannerlink {width: 150px; height: 138px; margin-top: 18px; margin-left:30px}
#textspalt1 {width:295px; height:235px; float:left; margin-left: 3px; margin-right: 2px; margin-top:1px}
#textspalt2      {width:295px; height: 235px; float:left; margin-left:2px; margin-right:3px; margin-top:1px}
#bildrad {width:600px; height:100px; float:left; margin-top:1px}

.twothreefour {margin-left:10px}

a.textlink {color: black; font-size: 1.2em; font-weight: bold; text-decoration:none; font-family: "Times New Roman", Times, serif;}
a img{border:none}
a img:active {text-decoration:none;}


