HTML, BODY{
	margin:0;
	padding:0;
}
BODY{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
}
A{
	color:#000088;
	text-decoration:none;
	cursor:default;
}
A:hover{
	color:blue;
	text-decoration:none;
	cursor:pointer;
}
.a-button {
	background: #405cf5;
	border-radius: 6px;
	box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset,rgba(50, 50, 93, .1) 0 2px 5px 0,rgba(0, 0, 0, .07) 0 1px 1px 0;
	color: #fff;
	cursor: pointer;
	margin: 10px;
	padding: 20px;
	text-align: center;
	transition: all .2s,box-shadow .08s ease-in;
}
.a-button:hover{
	background-color: #0088ff;
}
.a-button:disabled {
	cursor: default;
}
.a-button:focus {
	box-shadow: rgba(50, 50, 93, .1) 0 0 0 1px inset, rgba(50, 50, 93, .2) 0 6px 15px 0, rgba(0, 0, 0, .1) 0 2px 2px 0, rgba(50, 151, 211, .3) 0 0 0 4px;
}
/*____________________________________________________________________________*/
HEADER{
	width:100%;
	height:7vh;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: stretch;
}
MAIN{
	width:100%;
	min-height:89vh;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}
FOOTER{
	width:100%;
	height:4vh;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	align-content: stretch;
}
/*____________________________________________________________________________*/
MAIN ARTICLE{
	width:70%;
	display: flex;
	min-height:30vh;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	align-content: center;
	font-size:150%;
}
MAIN DIV.event{
	width:70%;
	margin:30px 0 0 0;
	padding:10px;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: stretch;
	align-content: center;
	font-size:150%;
	border:solid 1px white;
}
MAIN DIV.event:hover{
	border:solid 1px #777;
}
DIV.event DIV.event-header{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
}
DIV.event-header DIV.event-from{
	flex:1 1 25%;
}
	DIV.event-from A{
		background:#fef;
	}
DIV.event-header DIV.event-to{
	flex:1 1 25%;
}
	DIV.event-to A, .meta{
		background:#efe;
	}
DIV.event-header DIV.event-kind{
	flex:1 1 25%;
}
DIV.event-header DIV.event-link{
	flex:1 1 24%;
	padding-right:1%;
	text-align:right;
}
	DIV.event-link A{
		background:#fef;
	}
DIV.event-header DIV.event-time{
	flex:1 1 50%;
}
DIV.event DIV.event-content{
	word-break: break-word;
}

DIV.event-content DIV.user-banner IMG{
	width:100%;
	height:500px;
}
DIV.event-content DIV.user-picture IMG{
	width:auto;
	height:150px;
	margin:-75px 0 0 5%;
	-webkit-border-radius: 0%;    
	border-radius: 0%; 
	-moz-border-radius: 0%;
	-khtml-border-radius: 0%;
}
DIV.event-content .user-name, DIV.event-content .display-name{
	font-size:100%;
	font-weight:bold;
}
DIV.event-footer{
	width:100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: flex-start;
	align-content: flex-start;
}
	DIV.event-footer DIV.btn-details{
		
	}
	DIV.event-footer DIV.div-details{
		margin:0;
		padding:0 5px 0 5px;
		background:#efefef;
	}
		PRE{
			white-space: pre-wrap;
			overflow-wrap: anywhere;
		}
FOOTER DIV{
	
}
/*____________________________________________________________________________*/
.show{
	display:block;
}
.hide{
	display:none;
}
DIV.autoscroll{
	position:fixed;
	right:5%;
	bottom:3%;
	font-size:40pt;
	cursor:pointer;
	color:purple;
	-webkit-transition-duration: .5s;
	   -moz-transition-duration: .5s;
		 -o-transition-duration: .5s;
			transition-duration: .5s;
}
DIV.autoscroll:hover{
	color:#bf40bf;
}
/*____________________________________________________________________________*/
.menu{
	list-style:none;
	width:100%;
	margin:0;
	padding:0;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
	/*
	opacity: 0.9;
	-khtml-opacity:.90;
	-moz-opacity:.90;
	-ms-filter:”alpha(opacity=90)”;
	filter: alpha(opacity=90);
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0.9);
	zoom: 1;
	*/
	font-size:150%;
	cursor:default;
}
	.menu > LI{
		min-width:7%;
		max-width:30%;
		margin:0;
		padding:0 10px 0 10px;
		-webkit-transition-duration: .5s;
		   -moz-transition-duration: .5s;
			 -o-transition-duration: .5s;
				transition-duration: .5s;
	}
	.menu > LI:hover{
		background:#fff;
	}
		.menu > LI > SPAN{
			float:right;
			font-size:100%;
		}
	.menu LI UL{
		position:absolute;
		list-style:none;
		padding:0;
		background:#fff;
		font-size:70%;
		font-weight:normal;
		visibility:hidden;
		opacity: 0;
		-khtml-opacity:0;
		-moz-opacity:0;
		-ms-filter:”alpha(opacity=0)”;
		filter: alpha(opacity=0);
		filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
		zoom: 1;
		-webkit-transition-duration: .8s;
		   -moz-transition-duration: .8s;
			 -o-transition-duration: .8s;
				transition-duration: .8s;
	}
	.menu LI:hover UL{
		visibility:visible;
		opacity: 1;
		-khtml-opacity:1;
		-moz-opacity:1;
		-ms-filter:”alpha(opacity=100)”;
		filter: alpha(opacity=100);
		filter: progid:DXImageTransform.Microsoft.Alpha(opacity=1);
		zoom: 1;
	}
		.menu > LI > UL > LI{
			margin:0;
			padding:4px 10px 4px 10px;
		-webkit-transition-duration: .05s;
		   -moz-transition-duration: .05s;
			 -o-transition-duration: .05s;
				transition-duration: .05s;
		}
		.menu > LI > UL > A > LI{
			margin:0;
			padding:4px 10px 4px 10px;
		}
		.menu > LI > UL > A > LI:hover{
			background:#ffff00;
		}
/*____________________________________________________________________________*/
.vir2alexport{
	width:155px;
    height:100px;
	background:url("/images/vir2alexport.webp") no-repeat;
}
.enhanced-tradingview-screenshot{
	width:200px;
    height:284px;
	background:url("/images/enhanced-tradingview.webp") no-repeat;
}
.nostr-screenshot{
	width:200px;
    height:85px;
	background:url("/images/nostr-relays.webp") no-repeat;
}
.zpng-screenshot{
	width:200px;
    height:65px;
	background:url("/images/zpng.webp") no-repeat;
}
.facemarks-screenshot{
	width:200px;
    height:183px;
	background:url("/images/facemarks-screenshot-1.webp") no-repeat;
}
.sequential-screenshot{
	width:200px;
    height:146px;
	background:url("/images/enhanced-arithmetic-mean.webp") no-repeat;
}
.synballo-screenshot{
	width:200px;
    height:313px;
	background:url("/images/synballo-screenshot-1.webp") no-repeat;
}
.tickerbell-screenshot{
	width:200px;
    height:125px;
	background:url("/images/tickerbell-screenshot-1.webp") no-repeat;
}
.virtual-screenshot{
	width:200px;
    height:125px;
	background:url("/images/virtual-screenshot-1.webp") no-repeat;
}
.logo-github {
    width:37px;
    height:37px;
	padding:0 9px 0 9px;
    background:url("/images/github.png") no-repeat center;
}
.logo-twitter {
    width:56px;
    height:37px;
    background:url("/images/twitter.png") no-repeat;
}
.logo-youtube {
    width:56px;
    height:37px;
    background:url("/images/youtube.png") no-repeat;
}
/*____________________________________________________________________________*/
