@-ms-viewport{
  width: device-width;
}

@font-face {
	font-family: 'Noto Sans';
/*	font-style: normal;
	font-weight: bold; */
	src: url('NotoSansHant-Medium.otf');
}

body{
	font: Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	background-image: url(images/bg_wave.jpg);
	background-position: center top;
	/*background-size:100%;*/
	background-repeat: no-repeat;
	overflow:auto;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h3{
	margin: 10px 0 10px 0;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#006699;	
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #003366; /*#4E5869*/
	text-decoration: none; /*underline*/
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline; /*none*/
	color: 0096c8;
	font-family: Arial, Helvetica, sans-serif;
}
tbody{
	vertical-align:top;
}
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 1024px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
/*	background-color: #FFFFFF;*/
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}
#mobilemenu{
		display:none;
	}
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background-image: url(images/bg_02.gif);
	font-family: 'Noto Sans', 'Myriad Pro', Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.15;
	height: 60px;
	padding-top: 8px;
	z-index:1;
}
.header a{
	text-align:left;
}
.header a:hover, .header a:visited {
	color: #006699;
	text-decoration:none;
	text-align:left;
}
#content{
	width:1024px;
	float:left;
	margin-top:5px;
	padding:5px;
	background-image:url(images/bg_foot_wave.jpg);
	background-position:bottom left;
	background-repeat:no-repeat;
}
.mbanner{
	display:none;
}
.mbannereas{
	display:none;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebars {
	background:url(images/trans50.png);
	width:1024px;
	height:160px;
	-webkit-box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
    -moz-box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
    box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
}
.sidebar1 {
	float: left;
	background-image: url(images/layout_04.gif);
	background-position: center center;
	height: 160px;
	width: 550px;
}
.sidebarEas {
	float: left;
	background-image: url(images/layout_04b.gif);
	background-position: center center;
	height: 160px;
	width: 550px;
}
.sidebar2 {
	float: left;
	width: 474px;
	/*background-image: url(images/banner_volcano_05.jpg);
	background-position: center center;*/
	height: 160px;
}
.menubar {
	float: left;
	width: 1024px;
	height: 40px;
}
.sf-menu2 {
	display:none;
}
#apDiv1 {
	display: none;
}

ul{	
	font-family: Arial, Helvetica, sans-serif;
	padding:5px 0px 2px 0px;
}
li{
	padding: 2px 0px 2px 0px;
}
.ul01{
	font-family: Arial, Helvetica, sans-serif;
	padding:5px 0px 2px 0px;
	margin-left: 40px;
}
.ul02{
	font-family: Arial, Helvetica, sans-serif;
	padding:5px 0px 2px 0px;
	margin-left: 30px;	
}


/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul .nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul .nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul .nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	background-color: #8090AB;
	color: #000;
}
ul .nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #6F7D94;
	color: #FFF;
}

/* ~~The footer ~~ */
.footer {
	position: relative; /*this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	background-color: #AFDDEB;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	height:45px;
	width:1024px;
}

.links{
	 padding:5px;
	 width:700px;
	 float:left;
	 height:40px;
	 line-height:20px;
}
.emblem{
	float:right;
	vertical-align:middle;
}

/* ~~miscellaneous float/clear classes~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.inline_text {
	/*	font-family:'Noto Sans', 'Myriad Pro', Arial, Helvetica, sans-serif; */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #699;
}
.content_text {
	/*	font-family:'Noto Sans', 'Myriad Pro', Arial, Helvetica, sans-serif; */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 16pt;
	text-align: justify;
}
.chin {
	font-family: 'MKaiHK-Medium';
	src: url('MKaiHK-Medium.otf');
}
.content_text tr .inline_text strong {
	font-size: 16px;
}

.content_text ul li, .content_text ol li{
	padding-right:15px;
}

.content_text th{
	text-align: left;
	font-weight:normal;
}
.intxtimgr{
	width: 45%;
	float:right;
	padding-left: 7px;
}
.intxtimgr2{
	float:right;
	padding-left: 7px;
}
.intxtimgr img{
	width:100%;
	height: auto;
}

/********************************************/
/*           styles for index page          */
#bundle1{
	width: 1024 px;
	float: left;
	padding: 10px 15px 5px 15px;
}
#slideshow {
	width: 548px;
	float: left;
	margin-right: 40px;
}
.index_eas{
	float: right;
	width: 380px;
	padding-left: 20px;
}
#bundle2{
	width: 1024px;
	padding: 10px 15px 10px 15px;
	float: left;
}
.rightsec{
	width: 320px;
	float: left;
}
/*#slideshow {
	width:548px;
	padding-left:25px;
}*/

.nivoSlider {
	border-radius: 7px;	
	-moz-border-radius: 7px;
}

.sideimage{
	width: 262px;
	padding-right: 18px;
	float: left;
	display: block;
}

.info{
	display:block;
	width: 710px;
	float: left;
}

/*.nev {
	display: block;
	width: 100%;
	height: 18px;
}*/

.title{
	display:block;
	width: 100%;
	height: 47px;
	padding-bottom: 5px;
}

#newstable{
	background-image: url(images/news_bg_26l.gif); /*images/news_bg_26.gif*/
	background-size: 100%;
	background-repeat:no-repeat;
	background-position:top left;
	margin-right: 17px;
	border-bottom: 3px solid #AFDDEB;
	border-radius: 15px;
	height:320px;
	width: 640px;
	float:left;
}

#newNevents {
	width:625px;
	margin-top:35px;
	margin-left:20px;
	text-align:left;
	padding:0;
	height:300px;
	overflow-x: hidden;
	overflow-y: auto;
}
#scroll{
	height:250px;
}
.slimScrollRail {
	height: 100%;
}
	
.newsFT{
	font-family:Arial, Helvetica, sans-serif;
	color:#01665E;
	font-weight:bold;
	font-size:10pt;
	vertical-align:top;
	padding-right:10px;
	padding-top:5px;
}

.newsA{
	font-family:Arial, Helvetica, sans-serif;
	color:#CC0000;
	font-weight:bold;
	font-size:10pt;
	vertical-align:top;
	padding-right:10px;
	padding-top:5px;
}

.newsDL{
	font-family:Arial, Helvetica, sans-serif;
	color:#084081;
	font-weight:bold;
	font-size:10pt;
	vertical-align:top;
	padding-right:10px;
	padding-top:5px;
}

.newsS{
	font-family:Arial, Helvetica, sans-serif;
	color:#8C510A;
	font-weight:bold;
	font-size:10pt;
	vertical-align:top;
	padding-right:10px;
	padding-top:5px;
}

.newsF{
	font-family:Arial, Helvetica, sans-serif;
	color:#38BFCE;
	font-weight:bold;
	font-size:10pt;
	vertical-align:top;
	padding-right:10px;
	padding-top:20px;
}

.newsP{
	font-family:Arial, Helvetica, sans-serif;
	color:#663399;
	font-weight:bold;
	font-size:10pt;
	vertical-align:top;
	padding-right:10px;	
	padding-top:5px;
}

.newsI{
	font-family:Arial, Helvetica, sans-serif;
	color:#FF7936;/*FF9900*/
	font-weight:bold;
	font-size:10pt;
	vertical-align:top;
	padding-right:10px;
	padding-top:5px;	
}
#hometable{
	width: 585px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size:14px;
}

#newsmorebtn{
	float: right;
	text-align: right;
	vertical-align: bottom;
	margin: 7px 80px 0 0;
}

#faq2{
	margin-top: 20px;
    border: 2px solid #F4964A;
	border-radius: 5px;
	width: 96%;
	padding: 7px 0 7px 0;
	background-color:#FFFFFF;
}
.faqinner{
	background-image: url(images/faq_bg2_29.gif);
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	margin: 0 auto;	
    border: 2px solid #F4964A;
	border-radius: 5px;
	width: 92%;
}
.faqtxt2{
	padding: 20px 10px 20px 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color:#000000;
}
.progintro{
	padding-left:20px;
}
.progintro a{
	margin-left:20px;
}
.progintrotitle{
	float:left;
	padding-top:20px;
	margin-bottom:10px;
	width: 300px;
}
.tablewb{
	font-family:Arial, Helvetica, sans-serif;
	background-color: #006699;
	color:#FFFFFF;
	border:2px solid #FFFFFF;
}
/*      styles for index page ends here      */
/*********************************************/
.side{
	width: 262px;
}
.ppl{
	border: 0;
	width: 120px;
	height: 150px;
}
.ppltitle{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	padding: 15px 0 5px 0;
	float: left;
	width: 100%;
}
.pplroll{
	width:710px;
	float:left;
}
.pplbox{
	float:left;
	width: 50%;
	padding-bottom:5px;
}
.pplboxs{
	float: none;
	width: 100%;
	padding-bottom:5px;
	height: 230px;
}
.sspplbox{
	float:left;
	width: 50%;
	padding-bottom:10px;
}
.pplimg{
	width:120px;
	float: left;
	padding: 10px 10px 0 0;
}
.ppltxt{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
/*	width:185px;*/
	width:210px;
	float:left;
	padding-top: 10px;
}
.ppladm{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
	width:250px;
	float:left;
	padding-top: 10px;
}
.pplname{
	font-size:16px;
}
.pplul li ul li{
	margin-left:25px;
}
.tchimg{
	display:none;
}
.pplm{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 14px;
}
.ppls{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#tabs{
	height: auto;
	position:relative;
	width: 100%;
	z-index:50;
}
.ui-tabs .ui-tabs-nav{
	width:728px;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor{
	padding: 5px 14px;
}

.back-to-top{
	float:right;
	position:fixed;
	bottom: 100px;
	right: 0px;
	width: 30px;
	height: 38px;
	z-index: 999;
}
.back-to-top a:hover, .back-to-top a:active{
	text-decoration:none;
	color: #FFFFFF;
}
.ieback-to-top{
	display: none;
}
#back-top{
	padding-right:5px;
	background-color:rgba(175,215,254,0.7);
	border-radius:5px 0 0 5px;
	padding-top:5px;
}
.topbtn{
	padding-left: 5px;;
	font-size: 10px;
}

.sitemap, .sitemap ul{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 16px;
	padding-left: 40px;
	color: #006699;
}
.sitemap li{
	padding-left: 10px;
}
.sitemap a{
	color:#0096c8;
}

.ascontact{
	font-family:Arial, Helvetica, sans-serif;
	width: 100%;
	text-align:left;
	padding-top:10px;
}
.ascontact div{
	float: left;
	color: #000;
}
.ascontact a:hover div{
	text-decoration: underline;
}
.nofloat{
	float: none;
	width: 100%;
	padding-bottom:5px;
}
#asdetail{
	width: 710px;
}
.imgcap{
	font-family:Arial, Helvetica, sans-serif;
	font-size:9pt;
	color:#505050;
	padding: 5px 0 5px 0;
	margin:0;
}
.coursedes{
	text-align:justify;
	padding: 0;
	margin: 0;
}

.courselisttitle{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-weight: bold;
}
.expandbtn{	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 16pt;
	text-align: justify;
	padding-right: 15px;
}
.table2 td{
	font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 1023px){	
	.header {
		padding-top: 58px;
		background-position: bottom center;
	}
	.container{
		width: 100%;
	}
	#mobilemenu{
		position: fixed;
		display:block;
		height:50px;
		width:100%;
		background-color:#60C7DF;
		z-index: 999;
	}
	#apDiv1 {
		display:block;
		position: fixed;
		width: 162px;
		height: 50px;
		right: 2px;
		top: 2px;
		z-index: 1000;
	}
	.sf-menu2{
		font-family: Arial, Helvetica, sans-serif;
		font-size:12pt;
		font-weight:bold;
		color:#FFFFFF;
		display:block;
		list-style:none;
		padding-left:15px;
		background-color: #60C7DF;
		border:none;
		text-align:left;
		z-index: 50;
		width: 100%;
	}
	.sf-menu2 a{
		color:#FFFFFF;
		line-height:50pt;
		background:#60C7DF;
		width:100%;
	}
	.sf-menu2, .sf-menu2 * {
		margin: 0;
		padding: 0px 0px;
		list-style: none;
		color:#000000;
		line-height:40px;
		vertical-align:baseline;
	}
	.sf-menu2 li {
		position: relative;
	}
	.sf-menu2 ul {
		position: relative;
		display: none;
		width:100%;
		top: 100%;
		left: 0;
		z-index: 99;
	}
	.sf-menu2 ul li {
		border-bottom: 1px solid rgba(234,250,255,0.5);
		padding-left:25pt;
	}
	
	.sf-menu2 ul li ul li{
		border-bottom: 1px solid rgba(234,250,255,0.2);
		padding-left:25pt;
		text-decoration: none;
	}	
	.sf-menu2 ul li ul li a:hover, .sf-menu2 ul li ul li a:active{
		text-decoration: none;
		color:#006699;
	}
	.sf-menu2 ul, .sf-menu2 ul li, .sf-menu2 ul li a, .sf-menu2 ul li a:hover, .sf-menu2 ul li a:active {
		font-family: Arial, Helvetica, sans-serif;
		font-size:12pt;
		color:#FFFFFF;
		display:block;
		list-style:none;
		background-color: #60C7DF;
		line-height:25pt;
	}
	.sf-menu2 .sf-with-ul {
		font-family: Arial, Helvetica, sans-serif;
		font-size:12pt;
		color:#FFFFFF;
		display:block;
		list-style:none;
		background-color: #60C7DF;
		line-height:25pt;
	}
	.menubar{
		display:none;
	}
	.sidebars{
		display:none;
	}
	.mbanner{
		display:block;
		width:100%;
		height:75px;
		padding-top:5px;
		background: -webkit-linear-gradient(77deg, rgba(175,221,235,1), rgba(99,221,235,1)); /* For Safari 5.1 to 6.0 */
		background: -o-linear-gradient(-77deg, rgba(175,221,235,1), rgba(99,221,235,1)); /* For Opera 11.1 to 12.0 */
		background: -moz-linear-gradient(-77deg, rgba(175,221,235,1), rgba(99,221,235,1)); /* For Firefox 3.6 to 15 */
		background: linear-gradient(-77deg, rgba(175,221,235,1), rgba(99,221,235,1)); /* Standard syntax (must be last) */
		-webkit-box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
		-moz-box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
		box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
	}
	.mbannereas{
		display:block;
		width:100%;
		height:75px;
		/*padding-top:5px;*/
		background: -webkit-linear-gradient(77deg, rgba(160,131,217,1), rgba(230,230,250,1)); /* For Safari 5.1 to 6.0 */
		background: -o-linear-gradient(-77deg, rgba(160,131,217,1), rgba(230,230,250,1)); /* For Opera 11.1 to 12.0 */
		background: -moz-linear-gradient(-77deg, rgba(160,131,217,1), rgba(230,230,250,1)); /* For Firefox 3.6 to 15 */
		background: linear-gradient(-77deg, rgba(160,131,217,1), rgba(230,230,250,1)); /* Standard syntax (must be last) */
		-webkit-box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
		-moz-box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
		box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
	}
	.en{
		font-family: 'Cinzel', serif;
		font-size: 12pt;
		line-height:12pt;
		text-align:left;
	}
	.b5{
		font-family:"微軟正黑體";
		font-size:12pt;
		line-height:12pt;
		text-align:left;
	}
	#content{
		width:100%;
	}
	.sideimage{
		width: 20%;
		padding-right: 1%;
	}
	.side{
		width: 100%;
	}
	.info{
		display:block;
		width: 78%;
		float: left;
	}
	.footer{
		width: 100%;
	}
	.links{
		width:70%;
	}
	.emblem{
		float:right;
		vertical-align:middle;
	}
	/*************************************************/
	/*   The followings are styles for index page    */
	#slideshow{
		width:55%;
		float: left;
		margin-right: 0;
	}
	#bundle1{
		width: 100%;
		float: left;
		padding: 10px 10px 5px 10px;
	}
	
	.index_eas{
		float: right;
		width: 40%;
		padding-left: 5%;
	}
	#bundle2{
		width: 100%;
		padding: 5px 10px 10px 10px;
		float: left;
	}
	#scroll{
		height: 260px;
	}
	#newstable{		
		background-image:url(images/news_bg_26l.gif);
		background-size: 100%;
		background-repeat:no-repeat;
		background-position:top left;
		margin-right: 2%;
		border-bottom: 3px solid #AFDDEB;
		background-color:#FFFFFF;
		border-radius: 10px;
		height:40%;
		width: 62%;
		float:left;
	}
	#hometable{
		width:96%;
		height: 50%;
	}	
	#newNevents {
		width:97%;
		margin-left: 2%;
		margin-top: 32px;
		height: 280px;
	}
	.slimScrollRail {
		height: 250px;
	}
	.slimScrollDiv {
		height: 250px;;
	}
	.rightsec{
		width: 35%;
		float: left;
	}
	.progintro a{
		margin-left:10px;
	}
	.ui-tabs .ui-tabs-nav{
		width:100%;
	}
	.ui-tabs .ui-tabs-nav .ui-tabs-anchor{
		padding: 5px 5px;
	}
	#asdetail{                   /*The div containing details of academic staff*/
		width: 100%;
	}
	.pplroll{
		width: 100%;
	}
	.pplbox{
		width: 50%;		
	}
	.pplboxs{
		height: auto;
		padding-top: 10px;
	}
	.pplboxs img{
		padding-bottom: 20px;
	}
}

@media (max-width: 767px){	
	.container{
		width: 100%;
	}
	#mmenu{
		display:block;
	}
	.menubar{
		display:none;
	}
	.sidebars{
		display:none;
	}
	.mbanner{
		display:block;
		width:100%;
		height:75px;
		background: -webkit-linear-gradient(77deg, rgba(175,221,235,1), rgba(99,221,235,1)); /* For Safari 5.1 to 6.0 */
		background: -o-linear-gradient(-77deg, rgba(175,221,235,1), rgba(99,221,235,1)); /* For Opera 11.1 to 12.0 */
		background: -moz-linear-gradient(-77deg, rgba(175,221,235,1), rgba(99,221,235,1)); /* For Firefox 3.6 to 15 */
		background: linear-gradient(-77deg, rgba(175,221,235,1), rgba(99,221,235,1)); /* Standard syntax (must be last) */
		-webkit-box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
		-moz-box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
		box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
		font-size: 12pt;
	}
	.mbannereas{
		display:block;
		width:100%;
		height:75px;
		background: -webkit-linear-gradient(77deg, rgba(160,131,217,1), rgba(230,230,250,1)); /* For Safari 5.1 to 6.0 */
		background: -o-linear-gradient(-77deg, rgba(160,131,217,1), rgba(230,230,250,1)); /* For Opera 11.1 to 12.0 */
		background: -moz-linear-gradient(-77deg, rgba(160,131,217,1), rgba(230,230,250,1)); /* For Firefox 3.6 to 15 */
		background: linear-gradient(-77deg, rgba(160,131,217,1), rgba(230,230,250,1)); /* Standard syntax (must be last) */
		-webkit-box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
		-moz-box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
		box-shadow: 0 -3px 5px 0px rgba(51,51,51,0.3);
	}
	#content{
		width:100%;
	}
	.sideimage{
		display: none;
	}
	.tchimg{
		display: block;
		width: 30%;
		min-width:100px;
		float: left;
	}
	#asdetail{
		width: 69%;
		float:left;
		padding-left: 1%;
	}
	.info{
		display:block;
		width: 100%;
		float: left;
	}
	.links{
		width:100%;
		height:auto;
		background-color: #AFDDEB;
		text-align:center;
	}
	.emblem{
		width: 100%;
		vertical-align:middle;
	}
	#newstable{	
		width: 98%;
	}
	#newNevents{
		height: 230px;
	}
	#scroll {
		height: 200px;
	}
	.slimScrollRail {
		height: 200px;
	}
	.slimScrollDiv {
		height: 200px;
	}
	#newsmorebtn{
		margin: 0 80px 0 0;
	}
	.rightsec{
		width: 100%;
		float: left;
	}
	#faq2{
		float:left;
		margin-top: 20px;
		border: 2px solid #F4964A;
		border-radius: 5px;
		width: 45%;
		padding: 7px 0 7px 0;
		background-color:#FFFFFF;
	}
	.progintrotitle{
		margin-left:2%;
		width: 48%;
	}
	
	.progintro a img{
		width:20%;  /*104*/ /*height: *78*/
	}
	.progintro a{
		margin: 0 0px 0px 20px;
	}	
	.ui-tabs .ui-tabs-nav .ui-tabs-anchor{
		padding: 5px 10%;
	}
	.pplbox{
		height: 250px;
	}

	.ppltxt{
		width:90%;
		float:left;
	}	

	.pplroll{
		width:100%;
		float:left;
	}
	
}

@media (max-width: 500px){
	.header{
		font-size:80%;
	}
	#mobilemenu{
		top:0;
		display: block;
	}
	.sf-menu2{
		display:block;
		position:fixed;
		top: 0px;
	}
	#content{
		width:98%;
	}
	.mbanner .en{
		font-size: 95%;
	}
	.mbannereas .en{
		font-size: 95%;
	}	
	#bundle1{
		padding: 0;
	}
	#slideshow{
		width: 95%;
		margin: 0 auto;
		padding: 0;
		float:none;
	}
	.index_eas{
		width:95%;
		margin: 0 auto;
		padding: 0;
		float:none;
	}
	.index_eas img{
		width: 100%;
	}

	#hometable td{
		border-bottom: solid 1px #C0DFFE;
		padding-top: 5px;
	}
	#newstable{
		width: 95%;
		height: 200px;
	}
	#newNevents{
		height: 200px;
	}
	.rightsec{
		width: 95%;
	}
	#faq2{
		width: 99%;
	}
	.progintro{
		padding-left: 0px;
	}
	.progintro a img{
		width: 40%;
	}
	.progintrotitle{
		margin: 0;
		width: 300px;
	}
	.newsFT, .newsA, .newsDL, .newsS, .newsF, .newsP, .newsI {
		float:left;
	}

	#scroll {
		height: 140px;
	}
	.slimScrollRail {
		height: 140px;
	}
	.slimScrollDiv {
		height: 140px;
	}
	.sstable td{
		vertical-align:top;
	}
	.ppl{
		border: 0;
		width: 100%;
		height: auto;
	}
	.pplbox{
		width: 100%;
		height: auto;
	}
	.pplboxs{
		float:left;
		padding: 0 0 15px 0;
	}
	.pplimg{
		width:30%;
		float: left;
	}
	.ppltxt{
		width:60%;
		float:left;
	}	
	.ppladm{
		width:60%;
		float:left;
	}	
	.sspplbox{
		width: 100%;
		padding-bottom:10px;
	}
	.ui-tabs .ui-tabs-nav .ui-tabs-anchor{
		padding: 5px 8px;
	}
	.links{
		width: 98%;
	}
	.title img{
		width: 320px;
	}
	.tnrimg{
		width: 150px;
		height: auto;
	}
	.intxtimgr{
		width: 100%;
		padding-bottom:10px;
	}
	.intxtimgr img{
		width:90%;
		margin: auto;
		display:block;
	}
	.imgcap{
		text-align:center;
	}
	.table2 td{
		font-size:5px;
	}
	.coursedes{
		font-size:7pt;
	}
}
