@charset "utf-8";
/* Tabs CSS Document */
ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 42px; /*--Set height of tabs--*/
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 41px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 41px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #ccc;
	border-left: none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #e0e0e0;
}
ul.tabs li a {
	text-decoration: none;
	color: #444;
	display: block;
	padding: 0 20px;
	font-weight:bold;
	border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
}
ul.tabs li a:hover {
	background: #ccc;
}
html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: #fff;
	border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
}
.tab_container {
	border: 1px solid #ccc;
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left; width: 100%;
	background: #fff;
}
.tab_content {
	padding: 20px;
	font-size: 1em;
}
.news-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.news-list li { overflow:auto; }
.news-list .news-date {
	float: left;
	width: 48px;
	height: 40px;
	margin-bottom: 10px;
	margin-top: 5px;
}
.news-date .month {
	font-weight: bold;
	font-size: 18px;
	border: 1px #ccc dotted;
	padding: 1px;
}
.news-date .month div {
	background: #fafafa;
	padding: 0px 5px;
	text-align: center;
}
.news-date .month div span {
	color: #707070;
	clear: both;
	font-size:14px;
}
.news-list .news-entry {
	float:left;
	font-size:0.9em;
	margin-bottom:10px;
	margin-left:20px;
	width:275px;
}
.news-list .news-title h3 {
	font-size:1.1em;
	font-weight:bold;
	margin: 0 0 4px 0;
	padding:0 0 4px 0;
	border-bottom: 1px dotted #757575;
}
.news-list .news-title h3 a { color:#DD651A; }
.news-list .news-title h3 a:hover { color:#707070; }
.news-list .news-content { color: #707070; }
.news-list .news-details {
	border-top: 1px #ccc dotted;
	font-size: 11px;
	padding: 5px 0;
}
.news-list .news-author { color: #707070; }
.news-comments {
	background: url(images/comment.png) no-repeat top left;
	padding-left: 20px;
	margin-left: 5px;
}
