:root {
	--dark-mode-background-primary: #000;
	--dark-mode-background-secondary: #333;
	--dark-mode-color-primary: #ff0;
	--dark-mode-color-secondary: #cc0;
}

html {

	height : 100%;
	overflow: auto;

}

body {

	height : 100%;
	font-size: 12px;
	font-family: Times New Roman;
	margin: 0 auto;
}

a {
	color: #800000;
}

a:hover {
	color: #500000;
}

b {
	font-weight: bold;
}

#top {

	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: auto;
	
}

/*PANEL BANNERA: POCZ�TEK*/

#top > #header {}

/*PANEL BANNERA: KONIEC*/

/*PANEL G�RNY: POCZ�TEK*/

#top > #nav {

	margin: 0 auto;
	margin-bottom: 10px;
	
}

/*PANEL G�RNY: KONIEC*/

/*PANEL STOPKI: POCZ�TEK*/

#top > #footer {

	margin: 0 auto;
	margin-top: 10px;
	text-align: center;
	
}

#top > #footer > a {
	color: #000000;
}

#top > #footer > a:hover {
	color: #888888;
}

/*PANEL STOPKI: KONIEC*/

#top > #content {
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 30px;
}

/*LEWY PANEL: POCZ�TEK*/

#top > #content > #left_panel {

	float: left;
	margin: 0 10px;
}

/*LEWY PANEL: KONIEC*/

/*PANEL �RODKOWU: POCZ�TEK*/

#top > #content > #content_panel {

	float: left;
}

#top > #content > #content_panel > #article {
	width: 100%;
	margin-bottom: 20px;
	background-color: #FFFFFF;
}

#top > #content > #content_panel > #article > #header {
	width: 95%;
	height: 25px;
	line-height: 25px;
	margin: 0 auto;
	padding: 10px;
	font-size: 20px;
	font-weight: bold;
	color: maroon;
}

#top > #content > #content_panel > #article > #header > a {

	color: #800000;

}

#top > #content > #content_panel > #article > #header > a:hover {

	color: #500000;

}

#top > #content > #content_panel > #article > #footer {
	width: 95%;
	height: 20px;
	line-height: 20px;
	margin: 0 auto;
	padding: 10px 0;
	text-align: right;
}

#top > #content > #content_panel > #article > #section {
	width: 95%;
	margin: 10px auto;
	line-height: 20px;
	text-align: justify;
	overflow: auto;
}

#top > #content > #content_panel > #article > #section ol {

	list-style: decimal;
	margin-left: 20px;

}

#top > #content > #content_panel > #article > #section ul {

	list-style: initial;
	margin-left: 20px;

}

#top > #content > #content_panel > #article > #section  a {
	text-decoration: underline;
}

#top > #content > #content_panel > #article > #section > #image {

	max-width: 100px;
	max-height: 100px;
	margin: 0 10px 10px 0;
	float: left;

}

#top > #content > #content_panel > #article > #section > #image > img {

	max-width: 100px;
	max-height: 100px;

}

#top > #content > #content_panel > #article > #section > #short {

	
}

#top > #content > #content_panel > #article > #section > #short > #read_more {

	
}

#top > #content > #content_panel > #article > #section > #read_more  > a {

	display: block;
	width: 200px;
	line-height: 30px;
	text-align: center;
	font-size: 16px;
	color: #800000;
	font-weight: bold;
	text-decoration: none;

}

#top > #content > #content_panel > #article > #section > #read_more  > a:hover {

	color: #802020;

}

/*PANEL �RODKOWU: KONIEC*/

/*PRAWY PANEL: POCZ�TEK*/

#top > #content > #right_panel {
	float: left;
	margin: 0 10px;
}

/*PRAWY PANEL: KONIEC*/

.error,
.success,
.info {
	margin: 5px 0;
}


.error {
	color: #F60000;
}

.success {
	color: #0000F6;
}

.info {
	color: #00A600;
}

/* DARK MODE */

body.darkMode {
	background: var( --dark-mode-background-primary ) !important;
	color: var( --dark-mode-color-primary ) !important;
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif !important;
}

body.darkMode a { color: var( --dark-mode-color-secondary ); }

body.darkMode #top > #content > #content_panel { background: transparent !important; }

body.darkMode #top > #content > #content_panel > #article { background: var( --dark-mode-background-secondary ) !important; }

body.darkMode #top > #content > #content_panel > #article > #header,
body.darkMode #top > #content > #content_panel > #article > #header > a {
	color: var( --dark-mode-color-primary ) !important;
}

body.darkMode #top > #content > #content_panel > #article > #header > a:hover {
	color: var( --dark-mode-color-secondary ) !important;
}


body.darkMode #top > #footer { border: none; }