/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */

/* SPECIFIC STYLING FOR HELPFUL LINKS LISTS */
.links-list-1 {
	background-color: #f2f9e9;
}
.links-list-1 li {
	border-bottom: 1px solid #a1d263;
}
.links-list-1 li span {
	color: #78be20;
}

.links-list-2 {
	background-color: #edf6ec;
}
.links-list-2 li {
	border-bottom: 1px solid #81be79;
}
.links-list-2 li span {
	color: #4ba23f;
}

.links-list-3 {
	background-color: #e6f3ec;
}
.links-list-3 li {
	border-bottom: 1px solid #4da977;
}
.links-list-3 li span {
	color: #00843d;
}

/* Parent li with child ul */
.list-dropdown {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

/* GENERAL STYLING FOR ALL HELPFUL LINKS LISTS */
.links-list {
	list-style: none;
	padding: 15px;
	border-radius: 5px;
	letter-spacing: Ã‚Â 1px;
}
.links-list li {
	margin: 0px;
	padding: 8px 0px;
}
.links-list li:last-of-type {
	border: none;
}
.links-list a {
	color: #000;
	font-size: 14px;
	display: block;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
	
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	
	
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	
	
}

/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/