/* myth.css
 * Uffe Ravnskov's chapter pages cascading style sheet
 * Eric BRONEER (eric at broneer.org)
 * MAR 2005
 */

/* Notes
 *******
 * sup { font-size: smaller } doesn't work in Firefox 1.0.1 (works OK in IE6),
 * so I used {font-size: 50% } instead, which works fine.
 */

@import url(common.css);

body {
	background-color: #7093DB;
}

.main-frame {
	background-color: #CCFFCC;
	margin-top: 2em;
	padding: 5% 5% 5% 5%;
	border: groove

}

h1 {
	font-size: larger;
	text-align: center
}

h2 {
	font-size: medium
}

/* Superscript elements should be smaller */
sup {
	font-size: 50%
}

/* The Right Way to center tables: equal left and right margins */

table {
	margin-left: auto;
	margin-right: auto;
}

table thead th {
	text-align: center
}

td.num-data {
	/* Can you do something that works like <td align="char" char=","> in CSS? */
	text-align: center
}

address {
	font-style: normal;
	text-align: center
}

dt {
	font-weight: bold
}

cite:before {
	content: "« "
}

cite:after {
	content: " »"
}
