body {
	margin: 0;
}

.container {
    position: relative;
    width: 960px;
    margin: 0 auto;
    padding: 0;
}

.container:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {    clear: both }

.clearfix {    zoom: 1 }

.clear {
    clear: both;
    visibility: hidden;
    width: 0;
    height: 0;
}

#infobar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    color:#fff;
    width: 100%;
    padding: 20px 0 35px 0;
    display: none;
    border-bottom:5px solid #444444;
	text-align: center;
    background: rgba(0,0,0,0.6) !important;
    backdrop-filter: blur(5px) !important;
    border-bottom: 2px solid rgba(45, 45, 45, 0.9) !important;
}

	#infobar a{
		color:#FFFFFF;
	    font-weight: bold;
	}

	#infobar a:hover, a:focus{ color: #999999; transition: 0.6s; }
        
.close-infobar {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent #444444 transparent transparent;
    z-index: 999;
}

.close-infobar:after {
    content: '';
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    right: -40px;
    background: url(../images/toggle.png) no-repeat 0px 0px;
}

#infobar .close-infobar.open { }

.close-infobar.open:after {
    content: '';
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    right: -40px;
    background: url(../images/toggle.png) no-repeat -40px 0px;
}

    /* Note: Design for a width of 768px */
    @media only screen and (min-width: 768px) and (max-width: 959px) {
        .container                                 { width: 768px; }
    }
	/* Note: Design for a width of 320px */
    @media only screen and (max-width: 767px) {
        .container { width: 300px; }
    }
    /* Note: Design for a width of 480px */
    @media only screen and (min-width: 480px) and (max-width: 767px) {
        .container { width: 420px; }
		    }
