/***********************************************/

body {
	background-repeat: no-repeat;
}

body, table {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
}


td, th {
	padding-right: 2ex;
	text-align: left;
	vertical-align: top;
}


h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	background-color: #EAEAEA;
	margin-bottom: 0 ;
/*	text-indent: 2.7ex; */
/*	page-break-before: always;*/
	font-size: medium
}

.intcomment {
	font-size: 6pt;
	color: gray;
}


/****/

table.nowrap{
  white-space: nowrap;
}

.nowrap td, .nowrap th {
  white-space: nowrap;
}

.nowrap th {
  white-space: nowrap;
}



/* links */
a:hover 	{  background-color: #FFFF99}
a:link 		{  color: #000066}
a:visited	{  color: #000066}


/*	==========================================================================================
	#list-menu
	==========================================================================================
 */

#list-menu {
	width: 132px;	/* this width value is also effected by the padding we will later set on the links. */
	border: 1px solid #000000;
	background-color: #E9EEE8;
}

/* removing idents and bullets */
#list-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/* a little bit of space between the list items */
#list-menu li {
	margin: 0px 0 0;
}

/* styles for the actual links */
#list-menu a {
	display: block;	/*alle like brede */
	width:140px; 	/* bredde på 'bokser' */
	padding: 0px 0px 0px 10px;
	border-bottom: 1px solid #bbbbbb;
	/*
	border-top: 1px solid #000000;
	border-top: 1px solid #000000;
	border-top: 1px solid #000000;
	background: #ffffff;
	*/
	text-decoration: none; /*lets remove the link underlines*/
	/*
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	opacity: 0.5;
	*/
}

/* The final step is to create the rollover-effect. Like any link rollover effect
   this is done using the pseudo classes which allow us to define the visited, active
   and hover states for the links:
*/
#list-menu a:link, #list-menu a:active, #list-menu a:visited {
	color: #000000;
}

#list-menu a:hover {
	border: 1px solid #000000;
	background: #A2BFAD;
	color: #000000;
}


