	body{
	margin:0;
	text-align:center;
	background:url('./bg.jpg') no-repeat;
	background-size: contain;
	background-color: whitesmoke;
	}
	
	#container{
	width: 972px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	margin-top: 20px;
	border-radius: 10px;
	}
	
	#header{
	position: relative;
	top: 5px;
	left: 5px;
	width: 890px;
	height: 100px;
	margin-bottom: 10px;
	color: #000;
	text-align: center;
	border-radius: 10px;
	}
	
	#header #logo{
	position: absolute;
	top: 10px;
	left: 116px;
	font-weight:bold;
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
	}
	
	#nav_container{
	float: left;
	margin-left: 5px;
	top: 9px;
	left: 10px;
	width: 275px;
	height: 267px;
	color: #999;
	text-align: center;
	}
	
	#content{
	margin-left: 210px;
	top: 0;
	width: 684px;
	overflow:auto;
	background:whitesmoke;
	color: #000;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 0 49px 0 rgba(0, 0, 0, 0.5);
	}
	
	p{
	float:left;
	width:75%;
	font-weight: bold;
	}
	
	hr{
	width:95%;
	}
	
	td{
	width:55%;
	}
	
	.pers1{
	text-align:left;
	width:650px;
	height:200px;
	margin: 0 0 20px 17px;
	}
	
	.test{
	float:left;
	width:75%;
	}
	
	.foto1{
	float:right;
	width:25%;
	height:200px;
	box-shadow: 7px 7px 7px 2px rgba(0, 0, 0, 0.5);
	
	border-radius: 10px;
	-webkit-transform:scale(0.8); /*Webkit: Scale down image to 0.8x original size*/
	-moz-transform:scale(0.8); /*Mozilla scale version*/
	-o-transform:scale(0.8); /*Opera scale version*/
	-ms-transform:scale(0.8);
	-webkit-transition-duration: 0.5s; /*Webkit: Animation duration*/
	-moz-transition-duration: 0.5s; /*Mozilla duration version*/
	-o-transition-duration: 0.5s; /*Opera duration version*/
	-ms-transition-duration: 0.5s;
	opacity: 0.7; /*initial opacity of images*/
	}
	
	.foto1:hover{
	-webkit-transform:scale(1.2); /*Webkit: Scale up image to 1.2x original size*/
	-moz-transform:scale(1.2); /*Mozilla scale version*/
	-o-transform:scale(1.2); /*Opera scale version*/
	-ms-transform:scale(1.2);
	box-shadow:0px 0px 30px gray; /*CSS3 shadow: 30px blurred shadow all around image*/
	-webkit-box-shadow:0px 0px 30px gray; /*Safari shadow version*/
	-moz-box-shadow:0px 0px 30px gray; /*Mozilla shadow version*/
	-ms-box-shadow:0px 0px 30px gray;
	opacity: 1;
	}
	
	h3{
	color:#999;
	}
	a{
	text-decoration:none;
	color:#999;
	}
	
	#footer{
	color: #999;
	margin-top: 5px;
	margin-bottom: 20px;
	text-align: center;
	clear: both;
	overflow: auto;
	min-height: 100px;
	padding: 20px;
	}
	
	
	
		
