/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */

* {
    padding:0;
    margin:0;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */  
}

body 
{
    background:#fff;
    /*background-image:url('/images/frontend/bg.jpg');*/    
}

img 
{   
    max-width:100%; 
    height:auto;
}

img.min100Percent {
    min-width:100%;
}

p {
        font-family:'Times New Roman';
        font-size:14px; 
        line-height:21px;
        padding:0px 14px 0 14px;
}

h1 {
  
}

h2 {

}

h3 {
    margin: 0 0 14px 0;
    padding: 0 0 0 14px;
    font-size: 14px;
    color: #fff;
    font-weight:bold;

}

.primaryForecolor { background: #8ec641; }

.secondaryBackcolor { background: #444; }

.primaryBackcolor { background: #8ec641; }

.secondaryBackcolor { background: #444; }

hr.footer 
{
    min-width:100%;
    height:3px;
    color:#999;
}

.center {
    text-align:center;
}

img.Over {
           filter:alpha(opacity=100); 
           -moz-opacity: 1; 
           opacity: 1; 
           -khtml-opacity: 1; 
           cursor:pointer; 
         }  
		       
img.Over:hover { 
           filter:alpha(opacity=70); 
           -moz-opacity: 0.7; 
           opacity: 0.7; 
           -khtml-opacity: 0.7; 
           cursor:pointer; 
         }
         
a, a:visited  {
      color:#222;   
           text-decoration:none; 
}

a:hover {
      color:#00cd04;  
}

.removePadding  
{
    padding:0px;
}

.center {
    text-align:center;
}



#logo { margin:7px 0 7px 7px; }

a:link, a:visited {
    color:#8ec641;
    text-decoration:underline;
   -moz-transition: color 0.3s ease-in-out;
   -webkit-transition: color 0.3s ease-in-out;
   -o-transition: color 0.3s ease-in-out;
   transition: color 0.3s ease-in-out;    
}

a:hover {
    color:#444;
}


nav.primary
{
    background:#444;
    padding:7px 0 7px 0;
    height:auto;
    margin:0;
}

nav.primary ul,
nav.primary ul li {
    margin:0px;
}

nav.primary ul li {
    display: inline;
    position:relative;
    padding:0 21px 0 14px;
    text-transform:none;
}

nav.primary ul li a {
    color:#fff;
    text-decoration:none;
   -moz-transition: color 0.3s ease-in-out;
   -webkit-transition: color 0.3s ease-in-out;
   -o-transition: color 0.3s ease-in-out;
   transition: color 0.3s ease-in-out;    

}

nav.primary ul li a:hover {
    color:#8ec641;
    border-bottom:1px solid #ccc;
}

nav select {
  display: none;
}



ul.items
{
    list-style-image:url('/images/frontend/itemBullet.png');
    margin:0 0 0 14px;
}

ul.items li {
    margin:0px;
    padding:3px 0 3px 0;
    text-transform:none;
    border-bottom:1px solid #ccc;
    font-size:12px;
}

ul.items li a {
    color:#444;
    text-decoration:none;
   -moz-transition: color 0.3s ease-in-out;
   -webkit-transition: color 0.3s ease-in-out;
   -o-transition: color 0.3s ease-in-out;
   transition: color 0.3s ease-in-out;    
}

ul.items li a:hover {
    color:#8ec641;
}

.addBottom
{
    margin: 0 0 14px;
}


/* #Fancy Stuff 
================================================= */

.rotate {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
     
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
     
    overflow:hidden;
    }  
 
.rotate:hover  {
    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -o-transform:rotate(360deg);
}  

.Fade 
{
   -moz-transition: color 0.5s ease-in-out;
   -webkit-transition: color 0.5s ease-in-out;
   -o-transition: color 0.5s ease-in-out;
   transition: color 0.5s ease-in-out;    
}

.applyBorderLeft
{
    border-left: solid 7px #4e6d21;
}

.applyBorderLeft2
{
    border-left: solid 7px #8ec641;
}

.iFrame, .iFrame2
{
   max-width:100%;
   min-width:100%;
   min-height:270px;

 }


/* #Page Styles
================================================== */

#wrapper {
    background: #fff;
}


#logo
{

}


#myAccount {
    text-align: right;
}

#footerContainer
{
    height: auto;
    width: 100%;
    background: #444;
}

#footer
{
    background: #444;
    text-align:center;
    color:#fff;
    font-size:12px;
    margin:28px 0 0 0;
    height:80px;
    padding:14px 0 0 0;
}

#menuContainer
{
    height: auto;
    width: 100%;
    background: #444;
}



/* Product Page */

img.AdditionalItem
{
    width: 28%;
    margin: 14px 14px 7px 14px;
    border: 1px solid #eaeaea;
    padding: 14px;
}


/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {

        img.AdditionalItem
        {
            width: 43%;
            margin: 14px 14px 7px 14px;
            border: 1px solid #eaeaea;
            padding: 14px;
        }

	}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {

        body { background:#fff;}
        #logo { text-align:center; margin:0; }
        nav.primary { background:#fff; }
        nav ul  { display: none; }
        nav select { display: inline-block; width:100%; height:33px; font-size:18px; }
        #myAccount { display: none; }
        #menuContainer { background: #fff; }

        img.AdditionalItem {
            width: 100%;
            margin: 0px;
            border: 0px solid #eaeaea;
            padding: 0px;
        }

	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {}



/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/