/* -- Normalization --------------------------------------------------------------------------------------- */

/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

* {
	margin: 0;
	padding: 0;
}

html {
	font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
	display: none;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:focus ,
a:active,
a:hover {
	outline: 0;
}


/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
	font-weight: bold;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

img {
	border: 0;
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
button,
input,
select,
textarea {
	-moz-appearance: none;
	-moz-box-sizing: border-box;
	-moz-user-select: auto;
	-webkit-appearance: none; 
	-webkit-box-sizing: border-box;
	-webkit-user-select: auto;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 100%;
	user-select: auto;
}

input, textarea, select {
	border: 1px solid #cccccc;
	background: #fffbf0;
}

input[type=checkbox] {
	-moz-appearance: checkbox;
	-webkit-appearance: checkbox;
}

input[type=radio] {
	-moz-appearance: radio;
	-webkit-appearance: radio;
	border: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
	overflow: auto;
	vertical-align: top;
}

input[type=checkbox], input[type=checkbox] {
	border: 0;
	cursor: pointer;
	width: auto;
}

/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
	display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
	display: inline-block;
}


ul {
	list-style-position: outside;
	list-style-type: circle;
	margin-left: 15px;
}

ul li {
	margin-bottom: 10px;
}

ul li:last-child {
	margin-bottom: 0;
}