@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

/** Layout **/
#container {
  text-align: left;
}

/** containers **/
div.form,
div.index,
div.view {
  float: left;
  width: 100%;
}

div.actions {
  float: left;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #666;
}

div.actions h3 {
  float: left;
  width: 4em;
  padding-top: 0;
  color: #777;
}

/** Tables **/
table {
  border-right: 0;
  clear: both;
  color: #333;
  margin-bottom: 10px;
  width: 100%;
}

th {
  border: 0;
  border-bottom: 2px solid #555;
  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 {
  padding: 6px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #ddd;
}

table tr:nth-child(even) {
  background: #f9f9f9;
}

td.actions {
  white-space: nowrap;
}

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

/* SQL log */
.cake-sql-log {
  background: #fff;
}

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

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

/** Paging **/
.paging {
  background: #fff;
  color: #ccc;
  margin-top: 1em;
  clear: both;
}

.paging .current,
.paging .disabled,
.paging a {
  text-decoration: none;
  padding: 5px 8px;
  display: inline-block;
}

.paging > span {
  display: inline-block;
  border: 1px solid #ccc;
  border-left: 0;
}

.paging > span:hover {
  background: #efefef;
}

.paging .prev {
  border-left: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
}

.paging .next {
  border-radius: 0 4px 4px 0;
}

.paging .disabled {
  color: #ddd;
}

.paging .disabled:hover {
  background: transparent;
}

.paging .current {
  background: #efefef;
  color: #c73e14;
}

/** Forms **/
form {
  clear: both;
  margin-right: 20px;
  padding: 0;
  width: 95%;
}

fieldset {
  border: none;
  margin-bottom: 1em;
  padding: 16px 10px;
}

fieldset legend {
  color: #00547d;
  font-size: 160%;
  font-weight: bold;
}

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

fieldset fieldset legend {
  font-size: 120%;
  font-weight: normal;
}

fieldset fieldset div {
  clear: left;
  margin: 0 20px;
}

form div {
  margin-bottom: 1em;
  padding: .5em;
  vertical-align: text-top;
}

form .input {
  color: #444;
}

form div .number {
  width: 10em;
}

form .required {
  font-weight: bold;
}

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

form div.submit {
  border: 0;
  clear: both;
  margin-top: 10px;
}

label {
  display: block;
  font-size: 110%;
  margin-bottom: 3px;
  width: 10em;
  float: left;
}

input, textarea {
  clear: both;
  font-size: 140%;
  font-family: "frutiger linotype", "lucida grande", "verdana", sans-serif;
  padding: 1%;
  width: 60%;
  min-width: 3em;
}

select {
  clear: both;
  font-size: 120%;
  vertical-align: text-bottom;
}

select[multiple=multiple] {
  width: 100%;
}

option {
  font-size: 120%;
  padding: 0 3px;
}

input[type=checkbox] {
  clear: left;
  float: left;
  margin: 0px 6px 7px 2px;
  width: auto;
}

div.checkbox label {
  display: inline;
}

input[type=radio] {
  float: left;
  width: auto;
  margin: 6px 0;
  padding: 0;
  line-height: 26px;
}

.radio label {
  margin: 0 0 6px 20px;
  line-height: 26px;
}

input[type=submit] {
  display: inline;
  font-size: 110%;
  width: auto;
}

form .submit input[type=submit] {
  background: #62af56;
  background-image: -moz-linear-gradient(top, #76BF6B, #3B8230);
  border-color: #2d6324;
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
  padding: 8px 10px;
}

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

/* Form errors */
form .error {
  background: #FFDACC;
  border-radius: 4px;
  font-weight: normal;
}

form .error-message {
  border-radius: none;
  border: none;
  background: none;
  margin: 0;
  padding-left: 4px;
  padding-right: 0;
}

form .error,
form .error-message {
  color: #9E2424;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}

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

.success,
.message,
.cake-error,
.cake-debug,
.notice,
p.error,
.error-message {
  background: #ffcc00;
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffcc00), to(#E6B800));
  background-image: linear-gradient(top, #ffcc00, #E6B800);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 18px;
  padding: 7px 14px;
  color: #404040;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.success,
.message,
.cake-error,
p.error,
.error-message {
  clear: both;
  color: #fff;
  background: #c43c35;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  background-image: linear-gradient(top, #ee5f5b, #c43c35);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.success {
  clear: both;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: #3B8230;
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#76BF6B), to(#3B8230));
  background-image: linear-gradient(top, #76BF6B, #3B8230);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

p.error {
  font-family: Monaco, Consolas, Courier, monospace;
  font-size: 120%;
  padding: 0.8em;
  margin: 1em 0;
}

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

.notice {
  color: #000;
  display: block;
  font-size: 120%;
}

.success {
  color: #fff;
}

/**  Actions  **/
.actions ul {
  margin: 0;
  padding: 0;
}

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

.actions ul li a {
  font-weight: normal;
  display: block;
  margin-right: 1em;
  float: left;
  font-size: 1.2em;
}

/* Buttons and button links */
input[type=submit], .btn-primary {
  font-weight: normal;
  padding: 4px 8px;
  background: #dcdcdc;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#dcdcdc));
  background-image: linear-gradient(top, #fefefe, #dcdcdc);
  color: #333;
  border: 1px solid #bbb;
  border-radius: 4px;
  text-decoration: none;
  text-shadow: #fff 0px 1px 0px;
  min-width: 0;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0px 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

input[type=submit]:active, .btn-primary:active {
  background: #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dfdfdf), to(#eee));
  background-image: linear-gradient(top, #dfdfdf, #eee);
  text-shadow: #eee 0px 1px 0px;
  -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
  border-color: #aaa;
  text-decoration: none;
}

/** Related **/
.related {
  clear: both;
  display: block;
}

/** Debugging **/
pre {
  color: #000;
  padding: 15px;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  white-space: pre-wrap;
  /* css-3 */
  font-family: sans-serif;
  font-size: 1.2em;
}

.cake-debug-output {
  padding: 0;
  position: relative;
}

.cake-debug-output > span {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 5px 6px;
  color: #000;
  display: block;
  float: left;
  -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.cake-debug,
.cake-error {
  font-size: 16px;
  line-height: 20px;
  clear: both;
}

.cake-error > a {
  text-shadow: none;
}

.cake-error {
  white-space: normal;
}

.cake-stack-trace {
  background: rgba(255, 255, 255, 0.7);
  color: #333;
  margin: 10px 0 5px 0;
  padding: 10px 10px 0 10px;
  font-size: 120%;
  line-height: 140%;
  overflow: auto;
  position: relative;
  border-radius: 4px;
}

.cake-stack-trace a {
  text-shadow: none;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px;
  border-radius: 10px;
  margin: 0px 4px 10px 2px;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 14px;
  display: inline-block;
  text-decoration: none;
  -webkit-box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
}

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

.cake-context {
  margin-bottom: 10px;
}

.cake-stack-trace pre {
  color: #000;
  background-color: #F0F0F0;
  margin: 0px 0 10px 0;
  padding: 1em;
  overflow: auto;
  text-shadow: none;
}

.cake-stack-trace li {
  padding: 10px 5px 0px;
  margin: 0 0 4px 0;
  font-family: monospace;
  border: 1px solid #bbb;
  -wekbkit-border-radius: 4px;
  border-radius: 4px;
  background: #dcdcdc;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#dcdcdc));
  background-image: linear-gradient(top, #fefefe, #dcdcdc);
}

/* excerpt */
.cake-code-dump pre,
.cake-code-dump pre code {
  clear: both;
  font-size: 12px;
  line-height: 15px;
  margin: 4px 2px;
  padding: 4px;
  overflow: auto;
}
/*# sourceMappingURL=cake.generic.css.map */