/*
	Professional Home Care Service
	Author: Hannah Carper
	Last updated: 04/25/2015
			 
	aboutstyles.css
*/

/* .left Section styles */

section#left {
   float: left;
   width: 50%;
}

section#left h1 {
	margin: 0px;
}

section#left article {
	padding: 25px;
	width: 95%;
	
	border: 1px solid rgba(15, 46, 92, 0.5);

	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	
	-moz-box-shadow: rgb(101, 101, 101) 5px 5px 5px;
	-webkit-box-shadow: rgb(101, 101, 101) 5px 5px 5px;
	box-shadow: rgb(101, 101, 101) 5px 5px 5px;
}

/* .right Section styles */

section#right {
   float: left;
   width: 30%;
}

#origins {
	border: 1px solid rgb(56, 108, 180);
	padding: 20px;
	width: 95%;
	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;


	-moz-box-shadow: inset rgba(56, 108, 180, 0.4) -7px -7px 5px,
					 rgb(101, 101, 101) 5px 5px 5px;
	-webkit-box-shadow: inset rgba(56, 108, 180, 0.4) -7px -7px 5px,
						rgb(101, 101, 101) 5px 5px 5px;
	box-shadow: inset rgba(56, 108, 180, 0.4) -7px -7px 5px,
				rgb(101, 101, 101) 5px 5px 5px;
}

