@charset "UTF-8";


.Accordion {
	margin: 0; 
	outline: none; 
	position: fixed;
	z-index: 101;
	top: 30px; 
	width: 100%; 
}

.AccordionPanel {
	margin: 0;
	padding: 0; 
}

.AccordionPanelTab {
	background:url(/https/mobile.udn.com/img/arrow_down_white.png) no-repeat 50% 50%;
	background-size:35px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none; 
	color: #FFF;
	padding: 10px 0 10px 15px; 
	position: absolute;
	top: -25px;
	right: 0;
	width: 50px;
	height: 50px;
	
}
.AccordionPanelContent {
	background: #0075c2;
	margin: 0;
	color: #666;
	line-height: 1.75; 
	border-bottom: #09C 2px solid;
	font-size: 20px; 
	display: block;

}
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background:url(/https/mobile.udn.com/img/arrow_up_white.png) no-repeat 50% 50%;
	background-size:35px;
}
/*平板橫式menu*/
@media screen and (min-width:768px)and (max-width:1279px) {
	.AccordionPanelTab {display:none;}
}
/*桌機直式menu*/
@media screen and (min-width: 1280px) {
	.AccordionPanelTab {display:none;}
}

@media print {
  .Accordion { 
  	overflow: visible !important; 
  }
   .AccordionPanelContent {
  	display: block !important;
  	overflow: visible !important;
  	height: auto !important;
  }
}