html {
	height: 100%; 
}

body { 
	height: 100%; 
	font-family: Helvetica; 
	font-size: 12px; 
	margin: 0;
}


.hide_element {
	display: none;
}

#ID_TopBanner {
    min-height: 36px; 
    height: 36px; 
    padding-top: 5px;
    padding-left: 5px;
    /* Not using 'overflow:hidden because it causes problems on iPad Mini */
    /*overflow: hidden;*/ /*Clip anything that overflows */
	position: -webkit-sticky;
    position: sticky; /* Keep it pinned to the top */
    top: 0px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    z-index: 2;
}

#ID_Center {
	height: calc(100% - 50px);
    display: flex;
}

#ID_Title {
	display: inline-block;
	height: 25px;
	line-height: 25px;
	font-size: 20px;
	margin: 5px;
	margin-left: 20px;
	margin-right: 20px;
}

#ID_GfxContainerDiv { 
	width: 100%; 
	height: 100%;
}

#ID_Column {
    width: 100px;
    border: 1px solid lightblue;
}

/*---- TOOLS ----*/

#ID_Tools {
	/* border: 1px solid #888; */
	vertical-align: top;
	width: 100%;
}

#ID_Tools-intro {
	/*font-size: 24px;
	margin: 15px;*/
	margin-left: 15px;
}

.CL_Tool {
	/*height: 100px;*/
    border-radius: 10px;
    border: 1px solid black;
	margin: 10px;
	/*background-color: #f8f8f8;*/
	/*text-align: center;*/
	padding: 10px;
	transition: 0.3s;
}

.CL_Tool:hover {
	box-shadow: 0px 5px 15px 4px rgba(0, 0, 0, 0.3);
}

	/*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
	/*box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.6), 0 6px 20px 0 rgba(255, 255, 255, 0.6); */
	/*box-shadow: 0px 0px 15px 10px rgba(255, 255, 255, 0.4);*/


.CL_Tool:active {
	background-color: rgba(192, 192, 192, 0.2);
}

.CL_Tool-left {
	display: inline-block;
	padding: 5px;
	width: 300px;
	vertical-align: top;
}


.CL_Tool-right {
	display: inline-block;
	padding: 5px;
	vertical-align: top;
}

.CL_Tool-title {
	font-size: 24px;
}
.CL_Tool-desc {
	color: blue;
	font-size: 16px;
	padding: 5px 0;
}

#ID_Tools img {
	width: 90px;
    border-radius: 5px;
}

/*---- LOGO ----*/

#ID_LogoArea {
	float: left;
}

#ID_LogoArea a {
	text-decoration: unset;
}

#ID_LogoArea a:hover {
	text-decoration: underline;
}


.CL_LogoSVG {
	height: 32px;
}


@media only screen and (max-width: 400px) {
	#ID_LogoSVGLong  { display: none; }
	#ID_LogoSVGShort { display: none; }
	#ID_LogoSVGOnly  { display: block; }
}

@media only screen and (min-width: 401px) and (max-width: 600px) {
	#ID_LogoSVGLong  { display: none; }
	#ID_LogoSVGShort { display: block; }
	#ID_LogoSVGOnly  { display: none; }
}

@media only screen and (min-width: 601px) {
	#ID_LogoSVGLong  { display: block; }
	#ID_LogoSVGShort { display: none; }
	#ID_LogoSVGOnly  { display: none; }
}


.CL_LogoText {
	font-family: 'Libre Baskerville', serif;
	font-size: 24px;
	color: blue;
}
