	.documentsListHighlightEventBox a{
		color: #069;
	}
	.documentsListHighlightEventBox{
		width:210px;
		padding:5px;
		padding-bottom:15px;
		margin-bottom:10px;
		margin-left:auto;
		margin-right:auto;
		background: #f7f7f7;
		background: -moz-linear-gradient(top,  #f7f7f7 0%, #dddddd 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f7f7f7), color-stop(100%,#dddddd));
		background: -webkit-linear-gradient(top,  #f7f7f7 0%,#dddddd 100%);
		background: -o-linear-gradient(top,  #f7f7f7 0%,#dddddd 100%);
		background: -ms-linear-gradient(top,  #f7f7f7 0%,#dddddd 100%);
		background: linear-gradient(to bottom,  #f7f7f7 0%,#dddddd 100%);
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		border: 0px solid #000000;
		-moz-box-shadow:
			0px 1px 1px rgba(255,255,255,0.3),
			inset 0px 0px 1px rgba(0,0,0,1);
		-webkit-box-shadow:
			0px 1px 1px rgba(255,255,255,0.3),
			inset 0px 0px 1px rgba(0,0,0,1);
		box-shadow:
			0px 1px 1px rgba(255,255,255,0.3),
			inset 0px 0px 1px rgba(0,0,0,1);
		text-shadow:
			0px -1px 0px rgba(255,255,255,0.4),
			0px 1px 0px rgba(0,0,0,0.3);
	}
	
	.blueTitleSection a{color: #ffffff!important;}
	
	.blueTitleSection{
		color: #ffffff;
		padding:5px;
		background: #003366;
		background: -moz-linear-gradient(top,  #42aaff 0%, #003366 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#42aaff), color-stop(100%,#003366));
		background: -webkit-linear-gradient(top,  #42aaff 0%,#003366 100%);
		background: -o-linear-gradient(top,  #42aaff 0%,#003366 100%);
		background: -ms-linear-gradient(top,  #42aaff 0%,#003366 100%);
		background: linear-gradient(to bottom,  #42aaff 0%,#003366 100%) #003366;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		border: 1px solid #003366;
		-moz-box-shadow:
			0px 1px 3px rgba(000,000,000,0.5),
			inset 0px 0px 1px rgba(255,255,255,0.5);
		-webkit-box-shadow:
			0px 1px 3px rgba(000,000,000,0.5),
			inset 0px 0px 1px rgba(255,255,255,0.5);
		box-shadow:
			0px 1px 3px rgba(000,000,000,0.5),
			inset 0px 0px 1px rgba(255,255,255,0.5);
		text-shadow:
			0px -1px 0px rgba(000,000,000,0.7),
			0px 1px 0px rgba(255,255,255,0.3);
	}
/*********************************
 Mobile Layout: 480px and below. 
*********************************/
@media only screen and (max-width: 480px) {
	.mobileExtrasBox{display:none;}
	.mobileExtrasDropDown{display:block;}
}

/********************************************************************
 Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. 
*********************************************************************/
@media only screen and (min-width: 481px) and (max-width: 769px) {
	.mobileExtrasBox{display:block;}
	.mobileExtrasDropDown{display:none;}
}


/**************************************************************************************************** 
 Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. 
****************************************************************************************************/
@media only screen and (min-width: 769px) {
	.mobileExtrasBox{display:block;}
	.mobileExtrasDropDown{display:none;}
}

ul#moduleBreadcrumb{
	padding: 0;
	margin: 0;
}
ul#moduleBreadcrumb li {
    position:relative;
    list-style-type:none;
    float: left;
    padding:0px 5px 0px 0px;
    height: 15px;
}
ul#moduleBreadcrumb #symbol{
		position: absolute;
		visibility: hidden;
		display: inline-block;
		left: 18px;
		top: -21px;
		-webkit-transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-ms-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		transition: all 0.5s ease;
		font-size: 1.5em;
		line-height: 15px;
		cursor: pointer;
}
ul#moduleBreadcrumb li:hover #symbol {
    visibility:visible;
}
ul#moduleBreadcrumb #sub1:before {
	position: absolute;
	display: inline-block;
	/*width: 40px;
	height: 40px;
	background: #333;*/
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-bottom: 25px solid #333;
/*	border-right-color: rgba(0, 0, 0, 0.2);*/
	left: 0px;
	top: -25px;
	content: '';
}
ul#moduleBreadcrumb #sub1 {
    position:absolute;
    left:-18px;
    min-width:125px;
    visibility: hidden;
		margin: 5px 0;
		padding: 5px;
		background-color:#333;
		-webkit-transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-ms-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		transition: all 0.5s ease;
}
ul#moduleBreadcrumb li:hover #sub1 {
    visibility:visible;
}