/*for including css related to date*/
@import "jquery.ui.date.css";

/*for clearing term - clicked over cross button*/

.clearable-input{
  position: absolute;
  top: 0;
  right: 0;
  font-weight: bold;
  font-size: 1.4em;
  padding: 0 0.2em;
  line-height: 1em;
  cursor: pointer;
}
.clearable{
  background: #fff url('res/images/cross.gif') no-repeat right 5px center;
  border: 1px solid #999;
  padding: 3px 18px 3px 4px;     /* Use the same right padding (18) in jQ! */
  border-radius: 3px;
  resize:none;
  
}

.clearable-button{
  background: #fff url('res/images/cross.gif') no-repeat right 5px center;
  border: 1px solid #999;
  padding: 3px 18px 3px 4px;     /* Use the same right padding (18) in jQ! */
  border-radius: 3px;
  resize:none;
  
}

.wrapper {
    border:1px solid #000;
    display:inline-block;
}

input,
p {
    background-color:transparent;
    border:0;
}


.clearable.onX{ cursor: pointer; }              /* (jQ) hover cursor style */
.clearable::-ms-clear {display: none; width:0; height:0;} /* Remove IE default X */


/*test for toggling - expanding and collapsing the table rows*/
table .theader
{
    cursor:pointer;
}
.theader .sign:after{ 
  content:url('res/images/plus.png');
  display:inline-block;      
}
.theader.expand .sign:after{
  content:url('res/images/minus.png');
 }