@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 {
	margin: 0;
	background: #ffffff;
	font-family: Arial,Helvetica,Verdana,sans-serif;
	color: #555555;
	font-size: 12px;
	text-align: left;
	line-height: 16px;
}

h1 {
	padding: 0;
	margin: 0 0 20px 0;
	font-size: 18px;
	color: #007D40;
	font-weight: bold;
	line-height: 19px;
}

p {
	margin: 0 0 10px 0;
}

a {
	color: #666666;
	text-decoration: none;
}

/******* special html tags *******/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

#menu {
	margin: 0 0 20px 0;
	width: 100%;
	height: 50px;
	background: #007D40;
}
#menu a {
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	color: #007D40;
}
#menu ul {
	margin: 0;
	list-style-type: none;
	
}
#menu ul li {
	position: relative;
	float: left;
	margin: 0;
	padding: 15px 20px;
}
#menu ul li a {
	color: #ffffff;
}
#menu ul li:hover {
	background: #ffffff;
}
#menu ul li:hover a {
	color: #007D40;
}
#menu ul li ul {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	padding: 50px 0 0 0;
}
#menu ul li:hover ul,
#menu ul li ul:hover {
	display: block;
}
#menu ul li ul li {
	float: none;
	background: #ffffff;
}
#menu ul li ul li:hover {
	background: #007D40;
}
#menu ul li ul li:hover a {
	color: #ffffff;
}