html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

* {
	margin: 0;
}

*, *::before, *::after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;    
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

p, h1, h2, h3, h4, h5, h6 {
	/*word-break: break-word;*/
	overflow-wrap: break-word;
	word-wrap: break-word;
	margin-top: 20px;
}

a {
	word-break: break-word;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

td a {
	word-break: unset;	
}

a:hover {
    text-decoration: underline;
}
b, strong, h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	-webkit-font-smoothing: antialiased;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button; /* 2 */
	cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

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

button {
    font-family: inherit;
    font-size: 1em;
}

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


/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
	line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

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

input[type="text"],
input[type="number"], input[type="url"], textarea, select {
	-webkit-appearance: none;
}

select {
    cursor: pointer;
}

textarea {
  overflow: auto;
}

iframe {
	height: 100%;
	width: 100%;
}

/* seperate required. */
/* ::-webkit-input-placeholder Chrome/Opera/Safari */
/* ::-moz-placeholder Firefox 19+ */
/* :-ms-input-placeholder IE 10+ */
/* :-moz-placeholder Firefox 18- */

::placeholder {
    white-space: pre-line;
    font-size: 14px;
    color: #000;
    opacity: 1;
	position: relative;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    white-space: pre-line;
    font-size: 14px;
    color: #000;
    opacity: 1;
	position: relative;
}

::-moz-placeholder {
    /* Firefox 19+ */
    white-space: pre-line;
    font-size: 14px;
    color: #000;
    opacity: 1;
	position: relative;
}

input:-ms-input-placeholder {
    /* IE 10+ */
    white-space: pre-line;
    font-size: 14px;
    color: #000;
    opacity: 1;
	position: relative;
}

input:-moz-placeholder {
    /* Firefox 18- */
    white-space: pre-line;
    font-size: 14px;
    color: #000;
    opacity: 1;
	position: relative;
}