blockquote {
	/* needs space esp. between multiple quotes */
    margin: 1em 0 1em .5em;
}

.wrapper-dropdown-2 {
    position: relative; 
    width: auto;
    min-width: 110px;
    padding: 5px 55px 5px 10px;
    margin: 0 auto;
    background: #ccc;
    color: #fff;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    text-align: left;
}
.wrapper-dropdown-2:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent #fff;    
}
.wrapper-dropdown-2 .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 90px;
    text-align: left;
    background: #fff;
    font-weight: normal; /* Overwrites previous font-weight: bold; */
	padding:0px;
    opacity: 0;
    pointer-events: none;
}
.wrapper-dropdown-2 .dropdown li a {
    display: block;
    text-decoration: none;
    padding: 10px 20px;
}

/* Hover state */
.wrapper-dropdown-2 .dropdown li:hover a {
    background: #f3f8f8;
}
/* Active state */
.wrapper-dropdown-2.active .dropdown {
    opacity: 1;
	border: 1px solid #3E3E50;
    pointer-events: auto;
}

.wrapper-dropdown-2.active:after {
    border-color: #ffffff transparent;
    border-width: 6px 6px 0 6px ;
    margin-top: -3px;
}

.wrapper-dropdown-2.active {
  background: #3E3E50;
}		
.rep_announce{
	background-color: #ec8686;
    color: white;
    padding: 2px 5px 2px 5px;
    border-radius: 10px;
	display:block;
}

#positionHolder{
	display:none;
}
#privateHolder{
	display:none;
}
#leadersHolder{
	display:none;
}

.positionComment{
	width:100%;
	display: flex;
	flex-direction: column;
	/* no margin top/bottom, for equal space above and below border-bottom of positionComment */
	padding: 8px 0;
	border-bottom: 1px solid #ebebeb;
}

.goToLink {
	margin: 4px 0 0 0;
}

@media screen and (min-width: 450px) {
	.positionComment {
		display: inline-block;
		flex-direction: initial;
	}
	.goToLink {
		margin: 4px 0 0 168px;
	}
}
.positionComment .board a{
	width: 156px;
	float: left;
	/* same padding top and bottom, for equal space above and below border-bottom of positionComment */
	padding: 10px 15px 10px 0;
	box-sizing: content-box;
}
.positionComment .text{
	padding: 3px;
	line-height: 140%;
}
.positionComment .text .user{
	font-size:1.5rem;
	line-height: 100%;
	display:block;
	margin-bottom: 6px;
}
.positionComment .text .time{
	color:gray;
	font-style: italic;
	white-space: nowrap;
}
.positionComment .text .quoteRight {
	margin-right: 10px;
}
.fullBookDescription{
	display:none;
}

.collapsableButton{
	display: block;
	width: 100%;
	margin: 15px auto 0;
	cursor: pointer;
	background-color: #eaeaea;
	padding: 5px 0;
	font-size: 14px;
	border-radius: 2px;
	border: 0;
	font-family: Open Sans,sans-serif;
}

.collapsableButton:hover {
	background-color: #efefef;
}
.replied{
	color:green;
	text-decoration:underline;
}