/**
 * Tiny MCE Styles
 *
 * The values set here define how to display HTML elements from Tiny MCE,
 * in the editor and on the page where the result is pasted. It must be
 * defined in order to be display the same way in both cases.
 *
 * Most values are inspired on: http://www.w3.org/TR/CSS2/sample.html.
 *
 * "body.mceContentBody" is used in the TinyMCE widget.
 * ".annotation div.comment" is used to display the HTML code given by TinyMCE.
 **/

body.mceContentBody,
.annotation div.comment {
	/* Homogeneity with lexacto.css */
	font-size: 12px; /* reference size */
}

body.mceContentBody p,
.annotation div.comment p {
	font-style: normal;
	margin: 1.12em 0;
	padding: 0;
}

body.mceContentBody address,
.annotation div.comment address {
	font-style: italic;
	padding: 0;
}

body.mceContentBody pre,
.annotation div.comment pre {
	font-style: normal;
	font-family: monospace;
	white-space: pre;
	margin: 1em 0;
	padding: 0;
}

body.mceContentBody h1,
.annotation div.comment h1 {
	font-style: normal;
	font-weight: bolder;
	font-size: 2em;
	margin: .67em 0;
	padding: 0;
}

body.mceContentBody h2,
.annotation div.comment h2 {
	font-style: normal;
	font-weight: bolder;
	font-size: 1.5em;
	margin: .75em 0;
	padding: 0;
}

body.mceContentBody h3,
.annotation div.comment h3 {
	font-style: normal;
	font-weight: bolder;
	font-size: 1.17em;
	margin: .83em 0;
	padding: 0;
}

body.mceContentBody h4,
div.comment h4 {
	/* Override lexacto-document.css styles */
	font-style: normal !important;
	font-weight: bolder !important;
	margin: 1.12em 0;
	padding: 0;
}

body.mceContentBody h5,
div.comment h5 {
	font-style: normal;
	font-weight: bolder;
	font-size: .83em;
	margin: 1.5em 0;
	padding: 0;
}

body.mceContentBody h6,
.annotation div.comment h6 {
	font-style: normal;
	font-weight: bolder;
	font-size: .75em;
	margin: 1.67em 0;
	padding: 0;
}

body.mceContentBody a:link,
body.mceContentBody a:visited,
body.mceContentBody a:hover,
body.mceContentBody a:focus,
body.mceContentBody a:active,
.annotation div.comment a:link,
.annotation div.comment a:visited,
.annotation div.comment a:hover,
.annotation div.comment a:focus,
.annotation div.comment a:active {
	color:#4A538F;
}

body.mceContentBody a,
.annotation div.comment a {
	text-decoration:none;
}

body.mceContentBody a:hover,
.annotation div.comment a:hover {
	text-decoration:underline;
}

