/* CSS Document */
/* Properties that both side lists have in common */
.sideList {
        /*width:10.2em;*/
				width:10%;
        position:absolute;
        top:10%;
       padding-left:1%;
        padding-right:1%;
        margin-left:0;
        margin-right:0;
}
/* we leave some place on the side using the margin-* properties */
#main {
	margin-left:12%;
	margin-right:12%;
	padding-left:1em;
	padding-right:1em;
	background-color: #FFFFFF;
	border: thick inset #CCCCCC;
	font-size: large;



}
/* and then we put each list on its place */
#leftBar {
	left:0;
	background-color: #CCCCCC;


}
#rightBar{
        right:0;
}
a {
	text-decoration: none;
}

