/* CSS Document */
/* Based on parameters qualified on Jan 28, 2020 */
/* https://www.w3schools.com/cssref/css_default_values.asp */


/* -------------------------------------------------------------------------------- */
/* Chapter 4: HTML Overview                                                         */
/* Document structure                                                               */
/* -------------------------------------------------------------------------------- */
body {
	display: flex;
    flex-direction: column;
    font-family: Tahoma, Geneva, Verdana, Segoe, sans-serif;	
    font-style: normal;
	margin: 0;
}

body:focus {
	outline: none;
}

head {
	display: none;
}

html {
	display: block;
}

html:focus {
	outline: none;
}

link {
	display: none;
}

meta {
	
}

noscript {
	
}

title {
	display: none;
}

script {
	display: none;
}

style {
	display: none;
}



/* -------------------------------------------------------------------------------- */
/* Chapter 5: Marking Up Text                                                       */
/* Page sections                                                                    */
/* -------------------------------------------------------------------------------- */
address {
	display: block;
	font-style: italic;
}

article {
	display: block;
}

aside {
	display: block;
}

details {
	display: block;
}

dialog {
	
}

footer {
	display: block;
}

header {
	display: block;
}

nav {
	display: block;
}

section {
	display: block;
}


/* -------------------------------------------------------------------------------- */
/* Heading content                                                                  */
/* -------------------------------------------------------------------------------- */
h1 {
	display: block;
	font-size: 2em;
	margin-top: 0.67em;
	margin-bottom: 0.67em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

h2 {
	display: block;
	font-size: 1.5em;
	margin-top: 0.83em;
	margin-bottom: 0.83em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

h3 {
	display: block;
	font-size: 1.17em;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

h4 {
	display: block;
	margin-top: 1.33em;
	margin-bottom: 1.33em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

h5 {
	display: block;
	font-size: .83em;
	margin-top: 1.67em;
	margin-bottom: 1.67em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}

h6 {
	display: block;
	font-size: .67em;
	margin-top: 2.33em;
	margin-bottom: 2.33em;
	margin-left: 0;
	margin-right: 0;
	font-weight: bold;
}


/* -------------------------------------------------------------------------------- */
/* Grouping content elements and attributes                                         */
/* -------------------------------------------------------------------------------- */
blockquote {
	display: block;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 40px;
	margin-right: 40px;
}
	/* See also: cite */

div {
	display: block;
}

figure {
	display: block;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 40px;
	margin-right: 40px;
}

figcaption {
	display: block;
}

hr {
	display: block;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	margin-left: auto;
	margin-right: auto;
	border-style: inset;
	border-width: 1px;
}

main {
	
}

p {
	display: block;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
}

pre {
	display: block;
	font-family: monospace;
	white-space: pre;
	margin: 1em 0;
}


/* -------------------------------------------------------------------------------- */
/* List elements and attributes                                                     */
/* -------------------------------------------------------------------------------- */
dd {
	display: block;
	margin-left: 40px;
	list-style: disc;
	font-size: small;
}

dl {
	display: block;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
}

dt {
	display: block;
	font-weight: bold;
	margin-top: .5em;
}

dl>dt:first-of-type {
	margin-top: 0;
}

dl>dl {
	margin-left: 40px;
}

dl>dl:first-of-type {
	margin-top: 0;
}

dd>ul {
	margin-top: 0;
	padding-left: 0;
}

li {
	display: list-item;
}

ol {
	display: block;
	list-style-type: decimal;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
	padding-left: 40px;
}

ul {
	display: block;
	list-style-type: disc;
	margin-top: 1em;
	margin-bottom: 1 em;
	margin-left: 0;
	margin-right: 0;
	padding-left: 40px;
}


/* -------------------------------------------------------------------------------- */
/* Breaks                                                                           */
/* -------------------------------------------------------------------------------- */
br {
	
}

wbr {
	
}


/* -------------------------------------------------------------------------------- */
/* Phrasing elements and attributes                                                 */
/* -------------------------------------------------------------------------------- */
abbr {
	
}

b {
	font-weight: bold;
}

bdi {
	
}

bdo {
	unicode-bidi: bidi-override;
}

cite {
	font-style: italic;
}

code {
	font-family: monospace;
}

data {
	
}

del {
	text-decoration: line-through;
}
	/* See also: cite, datetime */

dfn {
	font-style: italic;
}

em {
	font-style: italic;
}

i {
	font-style: italic;
}

ins {
	text-decoration: underline;
}
	/* See also: cite, datetime */

kbd {
	font-family: monospace;
}

mark {
	background-color: yellow;
	color: black;
}

q {
	display: inline;
}
	/* See also: cite */

q::before {
	content: open-quote;
}

q::after {
	content: close-quote;
}

ruby {
	
}

rp {
	
}

rt {
	line-height: normal;
}

s {
	text-decoration: line-through;
}

samp {
	font-family: monospace;
}

small {
	font-size: smaller;
}

span {
	
}

strong {
	font-weight: bold;
}

sub {
	vertical-align: sub;
	font-size: smaller;
}

sup {
	vertical-align: super;
	font-size: smaller;
}

time {
	
} /* See elements: datetime, pubdate */

u {
	text-decoration: underline;
}

var {
	font-style: italic;
}


/* -------------------------------------------------------------------------------- */
/* Chapter 6: Adding Links                                                          */
/* -------------------------------------------------------------------------------- */
a:link {
	/*
	color: default;
	*/
	text-decoration: none;
	cursor: pointer;
}

a:visited {
	/*
	color: default;
	*/
	text-decoration: underline;
	cursor: pointer;
}

a:link:active {
	/*
	color: default;
	*/
}

a:link:active, a:visited:active {
	/*
	color: default;
	*/
}


/* -------------------------------------------------------------------------------- */
/* Chapter 7: Adding Images                                                         */
/* -------------------------------------------------------------------------------- */
img {
	display: block;
	width: 100%;
}

picture {

}

source {
	
}


/* -------------------------------------------------------------------------------- */
/* Chapter 8: Table Markup                                                          */
/* -------------------------------------------------------------------------------- */
caption {
	display: table-caption;
	text-align: center;
}

col {
	display: table-column;
}

colgroup {
	display: table-column-group;
}

table {
	display: table;
	border-collapse: separate;
	border-spacing: 2px;
	border-color: gray;
}

tbody {
	display: table-row-group;
	vertical-align: middle;
	border-color: inherit;
}

td {
	display: table-cell;
	vertical-align: inherit;
}

tfoot {
	display: table-footer-group;
	vertical-align: middle;
	border-color: inherit;
}

th {
	display: table-cell;
	vertical-align: inherit;
	font-weight: bold;
	text-align: center;
}

thead {
	display: table-header-group;
	vertical-align: middle;
	border-color: inherit;
}

tr {
	display: table-row;
	vertical-align: inherit;
	border-color: inherit;
}


/* -------------------------------------------------------------------------------- */
/* Chapter 9: Forms                                                                 */
/* -------------------------------------------------------------------------------- */
button {
	
}

datalist {
	display: none;
}

fieldset {
	display: block;
	margin-left: 2px;
	margin-right: 2px;
	padding-top: 0.35em;
	padding-bottom: 0.625em;
	padding-left: 0.75em;
	padding-right: 0.75em;
	border: 2px groove /* browser's internal value */
}

form {
	display: block;
	margin-top: 0;
}

input {
	
}

label {
	cursor: default;
}

legend {
	display: block;
	padding-left: 2px;
	padding-right: 2px;
	border: none;
}

meter {
	
}

optgroup {
	
}

option {
	
}

output {
	display: inline;
}

progress {
	
}

select {
	
}

textarea {
	
}


/* -------------------------------------------------------------------------------- */
/* Chapter 10: Embedded Media                                                       */
/* -------------------------------------------------------------------------------- */
audio {
	
}

canvas {
	
}

embed:focus {
	outline: none;
}

iframe:focus {
	outline: none;
}

iframe[seamless] {
	display: block;
}

object:focus {
	outline: none;
}

param {
	display: none;
}

/* See: Source */

track {
	
}

video {
	
}
