/* CSS code for the RVICS web site footer  */

footer {
	background-color:	#2369b8 ;
    background: -webkit-linear-gradient(top, #edf4fc 0%,#2369b8 100%);
    background: -moz-linear-gradient(top, #edf4fc 0%,#2369b8 100%);
    background: -o-linear-gradient(top, #edf4fc 0%,#2369b8 100%);
    background: -ms-linear-gradient(top, #edf4fc 0%,#2369b8 100%);
    background: linear-gradient(top, #edf4fc 0%,#2369b8 100%);
	text-align:	center ;
	clear		: both ;
}

/* Create three unequal columns using flex boxes */

.footerRow {
	display			: flex ;
	flex-direction	: row ;
	justify-content : center ;
	align-items		: flex-start ;
}

.footerLeft, .footerRight {
	flex		: 40% ;
	padding		: 20px ;
	max-width	: 400px ;
}

.footerCenter {
	flex		: 20% ;
	align-self	: center ;
	max-width	: 300px ;
/*	padding		: 20px ; */
}

.justifyL {
	text-align	: left ;
}

#copyright {
	font-size:		0.85em ;
	background-color	: #edf4fc ;
}

