body {
	background-color:#EBEBEB;
	padding-bottom: 0;
}
.navbar-default {
  background-image: -webkit-linear-gradient(top, #fff 0%, #E0E0E0 100%);
  background-image:         linear-gradient(to bottom, #fff 0%, #E0E0E0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffE0E0E0', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-radius: 4px;
  -moz-box-shadow: 0 0 10px 5px #ccc;
	-webkit-box-shadow: 0 0 10px 5px #ccc;
	box-shadow: 0 0 10px 5px #ccc;
}
@media (min-width: 1200px)
{
	.container {
	width: 1270px;
	}
}
.container {
	background-color:#FFF;
	-moz-box-shadow: 0 0 10px 5px #ccc;
	-webkit-box-shadow: 0 0 10px 5px #ccc;
	box-shadow: 0 0 10px 5px #ccc;
	border:1px solid #ccc;
	margin:0 auto 15px auto;
}
#site-menu {
    width: 250px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -250px;
   background-color:#FFF;
	-moz-box-shadow: 0 0 10px 5px #ccc;
	-webkit-box-shadow: 0 0 10px 5px #ccc;
	box-shadow: 0 0 10px 5px #ccc;
    padding: 5px;
}
.ease { -webkit-transition: 300ms ease all; transition: 300ms ease all; }
#site-wrapper {
	position: relative;
    overflow: hidden;
    width: 100%;
}
#site-canvas {
    width: 100%;
    position: relative;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
}
#site-wrapper.show-nav #site-canvas {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
}
