/*
FILENAME: hh_gallery.css
VERSION: 1.0
DMS VERSION: 3.5
CREATED ON: 
NOTES:
	Basic color and layout, should be styled site specific.
	Empty CSS tags listed here for structure only.
*/

.services{}
.services ul{}
.services ul li{

    float: left;
    margin: 0 10px 25px 10px;
    overflow: hidden;
    padding: 5px;
    text-align: left;
    min-height:230px;
    width: 45%;
    border:1px solid #aaa;
    border-radius:15px;

	}
.services ul li .imgbox{
		width: 100%;
		padding:10px 0 10px 0;
		overflow: hidden;
		text-align: center;
		margin:5px 0 0 0;
	}
.services ul li .imgbox img{
	padding:4px;
	background-color:#fff;
	box-shadow:2px 0px 3px 3px #ccc;
}

.services ul li .imgbox a:hover img{
	padding:4px;
	background-color:#fff;
	box-shadow:2px 0px 3px 3px #999;
}


.services ul li h2{
	
	text-align:center;
	font-size:120%;
	line-height:18px;
}


.services ul li h2 a:link{
	text-decoration:none;
}

.services ul li h2 a:visited{
	text-decoration:none;
}


.services ul li h2 a:hover{
	text-decoration:underline;
}


.services ul li h2 a:active{
	text-decoration:none;
}


