/* Display reset */
html, address, blockquote, body, dd, div, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, ol, p, ul, dir, hr, pre, noscript {
	display: block
}
li {
	display: list-item
}
head {
	display: none
}
table {
	display: table
}
tr {
	display: table-row
}
thead {
	display: table-header-group
}
tbody {
	display: table-row-group
}
tfoot {
	display: table-footer-group
}
col {
	display: table-column
}
colgroup {
	display: table-column-group
}
td, th {
	display: table-cell
}
caption {
	display: table-caption
}
/* Typography reset */

/* Block elements */
html, body, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li, address, blockquote, del, div, hr, ins, noscript, pre,
 /* Inline elements */
a, abbr, acronym, dfn, em, strong, code, kbd, samp, var, b, big, i, small, tt, span, bdo, br, cite, del, ins, q, script, sub, sup, 
/* Image and object elements */
area, img, map, object, param, 
/* Form elements */
form, button, fieldset, input[type="checkbox"], input[type="radio"], input[type="text"], input[type="password"], input[type="file"], label, legend, option, optgroup, select, textarea, 
/* Table elements */ 
table, tr, th, td, col, colgroup, caption, thead, tbody, tfoot, 
/* Frames */
iframe, 
/* HTML5 elements */
section, header, footer, aside, nav, article, hgroup {
	background-color:transparent;
	border: none;
	color:#000;
	font: normal normal normal 14px/140% 'PT Sans', Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	vertical-align:top;
	white-space:normal;
	word-wrap: break-word; /* Doesn't work for FF3 as yet - see http://blog.stchur.com/2007/03/01/word-wrap-for-mozilla-take-2/ */
}
/* Button settings, so as not to mess too much with the default ones in a browser */
input[type="button"], input[type="submit"], input[type="reset"] {
	font: normal normal normal 14px/140% 'PT Sans', Arial, Helvetica, sans-serif;
}
/* HTML 5 */
section, header, footer, aside, nav, article, hgroup {
	display:block;
}
/* LINKS */
a, a:link, a:visited, a:active {
	text-decoration: underline;
}
a:hover, a:focus {
	text-decoration: none;
}
/* END LINKS */
    
/* HEADINGS */
h1, h2, h3, h4, h5, h6, strong, b {
	font-weight:bold;
}
h1 {
	font-size: 36px;
	line-height: 140%;
	margin: 0 0 8px 0;
}
h2 {
	font-size: 30px;
	line-height: 140%;
	margin: 0 0 3px 0;
}
h3 {
	font-size: 26px;
	line-height: 140%;
	margin: 0 0 3px 0;
}
h4 {
	font-size: 22px;
	line-height: 140%;
	margin: 0 0 3px 0;
}
h5 {
	font-size: 18px;
	line-height: 140%;
	margin: 0 0 3px 0;
}
h6 {
	margin: 0 0 3px 0;
}
/* END HEADINGS */

/* TEXT */
* a {
	font-size:inherit;
	font-style:inherit;
	font-weight:inherit;
}
address, p {
	margin: 0 0 5px 0;
	padding: 0;
}
blockquote {
	margin-left: 20px;
	margin-right: 20px;
}
strong, b {
	font-weight: bold;
	font-size:inherit;
}
em, i, dfn, q, cite {
	font-style: italic;
	font-size:inherit;
}
q { /* Default (UK) quote marks */
	quotes: '\201C' '\201D' '\2018' '\2019';
}
q:lang(en) { /* Add in languages and quote marks as necessary - you never know they might work someday... */
 quotes: '\201C' '\201D' '\2018' '\2019';
}
pre, code, tt {
	font-family: "Courier New", Courier, monospace;
	white-space: pre;
}
samp {
	font-family: "Lucida Console", Monaco, monospace;
	white-space: pre;
}
abbr, acronym {
	border-bottom: 1px dotted;
	cursor: help;
}
del {
	text-decoration: line-through;
}
ins {
	text-decoration:underline;
}
small, sup, sub {
	font-size:83%;
}
big {
	font-size:117%;
}
/* END TEXT */
    
/* LISTS */
ul, dl {
	margin: 0 0 5px 0;
}
ol {
	margin: 0 0 5px 11px;
}
ul {
	list-style: outside disc;
}
ol {
	list-style: outside decimal;
}
dl {
}
dt {
	font-weight: bold;
}
li, dd {
	margin-left: 15px;
}
/* END LISTS */
   
/* TABLE */
table {
	border: 1px solid;
	border-collapse: collapse;
	margin: 0 0 15px 0;
}
mail_list_form table {
	border: 0px solid;
	border-collapse: collapse;
	margin: 0 0 15px 0;
}
caption {
	font-weight: bold;
	padding: 0 0 15px 0;
}
thead, tbody, tfoot {
	vertical-align:top;
}
tr {
	vertical-align:top;
}
th, td {
	vertical-align:top;
	padding: 5px;
	text-align: left;
}
th {
	font-weight: bold;
}
td {
}
/* END TABLE */


/* ODDS AND ENDS */    
hr {
	display: none;
}
/* END ODDS AND ENDS */    

/* FORM ELEMENTS */
form {
}
form div, form p {
	margin: 0 0 10px 0;
}
label {
	font-weight: bold;
}
fieldset {
	border: 1px solid;
	padding: 5px 10px;
	margin: 0 0 15px 0;
}
legend {
	font-weight: bold;
}
fieldset ul, fieldset ol {
	list-style: none;
	margin: 0 0 10px 0;
}
fieldset li, fieldset p {
	list-style: none;
	margin: 0 0 5px 0;
}
select, textarea {
	padding: 2px;
}
select {
	vertical-align: middle;
}
button {
}
textarea {
	border:1px solid;
}
input[type="checkbox"] {
}
input[type="radio"] {
}
input[type="file"] {
}
input[type="button"] {
}
input[type="submit"] {
}
input[type="reset"] {
}
input[type="text"] {
	border:1px solid;
	padding: 2px;
}
input[type=["password"] {
}
/* END FORM ELEMENTS */

/* END TYPOGRAPHY */
