
/*********************************
 * SECTION 1: General Properties *
 **********************************/


/*
 * General html and body properties.
 */

body {	
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 90%;
	background: white url(../../../images/bg/bg.gif) top left repeat-y;
}


/*
 * 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 {
	color: #1E3D3E;
}
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: 0px;
	background:  url(../../../images/bg/glasses.gif) top left no-repeat;
	padding: 3px 0 3px 116px;
}
h3 {
}
h4 {
}


/******************************************************************
 * SECTION 2: Structural Divisions (Header, Footer, Wrappers, etc) *
 *******************************************************************/
div#site_photo {
	position: absolute;
	top: 0px;
	left: 0px;
	 width: 199px;
	 height: 275px;
	 background: url(/images/bg/buddy.jpg) no-repeat;
}

div#header {
	background: #D75A99 url(/images/bg/headerbg.gif) top left repeat-x;
	margin-left: 199px;	
}

div#navbar {
}

div#content {
	padding: 0.5em;
	min-height: 400px;
	margin-left: 217px;
	padding-left: 0px;
	background: url(/images/bg/poodleskirt.jpg) top right repeat-y;
	padding-right: 176px; 
}

/*
 * IE does not understand 'min-height', but (wrongly) treats 
 * 'height' like 'min-height', so use the star-html hack here.
 */
* html div#content {
	height: 400px;
}

div#footer {
	font-size: 90%;	
	margin-left: 30px;
	text-align: center;
	border-top: dashed 3px black;
	padding-top: 10px;
}

div#footer a {
}

div#content_wrapper {
}

div#header_and_content_wrapper {
}


/****************************************************************
 * SECTION 3: Specific Sections (Main Menu, Join the List, etc) *
 ****************************************************************/

/*
 * Main Menu
 */
div#main_menu {
	padding:  12px 10px 4px 50px;	
	background:  url(../../../images/bg/menucorner.jpg) top left no-repeat;	
	font-size: 150%;
	text-align: center;
}
div#main_menu a {
}
div#main_menu a img {
	vertical-align: middle;
}
div#main_menu span.menu_item_selected {
	font-weight: bold;
}
div#main_menu span.menu_item_selected a {
	text-decoration: none;
}


/*
 * The "Join the Mailing List" box.
 */
div#join_list {
	position: absolute;
	top: 430px;	
	left: 20px;
	text-align: center;
}
div#join_list_text {
	display: inline;
	vertical-align: middle;
}
div#join_list img {
	vertical-align: middle;
}
div#join_list form {
	margin: 0px;
}
div#join_list form input {
	vertical-align: middle;
}
div#join_list form input#submit {
	background-color: #48EDEB;
	border: solid 1px black;
	padding: 3px;
}


/*
 * The site credit.
 */
div#site_credit {
	font-size: 80%;
}
div#site_credit a {
}


/*
 * The link to validate the site.
 */
div#validate_link {
	font-size: 80%;
}


/*
 * The 'misc' divisions.
 */
div#misc1 {
}
div#misc2 {
}
div#misc3 {
}


/*******************************
 * SECTION 4: Class Properties *
 *******************************/


/*
 * Convenience classes for floating and bordering images.
 */
img.left {
	float: left;
	clear: left;
	margin: 0px 0.5em 0.5em 0px;
}
img.right {
	float: right;
	clear: right;
	margin: 0px 0px 0.5em 0.5em;
}
img.bordered {
	border: solid 1px black;
}


/*
 * The peek-a-boo bug table hack.
 */
table.peekaboofix {
	border: none;
	border-collapse: collapse;
	margin: 0px;
	padding: 0px;
}
table.peekaboofix tr {
}
table.peekaboofix tr td {
	border: none;
	border-collapse: collapse;
	margin: 0px;
	padding: 0px;
}


/*
 * Style for form tables.
 */
table.form {
	border: none;
}
table.form td {
	vertical-align: top;
}
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;
}


/*
 * Default style for sub-links on internal pages.
 */
div.sublinks {
	font-weight: bold;
	font-size: 90%;
	text-align: right;
	margin-bottom: 0.5em;
}


/*
 * Default style for error messages.
 */
div.error_message {
	border: solid 2px #f00;
	margin: 1em 0.5em;
	background-color: #fd7;
	color: #000;
}

/*
 * Default style for CMS prev/next links.
 */
div.prevnextlinks {
	text-align: center;
	margin-bottom: 0.5em;
}
div.prevnextlinks div.pntext {
	font-weight: bold;
	margin-bottom: 4px;
}
div.prevnextlinks div.pnlinks {
	vertical-align: middle;
}
div.prevnextlinks div.pnlinks a.pnlink {
	font-weight: bold;
}
div.prevnextlinks div.pnlinks img {
	vertical-align: middle;
	border: none !important;
}

/*
 * Necessary to avoid float bugs in some cases. Note that if this is
 * used, you must wrap the content in a table to avoid the peek-a-boo
 * bug in IE6.
 */
div.clear {
	clear: both;
}


/*
 * Default style for popup windows.
 */
body.popup {
	margin: 0px;
	padding: 1em 0.5em;
	background-image: none;
	font-size: 90%;
	text-align: left;
}
div.prevnextlinks div.prevnextlinks {
	text-align: left;
}
body.popup div.photo img {
	border: solid 1px #333;
}
body.popup div#backtosite {
	margin-top: 1.5em;
	font-size: 80%;
	font-weight: bold;
	text-align: center;
	font-family: Verdana, Helvetica, Georgia, sans-serif;
}

	
