body {
	background: rgba(255,255,255,1);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(186,217,244,1) 25%, rgba(158,202,240,1) 35%, rgba(37,134,199,1) 98%, rgba(37,134,199,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(25%, rgba(186,217,244,1)), color-stop(35%, rgba(158,202,240,1)), color-stop(98%, rgba(37,134,199,1)), color-stop(100%, rgba(37,134,199,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(186,217,244,1) 25%, rgba(158,202,240,1) 35%, rgba(37,134,199,1) 98%, rgba(37,134,199,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(186,217,244,1) 25%, rgba(158,202,240,1) 35%, rgba(37,134,199,1) 98%, rgba(37,134,199,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(186,217,244,1) 25%, rgba(158,202,240,1) 35%, rgba(37,134,199,1) 98%, rgba(37,134,199,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(186,217,244,1) 25%, rgba(158,202,240,1) 35%, rgba(37,134,199,1) 98%, rgba(37,134,199,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#2586c7', GradientType=0 );
}
.loginTitleDiv{
	text-shadow: 2px 2px 2px rgba(145, 150, 150, 1);
	height:15%;
	overflow: hidden;
	margin-top: 0;
	position: absolute;
	text-align: right;
}
.titleLogo{
	margin:4px;
	float: left;
	width: 250px;
	height:80px;
}
.loginTitleDiv .dijitContentPane{
	overflow: hidden;
}
.loginHeaderTitle {
	text-shadow: 2px 2px 2px rgba(145, 150, 150, 1);
	font-size: 25px;
	padding-bottom: 1em;
}
.loginFailure{
	color: #FF0000;
    font-weight: bold;
    margin-bottom: 10px;
}
.centerDiv .dijitContentPane{
	overflow: hidden;
}
.showExpandoButton {
    border-radius: 5px;
	height: 24px;
    width: 24px;
    z-index: 30;
	bottom: 0; 
	position: absolute;
}
.showExpandoButton .dijitButtonNode {
    border: 0 none;
    border-radius: 5px;
}
.showExpandoIconUp {
    background-image: url("../images/arrow_up.png");
    height: 24px;
    width: 24px;
}
.showExpandoIconDown {
    background-image: url("../images/arrow_down.png");
    height: 24px;
    width: 24px;
}
.infoExpandoPane .dojoxExpandoTitle {
    height: 0;
}
.infoExpandoPane {
	background: none repeat scroll 0 0 #ADD8E6;
}
a.wbauVersionInfo{
	font-size: 11px;
    font-family: Helvetica, Arial, sans-serif;
	font-style:italic;
	text-align: center;
	color: grey;
}
h2 {
	text-align: center;
}

.xtooltip {
    position: relative;
}

.xtooltip .xtooltiptext {
    visibility: hidden;
    position: absolute;
    width: 180px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s;
}

.xtooltip:hover .xtooltiptext {
    visibility: visible;
    opacity: 1;
}

.xtooltip-right {
  top: -5px;
  left: 101%;  
}

.xtooltip-right::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #555 transparent transparent;
}