/*
 * 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;
}
html {
	width: 100%;
}
body {
	line-height: 1;
	border-width: 0px !important;
}
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;
}

/* ========================================== */

.will-fade {
	-webkit-transition: opacity 1s;
	-moz-transition:    opacity 1s;
	-ms-transition:     opacity 1s;
	-o-transition:      opacity 1s;
	transition:         opacity 1s;

	opacity: 0;
}
.do-fade {
	opacity: 1;
}


/* ========================================== */

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	background-color: #eee;
	-webkit-font-smoothing: antialiased;
	-webkit-transform: translate3d(0,0,1px);
	-moz-transform:    translate3d(0,0,1px);
	-ms-transform:     translate3d(0,0,1px);
	-o-transform:      translate3d(0,0,1px);
	transform:         translate3d(0,0,1px);
}
h1 { font-size: 150%; font-weight: 800; }
h2 { font-size: 140%; font-weight: 700; }
h3 { font-size: 130%; font-weight: 700; }
h4 { font-size: 120%; font-weight: 700; }
h5 { font-size: 110%; font-weight: 700; }
p { font-size: 100%; }
.smaller { font-size: 80%; }
ul { padding-left: 20px; }
li { font-size: 20px; list-style: circle; }
strong { font-weight: 700; }
em { font-style: italic; }
pre { font-family: monospace; font-size: 20px; }
code { font-family: monospace; }

section {
	padding: 40px;

	line-height: 1.5;
	font-size: 30px;
}

.jmpress-initialized section {
	width: 980px;
	height: 640px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	-ms-box-sizing:     border-box;
	-o-box-sizing:      border-box;
	box-sizing:         border-box;

	pointer-events: auto;
}

.jmpress-only {
	display: none;
}

.jmpress-initialized .jmpress-only {
	display: inherit;
}

.global-next, .global-prev {
	position: fixed;
	bottom: 50%;
	display: none;
	padding: 0px;
	background: #333;
	border-radius: 100%;
	width: 100px;
	height: 100px;
	cursor: pointer;

	pointer-events: auto;
}

.global-prev {
	left: -50px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

.global-next {
	right: -50px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

.global-down {
	position: fixed;
	top: 60%;
	right: -500px;
	border-radius: 50px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	display: none;
	padding: 40px;
	padding-right: 90px;
	background: #333;
	height: 100px;
	cursor: pointer;
	color: white;

	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	-ms-box-sizing:     border-box;
	-o-box-sizing:      border-box;
	box-sizing:         border-box;

	-webkit-transition: right 1s;
	-moz-transition:    right 1s;
	-ms-transition:     right 1s;
	-o-transition:      right 1s;
	transition:         right 1s;

	pointer-events: auto;
}

.global-down.active {
	right: -50px;
}

.jmpress-initialized  .global-down, .jmpress-initialized .global-next, .jmpress-initialized .global-prev {
	display: block;
}

footer {
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding: 5px;
}

.strike-if-on.on {
	text-decoration: line-through;
}

.strike-if-off.off {
	text-decoration: line-through;
}

table.compare {
	width: 100%;
}

table.compare th {
	text-align: left;
	font-weight: 800;
}

table.compare td {
	font-size: 20px;
}

table.compare td.plus {
	color: #393;
}

table.compare td.minus {
	color: #933;
}
