/* ------------------------------------------------------------------
   General
------------------------------------------------------------------ */

/* Scrollbars only if needed */
body {	
	margin:0px;
	padding:0px;
	overflow:auto;
        border:none;
}

/* if we need borders around images we will say so */
img {
	border:0px;
}

/* ------------------------------------------------------------------
   Positioning
------------------------------------------------------------------ */
#content {
	position:absolute;
	top:236px;
	left:200px;
	width:500px;				
	z-index:1;
}
#menu {
  	position:absolute;
  	top:311px;
  	left:60px;
	width:100px;
	z-index:1;
}
#theme {		
	left:0px;
	top:0px;	
	width:100%;
	min-width:780px;
		
	/* patch for ie's lack of support for min-width, this line is ignored by non ie browsers */
	width:expression(document.body.clientWidth < 780 ? "780px": "100%" );	
	
	height:200px;
	overflow:hidden;	
	position:absolute;	
	
	/* 001 - this does not work with safari :-(
	padding-top:99px;
	padding-left:62px;
	margin:0px;
	*/
	
	/*right:15px; margin-right:-15px; *//* IE5/Mac horizontal scrollbar fix */	
	z-index:0;
}

/* safari hack to fix 001 */
#theme div {
	top:92px;
	left:62px;
	position:relative;
}
#themeBackground {	
	position:absolute;
	left:0px;
	top:200px;	
	height:200px; /* 200 for background image and bottom image  */
	width:100%;
	min-width:780px;
		
	/* patch for ie's lack of support for min-width, this line is ignored by non ie browsers */
	width:expression(document.body.clientWidth < 780 ? "780px": "100%" );		
	z-index:0;
}

/* ------------------------------------------------------------------
   Colors and backgrounds 
------------------------------------------------------------------ */
/* scrollbar colors */
body {
	scrollbar-face-color:#ffffff;	
	scrollbar-3dlight-color:#ffffff;
	scrollbar-darkshadow-color:#ffffff;
	scrollbar-track-color:#ffffff;
	scrollbar-arrow-color:#bdbdbd; 	
	scrollbar-base-color:#ffffff;
	scrollbar-shadow-color:#bdbdbd;
	scrollbar-highlight-color:#bdbdbd;	
}
body {		
	background-color: #ffffff;	
	background-position:bottom left;
	background-repeat:no-repeat;
}
#theme {	
	background-color:#000000;
	background-position:top left;
	background-repeat:no-repeat;	
}
#themeBackground {	
	background-position:top left;
	background-repeat:no-repeat;	
}

/* ------------------------------------------------------------------
   Text styles and colors
------------------------------------------------------------------ */
a, a:visited, a:hover{
	font-weight:bold;
	text-decoration: none;
	color:#000000;
}
a:hover {
	text-decoration:underline;
}

.content, 
.content h1, 
.content h2 {
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;	
	font-size:9px;
	line-height:18px;
}
.content {
	vertical-align:top;
	color:#5d5d5d;		
}
/* spacing around headings & colors */
.content h1, 
.content h2 {			
	position:relative;
	font-weight:normal;	
	color:#000000;
	margin-bottom:0; 
	margin-top: 0;	
	padding-top:8px;	
}

.content p {	
	margin-top:6px;
	margin-bottom:6px;	
}
.content ul {
	margin-top:6px;
	margin-left:0px;
}
.content strong {
	font-weight:bold;
}

/* ------------------------------------------------------------------
   Decorative elements 
------------------------------------------------------------------ */
/* Arrow on top of each h1 */
.content h1 {	
	padding-left:12px;	
	left:-12px;
	background:url(Arrow.gif) top left no-repeat;	
}
/* Special div for moving menuarrow */
#menuArrowDiv {
	background:url(Arrow.gif) no-repeat;
	position:absolute;	
	width:4px;
	height:16px;
	visibility:hidden;
	z-index:100;
}

/* this list style is without bullets */
ul.Simple 
{
		padding-left:0px;
	margin-left:0px;
}
ul.Simple li {
	list-style-type:none;
	padding-left:0px;
	margin-left:0px;
}
/* ------------------------------------------------------------------
   Menu 
------------------------------------------------------------------ */
#menu a {
	color:#7d7d7d;			
	font-family:Verdana, Arial, Geneva, Helvetica, sans-serif;	
	font-size:9px;	
	font-weight:normal;
	line-height:20px;		
	padding-right:8px;
}
#menu a:hover {
	text-decoration:none;
/*	background:url(Arrow.gif) center right no-repeat;
	padding-right:8px;	*/
}

/* ------------------------------------------------------------------
   Field
------------------------------------------------------------------ */

.FieldTitle, .TextField, .Button {
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;	
	font-size:9px	
}	
.FieldTitle {	
	line-height:18px;
	
	font-weight:normal;	
	color:#000000;			
	vertical-align:text-top;	
	
	padding-right:20px;	
}
.TextField {
	color: #5d5d5d;					
	border-color:#7d7d7d;
	border-width:1px;
	border-style:solid;
}
.Button {
	color: #7d7d7d;	
	background-color:#ffffff;		
	border-style:none;	
	font-weight:bold;	
	
	border-color:#d3d3d3;
	border-width:1px;
	border-style:solid;	
}

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
#footer {
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
	font-size:9px;	
	color:#7d7d7d;
	
	position: absolute;  /* Needed for Safari */
	bottom:0px;
	left:200px;
	
	padding-top:20px;
	padding-bottom:35px;	
}


/* ------------------------------------------------------------------
   Adaptions for print only
------------------------------------------------------------------ */
	
@media print {	
	#menu { 
		display:none; 
	}
	
	div#content, #footer { 
		left:50px; 
	}
}