/* General style sheet for andybettis.com web site */

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

/* h1 in small caps */

h1 {
	font-variant: small-caps;
	}


/* headerBox - the banner at the top */

#headerBox {
	background-image: url("pix/gadjeDilo.png");
	background-color: #ffe;
	background-repeat: no-repeat;
	background-position: center top;
	position: fixed;
	width: 100%;
	top: 0px;
	left: 0px;
	height: 148px;
	text-align: center;
	}
	
/* Fix for IE6 */
* html #headerBox {position: absolute; }

ul.leftIndex {
	margin-top: 124px;
	}

ul.leftIndex li {
	display: inline;
	}

ul.leftIndex a {
	font-size: 1.4em;
	font-variant: small-caps;
	color: #111;
	padding: 2px 8px 2px 8px;
	}

ul.leftIndex a:hover {
	color: #0DF;
	}


/* contentBox - the area below the banner */

#contentBox {
	text-align: center;
	margin-top: 148px;
	padding: 12px;
	color: #111;
	}
	
#contentBox a {
	color: #111;
	}
	
#contentBox a:hover {
	color: #0DF;
	}

/* Video index box */

.videoBox {
	float: left;
	width: 200px;
	text-align: left;
}


/* Video index */

ul.videoIndex {
	margin-bottom: 12px;
	}

ul.videoIndex li {
	margin-bottom: 2px;
	}

ul.videoIndex a {
	font-size: 1.1em;
	font-variant: small-caps;
	color: #111;
	padding: 2px 8px 2px 8px;
	}

ul.videoIndex a:hover {
	color: #0DF;
	}


/* Positioning classes */

.topLeft {position: absolute;
	left: 12px;
	top: 0px;
}

.bottomLeft {position: absolute;
	left: 12px;
	bottom: 4px;
}

.topRight {position: absolute;
	right: 12px;
	top: 0px;
}

.bottomRight {position: absolute;
	right: 12px;
	bottom: 4px;
}

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

.txQuote {
 	font-style: italic;
	}

.txStress {
 	font-weight: bold;
	}

.linkSelected {
	font-weight: bold;
	}

.textLeft {
	text-align: left;
	}

.bigSpacer {
	margin-bottom: 24px;
	}
	
/* Clear float problems */

.clearFloat {
	clear: both;
	}