<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 - Mohd Firdaus Naif Bin Omran Zailuddin');	
})


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', 'Mohd Firdaus Naif Bin Omran Zailuddin');
			
				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 - Mohd Firdaus Naif Bin Omran Zailuddin');
})

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', 'Mohd Firdaus Naif Bin Omran Zailuddin');

		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":6860,"date":"2023-09-14T10:52:57","date_gmt":"2023-09-14T02:52:57","guid":{"rendered":"https:\/\/www.artgallery.gov.my\/bms\/?p=6860"},"modified":"2025-06-20T14:33:46","modified_gmt":"2025-06-20T06:33:46","slug":"mohd-firdaus-naif-bin-omran-zailuddin","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=6860","title":{"rendered":"Mohd Firdaus Naif Bin Omran Zailuddin"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-102r4b0-f6af9fdf1d218c6e8e1e91c6603ef221 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-6860'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-xjqsrw-57c9279e3baeacc32ad1cb34bdf84ff9\">\n#top .av-special-heading.av-xjqsrw-57c9279e3baeacc32ad1cb34bdf84ff9{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-xjqsrw-57c9279e3baeacc32ad1cb34bdf84ff9 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-xjqsrw-57c9279e3baeacc32ad1cb34bdf84ff9 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-xjqsrw-57c9279e3baeacc32ad1cb34bdf84ff9 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-xjqsrw-57c9279e3baeacc32ad1cb34bdf84ff9 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-wpmozw-5260e9793bd9feefe49bad41502ee600\">\n.flex_column.av-wpmozw-5260e9793bd9feefe49bad41502ee600{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-wpmozw-5260e9793bd9feefe49bad41502ee600 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-32bjz0-060324cf6e5da3a17a0d7ab2fa11652c\">\n#top .hr.hr-invisible.av-32bjz0-060324cf6e5da3a17a0d7ab2fa11652c{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-32bjz0-060324cf6e5da3a17a0d7ab2fa11652c 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-ln15m2zf-b9de88942d7b6d527d05f85f750fe26d\">\n#top .avia-icon-list-container.av-ln15m2zf-b9de88942d7b6d527d05f85f750fe26d .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#edae44;\n}\n#top .avia-icon-list-container.av-ln15m2zf-b9de88942d7b6d527d05f85f750fe26d .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-ln15m2zf-b9de88942d7b6d527d05f85f750fe26d  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-ln15m2zf-b9de88942d7b6d527d05f85f750fe26d avia-iconlist-animate'>\n<li><div class='iconlist_icon av-ln15klyi-8a9aea8efc8141fa358f363f0125217e 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\">Mohd Firdaus Naif Bin Omran Zailuddin<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-ln15m190-0898b6f7f22bd7f1bd7bbc61ed68b83d 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\">Kedai Kak Dah Machang, Kelantan<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-ln15lob3-60274bfc895c696a8fb55514c1328339 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\/09\/CV-23.pdf\" target=\"_blank\" rel=\"noopener\">Mohd Firdaus Naif Bin Omran Zailuddin<\/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-sozv0c-63fe5c21e5779f00d95225159a3ffc58\">\n.flex_column.av-sozv0c-63fe5c21e5779f00d95225159a3ffc58{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-sozv0c-63fe5c21e5779f00d95225159a3ffc58 av_two_third  avia-builder-el-5  el_after_av_one_third  avia-builder-el-last  flex_column_div av-zero-column-padding  '     ><p><br \/>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-ln15k7ht-a2eb803b15bc3538889b3084c0ee6798\">\n.avia-image-container.av-ln15k7ht-a2eb803b15bc3538889b3084c0ee6798 img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-ln15k7ht-a2eb803b15bc3538889b3084c0ee6798 .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-ln15k7ht-a2eb803b15bc3538889b3084c0ee6798 av-styling- avia-align-center  avia-builder-el-7  el_after_av_image  avia-builder-el-last '   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-8028 avia-img-lazy-loading-not-8028 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/fdhf.png\" alt='' title='fdhf'  height=\"426\" width=\"745\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/fdhf.png 745w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/fdhf-300x172.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/fdhf-705x403.png 705w\" sizes=\"(max-width: 745px) 100vw, 745px\" \/><\/div><\/div><\/div><\/p><\/div>\n\n<\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-p8urnw-b2152e1e21ffd36b6147fd05c2cf8cd3 main_color avia-section-default avia-no-border-styling  avia-builder-el-8  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-6860'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-of45zw-15bb0e46936dbdd30740de1f19651e56\">\n.flex_column.av-of45zw-15bb0e46936dbdd30740de1f19651e56{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-of45zw-15bb0e46936dbdd30740de1f19651e56 av_one_full  avia-builder-el-9  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-mwmczw-9dacba59441ec46f1161a956c91ab1f1\">\n#top .av-special-heading.av-mwmczw-9dacba59441ec46f1161a956c91ab1f1{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-mwmczw-9dacba59441ec46f1161a956c91ab1f1 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-mwmczw-9dacba59441ec46f1161a956c91ab1f1 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-mwmczw-9dacba59441ec46f1161a956c91ab1f1 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-mwmczw-9dacba59441ec46f1161a956c91ab1f1 av-special-heading-h2 custom-color-heading  avia-builder-el-10  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-kqsd30-cea5d74fb33f8606ea207540d022d32a\">\n#top .hr.hr-invisible.av-kqsd30-cea5d74fb33f8606ea207540d022d32a{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-kqsd30-cea5d74fb33f8606ea207540d022d32a hr-invisible  avia-builder-el-11  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-ln15nxr7-d17eb842890d6cb6c2d7403885c9da5b '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: justify;\"><u>KED.POL: Kedai Politik<\/u><\/p>\n<p style=\"text-align: justify;\">Step into the world of \u2018KED.POL,\u2019 an intriguing art installation nestled within a 15\u2019 x 15\u2019 retail space. Upon entering, you\u2019ll find yourself in a fully furnished, albeit enigmatic, shop. The shelves are adorned with an assortment of political-themed parody products, ranging from campaign posters of fictional candidates to quirky flags representing imaginary parties.<\/p>\n<p style=\"text-align: justify;\">As you explore further, you\u2019ll come across a display of vintage political campaigning media, including cassette tapes and VCDs, each featuring a touch of satirical humor. Souvenirs boasting whimsical political party logos catch your eye, while the shelves showcase an assortment of witty and irreverent objects, designed to poke fun at the political landscape.<\/p>\n<p style=\"text-align: justify;\">The ambiance of \u2018KED.POL\u2019 is lighthearted and playful, characterized by its satirical and humorous approach. The concept cleverly intertwines with the socio-cultural phenomena that surround the political context of Malaysia, offering a fresh perspective on the country\u2019s political scene.<\/p>\n<p style=\"text-align: justify;\">While the installation boldly celebrates satire, it does so responsibly, avoiding sensitive issues and controversies. All elements within \u2018KED.POL\u2019 are centered around fictional political parties, characters, and logos, ensuring a safe and enjoyable experience for all visitors.<\/p>\n<p style=\"text-align: justify;\">Through its creative blend of art and humor, \u2018KED.POL\u2019 encourages viewers to reflect on the multifaceted nature of politics, inviting them to immerse themselves in this imaginative and thought-provoking world. So step inside, embrace the whimsy, and embark on a journey that unveils the comical side of the Malaysian political landscape.<\/p>\n<p style=\"text-align: justify;\">Artwork Statement: \u201cKED.POL : Kedai Politik\u201d<\/p>\n<p style=\"text-align: justify;\">In \u2018KED.POL\u2019 installation, we invite viewers to immerse themselves in a satirical and thought[1]provoking exploration of the intricate relationship between politics and the art of selling promises, perceptions, and hope. Inspired by the modern-day political landscape, this conceptual art piece aims to dissect the often elusive and manipulative nature of politics while shedding light on the profound impact it has on society\u2019s collective consciousness.<\/p>\n<p style=\"text-align: justify;\">The installation is conceived as a parodic yet symbolic shop, cleverly mirroring the familiar aesthetics of a retail space. Visitors are welcomed into a vibrant and alluring setting, reminiscent of the bustling storefronts we encounter in our everyday lives. However, upon closer inspection, they will quickly discern that this\u2018shop\u2019 holds more than meets the eye. Here, the boundaries between consumerism and political participation blur, revealing the game-like nature of contemporary politics, where politicians assume the roles of shrewd salespeople and voters become the unwitting consumers. Through skillful use of mixed media, including sculptures, installations, digital art, and audiovisual elements,\u2018The Politic Shop\u2019 navigates the nuanced terrain of political rhetoric and image-building. Through juxtapositions and symbolic references, \u2018The Politic Shop\u2019 aims to provoke a deep reflection on the impact of politics on the human psyche and societal fabric. It raises questions about the ethical boundaries of political communication, the role of the media in shaping public perception, and the allure of hope amidst a cacophony of empty rhetoric.<\/p>\n<p style=\"text-align: justify;\">Ultimately, \u2018KED-POL\u2019 challenges us to confront our complicity as consumers in this grand game of political marketing. As viewers navigate this captivating yet disconcerting space, we hope that they emerge with a renewed sense of critical awareness, fostering a more discerning approach to political engagement, and an understanding of the profound implications of the politics of promises, perceptions, and hope.<\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3'  class='avia-section av-j0shv0-437e37cae00b456829c1f766ece4d986 main_color avia-section-default avia-no-border-styling  avia-builder-el-13  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-6860'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-1slgpo-b9c8ba1678aa00bd4a52d1f60c9bc88d\">\n.flex_column.av-1slgpo-b9c8ba1678aa00bd4a52d1f60c9bc88d{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-1slgpo-b9c8ba1678aa00bd4a52d1f60c9bc88d av_one_full  avia-builder-el-14  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-flycbw-23bfdb20884c83703094f9af6f4179dd\">\n#top .av-special-heading.av-flycbw-23bfdb20884c83703094f9af6f4179dd{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-flycbw-23bfdb20884c83703094f9af6f4179dd .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-flycbw-23bfdb20884c83703094f9af6f4179dd .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-flycbw-23bfdb20884c83703094f9af6f4179dd .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-flycbw-23bfdb20884c83703094f9af6f4179dd av-special-heading-h2 custom-color-heading  avia-builder-el-15  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-ely9do-e98d0cbf85620308dbe43157938aed21\">\n#top .hr.hr-invisible.av-ely9do-e98d0cbf85620308dbe43157938aed21{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-ely9do-e98d0cbf85620308dbe43157938aed21 hr-invisible  avia-builder-el-16  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-ln15qmee-6c72115669ec48976e4a1f650e68122a '   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\/09\/BMS23-Proposal-21.pdf&amp;embedded=true\" frameborder=\"0\"><\/iframe><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/BMS23-Proposal-21.pdf\">BMS23 Proposal<\/a><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-6864\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-1-5-970x1030.png\" alt=\"\" width=\"970\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-1-5-970x1030.png 970w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-1-5-283x300.png 283w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-1-5-768x815.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-1-5-1447x1536.png 1447w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-1-5-1413x1500.png 1413w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-1-5-664x705.png 664w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-1-5.png 1716w\" sizes=\"(max-width: 970px) 100vw, 970px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-6865\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-2-4-925x1030.png\" alt=\"\" width=\"925\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-2-4-925x1030.png 925w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-2-4-269x300.png 269w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-2-4-768x855.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-2-4-1379x1536.png 1379w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-2-4-1347x1500.png 1347w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-2-4-633x705.png 633w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-2-4.png 1485w\" sizes=\"(max-width: 925px) 100vw, 925px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-6866\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-3-3-950x1030.png\" alt=\"\" width=\"950\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-3-3-950x1030.png 950w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-3-3-277x300.png 277w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-3-3-768x832.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-3-3-1417x1536.png 1417w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-3-3-1384x1500.png 1384w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-3-3-650x705.png 650w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-3-3.png 1491w\" sizes=\"(max-width: 950px) 100vw, 950px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-6867\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-4-3-1030x640.png\" alt=\"\" width=\"1030\" height=\"640\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-4-3-1030x640.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-4-3-300x186.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-4-3-768x477.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-4-3-705x438.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-4-3.png 1187w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-6868\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-5-2-1030x678.png\" alt=\"\" width=\"1030\" height=\"678\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-5-2-1030x678.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-5-2-300x197.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-5-2-768x506.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-5-2-705x464.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-5-2.png 1191w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-6869\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-6-1030x647.png\" alt=\"\" width=\"1030\" height=\"647\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-6-1030x647.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-6-300x189.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-6-768x483.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-6-1536x966.png 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-6-2048x1287.png 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-6-1500x943.png 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-Idea-6-705x443.png 705w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_4'  class='avia-section av-lo8dg8gb-ca160811df2e4c6b53dd51ad44118b0a main_color avia-section-default avia-no-border-styling  avia-builder-el-18  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-6860'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-c3jdgc-1431f2d8b491e18e483576bfd5a74f53\">\n.flex_column.av-c3jdgc-1431f2d8b491e18e483576bfd5a74f53{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-c3jdgc-1431f2d8b491e18e483576bfd5a74f53 av_one_full  avia-builder-el-19  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-aqfbrg-67780bc16e174bfbf86a8311ef241c87\">\n#top .av-special-heading.av-aqfbrg-67780bc16e174bfbf86a8311ef241c87{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-aqfbrg-67780bc16e174bfbf86a8311ef241c87 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-aqfbrg-67780bc16e174bfbf86a8311ef241c87 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-aqfbrg-67780bc16e174bfbf86a8311ef241c87 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-aqfbrg-67780bc16e174bfbf86a8311ef241c87 av-special-heading-h2 custom-color-heading  avia-builder-el-20  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-8p782k-9ea698c35950d3ca58be3b1a4c380fce\">\n#top .hr.hr-invisible.av-8p782k-9ea698c35950d3ca58be3b1a4c380fce{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-8p782k-9ea698c35950d3ca58be3b1a4c380fce hr-invisible  avia-builder-el-21  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-lo8ddmkp-468f7801dd402df6159e43d423af0cd9 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone wp-image-7678\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0008.jpg\" alt=\"\" width=\"897\" height=\"662\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0008.jpg 770w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0008-300x221.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0008-768x567.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0008-705x520.jpg 705w\" sizes=\"(max-width: 897px) 100vw, 897px\" \/><img decoding=\"async\" class=\"alignnone wp-image-7679\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0010.jpg\" alt=\"\" width=\"902\" height=\"903\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0010.jpg 751w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0010-300x300.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0010-80x80.jpg 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0010-36x36.jpg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0010-180x180.jpg 180w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0010-705x705.jpg 705w\" sizes=\"(max-width: 902px) 100vw, 902px\" \/><img decoding=\"async\" class=\"alignnone wp-image-7680\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0003.jpg\" alt=\"\" width=\"910\" height=\"910\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0003.jpg 562w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0003-300x300.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0003-80x80.jpg 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0003-36x36.jpg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0003-180x180.jpg 180w\" sizes=\"(max-width: 910px) 100vw, 910px\" \/><img decoding=\"async\" class=\"alignnone wp-image-7681\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0009.jpg\" alt=\"\" width=\"907\" height=\"909\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0009.jpg 599w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0009-300x300.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0009-80x80.jpg 80w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0009-36x36.jpg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0009-180x180.jpg 180w\" sizes=\"(max-width: 907px) 100vw, 907px\" \/><img decoding=\"async\" class=\"alignnone wp-image-7682\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0002.jpg\" alt=\"\" width=\"910\" height=\"662\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0002.jpg 770w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0002-300x218.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0002-768x559.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0002-705x513.jpg 705w\" sizes=\"(max-width: 910px) 100vw, 910px\" \/><img decoding=\"async\" class=\"alignnone wp-image-7683\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0001.jpg\" alt=\"\" width=\"914\" height=\"662\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0001.jpg 770w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0001-300x217.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0001-768x557.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/IMG-20231119-WA0001-705x511.jpg 705w\" sizes=\"(max-width: 914px) 100vw, 914px\" \/><img decoding=\"async\" class=\"alignnone wp-image-8030\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/tfrtj.png\" alt=\"\" width=\"918\" height=\"590\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/tfrtj.png 566w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/tfrtj-300x193.png 300w\" sizes=\"(max-width: 918px) 100vw, 918px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8031\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/xgsxb.png\" alt=\"\" width=\"924\" height=\"426\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/xgsxb.png 924w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/xgsxb-300x138.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/xgsxb-768x354.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/xgsxb-705x325.png 705w\" sizes=\"(max-width: 924px) 100vw, 924px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_5'  class='avia-section av-86vacs-8051f7ef5a1bdf028c6c024cad518958 main_color avia-section-default avia-no-border-styling  avia-builder-el-23  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-6860'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-63o8ng-47a6c472de5cb12a2487fc43868d8ba9\">\n.flex_column.av-63o8ng-47a6c472de5cb12a2487fc43868d8ba9{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-63o8ng-47a6c472de5cb12a2487fc43868d8ba9 av_one_full  avia-builder-el-24  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-lo8dgped-638091e9903586c80198c56093816b1f\">\n#top .av-special-heading.av-lo8dgped-638091e9903586c80198c56093816b1f{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-lo8dgped-638091e9903586c80198c56093816b1f .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-lo8dgped-638091e9903586c80198c56093816b1f .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-lo8dgped-638091e9903586c80198c56093816b1f .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-lo8dgped-638091e9903586c80198c56093816b1f av-special-heading-h2 custom-color-heading  avia-builder-el-25  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-4vcqdo-83c6f5b7c741513f148cf21b4b4b6df4\">\n#top .hr.hr-invisible.av-4vcqdo-83c6f5b7c741513f148cf21b4b4b6df4{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-4vcqdo-83c6f5b7c741513f148cf21b4b4b6df4 hr-invisible  avia-builder-el-26  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-ls4e4adw-e29badf370eae1beef1139518ea00758 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\/HFzh72SSTtw?si=UsOtORmp7GIH0VnE'><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"Mohd Firdaus Naif (Ked.Pol) | Zon Timur KEL BMS&#039;23\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/HFzh72SSTtw?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-c5c3p8-f37529f93147bb3c29775801a10daddf main_color avia-section-default avia-no-border-styling  avia-builder-el-28  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-6860'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-ay5qws-320196cf07174cc44fcc97a5c3c331cb sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-ay5qws-320196cf07174cc44fcc97a5c3c331cb\">\n.flex_column.av-ay5qws-320196cf07174cc44fcc97a5c3c331cb{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-ay5qws-320196cf07174cc44fcc97a5c3c331cb av_one_half  avia-builder-el-29  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-8pm870-3fefc977c155a96fe0b9a22b5ef1116e '   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\/Group-Info-2.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-7tqw6k-6e2112f17ad9a49e0a1f120db4daeb82\">\n.flex_column.av-7tqw6k-6e2112f17ad9a49e0a1f120db4daeb82{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-7tqw6k-6e2112f17ad9a49e0a1f120db4daeb82 av_one_half  avia-builder-el-31  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-6ilsi4-9518fd9e2acdd56b20b3cf6c8380e635 '   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\/Group-Info-2.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-4f83lo-056c3948855fbad6c86edaab702dfe7d\">\n.flex_column.av-4f83lo-056c3948855fbad6c86edaab702dfe7d{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-4f83lo-056c3948855fbad6c86edaab702dfe7d av_one_full  avia-builder-el-33  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-2iaj6k-e0e10e712bf286cab7eacd05d77f5737 '   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":6861,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36,41],"tags":[55],"class_list":["post-6860","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bms23","category-kelantan","tag-55"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6860","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=6860"}],"version-history":[{"count":13,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6860\/revisions"}],"predecessor-version":[{"id":8837,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6860\/revisions\/8837"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/6861"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6860"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6860"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6860"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}