
body  {
    
	font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: url(images/img01.jpg) repeat-x left top;
	
	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;
}

/*HAR er CSS til SLIDERSHOW ******************************************************************************************/

 #containerarea {
	height: 220px;
	width: 350px;
	position:relative; 
	margin: 30px 0px 30px 105px;
	padding: 0px;
}

#slider1 {
    border-color: #CCCC99;
    margin-left: 15px;
    height: 220px
}

.sliderwrapper{
	position: absolute; /*leave as is*/
	overflow: hidden; /*leave as is*/
	border: 8px solid ;
	border-bottom-width: 10px solid ;
    height: 220px;	
    width: 350px;
	left: -2px;
	top: -5px;
}

.sliderwrapper .contentdiv{
	visibility: hidden; /*leave as is*/
	position: absolute; /*leave as is*/
	left: 0;  /*leave as is*/
	top: 0;  /*leave as is*/
	padding: 0px;
	background: #ffffff;
	width: 350px; 
	height: 100%;
	filter: progid:DXImageTransform.Microsoft.alpha(opacity=100);
	moz-opacity: 1;
	opacity: 1; 
}

.pagination {
      visibility: hidden; /* dette definerer bildettall og fram-tilbakkeknapper */
    width: 311px; /* sentrerer paginalinjen i forhold til slider */
      text-align: center;
      background-color:;
      padding: 3px 7px; 
}
.pagination a{
      padding: 0px 5px;
      text-decoration: none; 
      color: white;
      background: darkred;
}

.pagination a:hover, .pagination a.selected{
      color: #000;
      background-color: ;
}
/**********************sample CSS for expando images. Not required but recommended******************************/
.expando {
      border: none;
      vertical-align: top; /*top aligns image, so mouse has less of a change of moving out of image while image is expanding*/
}
/*HAR av slutter SLIDERSHOW ******************************************************************************************/
#container { 

    border: 5px solid #CCCCCC;
    background: url(images/backgroundbody.jpg) repeat-y left top;
	width: 925px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	
	margin:  0px 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. */
} 

#header {
    background: url(images/backgroundbody.jpg) repeat-y left top;
    background-image: url(images/head_aikido.png) ; 
    background-position: center; 
    background-repeat: no-repeat;
    margin: 25px 0px 20px 0px; 
    width: 925px; height: 245px;
	 
/* 	padding: 10 10px 0 40px;  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. */
} 

/* Sidebar 1 */
#sidebar1 {
    
	font-size: smaller;
	color: #666666;  
    border-right: 1px solid #999999;
	float: left; /* since this element is floated, a width must be given */
	width: 130px; /* 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 */
	background: url(images/backgroundbody.jpg) repeat-y left top; /*the background color will be displayed for the length of the content in the column, but no further */
	margin: 15px 0px 0px 0px;
 	padding: 0px 10px 15px 20px; padding keeps the content of the div away from the edges 
}

#sidebar1 ul {
	padding: 0;
	list-style: none;
}

#sidebar1 li {
	margin-bottom: 3em;
	padding: 0;
	background: none;
	list-style: none;

}

#sidebar1 li a:hover {color: #999999;}

#sidebar1 li .aktiv { 
    color: darkred;
    font-size: 1.3em ;
    font-weight: bold;
    }

#sidebar1 li li {
	margin: 0em;
	padding-left: 1.1em;
	background: url(images/img09.gif) no-repeat left center;
}

#sidebar1 h2 {
	color: #999999;
}

#sidebar1 a {
	color: #333333;
}

a {
	text-decoration: none;
	color: blue;
}

a:hover {
	text-decoration: none;
	color: navy;
	font-size: 1.1em ;
}

/* Sidebar 2 */

#sidebar2 {

    border-left: 1px solid #999999;
	float: right; /* since this element is floated, a width must be given */
	width: 170px; /* 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 */
	background: url(images/backgroundbody.jpg) repeat-y left top; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 15px 0px 0px 0px;
	padding: 0px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
	
}

#mainContent {
    background: url(images/backgroundbody.jpg) ;
/*    border: 1px solid #333333;  */ 
	margin:15px 200px 0px 160px; /* 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
#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;
}

.tablestyle {
   margin: 0px 0px 10px 30px;
   width: 480px;
   color: darkred; 
   border-collapse: collapse;
   border: 0px  solid #660000;
   border-space: 4px 4px;
}

/*tr td {background-color: #ffffff;} */

td { font-size: 0.8em;
          
      border-left: 0px solid #CCCCCC;
      border: 1px solid #CCCC99;  
}


.bildejusteringleft {
     margin: 8px 15px 10px 5px;
     float: left;
} 

.bildejusteringright {
     margin: 10px 0px 10px 10px;
     float: right;
} 

.bildejusteringsenter {
     margin: 30px 190px 10px 0px;
     float: right;
} 
blockquote {
	margin-left: 1em;
	padding-left: .75em;
	border-left: 1px solid #9E9D89;
}

h1, h2, h3 {
	font-family: Comic Sans, Georgia, "Times New Roman", Times, serif;
	color: #660000;
	

}

h1 {
	letter-spacing: -.05em;
	font-size: 2.2em;
	margin-top: 1em;
}

h2 {
	margin-top: 1em;
	letter-spacing: -.05em;
	font-size: 1.4em;
}

h3 {
	margin-top: 1em;
}

p {
	margin-top: 1em;
	line-height: 160%;
	font-size: 0.8em;
}



ul, ol {
	margin-top: 1em;
	line-height: 160%;
}


ul li {
	margin-left: 0.8em;
	padding-left: .75em;
	background: url(images/img05.gif) no-repeat left center;
}

ol {
	margin-left: 1em;
	list-style-position: inside;
	
}
