/*
	main.css - css for my downloads web site - Bob Hinkley
	08/10/12: copied main.css from tips/css folder
*/

html, body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, pre, code, address, variable, form, fieldset, blockquote {
 padding: 0;
 margin: 0;
 font-size: 100%;
 font-weight: normal;
}
table { border-collapse: collapse; border-spacing: 0; }
td, th, caption { font-weight: normal; text-align: left; }
img, fieldset { border: 0; }
ol { padding-left: 1.4em; list-style: decimal; }
ul { padding-left: 1.4em; list-style:square; }
q:before, q:after { content:''; }
/* end of code from reset.css */

body {
	margin-left: 20px;
	max-width: 800px;
}

h1 {
	font-size: 120%;
	font-weight: bold;
	margin: 0 auto 0 auto;
}
h2 {
	font-size: 100%;
	font-weight: bold;
	font-variant: small-caps;
	color: blue;
	margin: 0 auto 5px auto;
}
h3 {
	font-size: 100%;
	font-weight: bold;
	color: blue;
	margin: 0 auto 2px 15px;
}

/* default link behavior */
a:hover {
	color: white;
	background: #777;
}

/* navigation links at top of each page */
ul.nav {
	text-align: left;
	margin: 15px 0 15px 0;
}
ul.nav li {
	display: inline;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ul.nav a {
	text-decoration: none;
	color: blue;
	font-weight: bold;
	margin: 2px;
	padding: 1px 3px 1px 3px;
	border: 1px solid #DC9000;
	background: #FDE2B8;
}
ul.nav a:hover {
	color: white;
	background: #DC9000;
}
ul.nav li.issord a {
	border: 1px solid #083;
	background: #BDB;
}
ul.nav li.issord a:hover {
	background: #083;
}
ul.nav li.nolink {
	color: gray;
	margin: 2px;
	padding: 1px 2px 1px 3px;
	border: 1px solid gray;
	background: white;
}

/* print only styles */
/* want to suppress printing links at top of page */ 
@media print {
	ul.nav, ul.mo {display: none;}
}