﻿<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1" />
<meta name="viewport" content="width=device-width" />
<title>404 Error</title>

<!-- Favicons and Icons -->
<link rel="shortcut icon" href="images/favicon_logo.ico" type="image/x-icon">
<link rel="apple-touch-icon-precomposed" href="images/favicon_logo.png">


<style type="text/css">
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
a:hover,div:hover,p:hover,span:hover,h:hover {	
	-webkit-transition:all 0.4s ease-in;  
	-moz-transition:all 0.4s ease-in;  
	-o-transition:all 0.4s ease-in;  
	transition:all 0.4s ease-in;
}

body {
	background:#f0f0f0;
	margin:0;
	padding:0;
}

.main {
	background:#fff;
	color:#666;
	width: 600px;
	margin: 100px auto;
	height: 285px;
	padding-top:65px;
	font: 1em/1.2em Arial, Helvetica, sans-serif;
	font-weight:;
	text-align: center;
	_border:1px solid #ccc;
	box-shadow:1px 1px 5px rgba(0,0,0,0.15);
}
p {
	margin:5px auto;
}
.main a:link {
	color:#f00;
}
.main a:hover {
	color:#000;
}
.autojump {
	color:#666;
}
#jumpTo {
	color:#f00;
}
</style>

<script type="text/javascript">     
function countDown(secs,surl){     
 //alert(surl);     
 var jumpTo = document.getElementById('jumpTo');
 jumpTo.innerHTML=secs;  
 if(--secs>0){     
     setTimeout("countDown("+secs+",'"+surl+"')",1000);     
     }     
 else{       
     location.href=surl;     
     }     
 }     
</script> 
</head>
<body>
<div class="main">
<a href="http://www.ysbeyond.com.cn/"><img src="./images/404-error.jpg" width="340" height="161" alt="404"></a>
  <p>Click to back <a href="http://www.vilitech.com/">homepage</a></p>

  <p class="autojump">
    After <span id="jumpTo">5</span> automatically jump to the homepage
    <script type="text/javascript">countDown(5, 'http://www.vilitech.com/');</script>  
  </p>
  
</div>
</body>
</html>