#pagetitle{
	position: absolute;
	left: 0;
	top: -10px;
	width: 100%;
	height: 5%;
	text-align: center;
	display: none;
}

#product a:link{
	text-decoration: none;
	color: black;
}
#product a:hover{
	text-decoration: none;
		color: black;
}
#product a:visited{
	text-decoration: none;
		color: black;
}
#product a:active{
	text-decoration: none;
		color: black;
}

a{
	color: black;
}

#product{
	position: relative;
	float: left;
	top: 100%;
	width: 20%;
	height: 40%;
	border: solid 1px white;
	border-radius: 5px;
	margin-left: 10%;
	box-shadow: 1px 1px 1px 1px lightgray;
	transition: all 0.35s ease-in-out;
    	-webkit-transition: all 0.35s ease-in-out;
    	-moz-transition: all 0.35s ease-in-out;
}

#product:hover{
    box-shadow: 0 0 5px rgba(0, 0, 0, 1);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 1); 
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 1);
    border:1px solid rgba(0,0,255, 0.8); 
    color: black;
}

#producttitle{
	position: relative;
	font-size: 20px;
	text-align: center;
}

#producttitle h1{
	padding: 0px;
	margin: 0px;
	}

#productdescription{
	position: relative;
	text-align: center;
	font-weight: 100;
	top: 2%;
	margin-bottom: 10%;
}

#productprice{
	position: absolute;
	bottom: 5%;
	width: 100%;
	text-align: center;
	font-size: 20px;
	color: blue;
}

#productimage{
	position: relative;
	float: left;
	height: 30%;
	width: 100%;
}	
	
	