html {
  scroll-behavior: smooth;
}

body{
 padding: 0px;
 margin: 0px;
 margin-left: auto;
 margin-right: auto;
 font-family: 'montserrat', sans-serif;
 color: #979695;
 font-style: normal;
 font-weight: 400;
 font-size: 14px;
 line-height: 22px;
 overflow-x: hidden;
 background-color: #111111;
}

section {
  opacity: 0;
  transform: translate(0, 150px);
  transition: all .8s ease;
}

section.visible {
  opacity: 1;
  transform: translate(0, 0px);
  transition-delay: 0.2s;
  z-index: -1;
}

a{
  color: #CA9B4E;
  text-decoration: underline;
  cursor: pointer;
}

div{
  overflow-anchor: none;
  box-sizing: border-box;
}

button{
  font-family: inherit;
  transition: all 0.5s ease;
  margin-bottom: 0px;
  padding: 20px;
  border: 0;
  background: none;
  outline: none;
  box-sizing: border-box;
  width: auto;
  height: auto;
  font-size: inherit;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, .1);
  margin-top: 40px;
}
button a {
  font-family: inherit;
  transition: all 0.5s ease;
  margin-bottom: 0px;
  padding: 20px;
  border: 0;
  background: none;
  outline: none;
  box-sizing: border-box;
  width: auto;
  height: auto;
  font-size: inherit;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  cursor: pointer;
  background-color: rgba(255, 255, 255, .1);
  margin-top: 40px;
}

button:hover{
  background-color: rgba(202, 155, 78, 1);
}
button:hover a {
  background-color: rgba(202, 155, 78, 1);
}
.dropbtn:hover a {
  transition: unset;
  background-color: unset;
}
#navButton{
  margin: 0px;
  display: flex;
  background-color: none;
}

nav{
  overflow: visible;
  transition: all .3s ease;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  position: fixed;
  top: 0px;
  padding: 0px 0px;
  width: 100vw;
  max-width: 100vw;
  height: 90px;
  max-height: 90px;
  z-index: 1;
  background-color: #FCFBE6;
  border-bottom: 1px solid #111111;
  z-index: 999;
}

nav ul,li{
  list-style: none;
  display: inline-block;
  margin-left: 0px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-style: normal;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  margin-right: 20px;
  padding: 0;
}

.nav-wrapper{
  display: flex;
  flex-wrap: nowrap;
  margin:auto;
  width: auto;
  height: 100%;
  background-color: none;
}

.nav-content-wrapper{
  padding: 0px 50px 0px 50px;
  display: flex;
  width: auto;
  height: 100%;
  background-color: none;
  overflow-y: visible;
}

#navHolder{
  padding: 0px;
  padding-left: 50px;
  padding-right: 30px;
  background-color: none;
}

#mobileNav{
  padding: 0px;
  background-color: none;
  display: none;
}

.logoHolder{
  width: auto;
  border-right: 1px solid #111111;
}

.nav-logo{
  width: auto;
  height: 60px;
}

.nav-london{
  width: auto;
  height: 40px;
}

.nav-content{
  margin: auto 0px;
  width: auto;
  height: auto;
  background-color: none;
}

.hamburger-icon{
  cursor: pointer;
  margin-top: auto;
  margin-bottom: auto;
  box-sizing: border-box;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  background-color: none;
  padding: 0px 0px;
}

.hamburger-icon span{
  transition: all 0.5s ease;
  box-sizing: border-box;
  display: block;
  width: 27px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #000;
  z-index: 1;
}

#bottomBun{
  margin-bottom: 0px;
  width: 17px;
  margin-left: 10px;
}

.dropbtn {
  transition: all 0s ease;
  border-radius: 5px 5px 0px 0px;
  padding: 15px;
  color: #000;
  display: inline-block;
  margin: 0px;
  background-color: none;
  font-size: 16px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-style: normal;
  text-transform: uppercase;
}
.dropbtn a {
	text-decoration: none;
	color: #000;
	background-color: none;
}

.noDrop{
  border-radius: 5px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}



/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  border-radius: 0px 5px 5px 5px;
  padding: 10px;
  display: none;
  position: absolute;
  background-color: #000;
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: #fff;
  padding: 10px 10px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  border-radius: 5px;
  background-color: #CA9B4E;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  color: #CA9B4E;
  background-color: #000;
}
.dropdown:hover .dropbtn a {
  color: #CA9B4E;
  background-color: unset;
}
.dropbtn:hover a {
  color: #CA9B4E;
  background-color: none !important;
}

/*mobile site navigation*/
.mobile-nav-container{
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: -999;
  padding: 100px;
  position: absolute;
  top: 0px;
  width: 100vw;
  height: 100%;
  max-height: 100%;
  overflow: scroll;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
}

.collapsible {
  position: relative;
  transition: all 0.3s ease;
  font-family: inherit;
  font-weight: 700;
  font-size: 30px;
  color: #CA9B4E;
  cursor: pointer;
  padding: 15px 0px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  overflow: hidden;
}
.collapsible a {
  position: relative;
  transition: all 0.3s ease;
  font-family: inherit;
  font-weight: 700;
  font-size: 30px;
  color: #CA9B4E;
  cursor: pointer;
  padding: 15px 0px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  overflow: hidden;
}

.collapsible::after {
  content: "";
  min-width: 10px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: none;
  background-image: url("images-full-custom/nav_arrow.svg");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}
.collapsible::after a {
  content: "";
  min-width: 10px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: none;
  background-image: url("images-full-custom/nav_arrow.svg");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
}

.noCollapse::after{
  content: "";
  background-color: none;
  background-image: none;
}
.noCollapse a {
  text-decoration: none;
}
.noCollapse::after a {
  content: "";
  background-color: none;
  background-image: none;
}

.active, .collapsible:hover {
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0);
}
.active, .collapsible:hover a {
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0);
}

.collapse-content {
  transition: all 0.3s ease;
  padding: 0 20px;
  display: none;
  overflow: hidden;
  background-color: none;
}

.collapse-content ul,li {
  list-style: none;
  display: block;
  margin-left: 0px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-style: normal;
  text-transform: uppercase;
  color: #000;
  margin-top: 20px;
  margin-right: 20px;
  padding: 0;
}

.collapse-content a{
  text-decoration: none;
  color: #fff;
}

h1{
  margin-top: auto;
  margin-bottom: 40px;
  font-family: 'ivypresto-display', serif;
  line-height: 100px;
  color: inherit;
  font-weight: 400;
  font-style: normal;
  font-size: 100px;
}

h2{
  margin-top: auto;
  margin-bottom: 40px;
  font-family: 'ivypresto-display', serif;
  line-height: 70px;
  color: #fff;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
}

h3{
  font-family: 'montserrat', sans-serif;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-style: normal;
  text-transform: uppercase;
  color: #fff;
}

h4{
  font-family: 'montserrat', sans-serif;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-style: normal;
  text-transform: uppercase;
  color: #000;
}

blockquote {
  font-family: 'ivypresto-display', serif;
  line-height: 56px;
  color: #fff;
  font-weight: 400;
  font-style: italic;
  font-size: 46px;
}

blockquote::after{
  margin: auto;
  margin-top: 40px;
  text-align: center;
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #CA9B4E;
}

blockquote::before{
  margin: auto;
  margin-bottom: 40px;
  text-align: center;
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #CA9B4E;
}

blockquote p {
  display: block;
}

cite {
  font-family: 'ivypresto-display', serif;
  font-weight: 400;
  display: block;
  font-size: 16px;
  line-height: 24px;
}

cite span {
  color: #fff;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin-bottom: 0px;
}

input[type=text]{
  font-family: inherit;
  font-size: inherit;
  border-radius: 5px;
  display: inline-block;
  width: 100%;
  border: none;
  padding: 20px 20px;
  margin: 40px 0;
  color: #fff;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

input[type="submit"] {
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  border-radius: 0px 5px 5px 0px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 20px 20px;
  margin-left: -100px;
  height: 100%;
  width: 100px;
  color: #fff;
  border: 0;
  background-color: #CA9B4E;
  -webkit-appearance: none;
}

.site-wrapper{
  padding: 0px;
  width: 100vw;
  max-width: 100%;
  height: auto;
  padding: 0px;
  background-color: none;
}

.home-hero-container{
  overflow: hidden;
  margin-top: 90px;
  display: flex;
  width: 100%;
  /*height: calc(100vh - 100px);*/
  max-height: 100%;
  max-width: 100%;
  background-color: #FCFBE6;
  background-image: linear-gradient(rgba(251, 251, 231, 0) 65%, rgba(17, 17, 17, 1) 95%, rgba(17, 17, 17, 1)), url('images-full-custom/lion_bg.svg');
  background-repeat: no-repeat;
  background-position: right 20px;
}

.home-hero-content-container{
  display: inline-block;
  color: #CA9B4E;
  padding: 50px;
  width: 100%;
  height: auto;
  margin: auto 0px auto 0px;
  background-color: none;
}

.home-hero-content{
  color: #000;
  display: block;
  width: 25%;
  background-color: none;
}

.content-wrapper{
  text-align: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  background-color: none;
}

#servicesWrapper{
  padding-top: 0px;
  padding-bottom: 100px;
  background-color: none;
  margin-top: -80px;
}

.max-content-wrapper{
  padding: 0px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0px auto;
  width: 100%;
  max-width: 1400px;
  background-color: none;
}

#noFlex{
  display: inline-block;
  text-align: left;
  background-color: none;
  padding-top: 0px;
  padding-bottom: 100px;
}

.service-box-container{
  /*cursor: pointer;*/
  text-align: left;
  margin: 0px;
  display: flex;
  flex-wrap: nowrap;
  width: calc(100% / 3 - 5px);
  max-width: calc(100% / 3 - 5px);
  height: auto;
  background-color: #fff;
}

.service-box-image{
  width: 0px;
  height: auto;
  padding-left: 33.3%;
  background-color: #ccc;
  background-image: url('images-full-custom/002.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#multFamily{
  background-image: url('images-full-custom/001.jpg');
}

#agSearch{
  background-image: url('images-full-custom/003.jpg');
}

.service-box-content-container{
  padding: 20px;
  display: flex;
  width: auto;
  height: auto;
  background-color: none;
}

.service-box-content{
  color: #908F9D;
  margin: auto;
  width: 100%;
  height: auto;
  background-color: none;
}

.bio-container{
  color: #979695;
  display: inline-block;
  float: right;
  width: 40%;
  max-width: 40%;
  height: auto;
  background-color: none;
  margin: auto;
}

.bio-photo-container{
  position: relative;
  display: inline-block;
  width: 40%;
  height: 100px;
  padding-bottom: 50%;
  background-color: black;
  z-index: 1;
  background-image: url('images-full-custom/jcm_profile_02.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bio-photo-container::after{
  opacity: 1;
  margin-left: calc(100% - 10px);
  margin-top: 40px;
  position: absolute;
  content: "";
  display: inline-block;
  width: 7%;
  height: 90%;
  background-color: #CA9B4E;
  z-index: -1;
}

#flexWrap{
  background-color: none;
  flex-wrap: wrap;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 100px;
}

.quote-holder{
  flex-grow: 1;
  text-align: center;
  width: auto;
  max-width: 1000px;
  background-color: none;
  margin: 0px auto;
}

.review-button{
  padding-top: 50px;
  flex-grow: 1;
  width: 100%;
  background-color: none;
}

footer{
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 0px;
  padding: 150px 0px;
  font-size: 12px;
  width: 100%;
  max-width: 100%;
  height: auto;
  background-color: #000;
}

footer img{
  display: block;
  width: 120px;
  height: auto;
  margin-bottom: 40px;
  opacity: 0.4;
}

footer a{
  color: inherit;
}

.footer-box{
  padding: 50px;
  width: auto;
  height: auto;
  background-color: none;
  margin-left: 0px;
}

#rmBug{
  margin:0px;
  display: inline-block;
  width: auto;
  height: 9px;
  padding-right: 10px;
}

video {
  display: block;
}

/*start the media queries*/

@media only screen and (max-width: 1401px){

  .home-hero-content{
    color: #000;
    display: block;
    width: 50%;
    background-color: none;
  }

  .max-content-wrapper{
    padding: 0px 20px;
    max-width: 100%;
  }

}


@media only screen and (max-width: 1125px){

  .home-hero-container{
    margin-top: 80px;
    background-image: linear-gradient(rgba(251, 251, 231, 0) 65%, rgba(17, 17, 17, 1) 95%, rgba(17, 17, 17, 1)), url('images-full-custom/lion_bg_mobile.svg');
  }

  #navHolder{
    display: none;
  }

  #mobileNav{
    display: flex;
  }

  .mobile-nav-container{
    display: block;
  }

  footer{
    flex-wrap: wrap;
  }

  .footer-box{
    width: 50%;
  }

}

@media only screen and (max-width: 990px){

  .home-hero-content{
    color: #000;
    display: block;
    width: 100%;
    background-color: none;
  }

  .bio-container{
    float: right;
    width: 50%;
    max-width: 100%;
  }

  .bio-photo-container{
    position: relative;
    display: inline-block;
    width: 40%;
    padding-bottom: 50%;
  }

}

@media only screen and (max-width: 800px){

  .bio-container{
    float: none;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
  }

  .bio-photo-container{
    position: relative;
    display: inline-block;
    width: 90%;
    padding-bottom: 100%;
  }
}

@media only screen and (max-width: 600px) {

  body{
    font-size: 12px;
  }

  h1{
    line-height: 65px;
    font-size: 75px;
  }

  h2{
    line-height: 55px;
    font-size: 50px;
  }

  blockquote {
    line-height: 27px;
    font-size: 21px;
  }

  nav{
    height: 90px;
    max-height: 90px;
    text-align: center;
  }

  .mobile-nav-container{
    padding: 60px 30px 30px 30px;
  }

  .collapsible {
    font-size: 24px;

  }
  .collapsible a {
    font-size: 24px;
	text-decoration: none;
  }

  .nav-content-wrapper{
    text-align: center;
    padding: 0px 20px;
    width: auto;
  }

  .nav-logo{
    display: block;
    height: 50px;
    max-height: 50px;
  }

  .nav-london{
    display: block;
    width: 100%;
    max-height: 30px;
  }

  .home-hero-content-container{
    padding: 20px;
  }

  .service-box-container{
    margin-top: 0px;
    width: 100%;
    max-width: 100%;
    flex-grow: 1;
    margin-bottom: 10px;
  }

  #servicesWrapper{
    margin-top: 0px;
    display: grid;
    overflow: hidden;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  footer{
    box-sizing: border-box;
    font-size: 10px;
    margin-top: 0px;
    padding: 50px 0px;
    flex-wrap: wrap;
  }

  .footer-box{
    margin-left: 0px;
    height: auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0px;
    background-color: none;
    padding: 25px 20px;
  }

}

@media only screen and (max-width: 321px) {

  h1{
    line-height: 55px;
    font-size: 55px;
    margin-bottom: 30px;
  }

  nav{
    height: 60px;
    max-height: 60px;
    text-align: center;
  }

  .home-hero-container{
    margin-top: 60px;
  }

  .nav-logo{
    display: block;
    height: 35px;
    max-height: 35px;
  }

  .nav-london{
    display: block;
    width: 100%;
    max-height: 30px;
  }

  .home-hero-container{
    margin-top: 40px;
    height: 100vh;
    max-height: 100vh;
  }

  input[type=text]{
    font-size: 10px;
    padding: 20px 10px;
  }

  input[type="submit"] {
    font-size: 10px;
    padding: 20px 10px;
  }

}
#daSellingLandingPageFormInputAddy {
	font-family: inherit;
	font-size: inherit;
	border-radius: 5px;
	display: inline-block;
	width: 100%;
	border: none;
	padding: 20px 20px;
	margin: 40px 0px 0px 0px;
	color: #fff;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 1);
	text-transform: uppercase;
	letter-spacing: 1.5px;
}
#daJuanCarlosFormInputAddyResultsWrapper {
	/*position: absolute;*/
	bottom: 0px;
	left: 1px;
	width: 99%;
	height: 0px;
	overflow: hidden;
	margin: 0px 0px 50px 0px;
	background-color: #FFFFFF;
	-moz-border-radius: 0px 0px 5px 5px;
	-webkit-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
	-webkit-transition: height 0.25s ease-out, bottom 0.25s ease-out;
	-moz-transition: height 0.25s ease-out, bottom 0.25s ease-out;
	-o-transition: height 0.25s ease-out, bottom 0.25s ease-out;
	transition: height 0.25s ease-out, bottom 0.25s ease-out;
	z-index: 9999;
}
#daJuanCarlosFormInputAddyResults {
	left: 32px;
	margin: 0px 0px 0px 0px;
}
.your_homes_value_searchy_results_table_td {
	cursor: pointer;
	padding: 4px 4px 4px 4px;
}
.your_homes_value_searchy_results_table_td_off {
	background-color: none;
}
.your_homes_value_searchy_results_table_td_on {
	background-color: #CA9B4E;
}
.w100h100 {
	width: 100%;
	height: 100%;
}
.alignLeft {
	text-align: -moz-left;
	text-align: left;
}
.alignCenter {
	text-align: -moz-center;
	text-align: center;
}
.vAlignTop {
	vertical-align: top;
}
.vAlignMiddle {
	vertical-align: middle;
}
.vAlignBottom {
	vertical-align: bottom;
}
#searchingDiv {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(202,155,78,0.4);
	opacity: 0;
	z-index: 9999999;
	-ms-transition: opacity .35s;
	-webkit-transition: opacity .35s;
	-moz-transition: opacity .35s;
	-o-transition: opacity .35s;
	transition: opacity .35s;
}
#searchingTable {
	max-width: 1000px;
	display: inline-table;
}
#searching_following_balls {
	position: relative;
	display: inline-block;
	width: 80%;
	height: 29px;
}
.searching_following_balls {
	background-color: #FFFFFF;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	-moz-border-radius: 15px 15px 15px 15px;
	-moz-animation-name: bounce_searching_following_balls;
	-moz-animation-duration: 1.9s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: linear;
	-webkit-border-radius: 15px 15px 15px 15px;
	-webkit-animation-name: bounce_searching_following_balls;
	-webkit-animation-duration: 1.9s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: linear;
	-ms-animation-name: bounce_searching_following_balls;
	-ms-animation-duration: 1.9s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-direction: linear;
	-o-animation-name: bounce_searching_following_balls;
	-o-animation-duration: 1.9s;
	-o-animation-iteration-count: infinite;
	-o-animation-direction: linear;
	border-radius: 15px 15px 15px 15px;
	animation-name: bounce_searching_following_balls;
	animation-duration: 1.9s;
	animation-iteration-count: infinite;
	animation-direction: linear;
	-moz-box-shadow: 2px 2px 8px #000000;
	-webkit-box-shadow: 2px 2px 8px #000000;
	box-shadow: 2px 2px 8px #000000;
}
#searching_following_balls_1 {
	-moz-animation-delay: 0s;
}
#searching_following_balls_1 {
	-webkit-animation-delay: 0s;
}
#searching_following_balls_1 {
	-ms-animation-delay: 0s;
}
#searching_following_balls_1 {
	-o-animation-delay: 0s;
}
#searching_following_balls_1 {
	animation-delay: 0s;
}
#searching_following_balls_2 {
	-moz-animation-delay: 0.19s;
	-webkit-animation-delay: 0.19s;
	-ms-animation-delay: 0.19s;
	-o-animation-delay: 0.19s;
	animation-delay: 0.19s;
}
#searching_following_balls_3 {
	-moz-animation-delay: 0.38s;
	-webkit-animation-delay: 0.38s;
	-ms-animation-delay: 0.38s;
	-o-animation-delay: 0.38s;
	animation-delay: 0.38s;
}
#searching_following_balls_4 {
	-moz-animation-delay: 0.57s;
	-webkit-animation-delay: 0.57s;
	-ms-animation-delay: 0.57s;
	-o-animation-delay: 0.57s;
	animation-delay: 0.57s;
}
@-moz-keyframes bounce_searching_following_balls {
	0% {
		left: 0px;
		background-color: #FFFFFF;
		-moz-box-shadow: 2px 2px 8px #000000;
		-webkit-box-shadow: 2px 2px 8px #000000;
		box-shadow: 2px 2px 8px #000000;
	}
	50% {
		left: 100%;
		background: rgba(#FFFFFF,0);
		-moz-box-shadow: 2px 2px 8px rgba(#000000,0);
		-webkit-box-shadow: 2px 2px 8px rgba(#000000,0);
		box-shadow: 2px 2px 8px rgba(#000000,0);
	}
	100% {
		left: 0px;
		background-color: #FFFFFF;
		-moz-box-shadow: 2px 2px 8px #000000;
		-webkit-box-shadow: 2px 2px 8px #000000;
		box-shadow: 2px 2px 8px #000000;
	}
}
@-webkit-keyframes bounce_searching_following_balls {
	0% {
		left: 0px;
		background-color: #FFFFFF;
		-moz-box-shadow: 2px 2px 8px #000000;
		-webkit-box-shadow: 2px 2px 8px #000000;
		box-shadow: 2px 2px 8px #000000;
	}
	50% {
		left: 100%;
		background: rgba(#FFFFFF,0);
		-moz-box-shadow: 2px 2px 8px rgba(#000000,0);
		-webkit-box-shadow: 2px 2px 8px rgba(#000000,0);
		box-shadow: 2px 2px 8px rgba(#000000,0);
	}
	100% {
		left: 0px;
		background-color: #FFFFFF;
		-moz-box-shadow: 2px 2px 8px #000000;
		-webkit-box-shadow: 2px 2px 8px #000000;
		box-shadow: 2px 2px 8px #000000;
	}
}
@-ms-keyframes bounce_searching_following_balls {
	0% {
		left: 0px;
		background-color: #FFFFFF;
		-moz-box-shadow: 2px 2px 8px #000000;
		-webkit-box-shadow: 2px 2px 8px #000000;
		box-shadow: 2px 2px 8px #000000;
	}
	50% {
		left: 100%;
		background: rgba(#FFFFFF,0);
		-moz-box-shadow: 2px 2px 8px rgba(#000000,0);
		-webkit-box-shadow: 2px 2px 8px rgba(#000000,0);
		box-shadow: 2px 2px 8px rgba(#000000,0);
	}
	100% {
		left: 0px;
		background-color: #FFFFFF;
		-moz-box-shadow: 2px 2px 8px #000000;
		-webkit-box-shadow: 2px 2px 8px #000000;
		box-shadow: 2px 2px 8px #000000;
	}
}
@-o-keyframes bounce_searching_following_balls {
	0% {
		left: 0px;
		background-color: #FFFFFF;
		-moz-box-shadow: 2px 2px 8px #000000;
		-webkit-box-shadow: 2px 2px 8px #000000;
		box-shadow: 2px 2px 8px #000000;
	}
	50% {
		left: 100%;
		background: rgba(#FFFFFF,0);
		-moz-box-shadow: 2px 2px 8px rgba(#000000,0);
		-webkit-box-shadow: 2px 2px 8px rgba(#000000,0);
		box-shadow: 2px 2px 8px rgba(#000000,0);
	}
	100% {
		left: 0px;
		background-color: #FFFFFF;
		-moz-box-shadow: 2px 2px 8px #000000;
		-webkit-box-shadow: 2px 2px 8px #000000;
		box-shadow: 2px 2px 8px #000000;
	}
}
@keyframes bounce_searching_following_balls {
	0% {
		left: 0px;
		background-color: #FFFFFF;
		-moz-box-shadow: 2px 2px 8px #000000;
		-webkit-box-shadow: 2px 2px 8px #000000;
		box-shadow: 2px 2px 8px #000000;
	}
	50% {
		left: 100%;
		background: rgba(#FFFFFF,0);
		-moz-box-shadow: 2px 2px 8px rgba(#000000,0);
		-webkit-box-shadow: 2px 2px 8px rgba(#000000,0);
		box-shadow: 2px 2px 8px rgba(#000000,0);
	}
	100% {
		left: 0px;
		background-color: #FFFFFF;
		-moz-box-shadow: 2px 2px 8px #000000;
		-webkit-box-shadow: 2px 2px 8px #000000;
		box-shadow: 2px 2px 8px #000000;
	}
}
.searchingDivText {
	color: #FFFFFF;
	text-shadow: 4px 4px 3px #000000;
}
#searchingDivText1 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 38px;
	font-weight: bold;
	line-height: normal;
	margin: 0px 0px 0px 0px;
}
