
#itslogin-main{ 
    width: 300px;
    position: fixed;
    top: 50%;
    left: 50%;    
    -ms-transform: translate(-50%, -50%); /* IE 9 */
    -webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
    transform: translate(-50%, -50%);    
    
    color: black;
    font-family: 'Roboto', sans-serif;
    font-size: 14px; 
    font-weight: 300;
    text-rendering:optimizeLegibility;
}

#itslogin-content {
    text-align: center;
    height: 160px;          /* spinner img + padding */
    padding: 20px;
    box-sizing: border-box;
};



#ITSlogin {
    display: inline-block;    
    height: 120px;
   /* width: 200px;*/
}




p.itslogin,
P.itslogin { 
    text-align: center;
}

a,
A { 
    text-decoration:none;
    color: #0088ff;
}

img.itslogin,
IMG.itslogin {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


input.itslogin {
    height: 30px;
    width: 250px;

    padding: 5px;
    margin: 5px;
    background: #f7f7f7;    
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: black;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    text-rendering:optimizeLegibility
}


input.itslogin[type="button"] 
{
    width: 100px;
    border: thin transparent solid;
    background: transparent;
    color:#0088ff;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
    font-size:14px;
    text-rendering:optimizeLegibility
}

input[type="button"]:hover 
{
    border: thin #999999 outset;
    filter:alpha(opacity=100);-moz-opacity:1;opacity:1; 
    background: #FFFFFF;
    color: #0088ff;
}

input[type="button"]:focus  
{
    border: thin #000000 solid;
    background: #FFFFFF;
    color: #0088ff;
}

input[type="button"]:focus:hover 
{
    border: thin #000000 solid;
    filter:alpha(opacity=100);-moz-opacity:1;opacity:1; 
    background: #FFFFFF;
    color: #0088ff;
}


/*  dot spinner */
.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #0088ff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}