	/**
	 * style.css
	 *
	 * Plik zawiera cały opis warstwy prezentacji dokumentu
	 *
	 * @author	Marcin Badurowicz <m at badurowicz dot net>
	 * @version	1.6	 
	 */

	/* Style ogólne */
	html
	{ 
		margin-bottom: 0.1em;
		background: #fff;
	}

	body
	{
		font-size: 90%;
		font-family: 'Tahoma', Verdana, Arial, sans-serif;
		text-align: left;
		color: #444;
	}
	
	h1
	{
		margin-left: 2em;
	}
	
	/* Style do menu przełączania typu funkcji walidujących */
	div#menu
	{
		position: absolute;
		top: 0;
		right: 3em;
		padding: 0.2em;
		margin: 0.2em;
		background-color: rgb(152, 157, 13);
		color: #fff;
		text-align: left;
	}
	
		div#menu ul
		{
			list-style-type: none;
			padding-left: 0;
			margin-left: 0;
		}
		
			div#menu ul li a
			{
				text-decoration: none;
				display: block;
				color: #fff;				
			}
			
			div#menu ul li a:hover
			{
				text-decoration: underline;				
			}
			
			div#menu ul li a.active
			{
				background-color: #fefefe;
				color: #000;
			}
	
	/* Style dla formularza */
	#f
	{
		width: 600px;
		margin: 0 auto;
		padding: 50px 50px 0 2em;
		text-align: left;
		font-size: 1em;
		background: transparent url('img/bar.jpg') repeat-y scroll left;
	}
	
		#f fieldset
		{
			border: 0;
			padding: 0;
		}
		
		#f input
		{
			border: 0;		
			border-bottom: 1px dotted #000;
		}
		
		/* Błędnie wypełnione pole formularza */
		#f input.error, #f textarea.error
		{
			border: 1px solid rgb(122, 0, 0);
		}
		
		#f #send, #f #reset
		{
			border: 0;
			background-color: rgb(217, 217, 217);
		}
		
		#f #send
		{
			font-weight: bold;
		}
		
	/* Stopka */
	#footer
	{
		padding: 5px 0;
		clear: both;
		border-top: 1px solid rgb(184, 104, 0);
		border-bottom: 0;		
		margin: 1em auto 0 auto;
		width: 50%;
		text-align: center;
	}
	
	/* Komórki tabeli: zwykła i z opisem błędu wypełnienia pola */
	td
	{
		text-align: justify;
	}
	
	td.error
	{
		background: rgb(255, 232, 181) url('img/Error24.png') no-repeat scroll top right;
		padding-right: 27px;
		min-height: 27px;
		text-align: left;
	}