html{
	background-color:#dddfd0;
}

.uk-navbar li:nth-child(odd){
	background-color:#ff6600;
}

.uk-navbar li:nth-child(even){
	background-color:#569f3f;
}

.uk-margin-large-bottom {
    margin-bottom: 30px!important;
}

.top_banner{
	width:auto;
	max-width:100%;
}

.top_banner{
	
	 transition: 4.2s ease;
}

.uk-grid {
    margin-left: 0px;
}

.main-content{
	padding:25px 25px;
	/*text-align:justify;*/
	min-height:300px;
}

.main-content strong, .main-content b{
	color:#004080;
}

.right-content{
	padding:25px 25px 25px 10px;
	text-align:justify;
	min-height:300px;
}

.uk-panel{
	padding: 20px;
    background: #ffffff;
    color: #999999;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.03);
	border-left: 20px solid #AD7568;
	line-height:25px;
	font-weight:bold;
}

.uk-article-title {
    font-weight: bold;
    text-transform: none;
	/*
    border-left: 20px solid #AD7568;
    background: #F5F5F5;
	*/
	background: #e0e7ff;
    padding: 3px 15px 0px;
	margin-bottom:8px;
    color: #182068;
    line-height: 35px;
    font-size: 22px;
}

.uk-right-title {
    font-weight: bold;
    text-transform: none;
	/*
    border-left: 20px solid #AD7568;
    background: #F5F5F5;
	*/
	background: #7090B8;
    padding: 3px 10px;
    color: #ffffff;
    line-height: 35px;
    font-size: 15px !important;
}

.uk-panel-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    text-transform: none;   
}

.uk-slideshow {
    position: relative;
    z-index: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    touch-action: pan-y;
}

span.azul{
	color: #145A96;
}

.uk-footer{
	width:100%;
	padding-left: 0px;
	color:#005446;
	font-size: 13px;
}

.uk-footer div.footer{
	padding:0px 0px;
	float:right;
}

.uk-footer div.footer a{
	color:#ffffff;
}

.uk-button{
	padding-left:20px;
	padding-right:20px;
}

.top_btn_black, .top_btn_black:hover{
	background-color:#222222;
	color:#ffffff;
	font-size:15px;
}

.top_btn_blue, .top_btn_blue:hover{
	background-color:#0E76BC;
	color:#ffffff;
	font-size:15px;
}

.top_btn_yellow, .top_btn_yellow:hover{
	background-color:#BC6C0E;
	color:#ffffff;
	font-size:15px;
}

.top_btn_black img, .top_btn_blue img, .top_btn_yellow img{
	margin-right:5px;
	max-height:14px;
	margin-bottom:5px;
}

.uk-top{
	margin-bottom:50px;
}

.about_hk_img{
	/*
	display:block;
	*/
	padding:5px 5px 10px 15px;
	float:right;
	max-width:230px;
	width:auto;

}

@media(max-width:531px){
	.uk-top{
		margin-bottom:0px;
	}

	.uk-top .uk-button-group{
		display:none;
	}

	.about_hk_img{
		display:block;
		float:none;
		padding:5px 0px 10px 0px;
	}
}

@media(max-width:767px){
	.right-content{
		padding:25px 25px 25px 25px;
	}
	.uk-margin-large-bottom{
		margin-bottom:100px !important;
	}
	.uk-container {
		padding: 0px 0px;
	}
}


/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Set width because child elements are positioned absolute. Height is set via JS
 * 4. Reset list style
 * 5. Clip child elements
 * 6. Deactivate browser history navigation in IE11
 */
.uk-slideshow {
	position:absolute;
	z-index:-1;
  /* 1 */

  /* 2 */

  /* 3 */
  width: 100%;
  /* 4 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 5 */
  overflow: hidden;
  /* 6 */
  touch-action: pan-y;
}
/*
 * Sub-object item
 * 1. Position items above each other
 * 2. Expand to parent container width
 * 3. Hide by default
 */
.uk-slideshow > li {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  opacity: 0;
}

.uk-dotnav{
	display:none;
}
/*
 * Active
 * 1. Stack at first
 * 2. Show slide
 */
.uk-slideshow > .uk-active {
  /* 1 */
  z-index: 10;
  /* 2 */
  opacity: 1;
}
/*
 * Hide default images which is only relevant to keep existing proportions
 */
.uk-slideshow > li > img {
  visibility: hidden;
}
/*
 * Pointer for controls
 */
[data-uk-slideshow-slide] {
  cursor: pointer;
}
/* Modifier: `uk-slideshow-fullscreen`
 ========================================================================== */
.uk-slideshow-fullscreen,
.uk-slideshow-fullscreen > li {
  height: 100vh;
}
/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-slideshow-fade-out {
  -webkit-animation: uk-fade 0.5s linear reverse;
  animation: uk-fade 0.5s linear reverse;
}
/*
 * Scroll
 */
.uk-slideshow-scroll-forward-in {
  -webkit-animation: uk-slide-right 0.5s ease-in-out;
  animation: uk-slide-right 0.5s ease-in-out;
}
.uk-slideshow-scroll-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-scroll-backward-in {
  -webkit-animation: uk-slide-left 0.5s ease-in-out;
  animation: uk-slide-left 0.5s ease-in-out;
}
.uk-slideshow-scroll-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
/*
 * Scale
 */
.uk-slideshow-scale-out {
  -webkit-animation: uk-fade-scale-15 0.5s ease-in-out reverse;
  animation: uk-fade-scale-15 0.5s ease-in-out reverse;
}
/*
 * Swipe
 */
.uk-slideshow-swipe-forward-in {
  -webkit-animation: uk-slide-left-33 0.5s ease-in-out;
  animation: uk-slide-left-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-forward-out {
  -webkit-animation: uk-slide-left 0.5s ease-in-out reverse;
  animation: uk-slide-left 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-backward-in {
  -webkit-animation: uk-slide-right-33 0.5s ease-in-out;
  animation: uk-slide-right-33 0.5s ease-in-out;
}
.uk-slideshow-swipe-backward-out {
  -webkit-animation: uk-slide-right 0.5s ease-in-out reverse;
  animation: uk-slide-right 0.5s ease-in-out reverse;
}
.uk-slideshow-swipe-forward-in:before,
.uk-slideshow-swipe-backward-in:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  -webkit-animation: uk-fade 0.5s ease-in-out reverse;
  animation: uk-fade 0.5s ease-in-out reverse;
}

.faculty_table td{
	padding:8px 15px;
}

.faculty_table_v2 td{
	padding:3px 10px;
}

.faculty_table tr:nth-child(even) {
	background: #fef2c0;

}

.faculty_table tr:nth-child(odd) {
	background: #E8E0E0;
}

.program_block h3{
	background: #90C8D8;
	padding:5px 10px 2px;
	margin-bottom:8px;
}

.program_block .program_content{
	max-width:1219px;
	padding:7px 12px;
	background: #ebfad4;
}

.program_content{
	min-height:955px;
}

@media(max-width:1219px){
	.program_content{
		min-height:990px;
	}
}
@media(max-width:991px){
	.program_content{
		min-height:980px;
	}
}

@media(max-width:1000px){
	.small_stlye_v1{
		margin-top: 30px !important;
	}
	.program_content{
		min-height:980px;
	}
}

@media(max-width:929px){
	.program_content{
		min-height:1020px;
	}
}

@media(max-width:828px){
	.program_content{
		min-height:1060px;
	}
}

@media(max-width:767px){
	.program_content{
		min-height:1080px;
	}
}

@media(max-width:767px){
	.program_content{
		min-height:auto;
	}
}

.reg_table .table_header{
	width:25%;
	font-weight:bold;
	text-align:center;
	background:#c0d8f0;
}

.reg_table td{
	text-align:center;
	padding:5px 10px;
}

.reg_table .table_header_left{
	text-align:left;
}

.reg_table tr:nth-child(even) {
	background: #b5e1ed;
}

.reg_table tr:nth-child(odd) {
	background: #f1fce0;
}

.reg_table_rev{

}

.reg_table .table_header_blue{
	font-weight:bold;
	text-align:center;
	background:#4F81BD;
}

.reg_table .table_header_blue b{
	color:#ffffff;
}

.reg_table_zh tr:nth-child(even) {
	background: #D0D8E8;
}

.reg_table_zh tr:nth-child(odd) {
	background: #E9EDF4;
}

.hotel_block{
	float:left;width:220px;height:220px;padding:10px;border:solid #E0E7FF 2px;margin:5px;
	text-align:left;
}
.hotel_block a{
	display:block;
	padding-top:5px;
	padding-bottom:3px;
}

/* Hotel Part */
.hotel-item-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: -8px !important;
  margin-right: -8px !important;
  padding-top: 10px;
}

@media(max-width:800px){
	.hotel-item-container .uk-width-medium-1-3{
		width:50%;
	}
}

@media(max-width:600px){
	.hotel-item-container .uk-width-medium-1-3{
		width:100%;
	}
}
.hotel-item {
  margin-bottom: 0px;
  padding: 9px;
 
}
.hotel-item:hover .hotel-item-wrapper:hover{
  /*
  cursor:pointer;
  */
  background: #ffffff;
  /*
  margin-top: -5px;
  */
}
.hotel-item:hover .title-border:after {
  /*
  width: 80px;
  */
}

.hotel-item-wrapper{
	border: 1px solid #ddd;
    border-top: 3px solid #4D6A79;
    padding: 15px;
    padding-top: 20px;
    padding-bottom: 5px;
    background: #f4f4f4;
	webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 3px 13px 0px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 0px 3px 13px 0px rgba(50, 50, 50, 0.5);
    box-shadow: 0px 3px 13px 0px rgba(50, 50, 50, 0.5);
}

.hotel-title-border {
	display:block;
    border-bottom: 1px solid #3e4651;
	margin-top: 10px;
	padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 5px;
	color: #4D6A79;
	font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    letter-spacing: -1px;
}

.hotel-title-border:hover {
	text-decoration:none;
}

.hotel-item-desc{
	font-size:15px;
	margin-bottom:5px;
}

.hotel-item-desc span.small{
	font-size:12px;
	color:#9A0E15;
}

.hotel-item-desc span{
	font-size:13px;
	color:#9A0E15;
	line-height:25px;
}

.hotel-item-desc-en{
	font-size:15px;
	text-align:left;
	line-height:22px;
}

.hotel-item-desc-en span{
	font-size:13px;
	color:#9A0E15;
	line-height:18px;
}

.hotel-item-title-en .hotel-title-border{
	font-size:18px;
	text-align:left;
	height:50px;
}
/**/
.hotel-item-wrapper-en{
	height:380px;
}


@media(max-width:600px){
	.hotel-item-wrapper-en{
		height:auto;
	}
}

.hotel-item-btn{
	display:block;
	padding-top:10px;
	padding-bottom:15px;
}
/* End Hotel Part */

.contact_btn{
	background-color:#182068;
	color:#ffffff;
	padding:10px;
}

.contact_btn:hover{
	background-color:#75521C;
	color:#ffffff;
}

.social-event-table td{
	vertical-align:top;
}

.gahk .text-center p{
	margin-bottom:5px;
}

.gahk .text-center{
	text-align:center;
	margin-bottom:20px;
}

@media(max-width:768px){
	.gahk .uk-width-1-3{
		width:50%;
	}
}

@media(max-width:500px){
	.gahk .uk-width-1-3{
		width:100%;
	}
}

.registration_btn div{
	float:right;
	margin:10px 10px ;
}

.reg_download_btn{
	background-color:#3848C8;
	color:#ffffff;
	padding:10px;
}

.reg_download_btn:hover{
	background-color:#75521C;
	color:#ffffff;
	text-decoration:none;
}

/*
@media screen and (max-width:767px){
	.registration_btn div{
		float:none;
		margin:20px 0px;
	}
}
*/


.download_btn, .sub_btn {
    background-color: #C5600B;
    font-weight: bold;
    color: #ffffff;
    padding: 5px 8px;
}

.sub_title {
    color: #182068;
    font-weight: bold;
    line-height: 25px;
}

.abstract_required {
    color: red;
}

.radio_label:hover, .category_label:hover{
	cursor:pointer;
}

.uk-responsive-width, .uk-responsive-width html, .uk-responsive-width body, .uk-responsive-width body div{
	background-color: #ffffff !important;
}
@media screen (max-width:823px){
	.program_padding{
	padding-bottom:60px;
}
}
.reg_table .table_header_left_color{
	background-color: #ffffff;
	text-align:left;
}
.reg_table .table_header_left_color_td{
	background-color: #ffffff;
}

.res_block{	display:none;
}
.table_block{
	display:block;
	border-left:8px solid #ffffff;
}

.table_block td.table_td_block_inline{
	vertical-align:top;
	margin:10px;
	background-color:#EBFAD4;
	padding:0px;
	border-right:8px solid #ffffff;
	padding-bottom:10px;
	width:50%;
}

.table_block .program_block h3{
	border-bottom:8px solid #ffffff;
}

@media(max-width:768px){
	.res_block{
		display:block;
	}
	.table_block{
		display:none;
	}
}

.lang_btn{
	background-color:#182068;
	color:#ffffff;
	padding:5px 10px;
	height:30px;
}

.lang_btn:hover{
	background-color:#75521C;
	color:#ffffff;
	cursor:pointer;
}

.hotel-full {
    position: absolute;
    right: 15px;
    top: 15px;
}
.hotel-item {
    position: relative;
}

.logout_btn{
	background-color:#14195D;
	color:#ffffff;
	padding:5px 8px;
}

.logout_btn:hover{
	color:#ffffff;
	text-decoration:underline;
}
.exhi_type{
	padding-left:0px;
}
.tab_ty{
	text-align:center;
	width:100px;
}
@media (max-width:600px){
.exhibition_uikit .uk-width-1-2{
	width:100%;
	padding-top:10px;
}
}

.block_img{
	width:auto;
	max-width:100%;
	margin:0 auto;
	display:block;
}

/* Contact Us */
#ContactUs_Form input[type="text"]{
	font-weight:normal;
	padding:5px;
	border-radius: 4px;
	border: 1px solid #ccc;
	margin-bottom:10px;
	width: 100%;
	max-width: 234px;
}

#ContactUs_Form select{
	margin-bottom:10px;
	border-radius: 4px;
	border: 1px solid #ccc;
	padding:5px;
}

#ContactUs_Form textarea{
	margin-bottom:10px;
	width: 100%;
	max-width: 468px;
	border-radius: 4px;
	border: 1px solid #ccc;
}

#ContactUs_Form .contact_checkbox{
	margin-left:0px !important;
}

#ContactUs_Form .text-error{
	color:red;
}

.contactus-checkbox label:hover{
	cursor:pointer;
}
/* End Contact Us */

.event_msg{
	font-size:18px;
	font-weight:bold;
}

.membership_style span, .reg_inbutn{
	background-color: #e7e7e7; 
    border: none;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
	margin: 10px;
	border-radius: 10px;
	font-weight:700;

}

.p_redirect{
	padding: 10px;
}

.navbar-btn{
	margin-top: 8px;
    margin-bottom: 8px;
	color: #fff;
    background-color: #f47f01;
    border-color: #46b8da;
	display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.navbar-btn a{
	color: #ffffff;
}

.member_title_selected a span{
	background-color:#73B1E3;
	color:#ffffff;
}

.total_fee{
	color: #6D1CE2;
	font-size: 17px;
	font-weight: bold;
}

.online_button{
	font-size: 15px;
	font-weight: normal;
	color: #ffffff;
	background-color: #917951;
	height: auto;
	width: auto;
	border: 1px solid #CEB47F ;
	cursor: pointer;
	padding: 4px 6px 4px 6px;
}

.gsc-search-box
{
	display: none;
}

.gsc-control-cse{
	background: transparent !important;
	border-color: transparent !important;
}

.news_date{
	float: right;
}

@media(max-width:520px){
.news_date{
	float: none;
	text-align: right;
	display: block;
	padding: 10px 0;
}
.button_bofore a, .button_next a{
	font-size: 15px;
}
.button_bofore, .button_next{
	margin: 5px 0 !important;
}
}

/* Multi Page START*/
.p_bar {
margin: 1px 0px;
clear: both;
}
.p_bar a {
float: left;
padding: 1px 4px;
font-size: 12px;
text-decoration: none;
}
.p_input {
border: 0px;
padding: 0px;
width: 40px;
height: 17px !important;
height: 15px;
margin: 0px;
background: #E7F4FE;
}
.p_total {
background-color: #F5FBFF;
border: 1px solid #86B9D6;
border-right: 0px solid #86B9D6;
font-weight: bold;
}
.p_pages {
background-color: #F5FBFF;
border: 1px solid #86B9D6;
margin-right:1px;
vertical-align: middle;
font-weight: bold;
}
.p_pages:hover {
color:#5C4842;
}
.p_num {
background-color: #E7F4FE;
border: 1px solid #DEDEB8;
margin-right:1px;
vertical-align: middle;
}
.p_redirect {
background-color: #E7F4FE;
border: 1px solid #86B9D6;
margin-right:1px;
font-size: 12px !important;
font-size: 13px;
}
.p_curpage {
margin-right:1px;
border: 1px solid #DEDEB8;
vertical-align: middle;
background-color: #FFFFD9;
color: #92A05A;
font-weight: bold;
}
/* end page*/

.order_img:hover{
	cursor:pointer;
}

.table-center tr td:first-child{
	text-align: left;
}

.table-center tr td{
	text-align: center;
}

.captcha_btn {
	font-size:15px !important;
	color: #ffffff !important;
	line-height:20px;
	background-color: #0B5A86;
	font-weight: bold;
	border: solid 1px #cccccc;
	padding: 2px 5px;
	width:50px  !important;
}

.captcha_btn:hover{
	cursor:pointer;
}

.donation_btn{
	color: #ffffff !important;
}