	    /*styling default parameters : background etc ... */
		body{
			//background-color:rgb(2,70,12); (very ugly with this)
		}
		
		/*navigation bar to construct the tab-style navigation*/
		.nav {
           overflow: visible;
           background-color:rgb(2,70,12);
		}

		.nav a {
		  color: rgb(241,95,36);
		  text-align: center;
		  padding: 14px 16px;
		  text-decoration: none;
		  font-size: 17px;
		}

		.nav a:hover {
		  background-color: #ddd;
		  color: black;
		}

		.nav a.active {
		  background-color:rgb(2,70,12);
		  color: white;
	    }
		
		/*Positionning the banner title*/
		h1.big_title{
			padding-left:40px;
			padding-top:25px;
			color: rgb(241,95,36);
			
		}
		
		/*defining all div to be 1200px and content justified*/
		div{
	      text-align:justify;
		  width:1200px;
		  
		}
		
		img{
		padding-left:25px;
		}
		
		/* size of the header */
		#header{
	      
			top:20px;
			margin-left:40px;
			width:1200px;
			height:100px;
			background-color:green;
			background-image:url("./img/header.jpg");
		}
		/*size of the navigation bar */
		#nav{
			margin-left:40px;
			background-color:rgb(2,70,12);
			height:40px;
		}
		
		#mapcontrol{
			position:absolute;
			top:120px;
			width:300px;
			height:800px;
			margin-left:40px;
			margin-top:60px;
		}
		  
		#description{
			margin-left: 40px;
			width:1200px;
		}
		
		/*map area, since this csss file will be used for all the pages,
		the map canvas for each page will be different*/
		#mapofdistribution{
			position:absolute;
			margin-left:40px;
			margin-top:700px;
			width:1200px;
			height:600px;
	    }

		#map{
			position:absolute;
			margin-top:75px;
			width:800px;
			height:800px;
		}
		#mapofthreats{
			position:absolute;
			margin-left:440px;
			margin-top:50px;
			width:800px;
			height:800px;			
		}
		#mapofactions{
			//position:absolute;
			margin-left:440px;
			//padding-top:50px;
			margin-top:50px;
			width:800px;
			height:800px;			
		}
		
		/*styling the command button*/
		.cmdButton{
			width:250px;
			height:25px;
			background-color:rgb(2,70,12);
			border: 2px solid #4CAF50;
			color:white;
			font-size:16px;
			cursor:pointer;
		}
