@charset "utf-8";
/**
 *
 * Generic CSS for CakePHP
 *
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
 * @link          http://cakephp.org CakePHP(tm) Project
 * @package       app.webroot.css
 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
 */

* {
	margin:0;
	padding:0;
}

/** General Style Info **/
body {
	background: #FFF;
	color: #666;
	font-family: Verdana,helvetica,arial,sans-serif;
	font-size:90%;
	margin: 0;
}
a {
	color: #4292ce;
	text-decoration: none;
}
.logo {
	margin-top:0px;
	text-align: center;
}
.message {
	text-align:center;
	font-size: 14px;
	padding-top: 0px;
}

.logo img {
/*transform:scale 1s;
animation: scale 1s;*/
-moz-animation: scale 1.5s; /* Firefox */
-webkit-animation: scale 1.5s; /* Safari and Chrome */
-o-animation: scale 1.5s; /* Opera */
margin-top:-20px;}
@keyframes scale {
from {
    width:500px;
}
to {
    width:600px;
}}
@-moz-keyframes scale { /* Firefox */
from {
    width:500px;
}
to {
    width:600px;
}}
@-webkit-keyframes scale { /* Safari and Chrome */
from {
    width:500px;
}
to {
    width:600px;
}}
@-o-keyframes scale { /* Opera */
from {
    width:500px;
}
to {
    width:600px;
}}