
@import url(css/basic.css);
@import url(css/topnavi.css);
@import url(css/header.css);
@import url(css/contentstyling.css);
@import url(css/suchform.css);
@import url(css/news.css);
@import url(css/navi.css);
@import url(css/rightcol.css);
@import url(css/mailform.css);
@import url(css/tables.css);

/* Start of disabled alternative */
div#maincont .bodytext{
	font-size:1.5em;
}
div#maincont h1{
	font-size:1.7em;
	line-height:120%;
}
div#maincont h3{
	font-size:1.5em;
	line-height:120%;
}
/* Start of CMS style sheet 'Layout: Left sidebar + 2 columns' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/

* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: center;
   font-family: Arial, Helvetica, Verdana, Geneva,  sans-serif;
   font-size: 13px;
   line-height: 1em;
   background:  #EFEFEF;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 13px;;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   color: #999999; 
}

a:visited {
   text-decoration: none;
  /*color: #a20202;                 a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;

   color: #000000;
   text-decoration:underline;
}

/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/* 
menu links accesskeys 
*/
span.accesskey {
   text-decoration:none;
}

/* 
accessibility divs are hidden by default 
text, screenreaders and such will show these 
*/
.accessibility, hr {
   position: absolute;
   top: -999em;
   left: -999em;
}

/* 
definition tags are also hidden 
these are also used for menu links    
*/
dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
/* end accessibility */

/* clearing */
/* 
clearfix is a hack for divs that hold floated elements. it will force the holding div to span all the way down to last floated item.
We strongly recommend against using this as it is a hack and might not render correctly but it is included here for convenience.
Do not edit if you dont know what you are doing
*/
	.clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	* html>body .clearfix {
		display: inline-block; 
		width: 100%;
	}
	
	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}

/* end clearing */
/* End of 'Accessibility and cross-browser tools' */


