

/*-----------------------Side Navigation----------------------------*/
#nav_right{
	width:180px;
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #666;
	display: table-cell;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
	transition-delay: 0s;
	background-color: #000;
	padding-left: 30px;
	-webkit-overflow-scrolling: touch;
	box-shadow: 0px 0px 3px #000;
	padding-right: 30px;
	padding-bottom: 30px;
	background-image: url(p5.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
#nav_right li{
	margin: 0px;
	padding: 0px;
	display: block;
	
}
#nav_right li a{
	text-decoration: none;
	color: #F60;
	display: block;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	width: auto;
	text-align: left;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
	margin-right: 3px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	text-transform: capitalize;
	}
#nav_right li a:hover{
	background-color: #333;
	color: #FFF;
	}

#nav_right #close{
	visibility: hidden;
	margin-left: 40px;
	vertical-align: middle;
}

@media only screen and (max-width: 800px) {
#nav_right{
	display:none;
	
	}

}
	
