@charset "utf-8";
/* CSS Document */
* { margin: 0; padding: 0; }
body { background: #ffffff;  font-family: 'Open Sans', sans-serif, arial, verdana, tahoma; }
.vhheader{
	border-bottom: 1px solid #000;
	font-family: 'Open Sans', sans-serif, arial, verdana, tahoma;
	font-size:12px;
	/* font-weight:bold; */
	height:65px;
	width: 1045px; 
	overflow: hidden;
	margin: 20px auto;

}
.vhheader_l{
	float: left;
	height:65px;
	width: 400px; 
	overflow: hidden;
}
.vhheader_r{
	float: right;
	height:65px;
	width: 600px; 
	overflow: hidden;
	padding-top: 35px;
	text-align: right;
}
.vhheader_r a { text-decoration: none; color: #000000; }

/*Time to apply widths for accordian to work
Width of image = 640px
total images = 5
so width of hovered image = 640px
width of un-hovered image = 40px - you can set this to anything
so total container width = 640 + 40*4 = 800px;
default width = 800/5 = 160px;
*/
.accordian_org {
	width: 805px; height: 320px;
	overflow: hidden;
	
	/*Time for some styling*/
	margin: 100px auto;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
	-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
}

/*Time to apply widths for accordian to work
Width of image = 960px
total images = 3
so width of hovered image = 960px
width of un-hovered image = 40px - you can set this to anything
so total container width = 960 + 40*2 = 1040px;
default width = 1040/3 = 346px;
*/


.accordian {
	width: 1045px; height: 500px;
	overflow: hidden;
	
	/*Time for some styling*/
	margin: 0px auto;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
	-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
}

/*A small hack to prevent flickering on some browsers*/
.accordian_org ul {
	width: 2000px;
	/*This will give ample space to the last item to move instead of falling down/flickering during hovers.*/
}

.accordian ul {
	width: 2600px;
	/*This will give ample space to the last item to move instead of falling down/flickering during hovers.*/
}

.accordian_org li {
	position: relative;
	display: block;
	width: 106px;
	float: left;
	
	border-left: 1px solid #888;
	
	box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	
	/*Transitions to give animation effect*/
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	/*If you hover on the images now you should be able to see the basic accordian*/
}

.accordian li {
	position: relative;
	display: block;
	width: 240px;
	float: left;
	
	border-left: 1px solid #888;
	
	box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	
	/*Transitions to give animation effect*/
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	/*If you hover on the images now you should be able to see the basic accordian*/
}

/*Reduce with of un-hovered elements*/
.accordian_org ul:hover li {width: 40px;}

.accordian ul:hover li {width: 40px;}
/*Lets apply hover effects now*/
/*The LI hover style should override the UL hover style*/

.accordian_org ul li:hover {width: 640px;}
.accordian ul li:hover {width: 640px;}
.accordian li img { display: block; }

/*Image title styles*/
.image_title_org {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 0; bottom: 0;	
	width: 640px;	
}
.image_title {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 0; bottom: 0;	
	width: 640px;	
}


.image_title a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 20px;
	font-size: 16px;
}

.image_text{
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 100; top: 100;	
	width: 460px;	
	height: 300px;
	margin: 20px 20px;
	background-color: #ffffff;
	border: 1px solid black;
	opacity: 0.7;
	filter: alpha(opacity=70); /* For IE8 and earlier */
	z-index: 1000;	
	display: none;		
}
div.image_text p {
	margin: 30px 40px;
	font-weight: bold;
	color: #000000;
}
.content{
	width: 960px;	
	height: 350px;
	margin: 20px auto;
	background-color: #ffffff;
	/* border-top:#6A6A6A 1px solid; */
}
.imghead{
	margin-top:10px;
	margin-bottom:30px;
}
.txtcontent{
	margin: 20px auto;
	margin-left:50px;
	margin-right:50px;
}
.vhfooter{
	width: 960px;	
	height: 80px;
	margin: 50px auto;				
	border-top:#6A6A6A 1px solid; 
}
#footer {
	width:100%;
	height:80px;
	position:absolute;
	bottom:0;
	left:0;
	background:#ffffff;
}
