/* VISUALEDIT STYLE CSS TEMPLATE FOR GLOBAL ELEMENT STYLES*/
* {
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
    height: auto; 					/*add 100% auto height property to fix FF background image bug*/
}

body {
	margin: 0;
	padding: 0;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #333;
	font-size: 62.5%; 				/*for best cross-browser consistancy, leave as 62.5% and style elements with ems i.e. 1.2ems to achieve 12px*/
}

#fckcontent.edit {
   width: 100%;
   height: auto;
   background: #FFFFFF;
}


/*---------- PARAGRAPH & TABLE ELEMENTS ----------*/
p, ul, ol, td {
	font-size: 1.1em;					/*size with ems i.e. 1.2ems to achieve 12px*/
	font-weight: normal;
	line-height: 1.4em;
	color: #333;
}

ol ol, ul ul, ol ul, ul ol {	
	font-size: 100%; 				/*fix relative size problem with nested elements*/
}

td {
        font-size: 11px;                                /*fix size in px to appear correct in wysiwyg editor*/
}


/*---------- HEADING TAGS ----------*/
h1 {
	font-size: 2em;
        color: #CC0000;
        font-family: Georgia,'Times New Roman',Times,serif;
}

h2 {
	font-size: 1.8em;
        color: #CC0000;
        font-family: Georgia,'Times New Roman',Times,serif;
}

h3 {
	font-size: 1.4em;
        color: #CC0000;
        font-family: Georgia,'Times New Roman',Times,serif;
}

h4 {
	font-size: 1.2em;
        color: #CC0000;
        font-family: Georgia,'Times New Roman',Times,serif;
}




/*---------- LIST ELEMENTS ----------*/
ul {
	list-style-type: disc;
}

ol {
	list-style-type: decimal;
}

li {
	list-style-position: inside;
        margin-left: 15px;
}


/*---------- LINKS ----------*/
a:link, a:visited {
	color: #330099;
        text-decoration: none;
}

a:hover, a:active {
	color: #cc0000;
        text-decoration: underline;
}


/*---------- IMAGES ----------*/
img { 
	border: none;
}


/*---------- OTHER ELEMENTS ----------*/
blockquote {
	margin: 10px;	
	font-style: italic;
}

code {
}

acronym {
	cursor: help;
}

pre {
}

/*---------- FORM ELEMENTS ----------*/

fieldset {
	padding: 20px;
	border: #ccc solid 1px;
}

legend {
	padding: 0 20px;
}

label {
	display:none;
}

input {
	width: auto;
}

textarea {
	width: 300px;
	height: 150px;
}

select {
}



