<style>
body {font-family: Arial, Helvetica, sans-serif;}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 700px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
</style>
<script>
jQuery('body').prepend(
'<div id="myModal" class="modal">'
	+'<div class="modal-content">'
		+'<label style="font-size:1.5em !important;">Please fill in your Email and Phone no.</label><span class="close">&times;</span><br><br>'
		+'<form id="form_vote" name="form_vote"><input type="hidden" name="votepostid" id="votepostid" value="">'
		+'<input type="hidden" name="votetype" id="votetype" value="">'
		+'<label>Email: </label>'
		+'<input type="text" id="email" name="email">'
		+'<label>Phone No.: </label>'
		+'<input type="number" id="phone" name="phone">'
		+'<input type="button" name="it_epoll_survey-vote-button" id="it_epoll_survey-vote-button" value="Submit" onclick="submitvote();"></form>'
	+'</div>'
+'</div>');

var modal = document.getElementById("myModal");
var btn = document.getElementById("myBtn");
var span = document.getElementsByClassName("close")[0];

span.onclick = function() {
  modal.style.display = "none";
}

window.onclick = function(event) {
  if (event.target == modal) {
    modal.style.display = "none";
  }
}


window.addEventListener('load', function () {
	jQuery('.it_epoll_title_exact_on').html('ON - Abdullah Ehlid Al Walid Bin Luli');	
})


function voteon(a){
	modal.style.display = "block";
	jQuery('#votetype').val('on');
}

function submitvote(){
	votetype = jQuery('#votetype').val();
	if(votetype == 'on'){
		submitvoteon();
	}else if(votetype == 'os'){
		submitvoteos();
	}
}

function submitvoteon(){
	email = jQuery('#email').val();
	phone = jQuery('#phone').val();

	if((email == '') || (phone == '')){
		alert('Please fill in your email and phone no.');
	}else{
		modal.style.display = "none";
		
		jQuery('#countdownon').show();
		jQuery('.voteon').hide();
		var timeleft = 10;
		var downloadTimer = setInterval(function(){
		  if(timeleft <= 0){
			clearInterval(downloadTimer);
			jQuery('#countdownon').hide();
			jQuery('.voteon').show();
			
		  } else {
			jQuery('#countdownon').html(timeleft + " seconds remaining");
		   // document.getElementById("countdownon").innerHTML = timeleft + " seconds remaining";
		  }
		  timeleft -= 1;
		}, 1000);
			
			nama = jQuery('.nama').html();
			var form = jQuery('#form_vote')[0];
			var formData = new FormData(form);
			formData.append('action', 'rwvoting_submiton');
			formData.append('nama', 'Abdullah Ehlid Al Walid Bin Luli');
			
				jQuery.ajax({
					type: "POST",
					url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
					data: formData,
					async: false,
					cache: false,
					contentType: false,
					enctype: 'multipart/form-data',
					processData: false,
					success: function (data) {
						var json = JSON.parse(data);
						percentage = json.percentage;
						msg_total = json.msg_total;
						
						jQuery('.percenton').html(percentage+'%');
						jQuery('.onwidth').css('width',percentage+'%');
						
						if(msg_total == 'Full'){
							alert('Maaf, anda telah melebihi had untuk mengundi. Terima Kasih atas undian anda.');
						}
					},
					error: function (data) {
						//console.log("fail: " + data);
					}
				});
	}
}


jQuery.ajax({
	type: "POST",
	url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
	data: 'action=rwvoting_percenton&postid=',
	success: function (data) {
		var str = data;
		result = str.trim();
		if(result == 'NAN'){
			result = 0;
		}
		
		if(result == 'nan'){
			result = 0;
		}
		
		jQuery('.percenton').html(result+'%');
		jQuery('.onwidth').css('width',result+'%');
	},
	error: function (data) {
		console.log("failed ");
	}
});
</script><script>
window.addEventListener('load', function () {
	jQuery('.it_epoll_title_exact_os').html('OS - Abdullah Ehlid Al Walid Bin Luli');
})

function voteos(a){
	modal.style.display = "block";
		jQuery('#votetype').val('os');
}

function submitvoteos(){
	email = jQuery('#email').val();
	phone = jQuery('#phone').val();

	if((email == '') || (phone == '')){
		alert('Please fill in your email and phone no.');
	}else{
		modal.style.display = "none";
		
		jQuery('#countdownos').show();
		jQuery('.voteos').hide();
		var timeleft = 10;
		var downloadTimer = setInterval(function(){
		  if(timeleft <= 0){
			clearInterval(downloadTimer);
			jQuery('#countdownos').hide();
			jQuery('.voteos').show();
			
		  } else {
			jQuery('#countdownos').html(timeleft + " seconds remaining");
		  }
		  timeleft -= 1;
		}, 1000);
			
		nama = jQuery('.nama').html();
		var form = jQuery('#form_vote')[0];
		var formData = new FormData(form);
		formData.append('action', 'rwvoting_submitos');
		formData.append('nama', 'Abdullah Ehlid Al Walid Bin Luli');

		jQuery.ajax({
			type: "POST",
			url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
			data: formData,
			async: false,
			cache: false,
			contentType: false,
			enctype: 'multipart/form-data',
			processData: false,
			success: function (data) {
				var json = JSON.parse(data);
				percentage = json.percentage;
				msg_total = json.msg_total;
				
				jQuery('.percentos').html(percentage+'%');
				jQuery('.oswidth').css('width',percentage+'%');
				
				if(msg_total == 'Full'){
					alert('Maaf, anda telah melebihi had untuk mengundi. Terima Kasih atas undian anda.');
				}
			},
			error: function (data) {
				//console.log("fail: " + data);
			}
		});
	}
}

jQuery.ajax({
	type: "POST",
	url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
	data: 'action=rwvoting_percentos&postid=',
	success: function (data) {
		var str = data;
		result = str.trim();
		if(result == 'NAN'){
			result = 0;
		}
		
		if(result == 'nan'){
			result = 0;
		}
		
		jQuery('.percentos').html(result+'%');
		jQuery('.oswidth').css('width',result+'%');
		
	},
	error: function (data) {
		console.log("failed ");
	}
});
</script>{"id":7282,"date":"2023-09-14T08:01:09","date_gmt":"2023-09-14T00:01:09","guid":{"rendered":"https:\/\/www.artgallery.gov.my\/bms\/?p=7282"},"modified":"2025-06-20T14:33:53","modified_gmt":"2025-06-20T06:33:53","slug":"abdullah-ehlid-al-walid-bin-luli","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=7282","title":{"rendered":"Abdullah Ehlid Al Walid Bin Luli"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-1honceq-f22de50c9d52e83ca9420ec40c949688 main_color avia-section-default avia-no-border-styling  avia-builder-el-0  el_before_av_section  avia-builder-el-first  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><main  role=\"main\" itemprop=\"mainContentOfPage\"  class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-7282'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-1gf1r6q-b32b9f726cb15327b1e8e010a14635b8\">\n#top .av-special-heading.av-1gf1r6q-b32b9f726cb15327b1e8e010a14635b8{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-1gf1r6q-b32b9f726cb15327b1e8e010a14635b8 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-1gf1r6q-b32b9f726cb15327b1e8e010a14635b8 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-1gf1r6q-b32b9f726cb15327b1e8e010a14635b8 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-1gf1r6q-b32b9f726cb15327b1e8e010a14635b8 av-special-heading-h2 custom-color-heading  avia-builder-el-1  el_before_av_one_third  avia-builder-el-first '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >PROFIL<\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-1dsmen6-2fb24ae3f7d1fdc8b314968f31e99017\">\n.flex_column.av-1dsmen6-2fb24ae3f7d1fdc8b314968f31e99017{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-1dsmen6-2fb24ae3f7d1fdc8b314968f31e99017 av_one_third  avia-builder-el-2  el_after_av_heading  el_before_av_two_third  first flex_column_div av-animated-generic pop-up av-zero-column-padding  '     ><p>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-4xq9eq-967a3d18f781050d1c9eea8cd5a22d1b\">\n#top .hr.hr-invisible.av-4xq9eq-967a3d18f781050d1c9eea8cd5a22d1b{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-4xq9eq-967a3d18f781050d1c9eea8cd5a22d1b hr-invisible  avia-builder-el-3  el_before_av_iconlist  avia-builder-el-first '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div><br \/>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-loaqiodn-d83e6c2e171938c9b54beefbf9c37da1\">\n#top .avia-icon-list-container.av-loaqiodn-d83e6c2e171938c9b54beefbf9c37da1 .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#edae44;\n}\n#top .avia-icon-list-container.av-loaqiodn-d83e6c2e171938c9b54beefbf9c37da1 .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-loaqiodn-d83e6c2e171938c9b54beefbf9c37da1  avia-builder-el-4  el_after_av_hr  avia-builder-el-last '><ul class='avia-icon-list avia_animate_when_almost_visible avia-icon-list-left av-iconlist-big av-loaqiodn-d83e6c2e171938c9b54beefbf9c37da1 avia-iconlist-animate'>\n<li><div class='iconlist_icon av-loaqh075-3e732dcc2ab19a4a1577c0933a70c2e6 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue80a' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: NAMA: \"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >NAMA: <\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><span class=\"nama\">Abdullah Ehlid Al Walid Bin Luli<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-loaqhand-edd6a15cdd3ccfe64556656f44f9f3f2 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue8b1' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: LOKASI: \"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >LOKASI: <\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><span class=\"nama\">Universiti Tunku Abdul Rahman Kampar, Perak<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-loaqimvs-084d76d27b4e1d12cfbd834f7f717852 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue840' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: BIODATA PESERTA:\"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >BIODATA PESERTA:<\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/cv.pdf\" target=\"_blank\" rel=\"noopener\">Abdullah Ehlid Al Walid Bin Luli<\/a><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<\/ul><\/div><\/p><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-1bbvbhu-042094b9c85b4c4626ae4d4cb8919aef\">\n.flex_column.av-1bbvbhu-042094b9c85b4c4626ae4d4cb8919aef{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-1bbvbhu-042094b9c85b4c4626ae4d4cb8919aef av_two_third  avia-builder-el-5  el_after_av_one_third  avia-builder-el-last  flex_column_div av-zero-column-padding  '     ><p>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-loaqknlg-cef4e6d6132858a275e98fc20578707d\">\n.avia-image-container.av-loaqknlg-cef4e6d6132858a275e98fc20578707d img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-loaqknlg-cef4e6d6132858a275e98fc20578707d .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-loaqknlg-cef4e6d6132858a275e98fc20578707d av-styling- avia-align-center  avia-builder-el-6  el_before_av_image  avia-builder-el-first '   itemprop=\"image\" itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/ImageObject\" ><div class=\"avia-image-container-inner\"><div class=\"avia-image-overlay-wrap\"><img decoding=\"async\" fetchpriority=\"high\" class='wp-image-8370 avia-img-lazy-loading-not-8370 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Foto-2-1030x456.png\" alt='' title='Foto 2'  height=\"456\" width=\"1030\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Foto-2-1030x456.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Foto-2-300x133.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Foto-2-768x340.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Foto-2-705x312.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Foto-2.png 1264w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/div><\/div><\/div><br \/>\n<br \/>\n<\/p><\/div>\n\n<\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-15wzac2-2750d11fea556e821a4a46c3c416a571 main_color avia-section-default avia-no-border-styling  avia-builder-el-9  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-7282'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-14vlwoy-69cf7054852b7201c50ea86703e867b7\">\n.flex_column.av-14vlwoy-69cf7054852b7201c50ea86703e867b7{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-14vlwoy-69cf7054852b7201c50ea86703e867b7 av_one_full  avia-builder-el-10  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-135hbpu-21906326af942b8a6542bc35e5f3b7e4\">\n#top .av-special-heading.av-135hbpu-21906326af942b8a6542bc35e5f3b7e4{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-135hbpu-21906326af942b8a6542bc35e5f3b7e4 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-135hbpu-21906326af942b8a6542bc35e5f3b7e4 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-135hbpu-21906326af942b8a6542bc35e5f3b7e4 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-135hbpu-21906326af942b8a6542bc35e5f3b7e4 av-special-heading-h2 custom-color-heading  avia-builder-el-11  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >KETERANGAN <span style=\"color: #ffffff;\">KARYA<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-111d9qq-8773c2b604459f768d870796a0ddd75d\">\n#top .hr.hr-invisible.av-111d9qq-8773c2b604459f768d870796a0ddd75d{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-111d9qq-8773c2b604459f768d870796a0ddd75d hr-invisible  avia-builder-el-12  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-loaqldlg-0632418272bc519525239d8e9695fcdd '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p>Pengkaryaan ini mengangkat\u00a0 sampah \u00e4norganik sebagai suatu fenomena dalam isu persekitaran kerana sifatnya yang tidak alami atau terurai seperti bahan plastik.\u00a0 Dalam konteks sampah, ia merupakan hal yang sangat sinonim dalam kehidupan sehari-hari sehingga membawa kesan yang sangat serius terhadap persekitaran. Ditambah dengan perkembangan ketara terhadap populasi dan industri moden kini serta tanggungjawab sosial lemah yang akhirnya mempengaruhi kehidupan masyarakat. Karya ini mengintegrasikan sifat alam dan\u00a0 sampah plastik\u00a0 melalui dunia imaginasi dan kontemplasi pengkarya dalam usaha mendamaikan dan membina harapan yang masih di awangan. Ia seperti gumpalan yang diberikan nafas baharu dan membawa audian ke dunia landskap eksotik yang sangat kompleks dalam memacu interaksi dan penghayatan terhadap etika alam sekitar. Bahan terbuang ini di olah menjadi suatu karya visual yang mampunyai tarikan tersendiri selain mendukung dan menyampaikan pengetahuan terhadap SDG kepada masyarakat.<\/p>\n<p><strong>\u201dDia Masih di Awang-awangan\u201d<\/strong> merujuk kepada sikap dan mentaliti masyarakat terhadap alam sekitar yang masih lemah walaupun masyarakat kini dalam serba modan, berteknologi dan berpendidikan. Produk terutama bahan plastik yang digunakan dan akhirnya dibuang merata tanpa ada sikap kesedaran terhadap alam masih berlaku walaupun pelbagai pelaburan dan kempen telah dilaksanakan oleh agensi-agensi Kerajaan dan badan bukan Kerajaan.<\/p>\n<p>Karya ini amatlah sesuai dipamerkan ke dalam ruang sosial atau awam dan memberi peluang kepada banyak seniman dan orang awam untuk menafsirkan agenda atau mengekspresikan diri mereka. Dengan demikian, hubungan antara seni dan masyarakat dapat diperkuat dalam masyarakat pengguna bagi mengukuhkan kesedaran dan permasalahan sampah juga terus menjadi agenda.<\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3'  class='avia-section av-10b1p36-f6d2ef663e9dd49977583bef1e334b2b main_color avia-section-default avia-no-border-styling  avia-builder-el-14  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-7282'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-xxdf4y-db52f726a49a883d9153d896764a9986\">\n.flex_column.av-xxdf4y-db52f726a49a883d9153d896764a9986{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-xxdf4y-db52f726a49a883d9153d896764a9986 av_one_full  avia-builder-el-15  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-vtqig2-55885168840d1a2bd84a8563b6ae1354\">\n#top .av-special-heading.av-vtqig2-55885168840d1a2bd84a8563b6ae1354{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-vtqig2-55885168840d1a2bd84a8563b6ae1354 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-vtqig2-55885168840d1a2bd84a8563b6ae1354 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-vtqig2-55885168840d1a2bd84a8563b6ae1354 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-vtqig2-55885168840d1a2bd84a8563b6ae1354 av-special-heading-h2 custom-color-heading  avia-builder-el-16  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >KARYA <span style=\"color: #ffffff;\">CADANGAN<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-vbnksy-0c155e2cd62d815bbeeb157a67a141ac\">\n#top .hr.hr-invisible.av-vbnksy-0c155e2cd62d815bbeeb157a67a141ac{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-vbnksy-0c155e2cd62d815bbeeb157a67a141ac hr-invisible  avia-builder-el-17  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-loaqwjpt-4daa2176de732d6f10f8f3b0cdf961b4 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><iframe style=\"width: 100%; height: 500px;\" src=\"https:\/\/docs.google.com\/gview?url=https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/BMS23-Proposal.pdf&amp;embedded=true\" frameborder=\"0\"><\/iframe><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/BMS23-Proposal.pdf\">BMS23 Proposal<\/a><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-7289\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-1-1-1030x776.png\" alt=\"\" width=\"1030\" height=\"776\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-1-1-1030x776.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-1-1-300x226.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-1-1-768x578.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-1-1-1536x1157.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-1-1-1500x1129.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-1-1-705x531.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-1-1.png 1834w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-full wp-image-7292\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-2-a.png\" alt=\"\" width=\"1000\" height=\"562\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-2-a.png 1000w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-2-a-300x169.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-2-a-768x432.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-2-a-705x396.png 705w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-7291\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-lokasi.png\" alt=\"\" width=\"384\" height=\"257\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-lokasi.png 384w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/10\/Cadangan-lokasi-300x201.png 300w\" sizes=\"(max-width: 384px) 100vw, 384px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_4'  class='avia-section av-tq4oc2-85c7a12671d5d3fbea53a9205d5d3618 main_color avia-section-default avia-no-border-styling  avia-builder-el-19  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-7282'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-rq2kzm-22d04edd9f0ce64eaa61d1ac5fb3739b\">\n.flex_column.av-rq2kzm-22d04edd9f0ce64eaa61d1ac5fb3739b{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-rq2kzm-22d04edd9f0ce64eaa61d1ac5fb3739b av_one_full  avia-builder-el-20  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-q70uea-d92cdeea764e28796e501d70e59bb784\">\n#top .av-special-heading.av-q70uea-d92cdeea764e28796e501d70e59bb784{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-q70uea-d92cdeea764e28796e501d70e59bb784 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-q70uea-d92cdeea764e28796e501d70e59bb784 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-q70uea-d92cdeea764e28796e501d70e59bb784 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-q70uea-d92cdeea764e28796e501d70e59bb784 av-special-heading-h2 custom-color-heading  avia-builder-el-21  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >KARYA <span style=\"color: #ffffff;\">AKHIR<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-o7dyw2-f4aecc61b2609a3839d5f892da62e9b5\">\n#top .hr.hr-invisible.av-o7dyw2-f4aecc61b2609a3839d5f892da62e9b5{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-o7dyw2-f4aecc61b2609a3839d5f892da62e9b5 hr-invisible  avia-builder-el-22  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-m72g1e-f0dd7de2151c3d435765e54dc1fa54d7 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone size-large wp-image-8234\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.07-1-1030x831.jpeg\" alt=\"\" width=\"1030\" height=\"831\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.07-1-1030x831.jpeg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.07-1-300x242.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.07-1-768x619.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.07-1-495x400.jpeg 495w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.07-1-705x569.jpeg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.07-1.jpeg 1080w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8235\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.06-2-1030x773.jpeg\" alt=\"\" width=\"1030\" height=\"773\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.06-2-1030x773.jpeg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.06-2-300x225.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.06-2-768x576.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.06-2-705x529.jpeg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.06-2.jpeg 1080w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8236\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.05-1030x771.jpeg\" alt=\"\" width=\"1030\" height=\"771\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.05-1030x771.jpeg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.05-300x224.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.05-768x575.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.05-705x527.jpeg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.05.jpeg 1080w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8237\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-2-1030x773.jpeg\" alt=\"\" width=\"1030\" height=\"773\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-2-1030x773.jpeg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-2-300x225.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-2-768x576.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-2-705x529.jpeg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-2.jpeg 1080w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8238\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-1-1030x744.jpeg\" alt=\"\" width=\"1030\" height=\"744\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-1-1030x744.jpeg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-1-300x217.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-1-768x555.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-1-705x509.jpeg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-1.jpeg 1080w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8239\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04.jpeg\" alt=\"\" width=\"1024\" height=\"768\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04.jpeg 1024w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-300x225.jpeg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-768x576.jpeg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/WhatsApp-Image-2023-12-07-at-15.45.04-705x529.jpeg 705w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_5'  class='avia-section av-kjqtbm-c173e845446b09dc2b264324f8066381 main_color avia-section-default avia-no-border-styling  avia-builder-el-24  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-7282'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-igrp42-476d4da6bd9fded0e879a5558afc393d\">\n.flex_column.av-igrp42-476d4da6bd9fded0e879a5558afc393d{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-igrp42-476d4da6bd9fded0e879a5558afc393d av_one_full  avia-builder-el-25  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-hoklwi-4b1b75eee5ae48ad7f6b6f3b80838f31\">\n#top .av-special-heading.av-hoklwi-4b1b75eee5ae48ad7f6b6f3b80838f31{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-hoklwi-4b1b75eee5ae48ad7f6b6f3b80838f31 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-hoklwi-4b1b75eee5ae48ad7f6b6f3b80838f31 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-hoklwi-4b1b75eee5ae48ad7f6b6f3b80838f31 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-hoklwi-4b1b75eee5ae48ad7f6b6f3b80838f31 av-special-heading-h2 custom-color-heading  avia-builder-el-26  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >PAUTAN <span style=\"color: #ffffff;\">VIDEO<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-gcoi02-b23797da9ab5c09dd83dec7309a4f81e\">\n#top .hr.hr-invisible.av-gcoi02-b23797da9ab5c09dd83dec7309a4f81e{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-gcoi02-b23797da9ab5c09dd83dec7309a4f81e hr-invisible  avia-builder-el-27  el_after_av_one_full  el_before_av_video '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<div  class='avia-video av-ease42-fe9e30177bdc7adc1da382946b8d84a3 avia-video-16-9 av-no-preview-image avia-video-load-always av-lazyload-immediate av-lazyload-video-embed'  itemprop=\"video\" itemtype=\"https:\/\/schema.org\/VideoObject\"  data-original_url='https:\/\/youtu.be\/APqBdMjIgSc?si=Sn49h0RTo6pLEULf'><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"Abdullah Ehlid Al Walid (Dia Masih Di Awang-awangan) | Zon Utara PER BMS&#039;23\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/APqBdMjIgSc?feature=oembed&autoplay=0&loop=0&controls=1&mute=0\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen><\/iframe><\/div><\/script><div class='av-click-to-play-overlay'><div class=\"avia_playpause_icon\"><\/div><\/div><\/div>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='undian23'  class='avia-section av-c2dsv6-4589f2b2f43a32770311e5752c1a7002 main_color avia-section-default avia-no-border-styling  avia-builder-el-29  el_after_av_section  avia-builder-el-last  voting avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-7282'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-av3l6q-3d01e1601497db6c3cc2327aae79616f sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-av3l6q-3d01e1601497db6c3cc2327aae79616f\">\n.flex_column.av-av3l6q-3d01e1601497db6c3cc2327aae79616f{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-av3l6q-3d01e1601497db6c3cc2327aae79616f av_one_half  avia-builder-el-30  el_before_av_one_half  avia-builder-el-first  first flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-8sd9c2-5fd2f4ea645701e3cd680ca4fe6f1c22 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" >\n<div class=\"it_epoll_container\" \"=\"\">\n\t<h1 class=\" it_epoll_title\">\n\t<span class=\"it_epoll_title_exact_on\"><\/span>\n\t<span class=\"it_epoll_survey-stage\">\n\t\t<span class=\"it_epoll_stage it_epoll_live it_epoll_active\">Live<\/span>\n\t\t<span class=\"it_epoll_stage it_epoll_ended it_epoll_active\" style=\"display:none;\">Ended<\/span>\n\t<\/span>\n\t<\/h1>\n\t<div class=\"it_epoll_inner\">\n\t\t<ul class=\"it_epoll_surveys it_epoll_grid\">\n\t\t\t<li class=\"it_epoll_survey-item\">\n\t\t\t\t<input type=\"hidden\" name=\"it_epoll_multivoting\" value=\"0\" id=\"it_epoll_multivoting\">\n\t\t\t\t<div class=\"it_epoll_survey-item-inner it_epoll_card_front\">\n\t\t\t\t\t<div class=\"it_epoll_big_cover it_epoll_blue_gradient\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/plugins\/rocketweb_voting\/front\/images\/online.jpg\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_survey-country it_epoll_grid-only\">\n\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Foto-3.png\">\n\t\t\t\t\t<div class=\"it_epoll_spinner\">\n\t\t\t\t\t<svg version=\"1.1\" id=\"it_epoll_tick\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 37 37\" xml:space=\"preserve\">\n\t\t\t\t\t\t<path class=\"it_epoll_circ it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"\n\t\t\t\t\t\tM30.5,6.5L30.5,6.5c6.6,6.6,6.6,17.4,0,24l0,0c-6.6,6.6-17.4,6.6-24,0l0,0c-6.6-6.6-6.6-17.4,0-24l0,0C13.1-0.2,23.9-0.2,30.5,6.5z\"><\/path>\n\t\t\t\t\t\t<polyline class=\"it_epoll_tick it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"\n\t\t\t\t\t\t11.6,20 15.9,24.2 26.4,13.8 \"><\/polyline>\n\t\t\t\t\t<\/svg>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_survey-name\"><\/div>\n\t\t\t\t<div class=\"it_epoll_survey-item-action \">\n\t\t\t\t\t<form id=\"form_voteon\">\n\t\t\t\t\t\t<input type=\"hidden\" name=\"onpostid\" id=\"onpostid\" value=\"\">\n\t\t\t\t\t\t<div id=\"countdownon\" style=\"margin: 6px; display:none; background:linear-gradient(40deg,#45cafc,#303f9f)!important;padding: .82rem 2.14rem !important;.font-size:81rem !important\">10 seconds remaining<\/div>\n\t\t\t\t\t\t<input type=\"button\" name=\"it_epoll_survey-vote-button\" id=\"it_epoll_survey-vote-button\" class=\"it_epoll_blue_gradient voteon\" value=\"Vote\" onclick=\"voteon('online');\">\n\t\t\t\t\t<\/form>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_pull-right\">\n\t\t\t\t\t<span class=\"it_epoll_survey-progress\">\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-bg\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-fg it_epoll_blue_gradient onwidth\" style=\"width:0%;\"><\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-labels\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-label percenton\"> 0% <\/span>\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"it_epoll_poll_e_vote_count\" id=\"it_epoll_poll_e_vote_count\" value=\"5\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-completes\"> 5 \/ 5 <\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/li>\n\t\t\t<div style=\"clear:both;\"><\/div>\n\t\t<\/ul>\n\t<\/div>\n<\/div>\n\n<\/div><\/section><\/div><div class='av-flex-placeholder'><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-71ryia-0d58e110d72789acd6e1276e7e5262e7\">\n.flex_column.av-71ryia-0d58e110d72789acd6e1276e7e5262e7{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-71ryia-0d58e110d72789acd6e1276e7e5262e7 av_one_half  avia-builder-el-32  el_after_av_one_half  el_before_av_one_full  flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-6dxrg2-206aa9d5edbb6249221b4605ee67f57c '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" >\n<div class=\"it_epoll_container\">\n\t<h1 class=\"it_epoll_title\">\n\t\t<span class=\"it_epoll_title_exact_os\"><\/span>\n\t\t<span class=\"it_epoll_survey-stage\">\n\t\t<span class=\"it_epoll_stage it_epoll_live it_epoll_active\">Live<\/span>\n\t\t<span class=\"it_epoll_stage it_epoll_ended it_epoll_active\" style=\"display:none;\">Ended<\/span>\n\t<\/h1>\n\t<div class=\"it_epoll_inner\">\n\t\t<ul class=\"it_epoll_surveys it_epoll_grid\">\n\t\t\t<li class=\"it_epoll_survey-item\">\n\t\t\t\t<input type=\"hidden\" name=\"it_epoll_multivoting\" value=\"0\" id=\"it_epoll_multivoting\">\n\t\t\t\t<div class=\"it_epoll_survey-item-inner it_epoll_card_front\">\n\t\t\t\t\t<div class=\"it_epoll_big_cover it_epoll_blue_gradient\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/plugins\/rocketweb_voting\/front\/images\/onsite.jpg\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-country it_epoll_grid-only\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Foto-3.png\">\n\t\t\t\t\t\t<div class=\"it_epoll_spinner\">\n\t\t\t\t\t\t\t<svg version=\"1.1\" id=\"it_epoll_tick\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 37 37\" xml:space=\"preserve\">\n\t\t\t\t\t\t\t<path class=\"it_epoll_circ it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"\n\t\t\t\t\t\t\tM30.5,6.5L30.5,6.5c6.6,6.6,6.6,17.4,0,24l0,0c-6.6,6.6-17.4,6.6-24,0l0,0c-6.6-6.6-6.6-17.4,0-24l0,0C13.1-0.2,23.9-0.2,30.5,6.5z\"><\/path>\n\t\t\t\t\t\t\t<polyline class=\"it_epoll_tick it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"\n\t\t\t\t\t\t\t11.6,20 15.9,24.2 26.4,13.8 \"><\/polyline>\n\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-name\"><\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-item-action it_epoll_survey-item-action-disabled\">\n\t\t\t\t\t\t<form id=\"form_voteos\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"ospostid\" id=\"ospostid\" value=\"\">\n\t\t\t\t\t\t\t<div id=\"countdownos\" style=\"margin: 6px; display:none; background:linear-gradient(40deg,#45cafc,#303f9f)!important;padding: .82rem 2.14rem !important;.font-size:81rem !important\">10 seconds remaining<\/div>\n\t\t\t\t\t\t\t<input type=\"button\" name=\"it_epoll_survey-vote-button\" id=\"it_epoll_survey-vote-button\" class=\"it_epoll_blue_gradient voteos\" value=\"Vote\" onclick=\"voteos('os')\">\n\t\t\t\t\t\t<\/form>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_pull-right\">\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-bg\">\n\t\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-fg it_epoll_blue_gradient oswidth\" style=\"width:0%;\"><\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-labels\">\n\t\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-label percentos\"> 0% <\/span>\n\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"it_epoll_poll_e_vote_count\" id=\"it_epoll_poll_e_vote_count\" value=\"3\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-completes\"> 3 \/ 3 <\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/li>\n\t\t\t<div style=\"clear:both;\"><\/div>\n\t\t<\/ul>\n\t<\/div>\n<\/div>\n<\/div><\/section><\/div><\/div><!--close column table wrapper. Autoclose: 1 -->\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-4lwt1u-42b6f330c3f3570f2cf15cc2aefa5a56\">\n.flex_column.av-4lwt1u-42b6f330c3f3570f2cf15cc2aefa5a56{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-4lwt1u-42b6f330c3f3570f2cf15cc2aefa5a56 av_one_full  avia-builder-el-34  el_after_av_one_half  avia-builder-el-last  first flex_column_div av-zero-column-padding  column-top-margin'     ><section  class='av_textblock_section av-2rk1oi-5aae5338fdec3d24a09dc5d12848e52c '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: center;\"><img decoding=\"async\" src=\"https:\/\/chart.googleapis.com\/chart?chs=300x300&cht=qr&chl=https:\/\/www.artgallery.gov.my\/bms&choe=UTF-8\" \/><\/p>\n<\/div><\/section><\/div>\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":8371,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36,35],"tags":[55],"class_list":["post-7282","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bms23","category-selangor","tag-55"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/7282","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=7282"}],"version-history":[{"count":8,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/7282\/revisions"}],"predecessor-version":[{"id":8836,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/7282\/revisions\/8836"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/8371"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=7282"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=7282"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=7282"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}