/**
  * Global reset
  * Defines default style
  *
  * @lastmodified 2008.01.28
  * @media all
  * @style reset.css 
  */
/**
  * Reset declaration
  */
html,head,body,
div,blockquote,q,img,object,param,embed,area,map,b,i,em,strong,tt,sub,sup,big,small,hr,
h1,h2,h3,h4,h5,h6,
abbr,acronym,address,bdo,cite,code,ins,del,dfn,kbd,br,
ul,ol,li,dl,dt,dd,
table,tr,td,th,tbody,thead,tfoot,col,colgroup,caption,
form,label,fieldset,legend,
a,base,span,pre,p {
	margin: 0;
	border: 0;
	padding: 0;
}
input, button, select, textarea {
	margin: 0;
}
body, html {
	height: 100%;
}
html {
	border: none;
}

body {
	color: #333;
}

a, a:active, a:link {
	color: #0a67c7;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

* {
	outline: 0;
}

table {
	border-collapse: collapse;
}

ul {
	list-style: none;
}

/**
  * Typography: fonts, font sizes.
  * Usefull resource: http://typetester.maratz.com/
  */

body {
	font: 76% Arial, Helvetica, sans-serif, Times, Georgia;
	line-height: 1.84em;
	color: #4e504f;
}

h1,h2,h3,h4,h5 {
	font-family: Helvetica, Arial, sans-serif, Times;
}
h1 {
	font-size: 2.75em;
	font-weight: normal;
	letter-spacing: -0.03em;
	line-height: 1.2em;
}
h2 {
	font-size: 1.34em;
}
h3 {
	font-size: 1.17em;
}
h4, h5 {
	font-size: 1em;
}

/**
 * Common classes
 */
.hidden {
	display: none;
}
