@charset "utf-8";
/* CSS Document */

body{

	background-color: #000000;
}
#contentContainer h2{	/* <!--No margins above <h2> tags--> */
	margin-top:0px;
}


#mainContainer{
	width:755px;
	margin:0 auto;
	text-align:left;
	padding:5px;
	margin-top:20px;
	border:1px solid #FFF;
	background-color: #000;
}
#contentContainer{
	
	
	font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
	font-size:0.9em;
	line-height:130%;
	height:100%;
	
	float:left;
	border:1px solid #FFF;
	background-color: #000000;
	overflow:auto;
	margin-right:10px;
	padding:10px;
	
	/* CSS HACK */
	width: 497px;	/* IE 5.x */
	width/* */:/**/480px;	/* Other browsers */
	width: /**/480px;
	
	/* CSS HACK */
	height: 412px;	/* IE 5.x */
	height/* */:/**/390px;	/* Other browsers */
	height: /**/390px;
			
}


#contentContainer .openingText{
	color:red;
}

#articleListContainer{	/* <!--<ul>--> container for article list */
	float:left;
	height:410px;
	overflow:auto;	
	width:240px;
	border:1px solid #FFF;
	background-color:#000;	
}
.articleList{
	margin:0px;
	padding:2px;
}
.articleList li{	/* General layout article in list */
	list-style-type:none;
	border:1px solid #999;
	background-color:#000;
	height:50px;
	margin:1px;
	padding:2px;
	color:#555;
	cursor:pointer;
}
.articleList li.articleMouseOver{	/* Mouse over article in list - layout */
	border:1px solid #FFF;
	color:#FFF;
}
.articleList li.articleClick{	/* Active article in list - layout */
	border:1px solid #FFF;
	background-color:#B5000B;
	color:#555;
}

.keyText{	/* Just a column I use for key text inside articles - the one with the light blue bg and dotted border */
	background-color:#000;
	border:1px dotted #FFF;
	float:right;
	margin-top:5px;
	margin-left:5px;
	margin-bottom:5px;
	width:150px;
	padding:3px
}
.clear{
	clear:both;
}