/**
 * #.# CSS Fixes
 *
 * Reset all css properties
 */

/* Set block elements / Format them as border-box elements */
article, aside, details, div, figcaption, figure, footer, header, hgroup,
	main, nav, section, summary {
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Media boxes as inline blocks */
audio, canvas, video {
	display: inline-block;
}

/* Hide audio elements */
audio:not ([controls] ){
	display: none;
	height: 0;
}

/* Hide hidden elements */
[hidden] {
	display: none;
}

/* Adjust main fonts */
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

/* Remove body margins */
body {
	margin: 0;
}

/**
	 * #.# Link outlines
	 *
	 * Set the link outlines for focused elements
	 * Remove outlines from active and hovered elements
	 */
a:focus {
	outline: thin dotted;
}

a:active, a:hover {
	outline: 0;
}

/* Adjust font size and margin for h1 tags */
h1 {
	font-size: 2em;
	margin: .67em 0;
}

/* Border for abbreviations */
abbr[title] {
	border-bottom: 1px dotted;
}

/* Weight for bold objects (should be reformatted by child theme, relative to the used font-family) */
b, strong {
	font-weight: bold;
}

/* Font style for defining tags */
dfn {
	font-style: italic;
}

/* Box sizing and height for hr tags */
hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

/* Marked text colors */
mark {
	background-color: #ff0;
	color: #000;
}

/* Font specifications for special textblocks */
code, kbd, pre, samp {
	font-family: monospace, serif;
	font-size: 1em;
}

/* White space for pre */
pre {
	white-space: pre-wrap;
}

/* Define quote signs */
q {
	quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Font size for small elements */
small {
	font-size: 80%;
}

/**
	 * #.# Sub and Sup
	 *
	 * Properties for supertext and subtext
	 */
sub, sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Remove image borders */
img {
	border: none;
}

/* No overflow for svg media roots */
svg:not (:root ){
	overflow: hidden;
}

/* Remove figure margin */
figure {
	margin: 0;
}

/* Field set defaults */
fieldset {
	margin: 0 2px;
	padding: .35em .625em .75em;
	border: 1px solid silver;
}

/* Remove legend maargins and paddings */
legend {
	border: 0;
	padding: 0;
}

/**
 * #.# Form elements
 *
 * Reset all form elements
 * - button
 * - input
 * - select
 * - textarea
 */
button, input, select, textarea {
	font-family: inherit;
	font-size: 100%;
	margin: 0;
}

button, input {
	line-height: normal;
}

button, select {
	text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"]
	{
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled], html input[disabled] {
	cursor: default;
}

input[type="checkbox"], input[type="radio"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration
	{
	-webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

/* Table border collapsing */
table {
	border-collapse: collapse;
	border-spacing: 0;
}