body{
	padding: 0;
	margin: 0;
	font-family: sans-serif;
	background-image: url("Images/background-image.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}
.bodyblock{
	position: relative;
	margin: 0 auto;
	width: 100%;
	z-index: 0;
	min-width: 650px;
	max-width: 1000px;
	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 1);
}
.bodyblock img{
	width: 100%;	
	height: auto;
	display: block;
	margin: 0 auto;
}
.bodyblock-padding{
	padding: 125px 10px 0 10px;
	margin-bottom: -5px;
	background-color: white;
}
.boldred{
	color: #870930;
	font-size: 24px;
	font-weight: bold; 
}
.darkbluetitle,
.darkbluetitle-center{
	color: rgb(76,82,90);
	font-size: 24px;
}
.darkbluetitle-center{
	text-align: center;
}
.lightbluetitle{
	color: rgb(0,174,239);
	font-size: 24px;	
}


/***********************FEATURED PROPERTY****************************/
.featured-pic-container{
	position: relative;
}
.featured-pic-container-hover{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transition: .3s ease;
}
.featured-pic-container-middle{
	transition: .3s ease;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	text-shadow: 2px 2px 0px black;
	font-size: 32px;
	font-weight: bold;
}
.featured-pic-container:hover .featured-pic-container-middle{
	opacity: 1;
}
.featured-pic-container:hover .featured-pic-container-hover{
	border-bottom-right-radius: 28px;
	border-top-left-radius: 28px;
	background-color: lightgray;
	opacity: .5;

}

/***********************NOTABLE TRANSACTION CHARTS****************************/
.transactions{
	bottom: 50px;
}
.transaction-title{
	padding: 10px 0 0 10px;
	color: #3e221f;
	font-weight: bold;
}
.chart-container{
	position: relative;
	background-color: rgb(114,114,114);
	display: inline-block;
	width: 100%;
	min-height: 82px;
}
.chart-container img{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 32px;
}
.transactions table{
	float: right;
 	width: calc(100% - 32px);
 	border-spacing: 0;
 	font-size: 12px;
}
.transactions th{
	background-color: rgb(152,1,46); 
	text-align: left;
	color: white;
	font-size: 14px;
}
.transactions tr:nth-child(even){
	background-color: rgb(209,210,212);
}
.transactions tr:nth-child(odd){
	background-color: white;
}
.lee-transactions{
	width: 100%;
	text-align: right;
}

/***********************HEAD BANNER****************************/
.header-banner{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 650px;
}
.header-banner-background{
	background-color: #313d43;
	height: 103px;
	width: 90%;
}
.header-banner-left{
	position: fixed;
	top: 8;
	left: 0;
	z-index: 9;
}
.header-banner-right{
	position: fixed;
	float: right;
	top: 0;	
	right: 0;
	z-index: 10;
}
.head-text{
	color: white;
	font-size: 36px;
	padding: 11px 0 0 11px;
	width: calc(100% - 320px);
}
.head-text-subtext{
	font-size: 18px;
}
.lee-logo{
	z-index: 15;
	position: relative;
	top: -90px;
	left: 140px;
	width: 228px;
	height: 72px;
}

@media screen and (max-width: 968px) {
	.head-text{
		font-size: 24px;
	}
}
@media screen and (max-width: 809px) {
	.head-text-subtext{
		font-size: 14px;
	}
}

@media screen and (max-width: 741px) {
	.head-text{
		font-size: 20px;
	}
}

@media screen and (max-width: 720px) {
	.head-text{
		width: 250px;
	}
}
@media screen and (max-width: 670px) {
	.header-banner-right{
		left: 220px;
	}
}

/***********************FOOTER BANNER****************************/
.footer-banner{
	position: relative;
	width: 100%;
	min-width: 650px;
	bottom: 0;
	height: 0;
}
.footer-banner-background{
	position: absolute;
	background-color: #4f121e;
	height: 52px;
	bottom: -53px;	
	width: calc(100% - 1225px);
}
.footer-banner-left img{
	position: absolute;
	bottom: -53px;
	height: 55px;
	left: 0;
	float: left;
	z-index: 9;
}
.footer-banner-right img{
	position: absolute;
	float: right;
	bottom: -53px;
	height: 91px;
	right: 0;
	z-index: 10;
}
.footer-text{
	color: white;
	position: absolute;
	float: right;
	bottom: -40px;
	right: 10px;
	z-index: 11;
	font-size: 18px; 
	margin-left: 15px;
}
.footer-text a{
	color: white;
	text-decoration: none;
}
@media screen and (max-width: 1063px) {
	.footer-text{
		bottom: -50px;
	}
}

/***********************LINK TO PDF****************************/
.link-to-pdf-container{
	padding-bottom: 40px;
	width: 100%;
}
.link-to-pdf{
	margin: 0 auto;
	width: 300px;
	background-color: gray;
	padding: 15px;
	text-align: center;
	color: white;
	font-size: 24px;
	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.2);
}
a{
	text-decoration: none;
}