/* 
   Standard-Layout 
   wird für alle gelisteten html-Tags verwendet. Abweichende oder zusätzliche
   Angaben werden aus den einzelnen classes oder individuellen Formaten 
   übernommen
*/
body,p,a,th,td,tr,table,div,p,input,span,li,H2,H1
{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;   
  font-size: 9pt;
  color: Black;
  margin: 0cm 0cm 0cm 0cm;
}

/*------------------------------------------------------------------------------
       Individuelle Formate
  ------------------------------------------------------------------------------*/
  
/*  
  Bsp: 
  "<table class=rahmen border=0 id='bg_color'>"
  Klasse Rahmen wird um Hintergrundfarbe erweitert
  
  "<a class=nav_headline id='bg_color' id='color' href=...>...</a>"
  Farbangabe und Hintergrundfarbe aus A.link werden mit bg_color und color 
  überschrieben
*/   
#color 
{
	color: #FF0000;
}

#bg_color 
{
	background-color : #E0E0E0;
}

#underl 
{
	text-decoration: underline;
}

std 
{
}

/*------------------------------------------------------------------------------
    FormatKassen
    "<div class=headline>...</div>" oder 
    "<div class=title>...<h1>...</h1>...</div>"
    werden Klassen mehrfach definiert, so addieren sich die Attribute, bzw
    zuletzt definierte Attributwerte gelten 
  ------------------------------------------------------------------------------*/

.headline, H1				   /* headline verwendet in ols print-Klassen, H1 nicht verwendet*/
{
    font-size: 22px; 
    margin-bottom: 15px;    
    color: #0059AD
}

.subline, H2     				/* subline in adb_print_exibitor.inc.php, h2 in error.php */
{  
   font-size: 14px; 
   font-weight: bold;    
}

.title, H3 						/* nicht verwendet! */
{  
   font-size: 12px; 
   font-weight: bold; 
   color: #FF0000
}

/* adb_print_exibitor.inc.php, header.html, header_nav.html */
.nav_headline 
{  
   font-size: 11px; 
   font-weight: bold; 
   color: #FF0000
}

.nav_ebenen 
{  
   font-size: 11px;  
}


/* Rahmen */
.rahmen
{
	border-width:1px;
	border-style:solid;
   border-color:#CCCCCC;
	text-align:justify;
}

/* Tabellenkopf */
.tabhead 
{
	font-size: 10pt;
	font-weight : bold;
	background-color: #DEDFDE;	
}

/* Tabellendaten */
.tabdata 
{
	text-align:left;
}

/* Tabellendaten */
.tabdatanumber
{
	text-align: right;
}

/* Tabellendaten */
.tabdatatext 
{
	text-align: left;	
}

/* Tabellendaten mit hinterlegtem Hintergrund*/
.tabdata_bg 
{
	background-color: #E0E0E0;
	text-align:left;
}


/*------------------------------------------------------------------------------
       Formate für Links
  ------------------------------------------------------------------------------*/

A
{	
	background-color:transparent;	
}

A:link 
{
	text-decoration: none;
}

A:visited 
{
   text-decoration:none;
}

A:active 
{
}

A:hover 
{
	color:#FF0000;	
}
