/*******************************************************************************
* Reset stylesheet and basic sitewide css (Mainly HTML tags)
*******************************************************************************/

* {
	margin: 0;
	padding: 0;
}

body {
	font-family: Georgia, Helvetica, sans-serif;
	font-size: 70%;
	color: #333;
}

a:link, a:visited {
	color: #8461A3;
}

a:hover, a:active, a:focus {
	text-decoration: underline;
}

img {
	display: block;
	border: 0;
}

p {
	padding: 0 0 1em 0;
}

ul, ol {
	margin: 0 0 0 1em;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
	font-weight: normal;
}

h3 {
	font-size: 1.2em;
	font-weight: normal;
	margin: 0 0 10px 0;
}

h4 {
	font-size: 1em;
}

.left {
	float: left;
}

.right {
	float: right;
}

a.button {
	background: transparent url(../images/content/button-bg-trans.png) no-repeat 0 0;
	display: block;
	height: 21px;
	width: auto;
	float: left;
	text-decoration: none;
	font-weight: bold;
	color: #825DA3;
	padding: 7px 4px 0 15px;
	margin-right: 10px;
	position: relative;
}

	a.button span {
		background: transparent url(../images/content/button-bg-trans.png) no-repeat right 0;
		display: block;
		position: absolute;
		right: 0;
		top: 0;
		height: 28px;
		width: 10px;
		margin: 0 -10px 0 0;
	}


