body {
	font-family: Arial, Helvetica, sans-serif;
}

#contentContainer h2 {	/* No margins above <h2> tags */
	margin-top:0px;
}

#mainContainer{
	width: 900px;
	height: 570px;
	margin:0 auto;
	text-align:left;
	margin-top:10px;
	background-color: #FFF;
}
#contentContainer {
	float:left;
	overflow:auto;
	margin-right:10px;
	padding:10px;
	width: 670px;
	height: 550px;		
}

#contentContainer .openingText {
	color: #f8d20c;
}

.loader {
	width: 200px;
	height: 100px;
	margin-top: 220px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	line-height: 24px;
}

#articleListContainer{	/* <ul> container for article list */
	float:left;
	height:570px;
	overflow: hidden;
	width:180px;
	background-color:#FFF;
	margin-top: 5px;
}
.articleList  {
	margin:0px;
	padding:2px;
}
.articleList li {	/* General layout article in list */
	list-style-type:none;
	background-color: #CCC;
	font-weight: bold;
	height: 34px;
	width: 180px;
	margin-bottom: 6px;
	padding-top: 14px;
	padding-left: 14px;
	color: #666;
	cursor:pointer;
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}

.articleList li.articleMouseOver {	/* Mouse over article in list - layout */
	color: #666;
	background-color: #999;
}

.articleList li.articleClick  {	/* Active article in list - layout */
	color: #f8d20c;
	background-color: #000;
}

.clear{
	clear:both;
}