@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Cantarell);
                
                
       #nav{
			  	font-family: serif;
            	position: fixed;
            	top: 0;
            	left: 0;
	            height: 100%;
	            width: 240px;
	            z-index: 999;
	            background-color: rgba(255,255,255,1);				
				box-shadow: 1px 0px 44px black;	            
            }
            
        #nav> h1{
        	width: 120px;
        	margin: 30px auto;
        	text-align: center;
        	border-bottom: 3px dotted red;
        }    
        
        
        #nav> img{
	        display: block;
	        width: 200px;
	        margin: 30px auto;
	        text-align: center;
        }
        
        
        ul{
	        width: 120px;
	        margin: 30px auto;
	        list-style: none;
	        color: #6d6d6d;
	        font-size: larger;
	        font-family: 'Cantarell', sans-serif;
        }
        
        li{
	        margin: 10px 0;       
        }
        
        a{
	        color: #aaaaaa;
	        text-decoration: none;
        }
        
        a:hover{
	        color: red;
        }
        
        
