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

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

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

body {
	color: #182B25;
	font-family: Arial, sans-serif;
	}

a {
	color: #182B25;
	}

a:hover {
	color: #5DC8A5;
	}

/* indexBox - navigation index area */

#indexBox {
	position: fixed;
	width: 160px;
	height: 100%;
	top: 0px;
	left: 0px;
	background-image: url("pix/webLogo.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #EDFFFA;
	border-right: 1px solid #888;
	}
	
/* Fix for IE6 */
* html #indexBox {position: absolute;}

/* indexList - navigation index */

#indexList {
	margin-top: 152px;
	margin-left: 12px;
	margin-right: 12px;
	font-variant: small-caps;
	font-size: 1.4em;
	}

#indexList li {
	margin-bottom: 8px;
	}

.subIndexList {
	margin-top: 8px;
	margin-left: 8px;
	font-size: 0.8em;
	}

/* contentArea - everything that's not the navigation index */

#contentArea {
	margin-left: 160px;
	}
	
#contentArea a {
	font-weight: bold;
	}

.titlebox {
	width: 100%;
	height: 68px;
	background-image: url("pix/homepage.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #EDFFFA;
	border-bottom: 1px solid #888;
	}

.contentBox {
	text-align: left;
	padding: 16px;
	}

.head1 {
	text-align: center;
	font-size: 1.8em;
	font-weight: bold;
	}
	
.head2 {
	text-align: left;
	font-size: 1.4em;
	font-weight: bold;
	}
	

/* 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;
	}

.txLeft {
	text-align: left;
	}
	
.txRight {
	text-align: right;
	}
	
.txCenter {
	text-align: center;
	}
	
.txJustify {
	text-align: justify;
	}

.picLeft {
	float: left;
	margin-right: 12px;
	text-align: center;
	font-size: 0.8em;
	}
	
.picRight {
	float: right;
	margin-left: 12px;
	text-align: center;
	font-size: 0.8em;
	}

.picCentre {
	text-align: center;
	font-size: 0.8em;
	}

.videoBox {
	text-align: center;
	}
	
.rightSig {
  	text-align: right;
  	font-size: 0.8em;
  	font-style: italic;
  	margin-right: 12px;
}

/* Paging */

.previousLink {
	float: left;
	margin-left: 8px;
	text-align: left;
	font-size: 1.2em;
	}

.nextLink {
	float: right;
	margin-right: 8px;
	text-align: left;
	font-size: 1.2em;
	}

	
/* Clear float problems */

.clearFloat {
	clear: both;
	}