/* CSS for the trip-reports folder.*/

/* Table */
/* Used for the tables on all trip-reports sites */
table.table_tripReports {
	width:			100%;
	margin:			1px 0 0 0;
	border:			0;
	padding:		0;
	border-spacing:		2px 2px;
	border-collapse:	separate;
}
table.table_tripReports caption {
	font-size:	larger;
	padding-left:	4px;
	text-align:	left;
	font-weight:	bold;
}
table.table_tripReports th {
	background:	#efefef;
	background:	-webkit-gradient(linear, center top, center bottom, from(#e2e2e2), to(#f4f4f4));
	background:	-webkit-linear-gradient(#e2e2e2, #f4f4f4);
	background:	-moz-linear-gradient(#e2e2e2, #f4f4f4);
	background:	-o-linear-gradient(#e2e2e2, #f4f4f4);
	background:	-ms-linear-gradient(#e2e2e2, #f4f4f4);
	background:	linear-gradient(#e2e2e2, #f4f4f4);
	
	padding-top:	4px;
	padding-bottom:	4px;
	padding-left:	4px;
	padding-right:	4px;
	text-align:	left;
	font-family:	verdana;
	color:	#286cbc;
}
table.table_tripReports td { 
	background-color:	#f8f8f8;
	padding:		4px;
}

/* Definition for the first child of the table */
th:first-child {
	width:	8%;
}

/* This defines the second child of the table. This one is hidden and only used for sorting the third one, which is messy */
th:nth-child(2) {
	display:	none;
}
td:nth-child(2) {
	display:	none;
}

th:nth-child(3) {
	display:	none;
}
td:nth-child(3) {
	display:	none;
}

th:nth-child(4) {
	font-weight:	bold;
	width:		35%;
}
td:nth-child(4) {
	font-weight:	bold;
}

th:nth-child(5) {
	width:	35%;
}

th:nth-child(7) {
	width:	8%;
}

/* End of table */

/* Other stuff */

/* End of Other Stuff */


