﻿/* http://cssminifier.com/ */

/* 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 */




html 
{
border: 1.5em solid #667345;
-webkit-text-size-adjust: none;
}

body {
	margin:0;
	padding:1em;
	color: #667345;
    font-family: 'Times New Roman', serif;
    font-size:100%; /* GLOBAL FONT SIZE SET HERE FROM HERE ON 75em is 100% */
    font-weight: normal;
    line-height: 1.5em;
    text-align: left;
    text-decoration: none;
    
}


/********************** DEFAULT *************************/ 

p, span, div  {
font-family: 'Times New Roman', serif;
font-size: 1em;
color: #667345;
}

p {
margin: 0 0 0;
font-size: 1em; 
line-height: 1.3em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

h1  {
margin: 0 0 1em 0;  
padding: 0;
font-size: 3em;
line-height: 1em;
font-family: 'Times New Roman', serif;
color: #667345;
font-weight:normal;
} 

h2  {
font-family: 'Times New Roman', serif;
color: #667345;
font-weight: normal;
font-size: 2.5em;
line-height: 1.5em;
text-align: center;
} 

h3, h4, h5, h6  {
font-family: 'Times New Roman', serif;
color: #CBD401;
font-weight: normal;
font-size: 2em;
line-height: 1.5em;
text-align: left;
} 

h2 span, h3 span, h4 span, h5 span, h6 span  {
color: #667345;
} 


a  {
color: #667345;
} 

a:hover  {
color: #667345;
} 

/*
a:link  {
color: #545454;
} 

a:visited  {
color: #545454;
}   

a:active  {
color: #545454;
}  

a:focus  {
color: #545454;
}  
*/

input {
color: #667345;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;	
font-family: 'Times New Roman', serif;
-webkit-appearance: none;
-webkit-border-radius: 0;
}

img {
display:block;	
}


.clear {
 clear: both;	
}



.disabled {
	background-color: #EFEFEF;
	cursor: default !Important; 
}


/* LAYOUT */


.wrapper {
	max-width:70em;
	width:100%;
	background-color:#FFF;
	margin: 0 auto;
	padding:0;
	border:0;
	overflow: hidden;
	box-sizing:border-box;
}

header {
    margin: 0 0 1em;
    overflow: hidden;
}

header .logo {
    width: 12%;
    float: left;
}


header .logo img {
    width: 100%;
}


#mainmenu {
    /* float: right; */
    width: 100%;
    text-align: center;
    clear: both;
    margin-top: 2em;
}

#branding {
    overflow: hidden;
}

#kca {
    float: none;
    width: 88%;
    text-align: right;
}

    #kca h5 {
        font-size: 3em;
        line-height: 1em;
        font-weight: normal;
        text-align: center;
        color: #667345;
    }

    #kca h6 {
        font-size: 1.2em;
        line-height: 2em;
        font-weight: normal;
        text-align: center;
        color: #667345;
        /* text-transform: uppercase; */
        font-family: arial;
    }

/********************** DROPDOWN MENU *************************/




nav#main 
{
    clear: both;
	margin-top: 2em;
}

    nav#main ul {
        list-style: none;
        margin: 0;
        /* Clear floats */
        float: none;
        /*width: 100%;*/
        /* Bring the nav above everything else--uncomment if needed. */
        position: relative;
        z-index: 5;
        text-align: center;
    }

nav#main ul li{
	display: inline-block;
	text-align: center;
	float: none;
	position:relative;
    padding: 0 0.5em 0 1em;
}

nav#main ul a{
	display:block;
	color:#86A30D;
	text-decoration:none;
	font-size: 1.2em;
	padding: 0;	
	text-align: center;
	text-transform: capitalize;
}

nav#main a:hover{
	color:#CBD401;
}

	nav#main ul li:last-child a {

	}	

nav#main ul a.active{
	color: #CBD401;
}

/*--- DROPDOWN ---*/
nav#main ul ul{
	background:#667345; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	/*background:rgba(255,255,255,0);  But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9990.55em; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	z-index:1;
	margin: 0;
}
nav#main ul ul li{
	/*padding-top:0.1em; /* Introducing a padding between the li and the a give the illusion spaced items */
    float: none;
    padding: 0 1em 0 1em;
	background-color: #CBD401;
	font-size: 1em;
    text-align: left;
}
nav#main ul ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	padding: 0;
	text-align: left;
    border-right: none;
}
nav#main ul li:hover ul{ /* Display the dropdown on hover */
	/*left:0;*/ /* Bring back on-screen when needed */
	/* width: 100%; */
	font-size: 1em;
	z-index: 1000;
}
nav#main 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:#A2CEC4;
	color: #FFF;*/
	color: #CBD401;
}
nav#main 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;
	color: #FFFFFF;
}
nav#main ul li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	color: #9DA054;
}



/********************** GALLERY *************************/


.gallery {
    clear: both;
    padding: 0 0 2em;
    margin: 0 0 2em;
    border-bottom: 2px solid #667345;
}

.gallery img {
    width: 100%;
}



/********************** HOME *************************/

section.three {
    clear: both;
    overflow: hidden;
    margin-bottom: 3em;
    border-bottom: 2px solid #667345;
}

section.three a {
    text-decoration: none;
}

section.three .three_1, section.three .three_2, section.three .three_3 {
    float: left;
}

section.three .three_1 {
    width: 32%; 
}

section.three .three_2 {
    width: 32%; 
    margin: 0 2%;
}

section.three .three_3 {
    width: 32%; 
}


section.three div.img {
    position: relative;
}

    section.three a {
    }

    section.three div.img div.readmore {
        z-index: 0;
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: #FFF;
        opacity: 0.8;
        padding: 2% 0 2% 0;
        cursor: pointer;
    }

    section.three div.img div.readmore span {
        text-align: right;
        padding: 0 2%;
        display: block;
        color: #CBD401;
    }



section.three img {
    width: 100%;
}

section.three p {
    text-align: center;
    margin: 1em 0;
}

section.three .clear2 {

}

section.three .clear3 {
    clear: both;
    height: 4em;
}

section.three .clearfix {
    clear: both;
    height: 4em;
}


/********************** SUPPLIERS *************************/


section.three .supplier p {
   margin: 0.5em 0 0 2em;
}

section.three .supplier a {
   text-decoration: none;
}

section.three .supplier p > span {
   background-color: #CBD401;
   width: 1em;
   height: 1em;
   display: inline-block;
   padding: 0.25em;
   margin: 0 0 0 -2em;
   color: #FFF;
   position: absolute;
}

section.three h3 {
    font-size: 1.5em;
    text-align: left;
}

section.three p.address {
    text-align: left;
}

section.three p.number {
    text-align: left;
    font-weight: bold;
}

section.three p.email {
    text-align: left;
    font-weight: bold;
}

    section.three p.email a {
        text-decoration: none;
    }

section.three p.fax {
    text-align: left;
    font-weight: bold;
}

section.three p.www {
    text-align: left;
    font-weight: bold;
}

    section.three p.www a {
        text-decoration: none;
    }

section.three p.social {
    text-align: left;
    font-weight: bold;
}

    section.three p.social a {
        text-decoration: none;
    }

section.three p.notes {
    text-align: left;
    font-weight: normal;
    font-style: italic;
}

section.three .supplier {
   padding: 0.5em;
   position: relative;
}

section.three .supplier:hover {
   background-color: #EFF1EC;
}

    section.three .supplier .arrow {
       display: none;
    }

    section.three .supplier:hover .arrow {
       display: block;
       position: absolute;
       top: 40%;
       left: 45%;
       font-size: 3em;
    }


/********************** SUPPLIERS MENU *************************/

nav#suppliers {

}

nav#suppliers ul {
    padding: 0;
    margin: -2em 0 2em;
    overflow: hidden;
}

nav#suppliers li {
    width: 33%;
    float: left;
}

nav#suppliers li:last-child {
    width: 34%;
}


nav#suppliers li a { 
    width: 100%;
    display: block;
    text-decoration:none;
    text-align: center;
    padding: 1em 0;
    background-color: #CBD401;
    margin: 0;
}

nav#suppliers li a:hover { 
    background-color: #86A30D;
    color: #FFF;
}


/********************** CONTACT/SUPPLIER DETAILS *************************/

.supplier_details {
   border-bottom: 2px solid #667345;
    clear: both;
    margin-bottom: 3em;
    padding-bottom: 3em;
    overflow: hidden;
}

section.contact {
   width: 50%;
   float: left;
}

section.contact .details p {
   margin: 0.5em 0 0 2em;
   padding: 0;
}

section.contact span {
   background-color: #CBD401;
   width: 1em;
   height: 1em;
   display: inline-block;
   padding: 0.25em;
   margin: 0 0 0 -2em;
   color: #FFF;
   position: absolute;
}

section.contact h3 {
    font-size: 1.5em;
    text-align: left;
}

section.contact p.address {
    text-align: left;
}

section.contact p.number {
    text-align: left;
    font-weight: bold;
}

section.contact p.email {
    text-align: left;
    font-weight: bold;
}

section.contact p.email a {
    text-decoration: none;
}

section.contact p.fax {
    text-align: left;
    font-weight: bold;
}

section.contact p.www {
    text-align: left;
    font-weight: bold;
}

section.contact p.www a {
    text-decoration: none;
}

section.contact p.social {
    text-align: left;
    font-weight: bold;
}

section.contact p.social a {
    text-decoration: none;
}

section.contact p.notes {
    text-align: left;
    font-weight: normal;
    font-style: italic;
}

section.contact .details {
   padding: 0.5em;
}

section.contact .details:hover {
   /*background-color: #EFF1EC;*/
}


section.map {
    overflow: hidden;
}

#map-canvas {
    height: 500px;
    width: 100%;
    margin: 0;
    padding: 0;
}


/********************** CONTENT ONLY *************************/


div.content {
    clear: both;
    overflow: hidden;
    padding-bottom: 4em;
    margin: 3em 0;
    border-bottom: 2px solid #667345;
}

div.content.noside section {
    width:100%;
    float: none;
}


div.content section {
    width: 70%;
    float: left;
}

    div.content.fullwidth section {
        width: 100%;
        float: none;
    }

div.content aside {
    width: 25%;
    float: right;
}

    div.content.fullwidth aside {
        width: 0;
        float: none;
        display: none;
    }


/********************** SUB NAV *************************/


nav#sub {

}

nav#sub ul {

}

nav#sub ul li {
    border-bottom: solid 2px #667345;
}

nav#sub ul li a {
    display: block;
    padding: 1em;
    text-decoration: none;
    font-size: 1.2em;
}

nav#sub ul li a:hover {
    background-color: #CBD401;
    color: #FFF;
}




/***** ICON FONTS *****/

@font-face {
	font-family: 'kca';
	src:url('/fonts/kca.eot?r1d37l');
	src:url('/fonts/kca.eot?#iefixr1d37l') format('embedded-opentype'),
		url('/fonts/kca.woff?r1d37l') format('woff'),
		url('/fonts/kca.ttf?r1d37l') format('truetype'),
		url('/fonts/kca.svg?r1d37l#kca') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'kca';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


.icon-reply:before {
	content: "\e61c";
    color: #FFF;
    padding: 0 1em 0 0;
}

.icon-forward:before {
	content: "\e61b";
}

.icon-link:before {
	content: "\e61e";
}

.icon-search:before {
	content: "\e61d";
    color: #FFF;
}



.back {
    margin: 2em 0 0 0;
    padding: 1em;
    background-color: #CBD401;
    color: #FFF;
}

.back a {
    text-decoration :none;
    color: #FFF;
    display: block;
}


/********************** FOOTER *************************/

footer {
clear: both
}

footer .left {
width: 50%;
float: left;
}

footer .right {
width: 50%;
float: right;
}

footer .logo {
    width: 15%;
    float: left;
    margin-right: 5%;
}


footer .logo img {
    width: 100%;
}


footer .credits {
    width: 70%;
    float: left;
}

footer .credits p:first-child {
    font-size: 1.5em;
}

footer .credits p a {
    text-decoration: none;
}


nav#footer 
{

}

nav#footer ul {
	list-style:none;
	margin: 0;
	/* Clear floats */
    float: none;
	/*width: 100%;*/
	/* Bring the nav above everything else--uncomment if needed. */
	position:relative;
	z-index:5;
	text-align: right;
}

nav#footer ul li{
	display: inline-block;
	text-align: center;
	float: none;
	position:relative;
    padding: 0 0 0 0.5em;
}

nav#footer ul a{
	display:block;
	color:#86A30D;
	text-decoration:none;
	font-size: 1em;
	padding: 0;	
	text-align: center;
	text-transform: capitalize;
}

nav#footer a:hover{
	color:#CBD401;
}

	nav#footer ul li:last-child a {

	}	

nav#footer ul a.active{
	color: #CBD401;
}



/*************** PAYPAL AND DOWNLOADS *************/

form.paypal {
    text-align: center;
    /* border-bottom: 1px solid #86A30D; */
    padding-bottom: 2em;
    clear: both;
}

.form_button {
   width: 50%;
   border: 0;
   padding: 1em;
   font-size: 1.5em;
   color: #FFF;
   background-color: #CBD401;
   cursor: pointer;
}

img.download_pdf {
    float: right;
    width: 25%;
    margin-left: 2em;
}

.big_button {
   margin: 1.5em 25% 0;
   width: 50%;
   border: 0;
   padding: 1em;
   font-size: 1.5em;
   color: #FFF;
   background-color: #CBD401;
   display: block;
   text-decoration:none;
   text-align: center;
   cursor: pointer;
}


/*************** HTML AREA *************/	

.htmlarea
{
	text-align: left;
	clear: both;
}

.htmlarea p
{
	font-weight: normal;
	text-align: left;
	margin: 0;
	padding: 0 0 15px;
}

.htmlarea h1
{
	color: #667345;
	margin: 0px 0px 15px 0px;
	text-align: left;
}

.htmlarea h2,.htmlarea h3,.htmlarea h4,.htmlarea h5,.htmlarea h6
{	

	color: #CBD401;
	margin: 0px 0px 15px 0px;
	text-align: left;
}




.htmlarea ul,.htmlarea ol
{
	list-style: none;
	text-align: left;
	padding: 2px 0 6px 0px;
	margin: 0px;
}


.htmlarea li
{
	padding: 0px 0px 15px 10px;
	margin: 0;
}

.htmlarea table
{
font-size:1em;
margin: 0 0 20px 0;
border-bottom: 2px solid  #CCC;
}	

	.htmlarea table tr
	{
	
	}	

	.htmlarea table tr th
	{
	padding: 3px;
	text-align: left;
	background-color: #FFF;
	color: #3A3A3A;
	}	

	.htmlarea table tr td
	{
	padding: 3px;
	text-align: left;	
	}
	