/* RadFormDecorator - common CSS settings */
a.radfdSkinnedFormButton
{
    -moz-user-select: none !important;
	outline: none !important;
	text-decoration: none !important;
	cursor: default !important;
	text-align: center !important;
	background-color: transparent !important;
    position: absolute !important;
    display: inline !important;
}

.radfdInnerSpan
{
    padding: 0 6px !important;
    font: normal 12px Arial, Verdana;
    white-space:nowrap;/*Prevent text breaking in two lines*/
}

.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
{
	border: 0 !important;
}

.radfdSkinnedFormButton span
{
    display: -moz-inline-box;
	display: block;
	border: 0 !important;
}

.radfdSkinnedFormButton .radfdOuterSpan
{
	background-position: right 0;
	background-repeat: no-repeat;	
}

.radfdSkinnedFormButton .radfdInnerSpan
{
	background-repeat: repeat-x;
}

.radfdRealInputButton
{
	filter: alpha(opacity=0);
	-moz-opacity: .0;
	opacity: .0;
}

/* 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;
}

/* handle the improper rendering of skinned buttons with very small widths in different browsres */
/* Gecko, Safari, Opera */
.radfdRealInputButton
{
	min-width: 54px !important;
}

/* Internet Explorer */        
*+html .radfdRealInputButton,
*+html .radfdSkinnedFormButton
{		
	min-width: auto !important;
}

/* =========================== 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;         
}