/*
default_fork_01 ::
	Default boxes and styles
	Forked from default.css on 2008-01-17 by dh
	
	
	© David Högborg
	
*/

body {		color: black;	font-family: verdana, arial;	font-size: 10px;			}a {	color: #898763;	text-decoration: none;}h1 {	color: #898763;	font-family: verdana, arial;		}h2 {	color: #898763;	font-family: verdana, arial;		}

img {
	border: none;	
}
/*	classes*/.aactive {
	
	color: black;	
}

.heavy {

	font-size: 15px;
	font-weight: bold;	
	
}/*	boxes	*/

/*
 * This is for debugging and is used in design-space. 
 * 
 *
 */
/*div {	border: 1px dotted blue;}*/

/*
 * The main center box is parent to all other visible boxes.
 * It gains it's horizontal position from a <center> tag in the body of the document.
 * Since we want rounded corners on the border we pick up a image as the bakground. 
 *
 */#center {		position: relative;	width: 900px;	height: 540px;		top: 50px;/*	left: 0px; */		background: url('../site_graphics/backer.png') top left no-repeat;			text-align: left;		padding: 16px;	z-index: 1;}


/*
 * The logobox is at a negative top position relative to the center box,
 * hovering at the border of the box.
 */

#logo {
	
	position: absolute;
	width: 180px;
	height: 59px;
	
	top: -25px;
	left: 640px;	
	
	background: url('../site_graphics/logo.png') top left no-repeat;
	z-index: 2;
}

/*
 * menu box, holds the navigational instruments
 *
 */

#inner_menu {
	
	position: absolute;
	width: 200px;
	height: 300px;
	
	top: 100px;
	left: 200px;
	
	
	font-size: 10px;
	line-height: 20px;
	color: #898763;
	font-weight: bold;
	
	text-align: right;
	z-index: 2;
}

/*
 * Main contents field
 *
 */

#inner_content {
	
	position: absolute;
	width: 420px;
	height: 300px;
	
	top: 100px;
	left: 410px;
		
	z-index: 2;
	overflow: auto;
}


/*
 * Flash animation
 *
 */

#inner_spanner {
	
	position: absolute;
	width: 500px;
	height: 130px;

	top: 400px;
	left: 335px;
	
	z-index: 2;
	
	background: white;
	overflow: auto;
	
}

/*
 * The inner satellites have their dimentions and
 * position defined in the head of the page that needs them. 
 * They can be variable and controlled by PHP if needed
 *
 */

#inner_satellite_primer {

	position: absolute;
	z-index: 1;	
	
}

#inner_satellite_seconder {

	position: absolute;
	z-index: 1;
		
}

#inner_satellite_tritryer {

	position: absolute;
	z-index: 1;	
	
}

/*
 *  We want a quick view of when the site was updated and at wich revision it is
 *  This box will be at top left at all times.
 *
 */

#version {

	position: absolute;
	width: 230px;
	height: 30px;
	
	top: 0;
	left: 0;
	
	color: white;	
	font-size: 10px;
	text-align: left;
	
}