* {
	font-family: Arial;
	background-color: black;
	color: rgb(180, 180, 180);
}

small {
	font-size: 14px;
}

a {
	color: rgb(120, 150, 80);
	cursor: pointer;
}

body {
    min-height: 100%;
    margin: 0;
    padding: 0 20px;
}
html {
    height: 100%;
}

.main {
	position: relative;
	padding-top: 20px;
}


.trade_history_log_container {
	width: 70%;
	margin-left: 5%;
	height: 200px;
	overflow: scroll;
}

header small {
	font-size: 12px;
}

.ptr--ptr, .ptr--ptr * {
	color: rgb(180, 180, 180) !important;
}

.trade_history_log_container .green {
	color: green;
}

.trade_history_log_container .red {
	color: red;
}

.row {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
    clear: both;
}

.row > * {
	flex-grow: 1;
	overflow: hidden;
	max-width: 50%;
}

@media screen and (max-width: 1200px) {
	.row {
		flex-direction: column;
	}
	.row > * {
		max-width: none;
	}
}

.periodSelector {
	position: absolute;
	top: 0;
	z-index: 999;
}

	.periodSelector:not(.showAll) {
		cursor: pointer;
	}

	.periodSelector > * {
		display: inline-block;
		vertical-align: top;
	}

	.periodSelector .toggler {
		cursor: pointer;
	}

	.periodTypes {
		list-style: none;
		padding: 0;
		margin: 0 3px 0 15px;
	}

	.periodSelector.showAll li:not(.selected) a:hover {
		font-weight: bold;
	}

	.periodSelector.showAll li.selected,
	.periodSelector.showAll li.selected a {
		color: rgb(180, 180, 180)
	}

	.periodSelector:not(.showAll) .periodTypes li:not(.selected){
		display: none;
	}

	.periodTypes li {
		display: block
	}

	.periodTypes li a {
		min-width: 100px;
	}

	.periodSelector.showAll .periodTypes li a {
		display: inline-block;
		text-align: center;
		margin-bottom: 30px;
	}




dl {
	min-width: 400px;
}
dl dt, dl dd {
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
	overflow: hidden;
}

dl dt {
	clear: both;
	width: 40%;
}

dl dd {
	width: 50%;
	margin: 0;
}