@charset "utf-8";

/**
 * reset stylesheet
 *
 * based on CSS Reset by Eric Meyer:
 * 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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0; /* ::ADD:: */
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, 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;
}



/* additional basic settings */

body {
	background: white;
	color: black;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
strong, b {
	font-weight: bold;
}
em, i {
	font-style: italic;
}
label,
input[type=button],
input[type=submit],
button {
	cursor: pointer;
}



/* IE fixes */

/*
.ie7 address {
	font-style: normal;
}
*/
img {
	-ms-interpolation-mode: bicubic;
}



/* extensions */

*, *:before, *:after {			/* border-box FTW */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input::-moz-focus-inner,		/* removes button padding in FF */
button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input[type=hidden] {			/* hides hidden inputs in FF 3.5- */
	display: none !important;
}
input {
	margin: 0;					/* removes margin from radio-buttons */
}
/*
input, select, textarea {		// more consistency between form elements
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*/
sup {							/* normalizes sup style */
	height: 0;
	line-height: 1;
	position: relative;
	top: -0.6em;
	vertical-align: baseline !important;
	vertical-align: bottom;
	font-size: 0.75em;
}




/* some basic tools */

.hide-forced {
	position: absolute;
	left: -9999em;
	top: -9999em;
}
.hide-text {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.hidden {
	display: none;
}
.invisible {
	visibility: hidden;
}



/*								// old version
.clearfix:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
* html .clearfix { height: 1%; }
.clearfix { display: block; }
*/



/**
 * clearfix for modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}
