/* Basic HTML
----------------------------------------------------------------------------------------------------*/
* {
	outline: none;
}

html {}

body {
	font-size: 13px;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	outline: none;
}

body * {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

pre,
code {
	font-family: 'DejaVu Sans Mono', Menlo, Consolas, monospace;
}

hr {
	border: 0 #ccc solid;
	border-top-width: 1px;
	clear: both;
	height: 0;
}

p {
	line-height: 18px;
}

/* Headings
----------------------------------------------------------------------------------------------------*/
h1 {
  font-size: 22px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

/* Spacing
----------------------------------------------------------------------------------------------------*/
ol {
  list-style: decimal;
  line-height: 18px;
}

ul {
  list-style: disc;
  line-height: 18px;
}

li {
  margin-left: 30px;
  line-height: 18px;
}

p,
dl,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
pre,
table,
address,
fieldset,
figure {
  margin-bottom: 16px;
}

/* Form
----------------------------------------------------------------------------------------------------*/
form {}

fieldset {
	padding: 2%;
	border: 1px solid #eaeaea;
}

legend {
	padding: 0 6px;
	font-size: 14px;
	font-weight: bold;
}

label {
	display: block;
	float: left;
	margin-top: 6px;
	width: 30%;
	font-size: 12px;
	cursor: pointer;
	line-height: 15px;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
	float: none;
	width: auto;
}

input {
	margin: 1px 0px;
	padding: 3px;
	width: 66%;
}
input[type="checkbox"],
input[type="radio"] {
	float: left;
	margin: 7px 6px 5px 0px;
	padding: 0;
	width: auto;
	height: auto;
}
*+html input[type="checkbox"],
*+html input[type="radio"] {
	margin: 3px 6px 5px 0px;
}

label + input[type="checkbox"],
label + input[type="radio"] {
	float: none;
}

input[type="submit"] {
	width: auto;
	height: auto;
}

select {
	margin: 1px 0;
	padding: 3px;
	font-size: 12px;
}

textarea {
	margin: 1px 0px;
	padding: 3px;
	width: 66%;
	font-size: 12px;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* Clear Floated Elements
--------------------------------------------------------------------------------*/
/* http://sonspring.com/journal/clearing-floats */
html body * span.clear,
html body * div.clear,
html body * li.clear,
html body * dd.clear {
	background: none;
	border: 0;
	clear: both;
	display: block;
	float: none;
	font-size: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
	clear: both;
	content: '.';
	display: block;
	visibility: hidden;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/* Default classes
----------------------------------------------------------------------------------------------------*/
.autowidth {
	width: auto;
}
.nomargin {
	margin: 0;
}
.nopadding {
	padding: 0;
}
.left {
	float: left;
}
.right {
	float: right;
}
.hidden {
	display: none;
}
