/*
 * @section     Reset CSS
 * @desc        Reset stylesheet is to reduce browser inconsistencies and normalize styles
 * @link        http://www.google.com/search?q=reset+css
 *              http://www.google.com/search?q=normalize+css
 */
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box; /* better block model */
	-webkit-background-clip: padding-box;
			background-clip: padding-box; /* fix for background width border-radius */
	}

MAIN, ARTICLE, ASIDE, DETAILS, FIGCAPTION, FIGURE, FOOTER, HEADER, NAV, SECTION, SUMMARY {
	display: block;
	}
AUDIO, CANVAS, VIDEO, TIME, PROGRESS {
	display: inline-block;
	}
AUDIO:not([controls]) {
	display: none;
	height: 0;
	}
FIGURE > IMG {
	display: block;
	}

MAIN, ARTICLE, ASIDE, DETAILS, FIGCAPTION, FIGURE, FOOTER, HEADER, NAV, SECTION, SUMMARY, AUDIO, CANVAS, VIDEO, TIME, PROGRESS,
HTML, BODY,
OBJECT, EMBED, IFRAME, HR,
H1, H2, H3, H4, H5, H6,
DIV, P, IMG, SUB, SUP, A, SMALL, BIG,
OL, UL, LI, DD, DT, DL, ADDRESS, BLOCKQUOTE, Q,
ABBR, ACRONYM, DFN, MARK,
CODE, KBD, PRE, SAMP,
FORM, FIELDSET, LEGEND, LABEL, INPUT, BUTTON, TEXTAREA, SELECT, OPTION,
TABLE, THEAD, TBODY, TFOOT, TH, TD {
	margin: 0;
	padding: 0;
	border: none;
	border-spacing: 0;
	border-collapse: collapse;
	border-radius: 0;
	color: inherit;
	font: inherit;
	text-shadow: inherit;
	text-decoration: inherit;
	text-transform: inherit;
	text-indent: inherit;
	background: none;
	box-shadow: none;
	}
FIELDSET {
	min-width: 0;
	}
B, STRONG {
	font-weight: 600;
	}
HTML {
	font-size: 100%;
	min-height: 100%;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
			text-size-adjust: 100%; /* reset to normal text */
	-ms-overflow-style: scrollbar; /* IE 10+ set classic scrollbar display, not overflow */
	}
BODY {
	height: 100%;
	}

TABLE {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	}
TH, TD {
	text-align: left;
	vertical-align: top;
	}

IMG {
	display: inline-block;
	vertical-align: middle;
	max-width:100%;
	}
IMG::-moz-selection { background: transparent; }
IMG::selection      { background: transparent; }

OL, UL {
	list-style: none outside;
	}
LI {
	display: block;
	}

A {
	background: transparent; /* IE 10+ remove background for :active event */
	-webkit-tap-highlight-color: transparent; /* remove background for touch */
	}
A:not([href]) {
	cursor: pointer; /* set cursor for non-href links */
	}
 
A[href^="tel:"],
A[href^="sms:"],
A[href^="callto:"] {
	pointer-events: none; /* disable hover effects for touch */
	}

.button,
.input-text,
INPUT[type="radio"],
INPUT[type="checkbox"],
SELECT,
TEXTAREA {
	display: inline-block;
	vertical-align: middle;
	text-align: left;
	}
.button,
.input-text,
INPUT[type="radio"],
INPUT[type="checkbox"] {
	-webkit-appearance: none;
	   -moz-appearance: none;
		-ms-appearance: none;
			appearance: none; /* remove additional decorations */
	}
INPUT[type="number"] {
	-webkit-appearance: textfield;
	   -moz-appearance: textfield;
		-ms-appearance: textfield;
			appearance: textfield; /* remove additional decorations */
	}
INPUT[type="number"]::-webkit-inner-spin-button,
INPUT[type="number"]::-webkit-outer-spin-button,
INPUT[type="search"]::-webkit-search-decoration,
INPUT[type="search"]::-webkit-search-cancel-button,
INPUT[type="search"]::-webkit-search-results-button,
INPUT[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none; /* remove additional decorations */
	}
INPUT[type="number"]::-webkit-inner-spin-button,
INPUT[type="number"]::-webkit-outer-spin-button {
	height: auto; /* fix */
	}
INPUT[type="radio"],
INPUT[type="checkbox"] {
	position: relative;
	top: -2px;
	height: 14px;
	width: 14px;
	border: 1px solid #bb9a9a;
	top: 3px;
    right: 3px;
	}
INPUT[type="radio"] {
	border-radius: 20px;
	}
INPUT[type="radio"]:checked:before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	position: relative;
	left: 3px;
	top: 3px;
	background: #000;
	border-radius: 20px;
	}
INPUT[type="checkbox"]:checked:after,
INPUT[type="checkbox"]:checked:before {
	content: '';
    position: absolute;
	background: #000;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		 -o-transform: rotate(45deg);
			transform: rotate(45deg);
	}
INPUT[type="checkbox"]:checked:after {
	top: 3px;
	left: 6px;
	width: 2px;
	height: 8px;
	}
INPUT[type="checkbox"]:checked:before {
	top: 7px;
	left: 2px;
	width: 3px;
	height: 2px;
	}
INPUT::-ms-clear,
INPUT::-ms-reveal {
	display: none; /* IE 10+ remove input clear icon */
	}
.button {
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	overflow: hidden;
	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none; /* disable text select */
	}
BUTTON, INPUT[type="button"], INPUT[type="submit"], INPUT[type="reset"] {
	overflow: auto; /* IE 6+ button height fix */
	-webkit-appearance: button;
	   -moz-appearance: button;
		-ms-appearance: button;
			appearance: button; /* fix */
	}
BUTTON::-moz-focus-inner {
	padding: 0; /* Firefox remove additional padding */
	border: none; /* Firefox remove additional padding */
	}
TEXTAREA {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
	}
OPTION,
OPTGROUP:before {
	padding-right: 1em;
	}
OPTGROUP:before {
	content: attr(label);
	font-weight: normal;
	font-style: normal;
	}
	OPTGROUP > OPTION {
		padding-right: 1em;
		}
LABEL[for] {
	cursor: pointer;
	}

BLOCKQUOTE,
Q {
	quotes: none;
	}

HR {
	height: 0;
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
			box-sizing: content-box;
	}

:hover,
:active,
:focus {
	outline: none;
	}
:invalid {
	outline: none;
	box-shadow: none;
	}

@media only screen and ( max-width: 768px ) {
	HTML {
		-webkit-text-size-adjust: none;
		   -moz-text-size-adjust: none;
			-ms-text-size-adjust: none;
				text-size-adjust: none; /* reset to normal text */
		}
	}

@media print,
	   ( -webkit-min-device-pixel-ratio: 1.3 ),
	   ( min--moz-device-pixel-ratio: 1.3 ),
	   ( -o-min-device-pixel-ratio: 1.3/1 ),
	   ( min-resolution: 1.3dppx ),
	   ( min-resolution: 125dpi ){
	CANVAS, IMG {
		image-rendering: -webkit-optimize-contrast;
		image-rendering: -moz-crisp-edges;
		image-rendering: -o-crisp-edges;
		image-rendering: optimize-contrast; /* better quality for retina */
		}
	}
