/* CSS Document */
body {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding-top: 20px;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
h1{
	font-size: 18px;
	color: #2a74bf;
	margin-top: 15px;
}
h2{
	font-size: 14px;
}

a {
    color: teal;
    text-decoration:none;
}
a:visited {
    color: teal;
    text-decoration:none;
}
a:hover {
    color: navy;
    text-decoration:underline;
}
.oneCol #container {
	width: 800px;  /* this will create a container 800px of the browser width */
	background: #FFFFFF url(../img/reunat.jpg) left top repeat-y; 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneCol #topContent {
	padding: 5px 18px 0px 8px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF url(../img/ylalogo.jpg) left top no-repeat;
	margin-top: -10px;
	height: 120px;
	position: relative;
}
.oneCol #mainContent {
	padding: 10px 20px 10px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position: relative;
}
.oneCol #copyContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0;
	position: relative;
	height: 40px;
	background: #FFFFFF url(../img/alareunat.jpg) left bottom no-repeat;
	color: #2a74bf;
}