/* CSS Document */

body {
	padding-top: 50px;
}

.navbar-brand a {
	text-decoration: none;
	color: #333;
}

.user-circle {
	float: left;
	width: 30px;
	height: 30px;
	margin: -5px 8px -8px -8px;
	border-radius: 20px;
	text-align: center;
	overflow: hidden;
	border: #CCC 1px solid;
}
	.user-circle i {
		font-size: 25px;
		line-height: 35px;
		color: #FFF;
	}
.users li {
/*
	border-left: 10px solid;
	margin: 10px 0;
*/
	padding: 0px;
}
	.users li a {
		padding: 15px 20px;
	}

	.users li a h3 {
		margin: 0px;
		padding: 0px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.users li a small {
		color: #999;
	}

	.users li a .user-circle {
		width: 50px;
		height: 50px;
		border-radius: 25px;
		margin-top: -2px;
		margin-right: 15px;
	}
	.users li a .user-circle i {
		font-size: 45px;
		line-height: 60px;
	}

.wishes {
	list-style: square;
	font-size: 16px;
	padding-left: 20px;
}

.wishes > li {
	margin-bottom: 15px;
}
	.wishes > li > span {
		font-weight: bold;
	}

.wishes > li > small {
	display: block;
	margin-bottom: 10px;
}
	.wishes > li > small > a {
		margin-right: 10px;
		color: #444;
		font-weight: normal;
	}
	.wishes > li > small > a:hover {
		color: #1B23B3;
	}

.link_attachment {
	box-shadow: 0 0 2px #999;
	border-radius: 2px;
	margin-top: 5px;
	color: #333;
	max-width: 700px;
	min-height: 100px;
	display: flex;
	overflow: hidden;
	position: relative;
	align-items: center;
}
	.link_attachment:focus,
	.link_attachment:active,
	.link_attachment:hover {
		box-shadow: 0 0 2px #666;
		text-decoration: none;
		color: #000;
	}

	.link_attachment img {
		flex: 0;
		max-height: 120px;
		padding: 8px;
	}
	.link_attachment .text {
		border-left: #EEE 1px solid;
		padding-left: 10px;
		padding: 12px;
		display: flex;
		flex: 1 1 0%;
		min-width: 0;
		flex-direction: column;
		justify-content: center;
		align-self: stretch;
	}
	.link_attachment h3 {
		font-size: 16px;
		font-weight: bold;
		margin: 8px 0;
		padding: 0px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	.link_attachment p {
		line-height: normal;
		font-size: 12px;
	}
	.link_attachment .link {
		font-size: 12px;
		color: #999;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}

.comments {
	margin-top: 5px;
	padding: 0px;
	list-style: none;
	border: #CCC 1px solid;
	border-top: none;
	max-width: 300px;
	background-color: #F9F9F9;
	border-radius: 4px;
	overflow: hidden;
}
	.comments li {
		border-top: #CCC 1px solid;
		position: relative;
		border-left: #141968 4px solid;
	}

	.comments li.comment {
		padding: 5px 8px;
	}

	.comments li a.delete {
		float: right;
		line-height: 15px;
		font-size: 13px;
		color: #CCC;
		margin: -2px;
	}
		.comments li:hover a.delete {
			color: #999;
		}

	.comments li textarea {
		resize: none;
		border-radius: 0;
		border-width: 0;
		height: auto;
	}
		.comments li textarea:empty {
			height: 35px;
		}
		.comments li textarea:focus,
		.comments li textarea:active {
			height: auto;
		}
	.comments li label {
		font-weight: normal;
		margin: 0;
		margin-left: 30px;
		font-size: 12px;
		line-height: 22px;
	}

	.comments li h5 {
		margin: 0;
		font-weight: bold;
		padding-bottom: 2px;
	}
		.comments li > h5 > i {
			color: #999;
		}

	.comments li p {
		font-size: 12px;
		margin: 0;
	}

