div #Siddel{
	max-width: 90%;
	left:80px;
	background: rgba(230,230,230,0.2);
	margin: 0 auto;
	border-radius: 5px;
}

div #Rubrikbox {
	position: relative;
	right: 0px;
	background: rgba(1,1,1,0.1);
	width: 100%;
	height: 84px;
	border-radius: 5px 5px 0px 0px;

}

div .Text1 {
	display:inline-block;
	max-width: 660px;
	float: left;
	/*width: 70%;
	background-color:#EEE;*/
}


div .Bild1 {
	display:inline-block;
	float: right;
	background-color:#EEE;
}

@media all and (max-width:1450px){    
    #Siddel {max-width: 1450px;}
}

@media all and (max-width:1000px){  

	div .Text1 {
	display:inline-block;
	min-width: 350px;
	float: left;
	/*width: 70%;
	background-color:#EEE;*/
	}

	div .Bild1 {
	display:none;
	}
	
}



@media all and (max-width:770px){  

	div .Text1 {
	display:inline-block;
	float: left;
	/*width: 70%;
	background-color:#EEE;*/
	}

	
}

div .Text2 {
	display:inline-block;
	clear:left;
	width: 100%;
	background-color:#DDD;
	border-radius: 0px 0px 5px 5px;

}

div #fileinfo {
	float:left;
	width: 70%;
	height: 200px;
}

div #copyright {
	float:right;
	right: 10px ;
	width: 30%;
	height: 200px;
	

}



/* Layout för första indexsida:*/
.thrColLiq #containerStartPage {
  max-width: 1000px;  /* this will create a container 80% of the browser width */
  background: #EEE;
  margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
  border: 1px solid #000000;
  text-align: left; /* this overrides the text-align: center on the body element. */
}
/* Tips for sidebars:
1. Since we are working in percentages, it's best not to use side padding on the sidebars. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColLiq #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.thrColLiq #sidebar1 {
  float: left; /* this element must precede in the source order any element you would like it be positioned next to */
  width: 250px; /* since this element is floated, a width must be given */
  background: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
  padding: 15px 15px 15px 15px; /* top and bottom padding create visual space within this div  */
  opacity: 0.75;
}
.thrColLiq #sidebar2 {
  float: right; /* this element must precede in the source order any element you would like it be positioned next to */
  width: 250px; /* since this element is floated, a width must be given */
  background: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
  padding: 15px 15px 15px 15px; /* top and bottom padding create visual space within this div  */
  opacity: 0.75;
}
.thrColLiq #sidebar1 p, .thrColLiq #sidebar1 h3, .thrColLiq #sidebar2 p, .thrColLiq #sidebar2 h3 {
  margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
  margin-right: 10px;
}
/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.thrColLiq #mainContent {
  margin: auto; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
  padding:10px 0px 10px 10px;
  background: #FFF; 
  opacity: 0.92;
}
/* 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 The floated element must precede the element it should be next to on the 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 its child floats */
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}


