/*
 * Cascading style sheet for new DC-3 Dreams web sites
 *
 * Copyright © 2002-2005, Robert B. Denny, All Rights Reserved
 *
 * References:
 *		http://msdn.microsoft.com/library/en-us/dnie60/html/cssenhancements.asp
 *		http://www.glish.com/css/
 *		http://www.thenoodleincident.com/tutorials/box_lesson/index.html
 *
 * 21-Mar-02 rbd	From http://www.glish.com/css/ Read there about the 
 *					Voice-Family "}" hack for IE5.x layout bugs.
 * 21-Apr-03 rbd    Improvements, white now body color, removed many
 *                  redundant color:white specs. background now
 *                  more compatible background.
 * 29-Apr-03 rbd	Fixed NS6/Mozilla margins, simplify and clean up
 *					box model hacks and revalidate with IE. Added b/g
 *					image the right way in the body style block. Many
 *					small adjustments for alignment and spacing.
 * 01-May-04 rbd	Base font size to 80%
 * 26-Jun-04 rbd    Back down to 75%
 * 12-Aug-04 rbd    Base font to 8pt, consistent across browsers.
 * 08-Dec-04 rbd    Base font to 7.5pt, add 5px to padding to open up layout a bit
 * 16-Mar-05 rbd	New look for ACP4 home page, remove unused classes.
 * 07-Nov-05 rbd    bigtexthl
 * 10-Feb-06 rbd	.underline, smaller text (70%) 
 * 14-Feb-06 rbd	Many changes for new site, remove unused styles.
 * 16-Feb-06 rbd	Fix the bloody box-model hax for Thunderbird vs IE6
 * 15-Jun-07 rbd	Reduce right margin on #maincontent, add #images,
 *					increase default line spacing to 140%. Clearing div.
 * 02-Nov-09 rbd	Make #image div higher for podcast and Gemini images.
 */

/*
 * Hyperlink coloring
 */
a:link		{ color: Aqua; text-decoration: none; }
a:active	{ color: Aqua; text-decoration: none; }
a:visited	{ color: Aqua; text-decoration: none; }
a:hover		{ color: Yellow; }

/*
 * Body and element defaults.
 */
body { 
	background: url(images/northzen.gif);
	font-size: 80%;
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	margin: 10px 10px 0px 10px;
	padding: 0px;
	color: white;
} 

#leftcontent {
	position: absolute;
	left: 10px;
	top: 74px;
	width: 140px;
	background : #500000;
	border: 1px solid MediumBlue;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 95%;
}

#maincontent {
	background: black;
	border: 1px solid MediumBlue;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: 161px;
	margin-right: 0px;
	}

#banner {
	border-top: 1px solid MediumBlue;
	border-right: 1px solid MediumBlue;
	border-left: 1px solid MediumBlue;
	text-align : center;
	height: 63px;
	}
	
#images {
	height: 760px;
	width: 280px;
	background-color: #000000;
	float: right;
	display: inline;
}

#clearing {
	clear: both;
	visibility: hidden;		/* DIV must have something in it or IE blanks out */
}

p {
	margin-top: 6pt; 
	margin-bottom: 6pt;
} 

h1 {
	font-family: Arial, Helvetica, sans-serif; 
    font-size: 180%;
	line-height: 125%;
	color : #CCCC00;
} 

h1.colhead {
	margin-top: 10pt; 
	margin-bottom: 8pt;
	text-align: center;
} 

h2 {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 130%;
	color : #CCCC00;
	margin-top: 12pt;
	margin-bottom: 6pt;
} 

h2.colhead {
	text-align: center;
} 

h3 {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 120%;
	color : LightGreen;
	margin-top: 6pt;
	margin-bottom: 6pt;
} 

h4 {
	font-size: 110%; 
	color: LightGreen; 
	margin-top: 6pt;
	margin-bottom: 6pt;
}

/*
 * List adjustments
 */

ul, ol, ul ul, ol ol, ol ul, ul ol {
	margin-top: 6pt;
	margin-bottom: 6pt;
	margin-left: 15px;
}

li {
	margin-top: 6pt;
	margin-left: 24px;
}

form {
	margin-top : 0px;
	margin-bottom : 0px;
}

input { 
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif; 
}
 
/*
 * Tables
 */

table.menu { 
	font-size: 100%;
	margin-top: 0px;
	margin-bottom: 24px;
	border: 0px;
}

tr.menu {
	vertical-align: top;
	text-align: center;
	background-color: #500000;
	border: 0px;
}

td.menu {
	border: 1px solid MediumBlue;
}
/*
 * Quick-class goodies
 */

.bigtext {
	font-size: 150%;	
}
 
/*
 * Quick-class goodies
 */

.leadquote {
	font-size: 80%;
	margin-left: 3em;
	margin-right: 10em;
}

.desc {
	padding: 0.25em;
	margin-left: 10px;
	margin-right: 10px;
	background-color: #2F4F4F;
}

.y {
    color: yellow;
}

div.copyright {
	font-size: 80%;
}

.underline {
	text-decoration: underline;
}

.dimmed {
	color: #828282;
}
