    /* PHONE PORTRAIT */
    
    @media (max-width: 480px) and (orientation: portrait) {}
    /* PHONE LANDSCAPE */
    
    @media (max-width: 773px) and (min-width: 568px) and (orientation: landscape) {}
    /*TABLET PORTRAIT */
    
    @media (max-width: 768px) and (min-width: 481px) and (orientation: portrait) {}
    /*TABLET LANDSCAPE */
    
    @media (max-width: 1199px) and (min-width: 992px) and (orientation: landscape) {}
    /* PC */
    
    @media (min-width:1200px) {}
    
    .top-header {
        background-position: top center;
        background-repeat: no-repeat,repeat;
        background-size: 80% 100%;
        padding-bottom: 30px;
        text-align: center;
        color: #FFF;
    }
    
    .navbar-default {
        background-color: orange;
    }
    
    .sidebar {
        font-size: 12px;
        text-align: left;
    }
    
    .sidebar a {
        color: orange;
    }
    footer {
    	background-color: #e9e9e9;
    	color:#999999;
    	border:1px solid #dddddd;
    	padding: 20px;
    }