/*! Pushy - v0.9.1 - 2013-9-16
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */

/* Menu Appearance */

.pushy{
    position: fixed;
    width: 262px;
    height: 100%;
    top: 0;
	/*Added*/
	right: 0;
	/*EOF Added*/
    z-index: 9999;
    background: #f3f3f3;
    font-size: 0.9em;
    /* font-weight: bold; */
    -webkit-box-shadow: inset 10px 0 6px -9px rgba(0, 0, 0, .7);
    -moz-box-shadow: inset 10px 0 6px -9px rgba(0, 0, 0, .7);
    box-shadow: inset 10px 0 6px -9px rgba(0, 0, 0, .7);
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

.pushy ul {
	margin-top: 20px;
}

.pushy ul li{
	background: url('../img/pushbullet.png') 0% 50% no-repeat;
	margin-left: 15px;
	/* list-style-image:url('../img/pushbullet.png'); */
}

.pushy ul li.active a {
	font-family: 'raleway_bold';
	color: #e35050;
}

.pushy ul li:hover {
	background: url('../img/pushbullet1.png') 0% 50% no-repeat;
}

.pushy a{
    display: block;
    color: #565656;
    padding: 15px 30px;
    text-decoration: none;
	font-family: 'raleway_regular';
	font-size: 1.5em;
}

.pushy a:hover{
    color: #e35050;
}

/* Menu Movement */

.pushy-left{
    -webkit-transform: translate3d(262px,0,0);
    -moz-transform: translate3d(262px,0,0);
    -ms-transform: translate3d(262px,0,0);
    -o-transform: translate3d(262px,0,0);
    transform: translate3d(262px,0,0);
	/*  -webkit-transform: translate3d(-200px,0,0);
    -moz-transform: translate3d(-200px,0,0);
    -ms-transform: translate3d(-200px,0,0);
    -o-transform: translate3d(-200px,0,0);
    transform: translate3d(-200px,0,0); */
}

.pushy-open{
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.container-push, .push-push{
    -webkit-transform: translate3d(-262px,0,0);
    -moz-transform: translate3d(-262px,0,0);
    -ms-transform: translate3d(-262px,0,0);
    -o-transform: translate3d(-262px,0,0);
    transform: translate3d(-262px,0,0);
}

/* Menu Transitions */

.pushy, #container, .push{
    -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
    -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
    -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
    transition: transform .2s cubic-bezier(.16, .68, .43, .99);
    /* improves performance issues on mobile*/
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}

/* Site Overlay */

.site-overlay{
    display: none;
}

.pushy-active .site-overlay{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    /* right: 0; */
    bottom: 0;
    right: 200px;
    /* left: 200px; */
    z-index: 9999;
}

/* Image */
.menuimg {
	/* position: absolute; */
	bottom: 0;
	display: block;
}

.menuimg ul {
	list-style: none !important;
	text-align:center;
}

.menuimg ul li {
	display: inline-block;
	background: none;
	margin: 0;
}

.menuimg ul li:hover {
	background: none;
}

.menuimg img {
	max-width: 100%;
}

/* Example Media Query */

@media screen and (max-width: 768px){
    .pushy{
        font-size: 1.0em;
    }
}