ideas = {

	population = { 
	
		law = yes
		
		#Encourage Growth
		population_encourage = {

			modifier = {
				political_power_factor = 0.20
				MONTHLY_POPULATION = 0.5
				war_support_weekly = -0.002
				stability_weekly = -0.002
			}

			cost = 80
			
			cancel_if_invalid = yes
			
			ai_will_do = {
   				factor = 1
   			}
		}
		
		#Open Borders
		population_open = {

            available = {
				NOT = {
				    OR = {
					has_government = communism
					has_government = fascism
					has_government = neutrality
				    }
				}
			}

			modifier = {
				political_power_factor = 0.3
				MONTHLY_POPULATION = 0.80
				war_support_weekly = -0.003
				stability_weekly = -0.003
			}

			cost = 80
			
			cancel_if_invalid = yes

			ai_will_do = {
   				factor = 0.5

   				modifier = {
					has_government = democratic
					factor = 2
				}
   			}
		}
		
		#National Purity
		population_pure = {
		    available = {
				NOT = {
				    OR = {
					has_government = communism
					has_government = democratic
				    }
				}
			}
			
			modifier = {
				MONTHLY_POPULATION = -0.30
				political_power_factor = 0.2
				war_support_weekly = 0.001
				stability_weekly = 0.001
			}

			cost = 80
			
			cancel_if_invalid = yes

			ai_will_do = {
   				factor = 0.5
				modifier = {
				    has_government = fascism
					factor = 5
				}
   				modifier = {
				    if = {
					GER = {has_government = fascism}
					tag = GER
					}
					factor = 10
				}
   			}
		}
		
		#Controlled Growth
		population_controlled = {
		
			available = {
				NOT = {
					has_government = democratic
				}
			}
			
			modifier = {
				MONTHLY_POPULATION = 0.30
				war_support_weekly = -0.001
				stability_weekly = -0.001
				political_power_factor = 0.1
			}

			cost = 80
			
			cancel_if_invalid = yes

			ai_will_do = {
   				factor = 1.0
				modifier = {
				has_government = communism
				factor = 5
				}
				modifier = {
				has_government = neutrality
				factor = 3
				}
   			}
		}
		
	}
}