#content {
   width: 100%;
    height: 100%;
    display: table;
	padding: 0px;
	padding-top: 3px;
}
#list{
    width: 30%;
    height: 100%;
    display: table-cell;
}
#mapz {
    width: 70%;
    height: 100%;
    display: table-cell;
}
#notez {
    position:fixed;
    top:80px;
    right:40px;
	color:red;
}
#pLbl{
	color:#C58917;
}
	
#congrats {
	position: fixed;
	background-color: #FFEBCD;
	color:green;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 15vw;
    -webkit-animation: myfirst 5s linear 1s infinite alternate; /* Chrome, Safari, Opera */
    animation: myfirst 5s linear 1s infinite alternate;
}
}
/* Chrome, Safari, Opera */
@-webkit-keyframes myfirst {
    0%   {color:red;}
    25%  {opacity: 1;color:yellow;}
    50%  {opacity: 0.5;color:blue;}
    75%  {opacity: 1;color:green;}
    100% {opacity: 0.5;color:red;}
}

/* Standard syntax */
@keyframes myfirst {
    0% {color:red;}
    25%  {color:yellow;}
    50%  {color:blue;}
    75%  {color:green;}
    100% {color:red;}
}
/* Mozilla browsers */
@-moz-keyframes myfirst {
    0%   {color:red;}
    25%  {color:yellow;}
    50%  {color:blue;}
    75%  {color:green;}
    100% {color:red;}
}