/**************************************************************************
	Style Sheet for Master Template
**************************************************************************/	
/************** Elements ********************/

html,body {
    padding:0px;
    margin:0px;
    height:100%;
    width:100%;	
    overflow: auto;
    background:#005698;
}
body {
    font-size: 11px;
    font-family: Arial,Verdana,Helvetica;
    color: white;
    background: #005698;
    text-align: center;
}

a{
    color: white;
    text-decoration: underline;
}
a:hover{
    color: ghostwhite;
}
a:visited{
    color: aliceblue;
}

:focus{
    outline: 0;
}

.invisible{
    display:none;    
}

/*********** Master Layout *****************/
#flashObject, #FlashContent, #flashContent { 
    display: none;
    overflow: hidden;
    position:absolute; 
    top:0px; 
    left:0px; 
    width:100%; 
    height:100%; 
    margin:0px;
    min-width: 900px;
    width: expression(document.body.clientWidth < 900? "900px" :  "auto");
    min-height: 650px;
    height: expression(document.body.clientHeight < 650? "650px" :  "100%");
    background:#005698;
}
#loadingDiv{
    top:24px;
    position: relative;
    text-align: center;
    font-weight: bold;
    padding: 16px;
    overflow: hidden;
}
#altContent{
    position: relative;
    border:2px solid #ddd;
    padding:20px;
    text-align: center;
    display: none;
    overflow: hidden;
}
