/*
set Hyperlink style  08.18.2021
*************************************************/
a{color:#F4A460;}                        /* SandyBrown  */
a:hover {
	color: #228B22;
	text-decoration:none;
}          
a:active {color:#FFDA00;background:none;}  /*   808A87 */
.img_trans img {  
	width: 100%;  
	transform: scale(1);  
	transition: all 0.5s ease 0s;
}  
.img_trans:hover img {  
	transform: scale(1.3);
	transition: all 0.5s ease 0s;
	-webkit-transform: scale(1.3);
	-webkit-transform: all 0.5s ease 0s;
}  
@media (min-width: 992px) {
	.home-bg-login {
	  background-image: url("../../images/home/bg3.jpg");
	  background-size: cover;
	  background-repeat: no-repeat;
	  background-position: center center;
	  min-height: 50vh;
	}
  }

/*
added by liang 08.21.2021
***************************/
/* .btn-Sandy-Brown:hover {
  background-color: #F4F4F4;
  border-color: #F4F4F4;
} */



.btn-Sandy-Brown{
  background-color: #D2691E; /* Green */
  /* border: 3px solid #F5F5F5; HTML WhiteSmoke */
  color: white;
  /* padding: 15px 32px; */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 60x;
}

.btn-Sandy-Brown:hover{
  background-color: white;
  color: #1C1D1E; 
}

.btn-dim-gray {
  /* border-color: white; */
  color:#FFF8DC;
  /* border: 3px solid #F5F5F5; HTML WhiteSmoke */
}
.btn-dim-gray:hover {
  background-color: white;
  border-color: white;
  color: #1C1D1E;
}

.btn-outline-warning:hover {
  background-color: #F0F0F0;
  border-color: #F0F0F0;
  color: #1C1D1E;
}
.btn-outline-success:hover {
  background-color: #F0F0F0;
  border-color: #F0F0F0;
  color:   black;
}
.btn-blog{
  background-color: dimgray; /* Green */
  /* border: 3px solid #F5F5F5; HTML WhiteSmoke */
  color: white;
  /* padding: 15px 32px; */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 60x;
}

.btn-blog:hover{
  background-color: silver;
  color: #1C1D1E; 
}

/*
added by liang 10.15.2021
***************************/
.btn-RosyBrown{
  background-color:		#BC8F8F;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 60x;
}
.btn-RosyBrown:hover{
  background-color: white;
  color: #1C1D1E; 
}
.btn-outline-info:hover{
  background-color: white;
  border-color: #F0F0F0;
  color: #1C1D1E; 
}
.btn-RebeccaPurple{
  background-color:		#663399;    /* RebeccaPurple   #BC8F8F */
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 60x;
}
.btn-RebeccaPurple:hover{
  background-color: white;
  color: #1C1D1E; 
}
.btn-outline-info:hover{
  background-color: white;
  border-color: #F0F0F0;
  color: #1C1D1E; 
}







/*
added by liang 09.07.2021
***************************/
.wrapper {
padding-top: 50px;
padding-bottom: 60px;
}
.login-page {
	margin-bottom: 60px;
}

#userDisplay{
	position: fixed;
	right: 2px;
	top: 2px;
	width:fit-content;
	min-width: 100px;
	height:fit-content;
	background-color: darkgreen;
	border-radius: 0.5rem;
	outline: none;
	cursor: pointer;
	z-index: 3;
	padding: 10px;
    opacity: 0.85;
	color:white;
	font-size: 16pt;
}


@media screen and (min-width: 1680px) {
	.banner.style2 {
		padding: 0rem 7.5rem 0rem 7.5rem ;
	}
	.banner.style2 .content {
		padding: 2.75rem 3.75rem 1.75rem 3.75rem ;
	}
}

@media screen and (max-width: 1680px) {
	.banner.style2 {
		padding: 0rem 5.75rem 1.75rem 5.75rem ;
	}
	.banner.style2 .content {
		padding: 3.75rem 3.75rem 1.75rem 3.75rem ;
	}
}

@media screen and (max-width: 1280px) {

	.banner.style2 {
		padding: 0rem 3rem 2rem 3rem ;
	}

	.banner.style2 .content {
		padding: 3rem 3rem 2rem 3rem ;
	}

}

@media screen and (max-width: 980px) {

	.banner.style2 {
		padding: 2rem 1.5rem 1rem 1.5rem ;
	}

		.banner.style2 .content {
			padding: 2.25rem 2.25rem 1.75rem 2.25rem ;
		}

}

@media screen and (max-width: 736px) {
	.banner.style2 {
		padding: 9.5rem 0rem 0.1rem 0rem ;
	}
	.banner.style2 .content {
		padding: 2rem 0.15rem 0.5rem 0.15rem ;
	}
	#userDisplay{
		position: fixed;
		right: 2px;
		top: 2px;
		width:100%;
		height:fit-content;
		background-color: darkgreen;
		border-radius: 0.5rem;
		outline: none;
		cursor: pointer;
		z-index: 3;
		opacity: 0.85;
		color:white;
	}
}



/* Form */

form {
  margin: 0 0 1rem 0;
}
  form.stacked {
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
  }
    form.stacked li {
      padding: 1.3rem 0 0 0;
    }
      form.stacked li:first-child {
        padding-top: 0;
      }

  form > :last-child {
    margin-bottom: 0;
  }

  form > .fields {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% );
    text-align: center;    /* liang */
    margin: -1.5rem 0.5rem 2rem 0.5rem;

  }
    form > .fields.stacked {
      -moz-flex-direction: column;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-left: 0;
    }

	form > .fields.stacked li {
	padding: 1.3rem 0 0 0;
	}

	form > .fields.stacked li:first-child {
		padding-top: 0;
	}
    form > .fields > .field {
      -moz-flex-grow: 0;
      -webkit-flex-grow: 0;
      -ms-flex-grow: 0;
      flex-grow: 0;
      -moz-flex-shrink: 0;
      -webkit-flex-shrink: 0;
      -ms-flex-shrink: 0;
      flex-shrink: 0;
      padding: 0.5rem 1rem 0.75rem;
      width: calc(80% +4rem  );      /*100%*/
      text-align: center;    /* liang */

    }
	form > .fields > .field > input{
		font-size: 14pt;
		font-weight: 500;
		color:gray;
	}
	form > .fields > .field > input:hover{
		color:darkgreen;
	}
	form > .fields > .field > input:focus::placeholder{
		opacity: 0;
	}

      form > .fields > .field.half {
        width: calc(50% - 0.75rem);

      }

      form > .fields > .field.third {
        width: calc(100%/3 - 0.5rem);
      }

      form > .fields > .field.quarter {
        width: calc(25% - 0.375rem);
      }

/* Actions */
.actions{
padding: 20px 0px 0px;
}
.action2{
	padding: 20px 0px 20px;
}
.action3{
	padding: 50px 0px 20px;
}
ul.actions {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  cursor: default;
  list-style: none;
  margin-left: -1rem;
  padding-left: 0;
}

  ul.actions li {
    padding: 0 0 0 1rem;
    vertical-align: middle;
  }

  ul.actions.special {
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }

    ul.actions.special li:first-child {
      padding-left: 0;
    }

  ul.actions.stacked {
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
  }

    ul.actions.stacked li {
      padding: 1.3rem 0 0 0;
    }

      ul.actions.stacked li:first-child {
        padding-top: 0;
      }

  ul.actions.fit {
    width: calc(100% + 1rem);
  }

    ul.actions.fit li {
      -moz-flex-grow: 1;
      -webkit-flex-grow: 1;
      -ms-flex-grow: 1;
      flex-grow: 1;
      -moz-flex-shrink: 1;
      -webkit-flex-shrink: 1;
      -ms-flex-shrink: 1;
      flex-shrink: 1;
      width: 100%;
    }

      ul.actions.fit li > * {
        width: 100%;
      }

    ul.actions.fit.stacked {
      width: 100%;
    }

  @media screen and (max-width: 480px) {

    ul.actions:not(.fixed) {
      -moz-flex-direction: column;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-left: 0;
      width: 100% !important;
    }

      ul.actions:not(.fixed) li {
        -moz-flex-grow: 1;
        -webkit-flex-grow: 1;
        -ms-flex-grow: 1;
        flex-grow: 1;
        -moz-flex-shrink: 1;
        -webkit-flex-shrink: 1;
        -ms-flex-shrink: 1;
        flex-shrink: 1;
        padding: 1rem 0 0 0;
        text-align: center;
        width: 100%;
      }

        ul.actions:not(.fixed) li > * {
          width: 100%;
        }

        ul.actions:not(.fixed) li:first-child {
          padding-top: 0;
        }

        ul.actions:not(.fixed) li input[type="submit"],
        ul.actions:not(.fixed) li input[type="reset"],
        ul.actions:not(.fixed) li input[type="button"],
        ul.actions:not(.fixed) li button,
        ul.actions:not(.fixed) li .button {
          width: 100%;
        }

          ul.actions:not(.fixed) li input[type="submit"].icon:before,
          ul.actions:not(.fixed) li input[type="reset"].icon:before,
          ul.actions:not(.fixed) li input[type="button"].icon:before,
          ul.actions:not(.fixed) li button.icon:before,
          ul.actions:not(.fixed) li .button.icon:before {
            margin-left: -0.5rem;
          }

  }


.fileTime{
	color:darkblue;
	text-decoration: none;
}
.fileLink{
	padding: 0px 0px 0px 10px;
	color:#292421;
	text-decoration: none;
}
.fileLink:hover{
	color:blue;
	font-weight: 550;
	background: none;
}




  /* Image */

	.image {
		border: 0;
		border-radius: 4px;
		display: inline-block;
		position: relative;
	}

		.image img {
			display: block;
			border-radius: 4px;
		}

		.image.left, .image.right {
			width: 60%;
			max-width: 30rem;
		}

			.image.left img, .image.right img {
				width: 100%;
			}

		.image.left {
			float: left;
			margin: 0 2rem 1rem 5rem;
			top: 0.25rem;
		}

		.image.right {
			float: right;
			margin: 0 0 1rem 1.5rem;
			top: 0.25rem;
		}

		.image.fit {
			display: block;
			margin: 0 0 2rem 0;
			width: 100%;
		}

    .image.fit img {
      width: 100%;
    }

		.image.main {
			display: block;
			margin: 0 0 3rem 0;
			width: 100%;
		}

    .image.main img {
      width: 100%;
    }


/* Liang 2022 0305              */
.page-main{
	font-size: 15pt;
	line-height:1.8;
}
.upload-button{
	background-color: #4CAF50; /* Green */
	border: none;
	color: #FFFFCD;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	font-weight:700;
	margin: 1pt 3pt 1pt;
	border-radius: 8pt;
}
.upload-button:hover{
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
	background-color: #f44336;
	color: white;
	font-size: 16px; 
}
/*Liang  2022-03-12*/
.lead-select{
	color:darkgreen;
	font-size: 22pt;
    line-height: 1.7em;
    font-weight: 500;
    width: calc(25% + 10rem);
    max-width: 300px;
}
.lead-select >option{
    color:darkblue;
	font-size: 21pt;
    line-height: 1.7em;
    font-weight: 500;
}
.title-select{
	font-size: 24pt;
	font-weight:600;
	color:black;
	padding-right: 30px;
}


