/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

   /* glossy button */     
          .glass{
	/* background styles */
	position: relative;
	display: inline-block;
	padding: 10px;
	background-color: green; /*for compatibility with older browsers*/
	background-image: linear-gradient(green,lightgreen);

	/* text styles */
	text-decoration: none;
	color: #fff;
	font-size: 1.2em;
	font-family: sans-serif;
	font-weight: 100; 
  border-radius: 12px;
  box-shadow: 0px 1px 4px -2px #333;
  text-shadow: 0px -1px #333;  
  width:140px;
}
  .glass:after{
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: 50%;
	background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2));
  border-radius: 12px;
} 
.glass:hover{
	background: linear-gradient(#ffffc1,#fff);
  color:#000;
} 
/* end glossy button */
/*shadow for main image */
.mainShadow {
box-shadow: 0 14px 12px 0 rgba(0, 0, 0, 0.5), 5px 6px 20px 0 rgba(0, 0, 0, 0.6); }