/* CSS Document */

/* general styling */
* {
	margin: 0;
	padding: 0;
}
html,body {
	height: auto;
	background: #DDC;
	color: #1a3804;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}


/* hyperlinks */
a {
	color: #458023;
	text-decoration: underline;
}

a:hover {
	color: #265b00;
}

table{
  border: 0px solid black;
  border-spacing: 0px;
}

table thead tr th{
  border-bottom: 1px solid black;
  border-top: 1px solid black;
  margin: 0px;
  padding: 2px;
}

table tr, td, th{
  border-bottom: 1px solid black;
  padding: 2px;
}


/* site specific styling */


/* the container centers the page */
#container {
	width: 740px;
	height: auto;
	margin: 0 auto 0 auto;
}


/* the header that contains the big image */
#header {
	width: 740px;
	height: 160px;
	background: #458023 url(../images/header1.png) top left no-repeat;
	position: relative;
}

#logo_ufpr {
	position:absolute;
	left:600px;
	top:15px;
	z-index:2;
}

/* the navigationbar in the header */
#navbar {
	position: absolute;
	bottom:1px;
	right: 25px;
}

/* the links in the navigationbar are an unordered list */
	#navbar ul {
	}
	
	#navbar li {
		list-style: none;
		display: block;
		width: auto;
		float: left;
	}
	#navbar a {
		text-decoration: none;
		display: block;
		padding: 4px 10px 4px 10px;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 11px;
		text-transform: uppercase;
	}
	#navbar a:hover {
		background: #458023;
		color: #FFF;
	}
	
/* the core contains all the site contents */
#core {
	width: auto;
	height: auto;
	background: #FFF;
	padding: 5px 10px 10px 20px;

}


	#core h2 {
		font-family: "Trebuchet MS", Tahoma, Verdana, sans-serif;
		font-size: 24px;
		color: #3e6717;
	}
	#core h3 {
	font: 18px "Trebuchet MS", Tahoma, Verdana, sans-serif;
	color: #3e6717;
	letter-spacing: 1px;
	margin-bottom: 5px;
	border-bottom: 1px dotted #3e6717;
	padding-bottom: 3px;
}
	#core p {
		line-height: 20px;
		padding: 0 10px 10px 10px;
	}
	
	#core ul {
		padding: 20px;
		width: auto;
	}
	#core li {
		list-style: none;
		line-height: 20px;
		border-bottom: 1px solid #DDD;
	}
	#core li a {
		text-decoration: none;
		color: #a6c384;
		display: block;
		height: auto;
		padding: 4px;
	}
	#core li a:hover {
		background: #a6c384;
		color: #000;
	}

/* the footer contains all copyright info etcetera */
#footer {
	clear: both;
	width: 740px;
	height: 25px;
	background: #458023;
	line-height: 25px;
	vertical-align: middle;
	text-align: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
	#footer p {
		color: #FFF;
		padding-right: 20px;
	}
	#footer a {
		color: #FFF;
	}




/* the navigationbar in the header */
#footbar {
	position: relative;
	left: 480px;
}

/* the links in the navigationbar are an unordered list */
	#footbar ul {
	}
	
	#footbar li {
		list-style: none;
		display: block;
		width: auto;
		float: left;
	}
	#footbar a {
		text-decoration: none;
		display: block;
		padding: 0 10px 0 10px;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 11px;
		text-transform: uppercase;
	}
	#footbar a:hover {
		background: #FFF;
		color: #000;
	}



