/* Employee Tile */
.employeeTile {
	position         : relative;
	margin-top       : 15px;
    margin-left      : auto;
    margin-right     : auto;
	margin-bottom    : 15px;
	height           : 600px;
	width            : 300px;
	border-radius    : 20px;
	background-color : DarkBlue;
	box-shadow       : 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19)
}
			
.employeeImage {
	position         : absolute;
	top              : 0;
	height           : 50%;
	left             : 0;
	width            : 100%;
	border-radius    : 20px 20px 0 0;
}	
			
.employeeName {
	position         : absolute;
	top              : 42%;
	height           : 8%;
	left             : 0;
	width            : 100%;
	font-size        : 30px;
	color            : White;
	background-color : DarkBlue;
	text-align       : center;
	border-radius    : 0 0 0 0;
}
			
.employeePosition {
	position         : absolute;
	top              : 50%;
	height           : 8%;
	left             : 0;
	width            : 100%;
	font-size        : 30px;
	color            : DarkBlue;
	background-color : PaleTurquoise;
	text-align       : center;
	border-radius    : 0 0 0 0;
}
			
.employeeTitle {
	position         : absolute;
	top              : 58%;
	height           : 8%;
	left             : 0;
	width            : 100%;
	font-size        : 25px;
	color            : RebeccaPurple;
	background-color : Lavender;
	text-align       : center;
	border-radius    : 0 0 0 0;
}
			
.employeeDescription {
	position         : absolute;
	top              : 66%;
	height           : 20%;
	left             : 0;
	width            : 100%;
	font-size        : 15px;
	color            : DarkBlue;
	background-color : WhiteSmoke;
	text-align       : left;
	border-radius    : 0 0 0 0;
}
			
.employeeLocation {
	position         : absolute;
	top              : 86%;
	height           : 7%;
	left             : 0;
	width            : 100%;
	font-size        : 20px;
	color            : SteelBlue;
	background-color : PaleTurquoise;
	text-align       : center;
	border-radius    : 0 0 0 0;
}

.employeeContact {
	position         : absolute;
	bottom           : 0%;
	height           : 7%;
	left             : 0;
	width            : 100%;
	font-size        : 25px;
	text-align       : center;
	color            : White;
	background-color : DarkBlue;
	border-radius    : 0 0 10px 10px;
}


/* Employee Profile-Editing Tile */
.employeeProfileTile {
	position         : relative;
	margin-top       : 15px;
    margin-left      : auto;
    margin-right     : auto;
	margin-bottom    : 15px;
	height           : 600px;
	width            : 300px;
	color            : White;
	background-color : FireBrick;
	border-radius    : 10px;
	box-shadow       : 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19)
}
			
.employeeProfilePosition {
	position         : absolute;
	top              : 0;
	height           : 8%;
	left             : 0;
	width            : 100%;
	font-size        : 30px;
	color            : White;
	background-color : FireBrick;
	text-align       : center;
	border-radius    : 20px 20px 0 0;
}
			
.employeeProfileTitle {
	position         : absolute;
	top              : 8%;
	height           : 8%;
	left             : 0;
	width            : 100%;
	font-size        : 25px;
	color            : White;
	background-color : Purple;
	text-align       : center;
	border-radius    : 0 0 0 0;
}	
			
.employeeProfileDescription {
	position         : absolute;
	top              : 16%;
	height           : 66%;
	left             : 0;
	width            : 100%;
	font-size        : 20px;
	color            : Purple;
	background-color : MistyRose;
	text-align       : left;
	border-radius    : 0 0 0 0;
}
			
.employeeProfileLocation {
	position         : absolute;
	top              : 82%;
	height           : 8%;
	left             : 0;
	width            : 100%;
	font-size        : 30px;
	color            : RebeccaPurple;
	background-color : Lavender;
	text-align       : center;
	padding          : 3px;
	border-radius    : 0 0 0 0;
}

.employeeProfileEdit {
	position         : absolute;
	bottom           : 0%;
	height           : 10%;
	left             : 0;
	width            : 100%;
	font-size        : 25px;
	text-align       : center;
	color            : White;
	background-color : FireBrick;
	border-radius    : 0 0 20px 20px;
}



