@charset "UTF-8";
/* CSS Document */

body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	background-image:url('images/backgroundHOME.jpg');
	background-repeat:repeat-x;
}
p {
	font-size: 14px;
	padding: 0 10px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	line-height: 24px;
	margin-top: 0px;
	color: #333333;
	text-align: left;
}

a:link      {
	color: #00008f;
}
a:hover     {
	color: #CC3300;
}
a:visited	{
	color: #00008f;
}
a:hover     {
	color: #CC3300;
}

li {
	font-size: 14px;
	padding: 0 10px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	line-height: 24px;
	margin-top: 0px;
	color: #333333;
	text-align: left;
}

#containerHome {
	width: 750px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	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. */
}
#container {
	width: 850px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	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. */
}
#header {
	height: 100px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: center;
	padding-top: 100px;
}
#menu {
	height: 34px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding-top: 20px;
	padding-right: 30px;
	font-size: 11px;
	letter-spacing:1px;
	border-bottom-color: #999999;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	text-align: right;
}
#menu a:link      {
	color: #000000;
	text-decoration: none;
}
#menu a:hover     {
	color: #999999;
	text-decoration: underline;
}
#menu a:visited	{
	color: #000000;
	text-decoration: none;
}
#menu a:hover     {
	color: #999999;
	text-decoration: underline;
}
#photo {
	position: absolute;
	top: 125px;
	width: 300px;
	height: 600px;
	z-index:2;
}
#mainContent {
	padding: 40px 20px 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	background: #FFFFFF;
}
#mainContent h1 {
	color: #999999;
	text-align: left;
	font-size: 24px;
	margin-top: 0px;
}
#mainContent h2 {
	color: #999999;
	text-align: center;
	font-size: 24px;
	margin-top: 0px;
}
#mainContent h3 {
	color: #999999;
	text-align: right;
	font-size: 24px;
	margin-top: 0px;
}
#footer {
	padding: 20px 30px 0px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	font-size: 9px;
	color: #CCCCCC;
	text-align: left;
}
.center {
text-align: center;
}
.right {
	text-align: right;
}
.outdent {
	position: relative;
	left: -30px;
	padding: 0px;
	
}
