/*for DIALOG DIV*/

html {
/*height: auto;*/
/*overflow: hidden;*/
}

body {
/*height: auto;*/
/*overflow: scroll;*/
}

/* next two div ID's for DIALOG DIV*/
#dialogcanvas {
position: absolute;
/* 
left: 50%; 
top: 50%; 
width: 90%; 
height: 150%;
margin: -50% 0 0 -45%;
*/
left: 0px;
top: 0px;
width: 96%;
height: 100%; 
background-color: #644e37; 
/*filter:alpha(opacity=60);*/   /*IE - see conditional css file for ie*/
opacity:0.6; /*STANDARD*/
z-index: 5;
display: none;
}

#dialogcontent {
position: absolute; 
left: 50%; 
top: 50%; 
width: 60%; 
height: 60%;
margin: -18% 0 0 -33%;
border: 2px solid black;
padding: 10px; 
background-color: #ffffff;
overflow: auto;
z-index: 10;
display: none;
}
