@import url(common.css);
@import url(wrapper.css);

/*** Page parameters ***/
html, body {
	font-size: 14px;
	font-family: "Bitstream Vera Sans", Tahoma, Arial, Helvetica, sans-serif;
	background-color: #000;
	color: #000;
	text-align: center; /* This centers #wrapper in IE5 */
}


/*** Links ***/

/* Links have normal text color and are underlined */
a {
	color: #000;
	text-decoration: underline;
}
/* Change link color on hover */
a:hover, a:focus, a:active { color: #282; }
/* Linked images should not have border */
a img { border: 0; }


/*** Headings ***/

/* Common heading style */
h1, h2, h3, h4, h5, h6 {
	font-family: "Bitstream Vera Sans", Tahoma, Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: left;
}

/* Font sizes and other styles specific to each heading */
h1 {
	font-size: 25px;
	margin-left: 100px;
	margin-bottom: 40px;
	width: 400px;
}
h2 {
	margin: 10px 0;
	font-size: 22px;
}
h3 { font-size: 20px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }


/*** Main layout "page" ***/

/* Fixed-width and centered with a thin border and a background image */
#wrapper {
	width: 700px;
	margin: 10px auto;
	padding: 0;
	background-color: #ab9;
	background-image: url(bg.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-attachment: fixed;
	border: 1px solid #fff;
	text-align: justify; /* This counters "text-align: center" in body for centering #wrapper in IE5 */
}


/*** Common styles shared by several selectors within above wrapper ***/

/* "Clean" lists, without bullets */
#breadcrumbs ul,
ul.authorlist,
.textlist ul,
ul.credits,
.navigation ul {
	list-style-type: none;
	list-style-position: outside;
	list-style-image: none;
}

/* "Collapsed" lists, formatted horizontally */
#breadcrumbs,
.navigation {
	margin: 0;
	padding: 0;
}
#breadcrumbs ul,
.navigation ul {
	margin: 0;
	padding: 3px 0;
	text-indent: 0;
}
#breadcrumbs ul li,
.navigation ul li {
	display: inline;
	margin: 0;
	text-indent: 0;
}

/* Box with thin border and alternate background */
#breadcrumbs li,
ul.authorlist,
.textlist,
.navigation li {
	padding: 3px 10px;
	border: 1px solid #fff;
	background-color: #ccb;
	background-image: url(bg_alt.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-attachment: fixed;
	color: #666;
	clear: both;
}
/* only background color for Internet Explorer */
/*\*/
* html #breadcrumbs li,
* html ul.authorlist,
* html .textlist,
* html .navigation li {
	background-image: url();
}
/**/

/* Links within above box should not be underlined */
#breadcrumbs li a,
ul.authorlist a,
.textlist a,
.navigation li a {
	text-decoration: none;
}


/*** Breadcrumb links at top of page ***/

#breadcrumbs {
	border-bottom: 1px solid #fff;
}
#breadcrumbs li {
	border: 0;
	border-right: 1px solid #fff;
}


/*** Main content box ***/

#maincontent {
	margin: 10px;
	min-height: 350px;
}
/* min-height for Internet Explorer */
/*\*/
* html #maincontent {
	height: 350px;
}
/**/
#maincontent p {
	margin: 0 100px;
	line-height: 1.8;
}
#maincontent img {
	float: right;
	border: 1px solid #fff;
	margin: 5px 100px 20px 20px;
}

/*** Lists of authors and texts ***/
ul.authorlist, .textlist {
	margin: 40px 100px;
	line-height: 1.8;
	font-weight: bold;
}
.textlist ul {
	margin: 0;
	padding: 0;
}
ul.authorlist {
	width: 250px;
}


/*** Production credits on frontpage ***/
ul.credits {
	margin: 40px 100px;
	padding: 0;
	line-height: 1.8;
	font-size: 12px;
}


/*** Navigation between texts ***/
.navigation    { float: right; }
.navigation ul {
}
.navigation li {
	text-align: center;
}


/*** Footer ***/
#footer {
	margin: 40px 0 0 0;
	border-top: 1px solid #fff;
	padding: 5px 10px;
	font-size: 10px;
}
