/**
 * AUTHOR:	AMEII
 * VERSION:	Tue May 23 12:52:32 2017
 */



/**
 * BORDER BOX EVERYTHING!
 * Tue May 23 12:51:01 2017
 */

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	margin: 0; padding: 0;
	border: 0;
	vertical-align: baseline;
}

/* This helps to make newer HTML5 elements behave like DIVs in older browers */
article, aside, details, figcaption, figure, dialog,
footer, header, hgroup, menu, nav, section {
	display: block;
}

/* Line-height should always be unitless! */
body {
	line-height: 1.5;
	background: white;
}

/* Tables still need 'cellspacing="0"' in the markup. */
table {
	border-collapse: separate;
	border-spacing: 0;
}
/* float:none prevents the span-x classes from breaking table-cell display */
caption, th, td {
	text-align: left;
	font-weight: normal;
	float: none !important;
}
table, th, td {
	vertical-align: middle;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
}
blockquote, q {
	quotes: "" "";
}

/* Remove annoying border on linked images. */
a img {
	border: none;
}

/* Remember to define your own focus styles! */
:focus {
	outline: 0;
}

/*
input, label, select, button, textarea {
	margin: 0; padding: 0;
	border: 0;
	display: inline-block;
	vertical-align: baseline;
	white-space: normal;
	background: none;
	line-height: 1;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

	/* Browsers have different default form fonts
	font-size: 13px;
	font-family: Arial;
}
*/
/* Remove the stupid outer glow in Webkit */
input:focus {
	outline:0;
}

/* iOS Fix */
input {
	-webkit-appearance: none;
}

/* Text Inputs */
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
}

/* Button Controls */
input[type=checkbox],
input[type=radio] {
	width: 13px; height: 13px;
}

/* File Uploads */
input[type=file] {

}

/* Search Input */
/* Make webkit render the search input like a normal text field */
input[type=search] {
	-webkit-appearance:textfield;
	-webkit-box-sizing:content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
	display: none;
}

/* Buttons */
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
	/* Fix IE7 display bug */
	overflow: visible;
	width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
	padding: 0;
	border: 0;
	background: none;
}

/* Textarea */
textarea {
	/* Move the label to the top */
	vertical-align: top;

	/* Turn off scroll bars in IE unless needed */
	overflow: auto;
}

/* Select */
select {

}

select[multiple] {
	/* Move the label to the top */
	vertical-align: top;
}
/**
END - CSS Reset
*/


/**
START - CSS Fix
Thu Feb  2 12:04:30 2017 */
/* FireFox */
input[type="hidden"] {
	visibility: hidden;
	margin: 0; padding: 0;
	display: none;
}
input[type="image"] {
	margin: 0; padding: 0;
	border: 0;
}
:focus {
	outline: none;
}
::-moz-focus-inner {
	border: 0;
}
/* iOS fix for onclick events */
label, input[type="checkbox"], input[type="radio"] {
	cursor: pointer;
}
/**
END - CSS Fix
*/