/* 1. Default HTML tags */
/* 2. Layout elements */
/* 3. Allmice CMS specific elements */
/* 4. Other custom styles */

/* ============================== */
/* 1. Default HTML tags */
/* ============================== */

/* padding:[top]px [right]px [bottom]px [left]px; */
/* text-shadow: [X-Offset]px [Y-Offset]px [blur]px [#color]; */

/* Start of CSS reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* End of CSS reset */

* {
	margin: 0;
	padding: 0;
}
/* General styles */
body {
	width:100%;
	background:#fff;
	min-width:600px;
/* Minimum width of layout - remove line if not required */
						/* The min-width property does not work in old versions of Internet Explorer */
	font: normal 16px/24px Arial, sans-serif;
	color: #00513f;

/*	text-shadow: 2px 2px 6px #555;*/
/* text-shadow: [X-Offset]px [Y-Offset]px [blur]px [#color]; */
}

ul {
/*    list-style-type: none;*/
	list-style-type: circle;
	margin: 0px 0px 0px 8px;
/*	list-style-position: inside; */
/*	list-style-position: inside; !!! Not to use such inside style - it causes issues in Chromium/Chrome browsers */
/* https://bugs.chromium.org/p/chromium/issues/detail?id=278115 */
/*	margin: 0px 0px 0px 16px;*/
}

ul li {
	list-style-image: url(../images/menu-leaf.png);
	list-style-position: outside;
	margin: 0px 0px 0px 16px;
/*	margin: 0px 10px 0px 16px;*/
/*	padding: 20;*/
}

a {
	text-decoration:none;
	color: #024;
}
a:hover {
	text-decoration:underline;
	color: #024;
}

b,
strong {
	font-weight: bold;
}
i {
	font-style: italic;
}
u {
	text-decoration:underline;
}
center {
/*center an element e.g. div inside center tags*/
    margin: auto;
    width: 50%;
/*center text*/
	text-align: center;
}

h1, h2, h3 {
	color: #00513f;
text-shadow: 2px 2px 4px #aaa;
/* text-shadow: [X-Offset]px [Y-Offset]px [blur]px [#color]; */

}
h1 {
	font: normal 22px/50px Verdana, sans-serif;
/*	padding-bottom:18px;*/
}
h2 {
	font: 18px Verdana, sans-serif;
/*	padding-bottom:16px;*/
}
h2 a {
	font: 18px Verdana, sans-serif;
/*	padding-bottom:16px;*/
}
h3 {
	font: 16px Verdana, sans-serif;
/*	padding-bottom:14px;*/
}

p {
/*	margin:.4em 0 .8em 0;*/
	margin:0;
	padding: 10px 0 10px 0;
}

img {
	margin:10px 0 5px;
}



tbody {
}
tbody th {
  border-bottom: 1px solid #00513f;
}
thead th {
	text-align: left; /* LTR */
	padding: 3px;
	border-top: 3px solid #00513f;
	border-bottom: 3px solid #00513f;
	background-color: #a0c1b8;
	height: 24px;
}
td.active {
	background-color: #c0e1d8;
	border-bottom: 1px solid #00513f;

}
td {
	padding: 8px;
	background-color:#c0e1d8;
	border-bottom: 1px solid #00513f;

}
th {
	padding: 8px;
	border-top: 3px solid #00513f;
	border-bottom: 3px solid #00513f;
	height: 24px;
	background-color: #a0c1b8;
/*	font-weight: bold;*/
	font: normal 18px/26px Arial, sans-serif;

}
tr.trHead {
	padding: 4px;
}
/* Some tables have rows marked even or odd. */
tr.even {
	padding: 8px;
	background-color: #a0c1b8;
	border-bottom: 1px solid #00513f;
}
tr.odd {
	padding: 8px;
	background-color:#c0e1d8;
	border-bottom: 1px solid #00513f;
}




input[type="text"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="email"],
input[type="range"],
input[type="number"],
input[type="color"],
input[type="password"]
{
	width:300px;
	height:30px;
	margin:4px;
	padding:4px;
	color:#184c4d;
	background-color:#A0C1B8;
}

input[type="email"],
input[type="color"]
{
background-color:#fff;
}

input[type="text"].wide
{
	width:700px;
	height:30px;
	margin:4px;
	padding:4px;
	color:#184c4d;
	background-color:#A0C1B8;
}


button,
input[type="submit"]
{
	-webkit-appearance: button;
	margin:5px;
	padding:15px 30px 15px 30px;
	background:url('../images/bg/button-default-bg.png') #ffffff repeat-x left top;
	border:1px none;
	cursor:pointer;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font: normal 16px Verdana, sans-serif;
}

button:hover,
input[type="submit"]:hover
 {
	-webkit-appearance: button;
	margin:5px;
	padding:15px 30px 15px 30px;
	background:url('../images/bg/button-hover-bg.png') #ffffff repeat-x left top;
	border:1px none;
	cursor:pointer;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font: normal 16px Verdana, sans-serif;
    /* the submit button when hovered over */
}

select {
	background-image:url(../images/arrow.png);
	background-repeat:no-repeat;
	width:360px;
	padding:4px;
	margin-top:4px;
	font-family:Sans;
	height:30px;
	line-height:30px;
	background-color:#a0c1b8;
	color:#024;
	font-size:14px;
}
select:hover {
	background-color:#fdfd96;
}

select.single {
	display:block;
	height:40px;
}

select.multiple {
	background-image:url(../images/arrow.png);
	background-repeat:no-repeat;
	width:100%;
	padding:4px;
	margin-top:4px;
	font-family:Sans;
	height:80px;
	line-height:30px;
	background-color:#a0c1b8;
	color:#024;
	font-size:14px;
}

select.multiple:hover {
	background-color:#fdfd96;
}
/*	padding: top right bottom left;*/

/* ============================== */
/* 2. Layout elements */
/* ============================== */


.header-area {
	margin: 0;
	padding: 0;
	background: #3a9869 url('../images/header-line-bg.png') top left repeat-x;
/*	background:url('../images/bg/cardboard-teal.png') #308080 repeat left top;*/
	height:100px;
	width:100%;
	vertical-align:top;
	overflow: hidden;
}
.header-left {
	float:left;
	width:320px;
	padding-top:3px;
	left: 20px;
	overflow: hidden;
	padding-left: 20px;
}

.header-right {
  	float: right;
  	width:468px;
	height:60px;
	padding-top: 20px;
	overflow: hidden;
	padding-left: 0px;
	padding-right: 25px;
/*    border: 1px solid #ffffff;*/
}

.mob-header-center {
	margin:14px;
}



.content-cell
{
	text-align: left;
	display: inline-block;
	margin:0px;
	padding:20px;
}

div.content-cell ul {
/*    list-style-type: none;*/
	list-style-type: circle;
	list-style-position: inside;
/*	margin: 0px 0px 0px 16px;*/
}
div.content-cell ul li {
	list-style-image: url(../images/menu-leaf-off.png);
	margin: 0px 0px 0px 16px;
/*	padding: 20;*/
}


.footer-area {
	padding: 10px 0px 10px 0px;
 	width:100%;
	min-height:80px;
	background:url('../images/mainmenu-bg-off.png') #82d5a6 repeat left top;
  color: #046;
/*	font: normal 15px/22px Verdana, sans-serif;*/
	font: normal 16px/24px Verdana, sans-serif;
	border-top:2px solid #3ea576;
	border-bottom:2px solid #3ea576;
		overflow:hidden;		/* This chops off any overhanging divs */
}
.footer-text {
/*	padding-top:4px*/
/*	padding-bottom:4px*/
	font: normal 16px/24px Verdana, sans-serif;
}

.footer-area a:link {
  color: #046;
  text-decoration: none;
	font: normal 16px/24px Verdana, sans-serif;
}

.footer-area a:visited {
  color: #046;
  text-decoration: none;
	font: normal 16px/24px Verdana, sans-serif;
}

.footer-area a:hover {
  color: #046;
  text-decoration: underline;
	font: normal 16px/24px Verdana, sans-serif;
}

/* ============================== */
/* 3. Allmice CMS specific elements */
/* ============================== */

/* CSS classes for site name, title, etc. */

.site-name {
/*	display: block;*/
/*	font: normal 36px Verdana, sans-serif;*/
/*	height: 60px;*/
/*	width: 384px;*/
	color: #fff;
	text-shadow: 2px 2px 4px #aaa;
	padding: 0px 0px 0px 20px;
	background-color:transparent;
}
img.site-name {
    display: block;
    margin: auto;
    width: 40%;
}

.site-name a,
.site-name a:link,
.site-name a:hover,
.site-name a:active,
.site-name a:focus {
/*	padding: 20px 0px 0px 10px;*/
	font: normal 28px Verdana, sans-serif;
	color: #fff;
	text-shadow: 2px 2px 4px #aaa;
}
h2.title {
	font: normal 28px Verdana, sans-serif;
	color: #fff;
	text-shadow: 2px 2px 4px #aaa;
	margin: 18px 0px 18px 0px;
}


/* CSS classes for header-bar: location of naviArea & userArea */

.header-bar {
/* 	display: inline-block;*/
 	width:100%;
	min-height:30px;
	background:url('../images/mainmenu-bg-off.png') #82d5a6 repeat left top;
	color: #064;
/*	font: normal 15px/22px Verdana, sans-serif;*/
	font: normal 18px/26px Verdana, sans-serif;
	border-top:2px solid #3ea576;
	border-bottom:2px solid #3ea576;
		overflow:hidden;		/* This chops off any overhanging divs */

/*    position: fixed;*/
/*    top: 0;*/

}

.user-area {
	float:right;
/*	padding: 0px 20px 0px 0px;*/
    color: #064;
	font: 18px Verdana, sans-serif;

    margin: 0;
    overflow: hidden;



    display: inline-block;
/*    padding: 14px 20px;*/
    padding: 8px 16px;

}

.user-area a {
    color: #064;
	font: 18px Verdana, sans-serif;
    text-decoration: none;

    margin: 0;
    padding: 0;
    overflow: hidden;

}

.user-area a:hover {
    text-decoration: underline;
}

/* CSS classes for content area */

/*.content-cell,*/
/*.content-body,*/
ul.content li.content,
ul.content-body li.content-body,
ul.content-cell li.content-cell {
/* In use - vertical menu indent and bullets */
    list-style-type: circle;
	list-style-image: url(../images/menu-leaf.png);
	margin: 0px 0px 0px 16px;
}


/* CSS classes for form elements, form labels and for other form related text */

.label-text,
.label-password {
	display: block;
	text-align: left;
	font: bold 16px Arial, sans-serif;
	margin:0px;
	padding:4px;
}

.label-textarea {
  display: block;
  text-align: left;
	font: bold 16px Arial, sans-serif;
	margin:0px;
	padding:4px;
}

.label-select {
  display: inline-block;
  text-align: left;
	font: bold 16px Arial, sans-serif;
	margin:0px;
	padding:4px;
}

.vertical
{
    display: block;
}


.guide {
	display:block;
	padding: 0px 4px 14px 4px;
	font: normal 12px/18px Arial, sans-serif;
}


/* CSS classes for messages */

.message-area,
.error-messages {
  text-align: left;
    display: block;
	padding:20px;
	font: normal 16px/1.5em Arial, sans-serif;
}
.green {
 	border: 1px solid #ada;
	background-color:#cfc;
	color:#474;
	padding: 10px;
}
.red {
 	border: 1px solid #daa;
	background-color:#FFCCCC;
	color:#744;
	padding: 10px;
}

.footer-cell,
.footer-cell a,
.footer-cell a:link,
.footer-cell a:hover,
.footer-cell a:active,
.footer-cell a:focus {
  color: #046;
	text-align: center;
}

/* ============================== */
/* 4. Other custom styles */
/* ============================== */

.logo {
/*Not in use at the moment, maybe in the future*/
    display: inline-block;
}

.ad {
	display: inline-block;
	width: 100%;
	text-align:center;
}

.link {
	display: inline-block;
	width: 100%;
	text-align:center;
}


fieldset ul.clear-block li {
  margin: 0;
  padding: 0;
  background-image: none;
}

div.text,
p.text {
	display: inline-block;
	width: 100%;
/*	text-align:center;*/
    position: relative;
}


div.mapframe,
p.mapframe {
/*    display: inline-block;*/
  background: #c3d5df url(../images/bg-brush-sky-tile2.jpg) top left repeat;
width: 540px;
    height: 300px;
  border: 2px solid #65a89b;
  padding: 5px;
/*  margin: 10px;*/
/*  padding: 20px 0px 0px 0px ;*/
       text-align:center;

   margin-left: auto;
   margin-right: auto;
/*    position: absolute;*/
}

.map-image {

   width: 90%;
/*   height: 90%;*/
   height: auto;
   border: 0px;
   display: block;    
   margin-left: auto;
   margin-right: auto;

}

p.maparea {
/*	background: #68a3e5 url(images/bg-sea.jpg) top left repeat;*/
	background: #c3d5df url(../images/bg-brush-sky-tile2.jpg) top left repeat;
/*    border: 0px solid #9fd0c6;*/
    border: 1px solid #65a89b;
    margin: 6px 0px 6px 0px;
}

p.maparea2 {
/*	background: #68a3e5 url(images/bg-sea.jpg) top left repeat;*/
	background: #c3d5df url(../images/bg-brush-sky-tile2.jpg) top left repeat;
    width: 360px;
    height: 180px;
    border: 1px solid #65a89b;
    margin: 6px 0px 6px 0px;
    padding: 20px 30px 20px 30px ;
       text-align:center;
}
p.maparea3 {
/*	background: #68a3e5 url(images/bg-sea.jpg) top left repeat;*/
       text-align:center;
	background: #c3d5df url(../images/bg-brush-sky-tile2.jpg) top left repeat;
    width: 520px;
    height: 80px;
    border: 1px solid #65a89b;
    margin: 6px 0px 6px 0px;
    padding: 20px 10px 10px 10px ;
}
p.maparea4 {
/*	background: #68a3e5 url(images/bg-sea.jpg) top left repeat;*/
	background: #c3d5df url(../images/bg-brush-sky-tile2.jpg) top left repeat;
    width: 320px;
    height: 160px;
    border: 1px solid #65a89b;
    margin: 6px 0px 6px 0px;
    padding: 20px 10px 20px 10px ;
       text-align:center;
}
.wm-cell
{
	text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.wm-button
{
	text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin: 20px;
}

/*.error-messages {*/
/*#adAreaMid1 {*/
#mid-1 {
	padding-top: 20px;
}

/*.error-messages {*/
