@charset "utf-8";
/* CSS Document */
body {
    height: 90%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    background-image: url(images/bgd.jpg);
}

h1, h2, h3, h4, h5 {
    font-weight: normal;
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    display: inline;
}

a {

    color: #333333;
    text-decoration: underline;
}

a:hover {

    color: #754200;
    text-decoration: underline;
}

.headline {

    font-weight: bold;
    color: #333333;
    text-decoration: none;
    font-size: 20px;
}

.headlinelink {
    font-weight: bold;
    color: #333333;
    font-size: 20px;
    text-decoration: none;
}

.headlinelink:hover {
    text-decoration: none;
    color: #754200;
    font-size: 20px;
}

.subheadline {
    font-weight: bold;
    color: #333333;
    text-decoration: none;
    font-size: 15px;
}

.subheadlinelink {
    font-weight: bold;
    color: #333333;
    font-size: 15px;
    text-decoration: none;
}

.subheadlinelink:hover {
    text-decoration: none;
    color: #754200;
    font-size: 15px;
}

img {
    border: none
}

.whole_page {
    width: 1000px;
    max-width: 1000px;
    min-height: 100%;
    position: relative;
    height: auto !important;
    height: 100%;
    box-shadow: 0px 8px 10px #666666;
    margin: 0 auto -150px; /*change pixels to height of footer*/
}

.center_page {
    clear: both;
    background: #FFF;
    padding-bottom: 10px; /*change pixels to height of footer*/
    padding-top: 20px;
    overflow: hidden;
}

.testimonial_page {
    clear: both;
    background: #FFF;
    padding-bottom: 10px; /*change pixels to height of footer*/
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

.index_left {
    float: left;
    clear: left;
    width: 33%;
    text-align: center;
}

.index_middle {
    float: left;
    width: 33%;
    text-align: center;
}

.index_right {
    float: left;
    width: 33%;
    clear: right;
    text-align: center;
}

.contact_left {
    float: left;
    clear: left;
    width: 45%;
    text-align: left;
}

.contact_right {
    float: left;
    width: 40%;
    text-align: left;
    padding-right: 3%;
}

.omokoroa_left {
    float: left;
    clear: left;
    width: 67%;
    text-align: left;
    padding-left: 3%;
    padding-right: 3%;
}

.omokoroa_right {
    float: left;
    width: 27%;
    text-align: left;
}

/* ------------------------------HEADER---------------------------------------*/

#headerphotos {
    float: right;
}

div#logooverlay {
    position: relative;
    top: 0;
    left: 0;
    min-height: 250px;
}

div#logooverlay img.cover {
    position: absolute;
    /* position in top left of #tobecovered */
    top: 0; /* top of #tobecovered */
    left: 0; /* left of #tobecovered */
    z-index: 9999;
}


/* BEGIN MENU CSS */
.menu, .menu ul {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
    display: block;
}

.menu li {
    margin: 0;
    padding: 0;
    border: 0;
    display: block;
    float: left;
    position: relative;
    z-index: 5;
}

.menu li:hover {
    z-index: 10000;
    white-space: normal;
}

.menu li li {
    float: none;
}

.menu ul {
    visibility: hidden;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
}

.menu li:hover > ul {
    visibility: visible;
    top: 100%;
}

.menu li li:hover > ul {
    top: 0;
    left: 100%;
}


.menu:after, .menu ul:after {
    content: ".";
    height: 0;
    display: block;
    visibility: hidden;
    overflow: hidden;
    clear: both;
}

.menu, .menu ul {
    min-height: 0;
}


.menu ul {
    /* [disabled]background-image:url(images/menu-bgd.jpg); */
    padding: 10px 30px 30px 30px;
    margin: -10px 0 0 -30px;
}

.menu ul ul {
    padding: 30px 30px 30px 10px;
    margin: -30px 0 0 -10px;
}

.menu, .menu ul li {
    color: #754200;
    font-size: 14px;
    background: url(images/menu-bgd.jpg);
}

.menu ul {
    width: 15em;
}

.menu a {
    font-family: "Times New Roman", Times, serif;
    text-decoration: none;
    font-weight: bold;
    color: #e5cea5;
    padding: .18em 1.3em;
    display: block;
    position: relative;
}

.menu a:hover, .menu li:hover > a {
    color: #754200;
}

.menu li li {
    border: 1px solid #754200;
}

.menu ul > li + li {
    border-top: 0;
}

.menu li li:hover > ul {
    top: 5px;
    left: 90%;
}

/* BEGIN GALLERY CSS */
.gallerycontainer {
    position: relative;
    /*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img {
    border: 1px solid white;
    margin: 0 4px 5px 0;
    /*height: 49px;*/
    width: 125px;
}

.thumbnail:hover {
    background-color: transparent;
}

.thumbnail:hover img {
    border: 1px solid white;
}

.thumbnail span { /*CSS for enlarged image*/
    position: absolute;
    background-color: lightgrey;
    padding: 5px;
    margin-top: 50px;
    left: -500px;
    border: 1px solid white;
    visibility: hidden;
    color: black;
    text-decoration: none;
}

.thumbnail span img { /*CSS for enlarged image*/
    border-width: 0;
    padding: 2px;
    height: 380px;
    width: 580px;
}

.thumbnail:hover span { /*CSS for enlarged image*/
    visibility: visible;
    top: 0;
    left: 400px; /*position where enlarged image should offset horizontally */
    z-index: 50;
}

/* END OF GALLERY CSS */
.header-contact-details {
    text-align: right;
    top: 0;
    right: 0;
    position: absolute;
    z-index: 10000;
    padding-top: 9px;
    padding-right: 8px;
}

.header-contact-details p,
.header-contact-details a {
    color: #a3a3a3;
    margin: 0 auto 5px;
    font-size: 14px;
}
.footer {
    /*position: relative;*/
}
.footer-contact-details {
    position: absolute;
    bottom: 21px;
    left: 120px;
}
.footer-contact-details td {
    padding-bottom: 5px;
}
.footer-contact-details td,
.footer-contact-details a {
    color: #a3a3a3;
    margin: 0 auto 5px;
    font-size: 14px;
}



