

	
	/*margin-top: 20px;
	margin-right: 50px;
	margin-left: 50px;
	margin-bottom: 20px;
	border: 3px solid black;
	border-radius: 5px
	padding-left: 20px;
	padding-right: 20px;
	total width of page is 100%
	sidebar takes 15%, 85% remains
	now, content has to be after the 15% of sidebar
	so margin-left is 17%, 2% for some spacing
	i give same margin on right (2%)
	that leaveses 100-17-2 = 81% remaining.woo
	*/

body{
<<<<<<< HEAD
	background-color: #ffffff;
=======
	background-color: #ffffff;
>>>>>>> origin/master
    /*padding-left:200px;*/
    margin:0;
}
#sidebar {
   position: fixed;
   height:100%;
   width:15%; 
   top:0;
   left:0;
   background:#31a354; 
}
#content {
    background:#ffffff;
    width:81%;
    height:100%;
    margin-left: 17%;
    margin-right: 2%;
}

h3 {
	color: #dd1144;
	text-align: center;
	font-size: 24px;
}

p {
	color: #003c78;
	text-align: justify;
}

h1{
	color: #dd3c10; 
	text-align:center; 
	font-family: 'Satisfy', cursive;
	font-size: 40px;
}
ul {
	color: #003c78;
}
