/* 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 ========================== */
.bottomShadow:after { content: ""; position: absolute; width: 100%; bottom: -3px; left: 0; z-index: 30; box-shadow: 0px 0px 12px 2px #ababad; }

.blur-box {
	background-color: #fff;
    box-shadow: 0 0 8px 3px #d6d6d6;
    border-radius: 10px;
	overflow: hidden;
}
.blur-box + .blur-box {
	margin-top: 20px;
}

.accordion{
	color: #333;
	margin-bottom: 0px;
	padding: 10px;
	background-color: #e8e8e8;
	margin-top: 0;
}

.accordion.open{
	border-bottom: 2px solid green;
	border-radius: 10px 10px 0px 0px;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	background-color: white;
	color: #275d38;
}	

.accordion:before, .accordion.open:before{
	content:'\f067';
	color: #333;
	background-color: transparent;
	border-radius: 50%;
	border: 2px solid black;
	width: 15px;
	height: 15px;
	margin: initial;
	top: 15px;
	right: 12px;
	font-size: 9px;
	text-align: center;
}

.accordion.open:before{
	content:'\f068';
	color: #07bd07;
	border: 2px solid #07bd07;
}

.items{
	background-color: white;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	border-radius: 0px 0px 10px 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	-webkit-border-radius: 0px 0px 10px 10px;
}

.items div{
	padding: 0px;
}

.items ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.items ul li{
	margin: 0px;
}

.items ul li a {
    display: block;
    text-decoration: none;
	color: #333;
	padding: 5px 20px;
}	

.items ul li a:hover{
	background-color: #f2f2f2;
}




/* ====================== 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*/


