/*
 * custom.css
 *
 * Copyright (c) 2005 Heinz Werntges
 * See the file 'COPYING' for terms of use
 *
 * Add-on to ysiwygDocBook 1.02, a developed DocBook CSS stylesheet
 * based on version 0.4 from
 *   http://www.badgers-in-foil.co.uk/projects/docbook-css/
 *
 * This is a sample customization file. If you want to make use of 
 * this stylesheet in your XML document (e.g. for display in a web browser),
 * include a line like this at the top of the XML file (replacing <ver>
 * with the version number):
 *
 *   <?xml-stylesheet href="wysiwygdocbook<ver>/driver.css" type="text/css"?>
 *
 * The customizations below intend to make use of element "articleinfo"
 * and many of its siblings, which is normally disabled.
 * Tested with file "unterbau.xml".
 */

@import "driver.css";

/*
 * Customization samples, tuned for c't articles
 */

articleinfo {			/* display.css */
	display:block;
}

articleinfo>title {		/* structures. css */
        font-size:xx-large;
        font-weight:bolder;
        text-align:center;
        margin-bottom:1em;
}
articleinfo>subtitle {
	font-size:x-large;
        font-weight:bolder;
        text-align:center;
        margin-bottom:1em;
}
articleinfo>title + subtitle {
        margin-top:-1em;
}

articleinfo>author, articleinfo>copyright {
	display:block;
        text-align:center;
}

articleinfo>copyright:before {
	content: "\A9";
}

articleinfo>authorblurb {
	display:none;
}

articleinfo>abstract>simpara { 
        font-weight:bolder;
	margin-left: 5em;
	margin-right: 5em;
}
