/**
 *
 * Generic CSS for CakePHP
 *
 */
/** General Style Info **/
/** Tables **/
table {
	background: #fff;
	clear: both;
	color: #3f3f3f;
	width: 100%;
}

th {
	border: 0;
	border-bottom: 2px solid #3f3f3f;
	text-align: left;
	padding: 4px;
}

th a {
	display: block;
	padding: 2px 4px;
	text-decoration: none;
}

th a.asc:after {
	content: ' ⇣';
}

th a.desc:after {
	content: ' ⇡';
}

table tr td {
	background: #fff;
	padding: 6px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #ddd;
}

table tr:nth-child (2n) td {
	background: #f5f5f5;
}

table .altrow td {
	background: #f5f5f5;
}

td.actions {
	text-align: center;
	white-space: nowrap;
}

table td.actions a {
	margin: 0px 6px;
	padding: 2px 5px;
}

.cake-sql-log table {
	background: #f4f4f4;
}

.cake-sql-log td {
	padding: 4px 8px;
	text-align: left;
	font-family: Monaco, Consolas, "Courier New", monospaced;
}

.cake-sql-log caption {
	color: #fff;
}

/** Paging **/
div.paging {
	background: #fff;
	color: #3f3f3f;
	margin-top: 1em;
	text-align: center;
	clear: both;
}

div.paging span.disabled {
	color: #ddd;
	display: inline;
}

div.paging span.current {
	color: #3699fd;
}

/** Scaffold View **/
.view dl a:hover, .view dt a:hover, .view dd a:hover, .view td a:hover {
	color: #3f3f3f;
	text-decoration: underline;
}

dl {
	line-height: 2em;
	margin: 0em 0em;
	width: 100%;
	text-align: left;
}

dl .altrow {
	background: #f4f4f4;
}

dt {
	font-weight: bold;
	padding-left: 4px;
	vertical-align: top;
}

dd {
	margin-left: 20em;
	margin-top: -2em;
	vertical-align: top;
}

/** Forms **/
.form {
	text-align: left;
}

fieldset {
	border: 1px solid #ccc;
	margin-bottom: 1em;
	padding: 16px 20px;
}

fieldset legend {
	background: #fff;
	color: #3699fd;
	font-size: 1.4em;
}

fieldset fieldset {
	margin-top: 0px;
	margin-bottom: 20px;
	padding: 16px 10px;
}

fieldset fieldset legend {
	font-size: 1.2em;
}

.form fieldset {
	margin-left: 190px;
	width: 370px;
}

.form fieldset input[type=checkbox] {
	margin-left: 0;
}

form div {
	vertical-align: text-top;
}

form .required {
	font-weight: bold;
}

form .required label:after {
	color: #9b0000;
	content: ' *';
	display: inline;
}

label {
	margin-right: 5px;
	display: inline-block;
	width: 180px;
	text-align: right;
}

fieldset label {
	width: auto;
	text-align: left;
}

input,textarea,select {
	margin: 5px;
	width: 173px;
	height: 24px;
	padding: 4px 6px;
	background: #ededed;
	border: none;
	line-height: 16px;
	font: normal 12px "Arial";
	color: #555;
}

textarea {
	height: 100px;
}

.searchHeader input, .searchHeader select {
	width: 60px;
}

.form input,.form textarea {
	width: 400px;
}

.form select {
	width: 412px;
}

.form select.select-multiple {
	height: 200px;
}

.form .inputshort {
	width: 70px;
}

.form .fecha {
	width: 124px;
}

.form .fechahora {
	width: 90px;
}

.form #RegistroCheckinHour, .form #RegistroCheckoutHour, .form #ControleFechaenvioHour {
	margin-left: 190px;
}

option {
	padding: 0 3px;
}

input[type=checkbox] {
	margin-right: 10px;
	margin-left: 190px;
	width: auto;
}

div.checkbox label {
	display: inline;
}

label[for=UsuarioGenero1], label[for=UsuarioGenero2], label[for=FestivoQueanyo1],  label[for=FestivoQueanyo2] {
	text-align: left;
}

input[type=radio] {
	width: auto;
	margin-right: 10px;
}

form .submit input[type=submit] {
	background: #787878 url(../img/bg-button-gallery.png) repeat-x left top;
	font: 13px Arial;
	color: white;
	text-transform: uppercase;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	width: auto;
	height: auto;
}

form .submit input[type=submit]:hover {
	background: #787878;
}

.form .submit input[type=submit] {
	margin-left: 190px;
	width: 412px;
}

.form .labelcheck {
	display: inline;
}

.form .labelcheck p {
	margin: 5px 0 0 190px;
	width: 400px;
	text-align: justify;
}

/** Notices and Errors **/
div.message {
	clear: both;
	color: #fff;
	font-size: 140%;
	font-weight: bold;
	margin: 0 0 1em 0;
	background: #c73e14;
	padding: 5px;
}

.warning_box, .flash_warning {
	width: 100%;
	clear: both;
	background: url(../img/warning.png) no-repeat left #fcfae9;
	background-position: 15px 10px;
	padding: 20px 0 15px 0;
	margin: 0 0 10px 0;
	text-align: center;
	color: #222;
}

.valid_box,.flash_success {
	width: 100%;
	clear: both;
	background: url(../img/valid.png) no-repeat left #edfce9;
	background-position: 15px 10px;
	padding: 20px 0 15px 0;
	margin: 0 0 10px 0;
	text-align: center;
	color: #222;
}

.error_box,.flash_failure {
	width: 100%;
	clear: both;
	background: url(../img/error.png) no-repeat left #fce9e9;
	background-position: 15px 10px;
	padding: 20px 0 15px 0;
	margin: 0 0 10px 0;
	text-align: center;
	color: #222;
}

div.error-message {
	clear: both;
	color: #9b0000;
	font-weight: bold;
	margin-left: 190px;
}

p.error {
	background-color: #9b0000;
	color: #fff;
	font-family: Courier, monospace;
	font-size: 120%;
	line-height: 140%;
	padding: 0.8em;
	margin: 1em 0;
}

p.error em {
	color: #000;
	font-weight: normal;
	line-height: 140%;
}

.notice {
	background: #ffcc00;
	color: #000;
	display: block;
	font-family: Courier, monospace;
	font-size: 120%;
	line-height: 140%;
	padding: 0.8em;
	margin: 1em 0;
}

.success {
	background: green;
	color: #fff;
}

/**  Actions  **/
div.actions {
	margin: 20px 0;
}

div.actions h3 {
	color: #3699fd;
}

div.actions ul {
	margin: 0;
	padding: 0;
}

div.actions li {
	margin: 0 0 0.5em 0;
	list-style-type: none;
	white-space: nowrap;
	padding: 0;
}

div.actions ul li a {
	font-weight: normal;
	display: block;
	clear: both;
}

input[type=submit],div.actions ul li a,td.actions p a {
	font-weight: normal;
	padding: 4px 8px;
	background: #3f3f3f;
	color: #fff;
	border: none;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	text-decoration: none;
	min-width: 0;
	height: auto;
}

td.actions a {
	padding: 4px 8px;
}

input[type=submit]:hover,div.actions ul li a:hover, td.actions p a:hover {
	background: #6f6f6f;
}

/** Related **/
div.related {
	clear: both;
	display: block;
	margin: 20px 0px;
}

/** Debugging **/
pre {
	color: #000;
	background: #f0f0f0;
	padding: 1em;
}

pre.cake-debug {
	background: #ffcc00;
	font-size: 120%;
	line-height: 140%;
	margin-top: 1em;
	overflow: auto;
	position: relative;
	text-align: left;
}

div.cake-stack-trace {
	background: #fff;
	color: #333;
	margin: 0px;
	padding: 6px;
	font-size: 120%;
	line-height: 140%;
	overflow: auto;
	position: relative;
}

div.cake-code-dump pre {
	position: relative;
	overflow: auto;
}

div.cake-stack-trace pre,div.cake-code-dump pre {
	color: #000;
	background-color: #F0F0F0;
	margin: 0px;
	padding: 1em;
	overflow: auto;
}

div.cake-code-dump pre,div.cake-code-dump pre code {
	clear: both;
	font-size: 12px;
	line-height: 15px;
	margin: 4px 2px;
	padding: 4px;
	overflow: auto;
}

div.cake-code-dump span.code-highlight {
	background-color: #ff0;
	padding: 4px;
}

div.code-coverage-results div.code-line {
	padding-left: 5px;
	display: block;
	margin-left: 10px;
}

div.code-coverage-results div.uncovered span.content {
	background: #ecc;
}

div.code-coverage-results div.covered span.content {
	background: #cec;
}

div.code-coverage-results div.ignored span.content {
	color: #aaa;
}

div.code-coverage-results span.line-num {
	color: #666;
	display: block;
	float: left;
	width: 20px;
	text-align: right;
	margin-right: 5px;
}

div.code-coverage-results span.line-num strong {
	color: #666;
}

div.code-coverage-results div.start {
	border: 1px solid #aaa;
	border-width: 1px 1px 0px 1px;
	margin-top: 30px;
	padding-top: 5px;
}

div.code-coverage-results div.end {
	border: 1px solid #aaa;
	border-width: 0px 1px 1px 1px;
	margin-bottom: 30px;
	padding-bottom: 5px;
}

div.code-coverage-results div.realstart {
	margin-top: 0px;
}

div.code-coverage-results p.note {
	color: #bbb;
	padding: 5px;
	margin: 5px 0 10px;
	font-size: 10px;
}

div.code-coverage-results span.result-bad {
	color: #a00;
}

div.code-coverage-results span.result-ok {
	color: #fa0;
}

div.code-coverage-results span.result-good {
	color: #0a0;
}
table tr td.float_right {
	text-align: right;
}