/*
 * jQuery Dynatable plugin 0.3.1
 *
 * Copyright (c) 2014 Steve Schwartz (JangoSteve)
 *
 * Dual licensed under the AGPL and Proprietary licenses:
 *   http://www.dynatable.com/license/
 *
 * Date: Tue Jan 02 2014
 */
th a {
  color: #666;
}
th a:hover {
  color: #ff8800;
  text-decoration: underline;
}

.dynatable-search {
  float: right;
  margin-bottom: 10px;
}

.dynatable-pagination-links {
  float: right;
}

.dynatable-record-count {
  display: block;
  padding: 5px 0;
}

.dynatable-pagination-links span,
.dynatable-pagination-links li {
  display: inline-block;
}

.dynatable-page-link,
.dynatable-page-break {
  display: block;
  padding: 5px 7px;
}

.dynatable-page-link {
  cursor: pointer;
}

.dynatable-active-page,
.dynatable-disabled-page {
  cursor: text;
}
.dynatable-active-page:hover,
.dynatable-disabled-page:hover {
  text-decoration: none;
}

.dynatable-active-page {
  background: #e4e4b1;
  border-radius: 5px;
  color: #fff;
}
.dynatable-active-page:hover {
  color: #fff;
}
.dynatable-disabled-page,
.dynatable-disabled-page:hover {
  background: none;
  color: #999;
}

/*** ESTILOS TABLA ***/
#tblProductos, #tblConfiguraciones {
    border-collapse: collapse;
    margin-bottom: 5px;
    margin-top: 5px;
}

#tblProductos td, #tblProductos th, #tblConfiguraciones td, #tblConfiguraciones th {
    border: 1px solid #bfbfbf;
    padding: 8px;
}

#tblProductos tr:nth-child(even){background-color: #f2f2f2;}
#tblConfiguraciones tr:nth-child(even){background-color: #f2f2f2;}


#tblProductos th, #tblConfiguraciones th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #e4e4b1;
    font-size: 1em;
}

#tblProductos td {
	font-size: 0.9em;
    text-align: left !important;
}

#tblConfiguraciones td {
	font-size: 0.9em;
    text-align: center !important;
}

#tblProductos tbody tr td:last-child {
	text-align: center !important;
}

#dynatable-query-search-tblProductos, #dynatable-query-search-tblConfiguraciones {
	border-radius: 4px;
    font-size: 0.9em;
    color: #666;
    height: 22px;
    border: 1px solid #bfbfa1;
}

.dynatable-per-page-label {
	float: left;
    margin-top: 7px;
    margin-right: 5px;
}

#dynatable-per-page-tblProductos-button, #dynatable-per-page-tblConfiguraciones-button {
	font-size: 0.9em !important;
}

#dynatable-pagination-links-tblConfiguraciones {
	margin-top: 0px;
	margin-bottom: 0px;}