.ldte-filter-records {width:50%; float: left}
.ldte-order-by {position: absolute; top: 100px;right:100px;}
.ldte-total {text-align: left !important;padding-left: 25px !important;}
.ldte-total small {margin-left:20%;}
.ltde-wrapper { }
.ldte-active-search-button {display: block !important}
.ldte-view-settings {display: none}
.ldte-table th {
   
    min-width: 100px;}
    
					.ldte-table-controls {display: none;position: fixed; bottom: 100px;right:200px; font-family:Verdana;}
						.ldte-save-button {padding: 5px 20px;
						background: #ff99cc;
						color: #333;
						border-radius:4px;
						border: 1px solid #999;
						text-decoration:none;
						font-size:48px !important;
						}
						 .ldte-input { display: inline}
       
       .ldte-selection-tool-form {
              padding: 5px 20px;
              background-color: rgb(255, 255, 255);
              border-radius: 5px 5px 5px 5px;
              border: 1px solid rgb(204, 204, 204);
              box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
              margin: 0 0 20px;
              position: relative;
       }
       
       .ldte-search-condition  {display:table;clear:both}
       .ldte-search-button {width: 100%; text-align: center;margin-top:20px;display: none}
       .ldte-before-form-closing {clear: both}
       .ldte-clear-both {clear: both}
       
       
       
       .ldte-prev-page {float: left}
       
       .ldte-next-page {float: right}
       
       .ldte-prev-page,  .ldte-next-page {   padding: 5px 20px;
              background-color: rgb(255, 255, 255);
              border-radius: 5px 5px 5px 5px;
              border: 1px solid rgb(204, 204, 204);
              box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
              margin: 0 0 20px;} 
       
					/*
					Pretty Table Styling
					CSS Tricks also has a nice writeup: http://css-tricks.com/feature-table-design/
					*/
					.ldte-table {
						overflow:hidden;
						border:1px solid #d3d3d3;
						background:#fefefe;
						width:100%;
						margin:5% auto 0;
						-moz-border-radius:5px; /* FF1+ */
						-webkit-border-radius:5px; /* Saf3-4 */
						border-radius:5px;
						-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
						-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
					}
					.ldte-table th, .ldte-table td {padding:3px; text-align:center; }
					.ldte-table th {padding-top:22px; text-shadow: 1px 1px 1px #fff; background:#e8eaeb;}
					.ldte-table td {border-top:1px solid #e0e0e0; border-right:1px solid #e0e0e0;}
					.ldte-table tr.odd-row td {background:#f6f6f6;}
					.ldte-table td.first, th.first {text-align:left}
					.ldte-table td.last {border-right:none;}
					/*
					Background gradients are completely unnecessary but a neat effect.
					*/
					.ldte-table td {
						background: -moz-linear-gradient(100% 25% 90deg, #fefefe, #f9f9f9);
						background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f9f9f9), to(#fefefe));
					}
					.ldte-table tr.odd-row td {
						background: -moz-linear-gradient(100% 25% 90deg, #f6f6f6, #f1f1f1);
						background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f1f1f1), to(#f6f6f6));
					}
					.ldte-table th {
						background: -moz-linear-gradient(100% 20% 90deg, #e8eaeb, #ededed);
						background: -webkit-gradient(linear, 0% 0%, 0% 20%, from(#ededed), to(#e8eaeb));
					}
					/*
					I know this is annoying, but we need additional styling so webkit will recognize rounded corners on background elements.  Nice write up of this issue: http://www.onenaught.com/posts/266/css-inner-elements-breaking-border-radius
					And, since we've applied the background colors to td/th element because of IE, Gecko browsers also need it.
					*/
					.ldte-table tr:first-child th.first {
						-moz-border-radius-topleft:5px;
						-webkit-border-top-left-radius:5px; /* Saf3-4 */
					}
					.ldte-table tr:first-child th.last {
						-moz-border-radius-topright:5px;
						-webkit-border-top-right-radius:5px; /* Saf3-4 */
					}
					.ldte-table  tr:last-child td.first {
						-moz-border-radius-bottomleft:5px;
						-webkit-border-bottom-left-radius:5px; /* Saf3-4 */
					}
					.ldte-table  tr:last-child td.last {
						-moz-border-radius-bottomright:5px;
						-webkit-border-bottom-right-radius:5px; /* Saf3-4 */
					}
					
