/* CSS Document *//*

/* the main layout */

#contentForm {
  width: 100%;
  margin: 15px auto;/*this line will center the page*/
  padding: 5px 0;
}

/* and now the form formatting itself */
label {
  display:block;
  float: left;
  width: 150px;
  line-height: 22px;
  margin-bottom: 10px;
  margin: 5px 0;
  font-weight:bold;
  font-size: 0.7em;
  text-indent:.5em;
  font-family: "Trebuchet MS";
  color:#004181;
}


input, textarea, select {
  margin: 0;
  padding: 3px;
  font-size: 0.85em;
  background: #F5F5F5;
  border: 1px solid #ccc;
  margin: 5px 0;
}   

input:focus, textarea:focus, select:focus {
  border: 1px solid #09F;
  background-color: #FFF;
}

.bg_form {
	padding:0px 5px;
	margin:0;
	border:1px dotted #ccc;
	
}

.baton {
	background:url(img/baton.png) center top no-repeat;
	width:62px;
	height:26px;
	margin:0 auto;
	padding:0px;
	border:none;
	outline:none;
	font-size:10px;
	font-weight:bold;
	font-family:"Arial";
	text-align:center;
	color:#fff;
	cursor:pointer;
}

.baton:hover {
	background:url(img/baton.png) center top no-repeat;
	width:62px;
	height:26px;
	margin:0 auto;
	padding:0px;
	border:none;
	outline:none;
	font-size:10px;
	font-weight:bold;
	font-family:"Arial";
	text-align:center;
	cursor:pointer;
	color:#0CF;
}


