  :root {
    --border-radius: 5px;
    --box-shadow: 2px 5px 5px;
    --box-shadow-header: 0px 5px 5px;
    --color-accent: #61B732;
    --color-bg: #fff;
    --color-header: #56a32d;;
    --color-header-secondary: #61B732;
    --color-header-tertiary: #D8EDCC;
    --color-footer: #d8d8d8;
    --color-footer-dark: #3f3f3f;
    --color-secondary-accent: #417b22;
    --color-shadow: #f4f4f4;
    --color-text: #000;
    --color-text-secondary: #7A7A7A;;
    --justify-normal: left;
    --line-height: 150%;
    --font-family: 'Fira Sans', sans-serif;
}
*::before, *::after {
	box-sizing: border-box;
}
header .logoleft, header .logoright {
	display: none;
}
#title-block-header {
	justify-content: center;
}
@media (min-width: 576px) {
	article, header, footer {
		max-width: 540px;
	}
	header .logoright {
		display: block;
	}
	#title-block-header {
		justify-content: space-between;
	}
}
@media (min-width: 768px) {
	article, header, footer {
		max-width: 720px;
	}
	header .logoleft, header .logoright {
		display: block;
	}
}
@media (min-width: 992px) {
	article, header, footer {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	article, header, footer {
		max-width: 1140px;
	}
}
.quicklink {
	background: var(--color-header);
	font-size: 0.8em;
	text-align: center;
}
header .logoleft img {
	height: 80px;
}
header .logoright img {
	height: 90px;
}
header a {
	color: var(--color-text);
}
header a:hover {
	color: var(--color-text);
	text-decoration: underline;
}
.toc {
	background: var(--color-header-tertiary);
}
#title-block-header {
	background-color: var(--color-header-secondary);
	display: flex;
	align-items: center;
	padding-right: 0px;
	padding-left: 15px;
}
header {
	display: block;
	width: 100%;
	margin-left: 15px;
	margin-right: 15px;
	padding: 0.2rem 1.25rem;
	box-shadow: var(--box-shadow-header) rgba(0,0,0,0.25);
	background: var(--color-bg);
}
footer {
	display: block;
	width: 100%;
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 30px;
}
footer img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
article img {
	max-width: 100%;
	height: auto;
}
.footer-content {
	background: var(--color-footer);
	padding: 1.25rem;
}
.footer-bottom {
	background: var(--color-footer-dark);
	color: var(--color-bg);
	font-size: 0.8em;
	text-align: center;
}
.footer-bottom a {
	color: inherit;
}
.footer-bottom a:hover {
	color: inherit;
	text-decoration: underline;
}
header h1 {
	color: var(--color-bg);
	border-bottom: none;
	text-align: center;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
article  {
	display: block; 
	width: 100%;
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 15px;
	padding: 1.25rem;
	box-shadow: var(--box-shadow) rgba(0,0,0,0.25);
	background: var(--color-bg);
	justify-content: var(--justify-normal);
}
article, h1, header {
	box-sizing: border-box;
}
body h1 {
	text-transform: uppercase;
}
article a {
	display: block;
	text-align: right;
}
h2 a {
	color: inherit;
	text-align: inherit;
}
h2 a:hover {
	color: inherit;
	text-decoration: underline;
}
a {
	color: var(--color-accent);
	text-decoration: none;
	background-color: transparent;
}
a:hover{
	color: var(--color-secondary-accent);
}
h1 {
	border-bottom: 4px solid var(--color-accent);
	padding-top: 0.8em;
	font-size: 1.8em;
}
h2 {
	border-bottom: 2px solid var(--color-accent);
	padding-top: 0.7rem;
	margin-top: 0px;
}
h1, h2 {
	display: block;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 0.7rem;
	margin-bottom: 1.2rem;
	text-align: center;
	font-weight: 500;
}
article span {
	color: var(--color-text-secondary);
	font-size: 0.7em;
	margin-bottom: 0.5rem;
	display: block;
}
p { display: inline }
nav > ul {
	display: block;
	list-style-type: none;
	padding: 0px;
}
nav > ul > li {
	margin-top: 1em;
	font-weight: 500;
}
ul {
	list-style-type: disc;
}
ul li {
	font-weight: 400;
}
body {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: url(../img/background-topo-dav.jpg);
	background-position: top center;
	background-repeat: repeat-x repeat-y;
	font-family: var(--font-family);
	line-height: var(--line-height);
	font-weight: 400;
}
