html
{
    height:100%;
    width:100%;
}
body
{
   height:100%;
   width:100%;
   FONT-FAMILY: 'Ropa Sans';
   background-color: #FFFFFF;
   color: #666666;
   font-size: 18px;
   margin:0px;
   padding:0px;
   height:100%;
   width:100%;
   overflow-y:hidden;
}
.loader {
   display: inline-block;
   border: 6px solid #CCCCCC; /* Light grey */
   border-top: 6px solid #555555; /* Blue */
   border-radius: 50%;
   width: 36px;
   height: 36px;
   animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.formtext
{
   font-family: inherit;
   font-size: 18px;
   font-weight: normal;
   background-color:#FFFFFF;
   border: 0px;
   border-bottom: 1px solid #CCCCCC;
   width:100%;
   outline: none !important;
   color:#094D96;
   line-height: 30px;
}
.formtext:focus
{
   filter:alpha(opacity=100);
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
   outline:none !important;
}
.formtextsel
{
   padding: 6px;
}
*,*:focus,*:hover{
    outline:none !important;
}
.button
{
   width:100%;
   border: 1px solid #005691;
   color: #FFFFFF;
   font-family: inherit;
   font-size: 18px;
   font-weight: normal;
   padding:10px;
   background-color:#005691;
   cursor:pointer;
}
.encdivheader
{
   width:100%;
   max-width:450px;
   background-color:#FFFFFF;
   border: 1px solid #D9DBDA;
   border-radius:10px;
   color:#333333;


   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}
.nousersel
{
   
}