/* Mandelbrot Madness! CSS
   December 13, 2007 */

/* The following applies to all general page data.  Subsequent sections may
   override these defaults. */

body {
	font-family: Times New Roman,Times Roman,serif;
	font-size: 12pt;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-decoration: none;
	text-transform: none;
	color: white;
	background-color: black;
	text-align: center;
	width: 75%;
	margin-left: 13%;
	margin-right: 13%;
}

/* Default anchor properties: */

a {
	text-decoration: underline;
}

a:link {
	color: yellow;
}

a:visited {
	color: yellow;
}

a:active {
	color: yellow;
}

a:hover {
	color: red;
}

img {
	border: none;
}

table {
	border: none;
	margin-left: auto;
	margin-right: auto;
}

td {
	padding: 5px;
}

/* Define sections as left or right aligned: */

.leftie {
	text-align: left;
}

.rightie {
	text-align: right;
}

/* "Callouts" are small blocks of content pulled to the side of the main
   content.  This is usually some sort of image, but we'll make it generic
   enough to include text as a possibility. */

.callout-left {
	float: left;
	margin: 5px;
	padding: 5px;
}

.callout-right {
	float: right;
	margin: 5px;
	padding: 5px;
}

/*********************************************************/
/* Large portions of text, like the News or con reports: */

.bulktext {
	text-align: justify;
}

/*********************************************************/
/* Copyright Text: */

.copyright {
	font-size: 8pt;
}

.copyright img {
	border: none;
}

/*********************************************************/
/* Advertising blocks: */

.bannerad {
	max-width: 728px;
	min-width: 468px;
	max-height: 90px;
	min-height: 60px;
	background-color: #888888;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
	clip: auto;
}

.adcube {
	text-align: center;
	width: 125px;
	float: left;
	font-size: 7pt;
}

.adcube a img {
	border-width: thin;
}

/*********************************************************/
/* The site link block: */

.sitelinks {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 10pt;
	color: black;
	background-color: yellow;
	background-image: none;
	text-align: center;
	padding: 0.5em;
	margin-left: 13%;
	margin-right: 13%;
	clear: both;
}

.sitelinks a:link {
	color: black;
}

.sitelinks a:visited {
	color: black;
}

.sitelinks a:active {
	color: black;
}

.sitelinks a:hover {
	color: red;
}

