@charset "utf-8";
/* Colors
Purple: #820f71, #b82f92, #fdeffd
Green: #014501, #369236, #8ac53e, #95c732, #a8d46f, #f2fedd
Black: #000
Grey: #424242, #ddd
White: #fff
*/

body {
	display: block;
	margin: 0;
	padding: 0;
	background: #fff;
}
/* text styles */
h1, h2, h3, h4, h5, h6, p, a, ul, ol, li, strong, em, form, input, textarea, td, th {
	font-family: Arial, Helvetica, sans-serif;
}
h2 {
	color: #369236;
}
a:link, a:visited {
	font-weight: bold;
	text-decoration: none;
	color: #000000;
}
a:hover, a:active {
	text-decoration: underline;
}
p {
	margin: 0.8em 0;
}
strong {
	font-weight: bold;
}
sup {
	vertical-align: super;
	font-size: xx-small;
}
.clear {
	clear: both;
}
p.note {
	font-size: 11px;
}
/* containers */
#main, .header, .logo, .nav, .footer {
	display: block;
}
#main {
	width: 960px;
	margin: 0 auto;
	padding: 46px 120px 0 120px;
}
.header {
	clear: both;
	margin-bottom: 50px;
}
.logo {
	clear: both;
	/*float: left;
	width: 530px;*/
	text-align: left;
}
.logo img {
	display: block;
	float: left;
	width: 350px;
	margin-right: 40px;
}
.logo .text {
	display: block;
	float: left;
	width: 540px;
}
.logo h1 {
	font-size: 36px;
	margin: 30px 0 20px 0;
}
.logo p {
	margin: 0;
	line-height: 26px;
	font-size: 1em;
}
/* navigation*/
.nav {
	/*width: 150px;*/
	margin: 0px;
	float: right;
	width: 520px;
}
.nav .home {
	display: block;
	background: url(../images/btn-home.jpg);
	width: 36px;
	height: 36px;
	float: left;
	margin: 0 10px 0 0;
}
.nav .home:hover, .nav .home.current {
	background: url(../images/btn-home-current.jpg);
}
.nav ul li {
	position: relative;
	float: left;
}
.nav ul li a:link, .nav ul li a:visited {
	display: block;
	background: #fff;
	/*background: url(../images/navi.png) top left no-repeat;*/
	font-weight: normal;
	text-transform: uppercase;
	color: #666;
	font-size: 12px;
	padding: 12px;
	margin: 0 10px 0 0;
}
.nav ul li a:hover, .nav ul li a:active {
	/*background: url(../images/navi.png) bottom left no-repeat;*/
	text-decoration: none;
	background: #666;
	color: #fff;
}
.nav ul li ul li a:link, .nav ul li ul li a:visited {
	background: none;
	margin: 0;
}
.nav ul li ul {
	position: absolute;
	left: -9999px;
	background: #999999;
	/*list-style: url(../images/icon-arrow.png);*/
	padding: 0;
	width: 160px;
}
.nav ul li ul li {
	display: block;
	float: none;
	padding: 0;
	margin: 0;
}
.nav ul li ul li a:link, .nav ul li ul li a:visited {
	display: block;
	padding: 1em;
	margin: 0;
	border-top: 1px solid #898989;
	border-bottom: 1px solid #b3b3b3;
}
.nav ul li:hover ul { /* Display the dropdown on hover */
	top: 36px;
	left: 0; /* Bring back on-screen when needed */
}
.nav ul li:hover a { /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	/*background: url(../images/navi.png) bottom left no-repeat;*/
	background: #999999;
	color: #fff;
}
.nav ul li:hover ul a { /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
	background: #fff;
	/*background: url(../images/navi.png) bottom left no-repeat;*/
	color: #fff;
}
.nav ul li:hover ul li a:hover, .nav ul li a.current { /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	color: #fff;
	background: #99ca3c;
}
/* footer */
.footer {
	clear: both;
	background: url(../images/bg-footer.png) transparent top no-repeat;
	padding: 86px 0 10px 0;
}
.footer .details {
	display: block;
	width: 520px;
	float: left;
	padding: 10px 20px;
	background-color: #a8d46f;
}
.footer .details h3 {
	font-weight: bold;
	font-size: 16px;
	line-height: 20px
}
.footer .details ul {
	margin: 0 22px;
}
.footer .details li {
	padding: 4px 0;
	font-size: 14px;
}
.footer .details li.phone {
	list-style: url(../images/icon-phone.png);
}
.footer .details li.mail {
	list-style: url(../images/icon-mail.png);
}
.footer .logo {
	display: block;
	clear: none;
	width: 360px;
	padding: 20px 0;
	float: left;
}
.footer .logo ul {
	list-style: none;
	float: left;
}
.footer .logo li {
	display: inline-block;
	margin: 0 10px;
}
.footer .logo li img {
	width: auto;
	vertical-align: middle;
	margin: 0;
}
#popup {
	display: none;
	padding: 0 1em;
}
#popup h1 {
	font-size: 1.2em;
	font-weight: bold;
}
#popup p {
	font-size: inherit;
	line-height: 1.5em;
}
#popup a:link, #popup a:visited {
	color: #399339;
}
#popup a:hover, #popup a:active {
	color: #333;
}
#popup hr {
	border: 0;
	background-color: #999;
	height: 1px;
}