  a {text-decoration: none}
  a[name] {
    color: ... !important;
    background-color: transparent !important
  }
	 /* CSS2-compliant browsers implement a:hover also for named anchors;
	   in order to avoid a:hover to change properties of named anchors they must define as important;
	   in this solution a:hover should not use the !important rule */
    a:link {
    	color: #000a69;
	font-family: sans-serif;
	font-size: 12px;
	text-decoration: none;} /* unvisited link */
    a:visited {
    	color: #000372;
	font-family: sans-serif;
	font-size: 12px;
	text-decoration: none;} /* visited link */
    a:hover {
    	color: #E1444B;
	font-family: sans-serif;
	font-size: 12px;
	text-decoration: underline;} /* the mouse "hovers" over the link */
    a:active {
    	color: #000372;
	font-family: sans-serif;
	font-size: 12px;
	text-decoration: underline; background-color: transparent;} /* according to CSS2-specification :active should work between on-mouse-down and on-mouse-up events but according to CSS1 the link stays marked until the user click with mouse to another place */
    a:focus {
    	color: #E1444B;
	font-family: sans-serif;
	font-size: 12px;
    	text-decoration: none;
    	background-color: transparent;} /* :active and :focus are different states; Only :focus should leave the link marked until the next click of the mouse (:focus is designed primary into keyboard navigation and form control elements; browsers are not obliged to support it with the A element) */

a:visited:hover {
	color: #E2454c;
	font-family: sans-serif;
	font-size: 12px;
	text-decoration: underline;
} /* Pseidoklase. Darbojas CSS2 atbalstoshos paarluukos (Gecko). Atljauj pielietot hover uz apmekleetiem linkiem. M$IE nedarbojas. */


BODY {
	font-family: sans-serif;
	font-size: 12px;
}

H2 {
	font-family: sans-serif;
	font-size: 15px;
}

H1 {
	font-family: sans-serif;
	font-size: 15px;
	font-weight: bold;
}

H3 {
	font-family: sans-serif;
	font-size: 9px;
}

TD {
	font-family: sans-serif;
	font-size: 12px;
}

IMG { border: 0; }

TR.izc_rinda  { background-color: #DCE2E7; }

.warn { color: red;
	font-weight: bold;
 }

tr.rinda:hover  { background-color: lightgray; }

ul.nedekorets { list-style-type: none; margin-left: 1.5em; margin-top: 0.2em; margin-bottom: 0; 
	padding:0.1em; }
