 /*styles.css modified 11/27/2023 */
 * {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* body {  */
/*    background-color: #FFFFFF; */ 
/*	background-color: var(--chacblue); */
/*    margin: 0; */ 
/*} */ 
 .navtop {
    background-color: var(--chacblue);
    height: 60px;
    width: 100%;
    border: 0;
}
.navtop div {
    display: flex;
    margin: 0 auto;
    width: 1000px;
    height: 100%;
}
.navtop div h1, .navtop div a {
    display: inline-flex;
    align-items: center;
}
.navtop div h1 {
    flex: 1;
    font-size: 24px;
    padding: 0;
    margin: 0;
    color: var(--chacblue);
    font-weight: normal;
}
.navtop div h4 {
    flex: 1;
    font-size: 12px;
    padding: 0;
    margin: 0;
    color: var(--chacblue);
    font-weight: normal;
}
.navtop div a {
    padding: 0 20px;
    text-decoration: none;
    color: #c5d2e5;
    font-weight: bold;
}
.navtop div a i {
    padding: 2px 8px 0 0;
}
.navtop div a:hover {
    color: var(--chacblue);
}
  .content {
/*    width: 1000px; */ 
    margin: 0 auto;
}  
.content h2 {
    margin: 0;
    padding: 25px 0;
    font-size: 22px;
    border-bottom: 1px solid #ebebeb;
    color: #ffffff;
}
.image-popup {
    display: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 750px; 
    height: 800px;
    margin-top: 10px;	
    margin-left: 300px;
/*	margin-bottom: 0; */
/*   	width: 100%; */
 /*   min-height: 100%; */
    background-color: rgba(0, 0, 0, 0.8);
/*    padding: 25px; */
  transition: opacity 1s;
	border-radius: 12px 12px 12px;
	box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
   background-color: var(--chacblue);
    z-index: 99999;
}
.image-popup .con {
    display: flex;
    flex-flow: column;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 5px;
	width: 650px;
	height: 750px;
/*	transform: rotate(90deg);
	padding:0;
    border-radius:0; */
}
.image-popup .con h3 {
    margin: 0;
    font-size: 18px;
/*	transform: rotate(90deg);
	align-self: right; */
}
.image-popup .con .edit, .image-popup .con .trash {
    display: inline-flex;
    justify-content: center;
    align-self: flex-end;
    width: 40px;
    text-decoration: none;
    color: #FFFFFF;
 /*   padding: 10px 12px;
    border-radius: 5px;
    margin-top: 10px; */
}
.image-popup .con .trash {
    background-color: #b73737;
}
.image-popup .con .trash:hover {
    background-color: #a33131;
}
.image-popup .con .edit {
    background-color: #37afb7;
}
.image-popup .con .edit:hover {
    background-color: #319ca3;
}
.prntimg {
/*	transform: rotate(90deg); */
	margin-top: 100px;
}
#imageonly {
/*	transform: rotate(90deg); */
}	
.home .upload-image {
    display: inline-block;
    text-decoration: none;
    background-color: #38b673;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
    color: #FFFFFF;
    padding: 10px 15px;
    margin: 15px 0;
}
.home .upload-image:hover {
    background-color: #32a367;
}
.home .images {
    display: flex;
    flex-flow: wrap;
}
.home .images a {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 150px;
    height: 100px;
    margin: 0 20px 20px 0;
}
.home .images a:hover span {
    opacity: 1;
    transition: opacity 1s;
}
.home .images span {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    color: #fff;
    width: 980px;
    min-height: 900px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px;
    transition: opacity 1s;
	border-radius: 12px 12px 12px;
	box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}
upload form {
    padding: 15px 0;
    display: flex;
    flex-flow: column;
    width: 400px;
}
.upload form label {
    display: inline-flex;
    width: 100%;
    padding: 10px 0;
    margin-right: 25px;
}
.upload form input, .upload form textarea {
    padding: 10px;
    width: 100%;
    margin-right: 25px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
}
.upload form textarea {
    height: 200px;
}
.upload form input[type="submit"] {
    display: block;
    background-color: var(--chacblue);
    border: 0;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    cursor: pointer;
    width: 200px;
    margin-top: 15px;
    border-radius: 5px;
}
.upload form input[type="submit"]:hover {
    background-color: #32a367;
}
.delete .yesno {
    display: flex;
}
.delete .yesno a {
    display: inline-block;
    text-decoration: none;
    background-color: var(--chacblue);
    font-weight: bold;
    color: #FFFFFF;
    padding: 10px 15px;
    margin: 15px 10px 15px 0;
    border-radius: 5px;
}
.delete .yesno a:hover {
    background-color: #32a367;
} 
.content .home em {
	color: #FF0000;
	font-weight: bold;
}