/* Top-level style sheet for andybettis.com web site */

/* Inport default styles */
@import url(defaults.css);

/* Overall font, colour, link details, etc. */

body {
	color: #000;
	font-family: "Times New Roman", Times, serif;
	}

a {
	color: #000;
	}

a:hover {
	color: #888;
	}

/* bannerBox - the banner at the top of all the pages */

#bannerBox {
	position: fixed;
	width: 100%;
	top: 0px;
	left: 0px;
	height: 86px;
	}
	
/* Fix for IE6 */
* html #bannerBox {position: absolute; }

/* titleBox - holds the top graphic */

#titleBox {
	background-image: url("pix/title2.png");
	background-repeat: no-repeat;
	background-position: center top;
	width: 100%;
	height: 86px;
	}

/* listIndex - vertical list of options */

.listIndex {
	padding: 4px;
	}

.listIndex li {
	margin-bottom: 4px;
	}

.listIndex a {
	font-size: 1.2em;
	padding: 8px;
	}

.listTitle {
	font-size: 1.5em;
	}	

/* rowIndex - horizontal list of options */

.rowIndex {
	margin-top: 12px;
	padding: 4px;
	}

.rowIndex li {
	display: inline;
	margin-bottom: 4px;
	}

.rowIndex a {
	font-size: 1.2em;
	padding: 8px;
	}

/* leftList - lists on the left side */

.leftList {
	float: left;
	text-align: left;
	}

/* rightList - lists on the right side */

.rightList {
	float: right;
	text-align: right;
	}

/* rightPic - floating pictures on the right */

.rightPic {
	float: right;
	margin: 12px;
	}

/* indexBox - navigation index */

#indexBox {
	position: fixed;
	width: 200px;
	top: 90px;
	left: 0px;
	}

/* Fix for IE6 */
* html #indexBox {position: absolute;}

#indexBox h1 {
	font-variant: small-caps;
	font-size: 1.6em;
	margin-bottom: 0px;
	}

.indexBoxTop {
	padding-top: 4px;
	padding-bottom: 20px;
	}
	
.indexBoxTop li {
	font-size: 1.2em;
	font-variant: small-caps;
	padding-left: 12px;
	padding-top: 12px;
	}
	
.indexBoxSub li {
	font-size: 0.9em;
	padding-left: 20px;
	padding-top: 4px;
	}

/* contentBox - the area below the banner */

#contentBox {
	text-align: center;
	margin-top: 86px;
	padding: 12px;
	}

#contentBox a {
	font-weight: bold;
	}

.contentIndexed {
	margin-left: 200px;
	}

.contentNarrow {
	padding-left: 40px;
	padding-right: 40px;
	}

.contentGeneral {
	text-align: left;
	}

.contentSection {
	font-size: 1.4em;
	font-variant: small-caps;
	}
	
.contentSpacer {
	margin-bottom: 24px;
	}
	
/* galleryTable - used for photo galleries */

.galleryTable {
	width: 100%;
	text-align: center;
	padding: 8px;
	}

.galleryTable td {
	vertical-align: center;
	padding-top: 8px;
	padding-bottom: 20px;
	}

.galleryCol {
	width: 48%;
	}


/* Very general (default) text styling classes */

.txQuote {
 	font-style: italic;
	}

.txStress {
 	font-weight: bold;
	}

.linkSelected {
	font-weight: bold;
	}

.redBlockText {
	background-color: #F00;
	color: #FFF;
	font-size: 1.2em;
	}

/* Clear float problems */

.clearFloat {
	clear: both;
	}