@charset "UTF-8";
/* CSS Document */

/*
.sticky + .content {
  padding-top: 86px;
}
*/

html {
  scroll-behavior: smooth;
}



/* card hover shadow */
.card.hover:hover 
{
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;		
}



/* image zoom */
.image-box {
    position: relative;
    overflow: hidden;
}
.image-box img {
   /* max-width: 100%; */ 
    transition: all 0.3s;
    display: block;
   /* width: 100%;*/
    transform: scale(1);
}

.image-box:hover img {
    transform: scale(1.1);
}



/* bold */
strong
{
font-weight:600 !important;
}


/* table */

.tablehead {
	color:grey;
	text-align:center;
	height:25px;
}


table.data {
	border:1px;
	font-size:16px;
	background-color:#EEEEEE;
	border-color:#CCCCCC;

}

table.data td {
	border-top:1px;
	border-color:#CCCCCC;
	border-left:0px solid white;
	border-right:0px;
}


p.tableCell {
	padding: 5px;
	width:75px;
	margin:0px;
	text-align:right;
}

.tablehead .tableCell {
	width:auto;
	text-align:left;
	color:grey;	
}


p.tableStub {
	padding: 5px;
	width:75px;
	margin:0px;
	text-align:left;
}

td.tableStub {
	background-color:white;	
}


p.rowTitle {
	font-size:16px;
	padding: 5px;
	margin:0px;
}
		
		
.popup
{
	position:absolute;
	background-color:white;
	font-family:arial;
	font-size:12px;
	line-height:14px;
	width:150px;	
	text-align:left;
	padding:5px;
	display:none;
	border-radius:5px;
	border-top-left-radius:0;
	
	left:85px;
	top:30px;
	z-index:200;
	border:1px solid #CCC;
}

td.ps
{
	background-color:#DDDDDD;
}

td.inf
{
	background:transparent url(../images/point_bg.png) no-repeat scroll right bottom;
}

td.psinf
{
	background:#DDDDDD url(../images/point_bg.png) no-repeat scroll right bottom;
}



/* image caption */
p.image
{
 	font-family:arial;
	font-size:12px;
	position:relative;
	left:5px;
	top:6px;
	width:265px;
	line-height:14px;
	margin-bottom:30px;
}




