@charset "utf-8";

body  {
	background-image: url(../img/sbn_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: #006;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
}

/* container for the whole page */
#container {
	width: 975px;  /* using 20px less than a full 1024 width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 5px 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 above the menu */
#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_banner_light_blue_square.png);
	height: 100px;
	width: 975px;
	background-repeat: no-repeat;
	margin: 0;
	padding: 0;
} 
#header #login{
	float: right;
	font-size: 10px;
	padding: 5px 10px 5px 10px;
	margin: 0;
	height: 20px;
	text-align: right;
	background-color: #FC0;
} 

#login   .loginText {
	font-size: 14px;
	color: #1F4287;
	font-weight: bold;
	text-align: right;
	cursor: pointer;
	text-decoration: underline;
	padding: 0 0 50px 0;
}
#login #prBox {
	height: 81px;
	border-top-width: 1px;
	border-top-color: #1F4287;
	border-top-style: solid;
	border-left-width: 1px;
	border-left-color: #1F4287;
	border-left-style: solid;
	margin-top: 2px;
	text-align: center;
	background-color: #FFFFFF;
}
/* needed ? */
#login #loginBox {
	text-align: left;
	height: 82px;
	margin-top: 1px;
}


/* menubar */
#menubar {
	text-align: center;
	padding: 0;
	margin: 0;
	width: auto;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
} 
#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: 140px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px;
	margin: 0 10px 10px 0;
	background-color: #DBE0EA;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #000000;
	border-bottom-color: #000000;
	font-family: Tahoma, Geneva, sans-serif;
}
#sidebar_left  ul {
	margin: 0 0 0 0;
	list-style-type: none;
	padding: 0 0 0 0;
	font-size: 18px;
	font-weight: normal;
}
#sidebar_left li a {
	color: #006;
	padding: 10px 0px 5px 0px;
	text-decoration: none;
	border-bottom: 1px dotted;
	display: block;
}
#sidebar_left #sidebar_left ul li a:hover, #sidebar_left ul li a:visited:hover, #sidebar_left ul li a:link:hover {
	color: #FFF; background-color: #1F4287; }
	a:active { color: #003300; } 
	a:visited { color: #003300; 
} 

#sidebar_left #sbnstyret a {
	color: #0A0B0A;
	padding: 0;
	text-decoration: none;
	border-bottom: 1px dotted;
	display: block;
}

/* main contet */
#mainContent {
	margin: 0 10px; /* 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: 5px 10px;
	font-weight: lighter;
	color: #006;

} 
#mainContent   ul {
	padding: 5px 0 5px 20px;
}

#mainContent h1, #mainContent h2 {
	font-size: 24px;
	color: #0C1832;
	margin: 5px 0;
}
#mainContent h2 {
	font-size: 24px;
}
#mainContent h2 a img {
	border: 0px;
}
#mainContent h3 {
	font-size: 20px;
}
#mainContentFirstpage {
	margin: 0 165px 0 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: 5px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContentFirstpage h1, #mainContentFirstpage h2 {
	font-size: 30px;
	color: #0C1832;
	margin: 5px 0;
}
#mainContentFirstpage h2 {
	font-size: 26px;	
}
#mainContentFirstpage h3 {
	font-size: 20px;
}

#sidebar_right {
	float: right; /* since this element is floated, a width must be given */
	width: 177px; /* 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: 10px 1px;
	margin: 0 0 10px 5px;
	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;
}
#sidebar_right img {
	border: 0;
	margin: 0 1px;
}
/*
#sidebar_right img:hover {
	border: 5px solid #84f;
	margin: 0;
}
*/
#login #prBox img {
	background-color: #FFFFFF;
	border: 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;
}

/* all forms should be inline. Some browser otherwise assume block */
form {
	display: inline;
}

/* for the seminar lists: ongoing + archives */
#calendar table {
	padding: 1px;
}
#calendar th {
	font-size: 14px;
	color:#FFFFFF;
	text-align: left;
	background-image: url(../img/sbn_menubar_gradient.png);
	background-repeat: repeat-x;
	padding: 4px;
}
/* border for the four different table-cells */
.t0 {
	border-style: solid none none solid;
	border-color: #000000;
	border-width: 1px;
	padding: 3px;
}
.t1 {
	border-style: solid none none none;
	border-color: #000000;
	border-width: 1px;
	font-size: 16px;
	font-weight: bolder;
	padding: 3px;
}
.t2 {
	border-style: solid solid none none;
	border-color: #000000;
	border-width: 1px;
	padding: 3px;
}
.t3 {
	border-style: none solid solid solid;
	border-color: #000000;
	border-width: 1px;
	padding: 1px;
}
/* smaller text for the additional text */
.utext {
	font-size: 75%;
}
/* yellow text for the search patton */
.cred {
	background-color: #ffbb22;
}

.hide-unhide {
	cursor:pointer;
	text-decoration: underline;
}

.jlink {
	cursor:pointer;
	text-decoration: underline;
	position: relative;
	float: right;
	text-align: right;
	color: #3344CC;
}

#newsbox {
	background-image: url(../img/newsbox-header.png);
	background-repeat: no-repeat;
	height: 330px;
	width: 225px;
	position: relative;
	float: left;
	padding: 5px 15px 15px 10px;
	overflow: auto;
}
#newsboxheader {
	color: #FFFFFF;
	text-align: center;
	font-size: 20px;
	padding: 0 0 5px 0;
}
#newsboxContent {
	font-size: 16px;
}
#newsboxContent  p {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #1f4287;
}

.kdetail {
	overflow: auto;
	background-color: #dda;
	cursor: pointer;
}
.kdetail div {
	display: none;
}
.kdetail td:hover div {
	display: inline;
}

#bla {
	position: fixed;
	font-size: 12px;
	top: 60px;
	right: 100px;
	width: 400px;
	padding: 10px 20px 30px 40px;
	color: #000000;
	background-color: #99AAFF;
}

/* for the SIG (special interest groups) */
.sig_tree table {
	padding: 1px;
}
.sig_tree th {
	font-size: 14px;
	color:#FFFFFF;
	text-align: left;
	background-image: url(../img/adsig_menubar_gradient.png);
	background-repeat: repeat-x;
	padding: 4px;
}
.sig_tree td {
	font-size: 12px;
	color:#000000;
	text-align: left;
	padding: 2px;
	margin: 10px;
}
.tree_empty {
	border-width: 8px;
	border-color: #88AADD;
	border-style: solid none none none;
}
.tree_full {
	border-width: 2px;
	border-color: #88AAAA;
	border-style: solid;
}
.tree_button {
	border-style: none;
}
/****************** for HOME *********************/

/* for the news container */
#news_left {
	float: left;
	width: 220px;
	padding: 15px 10px 15px 10px;
	margin: 0 10px 10px 0;
	background-color: #DBE0EA;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #000000;
	border-bottom-color: #000000;
	font-size: 16px;
}

#news_left  ul {
	margin: 0 0 40px 0;
	list-style-type: none;
	padding: 0 0 0 0;

}
#news_left li {
	color: #0A0B0A;	
	padding: 10px 0px 5px 0px;
	text-decoration: none;
	border-bottom: 1px dotted;
	display: block;
}
#news_left li:hover {
	color: #FFF;
	background-color: #1F4287;
	font-size: 16px;
}
#news_left a {
	text-decoration: none;
}
#news_left li:hover a {
	text-decoration: none;
	color: #FFC;
}

/* table of sig_MySIGs.asp */
/* border for the four different table-cells */
.myS0 {
	border-style: solid none none solid;
	border-color: #000000;
	border-width: 1px;
	padding: 3px;
}
.myS1 {
	border-style: solid none none none;
	border-color: #000000;
	border-width: 1px;
	padding: 3px;
}
.myS2 {
	border-style: solid solid none none;
	border-color: #000000;
	border-width: 1px;
	padding: 3px;
}
.myS3 {
	border-style: none solid solid solid;
	border-color: #000000;
	border-width: 1px;
	padding: 1px;
}

#mainCol0 {
	float: left;
	width: 240px;
	padding: 10px 10px 10px 10px;
	margin: 0 5px 5px 0;
	background-color: #F2F4F9;
	border-width: 2px;
	border-style: solid;
	border-color: #AAB7D1;
	
}


#mainCol1 {
	float: left;
	width: 240px;
	padding: 10px 10px 10px 10px;
	margin: 0 5px 5px 1px;
	background-color: #F2F9F9;
	border-width: 2px;
	border-style: solid;
	border-color: #ADBAD3;
	
}

#mainCol2 {
	float: left;
	width: 350px;
	padding: 10px 10px 10px 10px;
	margin: 0 5px 5px 1px;
	background-color: #F2F4F9;
	border-width: 2px;
	border-style: solid;
	border-color: #AAB7D1;
	
}

#mainCol3 {
	float: left;
	width: 580px;
	padding: 10px 10px 10px 10px;
	margin: 0 5px 5px 1px;
	background-color: #FFF;
	border-width: 2px;
	border-style: solid;
	border-color: #AAB7D1;
	
}


#mainCol4 {
	float: left;
	width: 200px;
	padding: 10px 10px 10px 10px;
	margin: 0 5px 5px 1px;
	background-color: #FFF;
	border-width: 2px;
	border-style: solid;
	border-color: #AAB7D1;

}
#mainCol5 {
	float: left;
	width: 400px;
	padding: 10px 10px 10px 10px;
	margin: 0 5px 5px 1px;
	background-color: #FFF;
	border-width: 2px;
	border-style: solid;
	border-color: #AAB7D1;
	
}

#mainCol6 {
	float: left;
	width: 700px;
	padding: 10px 10px 10px 10px;
	margin: 0 5px 5px 1px;
	background-color: #FFF;
	border-width: 2px;
	border-style: solid;
	border-color: #AAB7D1;
	
}

#mainColMedlemsblad {
	float: left;
	width: 650px;
	padding: 10px 10px 10px 10px;
	margin: 0 5px 5px 1px;
	background-color: #FFF;
	border-width: 2px;
	border-style: solid;
	border-color: #AAB7D1;
	}
#mainCol_e-Brev {
	float: left;
	width: 450px;
	padding: 10px 10px 10px 10px;
	margin: 0 5px 5px 1px;
	background-color: #FFF;
	border-width: 2px;
	border-style: solid;
	border-color: #AAB7D1;
	}
#mainCol_SIG_HR {
	float: left;
	width: 350px;
	padding: 10px 10px 10px 10px;
	margin: 0 5px 5px 1px;
	background-color: #FFF;
	border-width: 2px;
	border-style: solid;
	border-color: #AAB7D1;
	
}
.boldP {
	font-weight: bolder;
	font-size: 18px;
}
.Header_dark_blue {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 14px;
	font-weight: bolder;
	color: #162E5F;
	background-color: #FCFDFE;
}
#container #mainContent #mainCol1 p10 {
	font-size: 10px;
}
