
.document-hidden {
	display:none;
	padding:10px 15px;
	background-color:#DAE7F0;
	color: #333333;
	border-radius: 0 0 3px 3px;
	text-decoration: none !important;
	cursor: default;
}
.document-hidden:hover {
	text-decoration: none !important;
	cursor: default;
}
ul.document-drawer li {
	margin-bottom: .8em;
}
ul.document-drawer {
	padding: 10px 40px;
	margin: 0 0 1.2em;  
	display:none;
	background-color:#F1F1F1;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #0D649A;
	font-weight: 300;
	list-style: none;
}
.documents-header {
	font-weight: normal;
	border-radius: 3px;
	color: #0D649A;
	font-size: 18px;
	padding: 0 10px 5px 10px;
	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-ms-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}
.documents-header:hover{
	background-color:#0D649A;
	color:#FFF !important;
	cursor: pointer;
	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-ms-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}
.documents-header:hover .new-document-notification {
	color: #FFFFFF;
}
.new-document-notification {
	font-size: .6em;
	vertical-align: middle;
	display: inline-block;
	float: right;
	margin-top: 10px;
	margin-right: 5px;
	color: #FF9900;
}
.documents-header .icon-up-open{
	float: right;
	font-weight: 300;
	font-size: 15px;
	margin-top: 10px;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.documents-header .icon-up-open.turn{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.documents-header:nth-child(4n+1){
	background: #ECF1F5;	
}
.documents-header:nth-child(4n+1):hover{
	background: #0D649A;
	color: #FFF;
}

.documents-header.open  {
	background-color:#0D649A;
	border-radius: 3px 3px 0 0;
	color:#FFF;
}
.documents-header.open .new-document-notification {
	color:#FFF;
}
.documents-header .help-tip-icon {
font-size: 1.5rem;
color: #CCC;
position: relative;
top: 2px;

}
.has-tip, .has-tip:hover {
	border: none;
}

.load-more {
	text-align: center;
}
.load-more > .column {
	margin-top: 10px;
}
.load-more button {
	background: transparent;
	color: #076191;
	width: 100%;
	margin-bottom: 0;
	font-size: 0.85rem;
}
.load-more button:hover,
.load-more button:active,
.load-more button:visited,
.load-more button:focus {
	background: transparent;
	color: #076191;
}
.load-more button.disabled {
	background: transparent!important;
	color: #aaa!important;
	font-weight: normal!important;
}

/* Responsive Table */

.document-hidden table { 
		width: 100%; 
		border-collapse: collapse; 
		margin-bottom: 0 !important;
		border-radius: 3px;
	-webkit-border-radius: 3px;
	}
	/* Zebra striping */
	.document-hidden tr:nth-of-type(odd) { 
		background: #eee; 
	}
	.document-hidden th { 
		background: #5394BE; 
		color: #FFF; 
		font-weight: bold; 
	}
	.document-hidden td, .document-hidden th { 
		padding: 6px; 
		border: 1px solid #ccc; 
		text-align: left; 
	}
	/* 
	Max width before this PARTICULAR table gets nasty
	This query will take effect for any screen smaller than 760px
	and also iPads specifically.
	*/
	@media 
	only screen and (max-width: 760px),
	(min-device-width: 768px) and (max-device-width: 1024px)  {
	
		/* Force table to not be like tables anymore */
		.document-hidden table, 
		.document-hidden table thead, 
		.document-hidden table tbody, 
		.document-hidden table th, 
		.document-hidden table td, 
		.document-hidden table tr { 
			display: block; 
		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
		.document-hidden thead tr { 
			position: absolute;
			top: -9999px;
			left: -9999px;
		}
		
		.document-hidden tr { border: 1px solid #ccc; }
		
		.document-hidden td { 
			/* Behave  like a "row" */
			border: none;
			border-bottom: 1px solid #eee; 
			position: relative;
			padding-left: 50%; 
		}
		
		.document-hidden td:before { 
			/* Now like a table header */
			position: absolute;
			/* Top/left values mimic padding */
			top: 6px;
			left: 6px;
			width: 45%; 
			padding-right: 10px; 
			white-space: nowrap;
		}
		
		/*
		Label the data
		*/
		.document-hidden td:nth-of-type(1):before { content: "Document Title"; }
		.document-hidden td:nth-of-type(2):before { content: "Date Posted"; }
		.document-hidden td:nth-of-type(3):before { content: "Date Viewed"; }
		.document-hidden td:nth-of-type(4):before { content: "Manage"; }
	}

.fix-screen {
    height: 95%;
}