/***************************************************************************************************
* Beschreibung:
* In diesem File werden allgemeine Styles in CSS angegeben. Sie sind, sofern sie nicht von nachfolgend
* eingebundenen CSS oder von lokalen Styles überschrieben werden, auf der ganzen Website gueltig.
* 
* Versionen:
* Initialversion		Herbst 2005			Beat Schilbach
* Update Version 2.5	10. Oktober 2006	Beat Schilbach	
***************************************************************************************************/


/****************************************************************************************************
* DEFAULTS
* - valid for the hole site 
****************************************************************************************************/


/*** tags default-setup
****************************************************************************************************/

/*** default values for p, div tags ****************************************************************/
p,table,tr,th,div {
	/*** positioning ***/
	margin:						0px;
	padding:					0px;

	/*** layout ***/
	border:						0px;

	/*** font ***/
	font-size:					12px;
}

/*** default values for the body *******************************************************************/
body {
	
	/*** positioning ***/
	margin:						0px;										/* clearance to browser border */
	padding: 					0px;											/* no inner clear */		

	/*** layout ***/
	color: 						#000000;
	background-color:			#FFFFFF;

	/*** font ***/
	font-size: 					12px;
	font-family: 				Geneva, Arial, Helvetica ,sans-serif;		
	text-decoration:			none;												/* text does not have an underline */
}


/*** default values for the ancer tag ************************************************************/
a {
	text-decoration:			none;													/* no underline */
	color:						#0033CC;													/* default color */
}

a:hover {
	color:						#6699FF;												/* change color by mouseover to standard blue */
	text-decoration: 			underline;
}

th {
	text-align:					left;
	font-weight:				bold;
}

h1 {
	font-size: 					20px;
	font-weight: 				bold;
}
h2 {
	font-size: 					14px;
	font-weight: 				bold;}
h3 {
	font-size: 					12px;
	font-weight: 				bold;
}
