
@import url(teasers.css);
@import url(print.css);


/*********************************
 * SECTION 1: General Properties *
 **********************************/


/*
 * General html and body properties.
 */
html {
}
body {	
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}


/*
 * General table properties.
 */
table {
/*	border: none;
	border-collapse: collapse; */
}
table tr th {
/*	border: none; */
/*	border-collapse: collapse; */
	vertical-align: top;
/*	padding: 0px; */
}
table tr td {
/*	border: none; */
/*	border-collapse: collapse; */
	vertical-align: top;
/*	padding: 0px; */
}


/*
 * General form properties. This 0px margin is a hack to keep IE happy.
 */
form {
	margin: 0px;
}


/*
 * General link properties.
 */
a {
}
a:visited {
}
a:hover {
	text-decoration: none;
}


/*
 * General image properties.
 */
img {
	border: none;
}


/*
 * Primary heading style.
 */
h1 {
	margin: 0px;
}
h1 img {
	display: block;
}
h2 {
	margin-top: 0px;
}



/******************************************************************
 * SECTION 2: Structural Divisions (Header, Footer, Wrappers, etc) *
 *******************************************************************/


div#header_and_content_wrapper {
}

div#header {
}

div#navbar {
}

div#content_wrapper {
}

div#content {
	padding: 0.5em;
	min-height: 500px;
}

/*
 * IE does not understand 'min-height', but (wrongly) treats 
 * 'height' like 'min-height', so use the star-html hack here.
 */
* html div#content {
	height: 500px;
}

div#footer {
	text-align: right;
	font-size: 80%;
	padding: 2em 1em 1em 1em;
}


/****************************************************************
 * SECTION 3: Specific Sections (Main Menu, Join the List, etc) *
 ****************************************************************/

/*
 * Main Menu
 */
div#main_menu {
}
div#main_menu a {
}
div#main_menu a img {
	vertical-align: top;
}
div#main_menu a.selected {
	font-weight: bold;
	text-decoration: none;
}


/*
 * The site photo (for plug-n-play sites)
 */
div#site_photo {
}



/*
 * The link to validate the site.
 */
div#validate_link {
	display: none;
}



/*
 * Style for form tables.
 */
table.form {
	border: none;
}
table.form td {
	vertical-align: top;
	padding-bottom: 0.5em;
}
table.form td.field_name {
	border: none;
	font-weight: bold;
	padding-right: 0.5em;
}
table.form td.field_value {
}
table.form td.field_value textarea {
	overflow: auto;
}
table.form td.buttons {
	text-align: right;
}


/*
 * Page header/footer.
 */
div#page_header {
	margin-bottom: 1em;
}
div#page_footer {
	margin-top: 1em;
}



/*
 * Default style for sub-links on internal pages.
 */
div.sublinks {
	font-weight: bold;
	font-size: 90%;
	text-align: right;
	margin-bottom: 0.5em;
}
div.sublinks span.link {
	margin: 0px 0.25em 0.5em 0.25em;
}


/*
 * Default style for error messages.
 */
div.error_message {
	border: solid 2px #f00;
	margin: 1em 0.5em;
	background-color: #fd7;
	color: #000;
}


/*
 * Popup window style
 */
body.popup {
	margin: 0px;
	padding: 1em;
	background-image: none;
	font-size: 90%;
}
body.popup div.prev_next_links {
	text-align: left;
}
body.popup div.back_to_site {
	font-size: 80%;
	font-weight: bold;
	text-align: center;
	margin-top: 1em;
	font-family: Verdana, Helvetica, Georgia, sans-serif;
}


/*
 * Default style for CMS prev/next links.
 */
div.prev_next_links {
	text-align: center;
	margin-bottom: 0.5em;
	word-spacing: 0.25em;
}
div.prev_next_links a.prev_next_link {
	font-weight: bold;
}
div.prev_next_links span.prev_next_button img {
	vertical-align: middle;
	border: none !important;
}




/*
 * Float Wrappers. This is a hack to make <div>s fully encompass photos and
 * other floating elements. The first block works on Mozilla and Safari, The
 * second block works on IE6. The bizarre comment syntax around the second
 * block hides it from IE5/Mac -- IE5/Mac will render the height as 1% if it
 * sees it. Note: Safari has a bug where a compound class will break the fix.
 */
div.floatwrapper:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/* Hide from IE5-Mac \*/
* html div.floatwrapper { height: 1%; }
/* End hide from IE-mac */


