body{
  background-color: #d1d1d1;	
  margin: 0px;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Shadow warp div section */
     #shadowdiv{
	  display: block;
	  width: 960px;  
	  position: relative;
	  margin: 0px auto;  
	  z-index: 0; 
   }

   #shadowdiv:before{
	 content: "";
	 display: block;
	 background-color: none;   
	  width: 400px;
	  position: absolute;
	  left: 12px;
	  top: 0px;
	  z-index: 0;
	  box-shadow: -7px 12px 40px #000;
	  height: 350px;
	  -webkit-transform: skew(4deg);
	  -moz-transform: skew(4deg);
	  -ms-transform: skew(4deg);
	  -o-transform: skew(4deg);
	  transform: skew(4deg);	     
   }
   #shadowdiv:after{
	 content: "";
	 display: block;	   
	  background-color: none;   
	  width: 400px;
	  position: absolute;
	  right: 12px;
	  top: 0px;
	  z-index: 1;
	  box-shadow: 7px 12px 40px #000;
  	  height: 350px;
	  -webkit-transform: skew(-4deg);
	  -moz-transform: skew(-4deg);
	  -ms-transform: skew(-4deg);
	  -o-transform: skew(-4deg);
	  transform: skew(-4deg);
   }

/* End Shadow Warp */

#wrapper{
  width: 960px;
  margin: 0px auto;
  background-color: #fff;
  position: relative;
  box-shadow: 0px 8px 14px #000;
  z-index: 2;
}

header h1{
  text-indent: -9999px;	
  margin: 0px;
  height: 150px;

}
header{
  border-top: 12px solid #922e2e;	
  position: relative;
  background-image: url(../images/header_bg.jpg);
  background-repeat:no-repeat;
  background-position: right;  
}

@-webkit-keyframes logo_anim{
  from {opacity:0; transform:translate(-20px);}
  to {opacity: 1.0; transform:translate(0px);}	
}

@keyframes logo_anim{
  from {opacity:0; transform:translate(-20px);}
  to {opacity: 1.0; transform:translate(0px);}	
}

header #logo{
  background-image: url(../images/logo_large.png);
  background-repeat:no-repeat;
  background-position: 21px 21px;
 
}
#home header #logo{
 animation: logo_anim 1.4s ease-out;
 -webkit-animation: logo_anim 1.4s ease-out;	
}
header #menubutton,  #mobile_toggle{
  display: none;	
}
#wrapper #address{
  position: absolute;
  top: 134px;
  right: 15px;	
  font-family: Michroma, Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  -moz-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.50);
  -webkit-text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.50);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.50);
}
/* Start navigation */

   /* Use BODY ID's for active links */
   
   body#home nav ul#navlist li a#nav_home,
   body#services nav ul#navlist li a#nav_services,
   body#history nav ul#navlist li a#nav_history,
   body#bulletin nav ul#navlist li a#nav_bulletin,
   body#wellness_recovery nav ul#navlist li a#nav_wellness_recovery,
   body#contact nav ul#navlist li a#nav_contact
   {
	 color: #b29292;
	 -webkit-text-shadow: 1px 1px 1px #333;
	 -moz-text-shadow: 1px 1px 1px #333;
	 text-shadow: 1px 1px 1px #333;
   }

nav{
	background-image: url(../images/nav_bg.jpg);
	background-repeat: repeat-x;
	-moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);	
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);	
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);	

}
nav ul{
    margin: 0px;
	padding: 0px;	
	white-space: nowrap;
	height: 42px;
}
nav ul#navlist li{
	display: inline-block;
	list-style-type: none;
	margin: 0px;
	color: #fff;
	padding-top: 1px;
}
nav ul li a{
  display: inline-block;
  text-decoration: none;
  color: #fff;	
  height: 31px;  

  padding-top: 8px;
  padding-left: 27px;
  padding-right: 26px;
  font-size: 18px;
  -webkit-text-shadow: -1px -1px 1px rgba(0, 0, 0, 1.0);
  -moz-text-shadow: -1px -1px 1px rgba(0, 0, 0, 1.0);
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 1.0);
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: all ease-in-out .3s;
  -moz-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}
nav ul li a:hover{
  color: #000;
  background-color: #fff;
  border-radius: 12px;
  opacity: 0.8;
  -moz-text-shadow: 1px 1px 1px rgba(0,0,0,0.60);
  -webkit-text-shadow: 1px 1px 1px rgba(0,0,0,0.60);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.60);
}
nav ul li a:active{
  color: #900;	
  opacity: 1.0;
}
nav ul li:after{
  content: "|";
  -moz-text-shadow: -1px -1px 1px rgba(0, 0, 0, 1.0);
  -webkit-text-shadow: -1px -1px 1px rgba(0, 0, 0, 1.0);
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 1.0);
}
nav ul li.last:after{
  content: "";	
}
#content{
  min-height: 390px;	
}
#content #text_size{
    color: 	#922e2e;
	font-size: 18px;
	text-align: center;
	width: 71px;
    padding: 4px;
	background-color: #e8e8e8;
	border: 2px solid #959595;
	position: absolute;
	right: 9px;
	
}
#content #text_size div{
    display: inline;	
}
#content #text_size a{
    color: #922e2e;	
	text-decoration: none;
	padding: 5px;
}
#content #text_size #small_a{
    font-size: 13px;	
	margin-right: 7px;
}
#content #text_size #large_a{
    font-size: 20px;	
	margin-left: 7px;
}
#content article{
	padding-left: 21px;
	padding-right: 21px;
	line-height: 1.5em;
}
#content h1{
  font-size: 24px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.60);
}
#content h2{
  /*font-size: 20px;	*/
  /* If Arial, use above. Below font-size is for Michroma */
  font-size: 16px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.60);
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);
  color: #922e2e;
  margin-bottom: 0px;
  font-family: Michroma, Arial, helvetica, sans-serif;	
  background-color: #eee;
  border: 1px solid #222;
  padding-bottom: 4px;
  padding-left: 3px;
}
#content h2 + p{
  margin-top: 0.3em;

}

footer{
  background-image: url(../images/footer_bg.jpg);	
  height: 89px;
  color: #fff;
  text-align: center;
  font-size: 12px;	
  position: relative;
}
footer #footerlinks{
  font-size: 14px;	
  padding-top: 28px;
}
footer #footerlinks a{
  color: #fff;	
  text-decoration: none;
  -moz-transition: all ease-in-out .3s;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}
footer #footerlinks a:hover{
  text-decoration: underline overline;
  background-color: #b29292;
  color: #000;
  	
}

footer #phonebox{
	position:absolute;
	top: 0px;
	left: 8px;
	border: 1px solid #000;
	margin-top: 11px;
	height: 15px;
	width: 96px;
	background-color: #d7d7d7;
	font-size: 12px;
	padding: 4px 4px 4px 20px;
	background-image: url(../images/phone_icon_high.png);
	background-size: 13px 18px;
	background-repeat: no-repeat;
	background-position: 2px 3px;
	margin-bottom: 20px;
}

footer #phonebox a{
    text-decoration: none;
	color: #000;
}
#social_media{
  position: absolute;
  top: 26px;
  right: 6px;
  
}

#social_media div{
  margin-right: 0px;
  display: inline-block;	
}
#social_media div a{
  display:inline-block;
}
#social_media div a:hover{
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);	
}
#social_media #sm_fb a{
  width: 37px;
  height: 38px;
  background-image: url(../images/fb_icon.png);  
}
#social_media #sm_tw a{
  width: 37px;
  height: 37px;	
  background-image: url(../images/tw_icon.png);
}

.rounded{
   -webkit-border-radius: 6px;	
   -moz-border-radius: 6px;	
   border-radius: 6px;	
   
}
.shadow{
   -moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);	
   -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);	
   box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.75);	
   
}

/* CSS for blog sidebar on that page. */
  #content_left{
	width: 76%;
	float: left;  
	border-right: 1px solid #000;
	padding-right: 15px;
  }
  #content_right{

	float:right; 
	  width: 20%;
  }

/* If page is show smaller than 960, it will shift to a 100% "stretching" layout*/
@media screen and (min-width: 601px) and (max-width: 959px){
  #wrapper{
	width: 100%;  
  }
  #shadowdiv{
	display: none;  
  }
  nav{
	width: 100%;  
  }
  nav ul#navlist li a{
	padding-left: 15px;
	padding-right: 15px;

  }

  #blog_content img{
	  max-width: 95%;
	  height: auto;  
  }
}
@media screen and (min-width: 601px) and (max-width: 855px){
  #content #content_left{
	border: none;
	float: none;  
  }
  #content #content_right{
	float: none;  
  }
}
@media screen and (min-width: 601px) and (max-width: 800px){
  nav ul#navlist li a{
	padding-left: 8px;
	padding-right: 8px; 
	padding-top: 10px; 
	font-size:16px;
  }
  #shadowdiv{
	display:none;  
  }
  
}

