﻿/*
 * The lwRTE text area in design mode is contained in an iframe body with class "rte-normrend" (see jquery.rte.js).
 * The published text area is contained in a div element with the same class name.
 * The rules in this sheet serve to customize the style of the elements in design mode
 * and their published appearance on the web site.
 */

.rte-normrend
{	
	font-family: Verdana, Georgia, Arial, "Times New Roman";
	font-size: 10px;

	color:Black;
	background-color:White;
	
	/* clear margins of the iframe body element of the design mode */
	margin:0;
}

.rte-normrend a
{
	color:Blue;
	text-decoration:underline;
}

.rte-normrend ol
{
	margin:5px 5px 7px 10px;
	padding:0;

	list-style-type:decimal;
	list-style-position: inside;	
}

.rte-normrend ul
{
	margin:5px 5px 7px 10px;
	padding:0;
	
	list-style-type:disc;
	list-style-position: inside;	
}

.rte-normrend li
{
	margin: 0;
	padding: 0;
}

.rte-normrend img
{
	padding: 2px;
}

.rte-normrend p
{
	padding: 0px;
	margin: 0px;
}

