div.search-page {
	padding-top: 15px;
	min-height: 500px;
	box-sizing: border-box;
}
div.search-page * {
	box-sizing: border-box;
}

h1.page-title {
	font-size: 24px;
}

div.query-input {
	background: #E0E0E0;
	border: 1px solid #888;
	font-size: 10pt;
	text-align: center;
	padding: 15px;
	margin-bottom: 5px;
}

div.query-input div.type-checkbox {
	display: inline-block;
	margin: 0 5px;
	font-weight: bold;
}

div.query-input div.type-checkbox input[type=checkbox]
{
	cursor: pointer;
}

div.query-input input.query-input-box {
	display: block;
	width: 48%;
	margin: 5px auto 10px auto;
	padding: 2px 5px;
}

table.query-results {
	border-spacing: 1px;
	width: 100%;
}

table.query-results th,
table.query-results td {
	font-size: 10pt;
	padding: 3px 5px;
}

table.query-results thead tr {
	background: #AAAAD5;
}
table.query-results thead tr th {
	color: #FFF;
}

table.query-results tbody tr:nth-child(odd) {
	background: #e5e5f3;
}
table.query-results tbody tr:nth-child(even) {
	background: #f0f0E7;
}
table.query-results tbody td {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
table.query-results .col-name {
	width: 420px;
	max-width: 420px;
}

table.query-results .col-symbol {
	width: 170px;
	max-width: 170px;
}
table.query-results .col-type {
	width: 170px;
	max-width: 170px;
}
table.query-results .col-isin {
	width: 140px;
	max-width: 140px;
}

table.query-results .col-links a {
	display: inline-block;
	text-align: center;
	width: 33%;
}