#body {
	height: 136px;
	text-align: center;
	color: #333333;
	left: 0px;
	position: relative;
}

#pagefooter {
	text-align:justify;
	
}

h1 {
	color:#19469D; 
	text-align:center;
}

h2 {
	color:#333333;
	text-align:center;
}

h3 {
	color: #333333;
}

p {
	color:#333333;
}

.menuhoriz {
  display: block;
  text-align:center;
}

/* Just-in-case after global delete of this */
.auto-style1 {
	text-align: center;
}

.center {
	text-align:center;
}
/* Folowing does not appear to weork on iframe border.  Must put in page css.  Why? */
.noborder {
    border: 0; !important;
}

.footer-img {
  width: 100%;
  display:block;
}
.border0 {
	border:0px
}
.right {
	text-align:right;	
}

.left {
	text-align:left;
}

.center {
    text-align:center;
}

.justify {
	text-align:justify;
}

.normal{font-weight:normal;
}

.italics {
	font-style:italic
}

.bold {
	font-weight:bold
}

.small {
	font-size: small;
}

.medium {
	font-size: medium;
}

.x-small {
	font-size: x-small;
}

.xx-small {
	font-size: xx-small;
}

.large {
	font-size: large;
}

.x-large {
	font-size: x-large;
}

table.center {
  margin-left: auto;
  margin-right: auto;
}

.valign-middle {
	vertical-align: middle;
}

.valign-top {
	vertical-align: top;
}

/* applies to all images (to add clearance so mobile friendly) Tried em & rem but both gave too much space in browser so used px */
img {
	margin:2px;
}

.firstchar-tall {
  float: left;
  font-size: xx-large;
  line-height: .5em;
  padding-top: 0px;
  padding-right: 1px;
  padding-left: 0px;
}
.red {
	color:red
}
.orange {
	color:#FFA819
}

.bkgnd-orange {
    background-color: #F9A61A;
}

.bkgnd-expblue {
	background-color: #19469D;
}

.bkgnd-ltexpblue {
    background-color: #F8FAFE;
}

.text-underline {
	text-decoration: underline;
}

.orange {
	background-color: #F9A61A;
}

.expblue {
	color: #19469D;
}

.expred {
	color: #F5821F;
}

.exporange {
	color: #F9A81A;
}

.expblack {
	color: #00021A;
}

.red { color:
#F5821F
}

.white { color:#FFFFFF
}

.black { color:#00021A
}
.blue {
	color:#19469D
}

/* added zoom on 2/15/2021 for Load Listings button-works if place part way down but not at top, why??? */

.zoom {
  padding: 10px;
  transition: transform .2s;
  margin: 0 auto;
}

.zoom:hover {
  -ms-transform: scale(1.2); /* IE 9 */
  -webkit-transform: scale(1.2); /* Safari 3-8 */
  transform: scale(1.2); 
}



.zoomout {
  padding: 10px;
  transition: transform .2s;
  margin: 0 auto;
}

.zoomout:hover {
  -ms-transform: scale(0.5); /* IE 9 */
  -webkit-transform: scale(0.5); /* Safari 3-8 */
  transform: scale(0.5); 
}




/* added blink on 2/18/2021 for notice to load MLS listings */

.blink {
  animation: blink 3s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: .10;
    color: blue;
  }
}

.image-favicon {
	list-style-image: url('https://rentalcottages.com/images/favicon.png');
}

/* Start Dropdown Button */
/* Dropdown Button */
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none; 
}

/* Copied from .dropdown CSS */
.showings {
  position: relative;
  display: inline-block; width:40%
}


/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block; width:50%
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* 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 {background-color: #3e8e41;}/* End Dropdown Button */