body {
    background: #FFFFFF;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    color: #000000;
}

fieldset {
    border-width: 1px;
    border-style: solid;
    margin-bottom: 1em;
}


.twoColHybLtHdr #container {
    min-width: 700px;
    background: #FFFFFF;
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    text-align: left; /* this overrides the text-align: center on the body element. */
}

.twoColHybLtHdr #header {
    padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}

    .twoColHybLtHdr #header h1 {
        margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
        padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    }

/* Tips for sidebar1:
                                                                                                                    1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
                                                                                                                    2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
                                                                                                                    3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
                                                                                                                    */
.twoColHybLtHdr #sidebar1 {
    float: left;
}


.twoColHybLtHdr #sidebar2 {
    float: right; /* this element must precede in the source order any element you would like it be positioned next to */
    width: 23%; /* since this element is floated, a width must be given */
    padding: 2px 2px 2px 2px;
    margin: 2px 2px 2px 2px; /* top and bottom padding create visual space within this div */
    min-width: 250px;
    min-height: 450px;
}
/* Tips for mainContent:
                                                                                                                    1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
                                                                                                                    2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
                                                                                                                    3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
                                                                                                                    */
.twoColHybLtHdr #mainContent {
    margin: 10px 10px 0 20px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
}

.withoutSidebar {
    width: 0px !important;
    min-width: 0px !important;
    padding: 0px;
}

.withSidebar {
    width: 20%;
    min-width: 250px;
    vertical-align: top;
    padding: 10px;
}

.twoColHybLtHdr #footer {
    padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    position: fixed;
    right: 0px;
    bottom: 0px;
}

    .twoColHybLtHdr #footer p {
        margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    }

#sidebarCloseButton1, #sidebarCloseButton2 {
    position: absolute;
    left: 0px;
    z-index: 510;
    height: 35px;
    top: 0;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    font-weight: bold;
}

    #sidebarCloseButton1 > span, #sidebarCloseButton2 > span {
        padding: 4px 4px !important;
    }

/*#ReportContainer {
    max-width: 95%;
}*/
/* Miscellaneous classes for reuse */
.fltrt {
    /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
}

.fltlft {
    /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
}

.clearfloat {
    /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}

/*CSS by Ankur*/

/*.twoColHybLtHdr #roundcr
                                                                                                                    {
                                                                                                                        padding: 5px 5px 5px 5px;
                                                                                                                        margin: 5px 5px 5px 5px;
                                                                                                                        background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
/*    -moz-border-radius: 20px;
                                                                                                                        -webkit-border-radius: 20px;
                                                                                                                        -khtml-border-radius: 20px;
                                                                                                                        border-radius: 20px;
                                                                                                                    }*/

.twoColHybLtHdr #logo {
    float: left;
}

.twoColHybLtHdr #topmenu {
    float: right;
    margin: 10px 0 0 5px;
}

.twoColHybLtHdr #selectdrop {
    float: right;
    margin: 45px 0px 0px 5px;
}

ul.leftmenu {
    list-style: none;
    float: left;
    margin-top: 5px;
    padding: 0 0 0 10px;
    width: 90%;
}

    ul.leftmenu li {
        margin: 0;
        padding: 0; /*list-style: none;*/ /* Temporary disabled as long name going in new line and was not able to differentiate menu item. */
        list-style: circle outside none;
        clear: both;
        float: left;
        min-height: 16px;
        width: 100%;
    }

        ul.leftmenu li a {
            /*float: left;*/
            text-decoration: none;
        }

#nav {
    margin: 0;
    padding: 0 0 20px 10px;
}

    #nav li {
        margin: 0;
        padding: 0;
        display: inline;
        list-style-type: none;
    }

    #nav a:link, #nav a:visited {
        /*font-size: 11px;*/
        line-height: 14px;
        font-weight: bold;
        padding: 0 12px 6px 12px;
        text-decoration: none;
        color: #708491;
    }

        #nav a:link.active, #nav a:visited.active, #nav a:hover {
            color: #000;
        }


.buttonstrip {
    clear: both;
    margin: 8px 0 0;
    padding-top: 15px;
}

.buttonstrip-addonly {
    margin: 8px 0 8px 10px;
}

.buttonstrip-search {
    float: right;
    margin: 8px 0 0;
    padding-right: 20px;
    margin-right: 20px;
    text-align: right;
    min-width: 90%;
}

.editor-label {
    clear: both;
    float: left;
    margin: 8px 0 0;
    min-width: 140px;
}

.editor-field {
    float: left;
    margin: 8px 0 0;
}

    .editor-field input[type="text"], .editor-field input[type="password"], .editor-field textarea {
        min-width: 150px;
    }

    .editor-field select {
        width: 153px;
    }

.search-field input[type="text"], .search-field input[type="password"], .search-field textarea {
    min-width: 100px;
}

.search-field select {
    width: 103px;
}

.editor-1 {
    float: left;
    width: 33%;
    clear: left;
}

.editor-2 {
    float: left;
    width: 33%;
}

.editor-3 {
    float: left;
    width: 33%;
    clear: right;
}

.editor-l {
    clear: left;
    float: left;
    min-width: 325px;
    width: 49%;
}

.editor-r {
    float: left;
    min-width: 325px;
    width: 49%;
}

.editor-f {
    float: left;
    width: 95%;
    clear: both;
}

.editor-f-margin-top-down {
    clear: both;
    float: left;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 3px;
    margin-top: 3px;
    width: 95%;
}

.display-label {
    clear: both;
    float: left;
    margin: 8px 0 0;
    min-width: 100px;
}

.display-field {
    float: left;
    margin: 8px 0 0;
}

.search-label {
    float: left;
    padding-right: 5px;
    padding-left: 8px;
    margin: 8px 0 0;
    min-width: 120px;
}

.search-field {
    float: left;
    padding-right: 10px;
    margin: 8px 0 0;
}

.editor-error {
    border: 0px !important;
    margin: 8px 0 0 8px;
}

.tableGrid {
    width: 100%;
    border: hidden;
}

.smallicon {
    display: inline-block;
    float: left;
    margin-left: 3px;
    margin-right: 3px;
}

.smallicon-r {
    display: inline-block;
    float: right;
    margin-top: 0px;
    margin-left: 3px;
    margin-right: 3px;
}

.smallicon-r-select {
    float: right;
    font-size: 8px !important;
}

/*.smallicon-select {
    font-size: 8px !important;
}*/

.smallicon-select {
    display: inline-block;
}
.smallicon-box {
    border: 1px solid;
    height: 20px;
    width: 19px;
    border-radius: 20% !important;
    box-shadow: 1px 1px lightgrey;
}
.page-navi {
}

td {
    padding-left: 10px;
}

th {
    text-align: center;
}

.postiveMessage {
    position: fixed;
    bottom: 0px;
    height: 30px;
    border-width: 1px;
    border-style: solid;
    width: 50%;
    left: 30%;
    text-align: center;
    background: white;
    color: Green;
    z-index: 9999;
}

.negativeMessage {
    position: fixed;
    bottom: 0px;
    height: 30px;
    border-width: 1px;
    border-style: solid;
    width: 50%;
    left: 30%;
    text-align: center;
    background: white;
    color: Red;
}

.ui-accordion .ui-accordion-header a {
    padding: 2px 0;
}

.ui-accordion-icons .ui-accordion-header a {
    padding-left: 2.2em;
}

input.ui-button, .ui-button-text-only .ui-button-text {
    padding: 2px 10px;
}
/*ul.leftmenu li a {font-weight:600;}*/
.ui-widget-header {
    -moz-border-radius-topleft: 4px;
    -webkit-border-top-left-radius: 4px;
    -khtml-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    -khtml-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
}

.gridtbody tr.ui-state-hover {
    font-weight: normal;
}

#ajaxContent fieldset legend {
    font-weight: bold;
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
    margin: 0px;
}

.MCampusAccordion .MCampusAccordion {
    width: 185px;
}

    .MCampusAccordion .MCampusAccordion h3 {
        background: none repeat scroll 0 0 transparent;
        border: medium none;
        margin: 0 0 0 -25px !important;
        width: 185px;
    }

    .MCampusAccordion .MCampusAccordion div.ui-accordion-content {
        background: none repeat scroll 0 0 transparent;
        border: medium none;
        margin: 0;
        padding: 0px 0px 0px 5px;
        width: 170px;
    }

    .MCampusAccordion .MCampusAccordion ul {
        padding-bottom: 10px;
    }

    .MCampusAccordion .MCampusAccordion li {
    }

.ui-menu {
    cursor: pointer;
}


.dashboard-icon {
    min-width: 118px !important;
    width: 118px !important;
    padding: 0px !important;
}
/*.dashboard-icon {
    float: left;
    padding: 10px 0 10px 10px;
    text-align: center;
    min-width: 120px;
}*/

.dashboard-icon-title {
    text-align: center !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

/*.dashboard-icon-title {
    text-align: center;
}*/

.dashboard-icon-anchor {
    text-align: center;
}

.dashboard-icon-image {
    border-radius: 4px !important;
    padding: 2mm !important;
}


/*.dashboard-icon-image {
    height: 90px;
    padding: 6px;
}*/


.ui-widget .ui-widget {
    /*font-size: 11px;*/
}

.ui-widget {
    /*font-size: 11px;*/
}

    .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
        padding: 0px;
    }

input, select, textarea {
    font-family: Arial, Helvetica, sans-serif;
    /*font-size: 11px;*/
    border: 1px solid darkgray;
}

.width80 {
    width: 80px;
    min-width: 80px !important;
}

.width50 {
    width: 50px;
    min-width: 50px !important;
}

.width30 {
    width: 30px;
    min-width: 30px !important;
}

.margin-2-0 {
    margin: 2px 0px;
}


.editor100 {
    float: left;
    width: 98%;
    clear: both;
}

.editor50-l {
    float: left;
    width: 50%;
    clear: left;
}

.editor50-r {
    float: right;
    width: 49%;
    clear: right;
}

.editor30-l {
    float: left;
    width: 33%;
    clear: left;
}

.editor30-m {
    float: left;
    width: 33%;
}

.editor30-r {
    float: left;
    width: 33%;
    clear: right;
}

.editor25-l {
    float: left;
    width: 25%;
    clear: left;
}

.editor25-m {
    float: left;
    width: 25%;
}

.editor25-r {
    float: left;
    width: 24%;
    clear: right;
}

.editor20-l {
    float: left;
    width: 20%;
    clear: left;
}

.editor20-m {
    float: left;
    width: 20%;
}

.editor20-r {
    float: left;
    width: 20%;
    clear: right;
}

.editor5-l {
    float: left;
    width: 5%;
    clear: left;
}

.editor90-r {
    float: left;
    width: 95%;
    clear: right;
}

.clearboth {
    clear: both;
}

/*******   tiny mce editor css customization  : start   *******/
.mce-menu-item {
    padding: 2px 20px !important;
    text-align: left !important;
}

/*.mce-btn button
{
    font-size: 11px !important;
}

.mce-container, .mce-container *, .mce-widget, .mce-widget *
{
    font-size: 11px !important;
}*/

.mce-menu-item-sep, .mce-menu-item-sep:hover {
    margin: 2px 1px !important;
}

.mce-ico {
    font-size: 12px !important;
    height: 12px !important;
    line-height: 12px !important;
    width: 12px !important;
}

.mce-btn button {
    font-size: 11px !important;
    line-height: 18px !important;
    padding: 2px 6px !important;
}

/*******   tiny mce editor css customization  : end     *******/
.eventDateHasEvent a {
    color: yellow !important;
}
/* .MCampusGrid { clear: left;}*/
.hasDatepicker > div {
    width: 97%;
}

.divWizard .ui-menu .ui-menu-item a {
    color: inherit;
}

.space {
    clear: both;
}

.align-right {
    text-align: right;
}



/******* mark mail as star and unstar -Mehul *******/
.stared {
    color: #00FF00;
}

.unstared {
    color: #FFFFFF;
}

.both-star {
    background-color: #212121;
    border: 1px solid #000000;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    height: 16px;
    line-height: 17px;
    text-align: center;
    width: 16px;
    border-radius: 4px;
    padding-bottom: 2px;
    padding-right: 2px;
}

/*Tooltip help*/

.McampusHelp {
    display: inline-block;
    position: relative;
}

    .McampusHelp:hover .McampusHelpPopUp {
        display: block;
    }

.McampusHelpPopUp {
    display: none;
    padding: 5px;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    position: absolute;
    z-index: 10;
}
.nobreak { white-space:nowrap; }
.break80ch { width:80ch;word-wrap: anywhere;overflow-wrap:break-word; }

.McampusHelpPopUp {
    background: #fff !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0, 0, 0, 0.22);
    border-radius: 5px !important;
    border-width: 1px !important;
    border-color: #c2c2c2 !important;
    padding: 10px;
    margin-left: -20px;
}

#quickSwitchNote .ui-button-text {
    padding: 2px 4px;
}



/* ---Style for div to look like fieldset and scrool bar woking in it. Use for very wide grid body------Mehul---------*/
/* Ex: <div class="fieldset><div class="legend"><span>Legend</span></div>Content of fieldset</div> */

.fieldset {
    border: 2px groove threedface;
    border-top: none;
    padding: 0.5em;
    margin: 1em 2px;
}

    .fieldset .legend {
        /*font: bold 11px Verdana,Arial,sans-serif;*/
        margin: -1em -0.5em 0;
    }

        .fieldset .legend > span {
            float: left;
        }

        .fieldset .legend:before {
            border-top: 2px groove threedface;
            content: ' ';
            float: left;
            margin: 0.5em 2px 0 -1px;
            width: 0.75em;
        }

        .fieldset .legend:after {
            border-top: 2px groove threedface;
            content: ' ';
            display: block;
            height: 1.5em;
            left: 2px;
            margin: 0 1px 0 0;
            overflow: hidden;
            position: relative;
            top: 0.5em;
        }


/* Report style general for both screen & printing */
.tblReportMain, .tblReportMain table {
    border-spacing: 0;
    border-collapse: collapse;
}


#TripTimeTableDiv li {
    height: 50px;
}

.jsUseGraphDiv {
    /*width: 270px;     min-height: 330px;*/
    float: left;
    margin-bottom: 5px;
    margin-right: 5px;
    min-height: 320px;
    padding-left: 10px;
    width: 240px;
}

.GraphContainer {
    height: 260px;
}



.VerticalText {
    display: inline-block;
    white-space: nowrap;
    transform: translate(0,100%) rotate(-90deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
    writing-mode: lr-tb;
}



    .VerticalText:after {
        content: "";
        float: left;
        margin-top: 100%;
    }




/* -----By:Mehul-----*/
#tags {
    border: 1px solid #CCCCCC;
    float: left;
    font-family: Arial;
    padding: 0;
}

    #tags span.tag {
        box-shadow: 0 0 41px 8px #CEE0F5 inset;
        color: #000000;
        cursor: pointer;
        display: block;
        float: left;
        margin: 0.5px;
        padding: 4px 21px 3px 5px;
    }

    #tags span.tag_old {
        cursor: pointer;
        display: block;
        float: left;
        color: #fff;
        background: #689;
        padding: 5px;
        padding-right: 25px;
        margin: 4px;
    }

    #tags span.tag:hover {
        opacity: 0.7;
    }

    #tags span.tag:after {
        border: 1px solid;
        content: "x";
        font-size: 9px;
        margin: 0 0 0 4px;
        padding: 0 3px;
        position: absolute;
    }

    #tags input {
        background: none repeat scroll 0 0 #EEEEEE;
        border: 0 none;
        margin: 1px;
        padding: 3px;
        width: auto;
    }

input.MCampusButton.ui-widget {
    padding: 2px 10px;
}
/* -------End By:Mehul -----------*/

.jsUseStudentMonthlyAttendance td {
    padding: 0px;
}

.error-color {
    color: Red;
}

.jsUseLightColor, .jsUseLightColor tr, .jsUseLightColor td, .jsUseLightColor th {
    border-color: lightgray;
}

@media screen {
    .printvisbile {
        display: none;
    }

    .printhidden {
    }
}


@media print {
    html {
        overflow-x: hidden;
        overflow-y: auto;
    }

    body {
        /*float: left !important;*/
        padding: 0px !important;
        margin: 0px !important;
        word-spacing: 1px !important;
        letter-spacing: 0.2px !important; /*height:2800px;*/
        /*For background printing in chrome*/
        -webkit-print-color-adjust: exact;
    }

    .printvisbile {
        width: 100%;
        clear: both;
        float: none;
        height: auto;
    }

    .printhidden {
        display: none;
        visibility: hidden !important;
        height: 0px !important;
        width: 0px !important;
        margin: 0px !important;
        padding: 0px !important;
        border: none;
        float: left !important;
    }

    table, tr, td {
        margin: 0px !important;
        padding: 0px !important;
    }

    #keyBoardContainer {
        display: none;
    }

    #sidebar1 {
        display: none;
    }

    .twoColHybLtHdr #mainContent {
        margin: 15px 10px 0 15px;
    }

    #selectdrop {
        display: none;
    }

    /*.page-break
    {
        display: block;
        clear: both;
        page-break-before: always;
    }*/
}

* {
    -moz-border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -khtml-border-radius: 0 !important;
    border-radius: 0 !important;
}

/*@media print{@page {size: landscape}}

 .page
    {
     -webkit-transform: rotate(-90deg); 
     -moz-transform:rotate(-90deg);
     filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    }*/

/*Added for loader start*/
.loadernew {
    position: fixed;
    width: 100%;
    height: 100%;
    /*background-color: rgba(255, 255, 255, .8);*/
    background-image: url(../Content/Static/siteimages/edusprint_enquiry_loader.gif);
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    top: 0;
    z-index: 10000;
}
/*Added for loader end*/

/* Making looks littel compact for grid */
.table .btn {
    padding: 3px 12px;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    padding: 5px 8px !important;
}

/* Disables text selection */
.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}


.ui-datepicker.ui-widget {
    z-index: 10000 !important; /* form-input group z-index set to 2*/
}



.sidebar-menu .ui-widget, .sidebar-menu .ui-accordion-content, .sidebar-menu .ui-accordion .ui-accordion-header {
    background: transparent !important;
    border: 0px !important;
}

.ui-accordion-content {
    padding: 5px !important;
}

/*********************** COMPACT THEME ***************************/
.theme-compact label {
    margin-bottom: 0px;
}

.theme-compact .form-control {
    height: 26px;
    padding: 0px 6px;
}

.theme-compact .input-group-addon {
    padding: 3px 6px;
}

.theme-compact .form-group {
    margin-bottom: 5px;
}

.theme-compact .btn {
    padding: 1px 6px;
}

.theme-compact .sidebar-menu .treeview-menu > li > a {
    padding: 2px 2px 2px 10px;
}

.theme-compact .nav > li > a {
    padding: 0px 8px 5px;
}

.theme-compact .box-header {
    padding: 5px 10px;
}

.theme-compact .box {
    margin-bottom: 5px;
}

.theme-compact .checkbox, .theme-compact .radio {
    margin-top: 0px;
    margin-bottom: 4px;
}

    .theme-compact .checkbox label, .theme-compact .radio label {
        padding-left: 5px;
    }

.theme-compact .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #eaeaea !important;
}

.theme-compact .table > tbody > tr > td, .theme-compact .table > tbody > tr > th, .theme-compact .table > tfoot > tr > td, .theme-compact .table > tfoot > tr > th, .theme-compact .table > thead > tr > td, .theme-compact .table > thead > tr > th {
    padding: 2px 5px !important;
}

.theme-compact .sidebar-menu > li > a {
    padding: 10px 5px 10px 10px;
}
.theme-compact .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: inherit;
}
/*.theme-compact .col-md-4 {width: 25%;}*/
/*****************************************************************/

img.zoompic {
    height: 20px;
    width: 20px;
    border-radius: 10px;
}

img.zoompic {
    z-index: 999;
    cursor: pointer;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
}

    img.zoompic:hover {
        transform: scale(5);
    }

.table-one-liner > thead > tr > th, .table-one-liner > tbody > tr > td,
.table-one-liner > tr > th, .table-one-liner > tr > td {
    white-space: nowrap;
}



/*Dashboard*/
.dashboard-icon-image {
    box-shadow: 0 1px 3px rgb(187, 187, 187), 0 1px 2px rgba(0, 0, 0, 0.50);
    width: 100px;
}

    .dashboard-icon-image:hover {
        box-shadow: 0 2px 5px rgb(187, 187, 187), 0 2px 3px rgba(0, 0, 0, 0.90);
    }

.dashboard-icon {
    float: left;
    padding: 10px 0 10px 0px;
    text-align: center;
    width: 120px;
    height: 140px;
    position: relative;
}

.dashboard-icon-title {
    text-align: center;
    position: absolute;
    top: 100px;
    vertical-align: top;
    width: 115px;
    text-shadow: 1px 0px #d4d4d4;
}

@media only screen and (max-width: 600px) {
    .dashboard-icon {
        width: 110px;
        min-width: 110px;
    }

    .dashboard-icon-title {
        width: 110px;
    }

    .content {
        padding-left: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 10px;
    }
}



.mcampusautocomplete ~ .McampusHelp
{
    position: absolute;
    right: 16px;
    top: 5px;
    cursor: pointer;
}
.mcampusautocomplete ~ .McampusHelp .McampusHelpPopUp 
{
    left: -150px;
}

.pointer{
    cursor:pointer;
}

.text-uppercase{
    text-transform: uppercase;
}

.text-lowercase{
    text-transform: lowercase;
}
/* Styled checkbox 
    <label class="checkbox-container">
        <input type="checkbox">
        <span class="checkbox-checkmark"></span>
    </label>
*/
.checkbox-container {
  position: relative;
  padding-left: 16px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-container .checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #ddd;
  box-shadow:1px 1px #aaa;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkbox-checkmark {
  background-color: #aaa;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox-checkmark {
  background-color: #2196F3;
}
.checkbox-container.checkbox-red input:checked ~ .checkbox-checkmark {
  background-color: #e0646f;
}
.checkbox-container.checkbox-yellow input:checked ~ .checkbox-checkmark {
  background-color: #f1d448;
}
.checkbox-container.checkbox-green input:checked ~ .checkbox-checkmark {
  background-color: #43b75c;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkbox-checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Styled radio button 
    <label class="radio-container">
        <input type="radio">
        <span class="radio-checkmark"></span>
    </label>

*/
/* Customize the label (the container) */
.radio-container {
  position: relative;
  padding-left: 16px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.radio-container .radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #ddd;
  border-radius: 50% !important;
  box-shadow:1px 1px #999;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .radio-checkmark {
  background-color: #aaa;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .radio-checkmark {
  background-color: #2196F3;
}
.radio-container.radio-red input:checked ~ .radio-checkmark {
  background-color: #e0646f;
}
.radio-container.radio-yellow input:checked ~ .radio-checkmark {
  background-color: #f1d448;
}
.radio-container.radio-green input:checked ~ .radio-checkmark {
  background-color: #43b75c;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-container .radio-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .radio-checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .radio-checkmark:after {
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}
.displaynone {display:none !important;}
.displayhidden{
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow:hidden !important;
    float:left !important;
    opacity:0 !important;
    z-index:-1 !important;
    margin-left:-9999px !important;
    display:inherit !important;
    visibility:inherit !important;
}

.fileupload-content{
    overflow: auto;
    max-height: 300px;
}

    .borderedtable > tr > td,.borderedtable > tr > th,
    .borderedtable > thead > tr > td,.borderedtable > thead > tr > th,
    .borderedtable > tfoot > tr > td,.borderedtable > tfoot > tr > th,
    .borderedtable > tbody > tr > td,.borderedtable > tbody > tr > th {
        border: 1px solid gray;
    }
    
    .paddedtable > tr > td,.paddedtable > tr > th,
    .paddedtable > thead > tr > td,.paddedtable > thead > tr > th,
    .paddedtable > tfoot > tr > td,.paddedtable > tfoot > tr > th,
    .paddedtable > tbody > tr > td,.paddedtable > tbody > tr > th {
        padding: 2px 5px;
    }
    .smallformcontrol .form-control {
        height:24px;
    }