﻿.txtControl
{
  /*
   * Added by Priti 
   * Date:31 Aug 2013
   * Purpose:To resolve Issue 5971 
   * After applying R to L gtb button text is not displayed properly in browsers
   */
 /*word-break:break-all;*/
 /* Rajashree - Word-break is not required.It may break lines between any two letters */
word-wrap:break-word;
}


.interactionSize
{
}

.circle
{
border-radius:50% 50%;
/* Added By Priti Mulay 2 Jun 2013 to achieve the clicking effect of circle*/
-webkit-transition:all 0.2s linear;
-moz-transition:all 0.2s linear;
-o-transition:all 0.2s linear;
transition:all 0.2s linear;
}

/* Added By Priti Mulay 2 Jun 2013 to achieve the clicking effect of circle*/
.circle:active{
    -webkit-transform:scale(0.95);
    -moz-transform:scale(0.95);
    -ms-transform:scale(0.95);
    -o-transform:scale(0.95);
    transform:scale(0.95);
   
}