/*
Vynulování stylů prohlížeče u používaných tagů
a nastavení některých iniciálních hodnot
15.5.2007
© Ondřej Vaniš
*/
html, body,
h1, h2, h3, h4, h5, h6,
ul, ol, dl, li, dd, dt,
table, tr, th, td, thead, tbody, tfoot,
form, fieldset, input, select, textarea, label, button,
p, div, span,
pre, blockquote, cite, address, em, strong, sub, sup, code, samp, var, kbd, abbr,
img, object
{
	margin: 0;
	padding: 0;
	border: 0;
}
td {
  vertical-align: top;
}
ul {
  list-style-position: inside;
}
dd {
  margin-left: 1em;
}
a img {
	border: 0;
}
abbr[title] {
	border-bottom: 1px dashed;
	cursor: help
}
a[href^='http:'] {
	padding-right: 9px;
	background-image: url("../pics/link-out.gif");
	background-position: right top;
	background-repeat: no-repeat;
}
a[href^='mailto:'] {
	padding-right: 9px;
	background-image: url("../pics/mail-out.gif");
	background-position: right top;
	background-repeat: no-repeat;
}
hr, a {
}