/*Stylesheet für die Transnusic Seiten.
Dieses Stylesheet kann als globale Formatierungsdatei eingesetzt werden.
Dafür muss lediglich folgende Zeile in den <head></head> Bereich der HTML-Datei
eingebunden weden. Am Besten ganz unten im <head>
<link rel="stylesheet" type="text/css" href="Pfadangebe/Dateiname.css">

---Ende des Kommentars--- */


/* beschreibt die Grundlegenden Eigenschaften des Dokumentes */
body	{
	background-image: url(../img/bg.gif);
	background-attachment: scroll; 
	background-repeat: repeat-y; 
	background-position: 0px 100px;
	background-color: #8C8DBF; /* Hintergrundfarbe */
	font-family: arial, verdana; /* Schriftart */
	font-size: 11px; /* Schriftgrösse */
	color: #ffffff; /* Schriftfarbe */

/*Gestaltung des Browser-Scrollbalkens - nur für I-Explorer */
	scrollbar-DarkShadow-Color:#2B2D7D;
	scrollbar-Track-Color:#8C8DBF;
	scrollbar-Face-Color:#2B2D7D;
	scrollbar-Shadow-Color:#2B2D7D;
	scrollbar-Highlight-Color:#2B2D7D;
	scrollbar-3dLight-Color:#2B2D7D;
	scrollbar-Arrow-Color:#ffc700;
}

/* Listen */
li	{	
	list-style-type:circle;
	color:#05008C;
}

/* Beschribt die Eigenschaften der Inhalte von Tabellenzellen <td></td> */
td	{
	vertical-align: top; /* Inhalte der Zelle werden oben positioniert */
	font-size:12px;
	color:#ffc700;
}

/* Beschreibt die Eigenschaften von Absätzen im <p></p> TAG */
p	{
	text-align: justify; /* Text im Blocksatz: andere Werte sind left, right, center */
	font-family: arail, verdana;
	font-size: 13px;
	color: black;
}

/* Linkeigenschaften für normale Text-Links */
a:link	{	/* normal */
	color:#666666;
	font-size:12px;
	font-weight:normal;
	text-decoration:underline; 
}

a:visited	{	/* besucht */
	color:#666666;
	font-size:12px;
	font-weight:normal;
	text-decoration:underline;
}

a:hover	{	/* beim darüber streichen */
	color:red;
	font-size:12px;
	text-decoration:none; 
}

a:active	{	/* wenn angeklickt */
	color:black;
	font-size:12px;
	font:weight:normal;
	text-decoration:none; 
}


/* Hauptmenü mit Rollover-Effekten*/
a.menu	{	/* vordefinierte Linkeigenschaften */
	text-align:center;
	font-family:verdana, arial, helvetica, sans-serif;
	font-weight:normal;
	font-size:12px;
	color:black;
	margin-top:3px;
	display:block;
	width:170px;
	padding:0px;
	padding-top:4px;
	padding-bottom:4px;
}

a.menu:link	/* normal */
{	border:solid 1px #ffc700;
	color:#ffc700;
	text-decoration:none;
	background-color:#05008C; 
}

a.menu:visited	/*besucht */
{	border:solid 1px #ffc700;
	color:#ffc700;
	text-decoration:none;
	background-color:#05008C; 
}

a.menu:hover	/*beim darüber streichen */
{	border:solid 1px #ffc700;
	width:250px;
	letter-spacing:0.5em;
	font-weight:bold;
	color:black;
	background-color:#ffc700;
	text-decoration:none; 
}

a.menu:active	/* aktiver Link */
{	border-style:inset;
	border-width:1px;
	border-color:#cccccc;
	color:black;
	background-color:#ffc700;
	text-decoration:none; 
}

