@charset "utf-8";
/* CSS Document */

@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */
#message{
	width:100%;
	height:50px;
	background-color:rgba(51,51,51,.7);
	margin-top:20px;
	margin-bottom:20px;
	position:relative;
}
#message p{
	color: white;
	text-align:center;
	font-family:Verdana, Geneva, sans-serif;
	font-weight:lighter;
}
.middle{
	width: 100%;
	position: relative;
	margin-top:11%;
	float: left;
	clear: both;
	height:;
	display:flex;
	flex-direction:row;
	justify-content:center;
	flex-wrap:wrap;
}
.middle p{
	text-align:center;
}


#box1, #box2, #box3{
	width:250px;
	height:250px;
	float:left;
	margin:5px;
	margin-top:;
	border-right: thin solid white;
	border-bottom: thin solid white;
	display:flex;
	justify-content:center;
	background-color:rgba(153,153,153,.5);
}

#box1 h1, #box2 h1, #box3 h1{
	font-size:12pt;
	text-align:center;
	font-family:Verdana, Geneva, sans-serif;
	font-weight:lighter;
	margin:auto;
	background-color:rgba(51,51,51,.7);
	padding-bottom:15px;
	padding-top:15px;
	width:100%;
	color:white;
}

#box1{
	background-image:url(../../images/decor_homeimage.jpg);
}
#box2{
	background-image:url(../../images/graphic_homeimage.jpg);
}
#box3{
	background-image:url(../../images/web_homeimage.jpg);
}
	
	





/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width:500px) {

	


.main{
	clear:both;
	width:100%;
	margin-top:230px;
	position:relative;
}
body{
	background-image: url(../../images/background.jpg);
	background-repeat: no-repeat;
	background-position:top;
	background-size:cover;
	overflow:hidden;
}
#message{
	margin-bottom:;
	margin-top:20px;
}
}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

body p{
	color::
}
body h1{
	color:;
}
body h2{
	color:;
}
#box1, #box2, #box3{
	margin-top:100px;
	margin-left:20px;
	margin-right:20px;
}
#message{
	margin-bottom:;
	margin-top:20px;
}
}