/* 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: Arial, Helvetica, sans-serif;
	color: #fff;
	font-size: 75%;
        background: #000;
}


/*---------- PARAGRAPH & TABLE ELEMENTS ----------*/
p {
	color: #fff;
}


/*---------- HEADING TAGS ----------*/
h1, h2, h3, h4 {
color:#613388;
font-family:Georgia, "Times New Roman", Times, serif;
}

h1 {
font-size: 2em;
}

h2 {
font-size: 1.4em;
}

h3 {
font-size: 1.3em;
}

h4 {
font-size: 1.2em;
}



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

a:hover, a:active {
color:#613388;
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;
color: #fff
}

label {
}

input {
width: auto;
}

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

select {
}



