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

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

body {
	margin: 0;
	padding: 0;
	background: #fff; 				/*if the background property clashes with HTML Module usage, move this styling to alternative stylesheet */
	font-family: Verdana,Arial,Helvetica;
	color: #8c7083;
	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: #8c7083;
}

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-weight: normal;
	font-size: 2em;
        font-family: 'American Typewriter', typewriter, Verdana, Ariel;
        color: #ea2577;
}

h2 {
        font-weight: normal;
	font-size: 1.8em;
        font-family: 'American Typewriter', typewriter, Verdana, Ariel;
        color: #ae99a7;
}

h3 {
        font-weight: normal;
	font-size: 1.6em;
        font-family: 'American Typewriter', typewriter, Verdana, Ariel;
        color: #ea2577;
}

h4 {
        font-weight: normal;
	font-size: 1.4em;
        font-family: 'American Typewriter', typewriter, Verdana, Ariel;
        color: #ae99a7;
}



/*---------- 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: #ae99a7;
	text-decoration: underlined;
}

a:hover, a:active {
	color: #ea2577;
	text-decoration: underlined;
}


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


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

code {
}

acronym {
	cursor: help;
}

pre {
}

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

fieldset {
	padding: 10px;
	border: #ae99a7 solid 1px;
        margin: 0;
}

legend {
        display: none;
	padding: 0 20px;
}

label {
	display:none;
}

input {
	width: auto;
}

textarea {
}

select {
}




