html {
	font-weight: 500;
	font-size: 62.5%;
	line-height: 1.75;
}
@media screen and (min-width: 720px) {
	html {
		font-size: 68.75%;
	}
}
@media screen and (min-width: 960px) {
	html {
		font-size: 75%;
	}
}
	
body {
	color: #63666a;
	background: #fff;
	font-size: 1.6rem;
	font-family: "Exo", Klavika, sans-serif;
}

a {
	color: #0090e3;
	transition: all 0.1s;
}
a:hover,
a:active,
a:focus {
	/*color: #63666a;*/
	text-decoration: none;
	background: #63666a;
	color: #fff;
}

h1 {
	font-size: 2.2rem;
	font-weight: 700;
	color: #0090e3;
	margin: 40px 0px 0px 0px;
}
h2 {
	font-size: 1.9rem;
	font-weight: 700;
	color: #0090e3;
	margin: 30px 0px 0px 0px;
}
h3 {
	font-size: 1.7rem;
	font-weight: 700;
	color: #0090e3;
	margin: 30px 0px 0px 0px;
}

h1 a, h2 a, h3 a {
	text-decoration: none;
}

strong, b {
	font-weight: 700;
}

p {
	margin: 20px 0px;
}
h1 + p, h2 + p, h3 + p {
	margin-top: 10px;
}

.center {
	text-align: center;
}

section.content ul {
	margin: 30px 0px;
	padding: 0px 0px 0px 18px;
}
section.content ul li {
	list-style: none;
	background: url('/img/li_bullet.png') no-repeat left 6px;
	background-size: 14px;
	padding-left: 24px;
	margin-bottom: 8px;
}
@media screen and (min-width: 720px) {
	section.content ul li {
		background-position: left 8px;
	}
}
@media screen and (min-width: 960px) {
	section.content ul li {
		background-position: left 9px;
	}
}
section.content ul li:last-child {
	margin-bottom: 0px;
}

button, a.button {
	display: inline-block;
	background: #0090e3;
	color: #FFF;
	text-decoration: none;
	padding: 4px 15px 5px;
	border-radius: 3px;
	text-transform: uppercase;
	font-weight: 500;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), inset 0 -2px 0 0 rgba(0, 0, 0, 0.25);
	font-weight: 700;
	text-shadow: none;
}
button.light, a.button.light {
	background: #FFF;
	color: #63666a;
}
button:hover, a.button:hover,
button:active, a.button:active,
button:focus, a.button:focus {
	background: #63666a;
	color: #FFF;
}

button.invert, a.button.invert {
	background: #63666a;
	color: #FFF;
}
button.invert:hover, a.button.invert:hover,
button.invert:active, a.button.invert:active,
button.invert:focus, a.button.invert:focus {
	background: #FFF;
	color: #007ec6;
}

section.content ul.tagcloud {
	margin: 10px 0px 20px 0px;
	padding: 0px;
}
section.content ul.tagcloud li {
	background: #eeeff0;
	color: #787b7f;
	font-weight: 300;
	font-size: 0.9em;
	display: inline-block;
	padding: 1px 6px;
	margin: 0px 3px 8px 0px;
	border-radius: 3px;
}

/* Tables */
div.full-table {
    margin: 20px 0px;
    overflow-x: auto;
}
table {
	margin: 20px 0px;
	border-collapse: collapse;
	line-height: 1.4;
	font-size: 0.95em;
}

th, td {
	vertical-align: top;
	padding: 5px 0px;
	text-align: left;
}
th {
	color: #0090e3;
	text-transform: uppercase;
}
th[scope="row"] {
	padding-right: 20px;
}

.specs th, .specs td {
	padding: 5px 10px 5px 5px;
	vertical-align: center;
	color: inherit;
	border: solid 1px #FFF;
}
.specs tr:nth-child(odd) {
	background: rgba(255,255,255,0.2);
}
.specs tr:nth-child(even) {
	background: rgba(0,0,0,0.02);
}

.frame {
	background: #f3f3f4;
	padding: 20px;
	margin: 30px 0px;
}