fadeIn() CSS proplem

fadeIn() CSS proplem

hey guys im using the fadeIn() function in my script but when using it i've noticed it puts a style on my break, input and label tags   

style:
  1. style="display: inline;"

using fadeIn() :
  1.     $(input_field).appendTo('div#' + selector).hide().fadeIn(1200);
html output:

  1. <label style="display: inline;" for="game_types2">Game Type - Name 2 : </label>
  2. <input style="display: inline;" id="game_types2" name="game_types2" value="" type="text"><label style="display: inline;" for="game_types_abbreviated2">Game Type - Abbreviated 2 : </label>
  3. <input style="display: inline;" id="game_types_abbreviated2" name="game_types_abbreviated2" value="" type="text"><br style="display: inline;">
can anyone tell me how i can stop this happening please?

thank you