/*
BODY ITEMS
*/
html { 
	font-size: 100%;
	letter-spacing:.05rem
}
body {
	font-family: 'Montserrat', sans-serif !important;
	font-size:16px;
	color: rgb(77, 77, 77);
  font-display: swap;
}
.invalid {
  border:1px solid red;
  border: 1px solid rgba(205, 70, 70, 0.7);
}
.clear {
  clear:both
}
a {
  color: rgb(31, 34, 37);
}
a:hover {
  color:#deaf20
}
.text-large {
  font-size:1.2rem
}
.text-small {
  font-size:0.9rem
}
.text-smaller {
  font-size:0.8rem
}
.text-green {
  color:#90b211
}
.pedHeading {
  color:#989b67;
  letter-spacing:.05rem;
  margin:10px 0
}

/* GR LOADING SPINNER */
.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-color: #333;
  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}
/* END GR LOADING SPINNER */

/*
GENERAL CHECKBOX AND RADIO BOX STYLING
*/

.checkbox-ped {
  opacity: 0;
  position: absolute;   
}

.checkbox-ped, .checkbox-ped-label {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  cursor: pointer;
}

.checkbox-ped-label {
  position: relative;
}

.checkbox-ped + .checkbox-ped-label:before {
  content: '';
  background: #fff;
  border: 2px solid #ddd;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  padding: 2px;
  margin-right: 10px;
  text-align: center;
  -webkit-border-radius: 25%;
  -moz-border-radius: 25%;
  border-radius: 25%;    
}

.checkbox-ped:checked + .checkbox-ped-label:before {
  content: "\f00c";
  font-family: 'FontAwesome';
  background: #90b211;
  color: #fff;
  font-size:16px;
}


.radio-ped-label input[type="radio"] ~ i.fa.fa-circle-o{
  color: #c8c8c8;    
  display: inline;
}
.radio-ped-label input[type="radio"] ~ i.fa.fa-check-circle-o{
  display: none;
}
.radio-ped-label input[type="radio"]:checked ~ i.fa.fa-circle-o{
  display: none;
}
.radio-ped-label input[type="radio"]:checked ~ i.fa.fa-check-circle-o{
  color: #7AA3CC;    
  display: inline;
}
.radio-ped-label:hover input[type="radio"] ~ i.fa {
  color: #7AA3CC;
}
div[data-toggle="buttons"] label.active{
  color: #7AA3CC;
}

div[data-toggle="buttons"] .radio-ped-label {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
  cursor: pointer;
  background-color: none;
  border: 0px solid #c8c8c8;
  border-radius: 3px;
  color: #c8c8c8;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.radio-ped-label:hover {
  cursor:pointer
}
div[data-toggle="buttons"] .radio-ped-label:hover {
  color: #5c78ba;
}
.radio-ped-label-fa {
  font-size:20px
}

/* end checkbox/radio styling */






/* debug */
.debug-red {
  border:1px solid red
}
.debug-blue {
  border:1px solid blue
}
.debug-green {
  border:1px solid green
}

a:hover {
    text-decoration:none
}
.genLink {
    color:inherit
}
.genLink:hover{
    color:#deaf20 !important
}
.vendor {
    color:#666
}
.alert {
  color:red;
}
.subAlert {
  color:red;
  font-size:.8rem
}
.btn-outline-info:hover{
    color:#fff !important
}

/*
PRODUCT PAGE
*/
.displaySizes {
  width:200px;
  margin:2px 0
}
.chooserLink {
  font-size:.8rem;
  cursor:pointer
}
.moreAboutBars{
  display:inline-block; 
  background-color:#ccc; 
  height:1px; 
  width:25%; 
  vertical-align:middle
}
/*
END PRODUCT PAGE 
*/


/* 
EFFECTS 
*/
.fadeAndScaleFast{
  animation-duration: 1.0s;
  animation-name: fadeAndScaleFast;
  animation-timing-function: cubic-bezier(.71,.55,.62,1.57);
  transform-origin: 50% 100%;
  transition: background-color .2s ease-out;
}
@keyframes fadeAndScaleFast{
  from{
      opacity: 0;
      transform: scale(.9, .9);
  }to{
      opacity: 1;
      transform: scale(1, 1);
  }
}
/* 
END EFFECTS 
*/

/*
TOAST 
*/
.app-toast, .app-toast * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.app-toast {
  font-family: 'Helvetica', 'Arial', 'sans-serif';
  font-display: swap;
  position: fixed;
  z-index: 1002;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  background-color: #fff;
  margin: 0;
  text-align: center;
  padding: 20px 40px;
  line-height: 20px;
  color: #FFF;
  background-color: #345A6F;
  z-index: 100005;
  visibility: hidden;
  opacity: 0;
  transition: all 2.0s ease;
  border-radius: 0.24rem;
  cursor: pointer;
}

  .app-toast .toast-icon {
    position: absolute;
    top: 19px;
    left: 10px;
    font-size: 20px;
  }

  .app-toast .toast-close {
    position: absolute;
    top: 19px;
    right: 10px;
    font-size: 20px;
  }

  .app-toast[success] {
    background-color: #dff0d8;
    border: 1px solid #d0e9c6;
    color: #36763d;
  }

  .app-toast[failure] {
    border: 1px solid #CF4647;
    background-color: #FCF6F6;
    color: #CF4647;
  }

  .app-toast[active] {
    visibility: visible;
    opacity: 1;
  }
/*
END TOAST
*/


/*
END BODY ITEMS
*/



/*
GENERAL/ABOVE NAV ITEMS
*/

#main {
	width:100%;
	margin:0 auto;
}



/*
END GENERAL/ABOVE NAV ITEMS
*/




/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

.modal-footer {
    background-color: #ebebeb;
    color: #999;
}
/*
END MODAL ITEMS
*/




/*
NAV ITEMS
*/

#logo {
    position:relative;
    background: url("//www.pedshoes.com/images/logos/logo153x58.png") no-repeat scroll 0 0;
    border: 0 none;
    float: left;
    height: 58px;
    margin: 20px 50px 0 0;
    width: 153px;
    z-index:2
}
#headerLeafSmall {
    float: left;
    margin: 36px 3px 0 5px;
    height: 22px;
    width: 15px;
    background: url(//www.pedshoes.com/images/general/leaf15x22.png) no-repeat;
}
#bagWrap {
  float:right;
  height:50px;
  width:50px;
  margin-top:15px;
  background: url(/images/general/bag40x40.png) center center no-repeat;
  border-color: #ebebeb;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-style: solid;
  border-width: 1px;
}

#bag {
  color:#000 !important;
  font-size: 14px !important;
  text-decoration: none;
}
#bagWords {
  position:relative;
  top:7px;
  left:1px;
  color:#fff !important
}
#bagWords:hover {
  color:#000 !important
}
#favorites, #favorites a {
    background: url(/images/general/favesHeart40x40.png) no-repeat 6px 20px;
    width:50px;
    line-height: 35px;
    vertical-align: bottom;
    font-size: 14px;
    font-weight: bold;
    color: #7a5339;
    text-align: center;
    border: 0;
    text-decoration: none;
}
#favorites a:hover {
    text-decoration: none;
}
#favoritesWrap {
    background-color: #f3f3f3;
    border-color: #e3e3e3;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-style: solid;
    border-width: 1px;
    width:56px
}
#favoritesWrap:hover {
    background-color: #fff;
    border-color: #bdbdbd;
}
.menu-container {
  width: 100%;
  margin: 0 auto;
  /*background: #3498DB;*/
  background: rgba(235, 235, 235, 0.1);
  padding:0 5%;
  border-bottom:1px solid rgba(235, 235, 235, 0.6);
}

.menu-mobile {
  display: none;
  padding: 20px;
}

.menu-mobile:after {
  content: "\f141";
  font-family: "FontAwesome";
  font-size: 2.5rem;
  padding: 0;
  float: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%);
}
/*
.menu-dropdown-icon:before {
  content: "\f013";
  font-family: "FontAwesome";
  display: none;
  cursor: pointer;
  float: right;
  padding: 1.5em 2em;
  background: #fff;
  color: #333;   
}
*/
.menu > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
}

.menu > ul:before, .menu > ul:after {
  content: "";
  display: table;
}

.menu > ul:after { clear: both; }

.menu > ul > li {
  float: left;
  /*background: #3498DB;*/
  /*background: rgba(52, 152, 219, 0.9);*/
  padding: 0;
  margin: 0;
}

.menu > ul > li a {
  text-decoration: none;
  padding: 1.5em 1.2em;
  display: block;
  color:#666;
  font-size:1.1rem;
  letter-spacing:0.1em
}

.menu > ul > li:hover { background: #f0f0f0; }

.menu > ul > li:hover > a { color: #deaf20; }

.menu > ul > li > ul {
  display: none;
  width: 100%;
  background: #f0f0f0;
  padding: 20px;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul:before, .menu > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul:after { clear: both; }

.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
}

.menu > ul > li > ul > li a {
  color: #777;
  padding: .2em 0;
  width: 95%;
  display: block;
  border-bottom: 1px solid rgba(52, 152, 219, 0.5);
  /*font-size: 1.0em*/
}

.menu > ul > li > ul > li a:hover {
  color:#deaf20;
  text-decoration:none
}

.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before, .menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul > li > ul:after { clear: both; }

.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: .8em;
}

.menu > ul > li > ul > li > ul > li a { border: 0; }

.menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 10px 20px;
}

.menu > ul > li > ul.normal-sub > li { width: 100%; }

.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
}
#bagImage {
    background: url(/images/general/bag40x40.png) center center no-repeat;
}
/* 
/*  END NAV ITEMS
*/

/*
/* GENERAL STYLING
*/
.img-fluid {
  border-radius:5px
}
.btn-goGreen{
    color:#90b211;
}
.btn-goGreen:hover{
    color:#deaf20;
}
/* 
/*  END GENERAL STYLING
*/

@media only screen and (max-width: 1060px) {
	.menu > ul > li a {
		font-size:.9rem
	}     
  #favoritesWrap {
    margin-right:10px;
    margin-top:0
  }    
  #bagImage {
    margin-top:5px
  }  
  .menu > ul > li {
    margin-top:10px
  }   
}
@media only screen and (max-width: 960px) {
    #logo{
        background: url("//www.pedshoes.com/images/logos/logo111x39.png") no-repeat scroll 0 0;
        height: 39px;
        margin: 20px 10px 0 0;
        width: 111px;
    }
    .menu > ul > li a {
      font-size:.7rem
    }
    #bagWords {
        left:6px;
    }
    #bagImage {
        background: transparent url("/images/general/bag40x40.png") no-repeat scroll 4px;
        margin-right:5px;
        margin-top:10px
    }
    #favoritesWrap {
      margin-right:20px;
      margin-top:0
    }
    #footerEmail {
        font-size:48px
    }   
    .menu > ul > li {
      margin-top:10px
    }          
}
@media only screen and (max-width: 760px) {
    #main-menu {
      display:none
    }
    #nav-icon3 {
        display:block
    }
    #footerEmail {
        font-size:36px
    }
    #logo { display:block;}	
 
    
    /*
    .menu-container { background: #ebebeb; }

    .menu-container { width: 100%; }

    .menu-mobile { display: block; }

    .menu-dropdown-icon:before { display: block; }

    .menu > ul { display: none; }



    .menu > ul > li a {
      padding: 1.5em;
      width: 100%;
      display: block;
    }

    .menu > ul > li > ul { position: relative; }

    .menu > ul > li > ul.normal-sub { width: 100%; }

    .menu > ul > li > ul > li {
      float: none;
      width: 100%;
      margin-top: 20px;
    }

    .menu > ul > li > ul > li:first-child { margin: 0; }

    .menu > ul > li > ul > li > ul { position: relative; }

    .menu > ul > li > ul > li > ul > li { float: none; }
/*
    .menu .show-on-mobile { display: block; }   
    */
}
@media only screen and (max-width: 575px) {  /* this seems to be a bootstrap breakpoint */
  #search-results-text {
    text-align:center !important;
    border-right:none !important
  } 
    #footerEmail {
        font-size:24px
    }  
}  
/*
END NAV ITEMS
*/



/*
HOMEPAGE ITEMS
*/

.brandbox-large{
	width:584px;
	height:280px;
	margin-top:5px;
	margin-bottom:5px;
	display:inline-block;
	border:1px solid #edefed;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.25);
	-moz-box-shadow: 0 3px 6px rgba(0,0,0,.25);
	box-shadow: 0 3px 6px rgba(0,0,0,.25);
}
.brandbox-large:hover{
    opacity: 0.9;
    filter: alpha(opacity=90);
    cursor: pointer;
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,.35);
	-moz-box-shadow: 0 3px 6px rgba(0,0,0,.35);
	box-shadow: 0 3px 6px rgba(0,0,0,.35);
}
.brandbox-small{
	height:280px;
	margin:5px 0;
	display:inline-block;
}
.brandbox-small:hover{
    opacity: 0.9;
    filter: alpha(opacity=90);
    cursor: pointer;
}

.brandbox-overlay{
	padding-top:200px;
	color:#fff;
	font-size:1.1rem;
	text-decoration:none;
	margin:0 auto;
	line-height:.1em;
	display:inline-block;
}
.brandbox-overlay:hover{
		text-decoration:none;
		color:#fff;
		display:inline-block;
}
.brandbox-gutter-row{
	height:10px;
	display:block;
}
.brandbox-gutter-right{
	margin-right:20px;
	display:inline-block;
}
.swapPhone{
	background: url(/images/general/telephone.jpg) no-repeat;
	background-position:50% 25%;
}
.swapPhone:hover{
	background: url(/images/general/telephoneO.jpg) no-repeat;
	background-position:50% 25%;
}
.swapSumo{
	background: url(/images/general/sumo.jpg) no-repeat;
	background-position:50% 25%;
}
.swapSumo:hover{
	background: url(/images/general/sumoO.jpg) no-repeat;
	background-position:50% 25%;
}
.navLine{
	margin: 53px 0 0;
}
/*
END HOMEPAGE ITEMS
*/



/*
GENERAL ITEMS
*/

.leafSmall {
    margin: 20px 3px 0 5px;
    height: 22px;
    width: 15px;
    background: url(//www.pedshoes.com/images/general/leaf15x22.png) no-repeat;
}
/* border for random items */
.border-blue {
	border: 1px solid rgba(52, 152, 219, 0.5);
}
.border-blue-bottom {
	border-bottom: 1px solid rgba(52, 152, 219, 0.5);
}
.border-green {
	border: 1px solid rgba(144, 178, 17, 0.5);
}
.border-green-bottom {
	border-bottom: 1px solid rgba(144, 178, 17, 0.5);
}
.border-red {
	border: 1px solid rgba(184, 94, 40, 0.5);
}
.border-red-bottom {
	border-bottom: 1px solid rgba(184, 94, 40, 0.5);
}
.border-gold {
	border: 1px solid rgba(222, 175, 32, 0.5);
}
.border-gold-bottom {
	border-bottom: 1px solid rgba(222, 175, 32, 0.5);
}

.border-blue-hover:hover {
	border: 1px solid rgba(52, 152, 219, 0.5);
}
.border-blue-bottom-hover:hover {
	border-bottom: 1px solid rgba(52, 152, 219, 0.5);
}
.border-green-hover:hover {
	border: 1px solid rgba(144, 178, 17, 0.5);
}
.border-green-bottom-hover:hover {
	border-bottom: 1px solid rgba(144, 178, 17, 0.5);
}
.border-red-hover:hover {
	border: 1px solid rgba(184, 94, 40, 0.5);
}
.border-red-bottom-hover:hover {
	border-bottom: 1px solid rgba(184, 94, 40, 0.5);
}
.border-gold-hover:hover {
	border: 1px solid rgba(222, 175, 32, 0.5);
}
.border-gold-bottom-hover:hover {
	border-bottom: 1px solid rgba(222, 175, 32, 0.5);
}
/* end borders */

/*
word overlays: eg new.png, on-sale.png etc
*/
.word-overlay {
  position:absolute;
  bottom:20px; 
  left:10%  
}

/*
END GENERAL ITEMS
*/



/*
BANNER ITEMS
*/


#thisBoxShell0{
  /*border:1px dashed;*/
  margin:10px 0;
	text-align:left;
	display:inline-block;
	width:230px;
	vertical-align:top;
	border-bottom:2px solid #ffffff;
}
#thisBoxShell0:hover{
	display:inline-block;
	border-bottom:2px solid #ff5a00;
}
#thisBoxShell1{
	/*border:1px dashed;*/
  margin:10px 0;
	text-align:left;;
	display:inline-block;
	width:230px;
	vertical-align:top;
	border-bottom:2px solid #ffffff;
}
#thisBoxShell1:hover{
	display:inline-block;
	border-bottom:2px solid #6699cc;
}
#thisBoxShell2{
	/*border:1px dashed;*/
  margin:10px 0;
	text-align:left;;
	display:inline-block;
	width:230px;
	vertical-align:top;
	border-bottom:2px solid #ffffff;
}
#thisBoxShell2:hover{
	display:inline-block;
	border-bottom:2px solid #97b96c;
}
.thisBoxTitle, thisBoxTitle a {
	text-align:left;
	width:229px;
	color: #CC9900;
	font-size: 15px;
	letter-spacing:.06em;
	text-decoration: none;
	border-bottom:1px dashed #ccc;
	/*text-transform:lowercase;*/
	line-height:1.0em;
}
.thisBoxContent, thisBoxContent a {
	text-align:left;
	font-family: Arial,Verdana;
  font-display: swap;
	color:#999;
	font-size:13px;
	/*text-transform:lowercase;*/
	text-decoration:none;
	cursor:pointer
}
.thisBoxContent a:hover {
	color:#DEAF20;
	text-decoration:none;
}
/*
END BANNER ITEMS
*/



/*
FOOTER ITEMS
*/
.bottomBirdieShell {
    float: left;
    height: 40px;
    width: 100%;
    display: inline-block;
    background: url(/images/general/birdie.png) no-repeat;
}

.curvedFooter {
    margin:0 auto;
    padding: 40px 0 40px;
    width: 100%;
    /*min-width: 1000px;*/
    height: 360px;
    border-top: 1px solid #c7c7c7;
    border-bottom: 1px solid #000;
    display: inline-block;
    background: url(/images/backgrounds/footerBack130x360.jpg) repeat-x;
}


.footerSocial {
    margin:30px auto 30px auto;
    height: 60px;
    text-decoration: none;
    /*width: 900px;*/
}
.curvedFooterEmail {
    margin-left: auto;
    margin-right: auto;
    margin-top: -7px;
    padding: 20px 0;
    width: 100%;
    /*min-width: 1000px;*/
    height: 420px;
    background-color: #666;
    font-size: 72px;
    color: #fff;
    display: inline-block;
}
.footerShellEmail {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    height: 200px;
    font-size: 26px;
    letter-spacing: .04em;
    text-align: center;
    text-decoration: none;
    /*width: 950px;*/
    color: #DEAF20;
}
.footerShellSubEmail {
    margin-top: 30px;
    font-size: 14px;
    color: #fff;
}
.curvedFooterEmailInput {
    height: 90px;
    width: 90%;
    margin: 20px;
    padding-left: 10px;
    text-align: center;
    font-size: 80px;
    line-height: 80px;
    border-radius: 8px;
    color: #fff;
    border: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-display: swap;
    -webkit-appearance: textfield;
    outline: 0;
    background-color: #000;
    text-transform: lowercase;
    font-style: italic;
}
.joinButton {
    height: 30px;
    width: 200px;
    margin-top: 10px;
    background-color: #000;
    color: #DEAF20;
    border-radius: 5px;
    font-size: 16px;
    letter-spacing: .07em;
    border: 1px solid #fff;
    font-weight: 700;
}
.joinButton:hover {
    color: #fff;
}
.footerLink, footerLink a {
    text-decoration: underline;
    color: #7a5339;
    letter-spacing: 1px;
}
.footerLink:hover {
    text-decoration: underline;
    color: #deaf20;
    letter-spacing: 1px;
}
.boxContent {
    padding: 0 10px;
    color: #7a5339;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: .5px;
    text-align: center;
}
.boxTitle, boxTitle a {
    color: #C90;
    font-size: 18px;
    text-align: center;
    margin-bottom: 5px;
    text-decoration: none;
}
/*
END FOOTER ITEMS
*/




/*
INSTAGRAM FOOTER
*/
#instafeed{
  

}
#instafeed img{
  width:300px;
  height:300px;
	box-shadow: 0 1px 6px #ccc;
	border-radius:1px;
  margin:10px;
  display:inline-block;

}
.instafeed-image-window {
  z-index: 1;
  -webkit-transition: #ccc .05s ease-out;
  -moz-transition: #ccc .05s ease-out;
  -o-transition: #ccc .05s ease-out;
  transition: #ccc .05s ease-out;
  -moz-transition:background-color .05s ease-out;
  vertical-align: middle;    
  display:inline-block;   
}
.instafeed-image-window:hover {
  opacity:90%;
}
.instaCaption{
	font-size:14px;
	color:#666;
	display:block;
	margin-top:5px;
	width:300;
	overflow:hidden;
	text-align:left;
}
.instaImageWrap{
	display:inline-block;
	vertical-align:top;
	width:302px;
	height:400px;
	margin:20px
}
.instaLikesShell{
	background: rgba(255, 255, 255, 0) url("/images/general/favesHeart40x40.png") no-repeat scroll 0 0;
  float:right;
  width:40px;
  height:40px;
  margin-right:5px
}
.instaLikes{
  font-size:12px;
  color:#deaf20;
	padding-top:7px;
}
/*
END INSTAGRAM FOOTER
*/


/*
    ABOUT & GENERAL PAGES
*/
.pedGivesBack_ImageHead {
  /*left: 200px;*/
  height: 500px;
  width: 700px;
  background: url('/images/general/aboutPedHeader.jpg') no-repeat;
  margin:20px auto
}
.about_ImageHead {
  /*left: 200px;*/
  height: 500px;
  width: 700px;
  background: url('/images/general/contactPedHeader.jpg') no-repeat;
  margin:20px auto
}
.about_banner_back {
  width: 700px;
  height: 60px;
  margin-top: 0;
  background: #333;
  opacity: .6;
  filter: alpha(opacity=60);
  position:absolute;
}
.about_banner_text {
  width: 700px;
  margin:10px auto;
  color: #fff;
  opacity: 0.9;
  filter: alpha(opacity=90);
  font-size: 1.5em;
  letter-spacing: .15em;
  font-style: italic;
  position:absolute
}
.faqs{
	text-align:left;
	margin:2px 0 20px 20px;
}
.faqs .FAQquestion{
	cursor:pointer;
	letter-spacing:.05em;
	line-height:1.1em;
	color: #666666;
	margin-bottom:10px;
}
.faqs .FAQquestion.active{
	color:#deaf20;
}
.faqs div{
	position:relative;
}
.faqs div p{
	padding:0;
}
.FAQanswer {
	letter-spacing:.05em;
	line-height:1.1em;
	color: #666666;
	text-decoration:none;
	margin-left:20px;
}

.FAQanswerLink{
	color: #666666;
	text-decoration:none;
}
.FAQanswerLink:hover {
	color: #DEAF20;
	text-decoration:none;
}
.testimonialText {
  font-size:14px
}
/*
    END ABOUT & GEBERAL PAGES
*/


/*
    PRODUCT LINE SUMMARY PAGE
*/

/*
    END PRODUCT LINE SUMMARY PAGE
*/