body {
	margin:0px;
	font: 12px arial;
}

.normal {color:#069;text-decoration:none;}
a.normal:hover {color:#464e59;text-decoration:none;}

.bodyBox {
	margin-top: 0px;
	background: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
}

.powered-by {
    background-color: #464E59;
	color: #fff;
    text-align: center;
    padding-top: 7px;
    padding-bottom: 5px;
	border: solid 10px white;
	border-top: solid 20px white;
}

.logbox {
    background: #E7E7E7 url(../images/input-log.png) no-repeat;
    padding: 10px 10px 10px 25px;
    width: 100%;
    border: 1px solid #CCC;
	/*
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
    -webkit-box-shadow: 0 1px 1px #CCC inset, 0 1px 0 #FFF;
    box-shadow: 0 1px 1px #CCC inset, 0 1px 0 #FFF;
	*/
}

.logbox:focus {
    background-color: #FFF;
    border-color: #069;
    outline: none;
	/*
    -moz-box-shadow: 0 0 0 1px #069 inset;
    -webkit-box-shadow: 0 0 0 1px #069 inset;
    box-shadow: 0 0 0 1px #069 inset;
	*/
}

input.button {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  cursor: pointer;
  margin: 0 auto;
  padding: 0px 10px 1px 10px;
  border: 1px solid #2887c7;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  /*font: normal 37px/70px "Advent Pro", Helvetica, sans-serif;*/
  color: #2887c7;
  text-align: center;
  -o-text-overflow: clip;
  text-overflow: clip;
  letter-spacing: 1px;
  background: #eaf6ff;
  -webkit-transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
  -moz-transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
  -o-transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
  transition: background-color 0.3s cubic-bezier(0, 0, 0, 0), color 0.3s cubic-bezier(0, 0, 0, 0), width 0.3s cubic-bezier(0, 0, 0, 0), border-width 0.3s cubic-bezier(0, 0, 0, 0), border-color 0.3s cubic-bezier(0, 0, 0, 0);
}
input.button:hover {
  color: rgba(255,255,255,1);
  background: #2887c7;
}
input.button:active {
  border: 1px solid #ff0000;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  background: #ff0000;
}
input.button:disabled {
  color: #fff;
  background: #add3ea;
  cursor: not-allowed;
}

.TopBarIcon {
	border: none;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%) opacity(80%);
}
.TopBarIcon:hover {
    -webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
   	filter: grayscale(0%) opacity(100%);
}

.blink_me {
  animation: blinker 1s linear infinite;
  background: red;
  margin: 10px;
  border-radius: 10px;
}

@keyframes blinker {
  50% {opacity: .3;}
}

.page_title{
	float: right;
	position: fixed;
	bottom: 15px;
	right: 20px;
	font-size: 20pt;
	font-weight: bold;
	text-transform: uppercase;
	color: white;
	letter-spacing: .15em;
	text-shadow: 2px 2px 10px #000;
	font-family: tahoma;
}