/* General Styles */

html { 
	height:100%; 
	margin: 0; 
	padding: 0; 
	font-family: Montserrat, Arial, Helvetica, sans serif;
	font-size: 14px; 
	color: #111111;
}

body
{
	font-family: Montserrat, Arial, Helvetica, sans serif;
	font-size: 14px !important;
	line-height: 18px !important;
	color: #111111;
	margin: 0;
	padding: 0; 
	background-color: #111111;
	background-repeat:no-repeat;
	background-position:center top;
	height:100%;
	width:100%;
}

/* Basic Fonts Begin */

tr, td, p {
	font-size: 14px;
	line-height: 18px;
	color: #111111;
}

a:link, a:visited {
	color: #111111;
	text-decoration: underline;
}

a:hover, a:active {
	color: #EF1C25;
	text-decoration: underline;
}

h1 {
	font-size: 36px;
	font-weight: 800;
	line-height: 48px;
	color: #111111;
}

h2 {
	font-size: 26px;
	font-weight: 600;
	line-height: 30px;
	color: #111111;
	margin-top: 20px;
}

h3 {
	font-size: 24px;
	font-weight: 400;
	line-height: 28px;
	color: #111111;
	margin-top: 20px;
}

h4 {
	font-size: 20px;
	font-weight: 800;
	line-height: 28px;
	color: #111111;
}

h5 {
	color: #333333;
	font-weight: 600;
}

h6 {
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	color: #EF1C25;
	margin-top: 16px;
	margin-bottom: 10px;
}

.list_title {
	font-size: 16px;
	font-weight: 600;
	line-height: 18px;
	color: #EF1C25;
}

/* Basic Fonts End */

/* Header Begin */

#fancywrap, #fancywrapsub {
	width: 100%;
	height: 680px;
}

#fancybg, #fancybgsub {
	width: 100%;
	height: 680px;
	display: flex;
	background-size: cover;
}

#fancylayer1, #fancylayer2 {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
}

#fancylayer1 {
	background-image: url(../images/853-mainbanner-top.png);
	background-position: center top;
}

#fancylayer2 {
	background-image: url(../images/853-mainbanner-bot.png);
	background-position: center bottom;
}

#banneryellowbar {
	width: 100%;
	height: 20px;
	background-color: #B79D53;
}

#fancywrapsub, #fancybgsub {
	height: 380px;
	background-position: center center;
}

#headercross {
	width: 100%;
	min-height: 90px; /* was 680 */
	background-color: #FFFFFF;
}

#headerbar {
	width: 1180px;
	min-height: 88px;
	margin: 0 auto;
}
#headerbarsub {
	width: 1180px;
	height: 260px;
	margin: 0 auto;
}

#toplogo {
	float: left;
	width: 271px;
	height: 63px;
	background-image:url(../images/853-toplogo.jpg);
	background-size: cover;

}

#toplogo a:link {
	display:inline-block;
    width:100%;
    height:100%;
}

#topright {
	float: right;
	width: 800px;
	height: 82px;
	text-align: right;
	font-family: Poppins, Arial, Helvetica, sans serif;
	font-size: 14px;
	font-weight: 400;
	color: #111111;
	margin-bottom: 8px;
	white-space: nowrap;
	line-height: 14px;
	display: block;

}

#topsocial {
	text-align: right;
	height: 40px;
	
}

#topaddress {
	text-align: right;
	height: 40px;
	padding-top: 26px;
	box-sizing: border-box;
}


/* Header End */

/* Nav Start */

#navcross {
	width: 100%;
	height: 48px; /* was 680 */
	background-color: #B79D53;
}

#nav {
	list-style:none;
	/* margin: 60px 0 0 330px;
	float:left; */
	margin: 0 auto;
	padding: 0;
	/* Clear floats */
	width: 1180px;
	height: 48px;
	clear: both;
	background-color: #B79D53;
	/* Bring the nav above everything else--uncomment if needed.*/ 
	position:relative;
	white-space: nowrap;
	z-index:5;
	display:block;
}
#nav li {
	float:left;
	margin: 8px 0 0 8px;
	
	position:relative;
}
#nav a {
	display:block;
	font-size:16px;
	font-weight: 800;
	text-decoration: none;
	padding: 6px 16px;
	color:#111111;
}
#nav a:hover {
	color:#FFF;
	background:#000000;
}

/*--- DROPDOWN ---*/
#nav ul {
	background:#B79D53; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
/*	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	margin: 0;
	padding: 0;
	left:-99999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	border:solid 1px #333333;
}
#nav ul li {
	padding:0px; /* Introducing a padding between the li and the a give the illusion spaced items */
	margin:0px;
	width:auto;
	float:none;
}
#nav ul a {
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	padding:12px 18px;
	color:#111111;
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	text-decoration:none;

}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;

}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#111111;
	color:#FFFFFF;

}

a.icon {
	padding: 18px 18px;
	text-decoration: none;
	font-size: 32px;
	color: #FFFFFF;
	position: absolute;
	right: 0;
	top: 0;
	display: none;
}
/* Nav End */

#bannercross {
	
}

#banner {
	
}

#slider1_container{
	position: relative;
	margin: 0 auto;
	top: 0px;
	left: 0px;
	width: 2000px;
	overflow: hidden;
}



/* Content Begin */

#lvl1crosswhite {
	width: 100%;
	height: auto;
	background-color: #FFF;
	border-top: solid 18px #B79D53;
	clear:both;
	padding: 20px 0 60px 0;
}

#lvl1content {
	width: 1180px;
	min-height: 300px;
	margin: 0 auto;
}

#lvl1left {
	width: 25%;
	float: left;
}

#lvl1right {
	width: 75%;
	float: right;
}

#lvl1right p {
	font-weight: 800;
}

#lvl1right img {
	width: 150px;
	height: 150px;
	margin: 10px auto;
	display: block;
}

#lvl1subleft {
	width: 69%;
	float: left;
	padding-top: 60px;
}

#lvl1subright {
	width: 29%;
	float: right;
	padding-top: 60px;
}

#lvl2crossyellow {
	width: 100%;
	min-height: 320px;
	background-color: #B79D53;
	border-bottom: solid 1px #B79D53;
}

#lvl2content {
	width: 1180px;
	margin: 0 auto;
	min-height: 320px;
}

#lvl2left {
	width: 30%;
	float: left;
}

#lvl2right {
	width: 70%;
	float: right;
	font-size: 80px;
	font-weight: 800;
	line-height: 92px;
	color: #FFFFFF;
}

#lvl3crosswhite {
	width: 100%;
	height: auto;
	background-color: #FFFFFF;
}

#lvl3content {
	width: 1180px;
	margin: 20px auto;
	border: solid 1px #FFF;
	height: auto;
}

.lvl3news {
	width: 33%;
	float: left;
	padding: 15px;
	box-sizing: border-box;
	font-weight: 800;
}

.lvl3newsimage {
	width: 100%;
	height: 250px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.lvl3news div {
	text-align: right;
	padding-top: 15px;
	
}

.lvl3news h2 {
	text-transform: uppercase;
}

#lvl3newsbar {
	width: 100%;
	height: 56px;
	background-image:url(../images/853-spacebar.jpg);
	clear: both;
}

#lvl3event1, #lvl3event2, #lvl3event3 {
	width: 36%;
	float: left;
	padding: 12px;
	box-sizing: border-box;
	border: solid 0 #F00;
	font-size: 18px;
	font-weight: 800;
}

#lvl3event2 {
	width: 28%;
}

#lvl3event3 h2 {
	margin-top: 1px;
}

.listnews h3 {
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 600;
}

.listnews h5 {
	margin-bottom: 12px;
}

.listnewsimage {
	float: left;
	width: 120px;
	height: 90px;
	margin: 0 8px 5px 2px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.listnewsreadmore {
	clear: both;
	text-align: right;
}

/* Footer Begin */

#footercross {
	width: 100%;
	height: auto;
	color: #FFFFFF;
	clear: both;
	padding: 0 0 80px 0;
}

#footercrossbar {
	width: 100%;
	height: 60px;
	background-color: #B79D53;
	background-image:url(../images/853-midbar.jpg);
	background-position: bottom center;
	background-repeat: no-repeat;
}

#footercross a:link, #footercross a:visited {
	color: #FFFFFF;
	text-decoration: none;
}

#footerbar {
	padding: 40px 0 20px 0;
	width: 1180px;
	min-height: 320px;
	margin: 0 auto;
}

#footerlogo {
	float: left;
	width: 32%;
	padding: 0 15px 0 0;
	box-sizing: border-box;
}

#footercontent {
	float: left;
	width: 68%;
	padding: 0 5px 0 0;
	color: #FFFFFF;
	box-sizing: border-box;
}

#footercontent h1, #footercontent p {
	color: #FFFFFF;
}

#footernav {
	clear: both;
	padding: 0 5px 0 0;
	text-align: right;
}

#footernav a {
	color: #FFFFFF;
	padding: 2px 15px;
}

#footerbottom {
	clear: both;
	text-align: center;
	padding-top: 40px;
}






#footerfb {
	float: right;
	width: 350px;
	height: 540px;
	margin-right: 10px;
	background-color: #FFF;
	overflow: hidden;
}

.socialboxtitle {
	color: #125EB2;
	padding: 5px;
	font-size: 18px;
	font-weight: 600;
}



#footer__logo {
	float: left;
	width: 275px;
	height: 211px;
	background-image:url(../images/UA179_botlogo.jpg);
}

#footer__logo a:link {
	display:inline-block;
    width:100%;
    height:100%;
}

/* Footer End */



.buttonapply {
  border: none;
	width: 110px;
	background-color: #EF1C25; 
  color: white;
  padding: 6px 0;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
	font-weight: bold;
  margin: 20px auto;
  transition-duration: 0.4s;
  cur___sor: pointer;
	border-radius: 4px;
}

.buttonmd {
	width: 180px;
	border: solid 1px #FFF;
  font-size: 16px;
  padding: 12px 0;
  margin: 20px 0;
}

.buttonapply a:link, .buttonapply a:hover, .buttonapply a:active, .buttonapply a:visited {
	font-size: 18px;
	font-weight: bold;
	color:#FFF;
	display:inline-block; 
	width:100%; 
	height:100%;
	}
	
.buttonapply:hover {
  background-color: #111111;
}
        .hide {
            display: none;
        }

#loginmobileonly {
	display: none;
}

#logindesktoponly {
	display: block;
}

#hometoptext {
	font-size: 15px;
	font-weight: 600;
	line-height: 24px;
	color: #125EB2;
	text-align: center;
	padding: 50px 5px;
	margin-bottom: 30px;
	border-bottom: solid 10px #125EB2;

}

#contentleft {
	float: left;
	width: 66%;
	
}

#contentright {
	float: right;
	width: 32%;
	
}

.divcallout {
	width: 180px;
	height: 40px;
	float: left;
}


.popup-wrapper {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 2px 8px #aaa;
            overflow: hidden;
        }
        .popup-title {
            padding: 10px 15px;
            background-color: #f4f4f4;
            border-bottom: 1px solid #f0f0f0;
        }
        .popup-title h3 {
            margin: 0;
            line-height: 1.5em;
            color: #333;
        }
        .popup-body {
            padding: 10px 15px;
			text-align: center;
            color: #555;
        }
        .popup-close {
            float: right;
            margin-top: 2px;
            padding: 0;
            font-size: 24px;
            line-height: 1;
            border: 0;
            background: transparent;
            color: #aaa;
            cursor: pointer;
        }
        .popup-close:hover {
            color: #333;
        }


/* Content End */


/* Form Styles */


input[type=text], select{
	width: 100%;
	padding: 8px;
	margin: 5px 0;
	font-family: Montserrat, Arial, Helvetica, sans serif;
	font-size: 14px;
	display: inline-block;
	border: 1px solid #CCC;
	border-radius: 4px;
	box-sizing: border-box;
}

input[type=text]:hover, select:hover{
	border: 1px solid #B79D53;
}

input[type=submit] {
	width: 200px;
	background-color: #B79D53;
	font-family: Montserrat, Arial, Helvetica, sans serif;
	color: white;
	padding: 8px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

input[type=submit]:hover{
	background-color: #111111;
}

textarea {
	width: 100%;
	height: 160px;
	padding: 8px;
	box-sizing: border-box;
	border: 1px solid #CCC;
	border-radius: 4px;
	background-color: #f8f8f8;
	resize: none;
}


.radio
{
border-width:0px;
color: #a58744;/*#085cb3;*/
background: #ffffff !important;
/*background: #077af1 !important;*/
margin: 0px 0px 0px 0px;
padding: 0px 1px 1px 1px;
}

.button {
color: #a58744;
font:Arial, Helvetica, sans-serif;
font-size:14px;
font-weight:bold;
background: #ece3d0 !important;
padding: 2px 8px 2px 8px;
border: 1px solid #a58744;
}

.button:hover {
background: #e4d7ba !important;
}


.legend
{
color: #ffffff;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-weight:normal;
background: #a58744 !important;
padding: 2px 8px 0px 8px;
margin: 0px;
border: 1px solid #a58744;
 text-transform:uppercase;
}

.legend a:link {color: #ffffff; text-decoration: none; text-transform:uppercase;}
.legend a:visited {color: #ffffff; text-decoration: none; text-transform:uppercase;}
.legend a:hover {color: #d5dadf; text-decoration: none; text-transform:uppercase;}
.legend a:active {color: #ffffff; text-decoration: none; text-transform:uppercase;}

/*
.logininput
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
line-height:10px;
color: #ffffff;
background: #00386b !important;
border: 1px solid #ffffff;
padding--: 2px;
padding: 1px 2px 1px 2px;
margin--: 1px;
font-weight:normal;
}
.logintext_hp {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	color: #ffffff;
	line-height: 12px;
	padding: 1px 2px 1px 2px;
	margin---: 5px 5px 2px 5px;
}
.loginbutton {
color: #ffffff;
font:Arial, Helvetica, sans-serif;
font-size:10px;
font-weight:bnormal;
background: #00386b !important;
padding: 1px 2px 1px 2px;
margin--: 1px;
border: 1px solid #ffffff;
text-align:center;
}

.loginbutton:hover {
color: #002547;
font:Arial, Helvetica, sans-serif;
font-size:10px;
font-weight:normal;
margin--: 1px;
background: #b8c0cb !important;
padding: 1px 2px 1px 2px;
border: 1px solid #ffffff;
text-align:center;
}

.formtext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #373737;
	line-height: 12px;
	margin: 5px 5px 2px 5px;
}
.formtextheader {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:9px;
	font-weight:bold;
	color: #5173a9;
	line-height: 12px;
	margin: 1px 1px 1px 1px;
}

.logintext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #5173a9;
	line-height: 12px;
	margin: 5px 5px 2px 5px;
}
.codetext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size:12px;
	color: #d5dadf;
	padding: 1px 5px 2px 2px;
}
*/
/* GUI Styles */

.TopShadow {
	position:relative;
	background-image:url(../images/shadow/local179_topnavshadow.png);
	background-repeat:no-repeat;
	background-position:top;
	width:926px;
	padding: 8px 13px;
	margin-bottom: 75px;
	clear:both;
}

#TopLeftEnd {
	float:left;
	width: 5px;
	height: 70px;
	background-image:url(../images/shadow/local179_topnav_leftend.png);
	background-repeat:no-repeat;
}

#TopRightEnd {
	float:left;
	width: 5px;
	height: 70px;
	background-image:url(../images/shadow/local179_topnav_rightend.png);
	background-repeat:no-repeat;
}

#TopNavMiddle {
	float:left;
	width: 890px;
	height: 70px;
	background-image:url(../images/local179_topnav_middle.jpg);
	background-repeat:repeat-x;
}

#slider1_container{
	position: relative;
	margin: 0 auto;
	top: 0px;
	left: 0px;
	width: 1800px;
	overflow: hidden;
}

.photo_icon{
	width:140px;
	height:110px;
	margin: 10px;
	border: solid 1px #FFF;
	float:left;
}

.photo_icon img{
	width:140px;
	height:110px;
}



/* Calendar Section */

#cal_square {
	width: 100%;
	margin-top: 20px;
}

.cal_region {
	width: 33.23%;
	float: left;
	text-align: center;
	padding: 20px 0;
	border: solid 1px #FFF;
	box-sizing: border-box;
}

.cal_region a {
	font-size: 18px;
	font-weight: bold;
}

.cal_select {
	background-color: #DDDDDD;
}

#booktitlebox{
	height:80px;
	padding: 20px 0;
	border: solid 1px #FFF;
	background-color: #DDDDDD;
	width: 1176px;
	box-sizing: border-box;
	clear: both;
}

#week_title{
	height: 32px;
	width:auto;
}

.week_firstday{
	
}

#week_title div{
	float:left;
	line-height: 32px;
	height: 32px;
	width: 168px; /* was 138px, 14%; */
	padding: 0;
	border: solid 1px #FFF;
	background-color:#B79D53;
	font-size: 14px;
	font-weight:bold;
	color:#FFF;
	text-align:center;
	box-sizing: border-box;
}

#week_days{
	background-color:#FFF;
	width:auto;
}

#week_days > div{
	background-color:#DDDDDD;
	float:left;
	line-height: 34px;
	height: 120px;
	width: 168px; /* same as above */
	padding: 0;
	border: solid 1px #FFF;
	font-size: 14px;
	font-weight:normal;
	text-align:left;
	color:#111;
	box-sizing: border-box;
}

#week_days > div:hover{
	background-color:#D8D8D8;
}

#week_days > div > div{
	color: #111111;
	font-size: 16px;
	font-w__eight: bold;
	margin-left: 4px;
}

#week_days a{
	display:block;
	height: 100%;
	width: 100%;
	font-size: 14px;
	font-weight: bold;
	back__ground-color:#AAA;
	color:#111;
}

#week_days a:hover{
	color:#EF1C25;
}

#week_days .am_av{
	float:left;
	width: 1px;
	height: 1px;
	background-color:#0F0;
	border-top:solid 5px #0F0;
	border-left:solid 5px #0F0;
	border-right:solid 5px #F00;
	border-bottom:solid 5px #F00;
}
#week_days .pm_av{
	float:left;
	width: 1px;
	height: 1px;
	background-color:#0F0;
	border-top:solid 5px #F00;
	border-left:solid 5px #F00;
	border-right:solid 5px #0F0;
	border-bottom:solid 5px #0F0;
}
#week_days .day_av{
	float:left;
	display:block;
	width: 11px;
	height: 11px;
	background-color:#0F0;
}
#week_days .day_booked{
	float:left;
	width: 11px;
	height: 11px;
	background-color:#F00;
}

#week_days .innertext, #week_days .innertextthin {
	float: none !important;
	width: 92% !important;
	height: 82px !important;
	line-height:16px !important;
	margin: 0 auto !important;

}
#week_days .innertextthin {
	font-weight: normal !important;
}

/* Calendar End */

/* popup Overlay */

.calpopup {
	width: 80%;
	max-width:680px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	display:none;
	margin:1em;
	text-align:center;
	padding:20px;
	background-color:#FFF;
}
.calpopup .popup_close {
	position: absolute;
	top: 0;
	right: 0px;
	border-radius: 2px;
	background: none;
	border: 0;
	font-size: 25px;
	padding: 0 10px;
}

/* popup Overlay End */

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #CCC;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #CCC;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #CCC;
}

#aboutdiv h4 {
	clear: both;
}

#aboutdiv div {
	float: left;
	width: 50%;
	padding: 20px;
	box-sizing: border-box;
	
}


@media only screen and (max-width: 1768px) {
	#darktribg {
		background-size: auto;
	}
}

@media only screen and (max-width: 1200px) {
	#headerbar, #headerbarsub, #content, #footerbar {
		width: auto;
		padding: 0 10px;
		box-sizing: border-box;
	}
	#topbanner {
		height: 280px;
		background-size: auto 280px;
	}
	#bannerlogo {
		background-size: 80% auto;
	}

}


@media only screen and (max-width: 880px) {
	#header__cross {
		height: 480px;
	}
	
	#header___crosssub {
		height: 280px;
	}
	
	#header___bar {
		height: 360px;
	}
	
	#header___barsub {
		height: 160px;
	}
	
	#bannerlogo {
		height: 180px;
		margin-top: -40px;
	}

	#bannersub {
		height: 180px;
	}
	.eachcolumn {
		width: 100%;
		margin: 5px auto;
		float: none;
		font-size: 16px;
	}

	.eachcolumn div {
		width: 80%;
		height: 180px;
	}
	.eachcolumn a {
		font-size: 18px;
		font-weight: 600;
		padding: 2px 0;
		line-height: 18px;
	}

	#contentleft, #contentright {
		float: none;
		width: 100%;

	}
	#topfbphone {
		margin: 0 auto;
		float: none;
		
	}
	#toplogo {
		float: none;
		margin: 15px auto;
	}
	
	#topright {
		float: none;
		width: 100%;
	}
	
	#toptitle {
		display: none;
	}
	a.icon {
		display: block;
	}
	#nav {
		width:100%;
		margin-top: 0;
		padding: 0;
		display: none;
		background-color: #FF0000;
	}
	#nav li {
		float: none;
		margin:0;
		background-color: #FF0000;
	}
	#nav a, #nav ul a{
		font-size:18px;
		padding: 16px 12px;
		color:#FFF;
	}
	#nav a:hover, #nav li:hover ul li a:hover{
		color:#990000;
		background:#FFF;
	}
	#nav ul{
		position:inherit;
		left:0;
		background:none;
		border:solid 0 #333333;
		margin-left: 40px;
	}
	#popup {
		width: 90%;
	}
	
	#lvl1content, #lvl1contentsub, #lvl2links, #lvl2post, #footerbar {
		width: 100%;
	}

	#lvl1left, #lvl1right, #lvl1onecol, #lvl2left, #lvl2right, #lvl2postleft, #lvl2postright, #lvl3content, #lvl3contentleft, #lvl3contentright, #lvl1subleft, #lvl1subright, .footercolumn {
		float: none;
		width: 100%;
		padding: 20px;
		box-sizing: border-box;
	}
	
	#lvl2right {
		float: left;
		font-size: 48px;
		font-weight: 800;
		line-height: 56px;

	}
	
	#lvl2content {
		width: 100%;
	}

	.lvl3news {
		width: 100%;
		float: none;
	}

	
	.lvl4block {
		width: 100%;
		height: 200px;
		min-height: 200px;
		float: none;
		background-size: cover;
		background-position: center;
		dis___play: none;
	}
	.lvl4block > div {
		height: 200px;
		min-height: 200px;
	}
	.lvl4block > div > a > h3 {
		display: none;
	}
	
	#loginmobileonly {
		display: block;
	}

	#logindesktoponly {
		display: none;
	}
	#week_title div, #week_days > div {
		width: 14%;
	}
	#booktitlebox{
		width: 98%;
	}
}
@media only screen and (max-width: 660px) {
	#week_days .innertext, #week_days .innertextthin {
		display: none !important;
	}
	
	#week_days > div {
		height: 80px;
	}
	#aboutdiv div {
		width: 100%;
	}

}

@media only screen and (max-width: 440px) {
	
	#week_days > div {
		height: 60px;
	}
}

