DIV.komunikat {
	
	width: 100%;
	
	background: #b2ff67;
	border: solid 1px rgb(0, 0, 0);
	
	line-height: 28px;
	
	font-size: 24px;
	font-weight: normal;
	color: #000000;
	
	margin: auto auto 20px auto;
	
	padding: 5px;
	
	text-align: center;

}

DIV.formularz {
	
	width: 100%;
	
	padding: 0px 10px;
	margin-top: 20px;
	
}

	DIV.formularz > DIV.etykieta {
	
		display: inline-block;
	
		width: 290px;
		height: 32px;
		
		line-height: 32px;
		font-size: 16px;
		
		padding: 0px;
		margin-bottom: 10px;
		
		vertical-align: middle;
	
	}
	
	DIV.formularz > DIV.blad {
		
		color: #ff5656;
		
	}
	
	DIV.formularz > DIV.wartosc {
	
		display: inline-block;
	
		width: 290px;
		height: 32px;
		
		padding: 0px;
		margin-bottom: 10px;
		
		text-align: right;
	
	}
	
		DIV.formularz > DIV.wartosc > INPUT[type='text'] {
			
			width: 100%;
			height: 32px;
			
			background: rgb(240, 240, 240);
			border: solid 1px rgb(196, 196, 196);
			
			line-height: 18px;
			font-size: 16px;
			
			padding: 6px;
			
		}
		
		DIV.formularz > DIV.wartosc > SELECT {
			
			width: 100%;
			height: 32px;
			
			background: rgb(240, 240, 240);
			border: solid 1px rgb(196, 196, 196);
			
			line-height: 26px;
			font-size: 16px;
			
			padding: 2px;
			
		}
		
		DIV.formularz INPUT[type='submit'] {
			
			width: 100%;
			height: 32px;
			
			background: rgb(240, 240, 240);
			border: solid 1px rgb(196, 196, 196);
			
			line-height: 20px;
			font-size: 16px;
			
			padding: 6px;
			margin-top: 10px;
			
		}
		
		DIV.formularz INPUT[type='text']:focus {
			
			background: rgb(255, 255, 255);
			
		}
		
		DIV.formularz TEXTAREA {
			
			width: 100%;
			height: 300px;
			
			background: rgb(240, 240, 240);
			border: solid 1px rgb(196, 196, 196);
			
			line-height: 20px;
			font-size: 16px;	
			
			padding: 6px;
			margin-top: 10px;
			
			resize: none;
			
		}
		
		DIV.formularz TEXTAREA:focus {
			
			background: rgb(255, 255, 255);
			
		}