#jquery-script-menu {
position: fixed;
height: 90px;
width: 100%;
top: 0;
left: 0;
border-top: 5px solid #316594;
background: #fff;
-moz-box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
-webkit-box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
z-index: 999999;
padding: 10px 0;
-webkit-box-sizing:content-box;
-moz-box-sizing:content-box;
box-sizing:content-box;
}

.jquery-script-center {
width: 960px;
margin: 0 auto;
}
.jquery-script-center ul {
width: 212px;
float:left;
line-height:45px;
margin:0;
padding:0;
list-style:none;
}
.jquery-script-center a {
	text-decoration:none;
}
.jquery-script-ads {
width: 728px;
height:90px;
float:right;
}
.jquery-script-clear {
clear:both;
height:0;
}


@charset "UTF-8";
/* CSS Document */
/* jQuery rt Responsive Tables - v1.0.4 - 2016-02-24
* https://github.com/stazna01/jQuery-rt-Responsive-Tables
*
* This plugin is built heavily upon the work by Chris Coyier
* found at http://css-tricks.com/responsive-data-tables/
*
* Copyright (c) 2016 Nathan Stazewski; Licensed MIT */

/* 
Generic Styling, for Desktops/Laptops 
*/
table.rt-responsive-table { 
  width: 100%; 
  border-collapse: collapse; 
}
/* Zebra striping */
/*table.rt-responsive-table tr:nth-of-type(odd) { 
  background: #eee; 
}*/
table.rt-responsive-table th { 
 /* background: #333; 
  color: white;*/ 
  font-weight: bold; 
}
table.rt-responsive-table td, table.rt-responsive-table th { 
  padding: 6px; 
  border: 1px solid #ccc; 
  text-align: left; 
}



/* Force table to not be like tables anymore */
table.rt-responsive-table.rt-vertical-table, table.rt-responsive-table.rt-vertical-table thead, table.rt-responsive-table.rt-vertical-table tbody, table.rt-responsive-table.rt-vertical-table th, table.rt-responsive-table.rt-vertical-table td, table.rt-responsive-table.rt-vertical-table tr { 
	display: block;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* BELOW THREE STATEMENTS NEEDED FOR IE9 AND BELOW */
	float:left;
	clear:left;
	width: 100%;
}

/* Hide table headers (but not display: none;, for accessibility) */
table.rt-responsive-table.rt-vertical-table thead tr { 
	position: absolute;
	top: -9999px;
	left: -9999px;
}

table.rt-responsive-table.rt-vertical-table tr { border: 1px solid #ccc; }

table.rt-responsive-table.rt-vertical-table td { 
	/* Behave  like a "row" */
	border: none;
	border-bottom: 1px solid #eee; 
	position: relative;
	padding-left: 50%; 
}

table.rt-responsive-table.rt-vertical-table td:before { 
	/* Now like a table header */
	position: absolute;
	/* Top/left values mimic padding */
	top: 6px;
	left: 6px;
	width: 45%; 
	padding-right: 10px; 
	white-space: nowrap;
	font-weight: bold;
}
