/* ---------------------------------------------

	CLICKWERK.JS
	Basic-Stylesheet für clickwerk.ch. Hier wer-
	den auch alle weiteren Stylesheets included.

	Autor:				FM
	Erstellungsdatum:	12.09.2006
	
	Index:				Imports
						Generelle Element Definitionen
						Layout Containers
						Layout Elemente
						Navigation
						Subnavigation
						Titel
						Link Definitionen
						
--------------------------------------------- */

/* ---------------------------------------------
	Imports
--------------------------------------------- */



/* ---------------------------------------------
	Generelle Element Definitionen
--------------------------------------------- */

	* {
		padding: 0;
		margin: 0;
	}
	
	/* FF Hack damit Scrollbar immer angezeigt wird */
	html {
        overflow-y: scroll;
		overflow-x:hidden; /* horiz. scroll verstecken */
	}

	body {
		background: url(../images/layout/body-background.gif) #FFF top repeat-x;
		font: 11px/15px Arial, Helvetica, sans-serif;
	}

	p {
		margin-bottom: 12px;
	}
	a {
		color:#eee;
		font-size: 1em;
		text-decoration:none;
		outline:0;
	}
	img {
		border:0px;
	}
	a.textlink, a.textlink:link, a.textlink:active, a.textlink:visited {
		color: #e84224;
		font-size: 1em;
		text-decoration: underline;
	}
	a.footerlink, a.footerlink:link, a.footerlink:active, a.footerlink:visited {
		color: #999;;
	}
	a.textlink:hover {
		background: #e43f21;
		color: #EEEEEE;
		text-decoration: none;
	}
	a.nolinklink:hover {
		background:none;
		text-decoration: none;
	}
	div#content a {
		color: #e84224;
		font-size: 1em;
		text-decoration: underline;
	}
	div#content a:hover {
		background: #e43f21;
		color: #EEEEEE;
		text-decoration: none;
	}
