/* CSS Document */

/*===================================================================================================
2) Basic styles
===================================================================================================*/
	body {
	font: 14px/21px Arial, sans-serif;
	color: #676952;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	-webkit-transition: background-color 0.8s ease-out;
	-moz-transition: background-color 0.8s ease-out;
	-o-transition: background-color 0.8s ease-out;
	transition: background-color 0.8s ease-out;
	background-color: #262626;
	background-position: center center;
	}
	#footerLinks li {
	font-weight: bold;
	font-size: 12px;
	display: inline;
	padding-left: 12px;
	margin-left: 0;
	border-right: 1px solid;
	padding-right: 15px;
}

#footerLinks li:first-child {
	padding-left: 0;
}

#footerLinks li:last-child {
	border-right: none;
}

IMG.displayed {
    display: block;
    margin-left: auto;
    margin-right: auto }
     
a:link {
    color: #676952;
}

/* visited link */
a:visited {
    color: #676952;
}

/* mouse over link */
a:hover {
	color: #FFF;
}

/* selected link */
a:active {
    color: #FFF;
}
/*===================================================================================================
