/*
	(c)2015 - visuallizard.com

	Inspired by:
	Normalize				http://necolas.github.io/normalize.css/
	Bootstrap				twitter.github.com/bootstrap/
	HTML5 ✰ Boilerplate		h5bp.com
*/

/* Table of Content

	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons & Messages
	#Tabs
	#Forms
	#Misc
*/

/*
	Site Specific:

	COLOURS:

		#00a5a5		teal [link]
		#bfbfbf		gray light
		#999		gary
		#444		gray dark


		#21409a		dark blue [header, bootom]
		#0089cf		light blue [footer]


	FONTS:

	[Overpass: "Overpass"]
		Thin 		100
		Extra Light	200
		Light 		300
		Regular 	400		kit
		Semibold 	600
		Bold 		700		kit
		Extrabold 	800
		Black 		900		kit
*/


	::selection { background: skyblue; color: #fff; text-shadow: none; }

/* !Basic Styles ============================== */
	:root {
/* 		font-size: 20px; */
	}
	/* apply a natural box layout model to all elements, but allowing components to change */
	html,
	body {
		min-height: 100%;
/* 		height: 100%; */
	}
	html {
		background: #fff;
		box-sizing: border-box;
		font-size: 100%;
/* 		overflow-y: scroll;  */ /* disabling this to prevent content jumping to the top when "overflow:hidden" applied to body */
		-webkit-text-size-adjust: 100%;
		    -ms-text-size-adjust: 100%;
		height: 100%;
		
		scroll-padding-top: 110px; /* Anchor padding for Sticky header (height of sticky header + some additional spacing) */
	}
	body {
		position: relative;
		background: transparent;
		font: 400 18px/1.4 "Overpass", sans-serif;
		color: #000;

		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
 	}
 	*, *:before, *:after {
		box-sizing: inherit;
	}

	/* Sticky footer by  Layout Flex */
	main {
		flex-grow: 1;
	}



/* !Typography ============================== */
	h1, h2, h3, h4, h5, h6 {
		font-weight: normal;
	}
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; color: inherit; }
	h1:hover a, h2:hover a, h3:hover a, h4:hover a, h5:hover a, h6:hover a { color: #00a5a5; }

	h1, .h1 { margin-bottom: 1.0em; font: 400 60px/1.1 "Overpass", sans-serif; text-decoration: underline; text-decoration-color: #00a5a5; }
	h2, .h2 { margin-bottom: .25em; font: 700 40px/1.1 "Overpass", sans-serif; text-decoration: none;      text-decoration-color: inherit; }
	h3, .h3 { margin-bottom: .25em; font: 700 26px/1.1 "Overpass", sans-serif; margin-top: 1.5em; }
	h4, .h4 { font-size: 16px; font-weight: 600; margin-bottom: .5em; text-transform: uppercase; }
	h5, .h5 { font-size: 15px; line-height: 1.5; margin-bottom: .5em; }
	h6, .h6 { font-size: 14px; line-height: 1.5; }

	p  + h1,
	ul + h1,
	ol + h1 { margin-top: 1em; clear: both; }

	h1.category {
		margin-top: 1em;
		padding-top: 1em;
		border-top: 1px solid #999;
	}

	h1 + h2,
	p  + h2,
	ul + h2,
	ol + h2 { margin-top: 1em; clear: both; }

	p { margin: 0 0 1em 0; }
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	i, em { font-style: italic; }
	b, strong { font-weight: bold; }
	small { font-size: 80%; }

/*	Blockquotes  */
	blockquote, blockquote p { color: #000; font-weight: normal; }
	blockquote { margin: 0 2em 2em 3em; padding: 5px 20px 0 15px; border-left: 5px solid #0089cf; }
	blockquote cite { display: block; font-size: 12px; color: #000; }
	blockquote cite:before { content: "\2014 \0020"; }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #000; }
	.dark blockquote cite { color: #fff; }
	.dark blockquote cite a:visited { color: #fff; }

/* !Links */
	a		{ color: #00a5a5; outline: 0; text-decoration: none; transition: color .2s; }
	a:hover	{ color: #000; outline: 0;}
	a:focus	{ color: #000; outline: thin dotted; }
	a:active { outline: 0; }

	.dark a:hover { color: #fff; }
	.dark a:focus { color: #fff; }

	p a { line-height: inherit; }


/* !Lists */
	ul, ol { margin: 0 0 1em 0; padding-left: 1.25em; }
/* 	ul ul, ul ol, ol ol, ol ul { margin-bottom: 0; } */
	ul { list-style: disc; }
	ol { list-style: decimal; }
	ul.unstyled { list-style: none; margin-left: 0; }
	dl { margin-bottom: 1em; }
	dl dt, dl dd {  }
	dl dt { font-size: .8em; font-weight: 700; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.05em; }
	dl dd { margin-left: 1em; }

	/*
	dd:after {
		 http://lea.verou.me/2012/02/flexible-multiline-definition-lists-with-2-lines-of-css/
		content: '\D\A';
		white-space: pre;
	}
	*/


/* !Images */
	figure {
		margin: 0;
	}
	img {
	  border: 0;
	  -ms-interpolation-mode: bicubic;
	  max-width: 100%;
	}
	img.scale-with-grid {
		max-width: 100%;
		height: auto;
	}
	.img_left {
		float: left;
		margin: 0 1em 0.5em 0;
	}
	.img_right {
		float: right;
		margin: 0 0 0.5em 1em;
	}

	.icon svg {
		width: 100%;
		height: 100%;
	}

/* !Other */
	code, pre {
	  padding: 0 3px 2px;
	  font-family: Monaco, Andale Mono, Courier New, monospace;
	  font-size: 12px;
	  -webkit-border-radius: 3px;
	  -moz-border-radius: 3px;
	  border-radius: 3px;
	}
	code {
	  background-color: #eee;
	  color: rgba(0, 0, 0, 0.75);
	  padding: 1px 3px;
	}
	pre {
	  background-color: #f5f5f5;
	  display: block;
	  padding: 8.5px;
	  margin: 0 0 18px;
	  line-height: 18px;
	  font-size: 12px;
	  border: 1px solid #ddd;
	  border: 1px solid rgba(0, 0, 0, 0.15);
	  -webkit-border-radius: 3px;
	  -moz-border-radius: 3px;
	  border-radius: 3px;
	  white-space: pre;
	  white-space: pre-wrap;
	  word-wrap: break-word;
	}

	hr {
		clear: both;
		height: 0;
		margin: 20px 0 19px;
		border: 0;
		border-bottom: 1px solid #ddd;
	}

	address {
		display: block;
	}


/* !Buttons & Messages ============================== */
	.button.remove,
	.button.danger,
	.button.danger:hover,
	.button.error,
	.button.error:hover,
	.button.save,
	.button.save:hover,
	.button.info,
	.button.info:hover {
		color: #ffffff !important;
	}

	.button.remove,
	.button.danger,
	.button.error {
	  background-color: #c43c35;
	}
	.button.save,
	.button.success {
	  background-color: #57a957;
	}
	.button.info {
	  background-color: #339bb9;
	}
	.button {
		text-align: center;
		white-space: normal;
		cursor: pointer;
		display: inline-block;
		background-color: #00a5a5;
		padding: .8em 1em .65em;
		text-decoration: none;
		color: #fff;
		font: bold 12px/1.6 "Overpass", sans-serif;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		border: 2px solid transparent;
		border-radius: 0;
		min-width: 6em;

		-webkit-appearance: none;
		   -moz-appearance: none;

		transition: 0.2s linear all;
	}
	.button:hover {
		color: #fff;
		background-color: #000;
		text-decoration: none;
	}
	.button:focus {
	  outline: 2px dotted #00a5a5;
	  outline-offset: 2px;
	  
	  color: #eee;
	}
	.button.primary {
		padding-inline: 1.5em;
		font-size: 30px;
		line-height: 1.1;
	}
	.button.large {
		padding-inline: 1.5em;
		font-size: 22px;
		line-height: 1.1;
	}
	.button.active, .btn:active {
		box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
	}
	.button.disabled {
		cursor: default;
		background-image: none;
		opacity: 0.65;
		box-shadow: none;
	}
	.button[disabled] {
		cursor: default;
		background-image: none;
		opacity: 0.65;
		box-shadow: none;
	}
	.button.inverse {
		background-color: #666;
	}
		.button.inverse:hover {
			background-color: #4e4e4e;
		}
	.button.outline {
		border: 2px solid currentColor;
		background-color: transparent;
		color: #00a5a5;
		box-sizing: border-box;
	}
		.button.outline:hover {
			border-color: transparent;
			background-color: #4e4e4e;
			color: #fff;
		}
	.button.alternative {
		background-color: #000;
	}
		.button.alternative:hover,
		.dark .button.alternative:hover {
			background-color: #00a5a5;
		}
		.dark .button.alternative {
			background-color: #eee;
			color: #333;
		}
	
	.dark .button:hover {
		color: #000;
		background-color: #fff;
	}
	
	p:has( > .button.center) {
		display: flex;
		justify-content: center;
	}




/* !Forms ============================== */

	form {
		margin-bottom: 2em;
	}
	fieldset {
		margin-bottom: 2em;
	}
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: .55em .5em .6em;
		outline: none;
		border-radius: 0;
		font: 300 16px/1.25 "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #888;
		margin: 0;
		max-width: 100%;
		min-width: 80px; /* ensure the input fields (such as with class .w5) are not too small when on narrow breakpoints  */
		background: #fafafa;
		box-shadow: none;
		-webkit-appearance: none;
	}
	select {
		display: block;
		padding: initial;
		padding: .55em .5em .6em;
		padding-right: 1.5em; /* for bg arrow down */
/* 		border: 1px solid #ccc; */
		min-width: 5em;
/* 		height: 40px; */

		-webkit-appearance: none;
		   -moz-appearance: none;
		        appearance: none;

		background: #fafafa no-repeat 96% center url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><polygon fill='%23000000' points='0,0 50,100 100,0'/></svg>");
		background-size: auto 35%;
		cursor: pointer;
	}
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus,
	select:focus {
		border: 1px solid #aaa;
 		color: #444;
		box-shadow:  0 0 3px rgba(0,0,0,.2);
	}
	textarea {
		min-height: 60px;
		min-width: 210px;
	}
	label,
	legend {
		display: block;
		font-weight: normal;
		font-size: 14px;
		text-transform: uppercase;
	}
	.label {
		margin-bottom: 0.25em;
		color: #444;
		font-size: 80%;
	}
	label b {
		font-weight: 800;
		letter-spacing: 0.05em;
	}
	.input.checkbox label,
	.input.radio    label {
		margin-left: 5px;
		display: inline-block;
		vertical-align: top;
		max-width: 90%; /*  to avoid dropping into new lines on narrow breakpoints. */
	}

	/* 	cat4 required field indicator */
/* 	.required > label:after, */
	.required-field > label:after {
		content: " *";
	}

	/* 	for jquery.overlabel  */
	label.overlabel-apply {
		position: absolute;
		top: 3px;
		left: 5px;
		z-index: 1;
		font-weight: normal;
		color: #777;
	}
	div.overlabel-wrapper {
		position: relative;
	}


	input[type=checkbox],
	input[type=radio] {
	  width: auto;
	  height: auto;
	  padding: 0;
	  margin: 3px 0;
	  *margin-top: 0;
	  /* IE6-7 */

	  line-height: normal;
	  border: none;
	  display: inline-block;
	  vertical-align: top;
	}
	input[type=file] {
	  background-color: #ffffff;
	  padding: initial;
	  border: initial;
	  line-height: initial;
	  -webkit-box-shadow: none;
	  -moz-box-shadow: none;
	  box-shadow: none;
	}
	input[type=button],
	input[type=reset],
	input[type=submit] {
	  width: auto;
	  height: auto;
	}
	input[type=file] {
	  height: 27px;
	  *height: auto;
	  line-height: 27px;
	  *margin-top: 4px;
	  /* For IE7, add top margin to align select with labels */

	}
	select[multiple] {
	  height: inherit;
	  background-color: #ffffff;
	}
	textarea {
	  height: auto;
	}

	.poll label .description {
		font-weight: normal;
	}

	div.input {
		margin-bottom: 1em;
	}
	.input.file p {
		margin: 0;
	}
	input.form-error,
	select.form-error {
		margin-bottom: 0;
	}
	.error-message {
		color: #ee5f5b;
		color: #c30;
		font-size: .75em;
		letter-spacing: 0.03em;
	}

	/* 	Recaptcha */
	.recaptcha + .error-message {
		margin-bottom: 2em;
	}

	.controls-group {
		border: 0;
		padding: 0;
		margin: 0;
	}
		.controls-next {
			float: right;
		}

		.inline + .inline,
		.button + .button {
			margin-left: .5em;
			vertical-align: top;
		}


/* !Media grid ============================== */
	.media-grid {
		margin-left: -20px;
		margin-bottom: 0;
	}
	.media-grid:before, .media-grid:after {
		display: table;
		content: "";
	}
	.media-grid:after {
		clear: both;
	}
	.media-grid li {
		display: inline;
	}
	.media-grid a, .media-grid div.group {
		float: left;
		padding: 4px;
		margin: 0 0 20px 20px;
		border: 1px solid #ddd;
		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;
		-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
		-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
		box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
	}
	.media-grid a img {
		display: block;
	}
	.media-grid a:hover {
		border-color: #7a2;
		-webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
		-moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
		box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
	}

	.media-grid .caption {
		display: block;
	}



/* !Tabs (activate in tabs.js) ============================== */
/* New Tabs */
.tabs-nav {
	display: block;
	margin: 0 0 0 0;
	padding: 0;
	/* border-bottom: solid 1px #ddd; */
}
.tabs-nav li {
	display: block;
	width: auto;
	height: 30px;
	padding: 0;
	float: left;
	margin-bottom: 0;
}
.tabs-nav li a {
	display: block;
	text-decoration: none;
	width: auto;
	height: 29px;
	padding: 0px 20px;
	line-height: 30px;
	border: solid 1px #ddd;
	border-width: 1px 1px 0 0;
	margin: 0;
	background: #f6f6f6;
	font-size: 13px;
}
	.tabs-nav li a:hover {
		background: #f0f0f0;
	}
.tabs-nav li a.active {
	background: #fff;
	height: 30px;
	position: relative;
	top: -4px;
	padding-top: 4px;
	border-left-width: 1px;
	margin: 0 0 0 -1px;
	color: #111;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
	-moz-border-radius-topright: 3px;
	-webkit-border-top-right-radius: 32px;
	border-top-right-radius: 3px;
}
.tabs-nav li:first-child a.active {
	margin-left: 0;
}
.tabs-nav li:first-child a {
	border-width: 1px 1px 0 1px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
}
.tabs-nav li:last-child a {
	-moz-border-radius-topright: 3px;
	-webkit-border-top-right-radius: 3px;
	border-top-right-radius: 3px;
}

.tabs-content { margin: 0; padding: 2em; border: 1px solid #ddd; display: block; list-style: none; clear: both;}
.tabs-content > .tab { display:none; }
.tabs-content > .tab.active { display: block; }



/* !Tables  ============================== */
table {
  width: 100%;
  margin-bottom: 1em;
  padding: 0;
/*   font-size: 13px; */
  border-collapse: collapse;
}
table th, table td {
  padding: 10px 10px 9px;
/*   line-height: 18px; */
  text-align: left;
}
table th {
  padding-top: 9px;
  font-weight: bold;
  vertical-align: middle;
}
table td {
  vertical-align: top;
  border-top: 1px solid #ddd;
}
table tbody th {
  border-top: 1px solid #ddd;
  vertical-align: top;
}

/* 	table types: .condensed-table  and .bordered-table */
.condensed th, .condensed td {
  padding: 5px 5px 4px;
}
.bordered {
  border: 1px solid #ddd;
  border-collapse: separate;
  *border-collapse: collapse; /* IE7, collapse table to remove spacing */

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bordered th + th, .bordered-table td + td, .bordered th + td {
  border-left: 1px solid #ddd;
}
.bordered thead tr:first-child th:first-child, .bordered tbody tr:first-child td:first-child {
  -webkit-border-radius: 4px 0 0 0;
  -moz-border-radius: 4px 0 0 0;
  border-radius: 4px 0 0 0;
}
.bordered thead tr:first-child th:last-child, .bordered tbody tr:first-child td:last-child {
  -webkit-border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  border-radius: 0 4px 0 0;
}
.bordered tbody tr:last-child td:first-child {
  -webkit-border-radius: 0 0 0 4px;
  -moz-border-radius: 0 0 0 4px;
  border-radius: 0 0 0 4px;
}
.bordered tbody tr:last-child td:last-child {
  -webkit-border-radius: 0 0 4px 0;
  -moz-border-radius: 0 0 4px 0;
  border-radius: 0 0 4px 0;
}

/* 	sortable and zebra-striped tables */
.striped tbody tr:nth-child(odd) td, .striped tbody tr:nth-child(odd) th {
  background-color: #f9f9f9;
}
.striped tbody tr:hover td, .striped tbody tr:hover th {
  background-color: #f5f5f5;
}
table .header {
  cursor: pointer;
}
table .header:after {
  content: "";
  float: right;
  margin-top: 7px;
  border-width: 0 4px 4px;
  border-style: solid;
  border-color: #000 transparent;
  visibility: hidden;
}
table .headerSortUp, table .headerSortDown {
	background-color: #85c446;
	background-color: rgba(133,196,70,.3);
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
}
table .header:hover:after {
  visibility: visible;
}
table .headerSortDown:after, table .headerSortDown:hover:after {
  visibility: visible;
  filter: alpha(opacity=60);
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
table .headerSortUp:after {
  border-bottom: none;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
  visibility: visible;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: alpha(opacity=60);
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}


/* !Pagination  ============================== */
	.pagination {
		margin: 1rem 0;
		user-select: none;
		clear: both;
		overflow: hidden;
	}
	.pagination span {
		display: inline-block;
		vertical-align: middle;
	}
	.pagination a,
	.pagination .current {
		display: inline-block;
		vertical-align: middle;
		padding: 0 5px 0;
		min-width: 32px;
		height: 32px;
		line-height: 32px;
		transition: .2s ease;
		text-align: center;
		text-decoration: none;
		color: #000;
	}
	.pagination a:hover,
	.pagination .active a,
	.pagination .current {
		background-color: #00a5a5;
	}
	.pagination .disabled a,
	.pagination .disabled a:hover {
		background-color: transparent;
		color: #bfbfbf;
	}
	.pagination .first a,
	.pagination .prev a,
	.pagination .next a,
	.pagination .last a {
		font-size: 125%;
		color: #00a5a5;
/* 		transform: scale(1.5); */
	}
	.pagination .first a:hover,
	.pagination .prev a:hover,
	.pagination .next a:hover,
	.pagination .last a:hover {
		color: #000;
	}

	.dark .pagination a,
	.dark .pagination .current {
		color: #fff;
	}
	.dark .pagination .first a:hover,
	.dark .pagination .prev a:hover,
	.dark .pagination .next a:hover,
	.dark .pagination .last a:hover {
		color: #fff;
	}

/* !Non-semantic helper classes ============================== */

	/* For image replacement */
	.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
	.ir br { display: none; }

	/* Hide from both screenreaders and browsers: h5bp.com/u */
	.hidden { display: none !important; visibility: hidden; }

	/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
	.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

	/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
	.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

	/* Hide visually and from screenreaders, but maintain layout */
	.invisible { visibility: hidden; }

	/* Contain floats: h5bp.com/q */
	.clearfix:before, .clearfix:after { content: ""; display: table; }
	.clearfix:after { clear: both; }


	.clear { clear: both; }


/* !Catalyst specific  ============================== */
	.w5 { width: 5%; }
/* 	.w8 { width: 8%; } */
	.w10 { width: 10%; }
	.w15 { width: 15%; }
	.w20 { width: 20%; }
	.w25 { width: 25%; }
	.w30 { width: 30%; }
	.w35 { width: 35%; }
	.w40 { width: 40%; }
	.w45 { width: 45%; }
	.w50 { width: 50%; }
	.w55 { width: 55%; }
	.w60 { width: 60%; }
	.w65 { width: 65%; }
	.w70 { width: 70%; }
	.w75 { width: 75%; }
	.w80 { width: 80%; }
	.w85 { width: 85%; }
	.w90 { width: 90%; }
	.w95 { width: 95%; }
	.w100 { width: 100%; }


	.block { display: block; }
	.inline { display: inline; }
	.hidden { display: none; }

	.left { text-align: left; }
	.right { text-align: right; }
	.center { text-align: center; }

	.cke div.c1,
	.cke div.c2,
	.cke div.c3,
	.cke div.c4,
	.cke div.c5,
	.cke div.c6 {
		margin-left: 2%;
		float: left;
	}

	.cke div.c2 { width: 49%; }
	.cke div.c3 { width: 32%; }
	.cke div.c4 { width: 23.5%; }
	.cke div.c5 { width: 18.4%; }
	.cke div.c5 { width: 15%; }

	.cke div.c1,
	.cke div.first {
		clear: both;
		margin-left: 0;
	}

	.cke:before, .cke:after { content: "\0020"; display: block; height: 0; visibility: hidden; }
	.cke:after { clear: both; }


	/* ! CSS columns */
	.columns-2 { columns: 2 500px; column-gap: 3em; }
	.columns-3 { columns: 3 250px; column-gap: 3em; }
	.columns-4 { columns: 4 200px; column-gap: 2em; }

/* !Debug & CakePHP Debug SQL table ============================== */
	body:before {
/* 		content: attr(class); */
		content: '';
		position: fixed;
		top: 0px;
		right: 10px;
		padding: .25rem;
		color: #666;
		z-index: 1000;
		font-size: 10px;
	}

	table.cake-sql-log {
		display: none;
		clear: both;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		text-align: left;
		border-top: 1px solid #000;
		border-left: 1px solid #000;
		color: #333;
		background-color: #eee;
	}

	table.cake-sql-log td,
	table.cake-sql-log th {
		border-bottom: 1px solid #999;
		border-right: 1px solid #999;
		padding: 0.5em;
	}

	table.cake-sql-log caption {
		text-align: center;
		background-color: #900;
		color: #fff;
		font-weight: bold;
		font-size: 1.5em;
		padding: 0.5em;
	}