@charset "utf-8";
body  {
	height:100%;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
/*padding-top:1px;*/
	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;
	font-size:0.7em;
}

h1 {
color:#573526;
font-family:Gill Sans MT, Arial;
font-size:3em;
font-weight:bold;
letter-spacing:-0.03em;
}

img{border:0; !important!}


h3 {
color:#573526;
font-family:Gill Sans MT, Arial;
font-size:1.6em;
font-weight:bold;
letter-spacing:-0.03em;
}


a {
	text-decoration:none;
	color:#1F559E;
}

a:hover {
text-decoration:underline;

}

a:visited { 
color:#1F559E;
}


.twoColFixLtHdr #container { 
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height:100%;
	background: #fff;
	background-image:url('thingy.png');
	background-repeat:repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	height: 475px;
	background: #a1a8ae url('bg_ton_hor.png') repeat-y; 
	padding: 0 0 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.twoColFixLtHdr #header .menu-new{
	float: left;
	margin-top: 35px;
	padding-left: 0px;
}
.twoColFixLtHdr #header .menu-new li{
	list-style-type: none;
	float: left;
	color: white;
	border-right: 2px solid white;
	padding-right: 14px;
	margin-left: 14px;
}
.twoColFixLtHdr #header .menu-new li a{
	color: #fff;
}

div.logo-new{
	float: right;
	margin-right: 13px;
	margin-top: 12px;
	width: 222px;
	height: 155px;
	background: url('logo.png');
}

div.spacer-new{
	float: left;
	height: 2px;
	width: 100%;
	margin-bottom: 15px;
	margin-left: -6px;
	background: #fff;
}

div#bildspel-container{
	height: 300px;
	width: 100%;
	background: white;
	position: relative;
}


div.bildspel{
	position: relative;
	left: 0px;
	overflow: visible;
	height: 300px;
	width: 100%;
}
div.bildspel div.bildspelsbild{
	margin: 0px;
	height: 300px; /* 247 */
	width: 100%;
	overflow: hidden;
}
div.picture{
	float: right;
	width: auto;
	height: 300px; /* 247 */
	margin: 0px 0px 15px 15px;
	overflow: hidden;
}
div.bildspelsbild div a p img{
	position: relative;
	top: 0px; /* 4 */
	right: 0px;
	display: inline;
	margin-right: 0px; /* 5 */
}
div.bildspel div.bsknappar{
	float: right;
	margin: 10px 50px 0px 0px;
}
div.bildspel a.knapp{
	margin: 0 5px 0px 0px;
	float: left;
	width: 14px;
	height: 14px;
	background-image: url('images/undersida/bild_ejaktuell.png');
}
a.knapp:hover{
	cursor: pointer;
}

.twoColFixLtHdr #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	height:100%;
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	/*border-top: solid thin #fff;*/

	padding: 15px 10px 20px 20px;
	font-size:11px;
	background-image:url('bg_ton_hor.png');
	background-repeat:repeat-y;
	background-color:#a1a8ae;
	
	color: #fff;
}
.twoColFixLtHdr #sidebar1 a,
.twoColFixLtHdr #sidebar1 a p.basic-paragraph{
	color: #fff;
	text-decoration: none;
	line-height: 0.5em;
}
.bold{font-weight:bold;line-height: 0.7em;margin-top:0px;}
.twoColFixLtHdr #sidebar1 a:hover{
	color: #fff;
	text-decoration: underline;
}


.twoColFixLtHdr #mainContent { 

	height:100%;
	margin: 0px 0px 0px 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 40px 40px 60px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 




.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #ded2b9;
	font-family:Gill Sans MT, Arial, Helvetica;	
	font-size:8pt;
	text-align:center;
} 




/*
.twoColFixLtHdr li { 
margin-left:14px;
	
} */


.twoColFixLtHdr #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 */
}
.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;
}

.treeview {
margin-left:0px;
padding-left:0px;
text-decoration:none;
	color:#fff;
font-size:1.2em;
	font-family: Calibri, Arial, Helvetica, sans-serif
	
}

.treeview a {
color:#fff;
}


.treeview ul{ /*CSS for Simple Tree Menu*/

margin: 0;
padding: 0;

}

.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
/* background: #EBEBEB url(list.gif) no-repeat left center; */
list-style-type: none;

margin-bottom: 0.5em;


}

.treeview li.submenu{ /* Style for LI that contains sub lists (other ULs). */
background:  url(closed.gif) no-repeat left 1px;
cursor: pointer ;
font-weight:bold;
}


.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
font-weight:normal;

}

.treeview .submenu ul li{ /*Style for LIs of ULs that are children of LIs (submenu) */
cursor: default;

}



.twoColFixLtHdr #breadcrumb {
font-size:7pt;
margin-bottom:20px;
}

.twoColFixLtHdr #produktlistning td {
	border-width: 1px 1px 1px 1px;
	padding: 16px 16px 16px 16px;
	border-style: none dotted dotted none;
	border-color: #DDDDDD;
}

.twoColFixLtHdr #inforuta  {
background-color:#BBBBBB;
width:660px;
margin-top:0px;

}

.twoColFixLtHdr #inforuta td  {
background-color:#f6f6f6;
padding:4px;

}


.twoColFixLtHdr #inforuta #typ  {
background-color:#FFFFFF;

}

.twoColFixLtHdr #inforubbe  {
font-size:1em;
font-weight:bold;
padding-bottom:0px;
margin-bottom:0px;
text-transform:uppercase;
font-family:arial;

}

.twoColFixLtHdr #bifogat  {
padding:10px;
background-color:#f6f6f6;
width:640px;
border-style:solid;
border-color:#BBBBBB;
border-width:1px;

}

.twoColFixLtHdr #produktbox img {
border:none;
margin-bottom:4px;
margin-top:4px;
}

.twoColFixLtHdr #listhuvud  {
background-color:#9DA4AA;
padding:8px;
width:648px;
margin-top:20px;
overflow:auto;
}

.twoColFixLtHdr #listhuvud h1 {
color:#FFFFFF;
font-size:1.6em;
font-family: Arial;
font-weight:normal;
font-style:normal;
display:inline;
letter-spacing:0em;

}

.twoColFixLtHdr #produktbox {

float:left;
margin-right:20px;
margin-bottom:42px;

}

.twoColFixLtHdr #produktbox a{

font-weight:bold;
}


.twoColFixLtHdr #produktboxbild {

width:200px;
height:133px;
background-repeat:no-repeat;
background-position:center;
border: solid 1px #ddd;
}


.twoColFixLtHdr #ingress {
font-weight:bold;
	}

.twoColFixLtHdr #bildtextruta {
height:20px;
font-family: Gill Sans MT, Arial, Helvetica;
font-style:italic;
font-weight:lighter;
display:none;

	}

.twoColFixLtHdr #kat_form {
text-align:right;

float:left;
margin-right:20px;
}

.twoColFixLtHdr #smabilder{

float:left;

}


.twoColFixLtHdr #kopdirekt { 
font-size:2em;
}

.twoColFixLtHdr #kop_nu_form { 
float:left;
margin-right:6px;
margin-bottom: 16px;
}

.twoColFixLtHdr #kop_nu_form select { 
width:160px;

}

.twoColFixLtHdr #kop_nu_form input { 
width:140px;

}



#rounded-corner
{
	font-family: Verdana, Sans-Serif;
	font-size: 12px;
	margin: 0;
	width: 660px;
	text-align: left;
	border-collapse: collapse;
}
#rounded-corner thead th.rounded-company
{
	background: #bbb;
}
#rounded-corner thead th.rounded-q4
{
	background: #bbb;
}
#rounded-corner th
{
	padding: 8px;
	font-weight: bold;
	font-size: 13px;
	color: #000;
	background: #bbb;
}
#rounded-corner td
{
	padding: 8px;
	background: #eee;
	border-top: 1px solid #fff;
	color: #000;
}
#rounded-corner tfoot td.rounded-foot-left
{
	background: #ddd ;
}
#rounded-corner tfoot td.rounded-foot-right
{
	background: #ddd;
}
#rounded-corner tbody tr:hover td
{
	background: #fff;
}
.produktmenybild
{
	height:34px;
	overflow:hidden;
	float:left;
	margin:0px;
}
.test
{
	padding-top:20px;
	float:left;
	width:100%;
	margin-bottom:10px;
}
#annonsbild
{
	margin-top: 30px;
}


