/**
 * mandala.css
 *
 * Style sheet for the HTML page containing the mandala browser.
 */

body {
    background-color: #333333;
    margin: 0px;
    padding: 0px;
}

/* Container used to hold the applet and reader */
#outerContainer {
    position: absolute;
    left: 10px;
    top: 10px;
}

/* IFrame used for reader */
#readerFrame {
	border: 0px;
	height: 600px;
}

/* Container used for text in reader */
#text {
	border: 1px solid #000;
	font: normal normal normal 1em monospace;
}

#text .item {
	background-color: #cccccc;
	border: 1px solid #000000;
	margin-bottom: 10px;
	padding: 5px;
}

#text .keyValuePair {
	margin-bottom: 12px;
}

#text .key {
	background-color: #f0990f;
	border: 3px solid #d0770d;
	font: normal normal bold 1em Arial, sans-serif;
	padding: 5px;
}

#text .value {
	background-color: #ffffff;
	border: 3px solid #d0770d;
	border-top: none;
	font: normal normal normal 1em monospace;
	padding: 9px;
	color: #000000;
}