
/*---------
   GLOBAL
 ---------*/

* {
    margin:0;
    padding:0;
	border:0;
}

html, body {
	height:100%;
}

body {
	text-align:center;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size:75%;
}

h1, h2, h3, h4, h5, h6 {
    font-weight:normal;
    font-family: Arial, sans-serif;
}

h1 {
	font-size:1.667em;
}

h2 {
	font-size:1.3em;
}

h3 {
	font-size:1.1em;
}

h4 {
	font-size:0.95em;
}

h5 {
	font-size:0.9em;
}

h6 {
	font-size:1em;
}

p, select, li {
	font-size:1em;
	line-height:1.3em;
}

p {
	margin:1.5em 0;
}

input, textarea {
	font-size:1em;
}

ul li {
	list-style: none;
}

a:link, a:visited {
    text-decoration:underline;
}

a:hover, a:active {
    text-decoration:none;
}

a:active {
  outline: none;
}


/*------------
   ALIGNMENT
 -------------*/

.center {
	text-align:center;
}
	.center-inner {
		margin-left:auto;
		margin-right:auto;
		text-align:left;
	}

.left {
	text-align:left;
}

.right {
	text-align:right;
}

table.center td {
	text-align:center;
}

table tr.center td {
	text-align:center;
}


/*----------------
   MISCELLANEOUS
 ----------------*/


.clear {
	clear: both;
	display: block;
	height: 0;
	overflow: hidden;
}

.alt {
	display: none;
	height:1%;
	overflow:hidden;
}

.clear-after:after {
	content:'.';
	display:block;
	visibility:hidden;
	height:0;
	clear:both;
}

.no-cursor {
	cursor:default !important;
}

.hidden {
	display:none;
}


/*--------------
   SITE COLORS
 --------------*/

body {
    background:#fff;
	color:#666;
}

h1, h2, h3, h4, h5, h6 {
	color:#333;
}

a:link, a:visited {
    color:#3F5E2F;
}

a:hover, a:active {
    color:#3F5E2F;
}

input:focus, textarea:focus {
	background:#FFFCDD;
}

