.thumbnail {
	height: 50px;
	width: auto;
 	border-radius: 6px;
}

.link {
	text-decoration: none;
	color: black;	
}

.positive_growth, .negative_growth {
	font-weight: bold;
	text-align: right;
	color: green;
}

.negative_growth {
	color: red;
}

.account_data {
	font-weight: normal;
	text-align: left;
	padding: 10px 15px;
	font-size: 14px;
	text-decoration: none;
	color: black;
}


h3 {
	font-weight: bold;
	text-align: left;
	padding: 20px 15px;
	font-size: 14px;
}

.table {
	width: 100%;
	border: none;
	margin-bottom: 20px;
	border-spacing: 0px;
}
.table thead th {
	font-weight: bold;
	text-align: left;
	border: none;
	padding: 10px 15px;
	background: #d8d8d8;
	font-size: 14px;
}
.table thead tr th:first-child {
	border-radius: 8px 0 0 8px;
}
.table thead tr th:last-child {
	border-radius: 0 8px 8px 0;
}
.table tbody td {
	text-align: left;
	border: none;
	padding: 10px 15px;
	font-size: 14px;
	vertical-align: middle;
}
.table tbody tr:nth-child(even){
	background: #f3f3f3;
}
.table tbody tr td:first-child {
	border-radius: 8px 0 0 8px;
}
.table tbody tr td:last-child {
	border-radius: 0 8px 8px 0;
}

