div.header {
	padding: 0 20px 10px 20px;
}

div.organizations {
	padding: 5px 10px 20px 10px;
}

div.organizations table {
	width: 100%;
	border-spacing: 0;
	border-collapse: none;
	color: #000000;
	/*border-collapse: collapse;*/

/*	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;*/
}

div.organizations table tr {
	height: 32px;
	cursor: pointer;
}

div.organizations table tr:nth-child(2) td:first-child {
	border-top-left-radius: 4px;
}

div.organizations table tr:nth-child(2) td:last-child {
	border-top-right-radius: 4px;
}

div.organizations table tr:last-child td:first-child {
	border-bottom-left-radius: 4px;
}

div.organizations table tr:last-child td:last-child {
	border-bottom-right-radius: 4px;
}



div.organizations table.hide {
	display: none;
}

div.organizations table tr:not(.header):hover {
	background-color: #F9F9F9;
}

div.organizations table tr:not(:last-child) td {
	border-bottom: 1px #d4d4d4 solid;
}

div.organizations table th,
div.organizations table td {
	box-sizing: border-box;
	text-align: left;
	font-size: 14px;
	font-weight: normal;
	line-height: 30px;
}

div.organizations table th {
	height: 44px;
	color: #555555;
}

div.organizations table td {
	color: #000000;
}

div.organizations table th.title {
	padding: 0px 0px 0px 10px;
}

div.organizations table th.rate {
	padding: 0px 0px 0px 0px;
	text-align: right;
}

div.organizations table td.title {
	position: relative;
	padding: 0px 0px 0px 35px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	max-width: 80px;
}

div.organizations table td.title img {
	position: absolute;
	top: 6px;
	left: 10px;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

div.organizations table td.rate {
	padding: 0px 10px 0px 10px;
	text-align: right;
}

div.organizations table th.rate span {
	padding: 6px 10px 6px 20px;
	margin: 0px 0px 0px 12px;
	border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	user-select: none;
	background-image: url('/img/arrow-up.png'), url('/img/arrow-down.png');
	background-size: 8px;
	background-position: 7px 6px, 7px 14px;
	background-repeat: no-repeat;
	cursor: pointer;
}

div.organizations table th.rate span.asc,
div.organizations table th.rate span.desc {
	margin: 0px 0px 0px 0px;
	background-color: #f0f0f0;
}

div.organizations table th.rate span.asc {
	background-image: url('/img/arrow-up.png');
	background-position: 7px center;
	background-size: 8px;
	background-repeat: no-repeat;
}

div.organizations table th.rate span.desc {
	background-image: url('/img/arrow-down.png');
	background-position: 7px center;
	background-size: 8px;
	background-repeat: no-repeat;
}

div.organizations table th.rate span:hover {
	background-color: #f6f6f6;
}

div.organizations table td.rate span.increase,
div.organizations table td.rate span.decrease {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0px 4px;
	background-size: 8px;
	background-position: 1px 1px;
	background-repeat: no-repeat;
}

div.organizations table td.rate span.increase {
	background-image: url('/img/increase.png');
}

div.organizations table td.rate span.decrease {
	background-image: url('/img/decrease.png');
}

div.organizations table a,
div.organizations table a:visited {
	padding: 5px 5px 5px 5px;
	font-size: 14px;
	color: #000000;
	text-decoration: none;
}
/*div.organizations table a:hover,
div.organizations table a:active {
	text-decoration: underline;
}*/

@media (min-width: 940px) {
	div.organizations table th.title,
	div.organizations table td.title {
		width: 60%;
	}

	div.organizations table th.rate,
	div.organizations table td.rate {
		width: 20%;
	}

	div.organizations table th.rate.last,
	div.organizations table td.rate.last {
		width: 20%;
	}

/*  div.organizations:hover table th.rate span:not(:hover) {
		background-color: #f0f0f0;
	}*/
}
@media (min-width: 0px) and (max-width: 939px) {
	div.organizations table th.title,
	div.organizations table td.title {
		width: 48%;
	}

	div.organizations table th.rate,
	div.organizations table td.rate {
		width: 26%;
	}

	div.organizations table th.rate.last,
	div.organizations table td.rate.last {
		width: 26%;
	}
}