/* the main-css-file */
/* contains font-family, -size, colors... */

body {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:100.01%; /* if you want to use a font-size-switcher, be sure to have relative font-size only! */
}

/* colored scrollbar, only works with ie */
*html body {
	border-right:1px solid #C1B180;
}
html {
	scrollbar-face-color: #C1B180;
	scrollbar-highlight-color: #C1B180;
	scrollbar-3dlight-color: #C1B180;
	scrollbar-darkshadow-color: #C1B180;
	scrollbar-shadow-color: #C1B180;
	scrollbar-arrow-color: #F8F5E2;
	scrollbar-track-color: #F8F5E2;
}

/* some colors */
#content,
#left, 
#footer {
	color:#333333;
}

#content a,
#left a,
#footer a {
	color:#A38A15;
}

#content a:hover,
#footer a:hover,
#left a:hover {
	color:#C58906;
}

/* font-sizes */
#menu       {font-size:.8em;}
#content    {font-size:.7em;}
#footer     {font-size:.7em;}
h1          {font-size:1.6em;}
h2          {font-size:1.2em;}


