#headDiv {
  top: 0px;
  width: 100%;
  height: 80px;
  background-image: url(../images/headbg.jpg);
  background-position: center;
  background-repeat: repeat-x;
}

#headTable {
  width: 100%;
  padding:  0px;
}

#headTable td {
  padding: 0px;
  vertical-align: top;
  width: 50%;
}

#mainBody {
  width: 1000px;
  min-height: 580px;
  text-align: right;
}

#otherDiv {
  float: right;
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  background-color: #F9FAFA;
}

#footDiv {
  float: right;
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #FAFAFA;
  border-top-style: solid;
  border-top-width: 1;
  border-top-color: #F37E1F ;
}


/* div container containing the form  */
#searchContainer {
    margin-top:7px;
    margin-right:7px;
    width: 500px;
    float: right;
}

/* Style the search input field. */
#searchField {
    float:right;
    width:300px;
    height:28px;
    line-height:28px;
    text-indent:10px;
    font-family: tahoma;
    font-size:14;
    color:#333;
    background: #FAFAFA;
    border:solid 1px #FC7E18;
    border-left:none;
    direction: ltr;
}

/* Style the "X" text button next to the search input field */
#searchDelete {
    float:right;
    width:16px;
    height:30px;
    line-height:30px;
    margin-left:5px;
    margin-right:-2px;
    padding:0px 5px 0px 5px;
    font-family: tahoma;
    font-size:18px;
    background: #FAFAFA;
    border:solid 1px #FC7E18;
    border-right:none;
}
/* Set default state of "X" and hide it */
#searchDelete #x {
    color:#A1B9ED;
    cursor:pointer;
    display:none;
}
/* Set the hover state of "X" */
#searchDelete #x:hover {
    color:#36c;
}
/* Syle the search button. Settings of line-height, font-size, text-indent used to hide submit value in IE */
#searchSubmit {
    cursor:pointer;
    float:right;
    width:70px;
    height: 31px;
    margin-right: 5px;
    font-size:12;
    font-weight:  bolder;
    color: #FFFDFE;
    background: #8A8A8A;
    border: 1px solid #F37E1F;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}
/* Style the search button hover state */
#searchSubmit:hover {
    color: #F37E1F;
    background: #8A8A8A;
    border: 1px solid #6C6C6C;
}
/* Clear floats */
.fclear {clear:both}