/* CSS Document */
body {
font-family:'Verdana';
scrollbar-face-color: #1A234A;
scrollbar-highlight-color: #1A234A;
scrollbar-shadow-color: #000000;
scrollbar-3dlight-color: #000000;
scrollbar-arrow-color:  #FFFFFF;
scrollbar-track-color: #1A234A;
scrollbar-darkshadow-color: #1A234A;
}

A:link {text-decoration: none; color:#FFFFFF;}
A:visited {text-decoration: none; color:#FFFFFF;}
A:active {text-decoration: none; color: #FFFFFF;}
A:hover{text-decoration: underline;}
A.ff {text-decoration: none; color: #FFFFFF;}
A.ff:visited {text-decoration: none; color: #FFFFFF;}
A.ff:hover	{text-decoration: underline; color:#FFFFFF;}
A:ff.active {text-decoration: none; color: #FFFFFF;}
A:hover {text-decoration: none; color: #FFFFFF}

/* Formatações nos formulários */
.input {
BORDER-RIGHT: #000000 1px solid;
BORDER-TOP: #000000 1px solid;
FONT-SIZE: 11px;
BORDER-LEFT: #000000 1px solid;
COLOR: #FFFFFF;
BORDER-BOTTOM: #000000 1px solid;
FONT-FAMILY: Verdana;
BACKGROUND-COLOR: #1A234A
}

*/Função Imagem Automática*/
function Bilden(filename,winTitle) 
{
var myImage = new Image();
myImage.src=filename;
properties='height=10,width=10';
var imgWindow = window.open('','',properties);

html = '<html>';
html += '<head>';
html += '<title>'+winTitle+'</title>';
html += '</head>';
html += '<body topmargin="0" marginheight="0" leftmargin="0" marginwidth="0" bgcolor="#212121">';
html += '<img src="'+myImage.src+'" onLoad="resizeTo(document.bild.width+10,document.bild.height+58);" name="bild">';
html += '&nbsp; &nbsp; <strong><font color="#FFFFFF" size="1" face="Verdana, Arial, Helvetica, sans-serif">'+winTitle+'</font></strong>';
html += '</body>';
html += '</html>';

imgWindow.document.write(html);
}

/* Bordas na Tabela */
.bordas {
border-collapse: collapse;
border:1px solid #000000;
}