.cn-button{
	font-family: sans-serif;
	display: inline-block;
	margin-right: .3em;
	margin-bottom: 0;
	line-height: 20px;
	text-align: center;
	font-style: normal;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0,0,0,.25);
	background-color: #006dcc;
	background-image: -moz-linear-gradient(top,#0088cc,#0044cc);
	background-image: -webkit-gradient(linear,0 0,0 100%,from(#0088cc),to(#0044cc));
	background-image: -webkit-linear-gradient(top,#0088cc,#0044cc);
	background-image: -o-linear-gradient(top,#0088cc,#0044cc);
	background-image: linear-gradient(to bottom,#0088cc,#0044cc);
	background-repeat: repeat-x;
	border-style: solid;
	border-width: 1px;
	border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
	box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 1px 2px rgba(0,0,0,.05);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
	padding: 2px 10px;
	font-size: 12px;
	text-decoration: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	outline: none;
        width: 100%;
        font-size: 15px;
}
.cn-button:hover{
	transition:1s;
	cursor:pointer;
	box-shadow:none;
	text-decoration:none;
	background:#0044cc;
	border-color:#999;
	color:white;
}
.cn-button:active{
	color:rgb(230,230,230);
	transition:0s;
}

.inline-block-container{
	border:1px solid rgb(210,210,210);
	padding-top:0px;
	padding-bottom:0px;
	padding-left:20px;
	padding-right:20px;
}
.gray-block{
	display:inline-block;
        position: relative;
	border:1px solid rgb(210,210,210);
	/*
        border-radius:12px;
	padding-left:14px;
	padding-right:14px;
	padding-top:4px;
	padding-bottom:4px;
	margin-right:5px;
	margin-left:5px;
	margin-bottom:5px;
	margin-top:5px;
        */
        border-radius: .75em;
        padding-left: .75em;
        padding-right: .75em;
        padding-top: .25em;
        padding-bottom: .25em;
        margin-right: .4em;
        margin-left: .4em;
        margin-bottom: .4em;
        margin-top: .4em;
	cursor:pointer;
	background-image: linear-gradient(to bottom,rgb(240,240,240),rgb(210,210,210));
	background-size:1px 200px;  
	box-shadow:2px 2px 3px rgba(0,0,200,0.1);
        color: black;
}
.gray-block:hover{
	transition:0.5s;
	background-position:200px;  
}

.gray-block.highlight {
    background-image: linear-gradient(180deg, rgba(88,160,255,1) 0%, rgba(48,120,231,1) 100%);
    color: white;
}

.gray-block a {
color: inherit;
text-decoration: none;
}

.gray-block-tooltip {
    position: absolute;
    background-color: gray;
    z-index: 100;
    padding: 5px;
    border-radius: 10px;
    background-image: linear-gradient(180deg, rgba(232,232,232,1) 0%, rgba(245,245,245,1) 100%);
    box-shadow:2px 2px 3px rgba(0,0,200,0.1);
    border: 1px solid #d6d6d6;
    top: 120%;
    left: 5%;
    width: 20vw;
}

.gray-block-tooltip .gray-block-tooltip-content {
    color: black;
    margin: auto;
}