/*	Content CSS defines the look and feel of content objects like headings,
	paragraphs, links etc.
*/
/*	Organization of style types:
	* positioning (with coordinates) styles
	* float/clear styles
	* display/visibility styles
	* spacing (margin, padding, border) styles
	* dimensions (width, height) styles
	* typography-related (line-height, color, etc.) styles
	* miscellaneous (list-style, cursors, etc.) styles
*/
/* ====== Headings ====== */
h2 {
	font-size: 108%;
}
h3 {
	font-size: 116%;
}
h4 {
	font-size: 93%;
}
.data {
	font-size: 93%;
}
.cnt-hd {
	position: relative;
	margin: 20px 0;
	padding: 2px 0 0 25px;
	color: #AA302F;
	font-weight: bold;
	background-color: #F0F0F0;
	_zoom: 1; /* IE6 */
}

/* ====== JavaScript related display styles ====== */
.js-only-block,
.js-only-inline {
	display: none !important;
}
/* the class 'js-enabled' will be set by javascript dynamically */
.js-enabled .js-only-block {
	display: block !important;
}
.js-enabled .js-only-inline {
	display: inline !important;
}