@charset 'UTF-8';

	*
	{
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}

	body
	{
		background-color: #997b47;
		font-family: Arial, sans-serif;
		font-weight: 300;
		color: 000;
		position: relative;
	}


	h1, h2
	{
		
		font-family: Helvetica Neue;
		font-weight: 300;
		color: #000;
		text-align: center;
		font-size: 0px;
	}
	

	article
	{
		margin-bottom: 0em;
	}

		

	p
	{
		font-size: 16px;
		padding-top: 10px;
	}

	ul.style1
	{
		list-style: none;
		padding-left: 1em;
	}
	
	ul.style1 li
		{
			padding-left: 0.5em;
		}
	
	ul.links
	{
	}
	
		ul.links li
		{
			display: inline-block;
		}

			ul.links li:before
			{
				display: inline;
				content: '\2022';
				opacity: 0.5;
			}
		



/*********************************************************************************/
/* Panels                                                                        */
/*********************************************************************************/

	#main
	{
		position: relative;
		margin-top: 0em;
		background: #eadbb4;
		overflow: hidden;
		border: 3px outset #891635;
	}

	.panel
	{
		position: relative;
		background: #eadbb4;
	}/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/

	#footer
	{
		color: #891635;
		color: transparent;
		font-weight: 300;
	}
	
		#footer a
		{
			color: #891635;
			-moz-transition: color .25s ease-in-out;
			-webkit-transition: color .25s ease-in-out;
			-o-transition: color .25s ease-in-out;
			-ms-transition: color .25s ease-in-out;
			transition: color .25s ease-in-out;
		}
		
		#footer a:hover
		{
			color: #000;
		}