@charset "utf-8";
body  {
	font: 16px Arial, Tahoma, sans-serif;
	background-image: url(http://www.sap-sbn.no/konferanse/img/background.png);
	background-repeat: repeat-x; 
	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;
}
#container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #1f4287;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	/*padding: 0 10px 0 20px;   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. */
	background-image: url(../img/sbn_konferansen_2009_banner.png);
	height: 100px;
	width: 950px;
	margin: 0;
	padding: 0;
	background-color: #233049;
} 
#header #login{
	float: right;
	font-size: 10px;
	padding: 0;
	margin: 0;
	height: 100px;
} 
#login .loginText {
	font-size: 14px;
	color: #1F4287;
	font-weight: bold;
}

/* menubar */
#menubar {
	text-align: center;
	padding: 0;
	margin: 0;
	width: auto;
	height: auto;
} 

#menubar ul {
	background-image: url(../img/sbn_menubar_gradient.png);
	background-repeat: repeat-x;
	text-align:center;
	padding:5px 0;
	margin:0; /* cancels gap caused by top padding in Opera 7.54 */
	color:#fff;
	width:100%;
	line-height:18px; /* fixes Firefox 0.9.3 */
}
#menubar ul li {
	display:inline;
	padding-left:0;
	padding-right:0;
	padding-bottom:5px; /* matches link padding except for left and right */
	padding-top:5px;
}
#menubar ul li a {
	padding-left:15px;
	padding-right:15px;
	padding-bottom:5px;
	padding-top:5px;
	color:#fff;
	text-decoration:none;
	border-right:1px solid #fff;
}
#menubar ul li a:hover, #menubar ul li a:visited:hover, #menubar ul li a:link:hover {
	background-image: url(../img/sbn_menubar_gradient_clicked.png);
	color: #FFF;
	
}
#menubar #first {
	border-left:1px solid #fff;
}

/* Sidebar menu */
#sidebar_left {
	float: left; /* since this element is floated, a width must be given */
	width: 17%;
	margin: 0;
	background-color: #DBE0EA;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: dotted;
	border-right-color: #000000;
	border-bottom-color: #000000;
	padding: 1%;
}
#sidebar_left  ul {
	margin: 0 0 0 0;
	list-style-type: none;
	padding: 0 0 0 0;
	font-size: 16px;
}
#sidebar_left li a {
	color: #0A0B0A;	
	padding: 0;
	text-decoration: none;
}

#mainContent {
	margin: 0 175px; /* 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: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #006;
	text-align: left;
} 
#mainContent   ul {
	padding: 5px 0 5px 20px;
}
#mainContent h1, #mainContent h2 {
	font-size: 24px;
	color: #006;
	margin: 10px 0 10px 0;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: bold;
	text-align: left;
}
#mainContent h2 {
	font-size: 14px;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: bolder;
	color: #006;
	text-align: left;
}
#mainContent h3 {
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: lighter;
}

#mainContent h4 {
	font-size: 9px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bolder;
}
#sidebar_right {
	float: right; /* since this element is floated, a width must be given */
	width: 19%; /* 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: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0%;
	margin: 0;
	border-left-width: 1px;
	border-bottom-width: 1px;
	border-left-style: solid;
	border-bottom-style: dotted;
	border-left-color: #000000;
	border-bottom-color: #000000;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #006;
}
#sidebar_right td {
	padding: 0 0 15px 0;
}


#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 */
	font-size: 10px;
}
.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;
}
table {
	display: inline-table;
}
