table.FormsLayout
{
	margin: 5px auto 5px auto;
	border: 1px solid #aaa;
	border-collapse: separate;
	border-spacing: 0px;
	background: none;

	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;

	box-shadow: 0 0 6px #444;
	width: 700px;
}

table.FormsLayout > tbody > tr:first-child > td,
table.FormsLayout > tbody > tr:first-child > th
{
	border-top-left-radius: 9px; -moz-top-radius-bottomleft: 9px; -webkit-border-top-left-radius: 9px;
	border-top-right-radius: 9px; -moz-top-radius-bottomright: 9px; -webkit-border-top-right-radius: 9px;
}

table.FormsLayout > tbody > tr:last-child > td,
table.FormsLayout > tbody > tr:last-child > th
{
	border-bottom-left-radius: 9px; -moz-border-radius-bottomleft: 9px; -webkit-border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px; -moz-border-radius-bottomright: 9px; -webkit-border-bottom-right-radius: 9px;
}

table.FormsLayout > tbody > tr
{
	background: none;
}

table.FormsLayout > tbody > tr > th
{
	font-size: 16pt;
	padding: 8px 16px;
	border-width: 0px;
}

table.FormsLayout > tbody > tr > th:first-child
{
	border-bottom: 2px solid #aaa;
}

table.FormsLayout > tbody > tr > th:last-child
{
	border-top: 2px solid #aaa;
}

table.FormsLayout > tbody > tr > td
{
	text-align: center;
	vertical-align: middle;
	background: none;
	border-width: 0px;
	padding: 5px 10px;
}

table.FormsLayout > tbody > tr > td.Left
{
	text-align: left;
}

table.FormsLayout > tbody > tr > td.Column1
{
	text-align: right;
	font-size: 11pt;
	color: #666;
}

table.FormsLayout > tbody > tr > td.Column1,
table.FormsLayout > tbody > tr > td.Column3
{
	width: 140px;
}

table.FormsLayout > tbody > tr > td.Column2
{
	width: 240px;
}

table.FormsLayout input[type='text'],
table.FormsLayout input[type='password'],
div.SitePanel input[type='text'],
div.SitePanel input[type='password']
{
	width: 100%;
	font-size: 11pt;
	padding: 4px 7px;

	margin: 2px;
	border: 1px solid #ccc;
	border-radius: 5px;

	background: #dddddd;
	background: -moz-linear-gradient(top, #dddddd 0%, #ffffff 25%);
	background: -webkit-linear-gradient(top, #dddddd 0%,#ffffff 25%);
	background: linear-gradient(to bottom, #dddddd 0%,#ffffff 25%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#ffffff',GradientType=0 );

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

table.FormsLayout input[type='checkbox']
{
	margin: 5px;
	width: 14pt;
	height: 14pt;
	display: inline-block;
	vertical-align: middle;
}

table.FormsLayout input[type='checkbox']:checked + label
{
	color: #0a0;
}

table.FormsLayout input[type='radio']
{
	margin: 5px;
	width: 14pt;
	height: 14pt;
	display: inline-block;
	vertical-align: middle;
}

table.FormsLayout input[type='radio']:checked + label
{
	color: #0a0;
}

table.FormsLayout label
{
	line-height: 2.0em;
}

table.FormsLayout hr
{
	border-width: 0px;
	border-top: 1px solid #aaa;
	border-bottom: 0px;
}

table.FormsLayout > tbody > tr > td > span
{
	padding: 0px 25px;
}

table.FormsLayout > tbody > tr > th.Special
{
	color: #000;
	background: #ffa;
	font-size: 1.0em;
	text-align: center;
}

table.FormsLayout > tbody > tr > th.Special2
{
	font-size: 1.0em;
	text-align: center;
}

/* Wygląd menu gdy mamy małą szerokość okna: */
@media screen and (max-width: 750px)
{
	table.FormsLayout
	{
		width: 100%;
	}

	table.FormsLayout > tbody > tr > td
	{
		padding: 5px 4px;
	}

	table.FormsLayout > tbody > tr > td.Column1,
	table.FormsLayout > tbody > tr > td.Column3
	{
		width: auto;
	}

	table.FormsLayout > tbody > tr > td > span
	{
		padding: 0px 15px;
	}

	table.FormsLayout > tbody > tr > td > span a
	{
		display: inline-block;
		margin: 10px;
	}
}

table.FormsLayout > tbody > tr > td > ul
{
	list-style: none;
	margin: 0px;
	padding: 0px;
}

table.FormsLayout > tbody > tr > td > ul > li
{
	display: inline;
	margin: 0px 15px;
}