@charset "utf-8";

/* ROOM 選單------------------------------*/

@media only screen and (max-width: 479px) {
.roomMenu>ul>a>li{
	width: 100px;    
	margin: 3px 1px 3px 1px;	
}    
}
@media only screen and (min-width: 480px) {
.roomMenu>ul>a>li{
	width: 110px;    
	margin: 3px 1px 3px 1px;	
}
}
@media only screen and (min-width: 768px) {
.roomMenu>ul>a>li{
	width: 110px;    
	margin: 3px 1px 3px 1px;	
}
}
@media only screen and (min-width: 1024px) {
.roomMenu>ul>a>li{
	width: 120px;    
	margin: 3px 1px 3px 1px;	
}
}	
@media only screen and (min-width: 1280px) {
.roomMenu>ul>a>li{
	width: 120px;    
	margin: 3px 1px 3px 1px;	
}
}
@media only screen and (min-width: 1680px) {
.roomMenu>ul>a>li{
	width: 120px;    
	margin: 3px 1px 3px 1px;	
}
}
@media only screen and (min-width: 1920px) {
.roomMenu>ul>a>li{
	width: 120px;    
	margin: 3px 1px 3px 1px;	
}
}
.roomMenu>ul{
	clear: none;
	float: left;
    flex-wrap: wrap;/*讓超出寬度的元素自動換行*/
    display: flex;/*讓 <ul> 成為彈性容器*/
    justify-content: flex-end;/*把所有子元素推到右邊*/
	width: 98%;
	margin: 0 1%;
	padding: 0;
	list-style: none!important;
	list-style-type: none!important;		
	z-index: 999;
}
.roomMenu>ul:before,.roomMenu>ul:after{content:'';display:table}
.roomMenu>ul>a>li:before {
	position: relative;
	left: 0px;
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	background-color: #666600;
	border-radius: ;
}
.roomMenu>ul>a>li{
	position: relative;	
	float: left;
	display: inline-block;
	text-align: center;
	font-size: 100%;
	color: #666600;
	line-height: 30px;    
	letter-spacing: 0px;
	background-color: #E6E6E6;
	z-index: 998;
	transition: all 0.5s ease-out;
	border-width: medium;
	border-style: inset;
	border-width: 2px;
	border-color: #999;
	border-radius: 5px;
    cursor: pointer;
	text-indent: 0;
	text-decoration: none;    
}
.roomMenu>ul>a>li:hover{
	transition: all 0.5s ease-out;
	text-decoration: none;
	background-color: #666666;
	color: #FFF;
}
.roomMenu>ul>li img{
	clear: none;	
	float: left;	
	opacity:0.8;	
	width:23px;
	margin-right:15px;
}
