/* ------------------------------------- *\
 * Styles related to the discussion forum
\* ------------------------------------- */
/* Category choice */
.forum-category
{
	color: inherit;
	cursor: pointer;
	width: 100%;
	display: block;
	background-color: #eeeeff;
	border-top: solid 1px #39355d;
	padding: 12px;
	transition: ease-out 0.2s;
	text-decoration: none;
}

.forum-category:hover
{
	color: #FFFFFF;
	background-color: #9e97e2;
}

.forum-category-title
{
	font-size: 14pt;
	font-weight: bold;
	margin-bottom: 6px;
}

.forum-category-description
{
	font-size: 10pt;
}

/* Thread list */
.threadlist-options
{
	width: 100%;
	background-color: #eeeeff;
	display: inline-block;
	font-size: 9pt;
	padding: 9px;
	line-height: 18px;
	margin-bottom: 16px;
}

.forum-threadlist-itemcontainer
{
	width: 100%;
	padding: 0px;
	margin: 0px;
	display: flex;
}

.forum-threadlist-itemcontainer-thread
{
	color: inherit;
	background-color: #eeeeff;
	border-bottom: solid 1px #39355d;
	text-decoration: none;
	transition: ease-out 0.2s;
}

.forum-threadlist-itemcontainer-thread:hover
{
	color: #FFFFFF;
	background-color: #9e97e2;
}

.forum-threadlist-title
{
	width: 65%;
	padding-left: 14px;
	padding-top: 8px;
	padding-bottom: 8px;
	display: inline-block;
	font-size: 11pt;
}

.forum-threadlist-author
{
	width: 12%;
	padding-top: 8px;
	padding-bottom: 8px;
	display: inline-block;
	font-size: 9pt;
}

.forum-threadlist-activity
{
	width: 14%;
	padding-top: 8px;
	padding-bottom: 8px;
	display: inline-block;
	font-size: 9pt;
}

.forum-threadlist-replies
{
	width: 9%;
	padding-top: 8px;
	padding-bottom: 8px;
	display: inline-block;
	font-size: 9pt;
}

.forum-threadlist-header
{
	color: #AAAAAA;
	font-weight: bold;
	background-color: #39355d;
	font-size: 11pt;
}

/* View thread page */
.thread-block
{
	border: solid 1px #39355d;
}

.thread-reply-block
{
	border-left: solid 1px #39355d;
	border-right: solid 1px #39355d;
	border-bottom: solid 1px #39355d;
}

.thread-title
{
	width: 100%;
	background-color: #eeeeff;
	display: inline-block;
	font-size: 14pt;
	font-weight: bold;
	border-bottom: solid 1px #AAAAAA;
	padding: 10px;
}

.thread-infoline
{
	width: 100%;
	background-color: #eeeeff;
	display: inline-block;
	font-size: 9pt;
	border-bottom: solid 1px #AAAAAA;
	padding: 9px;
	line-height: 18px;
}

.thread-author-content-container
{
	display: flex;
}

.thread-author-box
{
	width: 20%;
	background-color: #eeeeff;
	display: inline-block;
	font-size: 11pt;
	border-right: solid 1px #AAAAAA;
	padding: 9px;
}

.thread-contents
{
	width: 80%;
	display: inline-block;
	font-size: 10pt;
	padding-left: 9px;
	padding-right: 9px;
}

.thread-author-name
{
	font-size: 11pt;
}

.thread-author-affiliation
{
	font-size: 9pt;
	margin-top: 5px;
}

/* Create/edit thread form */
#createthread-form input
{
	width: 100%;
	width: -webkit-fill-available !important;
	padding: 5px;
	margin: 20px 20px 0px 20px;
	border: solid 1px black;
}

#createthread-form textarea
{
	width: 100%;
	width: -webkit-fill-available !important;
	height: 240px;
	padding: 5px;
	margin: 20px 20px 0px 20px;
	border: solid 1px black;
}

#createthread-form div
{
	width: 100%;
	margin: 20px;
}

#createthread-form div span
{
	width: 18%;
	display: inline-block;
}

#createthread-form div select
{
	border: solid 1px black;
}

#createthread-form button
{
	width: 160px;
	height: 38px;
	color: #AAAAAA;
	font-weight: bold;
	background-color: #39355d;
	border: solid 1px black;
	transition: ease-out 0.2s;
	margin: 20px;
}

#createthread-form button:hover
{
	color: #FFFFFF;
	background-color: #9e97e2;
}