html, body {
	margin: 0;
	padding: 0;
	
	font-family: "Lucida Grande", "Lucida Sans", Helvetica, Arial, sans-serif;
	font-size: 79.1%;
	color: #444;
}

a {
	color: #008fc4;
	text-decoration: none;
}

a:hover {
	color: #ff9900;
}

form {
	margin: 0;
	padding: 0;
}

dl, dt, dd { margin: 0; padding: 0;}

#container {
	font-size: 1.25em;
}

#header {
	background: url(header_bg.jpg) repeat-x;
	height: 180px;
}

#header .logo {
	display: block;
	margin: auto;
}

#main {
	width: 600px;
	margin: auto;
	padding: 10px 0;
}

#main h2, #main p {
	margin: 0;
	padding: 0 0 1.5em 0;
}

.content-block {
	clear: left;
}

.content-block h2,
.content-block dt {
	float: left;
	clear: left;
	display: inline;
	
	width: 160px;
	padding: 0 25px 0 0;

	color: #999;
	text-transform: lowercase;
	text-align: right;
	
	font-weight: normal;
	font-size: 1.1em;
}

.content-block .content,
.content-block dd {
	float: left;
	display: inline;

	width: 400px;
	padding: 2px 0 0 0;
	margin: 0;
}

#splash .content-block em {
	font-style: normal;
	color: #999;
}

.label {
	font-weight: normal;
}

.label-email {
	padding-left: 10px;
}

a.external {
	padding: 0 0.75em;
	margin: 0 0 0 0.5em;
	background: url(icon_link.gif) no-repeat right center;
	border-left: 1px solid #ccc;
}

/*--------------------------
Button styling 
from http://www.filamentgroup.com/lab/update_styling_the_button_element_with_css_sliding_doors_now_with_image_spr/
--------------------------*/

button { 
	position: relative;
	border: 0; 
	padding: 0;
	cursor: pointer;
	overflow: visible; /* removes extra side padding in IE */
}

button::-moz-focus-inner {
	border: none;  /* overrides extra padding in Firefox */
}

button span { 
	position: relative;
	display: block; 
	white-space: nowrap;	
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	/* Safari and Google Chrome only - fix margins */
	button span {
		margin-top: -1px;
	}
}


/*--------------------------
Newsletter 
--------------------------*/

.newsletter {
	border-top: 1px solid #eee;
	padding-top: 20px;
}

.newsletter input, .newsletter button {
	float: left;
}

.newsletter input.textfield {
	width: 190px;
	height: 15px;
	padding: 3px;
	margin-right: 5px;

	border: 2px solid #cbd2d6;
	color: #919191;
	font-style: italic;
	text-transform: lowercase;
}

.newsletter input.clicked {
	font-style: normal;
	color: #333;	
}

.newsletter button {
	padding: 0 8px 1px 7px; 
	height: 25px;
	padding-top: 0px;
	margin: 0 5px 0 0; 

	background: url(button_subscribe.gif) repeat-x;
	
	color: #fff;
	font-style: italic;
	text-transform: lowercase;
	text-align: center; 
}


.newsletter button:hover {
	background-position: bottom left;
}


.clear { clear: both; }