@import url(Normalize.css);

/***** General styling *****/
body 
{
}

body, td, input, textarea
{
	font: 11px Arial, Verdana, Helvetica, sans-serif;
}
form
{
	height: 100%;
}
h1{
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 18px;
}
h2{
	margin-top: 0;	
	font-size: 14px;
}


A:link, 
A:visited, 
A:active
{
	color: #666;
	text-decoration: none;
}

A:hover
{
	color: #666;
	text-decoration: underline;
}


.clear
{
	clear: both;
}

.clear_left
{
	clear: left;
}

/********** Padding Styles **********/
.padded_container
{
	padding: 6px 0;
	position:relative;
}

.padding_right
{
	padding-right: 6px;
}

.padding_left
{
	padding-left: 6px;
}

.padding_sides
{
	padding-left: 6px;
	padding-right: 6px;
}

.padding_bottom
{
	padding-bottom: 6px;
}

.padding_top
{
	padding-top: 6px;
}
.padding_full
{
	padding: 6px;
}

/* Any content that needs to be floated to the left */
.float_left
{
	float: left;
	display: inline;
	position: relative;
}

/********** Message Styles **********/
.message_display
{	
	/*width: 99%;*/
	background: #F6E8CF url(../images/message_graphic.gif) no-repeat left;
	color: #505962;
	border: solid 1px #727F8C;
	font-weight: bold;
	padding: 5px 0 5px 0;
	margin:6px;
}

.message_label
{
	margin: 0 0 0 40px;
	width: 87%;
	padding: 0 0 0 7px;
}

.message_label_success
{
	color:blue;
	margin: 0 0 0 40px;
	width: 87%;
	padding: 0 0 0 7px;
}

.message_label_failure
{
	color:red;
}

.message_display_close
{
	background: url(../images/close_button.gif) no-repeat left;
	width: 50px;
	height: 15px;
	position: absolute;
	right: 10px;
	cursor: hand; 
	cursor: pointer;
}

.validationError 
{ 
	padding: 0px 0 10px 0;
	font-weight:bold; 
	color:red; 
	list-style-position:inside;
}

.loading_panel
{
	text-align:center;
}

.waitIndicator
{
	position: absolute;
	left:-105px;
	top:-24px;
	width:211px;
	height:48px;
	z-index:1000;
}

.minWidth_IE6
{
	width: 1000px; /* defaults to this value if javascript is disabled */
	width: expression( document.body.clientWidth < 951 ? "950px" : "auto" );
}

.minWidth
{
	min-width:1000px;
}



