/* 
    Document   : responsive
    Created on : Sep 15, 2014, 11:02:57 AM
    Author     : ahda
    Description:
        Purpose of the stylesheet follows.
*/

root { 
    display: block;
}

/* Large desktop */
@media (min-width: 1200px) { 

}

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { 

}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) { 

}

/* Landscape phones and down */
@media (max-width: 480px) { 
    .toLeft {
        padding-left: 15px;
    }

    .toRight {
        padding-right: 15px;
    }
}