/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    display: block;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    display: none;
}

@media only screen and (min-width: 768px) {
#header {
	height: 160px;
}

#centreposition {
	padding-right: 6px;
	padding-left: 200px;
	background-color: #FFFFFF;
}

/* The centrecontent style is set up for a 2 column layout.  
If you want a 3 column layout then change the centreposition style like this:   padding-right: 200px; 
<div id="right"> Write the content for your right hand column inside an id-"right" div like this </div> */

#centrecontent {
	z-index: 100;
	min-width: 1px;
	background-color: #FFFFFF;
	border: 0px solid #999999;
	padding: 3px;
}

#footer {
	padding-left: 175px;
	background-color: #FFFFF7;
}

#left {
	width: 200px;
	position: absolute;
	top: 160px;
	left: 0px;
	padding: 10px 0px 10px 6px;
}



#right {
	width: 130px;
	position: absolute;
	top: 130px;
	right: 0px;
	height: 200px;
}

/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    display: none;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    display: block;
}

/* Thumbnail hidden in list mode, fade-in on load */
.entry .thumb-wrap { display: none; }
.entry .thumb { opacity: 0; transition: opacity 0.3s ease-in; }

/* Grid mode: masonry-style thumbnail layout */
.grid-mode {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}
.grid-mode > form,
.grid-mode > h1,
.grid-mode > input[type="text"],
.grid-mode > h2,
.grid-mode > h3 {
    grid-column: 1 / -1;
}
.grid-mode > br { display: none; }
.grid-mode .entry br { display: none; }
.grid-mode .entry img[height="12"] { display: none; }
.grid-mode .entry a,
.grid-mode .entry font {
    display: block;
    font-size: 11px !important;
    word-wrap: break-word;
    text-align: center;
}
.grid-mode .thumb-wrap {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 130px;
    margin-bottom: 4px;
}
.grid-mode .thumb {
    position: absolute;
    top: 0;
    left: 0;
}
.grid-mode .thumb-wrap a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.grid-mode .thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    color: #fff;
    font-size: 130px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}
