/* SET DEFAULT VALUES FOR ALL HTML ELEMENTS */
* { 
 margin: 0; 
 padding: 0;
}

/* LIGHTBLUE BACKGROUND COLOR */
html, body {
 background-color: #076175;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 12px;
 color: #ffffff;
}

#container {
 margin: auto;
 width: 710px;
}

/****************************************************************
* LOGO, BANNER AND TOP MENU.
****************************************************************/
#top {
 height: 256px;
 width: 710px;
}

#logo {
 /*float: left;*/
 height: 256px;
 width: 219px;
}

#banner {
 height: 219px;
 margin-left: 219px;
 width: 482px;
}

#topmenu {
 height: 37px;
 margin-left: 219px;
 width: 482px;
}

#topmenu ul li {
 display: block;
 float: left;
 margin-left: 23px;
 margin-top: 0px;
}

#topmenu ul li a {
 color: #f7ea00;
 font-weight: bold;
 text-decoration: none;
}

/****************************************************************
* LEFT AND CONTENT.
****************************************************************/
#leftmenu {
 /*float: left;*/
 margin-left: 55px;
 min-height: 350px;
 width: 164px;
}

#leftmenu ul li {
 display: block;
}

#leftmenu ul li a {
 color: #ffffff;
 font-weight: bold;
 text-decoration: none;
}

#content {
 margin-left: 219px;
 min-height: 350px;
 width: 482px;
}

a {
 color: #f7ea00;
 text-decoration: none;
 font-weight: bold;
}

p {
 padding: 5px;
 padding-left: 0px;
}

hr {
 border: none;
 border-top: 1px solid;
 height: 1px;
}

.overskrift {
 font-size: 14px;
 font-weight: bold;
}

#credits {
 font-size: 10px;
}

#credits a {
 color: #ffffff;
 text-decoration: none;
}
