# Leader section
@LEADER_PORTRAIT_SIZE = 120

# Committee slots section
@COMMITTEE_Y = 350
@COMMITTEE_WIDTH = 160
@COMMITTEE_HEIGHT = 210
@COMMITTEE_ICON_X = -20
@COMMITTEE_ICON_Y = 20

@COMMITTEE_DEPT_NAME_X = -60
@COMMITTEE_DEPT_NAME_Y = 90

# Selection section
@SELECTION_Y = 520
@SEL_BTN_WIDTH = 170
@SEL_BTN_ROW_H = 35
@SELECTION_ROW_1 = 8
@SELECTION_ROW_2 = 46
@SELECTION_ROW_3 = 84
@SELECTION_ROW_4 = 122

# Influence bars section — per row: milestones (top) → bar + label (bottom)
@INFLUENCE_BAR_X = 240
@INFLUENCE_LABEL_MAXWIDTH = 210

@INFLUENCE_MILESTONE_Y_1 = 0
@INFLUENCE_ROW_1 = 18
@INFLUENCE_ROW_LABEL_1 = 23

@INFLUENCE_MILESTONE_Y_2 = 55
@INFLUENCE_ROW_2 = 73
@INFLUENCE_ROW_LABEL_2 = 78

@INFLUENCE_MILESTONE_Y_3 = 110
@INFLUENCE_ROW_3 = 128
@INFLUENCE_ROW_LABEL_3 = 133

@INFLUENCE_MILESTONE_Y_4 = 165
@INFLUENCE_ROW_4 = 183
@INFLUENCE_ROW_LABEL_4 = 188

@INFLUENCE_MILESTONE_Y_5 = 220
@INFLUENCE_ROW_5 = 238
@INFLUENCE_ROW_LABEL_5 = 243

@INFLUENCE_MILESTONE_Y_6 = 275
@INFLUENCE_ROW_6 = 293
@INFLUENCE_ROW_LABEL_6 = 298

@INFLUENCE_MILESTONE_Y_7 = 330
@INFLUENCE_ROW_7 = 348
@INFLUENCE_ROW_LABEL_7 = 353



guiTypes = {

	containerWindowType = {
		name = "CHI_national_committee_ui_window"
		orientation = lower_left
		position = { x = 0 y = 0 }
		size = { width = 600 height = 670 }
		clipping = no

		# BACKGROUND
		background = {
			name = "background"
			quadTextureSprite = "GFX_CHI_nc_bg"
			alwaystransparent = yes
			position = { x = 0 y = -10 }
		}

		# TITLE
		instantTextBoxType = {
			name = "nc_title"
			orientation = center_up
			position = { x = -280 y = 15 }
			font = "hoi_36header"
			text = "CHI_nc_title"
			format = center
			maxWidth = 560
		}


		##############################
		### SECTION 1: LEADER      ###
		##############################

		containerWindowType = {
			name = "leader_container"
			orientation = center_up
			position = { x = -80 y = 60 }
			size = { width = 160 height = 170 }
			clipping = no

			# PORTRAIT (dynamic via scripted_images in inlay window)
			iconType = {
				name = "leader_portrait"
				spriteType = "GFX_CHI_nc_leader_placeholder"
				orientation = center_up
				position = { x = -80 y = 0 }
				alwaystransparent = yes
			}

			# NAME
			instantTextBoxType = {
				name = "leader_name"
				orientation = center_down
				position = { x = -80 y = 0 }
				font = "hoi_20b"
				context_aware_text = "CHI_nc_leader_name"
				format = center
				maxWidth = 160
				alwaystransparent = yes
			}

			# TITLE
			instantTextBoxType = {
				name = "leader_title"
				orientation = center_down
				position = { x = -180 y = 25 }
				font = "hoi_18mbs"
				text = CHI_nc_leader_title
				text_color_code = Y
				format = center
				maxWidth = 360
				alwaystransparent = yes
			}
		}


		########################################
		### SECTION 2: ACTIVE COMMITTEES x3  ###
		########################################

		### COMMITTEE SLOT 1 ###
		containerWindowType = {
			name = "committee_slot_1"
			orientation = center_up
			position = { x = -270 y = @COMMITTEE_Y }
			size = { width = @COMMITTEE_WIDTH height = @COMMITTEE_HEIGHT }
			clipping = no

			# DEPT ICON (dynamic via scripted_images)
			iconType = {
				name = "slot_1_dept_icon"
				spriteType = "GFX_CHI_nc_dept_empty"
				orientation = center_up
				position = { x = @COMMITTEE_ICON_X y = @COMMITTEE_ICON_Y }
			}

			# SLOT HEADER
			instantTextBoxType = {
				name = "slot_1_header"
				orientation = center_up
				position = { x = -80 y = -3 }
				font = "hoi_16mbs"
				text = CHI_nc_slot_header_1
				format = center
				maxWidth = 150
				alwaystransparent = yes
			}

			# ACTIVE DEPARTMENT NAME
			instantTextBoxType = {
				name = "slot_1_dept_name"
				orientation = center_up
				position = { x = @COMMITTEE_DEPT_NAME_X y = @COMMITTEE_DEPT_NAME_Y }
				font = "hoi_18mbs"
				context_aware_text = "CHI_nc_slot_1_name_text"
				format = center
				maxWidth = 150
				alwaystransparent = yes
			}

		}

		### COMMITTEE SLOT 2 ###
		containerWindowType = {
			name = "committee_slot_2"
			orientation = center_up
			position = { x = -100 y = @COMMITTEE_Y }
			size = { width = @COMMITTEE_WIDTH height = @COMMITTEE_HEIGHT }
			clipping = no

			iconType = {
				name = "slot_2_dept_icon"
				spriteType = "GFX_CHI_nc_dept_empty"
				orientation = center_up
				position = { x = @COMMITTEE_ICON_X y = @COMMITTEE_ICON_Y }
			}

			instantTextBoxType = {
				name = "slot_2_header"
				orientation = center_up
				position = { x = -80 y = -3 }
				font = "hoi_16mbs"
				text = CHI_nc_slot_header_2
				format = center
				maxWidth = 150
				alwaystransparent = yes
			}

			instantTextBoxType = {
				name = "slot_2_dept_name"
				orientation = center_up
				position = { x = @COMMITTEE_DEPT_NAME_X y = @COMMITTEE_DEPT_NAME_Y }
				font = "hoi_18mbs"
				context_aware_text = "CHI_nc_slot_2_name_text"
				format = center
				maxWidth = 150
				alwaystransparent = yes
			}

		}

		### COMMITTEE SLOT 3 ###
		containerWindowType = {
			name = "committee_slot_3"
			orientation = center_up
			position = { x = 70 y = @COMMITTEE_Y }
			size = { width = @COMMITTEE_WIDTH height = @COMMITTEE_HEIGHT }
			clipping = no

			iconType = {
				name = "slot_3_dept_icon"
				spriteType = "GFX_CHI_nc_dept_empty"
				orientation = center_up
				position = { x = @COMMITTEE_ICON_X y = @COMMITTEE_ICON_Y }
			}

			instantTextBoxType = {
				name = "slot_3_header"
				orientation = center_up
				position = { x = -80 y = -3 }
				font = "hoi_16mbs"
				text = CHI_nc_slot_header_3
				format = center
				maxWidth = 150
				alwaystransparent = yes
			}

			instantTextBoxType = {
				name = "slot_3_dept_name"
				orientation = center_up
				position = { x = @COMMITTEE_DEPT_NAME_X y = @COMMITTEE_DEPT_NAME_Y }
				font = "hoi_18mbs"
				context_aware_text = "CHI_nc_slot_3_name_text"
				format = center
				maxWidth = 150
				alwaystransparent = yes
			}

		}


		############################################
		### SECTION 3: COMMITTEE SELECTION (7x)  ###
		############################################

		containerWindowType = {
			name = "selection_container"
			orientation = center_up
			position = { x = -270 y = @SELECTION_Y }
			size = { width = 540 height = 180 }
			clipping = no

			# SECTION LABEL
			instantTextBoxType = {
				name = "selection_label"
				position = { x = 0 y = -18 }
				font = "hoi_18mbs"
				text = CHI_nc_select_committees
				format = center
				maxWidth = 540
			}

			# ROW 1: Org, Pub,
			buttonType = {
				name = "chi_dept_org_btn"
				position = { x = 10 y = @SELECTION_ROW_1 }
				quadTextureSprite = "GFX_sort_button_202x29_button"
				text = CHI_ic_org_t1
				pdx_tooltip = CHI_nc_dept_org_tt
				buttonFont = "hoi_18mbs"
				clicksound = click_default
			}
			buttonType = {
				name = "chi_dept_pub_btn"
				position = { x = 250 y = @SELECTION_ROW_1 }
				quadTextureSprite = "GFX_sort_button_202x29_button"
				text = CHI_ic_pub_t1
				pdx_tooltip = CHI_nc_dept_pub_tt
				buttonFont = "hoi_18mbs"
				clicksound = click_default
			}

			# ROW 2: Intl, UFWD
			buttonType = {
				name = "chi_dept_intl_btn"
				position = { x = 10 y = @SELECTION_ROW_2 }
				quadTextureSprite = "GFX_sort_button_202x29_button"
				text = CHI_ic_intl_t1
				pdx_tooltip = CHI_nc_dept_intl_tt
				buttonFont = "hoi_18mbs"
				clicksound = click_default
			}
			buttonType = {
				name = "chi_dept_ufwd_btn"
				position = { x = 250 y = @SELECTION_ROW_2 }
				quadTextureSprite = "GFX_sort_button_288x29_button"
				text = CHI_ic_ufwd_t1
				pdx_tooltip = CHI_nc_dept_ufwd_tt
				buttonFont = "hoi_18mbs"
				clicksound = click_default
			}
			# Row 3 CPLAC
			buttonType = {
				name = "chi_dept_cplac_btn"
				position = { x = 10 y = @SELECTION_ROW_3 }
				quadTextureSprite = "GFX_sort_button_288x29_button"
				text = CHI_ic_cplac_t1
				pdx_tooltip = CHI_nc_dept_cplac_tt
				buttonFont = "hoi_18mbs"
				clicksound = click_default
			}

			# ROW 4: Social, NSC (unlock later)
			buttonType = {
				name = "chi_dept_social_btn"
				position = { x = 10 y = @SELECTION_ROW_4 }
				quadTextureSprite = "GFX_sort_button_202x29_button"
				text = CHI_ic_social_t1
				pdx_tooltip = CHI_nc_dept_social_tt
				buttonFont = "hoi_18mbs"
				clicksound = click_default
			}
			buttonType = {
				name = "chi_dept_nsc_btn"
				position = { x = 250 y = @SELECTION_ROW_4 }
				quadTextureSprite = "GFX_sort_button_288x29_button"
				text = CHI_ic_nsc_t1
				pdx_tooltip = CHI_nc_dept_nsc_tt
				buttonFont = "hoi_18mbs"
				clicksound = click_default
			}
		}

	}
}

### DECISION CATEGORY: INFLUENCE BARS ###

# Milestone marker positions (below bar, at 35%/70%/100% along the bar width)
@MILESTONE_35_X = 318
@MILESTONE_70_X = 407
@MILESTONE_100_X = 475

guiTypes = {

	containerWindowType = {
		name = "CHI_national_committee_decision_gui"
		size = { width = 50 height = 400 }

		containerWindowType = {
			name = "progressbar_container"
			position = { x = 0 y = 5 }

			# ORG (dept_id = 1)
			instantTextBoxType = {
				name = "inf_org_label"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_1 }
				font = "hoi_18mbs"
				text = CHI_ic_org_t1
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			instantTextBoxType = {
				name = "inf_org_label_yellow"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_1 }
				font = "hoi_18mbs"
				text = CHI_ic_org_t1
				text_color_code = Y
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			iconType = {
				name = "chi_inf_org_bar"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_1 }
			}
			iconType = {
				name = "chi_inf_org_bar_active"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar_active"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_1 }
				alwaystransparent = yes
			}
			iconType = {
				name = "chi_m_org_35_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_1 }
				pdx_tooltip = CHI_nc_m_org_35_off
			}
			iconType = {
				name = "chi_m_org_35_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_1 }
				pdx_tooltip = CHI_nc_m_org_35_on
			}
			iconType = {
				name = "chi_m_org_70_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_1 }
				pdx_tooltip = CHI_nc_m_org_70_off
			}
			iconType = {
				name = "chi_m_org_70_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_1 }
				pdx_tooltip = CHI_nc_m_org_70_on
			}
			iconType = {
				name = "chi_m_org_100_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_1 }
				pdx_tooltip = CHI_nc_m_org_100_off
			}
			iconType = {
				name = "chi_m_org_100_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_1 }
				pdx_tooltip = CHI_nc_m_org_100_on
			}

			# PUB (dept_id = 2)
			instantTextBoxType = {
				name = "inf_pub_label"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_2 }
				font = "hoi_18mbs"
				text = CHI_ic_pub_t1
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			instantTextBoxType = {
				name = "inf_pub_label_yellow"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_2 }
				font = "hoi_18mbs"
				text = CHI_ic_pub_t1
				text_color_code = Y
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			iconType = {
				name = "chi_inf_pub_bar"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_2 }
			}
			iconType = {
				name = "chi_inf_pub_bar_active"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar_active"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_2 }
				alwaystransparent = yes
			}
			iconType = {
				name = "chi_m_pub_35_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_2 }
				pdx_tooltip = CHI_nc_m_pub_35_off
			}
			iconType = {
				name = "chi_m_pub_35_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_2 }
				pdx_tooltip = CHI_nc_m_pub_35_on
			}
			iconType = {
				name = "chi_m_pub_70_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_2 }
				pdx_tooltip = CHI_nc_m_pub_70_off
			}
			iconType = {
				name = "chi_m_pub_70_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_2 }
				pdx_tooltip = CHI_nc_m_pub_70_on
			}
			iconType = {
				name = "chi_m_pub_100_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_2 }
				pdx_tooltip = CHI_nc_m_pub_100_off
			}
			iconType = {
				name = "chi_m_pub_100_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_2 }
				pdx_tooltip = CHI_nc_m_pub_100_on
			}

			# UFWD (dept_id = 3)
			instantTextBoxType = {
				name = "inf_ufwd_label"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_3 }
				font = "hoi_18mbs"
				text = CHI_ic_ufwd_t1
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			instantTextBoxType = {
				name = "inf_ufwd_label_yellow"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_3 }
				font = "hoi_18mbs"
				text = CHI_ic_ufwd_t1
				text_color_code = Y
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			iconType = {
				name = "chi_inf_ufwd_bar"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_3 }
			}
			iconType = {
				name = "chi_inf_ufwd_bar_active"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar_active"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_3 }
				alwaystransparent = yes
			}
			iconType = {
				name = "chi_m_ufwd_35_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_3 }
				pdx_tooltip = CHI_nc_m_ufwd_35_off
			}
			iconType = {
				name = "chi_m_ufwd_35_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_3 }
				pdx_tooltip = CHI_nc_m_ufwd_35_on
			}
			iconType = {
				name = "chi_m_ufwd_70_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_3 }
				pdx_tooltip = CHI_nc_m_ufwd_70_off
			}
			iconType = {
				name = "chi_m_ufwd_70_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_3 }
				pdx_tooltip = CHI_nc_m_ufwd_70_on
			}
			iconType = {
				name = "chi_m_ufwd_100_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_3 }
				pdx_tooltip = CHI_nc_m_ufwd_100_off
			}
			iconType = {
				name = "chi_m_ufwd_100_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_3 }
				pdx_tooltip = CHI_nc_m_ufwd_100_on
			}

			# INTL (dept_id = 4)
			instantTextBoxType = {
				name = "inf_intl_label"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_4 }
				font = "hoi_18mbs"
				text = CHI_ic_intl_t1
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			instantTextBoxType = {
				name = "inf_intl_label_yellow"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_4 }
				font = "hoi_18mbs"
				text = CHI_ic_intl_t1
				text_color_code = Y
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			iconType = {
				name = "chi_inf_intl_bar"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_4 }
			}
			iconType = {
				name = "chi_inf_intl_bar_active"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar_active"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_4 }
				alwaystransparent = yes
			}
			iconType = {
				name = "chi_m_intl_35_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_4 }
				pdx_tooltip = CHI_nc_m_intl_35_off
			}
			iconType = {
				name = "chi_m_intl_35_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_4 }
				pdx_tooltip = CHI_nc_m_intl_35_on
			}
			iconType = {
				name = "chi_m_intl_70_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_4 }
				pdx_tooltip = CHI_nc_m_intl_70_off
			}
			iconType = {
				name = "chi_m_intl_70_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_4 }
				pdx_tooltip = CHI_nc_m_intl_70_on
			}
			iconType = {
				name = "chi_m_intl_100_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_4 }
				pdx_tooltip = CHI_nc_m_intl_100_off
			}
			iconType = {
				name = "chi_m_intl_100_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_4 }
				pdx_tooltip = CHI_nc_m_intl_100_on
			}

			# SOCIAL (dept_id = 5)
			instantTextBoxType = {
				name = "inf_social_label"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_5 }
				font = "hoi_18mbs"
				text = CHI_ic_social_t1
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			instantTextBoxType = {
				name = "inf_social_label_yellow"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_5 }
				font = "hoi_18mbs"
				text = CHI_ic_social_t1
				text_color_code = Y
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			iconType = {
				name = "chi_inf_social_bar"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_5 }
			}
			iconType = {
				name = "chi_inf_social_bar_active"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar_active"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_5 }
				alwaystransparent = yes
			}
			iconType = {
				name = "chi_m_social_35_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_5 }
				pdx_tooltip = CHI_nc_m_social_35_off
			}
			iconType = {
				name = "chi_m_social_35_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_5 }
				pdx_tooltip = CHI_nc_m_social_35_on
			}
			iconType = {
				name = "chi_m_social_70_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_5 }
				pdx_tooltip = CHI_nc_m_social_70_off
			}
			iconType = {
				name = "chi_m_social_70_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_5 }
				pdx_tooltip = CHI_nc_m_social_70_on
			}
			iconType = {
				name = "chi_m_social_100_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_5 }
				pdx_tooltip = CHI_nc_m_social_100_off
			}
			iconType = {
				name = "chi_m_social_100_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_5 }
				pdx_tooltip = CHI_nc_m_social_100_on
			}

			# CPLAC (dept_id = 6)
			instantTextBoxType = {
				name = "inf_cplac_label"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_6 }
				font = "hoi_18mbs"
				text = CHI_ic_cplac_t1
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			instantTextBoxType = {
				name = "inf_cplac_label_yellow"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_6 }
				font = "hoi_18mbs"
				text = CHI_ic_cplac_t1
				text_color_code = Y
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			iconType = {
				name = "chi_inf_cplac_bar"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_6 }
			}
			iconType = {
				name = "chi_inf_cplac_bar_active"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar_active"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_6 }
				alwaystransparent = yes
			}
			iconType = {
				name = "chi_m_cplac_35_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_6 }
				pdx_tooltip = CHI_nc_m_cplac_35_off
			}
			iconType = {
				name = "chi_m_cplac_35_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_6 }
				pdx_tooltip = CHI_nc_m_cplac_35_on
			}
			iconType = {
				name = "chi_m_cplac_70_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_6 }
				pdx_tooltip = CHI_nc_m_cplac_70_off
			}
			iconType = {
				name = "chi_m_cplac_70_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_6 }
				pdx_tooltip = CHI_nc_m_cplac_70_on
			}
			iconType = {
				name = "chi_m_cplac_100_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_6 }
				pdx_tooltip = CHI_nc_m_cplac_100_off
			}
			iconType = {
				name = "chi_m_cplac_100_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_6 }
				pdx_tooltip = CHI_nc_m_cplac_100_on
			}

			# NSC (dept_id = 7)
			instantTextBoxType = {
				name = "inf_nsc_label"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_7 }
				font = "hoi_18mbs"
				text = CHI_ic_nsc_t1
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			instantTextBoxType = {
				name = "inf_nsc_label_yellow"
				position = { x = 8 y = @INFLUENCE_ROW_LABEL_7 }
				font = "hoi_18mbs"
				text = CHI_ic_nsc_t1
				text_color_code = Y
				maxWidth = @INFLUENCE_LABEL_MAXWIDTH
			}
			iconType = {
				name = "chi_inf_nsc_bar"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_7 }
			}
			iconType = {
				name = "chi_inf_nsc_bar_active"
				quadTextureSprite = "GFX_CHI_national_committee_progressbar_active"
				position = { x = @INFLUENCE_BAR_X y = @INFLUENCE_ROW_7 }
				alwaystransparent = yes
			}
			iconType = {
				name = "chi_m_nsc_35_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_7 }
				pdx_tooltip = CHI_nc_m_nsc_35_off
			}
			iconType = {
				name = "chi_m_nsc_35_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_35_X y = @INFLUENCE_MILESTONE_Y_7 }
				pdx_tooltip = CHI_nc_m_nsc_35_on
			}
			iconType = {
				name = "chi_m_nsc_70_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_7 }
				pdx_tooltip = CHI_nc_m_nsc_70_off
			}
			iconType = {
				name = "chi_m_nsc_70_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_70_X y = @INFLUENCE_MILESTONE_Y_7 }
				pdx_tooltip = CHI_nc_m_nsc_70_on
			}
			iconType = {
				name = "chi_m_nsc_100_off"
				spriteType = "GFX_bop_indicator"
				frame = 1
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_7 }
				pdx_tooltip = CHI_nc_m_nsc_100_off
			}
			iconType = {
				name = "chi_m_nsc_100_on"
				spriteType = "GFX_bop_indicator"
				frame = 2
				position = { x = @MILESTONE_100_X y = @INFLUENCE_MILESTONE_Y_7 }
				pdx_tooltip = CHI_nc_m_nsc_100_on
			}
		}
	}
}
