/* Reset all margins and paddings for browsers */

*{ 
	padding: 0;
	margin: 0;
}

@view-transition {
  navigation: auto;
}

/*-------------------------------------------------------------------------------------
											BODY
--------------------------------------------------------------------------------------*/
body {
	font-size:14px;
	font-family: aptos, calibri;
	-line-height: 1.6em; 
	margin: 0;
	/* background-color: #EFEFEF; */
	/* background-color: #FBFBFB;  */
	background-image: url('/images/background.png');
	-moz-background-size: cover;
	-webkit-background-size: cover;
	/* -o-background-size: cover; */
	background-size: cover;
}


/*-------------------------------------------------------------------------------------
											A LINKS
--------------------------------------------------------------------------------------*/
a {
	color: #0066B3; 
	background: inherit; 
	-text-decoration: none
}
a:hover{
	color:#FF5500; 
	text-decoration: underline
}

/*-------------------------------------------------------------------------------------
											H1 H2 H3
--------------------------------------------------------------------------------------*/
h1, h2, h3{
	font-family: Montserrat, calibri;
	padding: 0; 
	margin: 0;
}

h1 {font-size: 1.7em; margin:35px 0px 0px; }
h2 {font-size: 1.4em; margin:25px 0px 0px; margin-bottom:5px;}
h3 {font-size: 1.2em; margin:20px 0px 0px; margin-bottom:5px;}
h4 {font-size: 1em; margin:15px 0px 10px;}
h5 {font-size: 0.8em; margin:10px 0px 0px; font-style:italic;}
h6 {font-size: 0.6em; margin:10px 0px 0px; font-style:italic;}



/*-------------------------------------------------------------------------------------
											TOP BANNER
--------------------------------------------------------------------------------------*/
.topBanner {
	margin: 0 auto;
	padding: 0;
	margin-top: 10px;
	margin-bottom:10px;
	width:98%;
	height:  80px;
	background-color: #36658C;
	moz-border-radius: 5px;
	webkit-border-radius: 5px;
	border-radius: 5px;
	position:relative;
}

/*
@media only screen and (max-width: 300px) {
   h1{
    font-size:1vw;
  }
   h2{
	font-size:0.5vw;
  }
}
*/

.topBanner h1 {
	margin:0px;
	font-family: calibri;
	padding-left: 10px; 
	color: #fff; 
	font-size: 2rem;
	-font-size:2.5vw;
	background: transparent;
}

.topBanner h2 {
	margin:0px;
	font-family: calibri;
	padding-left: 15px; 
	color: #fff; 
	font-size:1.2rem;
	-font-size:1.5vw;
	background: transparent;
}

@media only screen and (max-width: 450px) {
   .topBanner h1 {
    font-size:6vw;
  }
   .topBanner h2 {
	font-size:4vw;
  }
}

.topBanner .left{
	background-image: url('/images/dish.png');
	background-repeat: no-repeat;
	height:inherit;
	margin-right: 0px;
	margin-top: 4px;
	width:38px;
	float:left;
}

.topBanner .middle{
	float:left;
	/* border: 1px solid white; */
	height: inherit;
	padding-top: 4px;
}

.topBanner .right{
	text-align:right;
	color: white;
	font-weight: bold;
	position:absolute;
	bottom: 3%;
	right: .5%;
	font-size: 1em;
}

.topBanner img{
	border: #4D6B60 1px solid;
	width:100%;
}


/*-------------------------------------------------------------------------------------
											WRAP
--------------------------------------------------------------------------------------*/
.wrap {
	margin: 0 auto;	
	width:100%;
	/* width: 1200px; */
	background-color: #FFF;
	height:100%;
	border: 1px solid #A2BCB3;
	border-radius: 10px;
	padding-bottom: 25px;
}


/*-------------------------------------------------------------------------------------
											LOGO
--------------------------------------------------------------------------------------*/
.logo a{
	font-size: 25px;
	font-weight: 500; 
	color: white;
}


/*-------------------------------------------------------------------------------------
											HEADER
--------------------------------------------------------------------------------------*/

header {
	padding-top:0px;
	display: flex; 
	align-items: center; 
	justify-content: space-between;
	width:99%;
	position:sticky;
	top:0;
	margin:auto;
}


header a, header a:hover{
	color: white;
	text-decoration: none;
}


/*-------------------------------------------------------------------------------------
											NAV
--------------------------------------------------------------------------------------*/
nav{
	height:25px;
	margin:auto;
	width: 98%;
	background: black; 
	font-family: calibri; 
	/* CSS3 border radius code */
	moz-border-radius: 5px;
	webkit-border-radius: 5px;
	border-radius: 5px;
	padding-left: 10px;
	padding-top: 5px;
}

nav li{
	font-size: 14px; 
	margin-right: 0px;
	color: #FFF;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px;
	background: transparent;
	font-weight: bold;
	list-style: none; 
	display: inline-block;
}

	
nav li:hover{
	color:white;
	background-color: #36658C;
	cursor:pointer;
	/* CSS3 border radius code */
	moz-border-radius: 3px;
	webkit-border-radius: 3px;
	border-radius: 3px;
}



nav button{
	background-color: grey;
	margin-left: 10px; 
	border-radius: 10px; 
	padding: 5px; 
	width: 90px;
}

nav button a{
	color: white; 
	font-weight: bold;
	font-size: 12px;
}


/*-------------------------------------------------------------------------------------
											SUBHEADER
--------------------------------------------------------------------------------------*/
.subHeader { 
	clear: both; 
	border-top: 1px dotted #888;	
	border-bottom: 1px dotted #888;
	background: #eaeaea;
	background-color: #fff;
	color: #333333;
	padding: 2px;
	/* margin: 15px 8px 10px 8px; */
	font-size:1.3em;
	font-weight:bold;
	width:97%;
	margin:auto;
	margin-top:10px;
}
.subHeader a { text-decoration: none; border-bottom: 1px dashed #0066B3; }
.subHeader h1{margin:0px;padding:0px;}


/*-------------------------------------------------------------------------------------
									MAIN CONTENT
--------------------------------------------------------------------------------------*/
.content {
	width: 95%;
	color: #444444;
	background: inheret;
	margin:auto;
}

.content p{
	color: #505050;
	margin-bottom: 25px;
	font-size:1.2em;
}

.content ul li{
	margin-left:40px;
	list-style-type: circle;
}

.content textarea { border: 1px solid #bbb; width: 85%;  }
.content fieldset { float: left; width: 95%; border: 1px solid #ccc; padding: 10px 8px; margin: 0 10px 8px 0; background: #FFF; color: #000; }
.content fieldset p { width: 95%; }



/*-------------------------------------------------------------------------------------
										BLOG
--------------------------------------------------------------------------------------*/

.blogSection{
	padding:5px;
	width: 95%;
	color: #444444;
	background: inheret;
	margin:auto;
}

.blog{
	margin-top:20px;
	
}

.blog p{
	width:90%;
	font-family: calibri;
	padding-left: 20px;
	font-size:1.2em;
}


.blogContent{
	margin-left:30px;
	width:95%;
}

.blogContent p{
	font-family: calibri;
	padding-left: 15px;
	font-size:1.2em;
}

/*-------------------------------------------------------------------------------------
										ARTICLE
--------------------------------------------------------------------------------------*/
.article{
	padding: 0px 30px 0px;
}

.article p{
	font-family: calibri;
	padding: 0px 15px 20px 0px;
	font-size:1.2em;
	
}

.article ul{
	margin: 0px 25px;
}

.eg{
	color:teal;
	font-style:italic;
	padding: 4px;
	
}


.bDate{
	font-size:8px;
	color: red;
	text-align:right;
	
}





/*-------------------------------------------------------------------------------------
										ARTICLE
--------------------------------------------------------------------------------------*/
/*
		font-family: 'Tangerine';
		font-family: "Antonio";
		font-family: "Forum";


.article h1, .article h2, .article h3{
	font-family: 'Montserrat';
	margin: 15px 0px 1px 15px;
}
*/



/*-------------------------------------------------------------------------------------
										noShow / Show
--------------------------------------------------------------------------------------*/

p.noShow {
	max-height: 0;
	overflow: hidden;
	transition: max-height 1s ease-out, padding 1s ease-out;
	border:1px solid transparent;
	padding: 0px;
	margin-left: 40px;
	border-radius: 10px;
}

.show{
	max-height: 180px; /* Adjust based on your content's height */
	padding:0px;
	margin-left:40px;
	border:1px solid black;
	transition: max-height 1s ease-out, padding 1s ease-out;
	border-radius: 10px;
	font-size:1.2em;
}


/*-------------------------------------------------------------------------------------
										STICKY
--------------------------------------------------------------------------------------*/

 .sticky{
	position: fixed;
	z-index: 999;
}


/*-------------------------------------------------------------------------------------
										ERROR PAGE
--------------------------------------------------------------------------------------*/
.errorPage{
	text-align: center;
	font-size: 24px;
	margin: auto;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	height:50%
}
.errorPage p{
	padding: 20px;
}

/*-------------------------------------------------------------------------------------
										ERROR PAGE
--------------------------------------------------------------------------------------*/
.thankyou{
	font-size: 24px;
	margin: auto;
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	width:50%;
}

.thankyou p{
	padding:30px;
}






.date { 
	margin:auto;
	border-top: 1px solid #e5e5e5; 
	text-align: right; 
	margin-bottom: 25px; 
	margin-top: 5px;
	font-style: italic;
	width:95%;
}

.comment .date { text-align: left; border: 0;}
.comment { background: #FFF; color: #808080; padding: 10px; margin: 0 0 10px 0; border-top: 1px solid #ccc; }
.commentBox { background: #FFF; color: #808080; padding: 10px; margin: 0 0 10px 0; border-top: 1px solid #ccc; }



/*-------------------------------------------------------------------------------------
								MULTIPLE COLUMNS
--------------------------------------------------------------------------------------*/
.container {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px; /* Rounded corners for the container */
    overflow: hidden; /* Ensure child elements respect the container's rounded corners */
	margin:10px;
  }
  
 .column {
    flex: 1;
    padding: 10px;
	margin: 5px 10px 5px 10px;
	
    border: 2px solid lightblue;/* #ccc; */
   
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px; /* Rounded corners for each column */
    overflow: hidden; /* Ensure child elements respect the column's rounded corners */
	box-shadow: 0 0 10px rgba(54, 101, 140, 0.2); /* #36658C */
	width:100%;
  }
  
  .column h2{
	text-align: center;
}
  
  .column .content {
    flex-grow: 1;
    width: 100%;
    padding: 10px;
  }
  
  .column .footer {
    background-color: #f0f0f0;
    padding: 5px;
    margin-top: auto;
    text-align: center;
    width: 100%;
  }
  
  @media only screen and (max-width: 700px) {
    .container {
      flex-direction: column;
    }
    
    .column {
      width: 80%;
	  margin:auto;
	  margin-top: 10px;
	  margin-bottom:10px;
    }
  }
  
  
  
  /*-------------------------------------------------------------------------------------
									FOOTER
--------------------------------------------------------------------------------------*/
.footer {
	width: 98%;
	display: flex;
	margin: auto;
    justify-content: space-between;
	font-size: 0.8em;
	color:white;
	border-top: 1px solid #cccccc;
	border-bottom: 0px solid #cccccc;
	background-color:black;
	/* CSS3 border radius code */
	moz-border-radius: 5px;
	webkit-border-radius: 5px;
	border-radius: 5px;
	min-height:30px;
}
.footer p{
	margin-top:5px;
	text-align:center;
	width:98%;
}

.footer a{
	color:white;
}
.footer a:hover{
	color:#FF5500; 
	text-decoration: underline
}

/*-------------------------------------------------------------------------------------
									VERSION
--------------------------------------------------------------------------------------*/
.version{
	font-size: 0.5em;
	font: Arial, Sans-Serif;
	float:left;
	text-align: left;
	font-style: italic;
	padding-left: 10px;
}


  /*-------------------------------------------------------------------------------------
										FORMATING
--------------------------------------------------------------------------------------*/
.block{display:block;}
.bold{font-weight: bold;}
.italic{font-style:italic;}

.fs07{font-size:07px;}
.fs08{font-size:08px;}
.fs09{font-size:09px;}
.fs10{font-size:10px;}
.fs11{font-size:11px;}
.fs12{font-size:12px;}
.fs13{font-size:13px;}
.fs14{font-size:14px;}
.fs15{font-size:15px;}
.fs16{font-size:16px;}
.fs17{font-size:17px;}
.fs18{font-size:18px;}
.fs19{font-size:19px;}
.fs20{font-size:20px;}
.fs21{font-size:21px;}
.fs22{font-size:22px;}
.fs23{font-size:23px;}
.fs24{font-size:24px;}
.fs30{font-size:30px;}
.fs40{font-size:40px;}

.fs1{font-size:1em;}
.fs1-5{font-size:1.5em;}
.fs2{font-size:2em;}
.fs2-5{font-size:2.5em;}

.white{ color:white;}
.black{color #ffffff;}
.yellow{color:yellow;}
.green{color:#4D6B60;}
.red{color:#ff0000;}
.orange{color:#FF5500;}


/*
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide|Sofia|Trirong">
<style>
h1.a {font-family: "Audiowide", sans-serif;}
h1.b {font-family: "Sofia", sans-serif;}
h1.c {font-family: "Trirong", serif;}


*/

.icon{
	font-family: "Material Icons";
}


/*-------------------------------------------------------------------------------------
										EOF
--------------------------------------------------------------------------------------*/