@import url('https://fonts.googleapis.com/css?family=Muli:200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root 
{
    --standard-index-header-fixed-top-logo-area-bg-color     : black;
    --standard-index-header-fixed-top-hero-area-bg-color     : black;
    
    --menu-container-bg-color                                : rgba(0,0,0,.9);
    --menu-dropdown-bg-color                                 : #024793;
    --menu-dropdown-link-color-initial                       : #ffffff;
    --menu-dropdown-link-color-hovered                       : #cae4ff;        
    --menu-expanded-link-color-initial                       : #ffffff;    
    --menu-expanded-link-color-hovered                       : #cae4ff;                        

    --logo-height                                            : 40px; 
    --fixed-top-area-height                                  : 40px;
    --page-data-start                                        : 40px;
    
    --stnd-div-radius                                        : 10px;
    
    --standard-text-color                                    : black;
    --standard-background-for-text                           : rgba(255,255,255,1); 
}

/* Set root element font size */
html 
{
	font-size: 15px;
	min-height : 100%;
}

body 
{
    background-color : #f1f3f5;
	font-family: 'Kanit', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	font-smooth: always;
	overflow-x : hidden;
	opacity : 1;
    transition : opacity 2s;
    -webkit-transition : opacity 2s;
    margin: 0;
}

h1
{
	margin : 0;
}

span
{
	margin : 0;
}

a, a:hover, a:visited, a:link, a:active 
{
    text-decoration: none;
    
}


.bootstrap-row-blocker
{
	width : 100%;
	overflow : hidden;
	
}

.menu-fixer
{
    position : fixed;
    top : 0px;
    left : 0px;
    width : 100%;
    min-height : var(--fixed-top-area-height);
    height : var(--fixed-top-area-height);
    overflow : hidden;
    background-color : var(--standard-index-header-fixed-top-logo-area-bg-color);
    z-index : 1;
}

.skip-menu-fixer-area
{
	display : block;
	min-height : var(--page-data-start);
}


.top-banner-image-container
{
   position : relative;
   text-align : right;
}


.top-banner-image-container-text-wrapper
{
    position : absolute;
    bottom : 0px;
    width : 100%;
    text-align : center;
}

.top-banner-image-format
{
    min-height : 200px;
    object-fit : cover;
}

.menu 
{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: right;
}

.menu-container 
{
  position : relative;
  display : flex;
  width : 100%;
  align-items : center;
  margin-bottom : 20px;
  background : var(--menu-container-bg-color);
  color : #cdcdcd;
  z-index : 1;
  -webkit-user-select : none;
  user-select : none;
  padding : 8px 5px 2px 5px;  
  box-sizing : border-box;
}


.menu-logo-fixer 
{
    position : absolute;
    top : 0;
    left : 0;
    z-index : 2;
}

.menu-container a {
  text-decoration: none;
  color : var(--menu-dropdown-link-color-initial);
  transition: color 0.3s ease;
}

.menu-container a:hover {
  color: var(--menu-expanded-link-color-hovered);
}

.menu-container input 
{
  display: block;
  width: 35px;
  height: 25px;
  margin: 0;
  position: absolute;
  cursor: pointer;
  opacity: 0; 
  z-index: 2; 
  -webkit-touch-callout: none;
}

/* Burger menu */
.menu-container span {
  display: none;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: white;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.4s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.4s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.4s ease;

}

.menu-container span:first-child {
  transform-origin: 0% 0%;
}

.menu-container span:nth-child(3) {
  transform-origin: 0% 100%;
}

.menu-container input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(3px,-1px);
  background: var(--menu-container-bg-color);;
}

.menu-container input:checked ~ span:nth-child(4) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.menu-container input:checked ~ span:nth-child(3) {
  transform: rotate(-45deg) translate(-5px,11px);
}

.menu ul {
  list-style: none;
}

.menu li 
{
  padding: 10px 0;
  font-size: 1.1rem;
  font-weight : 300;
}

.page-data-pusher
{
	display : block;
	padding : 0 20px 20px 20px;
	overflow-x : hidden;
}

.hero-wrapper-index
{
	display : block;
	margin : 0px 20px 20px 0px;
	text-align : center;
}

.h1-hero-text-style-index
{
	display : inline-block;
	font-size : 3.3rem;
	color : #000000;
	font-weight : 500;
	letter-spacing : 5px;
	text-shadow: 2px 2px #ffffff;
	background-color : rgba(255,255,255,.5);
   	padding : 20px;
   	margin-bottom : 20px;
}

.h2-text-format
{
	color : #004a6f;
	font-size : 1.6rem;
	font-weight : 500;
    padding : 0px 0px 0px 0px;
    margin-bottom : 15px;
}

.h3-text-format
{
	color : #004a6f;
	font-size : 1.4rem;
	font-weight : 500;
    padding : 0px 0px 0px 0px;
    margin-bottom : 12px;
}



.nonh-hero-text-style-general
{
	display : inline-block;
	font-size : 3.3rem;
	color : #ffffff;
	font-weight : 500;
	letter-spacing : 5px;
	text-shadow: 2px 2px #000000;
   	padding-bottom : 30px;
}

.nonh-hero-text-style-doc-show
{
	display : inline-block;
	font-size : 3.3rem;
	color : #ffffff;
	font-weight : 500;
	letter-spacing : 5px;
	text-shadow: 2px 2px #000000;
   	padding-bottom : 30px;
}


.childlinkwrapper
{
	display : inline-block;
	font-size : 1.5rem;
	color : #ffffff;
	font-weight : 500;
}

.data-image
{
	max-height : 600px;
	border : 1px solid #808080;
	border-radius : var(--stnd-div-radius);
}

.intro1
{
	color : white;
	font-size : 1.4rem;
	font-weight : 300;
    text-shadow: 1px 1px #000000;	
}

.intro2
{
	color : white;
	font-size : 1.2rem;
    font-weight : 300;
    text-shadow: 1px 1px #000000;
}

.general-text-wrapper
{
	padding : 50px;
	background-color : var(--standard-background-for-text);
}

.general-comments-wrapper
{
	padding : 20px;
	background-color : var(--standard-background-for-text);
}

.general-comment-single
{
	padding : 10px;
	background-color : var(--standard-background-for-text);
	border : 1px solid grey;
	font-size : 1rem;
}

.h2-text
{
	color : var(--standard-text-color);
	font-size : 1.6rem;
	font-weight : 500;
    padding : 0px 0px 0px 0px;
    margin-bottom : 15px;	
}

.h2-para-text
{
	color : var(--standard-text-color);
	font-size : 1.5rem;
	line-height : 1.6rem;
	font-weight : 400;
    padding : 0px 0px 4px 0px;	
}

.h2-para-text-further
{
	color : var(--standard-text-color);
	font-size : 1.5rem;
	font-weight : 300;
	line-height : 1.8rem;
}


.h2-listicle-text
{
	color : var(--standard-text-color);
	font-size : 1.2rem;
	line-height : 1.5rem;
	font-weight : 300;
    padding : 0px 0px 4px 0px;	
}

.h3-text
{
	color : var(--standard-text-color);
    font-size : 1.4rem;	
    font-weight : 400;
    padding : 0px 0px 10px 0px;
}
	
.h3-para-text
{
	color : var(--standard-text-color);
    font-size : 1.2rem;
    font-weight : 300;
    padding : 0px 0px 4px 0px;
}	

.h3-para-text-further
{
	color : var(--standard-text-color);
    font-size : 1.2rem;	
    font-weight : 200;
}	


.plain-text-hd
{
	color : var(--standard-text-color);
    font-size : 1.1rem;	
    font-weight : 500;
    padding : 0px 0px 0px 0px;
}

.plain-text-para
{
	color : var(--standard-text-color);
    font-size : 1.1rem;
    font-weight : 300;
    padding : 0px 0px 4px 0px;
}	



.p-text
{
	color : var(--standard-text-color);
    font-size : 1.1rem;	
    font-weight : 500;
    padding : 0px 0px 10px 0px;
}

.p-para-text
{
	color : var(--standard-text-color);
    font-size : 1rem;
    line-height : 1rem;
    font-weight : 400;
    padding : 0px 0px 4px 0px;
}	

.p-para-text-further
{
	color : var(--standard-text-color);
    font-size : 1rem;	
    line-height : 1rem;    
    font-weight : 300;
}	

.footer-text-style
{
	display : inline-block;
	font-size : 1rem;
	color : white;
	font-weight : 300;
	width : 100%;
    background-color : rgba(0,0,0,.9);
}

.footer-menu-area-background
{
	display : inline-block;
	width : 100%;
	padding-top : 15px;
	padding-bottom : 15px;	
    background-color : rgba(0,0,0,.9);
}

.footer-menu-link
{
	font-size : 1rem;
	color : var(--menu-expanded-link-color-initial);
	font-weight : 400;
}

.footer-menu-link:hover
{
	cursor : pointer;
	color : var(--menu-expanded-link-color-hovered);
}


.standard-list-item
{
	color : var(--standard-text-color);
    font-size : 1.1rem;
    line-height : 1.3rem;
    font-weight : 400;
    padding : 0px 0px 4px 0px;
}

.standard-image-caption
{
	color : var(--standard-text-color);
    font-size : 1rem;
    font-weight : 300;
    padding : 5px 0px 5px 0px;
}

.standard-center-div
{
	text-align : center;
}

.end-text-block-spacing
{
	height : 25px;
}

.latestheader
{
	display : block;
	font-size : 1.1rem;
	font-weight : 400;
	text-align : center;
	padding : 15px;
	background-color : #ffffff;
	border-radius : var(--stnd-div-radius);
	border : 1px solid #d2d2d2;  	
	margin : 0px 0px 10px 0px;
}

.docgroupwrapperouter
{
	display : inline-block;
	width : 100%;
	padding : 0px 0px 0px 0px;
	background-color : none;
	border-radius : 0;
	max-height : 700px;
	overflow-y : auto;
	overflow-x : auto;
}

.docgroupheadingwrapper
{
	display : block;
	font-size : 1.1rem;
	font-weight : 400;
	text-align : center;
	padding : 15px;
	background-color : white;
	border-radius : var(--stnd-div-radius);
	border : 1px solid #d2d2d2;  
	margin : 0px 0px 10px 0px;
}

.docgrouph1tag
{
	font-size : 1.1rem;
	font-weight : 400;
    color : #004f75;
    margin-bottom : 5px;
}

.docgroupwrapper
{
	display : inline-block;
	width : 100%;
	padding : 40px;
	background-color : #ffffff;
	border-radius : var(--stnd-div-radius);
	border : 1px solid #d2d2d2;  	
}

.latestwrapperouter
{
	display : inline-block;
	width : 100%;
	padding : 0px 0px 0px 0px;
	background-color : none;
	border-radius : 0;
	max-height : 700px;
	height : 700px;
	overflow-y : auto;
	overflow-x : auto;
}

.latestwrapper
{
	display : inline-block;
	width : 100%;
	padding : 40px;
	background-color : #ffffff;
	border-radius : var(--stnd-div-radius);
	border : 1px solid #d2d2d2;  	
}

.snippetheadinglink
{
	color : #005782;
	font-size : 1.1rem;
	font-weight : 500;
	line-height : 1.3rem;	
}

.snippetheadinglink:hover
{
	color : #0080c0;
	cursor : pointer;
}

.snippetwrapper
{
	display : block;
	padding : 10px 10px 0px 10px;
	background-color : #fbfbfb;
	border : 1px solid #d2d2d2;
	border-radius : var(--stnd-div-radius);
}

.snippetactual
{
	color : black;
	font-size : 1.05rem;
	font-weight : 200;
	line-height : 1.4rem;
}

.showdocumentwrapper
{
	background-color : white;
	color : black;
	font-size : 1.1rem;
	font-weight : 200;
	padding : 30px;	
	border-radius : var(--stnd-div-radius);
    white-space: pre-wrap;
	border : 1px solid #d2d2d2;    
}

.article-paragraph-content
{
	color : black;
	font-size : 1.05rem;
	font-weight : 200;
	line-height : 1.4rem;
}
.showdocumentdate
{
	display : block;
	font-size : 1.1rem;
	font-weight : 400;
	text-align : center;
	padding : 15px;
	background-color : white;
	border-radius : var(--stnd-div-radius);
	margin : 0px 0px 10px 0px;
	border : 1px solid #d2d2d2;  
}

.showdocumenth1
{
	font-size : 1.3rem;
	font-weight : 400;
    color : #004f75;
    margin-bottom : 15px;
}


.showdocumenth2
{
	font-size : 1.1rem;
	font-weight : 400;
    color : #004f75;
    margin-bottom : 5px;
}

.indexcentertp
{
	display : block;
	font-size : 1.5rem;
	font-weight : 400;
	text-align : center;
	padding : 11px 10px 10px 10px;
	background-color : white;
	border-radius : var(--stnd-div-radius);
	margin : 0px 0px 10px 0px;
	border : 1px solid #d2d2d2; 
	color : #005984;  
}

.indexcenterwrapper
{
	display : inline-block;
	width : 100%;
	padding : 40px;
	background-color : white;
	border-radius : var(--stnd-div-radius);
	border : 1px solid #d2d2d2;   
}

.indexcentertext
{
	font-size : 1.1rem;
	font-weight : 300;
	color : #747474;
}



.categorytreeheader
{
	display : block;
	font-size : 1.1rem;
	font-weight : 400;
	text-align : center;
	padding : 15px;
	background-color : white;
	border-radius : var(--stnd-div-radius);
	margin : 0px 0px 10px 0px;
	border : 1px solid #d2d2d2;   
}

.categorytreelink
{
	display : inline-block;
	font-size : 1.1rem;
	font-weight : 300;
	color : #646464;
	padding-bottom : 5px;

}

.categorytreelink:hover
{
	color : #3865af;
}


.categorytreewrapperouter
{
	display : inline-block;
	width : 100%;
	padding : 0px 0px 0px 0px;
	background-color : none;
	border-radius : 0;
	max-height : 700px;
	height : 700px;
	overflow-y : auto;
	overflow-x : auto;		
}
.categorytreewrapper
{
	display : inline-block;
	width : 100%;
	padding : 40px;
	background-color : white;
	border-radius : var(--stnd-div-radius);
	border : 1px solid #d2d2d2;   
}

.articletextarea
{
	width : 100%;
	resize : none;
	font-size : 1rem;
	font-weight : 400;
	color : #2c2c2c;

}


.articlewrapper
{
	display : inline-block;
	width : 100%;
	padding : 40px;
	background-color : #ffffff;
	border-radius : var(--stnd-div-radius);
	border : 1px solid #d2d2d2;  	
    white-space: pre-wrap;	
}


.generalpagelink
{
	display : inline-block;
	font-size : 1.3rem;
	font-weight : 500;
	color : #006291;
	padding-bottom : 5px;
	text-align : center;

}

.generalpagelink:hover
{
	color : #3865af;
}

.centerthis
{
	text-align : center;
}






ul, #categoryTree {
  list-style-type: none;
}

/* Remove margins and padding from the parent ul */
#categoryTree {
  margin: 0;
  padding: 0;
}

/* Style the caret/arrow */
.caret {
  cursor: pointer;
  display : inline-block;
  user-select: none; /* Prevent text selection */
  font-weight : 400;
  font-size : 1.1rem;  
  color : #4a4a4a;
  margin-bottom : 5px;
}

/* Create the caret/arrow with a unicode, and style it */
.caret::before {
  content: "\25B6";
  color: #008fd5;
  font-size : .8rem;
  display: inline-block;
  margin-right: 6px;
}

/* Rotate the caret/arrow icon when clicked on (using JavaScript) */
.caret-down::before {
  transform: rotate(90deg);
}

/* Hide the nested list */
.nested {
  display: none;
}

/* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
.active {
  display: block;
}






@media only screen and (max-width: 1400px) 
{
.categorytreewrapper
{
	padding : 6px;
}	
	
.indexcenterwrapper
{
	padding : 6px;
}

.showdocumentwrapper
{
	padding : 6px;	
}
	
.latestwrapper
{
	padding : 6px;
}	

.docgroupwrapper
{
	padding : 6px;
}

.page-data-pusher
{
	padding : 0 5px 20px 5px;
}

	
}

@media only screen and (max-width: 1200px) 
{
    .categorytreewrapperouter, .latestwrapperouter
    {
    	max-height : none;
	    height : 100%;
    }
}

@media only screen and (max-width: 992px) 
{
.h1-hero-text-style-index, .nonh-hero-text-style-doc-show, .nonh-hero-text-style-general
{
	font-size : 2rem;
	font-weight : 300;
	line-height : 4rem;
	margin-top : 20px;	
}
	
}


@media only screen and (min-width: 768px) 
{ 
  .menu ul {
    display: flex;
    padding: 0;
  }

  .menu li {
    padding: 0 20px;
  }
  

  
  
}


@media only screen and (max-width: 767px) 
{ 
.menu-fixer { overflow : visible;}

	.menu-container 
  {
    flex-direction: column;
    align-items: flex-end;
    min-height : var(--menu-small-height);
    height : var(--menu-small-height);    
  }
  
  .menu-container span {
   display: block;
}
  
  
  .menu-container a:hover {
     color: var(--menu-dropdown-link-color-hovered);
  }
  
  .menu {
    position: absolute;
    box-sizing: border-box;
    width: 250px;
    right: -250px;
    top: 0;
    margin: -20px;
    padding: 75px 0px 50px 0px;
    background: var(--menu-dropdown-bg-color);
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translateX(0%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    justify-content : space-between;
  }

  .menu-container input:checked ~ .menu {
    transform: translateX(-100%);
  }



  
  
}


@media only screen and (max-width: 576px) 
{
.h1-hero-text-style-index, .nonh-hero-text-style-doc-show, .nonh-hero-text-style-general
{
	font-size : 1.4rem;
	font-weight : 200;
	line-height : 2rem;
	margin-top : 20px;
}
	
}
