/** CSS DOCUMENT **/

/* Eric Meyer's CSS Reset */
/* v1.0 | 20080212 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
a, *:focus, *:active {
	outline: 0;
}
/*for FireFox*/
    input[type="submit"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner
    {   
        border : 0px;
    } 
/*for IE8 */
    input[type="submit"]:focus, input[type="button"]:focus
    {     
        outline : none; 
    }

body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
/** End Meyer Reset **/

/** Clearfix **/
.clearfix:after, .vcard:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/** End Clearfix **/

/** Begin Font Fix */
body {
  font-size: 62.5%;
}

input, select, th, td, p {
  font-size: 1em;
}
/** End Font Fix **/

/** BEGIN MAIN STYLING **/
body {
	font-family: arial, 'sans serif';
	width: 800px;
	margin: 20px auto;
}

#logo {
	margin: 0 auto;
	display: block;
	width: 692px;
	margin-bottom: 50px;
}

a, a:visited {
	color: #008f96;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

p {
	margin-bottom: 1em;
	text-align: center;
	font-size: 1.5em;
	line-height: 1.2em;
}

h2 {
	font-family: bergamo, garamond, times, 'times new roman', serif;
	margin: 1em 0;
	font-size: 3.0em;
	text-align: center;
}

form {
	font-size: 1.5em;
}

input, select, option {
	padding: 5px;
	outline-color: #ccc;
}

table td {
	padding: 10px;
}

#sendbutton {
	display: block;
	background: #fff;
	border: 1px solid #ccc;
	width: 100px;
	margin: 0 auto;
}
	
#sendbutton:hover {
	background: #008f96;
	color: #fff;
	cursor: pointer;
}

#sendbutton:active {
	background: #ccc;
	color: #fff;
}