/* These apply across all breakpoints because they are outside of a media query */
/* Make the labels light gray all caps across the board */
.DataTables-List thead th,
.DataTables-List tbody th .ui-table-cell-label,
.DataTables-List tbody td .ui-table-cell-label {
 text-transform:uppercase;
 font-size:0.8em;
 color:rgba(0,0,0,1);
 font-weight:bold;
}
/* White bg, large blue text for rank and title */
.DataTables-List tbody th {
 font-size: 0.9em;
 background-color: #fff;
 color: #00f;
 text-align: center;
}

/*  Add a bit of extra left padding for the title */
.DataTables-List tbody td.title {
 padding-left: .8em;
}
.DataTables-List tbody td {
 font-size: 0.5em;
}
/*  Custom stacked styles for mobile sizes */
/*  Use a max-width media query so we don't have to undo these styles */
@media (max-width: 40em) {
 /*  Negate the margin between sections */
 .DataTables-List tbody th {
  margin-top: 0;
  text-align: left;
 }
 /*  White bg, large blue text for rank and title */
 .DataTables-List tbody th,
 .DataTables-List tbody td.title {
  display: block;
  font-size: 0.7em;
  line-height: 110%;
  padding: .5em .5em;
  background-color: #cff;
  color: #00f;
  -moz-box-shadow: 0 1px 6px rgba(0,0,0,.1);
  -webkit-box-shadow: 0 1px 6px rgba(0,0,0,.1);
  box-shadow: 0 1px 6px rgba(0,0,0,.1);
 }
 /*  Hide labels for rank and title */
 .DataTables-List tbody th .ui-table-cell-label,
 .DataTables-List tbody td.title .ui-table-cell-label {
  /*display: none;*/
 }
 /*  Position the title next to the rank, pad to the left */
 .DataTables-List tbody td.title {
  margin-top: -2.1em;
  padding-left: 2.2em;
  border-bottom: 1px solid rgba(0,0,0,.15);
 }
 /*  Make the data bold */
 .DataTables-List th,
 .DataTables-List td {
  font-weight: bold;
 }
 /* Make the label elements a percentage width */
 .DataTables-List td .ui-table-cell-label,
 .DataTables-List th .ui-table-cell-label {
  min-width: 20%;
 }
}
/* Media query to show as a standard table at wider widths */
@media ( min-width: 40em ) {
 /* Show the table header rows */
 .DataTables-List td,
 .DataTables-List th,
 .DataTables-List tbody th,
 .DataTables-List tbody td,
 .DataTables-List thead td,
 .DataTables-List thead th {
  display: table-cell;
  margin: 0;
 }
 /* Hide the labels in each cell */
 .DataTables-List td .ui-table-cell-label,
 .DataTables-List th .ui-table-cell-label {
  display: none;
 }
}
/* Hack to make IE9 and WP7.5 treat cells like block level elements */
/* Applied in a max-width media query up to the table layout breakpoint so we don't need to negate this */
@media ( max-width: 40em ) {
 .DataTables-List td,
 .DataTables-List th {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  clear: left;
		font-size: .8em; /*add by lattelu*/
 }
}
/*½Õ¾ãDialogªº¼e«×*/
.ui-dialog-contain {
	width: 92.5%;
	max-width: 800px; //old 500px
	margin: 10% auto 15px auto;
	padding: 0;
	position: relative;
	top: -15px;
}