* { margin: 0; padding: 0; }

html, body {
	margin:0; padding:0;
	background-color: #ececec;
	font-family: 'Good Pro', sans-serif;
	color: #404040;
}

a { text-decoration: none; color: #4a8ef6; }

a:hover { text-decoration: none; color: #546192; }

:focus {
	outline: none;
}

ul, li {
	margin: 0; padding: 0;
	vertical-align: top;
	list-style: none;
}

h2 {
	color: black;
}

input, select {
	font-family: 'Denk One', sans-serif;
	border:1px solid #efefef;
	padding: 5px;
	font-size: 11pt;
	color: #ee3844;
}


button, .button {
	border:none;
	background-color: #ee3844;
	font-size: 11pt;
	border-radius: 4px;
	padding: 10px;
	margin: 5px;
	font-family: 'Denk One', sans-serif;
	color: white;
}

.container {
	width: 990px;
	margin: 0 auto 0 auto;
}


/* POST */


.posts {
	width: 100%;
	margin: 2px;
	vertical-align:top;
/*
	border-top:2px dashed gray;
	border-left:2px dashed gray;
	border-left:2px dashed gray;
*/
	color: #333333;
	background-color: white;
	display: flex;
	flex-direction:row;
}

.posts:last-child {
/* 	border-bottom:2px dashed gray; */
}

.posts .user {
	display: inline-block;
	height: 200px;
	width: 10%;
	vertical-align: top;
	background-image: url('/assets/images/ui/pixel-pattern.png');
	background-color: white;
	background-size:2px 2px;
}
.posts .user span {
	padding: 10px;
	display: block;
}
.posts .post {
	width: 85%;
	min-height: 150px;
	background-color:white;
	display: flex;
	flex-wrap: wrap;
}

.post .title, .post .edit {
	width: 49%;
	height: 45px;
	margin: 5px 0 10px 0;
	display: inline-block;
}
.post .title {
	background-color: aqua;
}
.post .edit {
	background-color: rgb(57, 55, 190);
}

.post .edit {
	font-size: 10pt;
	text-align: right;
}
.post .edit a {
	padding: 10px 5px 0 5px;
	display: inline-block;
}

.post .post_text {
	padding: 10px;
	overflow-wrap: break-word;
	line-height: 150%;
}

.post .smiley {
	width: 18px;
	height: 18px;
}


/* BBCODE */

blockquote {
	border-color:#DBDBCE;
	background-color: #EBEADD;
	border: 1px solid #dbdbdb;
	margin: 0.5em 1px 0 25px;
    overflow: hidden;
    padding: 5px;
    font-size: 12pt;
}
cite {
    font-style: italic;
}