/*CSS rules for Joe Pippin Auctioneers web site, current to Jan '10*/
html, body {/*Affects the entire site; sets the basic font, it's color and size, resets all margins and padding to zero to account for different browser defaults, sets background image (if any), sets page height at 100% of viewport(to facilitate vertical centering)*/
	/*background: url(images/blue_paper.gif);*/
	font: normal .85em "Comic Sans MS", cursive;
	height: 100%;
	padding: 0;
	margin: 0;
	background-color: #ffffc6;
}
table {/*Used primarily for vertical centering on pages but influences all tables on the site by setting text align to center*/
	text-align: center;
	height: 100%;
	width: 100%;
}
#container {/*Sets 95% standard width (to accomodate small viewports) for all pages and sets horizontal centering for all pages*/
	width: 95%;
	margin: 0 auto;
}
#swatheading {/*Special to center align SWAT logo images, aligns within space and adds separating line--bb*/
	width: 95%;
	padding: .5%;
}
#heading {/*As above but right aligns text for all other non-SWAT pages--bb*/
	width: 100%;
	background-color: #ffffc6;
	border-bottom: thin solid #800000;
	padding: .5%;
	text-align:right;
	font-weight: bold;
}
#footer {/* Reduces size of text, emgboldens it, makes it lighter in color and adds separating line*/
	font-size: smaller;
	color: #333;
	font-weight: bold;
	border-top: thin solid #800000;
}
#partiallist {/*Makes preformed text of partial listings smaller and fully justified*/
	text-align: justify;
	font-size: small;
}
h1, h2, h4, h5, h6 {/*Converts these to Brick Red, h3 is left Black for contrast*/
	color: #800000;
}
a {/*Emboldens all text links*/
	font-weight: bold;
}
a:link {/*Applies to all text links in the site...bb*/
	color: black;
	text-decoration: none;
	background-color: Transparent;
}
a:visited {/*Applies to all text links in the site...bb*/
	color: black;
	text-decoration: none;
	background-color: Transparent;
}
a:hover {/*Applies to all text links in the site...bb*/
	color: #FF0000;
	text-decoration: underline;
	background-color: Transparent;
}
a:active {/*Applies to all text links in the site...bb*/
	color:#FF0000;
	text-decoration: none;
	background-color: Transparent;
}
.leftalign {/*Compensates for defaulted centered test setting as needed, used in tables*/
	text-align: left;
}
.centeralign {/*Restores or creates centered text as necessary*/
	text-align: center;
}
.eventext {/*Used to align text (Usually partial list items)*/
	text-align:justify;
}
.boldtext {/*Emboldens isolated text as necessary*/
	font-weight:bold;
}
#linksbox {/*Container for text links on all pages*/
	width: 99%;
}
#navlist { /*Used in above, 0ff sets any previous settings*/
	padding: 0;
	margin: 0;
}
#navlist li {/*Sets link display to in-line and adds some space*/
	list-style: none;/*
	margin: 5px;*/
	display: inline;
	padding: 0.25em 0.5em 0.25em 0.75em;
}
.autoauctiontext {/*Special coloring, size etc for auto auctions used in auction schedule to highlight text*/
	background-color:blue;
	font: normal bold large "Comic Sans MS", cursive;
	color: #FFF;
}
.publicauctiontext {/*Special coloring, size etc for public auctions used in auction schedule*/
	background-color:red;
	font: normal bold large "Comic Sans MS", cursive;
	color: white;/*color of text*/
	
}
.messagetext {/*Special coloring, size etc for attention getting boxes*/
	background-color:#0C3;
	font: normal bold large "Comic Sans MS", cursive;
	color: white;/*Text color*/
}
.smallcapps {/*Used for emphasing and coloring text in auction schedule and elsewhere*/
	font: normal bold small-caps small "Comic Sans MS", cursive;
	color: white;/*Color of text*/
}
.minicapps {/*As above with smaller font*/
	font: normal bold small-caps smaller "Comic Sans MS", cursive;
	color: #FFF;
}
.miniborder {/*Used in association with colored text in auction schedule*/
	border:2px inset grey;
}
.nocatmessage {
	font-size:larger;
	font-weight:bold;
}
