/*div table*/
.divTableJ{
	display: table;
	width: 100%;
}
.divTableRowJ {
	display: table-row;
}
.divTableHeadingJ {
	background-color: #EEE;
	display: table-header-group;
}
.divTableCellJ, .divTableHeadJ {
	display: table-cell;
        padding: 8px 15px;
        //border: 1px solid black;
}
.centerCellJ{
        text-align: center;
}
.divTableHeadingJ {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divTableFootJ {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBodyJ {
	display: table-row-group;
}
.quarterCellWidth {
	width: 25%;
}
.halfCellWidth {
	width: 50%;
}

/*Luther Direct Button*/
.LDButton {
border-radius: 3px;
padding: 12px 20px 12px 20px;
font-size: 1.5em;
font-weight: bold;
text-transform: uppercase;
background-color: #d0192b;
color: white;
display: inline-block;
transition: 0.3s;
}
.LDButton:hover{
background-color: rgb(193,0,50);
}