Basically in my Design & Browser the CSS of my JQuery Slider makes my ASP.NET buttons appear that way even though the actual CSS of the buttons appears behind and in the section it should be as shown below in the image. 
am I referencing something wrong for the ASP side as the page functions how it should it's just the styling of it i might of got wrong or maybe have something I shouldn't have , so my question is Can you think of anything wrong with this which could cause the problems I have at hand?
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="MachineSweepLite.aspx.vb" Inherits="Production_MachineSweepLite" %>
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title></title>
<link href="jquery.mobile-1.4.2.css" rel="stylesheet" />
<link id="stylesheet" href="ControlStyle.css" rel="stylesheet" type="text/css" runat="server" />
<script type='text/javascript' src='http://code.jquery.com/jquery-1.8.3.js'> </script>
<script type='text/javascript' src='jquery.mobile-1.4.2.js' ></script>
<meta name="viewport" content="width=device-width; initial-scale = 1.0; maximum-scale=1.0; user-scalable=no" />
</head>
<body background="../icons/Building-Confidence-logo.jpg" onload="init();">
<form id="form1" runat="server" class="formbackground">
<h1 runat="server" id="pageTitle"> </h1>
<asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1"
AutoGenerateColumns="False" BackColor="White" Width="100%"
style="font-size: xx-large">
<AlternatingRowStyle BackColor="#CCFFFF" />
<Columns>
<asp:BoundField DataField="Questions" HeaderText="Questions" SortExpression="Questions" />
<asp:TemplateField ItemStyle-Width="15%">
<ItemTemplate>
<div style="height: 50px; float: left; width: 27%;">
<%-- <label for="quesTion"></label>--%>
<select name="quesTion" id="quesTion" data-role="slider" runat="server">
<option value="Yes" selected="selected">Yes</option>
<option value="No">No</option>
</select>
</div>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:saleConnectionString %>" SelectCommand="Select AreaID, QuestionID, Questions From (Select AreaID, Question1,
Question2,
Question3,
Question4,
Question5,
Question6,
Question7
From MachineSweepQuestions) x
UNPIVOT
(
Questions
For QuestionID in (Question1, Question2, Question3, Question4, Question5, Question6,Question7)
) unpiv Where AreaID = @AreaID">
<SelectParameters>
<asp:QueryStringParameter Name="AreaID" QueryStringField="AreaID" />
</SelectParameters>
</asp:SqlDataSource>
<div style="width: 300px">
<asp:Button ID="backBtn" runat="server" Text="Back" cssclass="classname"
Height="50px" Width="90px" />
<asp:Button ID="checkBtn" runat="server" Text="Complete Check" cssclass="classname"
Height="50px" Width="149px" />
</div>
</form>
</body>
</html>