.new_post{
	width: 100%;
	height: auto;
}
.new_post>ul{
	width: 45%;
	height: auto;
	list-style: none;
}
.list1 {
	float: left;
}
.list2 {
	float: right;
}
.new_post>ul>li {
	width: 100%;
	padding-bottom: 8px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.new_post>ul>li>a {
	display: block;
	text-decoration: none;
	font-size: 14px;
	color: #333;
    transition: all 0.3s ease-out;
}
.new_post>ul>li>a:hover {
	color: darkblue;
	text-decoration: underline;
	transform: scale(1.01);
    padding: 0px 0px 0px 8px;
}
.new_post>ul>li>a>i{
	font-style: italic;
}
