input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

#full-size-page {
   min-height:100%;
   width: 100%;
   position:absolute;
   top:0;
   left: 0;
	 
}
#wrapper {
	margin: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 175px;
	padding-left: 0;
 
}
#topBar {
 
	position: fixed;
	top:0px;
	left:0px;
	z-index: 100;
}
 
#footer {
	position: absolute;
	bottom: 0px;
	width: 100%;
	display: flow-root;
}

div#notLive {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    background: #ff002d;
    color: white;
    animation: pulseRedWhite 2s infinite ease-in-out;
}

/* FAQ Container */
#faq {

    margin: 60px auto;
    padding: 0 20px;
    font-family: inherit;
}

#faq h2 {
   
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
}

/* Each <details> block */
#faq details {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

/* The summary line */
#faq summary {
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Remove default arrow */
#faq summary::-webkit-details-marker {
    display: none;
}

/* Custom arrow icon */
#faq summary::after {
    content: "›";
    font-size: 1.3rem;
    transform: rotate(90deg);
    transition: transform 0.2s ease;
    opacity: 0.5;
}

/* Rotate arrow when open */
#faq details[open] summary::after {
    transform: rotate(-90deg);
    opacity: 0.8;
}

/* The answer text */
#faq p {
    margin: 10px 0 0 0;
    line-height: 1.6;
    color: #444;
    padding-right: 10px;
}

/* Smooth open/close feel */
#faq details[open] p {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-3px); }
    to   { opacity: 1; transform: translateY(0); }
}