/* CSS Document */

*{margin:0; padding:0; font-family:Verdana, Arial, Helvetica, sans-serif;}

p{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 14px;
color:#000000;
line-height: 18px;
padding: 3px;
}.bold {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 18px;
	font-weight: bold;
	color: #990000;

}

.navigation {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	background-color: #CCCCCC;
	padding: 8px;
	display: block;
	width: 140px;
}


.navigation:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	background-color: #999999;
	padding: 8px;
	display: block;
	width: 140px;
}





.style1 {font-size:14px; }

.style2 {font-size:10px; }

.style3 {font-size:24px; }

.style4 {font-size:18px; }

.style5 {font-size:16px; }

.style6 {font-size:12px; }

.style7 {font-size:22px; }
		
.style8 {font-size:36px; }

.style9 {font-size:30px; }
.style10 {color: #666666}
.style11 {font-size: small}

.style19 {font-size:26px; }

.style41 {font-size: 9px;}

a:link {
	text-decoration: none;
}
a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	text-decoration: none;
}
.sub .style8 {
	font-family: Arial, Helvetica, sans-serif;
}
a:visited {
	text-decoration: none;
	color: #000000;
}
a:hover {
	text-decoration: underline;
	color: #999999;
}
a:active {
	text-decoration: none;
	color: #000000;
}

#Layer1 {
	position:absolute;
	width:267px;
	height:392px;
	z-index:1;
	left: 367px;
	top: 443px;
	background-color: #FFFFFF;
}
#Layer2 {
	position:absolute;
	width:357px;
	height:400px;
	z-index:1;
	background-color: #FFFFFF;
	left: 723px;
	top: 922px;
}

.document.onmousedown=disable; //IE
message="";
function disable(e)
{
if (e == null)
  { //IE disable
  e = window.event;
  if (e.button==2)
    {
    alert(message);
    return false;
    }
  }
.document.onclick=ffdisable;  //FF
}
.function ffdisable(e)
{
if (e.button==2)
  { //firefox disable
  e.preventDefault();
  e.stopPropagation();
  alert(message);
  return false;
  }
