﻿.right {
    float:right;
}
.hide {
    display:none
}

.displayTextBlock {
	display:block;
	margin-bottom: 25px;
}

.displayBlock 
{
    display:block;
}

.fieldSet 
{
	padding-bottom: 5px;
}

.fieldSet div
{
	clear: both;
	display:block;
}

.fieldLabel 
{
	float: left;
	width: 170px;
	text-align: left;
	font-weight: bold;
}

.fieldValue 
{
	max-width: 700px;
}

.displayStack 
{
	display:block;
	margin-bottom: 5px;
}

.buttonGroup 
{
	display:block;
	width: 100%;
	height: 30px;
	margin-top: 15px !important;
	margin-bottom: 5px !important;
}

.buttonGroup input 
{
	float: left;
}

.validationSummary 
{
	color: red;
}

.fieldRequired
{
	color: red;
	float: left !important;
	width: 5px !important;
	margin-right: 5px !important;
}

#spinner {
	position: absolute;
	top: 30%;
	left: 50%;
	margin: -100px 0 0 -100px;
	height: 150px;
	width: 150px;
	text-indent: 250px;
	white-space: nowrap;
	overflow: hidden;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-image: url(../images/loader.png);
	background-color: #0083C9;
	-webkit-animation-name: spinnerRotate;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
}

@-webkit-keyframes spinnerRotate {
	from {
		-webkit-transform:rotate(0deg);
	}
	to {
		-webkit-transform:rotate(360deg);
	}
}