<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Oswald&amp;display=swap');

#noty_layout__topLeft
{
top: 75px !important;	
}

body,html
{font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif"}

html{
	--Venn-width-mult: 0.60;
}
html.twoCircles {
  --Venn-width-mult: 0.70;
}


.iconsCtr
{
position:absolute;
left:0px;
top:30px;
border:1px black solid;
background-color: yellow;

text-align:center;
padding:5px;
	z-index:9999;
}

#boxOne, #boxTwo {
height: calc(45vw * var(--Venn-width-mult)); 
cursor:pointer;
}
#boxThree {
height: calc(25vw * var(--Venn-width-mult)); 
cursor:pointer;
}

#boxOneTwo, #boxOneTwoThree, #boxOneThree, #boxTwoThree {
height: calc(27vw * var(--Venn-width-mult)); 
cursor:pointer;
}

/*
#shapeOneTwoThree{color:white}

*/
.but
{
padding:10px;
margin-right:5px;
background:#AC8FFD !important;
-webkit-border-radius: 5px;
color:black;
text-transform:uppercase;
-moz-border-radius: 5px;
border-radius: 5px;
cursor:pointer;
}

/*
.circleOneColor
{
background-color: magenta;
}
.circleTwoColor
{background-color: yellow;
}
.circleThreeColor
{background-color:cyan}
*/
#circleThreeOverlay, #circleTwoOverlay, #circleOneOverlay
	{
	display:none;
	background-color: none;
	border:5px black solid;
	}

.popup {
    position: absolute;
	padding:1em;
	opacity: 0.95;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	display:none;
	z-index:9999;
    top: 40%;
    left: 50%;
	max-height:75%;
	max-width:75%;
	min-width:10%;
	overflow-y: scroll;
	background:white;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
	border:1px black solid;
}
.centered
{
top: 40% !important;
left: 50% !important;
}
	

.Venn
	{
		left:0px;
	}
	
main {
	/* 	outline: 1px dotted #ccc; */
	width: calc(100% * var(--Venn-width-mult));
	margin: 10px auto;
}



@media print {
	
}

/* Defaults for browsers that do not support shape-outside */
@media (min-width: 800px) {
	.Venn::after {
		content: "";
		display: block;
		width: 1px;
		height: 1px;
		clear: both;
	}

	.circle,
	.shape {
		box-sizing: border-box;
		border: 5.5em solid black;
		margin: 0 0.75%;
		padding: 0 1.5em;
		float: left;
		width: 32%;
		
		mix-blend-mode: difference;
	}

	.circle.one {
		margin-left: 0;
	}
	


	.circle.three {
		margin-right: 0;
	}

	.shape {
		width: 30%;
		margin: 1em 1%;
	}

	.shape.onetwo {
		margin-left: 2.5%;
		clear: left;
		border-top-right-radius: 1em;
	}

	.shape.twothree {
		margin-right: 2.5%;
		border-top-left-radius: 1em;
	}

	.shape.onethree {
		margin-top: 3em;
		border-top-right-radius: 1em;
		border-top-left-radius: 1em;
	}

	.shape.onetwothree {
		clear: both;
		width: 40%;
		margin-left: 30%;
		margin-right: 30%;
		border-radius: 1.5em;
	}
}

@supports (shape-outside: polygon(0 0, 0 50%, 50% 50%)) {
	.Venn::after {
		display: none;
	}

	.Venn &gt; div {
		box-sizing: border-box;
		font-size: calc(2.5vw * var(--Venn-width-mult));
		line-height: 1.3;
		overflow: hidden;
	}

	.Venn &gt; .shape {
		font-size: calc(2.25vw * var(--Venn-width-mult));
		border: initial;
		width: initial;
		margin: initial;
		padding: initial;
	}

	.Venn &gt; .circle {
		border-radius: 50%;
		width: initial;
		margin: initial;
		padding: initial;
		border:5px black solid;
	}

	/* Grid layout  */
	.Venn {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		grid-template-rows: repeat(3, calc(28.8vw * var(--Venn-width-mult)));
	}

	.Venn &gt; h2 {
		grid-column-start: 1;
		grid-column-end: 6;
		grid-row-start: 0;
		grid-row-end: 1;
	}

	.Venn &gt; .circle.one {
		/*   outline: .2em solid #f00; */
		grid-column-start: 1;
		grid-column-end: 4;
		grid-row-start: 1;
		grid-row-end: 3;
	}

	.Venn &gt; .circle.two {
		/*   outline: .2em solid #0f0; */
		grid-column-start: 3;
		grid-column-end: 6;
		grid-row-start: 1;
		grid-row-end: 3;
	}

	.Venn &gt; .circle.three {
		/*   outline: .2em solid #00f; */
		grid-column-start: 2;
		grid-column-end: 5;
		grid-row-start: 2;
		grid-row-end: 4;
	}

	.Venn &gt; .shape.onetwo {
		/*   outline: .2em solid #ff0; */
		grid-column-start: 3;
		grid-column-end: 4;
		grid-row-start: 1;
		grid-row-end: 2;
	}

	.Venn &gt; .shape.onethree {
		/*   outline: .2em solid #f0f; */
		grid-column-start: 2;
		grid-column-end: 4;
		grid-row-start: 2;
		grid-row-end: 2;
	}

	.Venn &gt; .shape.twothree {
		/*   outline: .2em solid #0ff; */
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row-start: 2;
		grid-row-end: 2;
	}

	.Venn &gt; .shape.onetwothree {
		/*   outline: .2em solid #fff; */
		grid-column-start: 3;
		grid-column-end: 3;
		grid-row-start: 2;
		grid-row-end: 2;
	}

	/* Text wrap */
	.Venn .circle,
	.Venn .shape {
		text-align: center;
		text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
		color: black;
		font-family: 'Oswald', sans-serif;
		text-transform: uppercase;
	}
	.Venn .circle span,
	.Venn .shape span {
		box-sizing: border-box;
		float: right;
		/*     border: 1px dotted #00f;
    background-color: rgba(0,0,0,.1); */
	}
	.Venn .circle &gt; span {
		width: calc(58.5vw * var(--Venn-width-mult));
		height: calc(58.5vw * var(--Venn-width-mult));
	}
	.Venn .shape &gt; span {
		height: calc(29vw * var(--Venn-width-mult));
	}
	.Venn .one &gt; span {
		float: left;
		width: 32%;
		shape-margin: 0;
		shape-outside: polygon(
			100% 0%,
			0% 0%,
			0% 100%,
			100% 100%,
			100% 92%,
			76% 88%,
			44% 80%,
			20% 70%,
			10% 60%,
			5% 50%,
			10% 40%,
			20% 30%,
			41% 20%,
			70% 10%,
			100% 5%
		);
	}
	.Venn .one &gt; span + span {
		float: right;
		width: 66%;
		shape-outside: polygon(
			100% 0%,
			40% 0%,
			65% 15%,
			53% 25%,
			47% 35%,
			44% 45%,
			43% 50%,
			31% 55%,
			12% 65%,
			5% 75%,
			0% 85%,
			0% 100%,
			100% 100%
		);
	}
	.Venn .two &gt; span {
		float: left;
		width: 66%;
		shape-margin: 0;
		shape-outside: polygon(
			0% 0%,
			60% 0%,
			35% 15%,
			47% 25%,
			53% 35%,
			56% 45%,
			57% 50%,
			69% 55%,
			88% 65%,
			95% 75%,
			100% 85%,
			100% 100%,
			0% 100%
		);
	}
	.Venn .two &gt; span + span {
		float: right;
		width: 32%;
		shape-outside: polygon(
			0% 0%,
			100% 0%,
			100% 100%,
			0% 100%,
			0% 92%,
			24% 88%,
			56% 80%,
			80% 70%,
			90% 60%,
			95% 50%,
			90% 40%,
			80% 30%,
			59% 20%,
			30% 10%,
			0% 5%
		);
	}
	.Venn .three &gt; span {
		float: left;
		width: 49%;
		shape-margin: 0;
		shape-outside: polygon(
			0% 0%,
			100% 0%,
			100% 40%,
			75% 47%,
			50% 50%,
			2% 50%,
			5% 60%,
			13% 70%,
			27% 80%,
			52% 90%,
			78% 95%,
			100% 97%,
			100% 100%,
			0% 100%
		);
	}
	.Venn .three &gt; span + span {
		float: right;
		shape-outside: polygon(
			100% 0%,
			0% 0%,
			0% 40%,
			25% 47%,
			50% 50%,
			98% 50%,
			95% 60%,
			87% 70%,
			73% 80%,
			48% 90%,
			22% 95%,
			0% 97%,
			0% 100%,
			100% 100%
		);
	}
	.Venn .onetwo &gt; span {
		float: left;
		width: 49%;
		shape-margin: 0;
		shape-outside: polygon(
			0% 0%,
			100% 0%,
			100% 30%,
			72% 40%,
			48% 50%,
			20% 70%,
			10% 85%,
			0% 98%,
			100% 98%,
			100% 100%,
			0% 100%
		);
	}
	.Venn .onetwo &gt; span + span {
		float: right;
		shape-outside: polygon(
			100% 0%,
			0% 0%,
			0% 30%,
			28% 40%,
			52% 50%,
			80% 70%,
			90% 85%,
			100% 98%,
			0% 98%,
			0% 100%,
			100% 100%
		);
	}
	.Venn .onethree &gt; span {
		float: left;
		width: 48%;
		shape-margin: 0;
		shape-outside: polygon(
			0% 0%,
			100% 0%,
			100% 5%,
			70% 20%,
			45% 35%,
			26% 50%,
			10% 75%,
			5% 90%,
			50% 98%,
			100% 95%,
			100% 100%,
			0% 100%
		);
	}
	.Venn .onethree &gt; span + span {
		float: right;
		width: 51%;
		shape-outside: polygon(
			100% 0%,
			0% 0%,
			0% 25%,
			9% 40%,
			20% 55%,
			40% 70%,
			30% 80%,
			0% 90%,
			0% 100%,
			100% 100%
		);
	}
	.Venn .twothree &gt; span {
		float: left;
		width: 51%;
		shape-margin: 0;
		shape-outside: polygon(
			0% 0%,
			100% 0%,
			100% 25%,
			91% 40%,
			80% 55%,
			60% 70%,
			70% 80%,
			100% 90%,
			100% 100%,
			0% 100%
		);
	}
	.Venn .twothree &gt; span + span {
		float: right;
		width: 48%;
		shape-outside: polygon(
			100% 0%,
			0% 0%,
			0% 5%,
			30% 20%,
			55% 35%,
			74% 50%,
			90% 75%,
			95% 90%,
			50% 98%,
			0% 95%,
			0% 100%,
			100% 100%
		);
	}
	.Venn .onetwothree &gt; span {
		float: left;
		width: 49%;
		shape-margin: 0;
		shape-outside: polygon(
			0% 0%,
			10% 15%,
			30% 35%,
			50% 50%,
			95% 70%,
			100% 100%,
			0% 100%
		);
	}
	.Venn .onetwothree &gt; span + span {
		float: right;
		shape-outside: polygon(
			100% 0%,
			90% 15%,
			70% 35%,
			50% 50%,
			5% 70%,
			0% 100%,
			100% 100%
		);
	}
	.Venn .circle h3 {
		margin: 0.5em 0 0 0;
		text-align: center;
		font-size:large;
		font-weight:bold;
		text-shadow: 1px 1px #FFFFFF;
	}
	.Venn .circle h3 + * {
		margin-top: 0.2em;
	}
	.Venn .shape h3 {
		clip-path: inset(100%);
		clip: rect(1px, 1px, 1px, 1px);
		height: 1px;
		width: 1px;
		overflow: hidden;
		position: absolute;
		white-space: nowrap;
	}
}

/* Show the boxes */
.Venn.guides &gt; .circle.one {
	outline: 0.2em solid #f00;
}
.Venn.guides &gt; .circle.two {
	outline: 0.2em solid #0f0;
}
.Venn.guides &gt; .circle.three {
	outline: 0.2em solid #00f;
}
.Venn.guides &gt; .shape.onetwo {
	outline: 0.2em solid #ff0;
}
.Venn.guides &gt; .shape.onethree {
	outline: 0.2em solid #f0f;
}
.Venn.guides &gt; .shape.twothree {
	outline: 0.2em solid #0ff;
}
.Venn.guides &gt; .shape.onetwothree {
	outline: 0.2em solid #fff;
}
.Venn.guides .circle span,
.Venn.guides .shape span {
	border: 1px dotted #000;
	background-color: rgba(0, 0, 0, 0.1);
}
.Venn.guides &gt; div {
	border: 0.1em solid rgba(0, 0, 0, 0.5);
}

#titleWrapper
	{
	position:fixed;
	z-index:9999;
	top:20%;
	left:0px;
	width:20%;
	height:100%;
	padding-left:30px;
	padding-right:20px;
	padding-top:50px;
	background-color:rebeccapurple;
	color:white;
	border:1px 1px 0px 0px black solid !important;
	-webkit-border-top-right-radius: 150px;
	-moz-border-radius-topright: 150px;
	border-top-right-radius: 150px;
	}
#desc
	{
	height: calc(30vw * var(--Venn-width-mult)); 
	
	}

	textarea,input
	{
	font-size:1.5em;	
	
	}</pre></body></html>