/* RadFormDecorator - common CSS settings */

.radfdSkinnedFormButton .radfdInnerSpan
{
    font: normal 12px Arial, Verdana !important;
    white-space: nowrap;
    background-repeat: repeat-x;
	width: auto !important;
	padding: 0 !important;
	display: block !important;
	line-height: 21px !important;
}

.radfdCheckboxChecked,
.radfdCheckboxUnchecked,
.radfdRadioUnchecked,
.radfdRadioChecked
{
    line-height: 20px !important;
	padding: 0;
	padding-left: 20px;
	zoom:1;/*Fixes IE issue with font-size set in percents */		
	display: inline-block !important;	
}

.radfdSkinnedFormButton .radfdOuterSpan
{
	background-position: right 0;
	background-repeat: no-repeat;
	display: block;	
}

.radfdRealInputButton
{
	vertical-align: middle;
	display: none;
	min-width: 54px !important;
}

/* Internet Explorer */        
*+html .radfdRealInputButton,
*+html .radfdSkinnedFormButton
{		
	min-width: auto !important;
}

/* disabled inputs */
.radfdInputDisabled
{
    filter: alpha(opacity=50);
    -moz-opacity: .5;
    opacity: .5;
}

.input 
{
	position: absolute;/* Causes IE to jump when a textbox in a scrollable parent is clicked -however, setting position:relative has other side effects. This is why it will be left here as *absolute* and set to relative where needed */	
	left: -999999px;
}

/* FormDecorator + TreeView fix */
.RadTreeView .radfdCheckboxUnchecked,
.RadTreeView .radfdCheckboxChecked
{
    display: -moz-inline-box;
    display: inline-block;
    width: 0;
    vertical-align: middle;
    line-height: 21px;
    height: 21px;
}

/* FormDecorator + TreeView fix */
.RadGrid .radfdCheckboxUnchecked,
.RadGrid .radfdCheckboxChecked
{
    display: -moz-inline-block;
    display: inline-block;
}

.radr_noBorder
{
	border-width: 0;
}

/* min-width issue fix ("Log In") */
 .radfdSkinnedFormButton
{
	/*_width: 54px;
	min-width: 54px;*/
}

a.radfdSkinnedFormButton:focus,
a.radfdSkinnedFormButton:active
{
	border: dotted 1px #131627;
}

/* =========================== TEXTAREA, INPUT, FIELDSET ============================= */
.radfd_roundedInnerSpan
{  
  width:1px;
  font-size:1px;      
  background-repeat:no-repeat;
}

.radfd_roundedOuterSpan
{    
  width:1px;
  font-size:0px;  
}


table.radfd_roundedWrapper, table.radfd_roundedWrapper_fieldset
{
    display:-moz-inline-box;/*FF2*/
    display:inline-block;/*FF3,Opera,Safari*/
    _display:inline;/*IE6*/
                                   
    vertical-align:middle;           
    border-width:0px !important;
    padding:0px !important;                 
}

/*IE7*/
*+html table.radfd_roundedWrapper, *+html table.radfd_roundedWrapper_fieldset
{
   display:inline;
}

table.radfd_roundedWrapper td, table.radfd_roundedWrapper_fieldset td
{
    vertical-align:middle;
}

/* Specific styling related to the elements that need to support rounded corners */
table.radfd_roundedWrapper textarea, textarea.radfd_textarea
{     
    overflow :hidden;/*Prevent nasty flicker */     
    /* Safari - Do not allow textarea resize. Also - textarea in a table causes very a 4px bottom margin! Bug in Safari*/    
    /* This hack thing is parsed in IE as WELL!*/
    [hack:safari;    
        resize: none;        
    ]        
}


fieldset.radfd_fieldset
{
    -webkit-border-radius:4px;
    -moz-border-radius:4px;        
}

input.radfd_input, textarea.radfd_textarea
{   
   -webkit-border-radius:4px;
   -moz-border-radius:4px;         
}

.radfd_rtl
{
	direction: rtl;
}

.radfd_rtl .input 
{
	position: absolute;/* Causes IE to jump when a textbox in a scrollable parent is clicked -however, setting position:relative has other side effects. This is why it will be left here as *absolute* and set to relative where needed */	
	left: 0;
	right: 0;
	top:-9999px;
}


/* checkboxes */
.radfd_rtl .radfdCheckboxUnchecked,
.radfd_rtl .radfdInputDisabled.radfdCheckboxUnchecked:hover
{
	padding: 0 20px 0 0;
	background-position: right 0 !important;
}

.radfd_rtl .radfdCheckboxUnchecked:hover
{
	background-position: right -200px !important;
}

.radfd_rtl .radfdCheckboxChecked,
.radfd_rtl .radfdInputDisabled.radfdCheckboxChecked:hover 
{
	padding: 0 20px 0 0;
	background-position: right -420px !important;
}

.radfd_rtl .radfdCheckboxChecked:hover
{
	background-position: right -640px !important;
}
/* end of checkboxes */

/* radiobuttons */
.radfd_rtl .radfdRadioUnchecked,
.radfd_rtl .radfdInputDisabled.radfdRadioUnchecked:hover 
{
	padding: 0 20px 0 0;
	background-position: right 0 !important;
}

.radfd_rtl .radfdRadioUnchecked:hover
{
	background-position: right -220px !important;
}

.radfd_rtl .radfdRadioChecked,
.radfd_rtl .radfdInputDisabled.radfdRadioChecked:hover 
{
	padding: 0 20px 0 0;
	background-position: right -440px !important;
}

.radfd_rtl .radfdRadioChecked:hover
{
	background-position: right -640px !important;
}
/* end of radiobuttons */
/* right to left support end */