Buenas tardes:
¿Podría alguno de vosotros decirme, qué debo hacer para que en el siguiente código javascript, la hora esté en negrita y el reloj tenga un borde, por favor?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Hora completa</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
//http://javascript.tunait.com/
//[email protected]
function hora(){
var fecha = new Date()
var hora = fecha.getHours()
var minuto = fecha.getMinutes()
var segundo = fecha.getSeconds()
if (hora < 10) {hora = "0" + hora}
if (minuto < 10) {minuto = "0" + minuto}
if (segundo < 10) {segundo = "0" + segundo}
var horita = hora + ":" + minuto + ":" + segundo
document.getElementById('hora').firstChild.nodeValue = horita
tiempo = setTimeout('hora()',1000)
}
function inicio(){
document.write('<span id="hora">')
document.write ('000000</span>')
hora()
}
</script>
<style type="text/css">
<!--
#hora {
width:350px;
font-family: Tahoma, Verdana, Arial;
font-size: 14px;
color: #000000;
background : #FCB102
}
-->
</style>
</head>

<body>
<div align="center">
<script>inicio()</script>
</div>
</body>
</html>