

/* tablets and desktop
@media only screen and (min-width: 768px) {
}
*/

/* phones
@media only screen and (max-width: 768px) {
}
*/

/* portrait phones 
@media only screen and (max-width: 768px) and (orientation: portrait) {
    
}
*/

@media only screen and (max-width: 768px) 
{

    .ResponsiveDesign .MobileMenuContainer {
        background: url('images/bg-dark-75.png');
    }
    .ResponsiveDesign .MobileMenuContainer .show-menu { 
        color: white;
    }

    .ResponsiveDesign ul.DropMenu {
        background: url('images/bg-dark-75.png');
        border-bottom: 2px solid white;
    }
    .ResponsiveDesign ul.DropMenu a:hover,
    .ResponsiveDesign ul.DropMenu * {
        background: none;
    }

    .ResponsiveDesign .Diary .DiaryList ul.FirstLevel {
        color: white !important;
        background: transparent url('images/bg-dark-75.png');
        border-bottom: 2px solid white;
    }
    .ResponsiveDesign .Diary .DiaryList ul.FirstLevel li li,
    .ResponsiveDesign .Diary .DiaryList ul.FirstLevel li li li {
        background: none;
    }

}


