/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 05/07/2015, 00:25:53
    Author     : Deivith
*/

.mob-nav-move-next, .mob-nav-move-prev{
    
    width: 36px;
    height: 36px;    
    top: 250px;
    position:relative;
    display: none;
    cursor:pointer;
}
.mob-nav-move-prev{
    background: url(nav_left.png);
    float:left;
    left: -30px;
}
.mob-nav-move-next{
    background: url(nav_right.png);
    float:right;
    left: 30px;
}
@media screen and (max-width:900px){
    .mob-nav-move-next, .mob-nav-move-prev{
        display:block;
    }
}