body {
}

/*************************************** HEADER ***************************************/

header {
	width: 100%;
	height: 50px;
	background-color: rgba(0,0,0,0.75);
	backdrop-filter: blur(4px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 180;
}

header .inh {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	height: 50px;
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}

header .inh .logo {
	padding: 5px;
	order: 0;
	flex: 0 1 auto;
	align-self: auto;
}

header .inh .logo img {
	vertical-align: middle;
	max-height: 40px;
}

.topsp {
	width: 100%;
	height: 50px;
	order: 0;
	flex: 0 1 auto;
	align-self: auto;
}

/*************************************** CONTENT ***************************************/

content {
	width: 100%;
	order: 0;
	flex: 0 1 auto;
	align-self: auto;
}

content .ins {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 10px;
}

content .ins img {max-width: 100%;}

/*************************************** FOOTER ***************************************/

footer {
	width: 100%;
	background-color: rgba(0,0,0,0.50);
	backdrop-filter: blur(4px);
	height: 40px;
	padding: 0;
	margin: 0;
	order: 0;
	flex: 0 1 auto;
	align-self: auto;
}

footer .inf {
	width: 100%;
	height: 40px;
	padding: 0 10px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}

footer .inf li {
	font-size: 0.7em;
	order: 0;
	flex: 0 1 auto;
	align-self: auto;
}

footer .inf li a {
	color: #ffd700;
	display: block;
	line-height: 36px;
	transition: all 0.75s ease-in-out;
}

footer .inf li a .soci {
	line-height: 36px;
}

footer .inf li a:hover {
	color: #fff;
	transition: all 0.75s ease-in-out;
}

footer .inf li:nth-child(1) {text-align: left;}
footer .inf li:nth-child(2) {text-align: center;}
footer .inf li:nth-child(3) {text-align: right;}

/*************************************** TOPMENU ***************************************/

#barz {display: none;}

nav {
	order: 0;
	flex: 0 1 auto;
	align-self: auto;
}

nav ul {
	transform-style: preserve-3d;
	text-align: right;
}

nav ul li {
	display: inline-block;
	vertical-align: text-bottom;
	margin: 0 0 0 5px;
}

nav ul li a {
	display: block;
	padding: 0 8px;
	line-height: 50px;
    color: #fff;
	background: transparent;
	text-transform: uppercase;
    font-weight: 900;
	transition: all 0.75s ease-in-out;
}

nav ul li a:hover, nav ul li.on a {
    color: #990000;
	background: #fff;
	transition: all 0.75s ease-in-out;
}

/*************************************** TABLE ***************************************/

.tbl {
	width: 100%;
	background-color: rgba(255,255,255,0.80);
	backdrop-filter: blur(4px);
	border: 1px solid #000;
	border-collapse: collapse;
	margin: 0 auto;
	clear: both;
	border-spacing: 0;
}

.tbl tr {}

.tbl tr td {
	padding: 5px 8px;
	border: 1px solid rgba(0,0,0,0.25);
	vertical-align: middle;
}

.tbl tr td:first-child {
	font-weight: bold;
}

.tbl tr:nth-child(odd) {
	background-color: rgba(255,255,255,0.8);
}

.tbl tr td a {
	color: #00008b;
	transition: all 0.75s ease-in-out;
}

.tbl tr td a:hover {
	color: #770000;
	transition: all 0.75s ease-in-out;
}

/*************************************** FLEXR ***************************************/

.flxr {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: center;
	align-items: center;
}

.flxc {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.flxr .inx, .flxc .inx {
	order: 0;
	flex: 0 1 auto;
	align-self: auto;
}

.flxr .inx a {
	color: #ffd700;
	transition: all 0.75s ease-in-out;
}

.flxr .inx a:hover {
	color: #ccc;
	transition: all 0.75s ease-in-out;
}

.ntc {
	width: 100%;
	background-color: rgba(255,255,255,0.80);
	backdrop-filter: blur(4px);
	padding: 10px;
	border: 1px solid rgba(0,0,0,0.25);
	margin-bottom: 10px;
}

/*************************************************** INN-NEWZ ***************************************************/

.inn {
	width: 100%;
	background-color: rgba(255,255,255,0.80);
	backdrop-filter: blur(4px);
	border: 1px solid #000;
	margin-bottom: 10px;
	break-inside: avoid;
	position: relative;
}

.inn .gmi, .inn .gmm {
	padding: 0;
}

.inn .gmm {
	border: 1px solid green;
	width: 100%;
	overflow: hidden;
}

.inn .gmi img, .inn .gmm img {
	max-width: 100%;
	position: relative;
	vertical-align: middle;
}

.inn .gmm img {
	width: 450px;
	height: 450px;
	max-width: 100%;
  	object-fit: cover;
  	/* object-position: 0 -800px; */
	transition: all 0.75s ease-in-out;
}

.inn .dte {
	width: 100%;
	padding: 10px;
	font-size: 1.3em;
	font-weight: 900;
	/* border-bottom: 1px solid #555; */
}

.inn .dat {
	width: 100%;
	padding: 10px;
}

.inn .dat p a {
	color: #990000;
	transition: all 0.75s ease-in-out;
}

.inn .dat p a:hover {
	color: #fff;
	transition: all 0.75s ease-in-out;
}

/*************************************** MISC ***************************************/

#vz {
	display: none;
	visibility: hidden;
	position: fixed;
}

.mbsho {display: none;}
.dssho {display: block;}

