.analysis_list {
	margin: 0;
	border: 1px solid #999999;
}

.analysis_list_header {
	font-weight: bold;
	font-size: 0;

	background-color: #efefef;
	border-bottom: 1px solid #999999;
}

.analysis_list_content {
	
}

.analysis_list_row {
	font-size: 0;
}

.analysis_list_row:nth-child(even) {
	background-color: #f7f7f7;
}

.analysis_list_row:nth-child(odd) {
	background-color: #ffffff;
}

.analysis_list_row_summary {
	
}

.analysis_list_cell {
	display: inline-block;

	padding: 2px 10px;
	width: 100px;
	height: 44px;
	min-width: 25px;
	line-height: 44px;

	vertical-align: middle;
	font-family: 'dejavu_sans';
	font-size: 16px;
	color: #000000;

	border-right: 1px solid #999999;

	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
	.analysis_list_header .analysis_list_cell {
		height: 25px;
		line-height: 25px;
	}

.analysis_list_cell.cell_analysis_time {
	width: 160px;
}

.analysis_list_cell.cell_analysis_name {
	width: 200px;
}

.analysis_list_cell.cell_download_csv {
	width: 150px;
	text-align: center;
}

.analysis_list_cell.cell_download_gml {
	width: 150px;
	text-align: center;
}

.analysis_list_cell.cell_view_svg {
	width: 150px;
	text-align: center;
}

.cell_view_svg_button {
	cursor: pointer;
}

.cell_download_csv_button,
.cell_download_gml_button,
.cell_view_svg_button {
	display: block;
	margin: 5px 2px;
	padding: 4px 10px;
	height: 20px;
	line-height: 20px;

	text-align: center;
    /* text-transform: uppercase; */
    text-decoration: none;
	font-family: 'dejavu_sans';
	font-size: 14px;
	color: #333333;

	border: 3px solid;

	cursor: pointer;

	transition: all cubic-bezier(0.455, 0.03, 0.515, 0.955) 300ms;
}

.cell_download_csv_button {
    border-color: #3db4c4;
    color: #3db4c4;
}

.cell_download_gml_button {
	border-color: #3db4c4;
    color: #3db4c4;
}

.cell_view_svg_button {
    border-color: #001e4a;
    color: #001e4a;
}

.cell_download_csv_button:hover {
	background-color: #3db4c4;
	color: #ffffff;
}

.cell_download_gml_button:hover {
	background-color: #3db4c4;
	color: #ffffff;
}

.cell_view_svg_button:hover {
    background-color: #001e4a;
	color: #ffffff;
}


.analysis_list_row_details {
	display: none;
	padding: 10px;
	font-family: 'dejavu_sans';
	font-size: 16px;
	border-bottom: 1px solid #999999;
	border-top: 1px solid #dddddd;
}

.analysis_list_row.show_details .analysis_list_row_details {
	display: block;
}

.analysis_list_row_details_svg_viewer {
	position: relative;
	overflow: hidden;
	height: 600px;
	border: 1px solid #999999;
	background-color: #ffffff;
	text-align: center;
}

.svg_viewer_toolbar {
	position: absolute;
	left: 10px;
	top: 10px;
	display: block;
	font-size: 0;
	
	z-index: 1;
}

.svg_viewer_toolbar_zoom_button {
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-family: 'dejavu_sans';
	font-size: 18px;
	color: #001e4a;
	border: 1px solid #999999;
	
	background-color: #ffffff;
	
	cursor: pointer;
	user-select: none;
}

.svg_viewer_toolbar_zoom_button.zoom_out {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	border-right: none;
}

.svg_viewer_toolbar_zoom_button.zoom_in {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.svg_viewer_toolbar_zoom_button:hover {
	background-color: #cccccc;
}

.svg_viewer_image {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	max-height: 600px;
	transform-origin: center;
}