
#menu {
    box-shadow: 5px 5px 20px #000000;
    position: absolute;
    width: 0px;
    overflow: hidden;
    top: 0px;
    left: -7px;
    color: #3a3c41;
	background-color:#fff;
	z-index:1000;
}

#menu-content {
    position: relative;
}

#blurred-bg-canvas {
    position: absolute;
}

#captured-image {
    display: none;
}

/*
a nice list inside the blurred menu container
*/



/*
just for the menu Button trigger
the hamburger button with a little gradient effekt
*/
#hamburger {
    border-radius: 3px 3px 3px 3px;
    cursor: pointer;
    display: block;
    height: 50px;
    padding:13px;
    width: 50px;
	color:#fff;
	vertical-align:middle;
	float:left;
}

#hamburger .fa{
	font-size:27px;
}
/*
The white stripes in the hamburger button
*/
#hamburger div {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 2px 2px 2px 2px;
    height: 2px;
    margin-top: 3px;
    width: 90%;
}
/*
The demo content
*/
#content {
    width: 800px;
}
#content img {
    float: left;
    padding: 10px 15px 10px 0
}
p {
    clear:both;
}