* {
	padding: 0;
	margin: 0;
	}

/* Background - a small image goes a long way, and basic font styling */
body {
	background: url(../images/body.jpg);
	text-align: center;
	font-family:Georgia, "Times New Roman", Times, serif;
     color: #000;
	}
	
	
	/* Now we figure out how wide our main page is  - Alignment comes from the margin calls here combined with the text-align: center in the body call*/	
#container
	{
	width: 970px;
	margin-left: auto;
	margin-right: auto;
	}
	
	/* Area to put the main heading text in */	
#header
	{
	width: 970px;
	padding: 0em;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
}

/* Farhner Image Replacement - the code says its a header with the sitename, so we replace the header text with this header image - sweet  :-) )*/
#logo
	{
	background: url(../images/header.jpg) top left no-repeat;
	width: 970px;
	height: 248px; 
	text-indent: -5000px;
	}
	
	/* Start of the main content once the header has been done */
#core
	{
	text-align: left;
	padding: 0em;
	}
	
	/* Static menu area */
#menu
	{
	width: 229px;
	height: 318px;
	position: relative;
	}
/* Workaround for IE flicker bug for the menu items - partly based on Pixy's CSS rollovers without flicker */
#menu a:hover {
	top: 0px;
	left: 0px;
}
#menu a:active {
	top: 0px;
	left: 0px;
}


/* Menu items - menu(number) items are just image padding, the rest are declared as id's within their href calls - see index.php code for this */	
/* Float left for everything to speed up layout generation - it's a quick way of doing faux tabling */
#menu1
	{
	height: 44px;
	width:63px;
	float: left;
	background: url(../images/menu1.jpg) top left no-repeat;
	}

#eaa
	{
	height: 56px;
	width:229px;
	float: left;
	background : url(../images/eaa.jpg) no-repeat 0% 0%; 
	text-decoration : none;
	}

#menu2
	{
	height: 44px;
	width:37px;
	float: left;
	background: url(../images/menu2.jpg) top left no-repeat;
	}	

#forum
	{
	height: 54px;
	width:229px;
	float: left;
	background : url(../images/forum.jpg) no-repeat 0% 0%; 
	text-decoration : none;
	}

#menu2
	{
	height: 44px;
	width:37px;
	float: left;
	background: url(../images/menu2.jpg) top left no-repeat;
	}
	
#foto
	{
	height: 48px;
	width:229px;
	float: left;
	background : url(../images/foto.jpg) no-repeat 0% 0%; 
	text-decoration : none;
	}

#menu3
	{
	height: 44px;
	width:37px;
	float: left;
	background: url(../images/menu3.jpg) top left no-repeat;
	}
	
#kal
	{
	height:55px;
	width:229px;
	float: left;
	background : url(../images/kalendarz.jpg) no-repeat 0% 0%; 
	text-decoration : none;
	}

#menu4
	{
	height: 44px;
	width:47px;
	float: left;
	background: url(../images/menu4.jpg) top left no-repeat;
	}

#kontakt
	{
	height: 59px;
	width:229px;
	float: left;
	background : url(../images/kontakt.jpg) no-repeat 0% 0%; 
	text-decoration : none;
	}

#menu5
	{
	height: 44px;
	width:34px;
	float: left;
	background: url(../images/menu5.jpg) top left no-repeat;
	}
	
#linki
	{
	height: 79px;
	width:229px;
	float: left;
	background : url(../images/linki.jpg) no-repeat 0% 0%; 
	text-decoration : none;
	}

#menu6
	{
	height: 44px;
	width:22px;
	float: left;
	background: url(../images/menu6.jpg) top left no-repeat;
	}
	
#menu7
	{
	height: 44px;
	width:28px;
	float: left;
	background: url(../images/menu7.jpg) top left no-repeat;
	}


/* Main content area  - faux columns CSS as previously seen on AListApart.com */
/* One image for the background and borders with some padding for the internal layout, so as to move the content text itself off the borders */

#content
	{
	background: url(../images/content.jpg);
	padding-left: 270px;
	padding-top: -300px;
	padding-right: 30px;
	min-height: 330px;
	}


/*  Side bar - sprawdzic

/* Split the main content area into two columns - via static widths and a float */
#sidebar
	{
	width:180px;
	float: left;
}
	
#bodytext {
	width: 520px;
}

/* Make sure the font size for links and paragraphs doesn't break */ 
 p, a {
	font-size: 0.8em;
}


/* Footer  - need I say more? */
 #footer
	{
	background: url(../images/foot.jpg);
	width: 970px;
	height: 100px;
	}


 /* Mambo specific calls - there are more out there, this is just a reduced set for high speed layout*/
/* Formatting for modules */
table.moduletable
	{
	width: 95%;
	padding-left: 2px;
	text-align: left;
}

/* Heading text of the modules */
table.moduletable.th {
	text-align: left;
	font-weight: bold;
	font-size: 1em;
}

/* content/data text for the modules */
table.moduletable.td {
	font-size: 0.7em;
	font-weight: lighter;
}

/* All internal headings, including the contact page */
.contentheading, .componentheading, .contact.th {
	font-weight: bold;
	font-size: 1em;
}

/* Pathway and other stuff */
.small {
	font-weight: bold;
	font-size: 0.6em;
}

.createdate, .modifydate {
	font-size: 0.8em;
}