/*
	stylesheet for CRT display

	markup: liaison
	copyright: the church of sonology
	updated: southampton, january 2005

*/



/*
	note: the following does not work on some browsers (grrr...)

	problem:                             work around:
	  vertical-align: text-top             add valign="top"
	  setting <td> padding to zero         add cellspacing="0" cellpadding="0"
	  centering <tables> via its margins   add div.tablecenter
*/



/* look of links */

:link {
	color: #0000ff;
	text-decoration: none;
}

:visited {
	color: #6600cc;
	text-decoration: none;
}

:hover {
	text-decoration: underline;
}

:active {
	color: #ff0000;
	text-decoration: none;
}



/* basic table layout */

table {
	margin-left: 0px;	/* zero everything */
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;

	border-spacing: 0px;
	border-width: 0px;

	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
}

td {
	font-family: Palatino, "Book Antiqua", serif;
	text-align: left;

	padding-top: 0px;	/* zero everything */
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
}

td.center {
	font-family: Palatino, "Book Antiqua", serif;
	text-align: center;
}

td.right {
	font-family: Palatino, "Book Antiqua", serif;
	text-align: right;
}



/* centering tables */

/*
	div.tablecenter is defined in an attempt to minimize every creative interpretation of the W3C
	standard by browser creators. A major offender is IE 6.x (win), but curiously enough IE 5.x (mac)
	is not -- the following solution breaks under IE 5.x (mac).
*/

div.tablecenter {
	margin-left: 0px;	/* zero everything */
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;

	border-width: 0px;

	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;

	text-align: center;	/* according to the W3C, we should not have to do this... */
}

table.center { 
	margin-left: auto;
	margin-right: auto;
}



/* overall document look */

body {
	font-family: "Avant Garde", "Century Gothic", Helvetica, Arial, sans-serif;
	color: #000000;
	background-color: #ccccff;

	margin-left: 32px;
	margin-right: 32px;
	margin-top: 16px;
	margin-bottom: 16px;

	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
}

table.body {
	border-collapse: separate;	/* these two lines are equivalent to 'cellspacing="8"' */
	border-spacing: 16px;
}



/* navigation bar */

table.titlebar {
	border-collapse: separate;	/* these two lines are equivalent to 'cellspacing="8"' */
	border-spacing: 8px;

	margin-top: 16px;
	margin-bottom: 16px;
}

table.topbar {
	margin-left: auto;
	margin-right: auto;

	border-color: #9999ff;
	border-width: 2px;
	border-style: groove;
}

td.topbar  {
	text-align: center;

	padding-top: 1px;
	padding-bottom: 1px;
	padding-left: 8px;
	padding-right: 8px;
}

table.topbarsmall {
	margin-left: auto;
	margin-right: 0;

	border-color: #9999ff;
	border-width: 2px;
	border-style: groove;
}



/* main text body */

table.textbody {
	border-collapse: separate;	/* these two lines are equivalent to 'cellspacing="8"' */
	border-spacing: 8px;
}

td.textbody {
	vertical-align: text-top;

	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 4px;
	padding-right: 4px;
}



/* headings */

h5 {
	font-family: "Avant Garde", "Century Gothic", Helvetica, Arial, sans-serif;
	font-size: 100%;
	font-weight: bold;
}

h4 {
	font-family: "Avant Garde", "Century Gothic", Helvetica, Arial, sans-serif;
	font-size: 120%;
	font-weight: bold;
}

caption {
	font-family: "Avant Garde", "Century Gothic", Helvetica, Arial, sans-serif;
	font-size: 120%;
	font-weight: bold;

	margin-left: auto;
	margin-right: auto;

	padding-top: 8px;
	padding-bottom: 4px;
}


/* graphic */

table.image {
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.75em;
	margin-bottom: 2em;
}

td.image { }

td.imagecaption {
	font-family: Palatino, "Book Antiqua", serif;
	font-size: 10px;
	text-align: right;

	color: #000000;

	background-image: url(images/pict_spacer_240_b.gif);
	background-color: #ccccff;
	background-position: top left;
	background-repeat: repeat-x;

	padding-top: 0.2em
}



/* listings tables */

table.highlighted {
	border-color: #9999ff;
	border-width: 2px;
	border-spacing: 2px;
	border-style: groove;
}

table.listing {
	border-collapse: separate;	/* these two lines are equivalent to 'cellspacing="1"' */
	border-spacing: 1px;

	border-width: 2px;
	border-style: none;
}

th.listing {
	font-family: Palatino, "Book Antiqua", serif;
	font-size: 100%;
	font-weight: bold;
	text-align: left;
	color: #000000;

	vertical-align: text-bottom;

	padding-top: 4px;
	padding-bottom: 2px;
	padding-left: 2px;
	padding-right: 8px;
}

td.listing {
	font-family: Palatino, "Book Antiqua", serif;
	font-size: 100%;
	text-align: left;
	color: #000000;
	background-color: #ffffff;

	vertical-align: text-top;

	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 8px;
	padding-right: 8px;
}

td.download {
	font-family: "Avant Garde", "Century Gothic", Helvetica, Arial, sans-serif;
	font-size: 100%;
	font-weight: bold;
	text-align: right;

	vertical-align: text-top;

	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 8px;
	padding-right: 8px;
}



/* italic text */

i {
	font-family: Palatino, "Book Antiqua", serif;
}



/* paragraph */

p {
	font-family: "Avant Garde", "Century Gothic", Helvetica, Arial, sans-serif;
	font-size: 100%;
	text-align: justify;

	line-height: 120%;
	text-indent: 1.25em;

	margin-left: 0em;
	margin-right: 0em;
	margin-top: 0em;
	margin-bottom: 0.25em;
}

p.first {
	text-indent: 0em;
}

p.center {
	text-align: center;
	text-indent: 0em;
}

p.right {
	text-align: right;
	margin-top: 1.25em;	/* normally used for "credit" or "signing" so add some space before */
}



/* quote at top */

p.topquote {
	line-height: 120%;
	text-indent: 0em;

	margin-bottom: 1em;
}



/* bottom bar */

td.bottombar { }

td.bottombar p {
	font-family: Palatino, "Book Antiqua", serif;
	font-size: 10px;
	text-align: center;

	line-height: 100%;
	text-indent: 0em;

	margin-top: 0.5em;
	margin-bottom: 0em;
}