/*
 *
 * SECTION 1: GENERAL PROPERTIES
 *
 */

/*
 * General html and body properties.
 */
html {
}
body {	
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 90%;
	background-color: black;
	color: #EDA46D;
}

/*
 * General table properties.
 */
table {
	border: none;
	border-collapse: collapse;
}
table th {
	border: none;
	border-collapse: collapse;
}
table td {
	border: none;
	border-collapse: collapse;
}

/*
 * General form properties. This 0px margin is a hack to keep IE happy.
 */
form {
	margin: 0px;
}

/*
 * General link properties.
 */
a {
	color: white;
}
a:visited {
}
a:hover {
}

/*
 * General image properties.
 */
img {
	border: none;
}

/*
 *
 * SECTION 2: CONTENT DIVISIONS (HEADER, BODY, FOOTER)
 *
 */

/*
 * Header. (This is where the 'h1' resides and main menu reside)
 */
div#header {
	background: transparent url(images/bg/header.jpg) top left repeat-x;
	height: 130px;
}
#logo {
	position: absolute;
	top: 40px;
	left: 230px;
}
div#header h1 {
	margin: 0px;
	padding-left: 120px;
}
div#mainmenu {
	position: absolute;
	top: 120px;
	left: 30px;
}
div#mainmenu a {
	display: block;
}
div#joinlist {
	margin-top: 30px;
}
div#joinlist form {
}
div#joinlist form input {
	vertical-align: middle;
}

/*
 * Body
 */
div#body {
	padding: 60px 10% 1ex 1ex;
	margin: 0px 0 2% 180px;	
	
}
h2 {
	text-align: center;
	margin-top: 0;
}

/*
 * Footer
 */
div#footer {
	font-size: 90%;
}
div#sitecredit {
	font-size: 80%;
	margin-top: 30px;
}
div#sitecredit a {
	color: #555;
}
div#validatelink {
	font-size: 90%;
}


/*
 *
 * SECTION 3: CLASS PROPERTIES
 *
 */

/*
 * Convenience classes for floating images.
 */
img.left {
	float: left;
	clear: left;
	margin: 0px 1ex 1ex 0px;
}
img.right {
	float: right;
	clear: right;
	margin: 0px 0px 1ex 1ex;
}

/*
 * Convenience classes for paragraph markup.
 */
span.title {
	font-style: italic;
}
span.name {
	font-weight: bold;
}

/*
 * Default style for sub-links on internal pages.
 */
div.sublinks {
	font-weight: bold;
	font-size: 90%;
	text-align: right;
}

/*
 * Default style for CMS prev/next links.
 */
div.prevnextlinks {
	text-align: center;
	margin-bottom: 1ex;
}
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;
}


