.main{
	width:relative;
	margin-right:2px;
	margin-left:2px;
	
}

.ch-item {
	
	border-radius: 5%;
	position: relative;
	
	cursor: default;
}

.ch-info-wrap, 
.ch-info{
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.ch-info-wrap {
	top: 20px;
	left: 20px;
	
	box-shadow: 
		0 0 0 20px rgba(255,255,255,0.2), 
		inset 0 0 3px rgba(115,114, 23, 0.8);

}

.ch-info > div {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-position: center center;
	
	-webkit-backface-visibility: hidden; /*Just for webkit to have a smooth font*/
}

.ch-info .ch-info-front {
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

.ch-info-gplus .ch-info-back-gplus {
	opacity: 0;

	background: rgb(40,40,40);
	pointer-events: none;
	
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
	
	-webkit-transition: all 0.4s ease-in-out 0.2s;
	-moz-transition: all 0.4s ease-in-out 0.2s;
	-o-transition: all 0.4s ease-in-out 0.2s;
	-ms-transition: all 0.4s ease-in-out 0.2s;
	transition: all 0.4s ease-in-out 0.2s;
}

.ch-info-facebook .ch-info-back-facebook {
	opacity: 0;

	background: rgb(0,84,159);
	pointer-events: none;
	
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
	
	-webkit-transition: all 0.4s ease-in-out 0.2s;
	-moz-transition: all 0.4s ease-in-out 0.2s;
	-o-transition: all 0.4s ease-in-out 0.2s;
	-ms-transition: all 0.4s ease-in-out 0.2s;
	transition: all 0.4s ease-in-out 0.2s;
}

.ch-info-twitter .ch-info-back-twitter {
	opacity: 0;

	background: rgb(56,205,255);
	pointer-events: none;
	
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
	
	-webkit-transition: all 0.4s ease-in-out 0.2s;
	-moz-transition: all 0.4s ease-in-out 0.2s;
	-o-transition: all 0.4s ease-in-out 0.2s;
	-ms-transition: all 0.4s ease-in-out 0.2s;
	transition: all 0.4s ease-in-out 0.2s;
}
.ch-info-linkedin .ch-info-back-linkedin {
	opacity: 0;

	background: rgb(0,150,193);
	pointer-events: none;
	
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
	
	-webkit-transition: all 0.4s ease-in-out 0.2s;
	-moz-transition: all 0.4s ease-in-out 0.2s;
	-o-transition: all 0.4s ease-in-out 0.2s;
	-ms-transition: all 0.4s ease-in-out 0.2s;
	transition: all 0.4s ease-in-out 0.2s;
}


.ch-gplus { 
	background-image:url(../images/gplus.png) ;
	background-size:100%;
}

.ch-facebook { 
	background-image:url(../images/facebook.png);
	background-size:100%;
}

.ch-twitter { 
	background-image: url(../images/twitter.png);
	background-size:100%;
}

.ch-linkedin{
	background-image: url(../images/linkedin.png) ;
	background-size:100%;
}

.ch-info h3 {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 18px;
	margin: 0 15px;
	padding: 40px 0 0 0;
	height: 80px;
	font-family: 'Open Sans', Arial, sans-serif;
	text-shadow: 
		0 0 1px #fff, 
		0 1px 2px rgba(0,0,0,0.3);
}

.ch-info p {
	text-align:center !important;
	color: #fff;
	width:100%;
	height:100%;
	padding-top:15px;
	font-style: italic;
	font-size: 12px;
	margin-top:7px;
}

.ch-info p a {
	text-align:center;
	
	width:100%;
	height:100%;
	text-align:center !important;
	color: white;
	font-style: normal;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 9px;
	font-family: 'Open Sans', Arial, sans-serif;
	
}

.ch-info p a:hover {
	color: #fff;
	text-align:center;
}

.ch-item:hover .ch-info-front {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	opacity: 0;
} 

.ch-item:hover .ch-info-back {
	text-align:center !important;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	pointer-events: auto;
}



.ch-grid {
	height:70px;
	list-style:none;
	margin: 20px 0 0 0;
	padding: 0;
	list-style: none;
	display: block;
	text-align: center;
	width: 100%;
}

.ch-grid:after,
.ch-item:before {
	content: '';
    display: table;
}

.ch-grid:after {
	clear: both;
}

.ch-grid li {
	list-style:none !important;
	width:auto;
	height:auto;
	display: inline-block;
	
}

a.gplus-tooltip,
a.linkedin-tooltip,
a.twitter-tooltip,
a.facebook-tooltip{
	color:#FFFFFF !important;
}
a.gplus-tooltip:hover,
a.linkedin-tooltip:hover,
a.twitter-tooltip:hover,
a.facebook-tooltip:hover {
	color:#FFFFFF !important;
	text-decoration: underline;
}


.gplus-tooltip-theme{
	border-radius: 12px; 
	border: 2px solid #FFFFFF;
	background-color: #282828;
	color:#FFFFFF !important;
	overflow: hidden;
	font-size:larger;
	
}


.facebook-tooltip-theme{
	border-radius: 12px; 
	border: 2px solid #FFFFFF;
	background-color: #00549f;
	color:#FFFFFF !important;
	overflow: hidden;
	font-size:larger;
	
}



.twitter-tooltip-theme{
	border-radius: 12px; 
	border: 2px solid #FFFFFF;
	background-color:#38cdff;
	color:#FFFFFF !important;
	overflow: hidden;
	font-size:larger;
}



.linkedin-tooltip-theme{
	border-radius: 12px; 
	border: 2px solid #FFFFFF;
	background-color:#0096c1;
	color:#FFFFFF !important;
	overflow: hidden;
	font-size:larger;
}


/* Use this next selector to style things like font-size and line-height: */
.linkedin-tooltip-theme,
.gplus-tooltip-theme ,
.twitter-tooltip-theme, 
.facebook-tooltip-theme, 
.tooltipster-content {
					font-family: Arial, sans-serif;
					font-size: 12px;
					font-weight:bold;
					line-height: 12px;
					padding-right: 7px;
					padding-left:4px;
					padding-top:5px;
					padding-bottom:5px;
					max-width:87px;
				}
				
span.verticle-line {
    border:thin solid #FFFFFF;
    height:22px !important;
    margin-left:4px !important;
    margin-right:2px !important;
    
}				
