.container#bodyContainer {
        margin-left: 0%;
        margin-right: 0%;
        width: 100%;
        max-width: 100%;
    }

    @media 
        only screen and (max-width: 760px),
        (min-device-width: 768px) and (max-device-width: 1024px)  {

        /* Force table to not be like tables anymore */
        table, table.table-condensed, thead, tbody, th, td, td.ng-binding, tr { 
            display: block; 
        }
	
        /* Hide table headers (but not display: none;, for accessibility) */
        thead tr { 
            position: absolute;
            top: -9999px;
            left: -9999px;
        }
	
        tr { border: 1px solid #ccc; }
	
        td.ng-binding, td { 
            /* Behave  like a "row" */
            padding-left: 50%;
            border: none;
            border-bottom: 1px solid #eee;
            position: relative;
        }
	
        td.ng-binding:before, td:before { 
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 45%; 
            padding-right: 10px; 
            white-space: nowrap;
        }

        .table-condensed thead > tr > th.shiftedTableData, 
        .table-condensed tbody > tr > th.shiftedTableData, 
        .table-condensed tfoot > tr > th.shiftedTableData, 
        .table-condensed thead > tr > td.shiftedTableData, 
        .table-condensed tbody > tr > td.shiftedTableData, 
        .table-condensed tfoot > tr > td.shiftedTableData {
            padding-left: 50%;
            border: none;
            border-bottom: 1px solid #eee;
            position: relative;
        }
	
        /*
	        Label the data
	        */
        td.ng-binding:nth-of-type(1):before { content: ""; }
        td.ng-binding:nth-of-type(2):before { content: "Day/Time"; }
        td.ng-binding:nth-of-type(3):before { content: "Venue"; }
        td.ng-binding:nth-of-type(4):before { content: "Start date"; }
        td.ng-binding:nth-of-type(5):before { content: "End date"; }
        td.ng-binding:nth-of-type(6):before { content: ""; }
        td.nth-of-type(7):before { content: ""; }
    }