@charset "UTF-8";
body  {
	font: 100% Helvetica, sans-serif;
	background: #FFFFFF;
	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;
}
a:link {
	color: #989C89;
	text-decoration: none;
	font-weight: normal;
}
a:hover {
	color: #A9552C;
}
a:visited {
	color: #6E1300;
	text-decoration: none;
	font-weight: normal;
}


#container {
	width: 1020px;
	background: #FFFFFF;
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-right: auto;
	margin-left: auto;
}  
#header {
	padding: 0 10px;
	height: 120px;
	margin-top: 20px;
	margin-bottom: 10px;
} 
#header p {
	margin-bottom: 20px;
	font-family: "Times New Roman", Times, serif;
	font-size: 0.9em;
	float: right;
	margin-top: -2px;
	margin-right: 70px;
	clear: right;
	color: #973318;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px 0 -10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 3em;
	font-weight: lighter;
	font-variant: normal;
	float: left;
	position: relative;
}
#header img {
	float: right;
	margin-right: 60px;
}


/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent {
	margin: 0 auto; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 0 2em;
	width: 920px;
} 
#rightcol .box {
	width: 248px;
	padding-top: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
}

/*
#rightcol .box p {
	width: 225px;
	font-family: "Trebuchet MS", sans-serif;
	color: #333333;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 0.7em;
	font-weight: lighter;
}
#rightcol .box ul {
	width: 240px;
}
#rightcol .box li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: lighter;
	list-style-type: none;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 5px;
	border-top: none #3D0214;
	border-right: none #3D0214;
	border-bottom: 1px solid #0099FF;
	border-left: none #3D0214;
	background-image: url(images/icon_mini_news.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}*/


#footer {
	padding: 0 10px;
} 
#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 */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #141616;
	text-align: justify;
}

#footer a {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #999999;
}

#footer a:hover {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #D4D7BA;
	text-decoration: none;
}



/* Miscellaneous classes for reuse */
.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;
}

#mainContent #menu {
	color: #FFFFFF;
	margin-left: auto;
	font-size: 1em;
	margin-right: auto;
	float: left;
	clear: none;
	margin-bottom: 35px;
	position: relative;
	vertical-align: top;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9A381B;
	width: 100%;
}
#menu .akt {
	font-weight: bold;
	color: #FFFFFF;
}

#mainContent #menuleft {
	float: left;
	height: 20px;
	color: #333333;
	margin-left: 60px;
	font-size: 0.8em;
	margin-right: 200px;
	clear: right;
	width: 100px;
}
#menuleft  a:link {
	vertical-align: top;
}
#menuleft  a:hover {
	color: #CCCCCC;
	text-decoration: none;
}
#mainContent #menuright {
	float: right;
	height: 20px;
	color: #FFFFFF;
	font-size: 0.8em;
	clear: right;
	margin-right: 5px;
	vertical-align: top;
	width: 300px;
	text-align: right;
}

#menuright a:link {
	vertical-align: top;
}
#menuright a:hover {
	color: #CCCCCC;
	text-decoration: none;
}

#mainContent #leftcol {
	float: left;
	width: 625px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0.9em;
	padding-right: 6px;
	padding-left: 6px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #9A381B;
	margin-left: 25px;
	color: #999999;
	text-align: right;
	font-weight: lighter;
	line-height: 1.3em;
}
#mainContent #leftcol h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.6em;
	margin-top: 15px;
	margin-bottom: 15px;
	color: #8C0403;
	line-height: 1em;
}
#leftcol input {
	background-color: #E1E3E7;
	height: 15px;
	border: 1px solid #666666;
	width: 150px;
	margin-bottom: auto;
	font-size: 0.9em;
	color: #999999;
	margin-top: auto;
	margin-right: 0px;
	margin-left: 3px;
}
#form1 #skicka {
	width: 100px;
	background-color: #5E6154;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 1em;
	padding: 1px;
	border: 1px solid #5E6154;
	margin: 1px;
}
#mainContent #rightcol {
	float: right;
	width: 250px;
	position: relative;
	text-align: left;
}
#mainContent #rightcol h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #EBEECD;
	font-size: 0.9em;
	width: 95%;
	background-color: #8C0403;
	padding-left: 15px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #636759;
}
#mainContent #bottom {
	margin-left: auto;
	margin-right: auto;
	float: left;
	margin-bottom: 30px;
	position: relative;
	width: 100%;
	margin-top: 60px;
	clear: none;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	padding-top: 5px;
	height: 20px;
}

#mainContent #bottom p {
	color: #999;
	font-size: 0.8em;
	text-align: center;
	width: 100%;
	padding-top: 5px;
}

/*#mainContent #bottom p {
	margin-top: 10px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 50%;
	color: #505656;
}*/

#mainContent #rightcolabckg {
	float: right;
	width: 250px;
	position: relative;
	margin-right: 70px;
	text-align: left;
	background-color: #727577;
}
#mainContent  #news {
	width: 595px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 1em;
	padding-right: 6px;
	padding-left: 6px;
	margin-left: auto;
	color: #333333;
	text-align: left;
	font-weight: lighter;
	line-height: 1.5em;
	margin-right: auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
	margin-bottom: 10px;
	position: relative;
	float: left;
}
#news img {
	border: 1px solid #838774;
	padding: 3px;
	margin-right: 1px;
}
#news h3 {
	font-size: 2em;
	margin-top: -20px;
	margin-bottom: -15px;
}
#news  h1 {
	font-size: 2.5em;
	line-height: 1em;
	color: #333333;
	font-family: "Times New Roman", Times, serif;
	text-align: left;
	font-weight: lighter;
}

#mainContent #news p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.2em;
	color: #000000;
	text-align: left;
	letter-spacing: 0.1em;
	font-weight: lighter;
}
#mainContent #leftcolnews {
	float: left;
	width: 270px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	padding-right: 15px;
	padding-left: 2px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #838774;
	margin-left: 5px;
	color: #666666;
	text-align: justify;
	font-weight: lighter;
	line-height: 1.5em;
	background-color: #FFFFFF;
	margin-right: 5px;
}
#mainContent #rightcolnews {
	float: left;
	width: 271px;
	position: relative;
	margin-right: 5px;
	color: #666666;
	font-size: 0.9em;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5em;
	font-weight: lighter;
	margin-left: 2px;
	text-align: justify;
	padding-right: 15px;
	padding-left: 2px;
}
/*#leftcolnews img {
	border: 1px solid #666666;
	padding: 3px;
	margin-bottom: 2px;
	margin-right: 8px;
	margin-left: 8px;
	float: left;
	clear: left;
}
#rightcolnews img {
	border: 1px solid #666666;
	padding: 3px;
	margin-bottom: 9px;
	margin-right: 4px;
	margin-left: 8px;
}
*/


#mainContent #leftcolobg {
	float: left;
	width: 525px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0.9em;
	padding-right: 6px;
	padding-left: 6px;
	margin-left: 50px;
	color: #666666;
	text-align: right;
	font-weight: lighter;
	line-height: 1.3em;
}
#leftcolobg input {
	background-color: #F5FBF4;
	height: 25px;
	border: 1px solid #666666;
	width: 200px;
	margin-bottom: auto;
	font-size: 0.9em;
	color: #666666;
	margin-top: auto;
	margin-right: 0px;
	margin-left: 3px;
}
#mainContent #rightcolnews h1 {
	text-align: justify;
	color: #000000;
	font-size: 1.7em;
	font-family: "Times New Roman", Times, serif;
	line-height: 1.3em;
	font-weight: lighter;
	letter-spacing: 0.1em;
	padding-left: 8px;
	padding-right: 6px;
}
#mainContent #leftcolnews h1 {
	text-align: justify;
	color: #000000;
	font-size: 1.7em;
	font-family: "Times New Roman", Times, serif;
	line-height: 1.3em;
	font-weight: lighter;
	letter-spacing: 0.1em;
	padding-left: 8px;
	padding-right: 6px;
}
#news  ul {
	padding-left: 15px;
	display: block;
	float: left;
	clear: right;
}
#newscv  {
	width: 590px;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0.9em;
	padding-right: 6px;
	padding-left: 6px;
	color: #333333;
	text-align: left;
	font-weight: normal;
	line-height: 1.3em;
	margin-bottom: 10px;
}
#leftcolobg .button {
	background-color: #0099FF;
	color: #FFFFFF;
	width: 100px;
}
#rightcol .box H3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	font-weight: normal;
	text-decoration: none;
	margin: 0px;
	padding: 0px 0px 0px 15px;
}
.rad {
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #8899A7;
	padding-left: 5px;
	margin-top: 0.5em;
	padding-top: 1px;
	padding-bottom: 1px;
	color: #333333;
}
label {
	float: none;
	text-align: right;
	font-variant: small-caps;
	font-size: 0.9em;
}
/*#rightcol H3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	font-weight: normal;
	text-decoration: none;
	margin: 0px;
	padding: 0px 0px 0px 15px;
}*/
#mainContentEnter {
	margin: 0 auto; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 0 2em;
	width: 920px;
	background-color: #4F6987;
	font-family: "Trebuchet MS", sans-serif;
	font-size: 1em;
	color: #666666;
}
.box .rad img {
	float: left;
	display: block;
	margin-right: 5px;
}
#mainContent #news2 {
	width: 595px;
	padding-right: 6px;
	padding-left: 6px;
	margin-left: auto;
	text-align: left;
	margin-right: auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
	margin-bottom: 10px;
	position: relative;
	float: left;
	margin-top: 15px;
	clear: both;
}
#mainContent #leftcol #news2 p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.3em;
	color: #52554A;
}
#rightcol .box p {
	width: 248px;
	padding-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	padding-left: 6px;
	padding-right: 5px;
}
#mainContent #leftcol #news2 a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.3em;
	color: #A9552C;
}
#mainContent #leftcol #news2 a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.3em;
	color: #677302;
	text-decoration: underline;
}
#mainContent #rightcol a:hover {
	text-decoration: none;
}
.rad2 {
	padding-left: 25px;
	padding-top: 1px;
	padding-bottom: 1px;
	color: #333333;
	background-image: url(acc/doc_small.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 30px;
	width: 450px;
	margin: 0px;
	padding-right: 0px;
	text-align: left;
	line-height: 1.3em;
	font-size: 1em;
}
#mainContent #leftcol #news3 p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	color: #52554A;
	text-decoration: none;
}
#mainContent #leftcol #news3 a:hover {
	color: #8C0403;
	text-decoration: underline;
}
#mainContent #leftcol #news3 a {
	color: #666666;
}
#mainContent #leftcolnews3 {
	padding-right: 15px;
	padding-left: 2px;
	margin-left: 50px;
	margin-right: 5px;
	width: 520px;
	text-align: left;
	float: left;
}
#mainContent #leftcolnews3 h1 {
	text-align: justify;
	color: #000000;
	font-size: 1.7em;
	font-family: "Times New Roman", Times, serif;
	line-height: 1.3em;
	font-weight: lighter;
	letter-spacing: 0.1em;
	padding-left: 8px;
	padding-right: 6px;
}
#mainContent #leftcol3 {
	float: left;
	width: 625px;
	padding-right: 6px;
	padding-left: 6px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #9A381B;
	margin-left: 25px;
	text-align: right;
}
#mainContent #leftcol3 h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 2em;
	margin-top: 15px;
	margin-bottom: 15px;
	color: #8C0403;
	line-height: 1em;
	text-align: left;
}
#mainContent #leftcolnews3 h3 {
	color: #000000;
	font-size: 1.2em;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	letter-spacing: normal;
	padding-left: 8px;
	padding-right: 6px;
}
/*#mainContent #leftcolnews3 p {
	color: #000000;
	font-size: 1.1em;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	letter-spacing: 0.1em;
	padding-left: 8px;
	padding-right: 6px;
}*/
#mainContent #rightcol h4 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #D0D1B3;
	font-size: 0.7em;
	width: 95%;
	background-color: #333333;
	padding-left: 15px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #636759;
	font-weight: normal;
}
#mainContent #rightcol h5 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #EBEECD;
	font-size: 0.8em;
	width: 95%;
	background-color: #640202;
	padding-left: 15px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #636759;
}
#rightcol .box1 {
	width: 100%;
	padding-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	border: 1px solid #CCCCCC;
}
#rightcol .box2 {
	width: 100%;
	padding-top: 5px;
	background-color: #F0F6F0;
	border: 1px solid #666666;
}
#rightcol .box2 p {
	width: 100%;
	padding-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	padding-left: 12px;
	padding-right: 5px;
	font-weight: normal;
}
#rightcol  .box1  p {
	width: 248px;
	padding-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	padding-left: 6px;
	padding-right: 5px;
	font-weight: normal;
}
#mainContent #leftcolnews3 p {
	padding-right: 15px;
	padding-left: 2px;
	margin-left: 50px;
	margin-right: 5px;
	width: 520px;
	text-align: left;
	float: left;
	line-height: 1.5em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
}
 
#mainContent #leftcoltxt {
	width: 625px;
	padding-right: 20px;
	padding-left: 20px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #9A381B;
	margin-left: 150px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #9A381B;
	margin-right: auto;
	float: left;
}
