﻿

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: transparent;
	font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 100%;
    font-weight: 500;
}


table {

}

/* Multi table */
.multi-table table {
    box-shadow: none;
    margin-bottom:40px;
}

.multi-table thead {
    margin-top: 40px;
}

/* End Multi table */

thead #sortColumn {
    height: 40px;
}


table .head {
    background: #ba2031 url("../images/sort.gif") no-repeat scroll 7px center;
    cursor: pointer;
    padding-left: 18px;
}

table .selectbackground {
    background-color: #911023;
}

table .desc {
    background: #019DD8 url(../images/desc.gif) 7px center no-repeat;
    cursor: pointer;
    padding-left: 18px
}

table .asc {
    background: #019DD8 url(../images/asc.gif) 7px center no-repeat;
    cursor: pointer;
    padding-left: 18px
}

.nameSheet {
    font-size: 20px;
    background-color: #019DD8;
    color: #fff;
}

/****Table color hover mouse***/

table tr:hover {
    background-color: #d4e3e5;
}


/****Table color alternate***/

tr:nth-child(even) {
    background: #ECF2F6
}

tr:nth-child(odd) {
    background: #FFF
}

.nameColumn {
    font-size: 16px;
    padding: 5px;
    color: #fff;
    cursor: pointer;
    height: 45px;
    border: 1px solid #C6D5E1;
}

.title-table {
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    padding: 20px 0 20px 0;
    text-align: center;
    background-color: #0b9046;
}

.content_value i {
    margin: 3px 5px 0 3px;
    color: #333;
    float: left;
}

.content_value {
    border: 1px solid #C6D5E1;
    height: 50px;
	padding-left: 10px;
}

.content_divtxt {
    float: left;
    margin-left: 3px;
}

#drop {
    border: 2px dashed #bbb;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 25px;
    text-align: center;
    color: #bbb;
}

/*
    Css Maps
*/

#map-canvas {
    height: 100%;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

    #map-canvas img {
        max-width: none;
    }

@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

    .tinytable {
        margin-top: 50px;
    }
    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
        font-size: 13px;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        thead #sortColumn {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    tr {
        border: 1px solid #C6D5E1;
    }

    table td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 40%;
    }

    .content_value {
        padding-bottom: 25px;
        padding-top: 10px;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /*/left values mimic padding */
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }

    .title-table {
        font-size: 20px;
    }

    /*
	Label the data
	*/
    tbody td:nth-of-type(1):before {
        content: "Month";
    }

    tbody td:nth-of-type(2):before {
        content: "Topic";
    }

    tbody td:nth-of-type(3):before {
        content: "Topic";
    }

    tbody td:nth-of-type(4):before {
        content: "Start Date";
    }

    tbody td:nth-of-type(5):before {
        content: "Instructor";
    }

    tbody td:nth-of-type(6):before {
        content: "Cell";
    }

    tbody td:nth-of-type(7):before {
        content: "Country";
    }
}
