.popupbox
{
	display: none;
    position: fixed;
    left: 0;
	top:0;
	width: 100%;
	height: 100%;
	/* margin: 20px; */
	color: #ffffff;
	padding: 1em;
	z-index: 100;
	font-size: 1.5em;
	background-color: rgb(0,0,0); /* Fallback color */
 	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.popupbox a 
{
	/* Anchors in box need to break words */
	word-break: break-all;
}
a.boxclose, a.popupboxclose{
    float:right;
    margin-top: 1em;
    margin-right: 1em;
    cursor:pointer;
    color: black;
    background-color: red;
    border: 1px solid black;
    border-radius: 20px;
    font-size: 1.5em;
    font-weight: bold;
    display: inline-block;
    line-height: .8em;
    padding: 11px 3px;   
	z-index: 100;    
}
.popup_content {
	overflow: auto;
	border: 2px solid black;
	height: 80%;
	width: 80%;
	margin: 1em;
	padding: 1em;
	border-radius: 20px;
	background-color: #3C3C3C;
}

.boxclose:before, a.popupboxclose:before {
    content: "Close";
}
