.row {
  clear:both;
  display:block;
  overflow:hidden;
  *zoom: 1;  
  margin:5px 0px;
  padding:0;
}

.field {
  float:left;
  margin:0px 0px 0px 8px;
  *display: inline;  /* Prevent double margin bug in IE6 */
  padding:0;
  overflow:visible;
}

.field label {
  display:block;
  font-size:12px;
  line-height:16px;
  margin:0;
  padding:0;
}

.field input,
.field select,
.field textarea {
  padding: 2px 4px;
  _padding: 1px 3px;  /* IE6 hack */
  border: 1px solid #bbbbbb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px !important;
  color: #000000;
  background-color: #ffffff;
  vertical-align: middle;
  margin: 0px 0px 3px 0px;
  height:18px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(96,192,240,1);  
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px rgba(96,192,240,.8);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px rgba(96,192,240,.8);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px rgba(96,192,240,.8);  
}

.field input[readonly],
.field select[readonly],
.field textarea[readonly] {
  background-color: #e8e8e8;
}

.field select {
  position: relative;
  padding: 2px 2px 2px 0px;
  height: 24px;
  _height: 22px;  /* IE6 hack */
  _top: 1px;  /* IE6 hack */
}

.field textarea {
  resize:none;
}

.field .checkbox {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 0 !important;
  background-color: transparent;
  outline: none;
  margin: 3px 4px 0px 1px;
  padding: 0;
  vertical-align: bottom;
  position: relative;
  top: -2px;
  *overflow: hidden;
}

.button {
	-moz-box-shadow:inset 0px 1px 0px 0px #cae3fc;
	-webkit-box-shadow:inset 0px 1px 0px 0px #cae3fc;
	box-shadow:inset 0px 1px 0px 0px #cae3fc;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #4197ee) );
	background:-moz-linear-gradient( center top, #79bbff 5%, #4197ee 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#4197ee');
	background-color:#79bbff;
	-webkit-border-top-left-radius:4px;
	-moz-border-radius-topleft:4px;
	border-top-left-radius:4px;
	-webkit-border-top-right-radius:4px;
	-moz-border-radius-topright:4px;
	border-top-right-radius:4px;
	-webkit-border-bottom-right-radius:4px;
	-moz-border-radius-bottomright:4px;
	border-bottom-right-radius:4px;
	-webkit-border-bottom-left-radius:4px;
	-moz-border-radius-bottomleft:4px;
	border-bottom-left-radius:4px;
	text-indent:0;
	border:1px solid #469df5;
	display:inline-block;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	font-weight:normal;
	font-style:normal;
	height:28px;
	xline-height:32px;
	width:80px;
	text-decoration:none;
	text-align:center;
	text-shadow:1px 1px 0px #287ace;
}

.button:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #4197ee), color-stop(1, #79bbff) );
	background:-moz-linear-gradient( center top, #4197ee 5%, #79bbff 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4197ee', endColorstr='#79bbff');
	background-color:#4197ee;
}

.button:active {
	position:relative;
	top:1px;
  left:1px;
}

