Jquery mobile textarea full width problem

Jquery mobile textarea full width problem

Hi. I'm making some app with jquery mobile and everything with the design goes well for now, but at the bottom i have to put textarea, but the textarea dont fullfil all 100% from the screen it only a half screen. I'm trying with css or jquery to change the width but it's stuck. Please anyone help. 
Also to be clear, the design is: one header on top, two column layout for buttons and input fields on left and right. after that full width two buttons and on the bottom its need to be full width text area.
Here example of my code how is organize the structure of the code:
  1. <div data-role="page">

  2.     <div data-role="header" data-theme="none"> 
  3.         <h1 class="headerTitle">Calculate site heading</h1> 
  4.     </div><!-- /header -->

  5.     <div data-role="content"> 
  6.     <div class="ui-grid-b">
  7.         <div class="ui-block-a">
  8.             <label for="startPoint" class="startPoint">Start Point</label> 
  9.           <input class="latitude" name="latitude" type="text" value="Lat:" />
  10.           <input class="longitude" name="longitude" type="text" value="Long:" />
  11.                      <input type="button" value="Current Location" data-theme="b" />
  12.             </div>
  13.       <div class="ui-block-b" style="float:right;">
  14.             <label for="startPoint" class="startPoint">End Point</label> 
  15.           <input class="latitude" name="latitude" type="text" value="Lat:" />
  16.           <input class="longitude" name="longitude" type="text" value="Long:" />
  17.                     <input class="currentLocation" type="button" value="Current Location" data-theme="b" />
  18.             </div>
  19.             <div class="ui-block-c"></div>
  20.     </div>
  21.         <input class="calculate" type="button" value="Calculate" data-theme="b" />
  22.         <input class="reverse" type="button" value="Reverse" data-theme="b" />
  23.         <div style="width:100%;">
  24.           <textarea> Nice studio for renovation </textarea> 
  25.         </div>
  26.     </div><!-- /content -->            
  27. </div><!-- /page -->