
/*
General stuff
*/
body{
	
	
	min-width:720px;
	max-width:760px;
	border-right:1px solid #BBB;
	border-left:1px solid #BBB;
	
	/*reset IE ... all other decent browsers will ignore it*/
	//width:760px;
	//min-width:760px;
	//max-width:760px;
	
	margin:0;
	
	margin-left: auto;
	margin-right: auto;
	
	background: #FFF url("../images/bodymarginsFFF.jpg") repeat-Y 50%;
	
	font-family: arial, sans-serif;
	font-size: 9pt;
	text-align: left;
	color: #555;
}


hr{
	display:none;
}

ul{
	list-style:none;
	padding-left:10px;
	margin-left:0px;
}

ul li{
	padding-left:10px;
	background: url("../images/cross1.png") no-repeat left 0.2em;
}

ol li{
	list-style-type: upper-roman;
	background:none;
	padding-left:0px;
}



/*h1 used for the title on each page*/
h1{
	font-family: georgia, serif;
	font-size:1.8em;
	font-weight:normal;
	color:#554037;
}



h2{
	font-family: georgia, serif;
	font-size:1.4em;
	font-weight:normal;
	color:#333;
	border-bottom:1px dashed #888;
	/*border-top:1px dotted #bbb;
	border-left:1px dotted #bbb;
	background: #E6E6E6;
	padding: 2px 10px;*/
	margin-top:30px;
}


h3{
	font-family: georgia, serif;
	font-size:1.1em;
	font-weight:bold;
	color:#444;
	margin-bottom:5px;
}

em{
	font-family: georgia, times, serif;
	font-style: italic;
}

strong{
	color:#000;
	font-weight:normal;
	font-family: georgia, times, serif;
	font-style: italic;
}

a{
	color: #7C6145;
	text-decoration:underline; 
}

a:hover{
	color:#FFF;
	background:#7C6145;
	text-decoration:none;
}


a img{
	/*make sure there are no borders with links on from images, particularly in Mozilla/Firefox */
	border:0;
}


/*
Style the tables
*/
table{
	width:100%;
}

table caption {
	/* same as <h3> */
	text-align:left;
	font-family: georgia, serif;
	font-size:1.1em;
	font-weight:bold;
	color:#444;
	margin-bottom:5px;
}

table td{
	vertical-align: top;
	text-align:left;
	padding: 2px 5px;
	background:#ddd;
}

table th{
	text-align:left;
	padding:5px 5px;
	background:#ccc;
}




#header a:hover{
	background:none;
}


#header{
	background: url("../images/peb2new.jpg") no-repeat -23px -15px;
	height:150px;
	
	padding-top:20px;
	padding-right:50px;
	
	text-align:right;
}


/*
Logos
*/
#logo{
	float:left;
	margin-left:95px;/*needs 5px difference with main body text*/
	padding-top:55px;/*needs 5px difference with acmlogo*/
}

#acmlogo {
	padding-right: 10px;
	padding-top:60px;
}





/*
Navigation
*/
#navigation {
	margin:0px;
	padding-left: 10px;
	padding-top:10px;
	height:20px;
	border-bottom:4px solid #EEE;
	background: #CCC url("../images/grad1.jpg") repeat-X top;
}

#navigation ul{
	text-align:center;
	list-style:none;
	padding:0px;
	margin:0px;
	padding-left:0px;
	margin-left:0px;
}

#navigation li{
	padding-left:6px;
	padding-right:10px;
	padding-bottom:6px;
	background:none;
	border-right: 1px solid #EEE;
	display:inline;
}

#navigation a{
	color:#666;
	text-decoration:none;
}

#navigation a:hover{
	color:#FFF;
	background:#666;
}

#navigation #currentsection{
	/*position:relative;
	top:3px;*/
	font-weight:bold;
	text-decoration: underline;
}



/*use this to make a list with a bit of space between items
	it's useful if styling lists of chunks of text rather than a single line*/
.spacedlist li{
	margin-bottom:5px;
}

/*
Main content of page
*/
#main {
	padding:20px 50px 10px 100px;
	border-top:2px solid #999;
	background:#FFF;
}




/*
Footer
*/
#footer{
	clear:both;
	padding:5px 100px;
	border-top:4px solid #DDD;
	font-size:0.9em;
}


/*
for two columns layout
*/

.leftcol{
	width:45%;
	float:left;
}

.rightcol{
	width:45%;
	float:right;
}






