body{
	font-family: Roboto;
}
/*#functionsContainer{
	position:absolute;
	top:80px;
	left:10px;
	flex-direction:column;
	flex-wrap:nowrap;
	gap:5px;
	font-family:arial;
	background-color:rgba(0,0,0,0.3);
	color:white;
	padding:10px;
	display:none;
}*/
#selectedFunctions{
	flex-direction:column;
	flex-wrap:nowrap;
	gap:5px;
	font-family:arial;
}
/*.functionButtons{
	padding:5px;
	color:white;
	background:rgba(0,0,0,0.6);
	cursor:pointer;
}
.functionButtons:hover{
	background:rgba(0,0,0,1);
}*/
.axisContainer{
	display:flex;
	flex-direction:row;
	gap:5px;
	align-items:center;
}
.axis{
	margin:0;
	font-weight:bold;
}
.plusMoins{
	width:20px;
	height:20px;
	line-height:20px;
	text-align:center;
	font-weight:bold;
}
#currentSelection{
	margin-top:5px 0 0 0;
}
.stepInput{
	height:30px;
	width:70px;
}

/* Sliding menu */

.menu {
	font-family: 'Muli', sans-serif;
	font-weight: 100;
	background: #efefef;
	width: 30vw;
	height: 100%;
	padding: 0 0 0 35px;
	position: fixed;
	top:0;
	z-index: 100;
	-webkit-box-shadow: -3px 0px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: -3px 0px 5px 0px rgba(0, 0, 0, 0.2);
	right: -30vw;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	color: #222;
	overflow-y: scroll;
}
.menu:hover, .menu:focus {
	transform: translate3d(-30vw, 0, 0);
	animation-timing-function: 1s ease-in;
}
.menu .title {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transform: rotate(270deg);
	left: -30px;
	font-size: 15px;
}
.menu .nav {
	font-weight: 100;
	display:flex;
	gap:10px;
	max-height: 80%;
	flex-wrap:wrap;
	max-height: calc(100% - 60px);
	overflow-y:scroll;
}
.menu .nav img{
	width:100px;
	background-color:transparent;
	padding:0;
}
.menu .nav img:hover{
	width:90px;
	border:solid 5px black;
}
.menu #objects{
	/* display:none; */
	margin-top:20px;
}
.break {
  flex-basis: 100%;
}
.menu .nav h3{
	width:30vw;
	/* text-align:center; */
	line-height: 1em;
	height: 1em;
	font-family: 'Muli', sans-serif;
	font-weight: 300;
	border-bottom: solid 1px black;
}

.roomContainer{
	display: flex;
	max-width:calc(100% - 35px);
	flex-wrap: wrap;
	gap:5px;
	padding-right:35px;
}

.collapseButton{
	text-align: right;
	padding: 5px 35px 5px 0;
	cursor: pointer;
}

.roomContainer h3{
	cursor:pointer;
}

#getSetupLink{
	display:none;
}

/* New design december 2024 */
#menuTopRow{
	position: absolute;
	top:80px;
	left:25px;
	display:flex;
	gap:10px;
	align-items:center;
	z-index: 999999999;
}
#showMenu{
	display:flex;
	align-items:center;
}
#roomImg{
	margin-right:10px;
}
#menuContainer{
	display:none;
	background-color:white;
	border-radius:8px;
	border:#d1d5db 2px solid;
	padding:12px;
	position:absolute;
	top:126px;
  left:25px;
  font-family:roboto;
  max-height:60vh;
  overflow-y: scroll;
  overflow-x: hidden; /* avoid horizontal scrollbar from slight child overflow */
  max-width: 20vw;
  min-width: 300px;
}
#currentSetupName{
	color:#6bb9a4;
}
.input-icon{
  position: absolute;
  left: 3px;
  top:calc(50% - 0.95em);
  font-family:'FontAwesome';
  font-weight:100;
  color:#6b7280;
  padding-left: 10px;
  font-size: 1em;
}
#searchBar{
  padding-left: 42px; /* slightly smaller to avoid horizontal overflow */
  border:none;
  background-color:#f2f2f2;
  height: 1.5em;
  border-radius: 6px;
  width: 100%;
  max-width: 100%;
  font-size: 1em;
  margin-bottom:15px;
  box-sizing: border-box;
}
.searchWrapper{
  position: relative;
  max-width: 100%;
}
.searchWrapper *{
  box-sizing: border-box;
}
.roomContainer > .functionButtons::before{
	content:url('../images/rotating.svg');
	margin-right:15px;
	height:1.5em;
}
.roomContainer > .functionButtons:hover{
	background-color:#E9E9E9;
}
.roomContainer > .functionButtons:hover:after{
	content:'View set up >';
	color: #6bb9a4;
  position: absolute;
  right: 20px;
}
.roomContainer > .functionButtons{
	background-color:unset;
	padding:4px 6px;
	width:100%;
	color:black;
	line-height: 1.5em;
  display: flex;
}
.roomContainer{
	padding-right:0;
	max-width:unset;
	flex-direction: column;
}
.roomHeader{
	display:flex;
	align-items:center;
	justify-content: space-between;
	gap: 8px;
}
.roomHeader h3{
	margin: 0;
	flex: 1;
	min-width: 0;
}
.roomCollapseToggle{
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	color: #6b7280;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	flex-basis: 32px;
	box-sizing: border-box;
}
.roomCollapseToggle:hover{
	color: #111827;
}
.roomContainer.collapsed > .functionButtons,
.roomContainer.collapsed > .createBlankSpace{
	display:none !important;
}
.roomContainer.collapsed .roomCollapseToggle i{
	/* collapsed => down chevron */
	transform: rotate(0deg);
}
.roomContainer:not(.collapsed) .roomCollapseToggle i{
	/* expanded => up chevron (rotate down chevron 180deg) */
	transform: rotate(180deg);
}
.roomCollapseToggle i{
	transition: transform 120ms ease;
	transform-origin: 50% 50%;
	display: block;
	width: 1em;
	text-align: center;
}
#menuToggle{
	margin-left:20px;
}
.createBlankSpace:hover{
	background-color:#E9E9E9;
}
.createBlankSpace{
	order:99999;
	padding:10px;
	width:100%;
	cursor:pointer;
	color:#6b7280;
	height:1.5em;
	font-size: 1em;
  line-height: 1.5em;
}

/* Right side */
#customizeContainer{
	position: absolute;
  top: 15px;
  right: 80px; /* leave room + gap for gear button */
  display: none; /* hidden by default; toggled by gear */
  align-items: flex-end;
  flex-wrap: wrap;
  width: 720px; /* keep top buttons on one line */
  max-width: calc(100vw - 110px);
}
.menuButtons{
	white-space: nowrap;
}
#uiGearToggle{
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	z-index: 999999999;
}
#uiGearToggle i{
	font-size: 18px;
}
#objectsContainer{
	background-color: white;
  max-height: 80vh;
  width: 400px;
  padding: 12px;
  border-radius: 8px;
  border: 2px #D1D5DB solid;
  display:none;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 999999998;
}
.addObject{
	max-width:100px;
	border: 1px #D1D5DB solid;
	background:transparent;
	border-radius: 8px;
}
#searchObjects{
  padding-left: 50px;
  border:none;
  background-color:#f2f2f2;
  height: 1.5em;
  border-radius: 6px;
  width: 100%;
  font-size: 1em;
  margin-bottom:15px;
}
.loupeObjects{
	top:calc(50% - 0.95em);
}
#objects{
  display: flex;
  flex-wrap: wrap;
	gap: 7px;
}
.menuButtons{
	border: #D1D5DB 2px solid;
	border-radius:4px;
	padding:8px;
	background-color: white;
  font-family: roboto;
  cursor:pointer;
}
.menuButtons:hover{
	background-color:#6bb9a4;
	color:white;
	border: #6bb9a4 2px solid;
}
.menuButtons:hover>#currentSetupName{
	color:white;
}
.menuButtons.active{
	background-color:#6bb9a4;
	color:white;
	border: #6bb9a4 2px solid;
}
.menuButtons.active>#currentSetupName{
	color:white;
}
#stepTwoContainer{
	display:none;
}
#stepOneContainer{
	position:relative;
	width:100%;
	display:flex;
	align-items:flex-end;
	gap:10px;
	justify-content: flex-end;
}
#stepOneContainer > div{
	height:1em;
}
#subMenuDots{
	background-color:white;
	border: 2px #D1D5DB solid;
	border-radius:4px;
	font-family: roboto;
	color:#6b7280; 
	position: absolute;
	top: 50px;
	right:0;
	display:none;
	height:auto !important;
	width:530%;
	z-index: 999999999;
}
#subMenuDots > div{
	padding:15px;
	cursor:pointer;
}
#subMenuDots > div:hover{
	background-color:#E9E9E9;
	color:black;
}
#deleteSetup:hover{
	background-color:#A91B0D !important;
	color:white !important;
}
#stepTwoContainer{
	display:flex;
	align-items:flex-end;
	gap:10px;
	justify-content: flex-end;
	flex-wrap: wrap;
	position: absolute;
  top: 0;
  right:0;
  width: 720px; /* match #customizeContainer; keep buttons on one line */
  max-width: calc(100vw - 110px);
}
#threeDots{
	position:relative;
	height:19px;
}
.hidden {
  display: none !important;
}

#blackOverlay{
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.6);
	width: 100vw;
	height: 100vh;
	display: none;
}

/* Setup loading overlay */
#setupLoadingOverlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: none; /* toggled by JS */
	align-items: center;
	justify-content: center;
	background-color: rgba(0,0,0,0.35);
	z-index: 999999999;
	pointer-events: none; /* don't block camera navigation */
}
.setupLoadingCard{
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(6px);
	border: 2px #D1D5DB solid;
	border-radius: 12px;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.setupLoadingSpinner{
	width: 22px;
	height: 22px;
	background-image: url('../images/rotating.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.setupLoadingText{
	font-family: roboto;
	font-size: 14px;
	color: #111827;
	white-space: nowrap;
}

/* Objects list (positioned under #editObject via JS; CSS provides baseline) */
#objectsList{
	position: absolute;
	right: 15px;
	top: 64px;
	width: 320px;
	height: 260px; /* default; can be resized */
	max-height: 35vh;
	overflow: hidden; /* content scrolls in #objectsListContent */
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(6px);
	border-radius: 10px;
	border: #d1d5db 2px solid;
	padding: 0;
	font-family: roboto;
	z-index: 999999998;
	box-shadow: 0 8px 28px rgba(0,0,0,0.12);
	display: none; /* toggled by JS */
}
#objectsListHeader{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 8px 10px;
	border-bottom: 1px solid rgba(209,213,219,0.9);
	cursor: move;
	user-select: none;
	touch-action: none;
}
.objectsListHeaderTitle{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: #111827;
	font-size: 13px;
}
#objectsListClose{
	border: 1px solid rgba(209,213,219,0.9);
	background: white;
	border-radius: 8px;
	width: 28px;
	height: 28px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}
#objectsListClose:hover{
	background: #f3f4f6;
}
#objectsListContent{
	padding: 8px;
	height: calc(100% - 46px); /* header height */
	overflow: auto;
	overflow-x: hidden;
}
#objectsListResizer{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 18px;
	height: 18px;
	cursor: se-resize;
	touch-action: none;
	/* subtle triangle hint */
	background:
		linear-gradient(135deg, rgba(0,0,0,0) 50%, rgba(156,163,175,0.7) 51%),
		linear-gradient(135deg, rgba(0,0,0,0) 62%, rgba(156,163,175,0.35) 63%);
}
.objectListRow{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 6px 8px;
	border-radius: 8px;
	cursor: pointer;
	user-select: none;
}
.objectListRow:hover{
	background-color: rgba(0,0,0,0.05);
}
.objectListRow.selected{
	background-color: rgba(107,185,164,0.18);
	border: 1px solid rgba(107,185,164,0.6);
}
.objectListTitle{
	font-size: 13px;
	color: #111827;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
	min-width: 0;
}
.objectListActions{
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}
.objectListBtn{
	border: 1px solid #d1d5db;
	background: white;
	border-radius: 6px;
	width: 26px;
	height: 26px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	line-height: 1;
	cursor: pointer;
}
.objectListBtn:hover{
	background: #f3f4f6;
}
.objectListBtn.danger{
	border-color: rgba(169,27,13,0.5);
	color: #A91B0D;
}
.objectListBtn.danger:hover{
	background: rgba(169,27,13,0.08);
}
#savePopupContainer{
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: white;
  border-radius: 8px;
  padding: 15px;
  width: 30vw;
}
#savePopup{
	position: relative;
}
.closeSave{
	position: absolute;
	top: 0px;
	right: 0px;
	cursor: pointer;
}
.closeSave:hover{
	transform: scale(1.2);
	transform-origin: center;
}
#setupName{
	height: 1.5em;
  border: none;
  border-bottom: 2px #a9b0bf solid;
  width: 100%;
  margin-bottom: 20px;
}
.saveButtons{
	width: 75px;
	height: 32px;
	cursor: pointer;
	line-height: 34px; /* (height+padding)/2 */
	text-align: center;
	font-size: 1em;
	border: 2px transparent solid;
  padding: 8px;
  border-radius:4px;
}
#confirmSave{
	background-color:#6bb9a4;
	color:white;
	border: #6bb9a4 2px solid;
}
#confirmSave:hover{
	background-color:#29866d;
	border: #29866d 2px solid;
}

#overwriteSave{
	background-color:#f59e0b;
	color:white;
	border: #f59e0b 2px solid;
}
#overwriteSave:hover{
	background-color:#d97706;
	border: #d97706 2px solid;
}
#cancelSave:hover{
	/*background-color:#eaeaea;
	border: #eaeaea 2px solid;*/
	text-decoration: underline;
}
#saveButtonsContainer{
	width: 100%;
  display: flex;
	flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.noMargin{
	margin: 0;
}
.title{
	font-size: 1.5em;
}
#editObject{
	z-index: 99999999;
  position: absolute;
  top: 64px;
  right: 15px;
  border-radius: 8px;
  border: 2px solid #D1D5DB;
  background-color: white;
  padding: 12px;
  max-width: 240px;
  display:none;
}
#inputContainer{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px;
	align-content: flex-start
}
.editInput{
	width: 115px;
	background: #F9FAFB;
	border: none;
	border-radius: 4px;
	height: 28px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: textfield;
	padding: 0 0 0 30px;
  line-height: 28px;
  font-size: 18px;
  vertical-align: middle;
}
.editTitle{
	font-weight: bold;
}
.editLabels{
	position: absolute;
  left: 15px;
  color: #95989C;
  font-size: 18px;
  height: 28px;
  line-height: 30px;
}
.inputGroup{
	position: relative;
	display: flex;
  align-items: center;
}
.editObjectSeparation{
	color:#F9FAFB;
	width:100%;
	width: calc(100% + 24px);
  margin-left: -12px;
}
#tuto{
	margin:10px 0px;
	padding:10px;
	background-color:#F9FAFB;
	font-size:0.8em;
	line-height: 20px;
}

/* Lights Menu */
#lightsMenu{
	z-index: 99999999;
	position: absolute;
	top: 64px;
	right: 15px;
	border-radius: 8px;
	border: 2px solid #D1D5DB;
	background-color: white;
	padding: 12px;
	max-width: 280px;
	display:none;
}

.lightSection {
	margin-bottom: 15px;
}

.lightSection h4 {
	margin: 0 0 10px 0;
	font-size: 16px;
	font-weight: bold;
	color: #374151;
}

.lightControl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.lightControl label {
	font-size: 14px;
	color: #374151;
	flex: 1;
}

.lightControl input[type="checkbox"] {
	width: 16px;
	height: 16px;
}

.lightControl input[type="color"] {
	width: 40px;
	height: 28px;
	border: 1px solid #D1D5DB;
	border-radius: 4px;
}

.lightControl input[type="range"] {
	flex: 1;
	margin: 0 8px 0 8px;
}

.lightControl input[type="number"] {
	width: 60px;
	background: #F9FAFB;
	border: 1px solid #D1D5DB;
	border-radius: 4px;
	height: 28px;
	padding: 0 8px;
	font-size: 14px;
}

.lightControl span {
	font-size: 14px;
	color: #6B7280;
	min-width: 20px;
	text-align: right;
}

.strong{
	font-weight:bold;
}
#delete, #deleteSelected{
	color:red;
	margin-bottom:0;
}
.functionButtons{
	font-size:0.8em;
	cursor:pointer;
	margin-bottom:10px;
}

/* Array generator floating panel */
#arrayGenPanel{
	position: fixed;
	top: 120px;
	left: 40px;
	width: 260px;
	background: #ffffff;
	border: 2px solid #D1D5DB;
	border-radius: 10px;
	padding: 10px;
	z-index: 999999999;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	font-family: roboto;
}
#arrayGenPanel.hidden{ display:none; }
#arrayGenHeader{
	display:flex;
	align-items:center;
	justify-content:space-between;
	cursor: move;
	user-select: none;
	margin-bottom: 8px;
}
.arrayGenHeaderControls{
	display:flex;
	align-items:center;
	gap:4px;
}
#arrayGenHeader button{
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	color: #6b7280;
	padding: 4px 6px;
	border-radius: 999px;
}
#arrayGenHeader button:hover{
	background:#E5E7EB;
}
.arrayGenTabs{
	display:flex;
	gap:6px;
}
.arrayGenTab{
	border-radius: 999px;
	border: 1px solid #D1D5DB;
	background: #F9FAFB;
	font-size: 11px;
	padding: 4px 10px;
	color: #4B5563;
	cursor:pointer;
	transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}
.arrayGenTab:hover{
	background:#E5E7EB;
	border-color:#9CA3AF;
	box-shadow: 0 0 0 1px rgba(156,163,175,0.4);
}
.arrayGenTab.active{
	background:#6bb9a4;
	border-color:#6bb9a4;
	color:#ffffff;
	box-shadow:0 0 0 1px rgba(107,185,164,0.6);
}
.arrayGenGrid{
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 10px;
	margin-bottom: 10px;
}
.arrayGenField label{
	display:block;
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 4px;
}
.arrayGenField label.axisX{
	color: #dc2626; /* gizmo X = red */
}
.arrayGenField label.axisZ{
	color: #2563eb; /* gizmo Z = blue */
}
.arrayGenField input{
	width: 100%;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	padding: 5px 6px;
	background: #F9FAFB;
	font-size: 13px;
	height: 28px;
	box-sizing: border-box;
}
.arrayGenActions{
	display:flex;
	gap: 8px;
	justify-content:flex-end;
}
.arrayGenActions button{
	border: 1px solid #D1D5DB;
	border-radius: 8px;
	padding: 6px 10px;
	background: #ffffff;
	cursor: pointer;
}
.arrayGenActions button.primary{
	border-color: #6bb9a4;
	color: #0f5132;
}
.arrayGenHint{
	font-size: 12px;
	color: #6b7280;
	margin: 6px 0 10px 0;
}
.arrayGenHelpPanel{
	margin-top:4px;
	padding:6px 8px;
	border-radius:6px;
	background:#F9FAFB;
	border:1px dashed #D1D5DB;
	font-size:11px;
	color:#4B5563;
}
.arrayGenHelpTitle{
	font-weight:600;
	margin-bottom:2px;
}
.arrayGenHelpDiagram{
	font-family: monospace;
	font-size:11px;
	line-height:1.4;
	margin-bottom:4px;
}
.arrayGenHelpRow{
	white-space:nowrap;
}

/* Share link popup */
#linkPopup{
	position:fixed;
	inset:0;
	display:none;
	display:flex;
	align-items:center;
	justify-content:center;
	background:rgba(0,0,0,0.35);
	z-index:999999999;
}
#linkPopupInner{
	background:#ffffff;
	border-radius:10px;
	padding:14px 16px 12px 16px;
	min-width:260px;
	max-width:360px;
	box-shadow:0 10px 30px rgba(0,0,0,0.25);
	font-size:13px;
	color:#111827;
}
.linkPopupTitle{
	font-weight:600;
	margin-bottom:8px;
}
#linkPopupInner label{
	display:block;
	font-weight:500;
	margin:4px 0 2px 0;
}
.linkPopupRow{
	display:flex;
	gap:6px;
	margin-bottom:4px;
}
.linkPopupRow input{
	flex:1;
	border-radius:6px;
	border:1px solid #D1D5DB;
	padding:4px 6px;
	font-size:12px;
}
.linkPopupRow button,
#closeLinkPopup{
	border-radius:999px;
	border:1px solid #D1D5DB;
	background:#F9FAFB;
	padding:4px 10px;
	font-size:12px;
	cursor:pointer;
}
.linkPopupRow button:hover,
#closeLinkPopup:hover{
	background:#E5E7EB;
}
.linkPopupButtonCopied{
	border-color:#16a34a;
	background:#dcfce7;
	color:#166534;
}
#getSetupLink, #confirmSave, #deleteSetup, #reset{
	font-size:1em;
	margin-bottom:0;
}
#deleteSetup{
	color:red;
}
/* Scrollbar design */
* {
  --sb-track-color: transparent;
  --sb-thumb-color: #6bb9a4;
  --sb-size: 6px;  
}

/* Firefox only => Scrollbar gets messy in firefox without this */
@-moz-document url-prefix() { 
  * {
    scrollbar-width: thin;
  }
}

*::-webkit-scrollbar {
  width: var(--sb-size)
}

*::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

*::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  
}

@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
}
/* NOTE: legacy #objectsList styles removed (they forced display:none and overrode the newer list UI). */

.createBlankSpace{
	display:none;
}