/** 
 * Contains style directives for the Kurtz Bros webpage.  These 
 * directives are applicable to the text-only pages in the KB
 * system. 
 * 
 * Written by Matthew C. Hoover, Kurtz Bros.
 */
  
/* Header elements in the page.  We shrink them a little bit 
   so they're not overwhelmingly large compared to the regular 
   text. */ 
H1   {
	font-size: 110%;
}
H2	{
	font-size: 100%;
} 

/* Table containing user input areas. */ 
TABLE.input TH { 
	vertical-align: top;
     text-align: left;
}	

/* Area containing buttons for display on the page. */ 
DIV.buttons { 
	margin-top: 3mm;
}

/* Links. */
A 	{
	color: blue;
	text-decoration: none;
}
A:hover {
	text-decoration: underline;
}

/* Links at the top of the page. */
div.small_links { 
	margin-top: 2mm;
	margin-bottom: 2mm;
}

/* Item stuff */
TABLE.items { 
	width: 75%;
	text-align: center;
	border: 1px solid black;
}
TABLE.items TH { 
	border: 1px solid black;
}
TABLE.items TD { 
	border: 1px solid black;
}
TABLE.items INPUT { 
	width: 90%;
}


/* Index page stuff. */ 
table.index_segments td { 
	padding-right: 3mm;
}


/* Search result page stuff. */ 
table.search_results td { 
	padding: 2mm;
