/* SEC Filings */
#filings-year-wrapper {
	margin: 0px 10px 0px 10px;
}
#filings-form-group-wrapper{
	margin: 0px 0px 0px 10px;
}
#sec-filings-table {
	min-width: 1491px;
	margin: 10px 10px 0px 10px;
}

#sec-filings-table th {
	font-size: 1.1em;
}
#sec-filings-table th[data-field="date filed"]{
	width: 10%;
}
#sec-filings-table th[data-field="form"]{
	width: 10%;	
}
#sec-filings-table th[data-field="description"]{
	width: 70%;
}
#sec-filings-table th[data-field="view"]{
	width: 10%;
}
#sec-filings-table .xbrl-box {
	display: none;
	position: absolute;
	background-color: #fff;
	right: 0px;
	top: 50px;
	border: 1px solid #ccc;
	padding: 20px;
	float: right;
	z-index: 10;
}

/* SEC Filings Responsive*/
@media (min-width: 760px) and (max-width: 1250px) {
	#sec-filings-table {
		min-width: auto;
	}
	#sec-filings-table td:nth-of-type(3) {
		width: auto;
		white-space: normal;
	}
}

@media (max-width: 760px) {

	table#sec-filings-table, #sec-filings-table thead, #sec-filings-table th, #sec-filings-table tr, #sec-filings-table td {
		display: block;
	}
	#sec-filings-table {
		min-width: auto;
	}

	/* Hide table headers (but not display:none, for accessibility) */
	#sec-filings-table thead {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	#sec-filings-table tr {
		border: 1px solid #ccc;
		height: auto !important;
	}
	#sec-filings-table td {
		/* Behave like a row */
		border: none;
		padding-left: 50% !important;
		border-bottom: 1px solid #eee;
		position: relative;
		text-align: left;
		height: auto;
		white-space: normal;
	}
	#sec-filings-table 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 -- */
	#sec-filings-table td:nth-of-type(1):before {
		content: "Filing Date";
	}
	#sec-filings-table td:nth-of-type(2):before {
		content: "Form";
	}
	#sec-filings-table td:nth-of-type(3):before {
		content: "Description";
	}
	#sec-filings-table td:nth-of-type(4):before {
		content: "View";
	}


}