/* 
   Welcome to my style sheet... you nosy bastard.
                                 - Adam
*/

/* --- Globals: ------------------------------------------------------------ */

* { padding: 0; margin: 0;} 

html {
	overflow-y: scroll; /* keep right-hand scrollbar displayed */
}

body {
	font-size: 62.5%; /* base font is 10px */
	font-family: Tahoma, Geneva, Verdana, Helvetica, sans-serif;
	color: #000;
	background: #ccc url(../images/background.gif) no-repeat top center; /* this is a gif and not a png because of a color matching problem in IE */
}

a img { border: none; }

h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
}

a:link, a:active, a:visited { 
	text-decoration: underline; 
	color: #0d7129; 
}

a:hover { 
	text-decoration: underline;
	color: #14ad3f;
}

/* --- General Layout: ----------------------------------------------------- */

#container {
	position: relative;
	overflow: auto;
	background: #ccc url(../images/background.gif) no-repeat top center; /* for firefox and opera background centering issues */
	width: 960px;
	margin: 0 auto;
}

#logo {
	position: absolute;
	left: 40px;
	top: 80px;
}

#logo img {
	height: 120px;
	width: 300px;
}

#menu ul {
	position: absolute;
	right: 20px;
	top: 132px;
	list-style-type: none;
	color: #fff;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;

}

#menu ul li {
	display: inline;
	background-image: url(../images/menu_slash.png);
	background-position: center left;
	background-repeat: no-repeat;
	padding: 15px 5px 22px 30px;
	position: relative; /* so top & bottom padding works in IE */
}

#menu ul li:first-child {
	background-image: none;
}

#menu a:link, #menu a:active, #menu a:visited, #menu a:hover { 
	text-decoration: none;
	color: #fff;
}

#menu a:hover, #menu a.current { 
	color: #14ad3f;
}

/* --- Content Boxes: ------------------------------------------------------ */

#content {
	margin: 230px 50px 0 80px;
}

#content div.item, #content div.description {
	background-image: url(../images/opaque_95.png);
	border: 2px solid #a4a4a4;
	margin: 0 0 30px 0;
	padding: 15px 20px 5px 20px;
	overflow: auto;
}

#content div.item h1 {
	font-size: 1.8em;
	color: #666;
}

#content div.item h2, #content div.description h1 {
	font-size: 2.5em;
	margin: 0 0 10px 0;
}

#content div.item h2 em {
	display: block;
	font-size: 0.6em;
}

#content div.item p, #content div.description p {
	font-size: 1.4em;
	line-height: 1.5em;
	margin-bottom: 10px;
}

#content div.item img {
	width: 380px;
	height: 180px;
	border: 1px solid #404040;
	float: right;
	margin: 0 0 10px 20px;
}

#content div.item ul, #content div.description ul {
	font-size: 1.4em;
	margin-bottom: 10px;
}

#content div.item ul li, #content div.description ul li {
	margin-right: 15px;
	display: inline;
}

/* --- Footer: -------------------------------------------------------------- */

#footer {
	text-align: center;
	margin: 0 0 30px 0;
}

#footer ul {
	list-style-type: none;
	font-size: 1.4em;
	padding-right: 1em;
	margin-bottom: 25px;
}

#footer ul li:first-child {
	border-left-width: 0;
}

#footer ul li {
	display: inline;
	margin: 0 0 0 0.5em;
	border-left: 1px solid #777;
	padding: 0 0 0 0.5em;
}

#footer p {
	font-size: 1.2em;
	line-height: 1.5em;
}

p#countdown {
	font-size: 1.1em;
	color: #666;
}

