a.txt { 
	color:blue; 
	text-decoration:none; }
a.txt:visited { color: blue }
a.txt:hover {
	 color: red;	
	 text-decoration: underline;
}

ul {
	margin-left: 4px;
}

ol {
        padding-left: 15px; 
	margin-left:  0px;     /* Negative margin to move the list to the left */
/*	counter-reset: none; */     
}

ol > li {
	list-style: none;
    	display: table-row;
}

ol > li:before {
    	content: "[" counter(list) "]" "\00a0";     	
    	counter-increment: list;
    	display: table-cell;
    	text-align: right;
    	font-weight: bold;
}

input[type=submit] { 
	/* width: 20em;  */
	/* height: 2em;  */
	font-size: 14px;
    	/* font-weight: bold; */
    	color: black;
}
