/* Menu */
/* Standard stlye for all menus */
.Menu_Standard {
    position: fixed;
    height: 0px;
	width: 0px;
    transform-origin: left top 0;
    transition: all .5s ease-in-out 0s;
    overflow: hidden;
    border-radius: 15px;
}
/* Mneu that is invisible "esstentially turns all menus off" */
#Menu_Close {
    position: fixed;
    top: 0px;
    left: 0px;
	height:0px;
	width:0px;
	background-color:rgba(0,0,0,0);
	transition:all .5s ease-in-out 0s;
}
/* Menu information */
#Menu_01_A, #Menu_01_B, #Menu_01_C {
    top: 150px;
    left: 25px;
    transform: rotate(-15deg);
	background-color:rgba(0,145,206,0);
}
#Menu_02_A, #Menu_02_B, #Menu_02_C, #Menu_02_D, #Menu_02_E {
    top: 150px;
    left: 25px;
    transform: rotate(-15deg);
	background-color:rgba(145,0,206,0);
}
#Menu_03_A, #Menu_03_B {
    top: 150px;
    left: 25px;
    transform: rotate(-15deg);
	background-color:rgba(145,206,0,0);
}
#Menu_04_A, #Menu_04_B {
    top: 150px;
    left: 25px;
    transform: rotate(-15deg);
	background-color:rgba(206,145,0,0);
}
#Menu_05 {
    top: 150px;
    left: 25px;
    transform: rotate(-15deg);
	background-color:rgba(206,0,45,0);
}
/* Menu open information */
#Menu_01_A:target, #Menu_01_B:target, #Menu_01_C:target {
    height: 700px;
	width: 500px;
	background-color:rgba(0,145,206,0.2);	
}
#Menu_02_A:target, #Menu_02_B:target, #Menu_02_C:target, #Menu_02_D:target, #Menu_02_E:target {
    height: 700px;
	width: 500px;
	background-color:rgba(145,0,206,0.2);	
}
#Menu_03_A:target, #Menu_03_B:target {
    height: 700px;
	width: 500px;
	background-color:rgba(145,206,0,0.2);	
}
#Menu_04_A:target, #Menu_04_B:target {
    height: 700px;
	width: 500px;
	background-color:rgba(206,145,0,0.2);	
}
#Menu_05:target {
    height: 700px;
	width: 500px;
	background-color:rgba(206,0,45,0.2);	
}