

/* 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 .Diary .DiaryList ul.FirstLevel { 
        border-top: 1px solid #cced4f;
        border-bottom: 1px solid #cced4f;
        background: #9ccb3b url('images/bg-navigator.jpg') no-repeat top center !important;
    }

    .ResponsiveDesign .Diary .DiaryCommentFormTable input,
    .ResponsiveDesign .Diary .DiaryCommentFormTable textarea,
    .ResponsiveDesign .Guestbook .GuestbookForm .GuestBookName input, 
    .ResponsiveDesign .Guestbook .GuestbookForm .GuestBookEmail input, 
    .ResponsiveDesign .Guestbook .GuestbookForm .GuestBookHomePage input,
    .ResponsiveDesign .Guestbook .GuestbookForm .GuestBookMessage textarea,
    .ResponsiveDesign .Contact .ContactForm .ContactFormName input,
    .ResponsiveDesign .Contact .ContactForm .ContactFormEmail input,
    .ResponsiveDesign .Contact .ContactForm .ContactFormField input,
    .ResponsiveDesign .Contact .ContactForm .ContactFormHomePage input, 
    .ResponsiveDesign .Contact .ContactForm .ContactFormMessage textarea {
        border: 1px solid #cced4f;
        background: #9ccb3b;
    }

}


