/* CSS Document */

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


#mainContainer{
	width:630px;
	margin:0 auto;
	text-align:left;
	padding:2px;
	background-color: #FFF;
	
}
#contentContainer{
	float:left;
	overflow:auto;
	background :url(images/fleche.jpg) fixed;
	border:1px solid #000;
	padding:10px;
	width: /**/360px;
	height: /**/380px;
			
}


#contentContainer .openingText{
	color:red;
}

#articleListContainer{	/* <ul> container for article list */
	float:left;
	height:410px;
	overflow:auto;	
	width:248px;
	background-color:#FFF;	
}
.articleList{
	margin:0px;
	padding:2px;
}
.articleList li{	/* General layout article in list */
	list-style-type:none;
	background-color:#FFE9C4;
	height:50px;
	margin:1px;
	padding:2px;
	color:#333;
	cursor:pointer;
}
.articleList li.articleMouseOver{	/* Mouse over article in list - layout */
	color:#000;
}
.articleList li.articleClick{	/* Active article in list - layout */
	color:#000;
	background-color:#FFF3E3;
}

.keyText{	/* Just a column I use for key text inside articles - the one with the light blue bg and dotted border */
	background-color:#FFF;
	float:right;
	margin-top:5px;
	margin-left:5px;
	margin-bottom:5px;
	width:150px;
	padding:3px
}
.clear{
	clear:both;
}