/*
 * triv.org.uk default colour and layout CSS
 * by Simon Heywood
 * 
 * The colour scheme is simple: #c60 (a shade of orange) for page
 * decoration, #18c (a shade of blue) for text decoration.
 */

/* We like sans-serif fonts. */
body {
        font-family: sans-serif;
	color: #000;
	background-color: #fff;
}

/* Give h1 an orange background and white text. */
h1 {
        color: #fff;
        background-color: #c60;
}

/* All other headings are blue. */
h2,h3,h4,h5,h6 {
        color: #18c;
	background-color: #fff;
}

/* Colour links to match everything else */
a:link {
	color: #0840c0;
	background-color: #fff;
}
a:visited {
	color: #102065;
	background-color: #fff;
}

/* Float the index to the right and give it an orange border. */
div#index {
        float: right;
        margin-left: 1em;
        padding: 1em;
        border: solid #c60;
        border-width: 0.2em;
}
