/*

Formatowanie zwykłego akapitu

*/
p {
	margin: 0.5em 0em;

	text-indent: 2em;
	text-align: justify;
}

/*

Formatowanie akapitu bez wcięcia

*/
.bez_wciecia {
	text-indent: 0em;	
}

/*

Formatowanie akapitu centrowanego

*/
.centrowany {
	text-align: center;
}


/*

Formatowanie hiperłączy

*/

a {
	text-decoration: none;
	font-style: italic;
}

a:link {
	color: rgb(0%, 0%, 100%);
}

a:visited {
	color: rgb(40%, 40%, 40%);
}

a:hover {
	text-decoration: underline;
}

/*

Formatowanie linii rozdzielających

*/

hr {
	width: 100%;

	margin: 1em 0em;
}

/*

Formatowanie mysli przewodniej 

*/
.motto {
	width: 40%;
	margin: 0em 0em 1em 0em;

	text-indent: 0em;

	font-style: italic;
	text-align: justify;
}

/*

Formatowanie sygnatur w tekście

*/
.sygnatura {
	margin: 2em 0em 0em 70%;
	padding: 0em;

	text-align: left;
	
	text-indent: 0em; 
}

/*

Formatowanie linków "powrót na górę strony"

*/
.powrot {
	margin: 1.5em 0em 1em;
}

