/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Site CSS */

body {
	margin: 0px;
	padding: 0px;
	font-family: Lucida Grande, Lucida Sans Unicode, Arial, sans-serif;
	font-size: 11px;
	font-weight: normal;
	background-color: #DCDCDC;
	color: #000000;
	text-shadow: 0 1px 0 white;
	-moz-text-shadow: 0 1px 0 white;
	-webkit-text-shadow: 0 1px 0 white;
	background-image: -webkit-gradient(
	    linear,
	    left bottom,
	    left top,
	    color-stop(0.18, rgb(210,210,210)),
	    color-stop(0.8, rgb(240,240,240))
	);
	background-image: -moz-linear-gradient(
	    center bottom,
	    rgb(210,210,210) 18%,
	    rgb(240,240,240) 80%
	);
}

a {
	color: #5BB23B;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

#box {
	width: 700px;
	margin: 30px auto;
	padding: 30px;
	background: #F9F8F8;
	border: 1px solid #ABABAB;
	border-radius: 40px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	box-shadow: 10px 10px 30px rgba(50,50,50,0.1);
	-moz-box-shadow: 10px 10px 30px rgba(50,50,50,0.1);
	-webkit-box-shadow: 10px 10px 30px rgba(50,50,50,0.1);
}

#logo {
	margin-bottom: 30px;
}

table.icons {
	width: 640px;
	margin: 0 auto;
	font-size: 14px;
	border-top: 1px dotted #CDCDCD;
}

table.icons td {
	width: 50% !important;
	padding: 20px;
}

table.icons img {
	margin: 5px;
}

#footer {
	width: 700px;
	margin: 0 auto;
	color: #666;
}

h1 {
	margin: 1em 0;
	font-size: 20px;
	text-align: center;
}