div.modal
{
	left: 10%;
	position: absolute;
	top: 20%;
	width: 80%;
}

div#modalFade
{
	background: rgba(0, 0, 0, 0);
	display: none;
	height: 100vh;
	left: 0px;
	position: fixed;
	top: 0px;
	transition: background 1.0s ease;
	width: 100vw;
}

div#modalFade.fade
{
	background: rgba(0, 0, 0, 0.8);
}

table
{
	border-collapse: collapse;
}

table.modal
{
	background-color: rgba(255, 255, 255, 0);
	border-radius: 3px;
	font-family: "OpenSans-Regular", Arial, sans-serif;
	margin-top: 20px;
	padding: 5px;
	width: 100%;
}

table.modal > thead > tr > th
{
	background-color: rgb(34, 38, 41);
	border-right: 0px solid rgb(0, 0, 0);
	color: rgb(213, 221, 229);
}

table.modal > thead > tr input[type="button"]
{
    background-color: rgb(213, 221, 229);
    border: 1px solid rgb(0, 0, 0);
	border-radius: 3px;
	color: rgb(0, 0, 0);
	cursor: pointer;
	float: right;
	font-size: 12px;
	font-weight: normal;
	padding: 0px;
	padding-left: 5px;
	padding-right: 5px;
	width: 80px;
}

table.modal > thead > tr input[type="button"]:hover
{
    /*background-color: #68A0D2;*/
}

table.modal > thead > tr > td
{
	border: 1px solid rgb(0, 0, 0);
}

table.modal tr > td
{
	border: 0px solid rgb(0, 0, 0);
	padding: 5px;
}

table.modal text.modalContent
{
	color: rgb(0, 0, 0);
	font-size: 100%;
	font-weight: normal;
}

table.modal text.modalTitle
{
	font-size: 120%;
	line-height: 24px;
}