

/* Sliding panel stuff */
#feedback P{
    width : 760px;
    height : 500px;
    position : fixed; /* we fix the position in a window */
    /* we move a panel to the right downward: */
    top : 100%; 
    left : 100%;
    /* we pull out the top: */  
    margin-top : -25px;
    margin-left : -130px;
 
    border : 2px solid;
    border-radius: 10px;
     
    padding: 5px;
     
    /* we set the effect of motion: */
    -moz-transition:margin 0.3s linear; 
    -o-transition:margin 0.3s linear;   
    -webkit-transition:margin 0.3s linear;  
    -ms-transition:margin 0.3s linear;  
    transition:margin 0.3s linear;  
}
#feedback P:hover{    
    /* we pull out a panel that everyone could see it: */   
    margin-top : -500px;
    margin-left : -750px;
    /* we set the effect of motion: */  
    -moz-transition:margin 0.3s linear; 
    -o-transition:margin 0.3s linear;   
    -webkit-transition:margin 0.3s linear;  
    -ms-transition:margin 0.3s linear;  
    transition:margin 0.3s linear; 
	
}
 
/* We do the heading of the panel, as a corner of paper folder: */
#feedback Button{
    font-weight : bold;
    margin-left : 10px;
    margin-top : -6px;
    border : 1px solid #717277;
    border-radius : 0px 0px 10px 10px;
    text-align : center;
    width : 150px;
    margin-bottom : 5px;
    color : #FFFFFF;
    background : #717277;
	z-index:1000000;
}

