@charset "utf-8";
/* CSS Document */

body, td {
	font-family:Tahoma, Verdana, Arial, sans-serif;
	font-size:12px;
	color:#636363;
}

h1 {
	font-size:14px;
	background-image:url(images/headingleft.gif);
	background-position:center left;
	background-repeat: no-repeat;
	padding-left:20px;
	padding-top:12px;
	height:35px;
}

.red {
	color: #993333;
}

a {
	color: #6699cc;
}

hr {
color: #efefef;
background-color: #efefef;
height: 3px;
}

.small {
	font-size:10px;
}

.button {
	height:20px;
	font-size:11px;
	color:white;
	background-color:#993333;
}

.errormsg {
	background-color:red;
	color:white;
	font-weight:bold;
	padding:5px;
}

.newsmsg {
	background-color:#6699cc;
	color:white;
	font-weight:bold;
	padding:5px;
}

/* Form controls styling */
.form-control {
	display: block;
width: 95% !important;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	box-sizing: border-box;
}

.form-control:focus {
	border-color: #66afe9;
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

.form-control:disabled {
	background-color: #eeeeee;
	cursor: not-allowed;
}