@import url('anime.css');
/* TABLE */
.pm{
    border-collapse: collapse;
    margin: 0 0 10px 0;
    width: 100%;
  }
  /* .pm tr td:first-child{
    text-align:right;
  } */
  .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
  }

  .pm tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  .pm th{
    background: #b2d1f0;
    padding: 1px 4px;
    border: 1px solid #90b0d1;
    white-space: nowrap;
    text-align: center;
    height: 40px;
  }
  .pm td{
    padding: 1px 4px;
    border: 1px solid #b2d1f0;
    white-space: nowrap;
  }
  
    .frm tr:first-child td{
        text-align:right;
    }
  
  
  .pm tr:hover{
    background-color: #dbe1ec;
  }
  
  
  
  .pm .button2{
    display:block;
    width:100%;
    height:100%;
  }
    .info{
        font-size:small;
        color:#333;
    }
    .smt_cont{
        width:500px;
        margin:auto auto;
        padding-top:50px;
    }
    .input2{
            width:auto;
    	padding:10px;
    	margin:2px;
    	border:0px solid #9C6;
    	background: #9C6;
    	color:#fff;
    	font-weight:bold;
            cursor: pointer;
    }
    
    .input2:focus{
        background:#099;
        color:#fff
    }
    
    .input2.err{
        background: tomato;
    }
    .button2{
            width:auto;
    	padding:10px;
    	margin:3px;
    	border:0px solid #9C6;
    	background:#096;
    	color:#fff;
    	font-weight:bold;
            cursor: pointer;
    }
    
    .button2:hover{
        background:#099;
    }
  

  /*EFFECTS*/
@-o-keyframes fadeIt {
    0%   { background-color: #FFFFFF; }
    50%  { background-color: rgb(238, 234, 22); }
    100% { background-color: rgb(238, 144, 22); }
  }
  @keyframes fadeIt {
    0%   { background-color: #FFFFFF; }
    50%  { background-color: rgb(238, 234, 22); }
    100% { background-color: rgb(238, 144, 22); }
  }
  
  .pm tr.new{
    background-image:none !important; 
    -o-animation: fadeIt 10s ease-in-out; 
       animation: fadeIt 10s ease-in-out;
       background-color: rgb(238, 234, 22);
  }