/*-----------------
	accordion
------------------*/

.heading-primary {
    font-size: 2em;
    padding: 2em;
    text-align: center;
}

.accordion #collapse1.hide {
    display: inline-block;
}

.accordion dl,
.accordion-list {
    border: 1px solid #ddd;
}

.accordion dl:after,
.accordion-list:after {
    content: "";
    display: block;
    height: 0.3em;
    width: 100%;
    background-color: #002953;
}

.accordian_ddContainer {
    padding: 2em;
    background-color: #ffffff;
}

.accordion__panel {
    background-color: #ffffff;
    font-size: 1em;
    line-height: 1.5em;
}

.accordian_ddContainer h3 {
    /*padding-left: 1em;*/
}

.accordian_ddContainer p {
    /*padding: 1em 2em 1em 2em;*/
    padding-left: 0.8em;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.accordion {
    position: relative;
    background-color: #eee;
    margin-bottom: 40px;
}

.container {
    /*
    max-width: 960px;
    margin: 0 auto;
    padding: 2em 0 2em 0;
    */
}

.accordionTitle,
.accordion__Heading {
    background-color: #f2f2f2;
    text-align: left;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.6em;
    padding: 1em;
    display: block;
    text-decoration: none;
    color: #002953;
    -webkit-transition: background-color 0.1s ease-in-out;
    transition: background-color 0.1s ease-in-out;
    border-bottom: 1px solid #002953;
}

.accordionTitle:before,
.accordion__Heading:before {
    content: "+";
    font-size: 1.5em;
    line-height: 1em;
    float: left;
    margin-right: 0.5em;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
}

.accordionTitle:hover,
.accordion__Heading:hover {
    background-color: #4789a1;
    color: #ffffff;
}

.accordionTitleActive,
.accordionTitle.is-expanded {
    background-color: #003768;
    color: #ffffff;
}

.accordionTitleActive:before,
.accordionTitle.is-expanded:before {
    -webkit-transform: rotate(-225deg);
    -ms-transform: rotate(-225deg);
    transform: rotate(-225deg);
}

.accordionItem {
    height: auto;
    overflow: hidden;
    /*max-height: 50em;*/
    -webkit-transition: max-height 0.8s;
    transition: max-height 0.8s;
}

@media screen and (min-width: 48em) {
    .accordionItem {
        /*max-height: 15em;*/
        -webkit-transition: max-height 0.4s;
        transition: max-height 0.4s;
    }
}

.accordionItem.is-collapsed {
    max-height: 0;
}

.no-js .accordionItem.is-collapsed {
    max-height: auto;
}

.animateIn {
    -webkit-animation: accordionIn 0.65s normal ease-in-out both 1;
    animation: accordionIn 0.65s normal ease-in-out both 1;
}

.animateOut {
    -webkit-animation: accordionOut 0.75s alternate ease-in-out both 1;
    animation: accordionOut 0.75s alternate ease-in-out both 1;
}

@-webkit-keyframes accordionIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes accordionIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes accordionOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
    }
}

@keyframes accordionOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
    }
}


.meetYourProfessor .name {
    width: 18%
}

.meetYourProfessor .headshot {
    width: 18%
}

.meetYourProfessor .video {
    width: 20%
}

.meetYourProfessor .phone {
    width: 14%
}

.meetYourProfessor .email {
    width: 20%
}

.meetYourProfessor .office {
    width: 10%
}

/*
.responsiveTable table,
.responsiveTable thead,
.responsiveTable tbody,
.responsiveTable th,
.responsiveTable td,
.responsiveTable tr {
    display: block
}

.responsiveTable thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px
}

.responsiveTable tr {
    border: 1px solid #ccc
}

.responsiveTable td {
    border: none;
    border-bottom: 1px solid #ddd;
    position: relative;
    padding-left: 15%
}

.responsiveTable tbody:last-child {
    border-bottom: 1px solid #ddd
}

.responsiveTable td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 13%;
    padding-right: 10px;
    white-space: nowrap
}

.responsiveTable td:last-child {
    border: none
}

.responsiveTable tr:nth-of-type(even) {
    background: #fff;
    border-bottom: none
}

.responsiveTable tr:nth-of-type(odd) {
    border-bottom: none;
    background: #eee
}

.responsiveTable tr:nth-of-type(even):hover {
    background-color: #eeeeee
}

.responsiveTable tr:nth-of-type(odd):hover {
    background-color: #ffffff
}
*/


/*
.alert {
    padding: 20px 0 25px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert .close {
    font-size: 30px;
    float: right;
    font-weight: 700;
    line-height: 22px;
    opacity: 0.6;
    margin-left: 20px;
}

.alert a.close {
    text-decoration: none;
}

.alert span {
    font-style: italic;
}

.alert h1 {
    padding-top: 0;
    margin-top: 5px;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 30px;
}

.alert p {
    margin-bottom: 5px;
    font-size: 16px;
}

.alert time {
    font-style: italic;
}

.alert-danger {
    background-color: #c71014;
    border-color: #f5cccd;
    color: #ffffff;
}

.alert a.close {
    color: #f5cccd;
}

.alert-danger span {
    color: #f5cccd;
}

.alert-danger h1 {
    color: #ffffff;
}

.alert-danger p {
    color: #ffffff;
}

.alert-danger p a {
    color: #ffffff;
}

.alert-danger p a:hover {
    color: #f5cccd;
}

.alert-danger time {
    color: #f5cccd;
}

.alert-warning {
    background-color: #FCF8E3;
    border-color: #FAEBCC;
    color: #8a6d3b;
}

.alert-warning a.close {
    color: #b8a47e;
}

.alert-warning span {
    color: #b8a47e;
}

.alert-warning h1 {
    color: #8a6d3b;
}

.alert-warning p {
    color: #8a6d3b;
}

.alert-warning p a {
    color: #8a6d3b;
}

.alert-warning p a:hover {
    color: #b8a47e;
}

.alert-warning time {
    color: #b8a47e;
}

.alert-success {
    background-color: #DFF0D8;
    border-color: #D6E9C6;
    color: #3C763D;
}

.alert-success a.close {
    color: #3C763D;
}

.alert-success span {
    color: #7da67a;
}

.alert-success h1 {
    color: #3C763D;
}

.alert-success p {
    color: #3C763D;
}

.alert-success p a {
    color: #3C763D;
}

.alert-success p a:hover {
    color: #7da67a;
}

.alert-success time {
    color: #7da67a;
}
*/



.actionButton {
    float: left;
    background: #fff;
    color: #003768;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
    letter-spacing: -1px;
    line-height: 21px;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    border: 2px solid #003768;
    padding: 6px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.actionButton:hover {
    color: #b30838;
    border: 2px solid #b30838;
    cursor: pointer;
    text-decoration: none
}

.actionButton_small {
    float: left;
    color: #003768;
    font-weight: 700;
    text-align: center;
    font-size: 15px;
    line-height: 14px;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    border: 2px solid #003768;
    padding: 7px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.actionButton_small:hover {
    color: #b30838;
    border: 2px solid #b30838;
    cursor: pointer;
    text-decoration: none
}

#azIndexMenu {
    width: 100%
}

#azIndexMenu ul li {
    list-style-type: none;
    display: inline;
    font-size: 11px;
    font-weight: 700;
    margin-left: 0 !important
}

#azIndexMenu ul li a {
    display: block;
    float: left;
    width: 16px;
    padding: 0;
    text-align: center;
    color: #003768
}

#azIndexMenu ul li a:hover {
    background-color: #dce8f2
}

.altRows {
    margin-bottom: 35px;
    width: 100%
}

.altRows td {
    padding: 10px 5px 10px 7px
}

.altRows tr:nth-child(odd) {
    background-color: #e6eef5
}

.altRows th {
    background-color: #ccc;
    text-align: left
}

.greyBars {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px
}

.greyBars td,
.greyBars th {
    padding: 8px 7px 7px
}

.greyBars th {
    text-align: left;
    padding-top: 5px;
    padding-bottom: 4px;
    background-color: #d1d1d1
}

.greyBars tr:nth-child(odd) {
    background-color: #e9e9e9
}

.greyBars tr.alt td {
    color: #000;
    background-color: #e9e9e9
}

.greyBars tr.alt p {
    background-color: #e9e9e9
}



.left {
    float: left !important;
    margin: 0 12px 12px 0
}

.leftImages {
    float: left !important;
    margin: 0 20px 12px 0;
    padding: 5px;
    border: 1px solid #A8A8A8;
    background-color: #FFF;
    width: 100px;
    height: auto
}

.right {
    float: right !important;
    margin: 0 0 12px 12px !important
}



/*-----------------
	grid systems
------------------*/

/*
.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12,
.grid_13,
.grid_14,
.grid_15,
.grid_16 {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    border: solid 1px aqua;
}

.grid_1 {
    width: 20px;
    max-width: calc(75px);
    width: calc(6.25% - 20px);


}

.grid_2 {
    width: 80px;
    max-width: calc(150px);
    width: calc(12.5% - 20px);


}

.grid_3 {
    width: 140px;
    width: calc(225px);
    width: calc(18.75% - 20px);


}

.grid_4 {
    width: 200px;
    width: calc(300px);
    width: calc(25% - 20px);


}

.grid_5 {
    width: 260px;
    width: calc(375px);
    width: calc(31.25% - 20px);


}

.grid_6 {
    width: 320px;
    width: calc(450px);
    width: calc(37.5% - 20px);


}

.grid_7 {
    width: 380px;
    width: calc(525px);
    width: calc(43.75% - 20px);


}

.grid_8 {
    width: 440px;
    width: calc(600px);
    width: calc(50% - 20px);


}

.grid_9 {
    width: 500px;
    width: calc(675px);
    width: calc(56.25% - 20px);


}

.grid_10 {
    width: 560px;
    width: calc(750px);
    width: calc(62.5% - 20px - 20px);


}

.grid_11 {
    width: 620px;
    width: calc(825px);
    width: calc(68.75% - 20px);


}

.grid_12 {
    width: 680px;
    width: calc(900px);
    width: calc(75% - 20px);


    margin-top: 10px;
}

.grid_13 {
    width: 740px;
    width: calc(975px);
    width: calc(81.25% - 20px);


}

.grid_14 {
    width: 800px;
    width: calc(1050px);
    width: calc(87.5% - 20px);


}

.grid_15 {
    width: 860px;
    width: calc(1125px);
    width: calc(93.75% - 20px);


}

.grid_16 {
    width: 920px;
    width: calc(1200px);
    width: calc(100% - 20px);


}

.grid_16 .grid_12 .grid_6 .grid_2 {
    margin-right: 10px
}

.grid_16 .grid_12 .grid_6 .grid_4 {
    margin-left: 10px;
    width: 220px;
}

.grid_16 .grid_12 .grid_8 .grid_2 {
    margin-right: 10px;
}

.grid_16 .grid_12 .grid_8 .grid_3 {
    margin-right: 10px;
}

.grid_16 .grid_12 .grid_8 .grid_5 {
    margin-left: 10px;
    width: 280px;
}

.grid_16 .grid_12 .grid_8 .grid_6 {
    margin-left: 10px;
    width: 340px;
}

.grid_16 .grid_6 .grid_2 {
    margin-right: 10px;
}

.grid_16 .grid_6 .grid_4 {
    margin-left: 10px;
    width: 220px;
}

.grid_16 .grid_12 .grid_8 .grid_4 .grid_3 {
    margin-left: 15px;
    margin-right: 10px;
    width: 145px;
}

.grid_16 .grid_12 .grid_8 .grid_4 .grid_1 {
    margin-left: 0;
    margin-right: 0;
    width: 40px;
}
*/
.alpha {
    margin-left: 0 !important;
}

.omega {
    margin-right: 0 !important;
}

.alpha:after,
.omega:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

div[class*="grid_"] {}

/*-----------------
	side menu items
------------------*/
#stickyBox {
    width: 100%;
    margin: 0;
}


/*-----------------
	programs key
------------------*/
.program-location-item span {
    margin-top: -3px !important;
}


/*-----------------
	helpers
------------------*/

/* headings */
.standard-content-wide .content-well h2 {
    width: 100%;
}



/* images */
img.left {
    margin-right: 30px;
    margin-bottom: 30px;
}

img.right {
    margin-left: 30px;
    margin-bottom: 30px;
}

.standard-content-wide .content-well img.p5 {
    height: auto;
    width: 100%;
}

.content-well h2 > img {
    height: auto;
    width: 100%;
}

.content-well td img,
.content-well-sidebar td img {
    /* max-width: 120px !important; */
    height: auto !important;
}

.content-well td[width="150"] img {
    width: 120px !important;
    height: auto !important;
}
.content-well td[width="120"] img {
    width: 100px !important;
    height: auto !important;
}

.content-well td img.portrait {
    width: 100px !important;
    height: auto !important;
    margin-bottom: 15px;
    margin-top: 5px;
}

/* clearfix */
.content-well-sidebar .clearfix {
    display: none;
}

/* embedded content */
.embed-container {
    visibility: hidde display: block;
    content: "";
    clear: both;
    height: 0;
}

.embed-container:before {
    padding-top: 56.25%;
}

.embed-container:before {
    display: block;
    content: "";
}

.embed-container iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ----------------------------------------------------------------
    Tables
-----------------------------------------------------------------*/
td[width="20%"] {
    width: 40px;
}

td img[alt*="Step"]{
    margin-bottom: 0;
}


.programPlanTable {
    border: solid 1px #ccc;
    margin-bottom: 30px;

}

.programPlanTable th,
.programPlanTable td {
    padding: 1em;
    box-sizing: border-box;
}

.programPlanTable th {
    background: rgba(0, 55, 104, .8);
    color: white;
    border-right: solid 1px #ccc;
}

.programPlanTable th:nth-of-type(1) {
    width: 80%;
}

.programPlanTable th:nth-of-type(2) {
    width: 20%;
}

.programPlanTable td:nth-of-type(1) {
    width: 20%;
}

.programPlanTable td:nth-of-type(2) {
    width: 80%;
}

.programPlanTable tr:nth-child(even) td {
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    background: #eeeeee;
}



/* ----------------------------------------------------------------
    Support old programs of study pages
-----------------------------------------------------------------*/
.grid_12.alpha .nav li {
    /* padding: 12px; */
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.grid_12.alpha .nav li a {
    padding: 12px;
    display: block;
}

.grid_12.alpha .nav li.active {
    background: white;
}

.grid_12.alpha .tab-pane.active {
    opacity: 1;
}

/* ----------------------------------------------------------------
    Support old button
-----------------------------------------------------------------*/
.btn-default {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40;
    margin-right: 30px;
}


.btn-default:hover {
    text-decoration: none;
    color: #0056b3;
}

/* ----------------------------------------------------------------
    Old Grid
-----------------------------------------------------------------*/


.keywords {
    font-size: .85em;
    font-weight: 700;
}

.grid_4 {
    max-width: 72%;
}

.grid_6 {
    max-width: 48%;
}

.alpha,
.omega {
    margin-top: 5px;
    margin-bottom: 10px;
}

.alpha h3:first-child,
.omega h3:first-child {
    margin-top: 0;
    padding-top: 0;
}

@media only screen and (max-width: 995px) {
    .grid_4 {
        max-width: 96%;
    }

    .grid_6 {
        max-width: 96%;
    }
}


.container_16 {
    position: relative;
    width: 960px;
    margin: 0 auto;
    padding: 0
}

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12,
.grid_13,
.grid_14,
.grid_15,
.grid_16 {
    float: left;
    display: inline;
    margin-left: 10px;
    margin-right: 10px
}

.container_16 .alpha {
    margin-left: 0 !important
}

.container_16 .omega {
    margin-right: 0 !important
}

.container_16 .grid_1 {
    width: 20px
}

.container_16 .grid_2 {
    width: 80px;
}

.container_16 .grid_3 {
    width: 140px
}

.container_16 .grid_4 {
    width: 200px
}

.container_16 .grid_5 {
    width: 260px
}

.container_16 .grid_6 {
    width: 320px
}

.container_16 .grid_7 {
    width: 380px
}

.container_16 .grid_8 {
    width: 440px
}

.container_16 .grid_9 {
    width: 500px
}

.container_16 .grid_10 {
    width: 560px
}

.container_16 .grid_11 {
    width: 620px
}

.container_16 .grid_12 {
    width: 680px;
    margin-top: 10px
}

.container_16 .grid_13 {
    width: 740px
}

.container_16 .grid_14 {
    width: 800px
}

.container_16 .grid_15 {
    width: 860px
}

.container_16 .grid_16 {
    width: 920px
}

.container_16 .grid_16 .grid_12 .grid_6 .grid_2 {
    margin-right: 10px
}

.container_16 .grid_16 .grid_12 .grid_6 .grid_4 {
    margin-left: 10px;
    width: 220px
}

.container_16 .grid_16 .grid_12 .grid_8 .grid_2 {
    margin-right: 10px
}

.container_16 .grid_16 .grid_12 .grid_8 .grid_3 {
    margin-right: 10px
}

.container_16 .grid_16 .grid_12 .grid_8 .grid_5 {
    margin-left: 10px;
    width: 280px
}

.container_16 .grid_16 .grid_12 .grid_8 .grid_6 {
    margin-left: 10px;
    width: 340px
}

.container_16 .grid_16 .grid_6 .grid_2 {
    margin-right: 10px
}

.container_16 .grid_16 .grid_6 .grid_4 {
    margin-left: 10px;
    width: 220px
}

.container_16 .grid_16 .grid_12 .grid_8 .grid_4 .grid_3 {
    margin-left: 15px;
    margin-right: 10px;
    width: 145px
}

.container_16 .grid_16 .grid_12 .grid_8 .grid_4 .grid_1 {
    margin-left: 0;
    margin-right: 0;
    width: 40px
}

.container_16 .prefix_1 {
    padding-left: 60px
}

.container_16 .prefix_2 {
    padding-left: 120px
}

.container_16 .prefix_3 {
    padding-left: 180px
}

.container_16 .prefix_4 {
    padding-left: 240px
}

.container_16 .prefix_5 {
    padding-left: 300px
}

.container_16 .prefix_6 {
    padding-left: 360px
}

.container_16 .prefix_7 {
    padding-left: 420px
}

.container_16 .prefix_8 {
    padding-left: 480px
}

.container_16 .prefix_9 {
    padding-left: 540px
}

.container_16 .prefix_10 {
    padding-left: 600px
}

.container_16 .prefix_11 {
    padding-left: 660px
}

.container_16 .prefix_12 {
    padding-left: 720px
}

.container_16 .prefix_13 {
    padding-left: 780px
}

.container_16 .prefix_14 {
    padding-left: 840px
}

.container_16 .prefix_15 {
    padding-left: 900px
}

.container_16 .suffix_1 {
    padding-right: 60px
}

.container_16 .suffix_2 {
    padding-right: 120px
}

.container_16 .suffix_3 {
    padding-right: 180px
}

.container_16 .suffix_4 {
    padding-right: 240px
}

.container_16 .suffix_5 {
    padding-right: 300px
}

.container_16 .suffix_6 {
    padding-right: 360px
}

.container_16 .suffix_7 {
    padding-right: 420px
}

.container_16 .suffix_8 {
    padding-right: 480px
}

.container_16 .suffix_9 {
    padding-right: 540px
}

.container_16 .suffix_10 {
    padding-right: 600px
}

.container_16 .suffix_11 {
    padding-right: 660px
}

.container_16 .suffix_12 {
    padding-right: 720px
}

.container_16 .suffix_13 {
    padding-right: 780px
}

.container_16 .suffix_14 {
    padding-right: 840px
}

.container_16 .suffix_15 {
    padding-right: 900px
}


@media only screen and (max-width: 995px) {
    .shadow-top {
        -webkit-box-shadow: 0 0 10px #737373;
        -moz-box-shadow: 0 0 10px #737373;
        box-shadow: 0 0 10px #737373;
        margin-top: 10px
    }

    .shadow-bottom {
        -webkit-box-shadow: 0 0 10px #737373;
        -moz-box-shadow: 0 0 10px #737373;
        box-shadow: 0 0 10px #737373;
        margin-bottom: 10px
    }

    .container_16 {
        width: 768px
    }

    .grid_1,
    .grid_2,
    .grid_3,
    .grid_4,
    .grid_5,
    .grid_6,
    .grid_7,
    .grid_8,
    .grid_9,
    .grid_10,
    .grid_11,
    .grid_12,
    .grid_13,
    .grid_14,
    .grid_15,
    .grid_16 {
        margin-left: 16px;
        margin-right: 16px
    }

    .container_16 .grid_1 {
        width: 16px
    }

    .container_16 .grid_2 {
        width: 64px
    }

    .container_16 .grid_3 {
        width: 112px
    }

    .container_16 .grid_4 {
        width: 160px
    }

    .container_16 .grid_5 {
        width: 208px
    }

    .container_16 .grid_6 {
        width: 256px
    }

    .container_16 .grid_7 {
        width: 304px
    }

    .container_16 .grid_8 {
        width: 352px
    }

    .container_16 .grid_9 {
        width: 400px
    }

    .container_16 .grid_10 {
        width: 448px
    }

    .container_16 .grid_11 {
        width: 496px
    }

    .container_16 .grid_12 {
        width: 544px
    }

    .container_16 .grid_13 {
        width: 592px
    }

    .container_16 .grid_14 {
        width: 640px
    }

    .container_16 .grid_15 {
        width: 688px
    }

    .container_16 .grid_16 {
        width: 736px
    }

    .container_16 .grid_16 .grid_12 .grid_6 .grid_2 {
        margin-right: 8px
    }

    .container_16 .grid_16 .grid_12 .grid_6 .grid_4 {
        margin-left: 8px;
        width: 176px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_2 {
        margin-right: 8px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_3 {
        margin-right: 8px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_5 {
        margin-left: 8px;
        width: 224px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_6 {
        margin-left: 8px;
        width: 272px
    }

    .container_16 .grid_16 .grid_6 .grid_2 {
        margin-right: 8px
    }

    .container_16 .grid_16 .grid_6 .grid_4 {
        margin-left: 8px;
        width: 176px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_4 .grid_3 {
        margin-left: 10px;
        margin-right: 10px;
        width: 120px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_4 .grid_1 {
        margin-left: 0;
        margin-right: 0;
        width: 30px
    }

    .container_16 .prefix_1 {
        padding-left: 48px
    }

    .container_16 .prefix_2 {
        padding-left: 96px
    }

    .container_16 .prefix_3 {
        padding-left: 144px
    }

    .container_16 .prefix_4 {
        padding-left: 192px
    }

    .container_16 .prefix_5 {
        padding-left: 240px
    }

    .container_16 .prefix_6 {
        padding-left: 288px
    }

    .container_16 .prefix_7 {
        padding-left: 336px
    }

    .container_16 .prefix_8 {
        padding-left: 384px
    }

    .container_16 .prefix_9 {
        padding-left: 432px
    }

    .container_16 .prefix_10 {
        padding-left: 480px
    }

    .container_16 .prefix_11 {
        padding-left: 528px
    }

    .container_16 .prefix_12 {
        padding-left: 576px
    }

    .container_16 .prefix_13 {
        padding-left: 624px
    }

    .container_16 .prefix_14 {
        padding-left: 672px
    }

    .container_16 .prefix_15 {
        padding-left: 720px
    }

    .container_16 .suffix_1 {
        padding-right: 48px
    }

    .container_16 .suffix_2 {
        padding-right: 96px
    }

    .container_16 .suffix_3 {
        padding-right: 144px
    }

    .container_16 .suffix_4 {
        padding-right: 192px
    }

    .container_16 .suffix_5 {
        padding-right: 240px
    }

    .container_16 .suffix_6 {
        padding-right: 288px
    }

    .container_16 .suffix_7 {
        padding-right: 336px
    }

    .container_16 .suffix_8 {
        padding-right: 384px
    }

    .container_16 .suffix_9 {
        padding-right: 432px
    }

    .container_16 .suffix_10 {
        padding-right: 480px
    }

    .container_16 .suffix_11 {
        padding-right: 528px
    }

    .container_16 .suffix_12 {
        padding-right: 576px
    }

    .container_16 .suffix_13 {
        padding-right: 624px
    }

    .container_16 .suffix_14 {
        padding-right: 672px
    }

    .container_16 .suffix_15 {
        padding-right: 720px
    }

    .campusNews {
        width: 128px;
        margin-left: 16px;
        margin-right: 16px
    }

    .campusNews img {
        height: 86px;
        width: 128px
    }

}

@media only screen and (max-width: 767px) {
    .shadow-top {
        -webkit-box-shadow: 0 0 13px #737373;
        -moz-box-shadow: 0 0 13px #737373;
        box-shadow: 0 0 13px #737373;
        margin-top: 13px
    }

    .shadow-bottom {
        -webkit-box-shadow: 0 0 13px #737373;
        -moz-box-shadow: 0 0 13px #737373;
        box-shadow: 0 0 13px #737373;
        margin-bottom: 13px
    }

    .container_16 {
        width: 600px
    }

    .container_16 .grid_1,
    .container_16 .grid_2,
    .container_16 .grid_4 {
        width: 130px;
        margin-left: 0;
        margin-right: 0
    }

    .container_16 #pageNav .grid_4 {
        width: 130px;
        margin-left: 0
    }

    .container_16 .grid_4 {
        width: 440px;
        margin-left: 0;
        margin-right: 0
    }

    .container_16 .grid_6 {
        width: 454px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px
    }

    .container_16 .grid_8 {
        width: 440px;
        margin-left: 15px !important;
        margin-right: 0;
        margin-bottom: 20px
    }

    .container_16 .grid_12 {
        width: 454px
    }

    .container_16 .grid_16 {
        width: 100%;
        margin-left: 0;
        margin-right: 0
    }

    .container_16 .grid_16 .grid_12 .grid_6 .grid_2 {
        margin-right: 8px;
        width: 80px
    }

    .container_16 .grid_16 .grid_12 .grid_6 .grid_4 {
        margin-left: 8px;
        width: 358px !important
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_2 {
        margin-right: 8px;
        width: 80px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_3 {
        margin-right: 8px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_5 {
        margin-left: 8px;
        width: 310px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_6 {
        margin-left: 8px;
        width: 344px !important
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_4 .grid_3 {
        margin-left: 10px;
        margin-right: 10px;
        width: 370px
    }

    .container_16 .grid_16 .grid_9,
    .container_16 .grid_16 .grid_8,
    .container_16 .grid_16 .grid_7 {
        margin-right: 0;
        margin-left: 0;
        width: 100%
    }

    .container_16 .grid_16 .grid_6 .grid_2 {
        margin-right: 8px
    }

    .container_16 .grid_16 .grid_6 .grid_4 {
        margin-left: 8px;
        width: 342px !important
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_4 .grid_1 {
        margin-left: 10px;
        margin-right: 10px;
        width: 50px
    }

    #campusHomepage .container_16 .grid_10 {
        width: 100%;
        margin-left: 0;
        margin-right: 0
    }

    #campusHomepage .container_16 .grid_5 {
        width: 280px;
        margin-left: 20px;
        margin-right: 20px
    }

    #campusHomepage .container_16 .grid_6 {
        width: 100%
    }

    #campusHomepage .container_16 .campusNews {
        width: 180px;
        margin-left: 15px;
        margin-right: 15px
    }

    .container_16 .grid_1.last-col,
    .container_16 .grid_2.last-col,
    .container_16 .grid_10.last-col,
    .container_16 .grid_11.last-col {
        margin-right: 0 !important
    }

    .container_16 .prefix_1,
    .container_16 .prefix_2,
    .container_16 .prefix_3,
    .container_16 .prefix_4,
    .container_16 .prefix_5,
    .container_16 .prefix_6,
    .container_16 .prefix_7,
    .container_16 .prefix_8,
    .container_16 .prefix_9,
    .container_16 .prefix_10,
    .container_16 .prefix_11 {
        padding-left: 0
    }

    .container_16 .suffix_1,
    .container_16 .suffix_2,
    .container_16 .suffix_3,
    .container_16 .suffix_4,
    .container_16 .suffix_5,
    .container_16 .suffix_6,
    .container_16 .suffix_7,
    .container_16 .suffix_8,
    .container_16 .suffix_9,
    .container_16 .suffix_10,
    .container_16 .suffix_11 {
        padding-right: 0
    }


}

@media only screen and (max-width: 599px) {

    .container_16 {
        width: 420px
    }

    .container_16 .grid_1 {
        width: 35px;
        margin-left: 0;
        margin-right: 20px;
        margin-bottom: 0 !important
    }

    .container_16 .grid_2 {
        width: 70px;
        margin-left: 0;
        margin-right: 20px;
        margin-bottom: 0 !important
    }

    .container_16 .grid_4 {
        width: 420px;
        margin-left: 0 !important;
        margin-right: 0
    }

    .container_16 .grid_6 {
        width: 420px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px
    }

    .container_16 .grid_8 {
        width: 420px;
        margin-left: 0 !important;
        margin-right: 0
    }

    #campusHomepage .container_16 .grid_5 {
        width: 195px;
        margin-left: 15px;
        margin-right: 15px
    }

    .container_16 .grid_10 {
        width: 330px;
        margin-left: 0;
        margin-right: 20px;
        margin-bottom: 0 !important
    }

    .container_16 .grid_11 {
        width: 365px;
        margin-left: 0;
        margin-right: 20px;
        margin-bottom: 0 !important
    }

    .container_16 .grid_12 {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0 !important
    }

    .container_16 .grid_16 .grid_12 .grid_6 .grid_2 {
        margin-right: 8px;
        width: 80px
    }

    .container_16 .grid_16 .grid_12 .grid_6 .grid_4 {
        margin-left: 8px;
        width: 332px !important
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_2 {
        margin-right: 8px;
        width: 80px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_5 {
        width: 290px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_6 {
        margin-left: 8px;
        width: 324px !important
    }

    .container_16 .grid_16 .grid_6 .grid_4 {
        margin-left: 8px;
        width: 340px !important
    }

    .container_16 .grid_1.last-col,
    .container_16 .grid_2.last-col,
    .container_16 .grid_10.last-col,
    .container_16 .grid_11.last-col {
        margin-right: 0 !important
    }

    .container_16 .grid_1,
    .container_16 .grid_2,
    .container_16 .grid_3,
    .container_16 .grid_4,
    .container_16 .grid_5,
    .container_16 .grid_6,
    .container_16 .grid_7,
    .container_16 .grid_8,
    .container_16 .grid_9,
    .container_16 .grid_10,
    .container_16 .grid_11 {
        margin-bottom: 30px
    }

    .container_16 .prefix_1,
    .container_16 .prefix_2,
    .container_16 .prefix_3,
    .container_16 .prefix_4,
    .container_16 .prefix_5,
    .container_16 .prefix_6,
    .container_16 .prefix_7,
    .container_16 .prefix_8,
    .container_16 .prefix_9,
    .container_16 .prefix_10,
    .container_16 .prefix_11 {
        padding-left: 0
    }

    .container_16 .suffix_1,
    .container_16 .suffix_2,
    .container_16 .suffix_3,
    .container_16 .suffix_4,
    .container_16 .suffix_5,
    .container_16 .suffix_6,
    .container_16 .suffix_7,
    .container_16 .suffix_8,
    .container_16 .suffix_9,
    .container_16 .suffix_10,
    .container_16 .suffix_11 {
        padding-right: 0
    }



}

@media only screen and (max-width: 479px) {
    .container_16 {
        width: 300px
    }

    .container_16 .grid_1 {
        width: 25px
    }

    .container_16 .grid_2 {
        width: 60px
    }

    .container_16 .grid_4 {
        width: 300px !important;
        margin-left: 0;
        margin-right: 0
    }

    .container_16 .grid_6 {
        width: 300px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px
    }

    .container_16 .grid_8 {
        width: 300px !important;
        margin-left: 0;
        margin-right: 0
    }

    .container_16 .grid_10 {
        width: 220px
    }

    .container_16 .grid_11 {
        width: 255px
    }

    #campusHomepage .container_16 .grid_5 {
        width: 140px;
        margin-left: 10px;
        margin-right: 10px
    }

    .container_16 .grid_16 .grid_12 .grid_6 .grid_2 {
        margin-right: 8px;
        width: 80px
    }

    .container_16 .grid_16 .grid_12 .grid_6 .grid_4 {
        margin-left: 8px;
        width: 212px !important
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_2 {
        margin-right: 8px;
        width: 80px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_6 {
        margin-left: 8px;
        width: 204px !important
    }

    .container_16 .grid_16 .grid_6 .grid_4 {
        margin-left: 8px;
        width: 232px !important
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_4 .grid_3 {
        margin-left: 10px;
        margin-right: 10px;
        width: 230px
    }

    .container_16 .grid_16 .grid_12 .grid_8 .grid_4 .grid_1 {
        margin-left: 10px;
        margin-right: 10px;
        width: 50px
    }
}


table {
    clear: both;
    background-color: inherit;
    width: 100%
}

table td,
th {
    padding: 3px
}

table p {
    margin-bottom: 12px
}

.altRows {
    margin-bottom: 35px;
    width: 100%
}

.altRows td {
    padding: 10px 5px 10px 7px
}

.altRows tr:nth-child(odd) {
    background-color: #e6eef5
}

.altRows th {
    background-color: #ccc;
    text-align: left
}

.greyBars {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px
}

.greyBars td,
.greyBars th {
    padding: 8px 7px 7px
}

.greyBars th {
    text-align: left;
    padding-top: 5px;
    padding-bottom: 4px;
    background-color: #d1d1d1
}

.greyBars tr:nth-child(odd) {
    background-color: #e9e9e9
}

.greyBars tr.alt td {
    color: #000;
    background-color: #e9e9e9
}

.greyBars tr.alt p {
    background-color: #e9e9e9
}

.underline {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px
}

.underline td {
    padding: 8px 7px;
    border-bottom: solid 1px #999
}

.underline th {
    text-align: left;
    background-color: #f2f2f2;
    font-weight: 700;
    padding: 8px 7px;
    border-bottom: solid 1px #d9d9d9
}

.underline tr.alt td {
    border-bottom: solid 1px #e5e5e5
}

.underline tr:last-child td {
    border-bottom: none
}

.twoColumnTable {
    width: 100%
}

.twoColumnTable th,
.twoColumnTable td {
    width: 50%
}

/*
.responsiveTable {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 28px
}

.responsiveTable tr:nth-of-type(even) {
    background: #eee
}

.responsiveTable th {
    background: #4d4d4d;
    color: #fff;
    font-weight: 700
}

.responsiveTable td,
.responsiveTable th {
    padding: 8px;
    border: 1px solid #d9d9d9;
    text-align: left
}

.responsiveTable tr:nth-of-type(even):hover {
    background-color: #e5e5e5
}

.responsiveTable tr:nth-of-type(odd):hover {
    background-color: #fafafa
}
*/
.ogcTable .policySection,
.ogcTable .procedure,
.ogcTable .forms,
.ogcTable .noticeComment,
.fitnessSchedule .day,
.fitnessSchedule .morning,
.fitnessSchedule .noon,
.fitnessSchedule .evening {
    width: 25%
}

.departmentContactTable .name,
.administrativeContactTable .name {
    width: 25%
}

.departmentContactTable .phone,
.administrativeContactTable .position {
    width: 20%
}

.departmentContactTable .email,
.administrativeContactTable .name {
    width: 40%
}

.departmentContactTable .office,
.administrativeContactTable .phone {
    width: 15%
}

.departmentContactTable_vet .vet_location {
    width: 20%
}

.departmentContactTable_vet .vet_name {
    width: 20%
}

.departmentContactTable_vet .vet_email {
    width: 40%
}

.departmentContactTable_vet .vet_phone {
    width: 20%
}

.adjunctContactTable .name,
.adjunctContactTable .email {
    width: 50%
}

.degreePlanTable {
    margin-bottom: 50px;
    font-size: 14px;
    color: #333
}

.programPlanTable th,
.programPlanTable td {
    box-sizing: border-box;
}

.programPlanTable th:nth-of-type(1) {
    width: 80%
}

.programPlanTable th:nth-of-type(2) {
    width: 35%;
    text-align: center
}

.programPlanTable td:nth-of-type(1) {
    width: 20%;
    font-weight: bold;
    color: #595959;
    padding-left: 25px;
}

.programPlanTable td:nth-of-type(2) {
    border-left: hidden;
    width: 60%
}

.programPlanTable td:nth-of-type(3) {
    text-align: center;
    width: 20%
}

.programPlanTable td {
    padding: 10px;
}

.programPlanTable th {
    background: #235b8c
}

.programPlanTable span {
    display: block;
}

.programPlanTable span:nth-of-type(even) {
    font-weight: normal
}

.programPlanTable.contactHours td:nth-of-type(1) {
    width: 25%;
}

.programPlanTable.contactHours td:nth-of-type(2) {
    border-left: hidden;
    width: 55%
}

.programPlanTable.contactHours td:nth-of-type(3) {
    text-align: center;
    width: 20%
}

.programPlanTable.contactHours tr:last-child td:nth-of-type(2) {
    text-align: center;
    font-weight: bold
}

.programPlanTable.contactHours tr:last-child td {
    padding: 10px
}

.programPlanTable.contactHours span {
    display: block;
}

.programPlanTable.contactHours span:nth-of-type(even) {
    font-weight: normal
}

.programPlanTable.associateTable td:nth-of-type(1) {
    width: 16%;
}

.programPlanTable.associateTable td:nth-of-type(2) {
    width: 84%;
    word-spacing: .35em;
}

.programPlanTable.associateTable tbody:last-of-type tr:last-child td:nth-of-type(1) {
    font-weight: normal;
}

.bondProjectPhasingTable .campus {
    width: 15%
}

.bondProjectPhasingTable .phase_1 {
    width: 30%
}

.bondProjectPhasingTable .phase_2 {
    width: 28%
}

.bondProjectPhasingTable .phase_3 {
    width: 27%
}

.bondResultsTable .vote {
    width: 13%
}

.bondResultsTable .harris {
    width: 23%
}

.bondResultsTable .montgomery {
    width: 23%
}

.bondResultsTable .sanJacinto {
    width: 23%
}

.bondResultsTable .total {
    width: 20%
}

.harveyTable th,
.harveyTable td {
    box-sizing: border-box;
}

.harveyTable th:nth-of-type(1) {
    width: 75%
}

.harveyTable th:nth-of-type(2) {
    width: 25%;
    text-align: center
}

.harveyTable td {
    padding: 10px;
}

.dualCreditTable .courseNumber {
    width: 20%
}

.dualCreditTable .courseTitle {
    width: 20%
}

.dualCreditTable .isdCourseSubject {
    width: 20%
}

.dualCreditTable .isdCourseTitle {
    width: 20%
}

.dualCreditTable .peims {
    width: 20%
}

.locationTable th:nth-of-type(1) {
    width: 40%
}

.locationTable th:nth-of-type(2) {
    width: 30%;
}

.locationTable th:nth-of-type(3) {
    width: 30%
}

.getStarted {
    line-height: 25px;
    margin-bottom: 15px
}

.getStarted .Number {
    width: 5%
}

.getStarted .Step {
    width: 95%
}

.compCal {
    width: 100%
}

.compCal td,
.compCal th {
    padding: 6px
}

.compCal_1 {
    width: 18%
}

.compCal_2 {
    width: 22%
}

.compCal_3 {
    width: 20%
}

.compCal_4 {
    width: 40%
}

.compCal_borderRight {
    border-right: 1px solid #ccc
}

.meetYourProfessor .name {
    width: 18%
}

.meetYourProfessor .headshot {
    width: 18%
}

.meetYourProfessor .video {
    width: 20%
}

.meetYourProfessor .phone {
    width: 14%
}

.meetYourProfessor .email {
    width: 20%
}

.meetYourProfessor .office {
    width: 10%
}

#utilityLinks ul {
    margin-bottom: 0px !important
}

#contentArea ul {
    list-style: disc
}

#contentArea p + ul,
#contentArea p + ol {
    margin-top: -15px;
    margin-bottom: 30px
}

#contentArea ul li,
#contentArea ol li {
    margin-left: 3em;
    margin-bottom: 8px
}

#contentArea ul li ul {
    margin-top: .8em;
    margin-bottom: .3em;
    list-style: circle
}

#contentArea ol li ol {
    margin-bottom: .3em
}

#contentArea .list-1 {
    padding-left: 0;
    margin-left: 0;
    padding-bottom: 6px
}


#contentArea .sideBar_blue ul li {
    margin-left: 1.5em;
    font-size: 14px;
}

#landingPage .list-1 {
    padding-left: 0;
    padding-bottom: 10px
}

#landingPage h4 {
    margin-bottom: 0
}


ul.list-dollar {
    margin-left: 5px
}

.rss-box {
    width: 100%;
    background-color: #fff
}

.rss-title,
rss_title a {
    margin: 0;
    padding: 0;
    display: none
}

.rss-items {
    list-style: none;
    margin: 0;
    padding: 0
}

.rss-item {
    font-size: 12px;
    margin-bottom: 1em
}

.rss-item a:link,
.rss-item a:visited,
.rss-item a:active {
    font-weight: 700
}

.rss-date {
    font-weight: 400
}

.rss-icon {
    margin: 4px 0 0 8px;
    position: absolute
}

.inline {
    display: inline;
}

.left {
    float: left !important;
    margin: 0 12px 12px 0
}

.leftImages {
    float: left !important;
    margin: 0 20px 12px 0;
    padding: 5px;
    border: 1px solid #A8A8A8;
    background-color: #FFF;
    width: 100px;
    height: auto
}

.right {
    float: right !important;
    margin: 0 0 12px 12px !important
}

#landingPage img {
    float: left
}

#landingPage figure {
    border: 1px solid #b3b3b3;
    padding: 6px;
    overflow: hidden;
    max-width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#landingPage figure img {
    margin: 0
}

.ext_list li,
.ext_box {
    overflow: hidden
}

.ext_list li figure,
.ext_box figure {
    float: left
}

.ext_list li div,
.ext_box div {
    overflow: hidden
}

.news {
    /* padding-right: 20px */
}

.news li {
    margin-bottom: 25px;
    margin-left: 0 !important;
    list-style: none
}

.news li div {
    margin-bottom: 25px
}

.news li div h4 {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px
}

.news li div h4 a {
    color: #003768
}

.news li div h4 a:hover {
    color: #4789a1
}

.news li figure {
    margin: 0 20px 0 0;
    padding: 0;
    width: 60px !important;
    background-color: #fff !important;
    border: none
}

.news li figure time {
    width: 59px;
    height: 47px;
    display: block;
    text-align: center;
    background: url(https://wwwapps.lonestar.edu/Morpheus/images/eventCalendar_icon.png) no-repeat;
    font-size: 29px;
    line-height: 34px;
    font-weight: 700;
    color: #737373;
    padding: 12px 0 0;
    text-shadow: 1px 1px 1px #fefdfd;
    letter-spacing: -1px
}

.news li figure time span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-top: -7px
}


.whyLSC_text {
    width: 190px
}

.whyLSC_headline {
    color: #fff;
    font-weight: 700;
    font-size: 29px;
    line-height: 29px;
    text-align: center;
    margin: 0 auto;
    padding-top: 16px;
    width: 125px
}

.whyLSC_headline a {
    text-decoration: none;
    color: #fff
}

.whyLSC_caption {
    color: #a1d3ff;
    text-align: center;
    margin: 0 auto;
    padding-top: 9px;
    width: 135px;
    font-size: 16px;
    line-height: 18px
}

.whyLSC_caption a {
    color: #a1d3ff;
    text-decoration: none
}

a.divLink {
    text-decoration: none
}

a.divLink:hover {
    text-decoration: none
}

#recruitmentMessage {
    float: right;
    padding: 25px 41px 10px 10px;
    width: 100px
}

#line_1 {
    color: #fff;
    margin-bottom: 10px
}

#line_2 {
    color: #a1d3ff
}

.grid_6 figure {
    width: 320px;
    height: 166px;
    margin-bottom: .8em
}

#campusHomepage .featuredProgram p {
    color: #888;
    line-height: 17px;
    font-size: 11px;
    margin-bottom: 10px
}

#campusHomepage .featuredProgram img {
    max-width: 40%;
    height: auto;
    float: left
}

#campusHomepage .featuredContent img {
    margin-bottom: 0
}

#campusHomepage .featuredContent p {
    background: #002953;
    color: #fff;
    text-align: center;
    line-height: 2em
}

#campusHomepage .featuredContent a {
    text-decoration: none;
    color: #fff;
    display: block
}

#campusHomepage .featuredContent a:hover {
    text-decoration: none
}

#campusHomepage .grid_16 .grid_10 .grid_5 p {
    margin-bottom: 10px
}

.actionButton {
    float: left;
    background: #fff;
    color: #003768;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
    letter-spacing: -1px;
    line-height: 21px;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    border: 2px solid #003768;
    padding: 6px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.actionButton:hover {
    color: #b30838;
    border: 2px solid #b30838;
    cursor: pointer;
    text-decoration: none
}

.actionButton_small {
    float: left;
    color: #003768;
    font-weight: 700;
    text-align: center;
    font-size: 15px;
    line-height: 14px;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    border: 2px solid #003768;
    padding: 7px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.actionButton_small:hover {
    color: #b30838;
    border: 2px solid #b30838;
    cursor: pointer;
    text-decoration: none
}

.applyNow {
    width: 33%
}

.lateStart {
    width: 100%
}

.exploreOurPrograms {
    margin-right: 7%;
    width: 60%
}

.lscOnlineLogin,
.signUp {
    width: 100%
}

.full_width {
    width: 100%
}

.btn_learnMore {
    color: #003768;
    font-size: 13px;
    font-weight: 700;
    background-color: #ededed;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 0 1px 2px #b3b3b3;
    text-decoration: none;
    padding: 2px 7px 3px 8px
}

.btn_name {
    color: #18365f;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 35px;
    line-height: 30px;
    letter-spacing: -1px;
    margin-top: 15px;
    text-shadow: 0 -1px 2px #bfbfbf
}

.btn_name span a {
    text-decoration: none
}

.btn_caption {
    float: left;
    height: 32px;
    width: 90%;
    background-color: #ddd;
    margin: 10px 0;
    color: #18365f;
    font-size: 17px;
    text-align: center;
    padding-top: 8px;
    display: block
}

.btn_caption span {
    margin-left: 10%
}

.btn_caption a {
    text-decoration: none;
    color: #b30838 !important
}

.triangle-right {
    float: left;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-left: 20px solid #ddd;
    border-bottom: 20px solid transparent;
    margin: 10px 0
}

.blueLarge_arrow {
    padding: 12px 55px 12px 18px;
    margin-bottom: 25px;
    max-height: 45px;
    display: inline-block;
    color: #fff;
    background-color: #003768;
    background-image: url(https://www.lonestar.edu/images/btn_blue_arrow.png);
    background-position-x: 90%;
    background-position-y: 12px;
    background-position: top 11px right 15px;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: none;
    line-height: 21px;
    text-decoration: none;
    cursor: pointer;
    -webkit-box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab;
    -moz-box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab;
    box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab
}

.blueLarge_arrow:hover {
    color: #a1d3ff;
    text-decoration: none;
    background-image: url(https://www.lonestar.edu/images/btn_blue_arrow_hover.png)
}

.blueSmall_arrow {
    padding: 12px 50px 12px 18px;
    margin-bottom: 10px;
    max-height: 45px;
    display: inline-block;
    color: #fff;
    background-color: #003768;
    background-image: url(https://www.lonestar.edu/images/btn_blue_arrow_small.png);
    background-position-x: 82%;
    background-position-y: 11px;
    background-position: top 11px right 15px;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: none;
    font-size: 17px;
    line-height: 16px;
    text-decoration: none;
    cursor: pointer;
    -webkit-box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab;
    -moz-box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab;
    box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab
}

.blueSmall_arrow:hover {
    color: #a1d3ff;
    text-decoration: none;
    background-image: url(https://www.lonestar.edu/images/btn_blue_arrow_small_hover.png);
}

.blueLong_arrow {
    padding: 10px 50px 12px 18px;
    margin-bottom: 10px;
    display: inline-block;
    color: #fff;
    background-color: #003768;
    background-image: url(https://www.lonestar.edu/images/btn_blue_arrow.png);
    background-position-x: 82%;
    background-position-y: 50%;
    background-position: top 50% right 15px;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: none;
    font-size: 17px;
    font-family: "futura-pt", sans-serif;
    line-height: 16px;
    text-decoration: none;
    cursor: pointer;
    -webkit-box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab;
    -moz-box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab;
    box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab
}

.blueLong_arrow:hover {
    color: #a1d3ff;
    text-decoration: none;
    background-image: url(https://www.lonestar.edu/images/btn_blue_arrow_hover.png);
}

.whiteLarge_arrow {
    padding: 12px 55px 12px 18px;
    margin-bottom: 25px;
    max-height: 45px;
    display: inline-block;
    color: #013668;
    background-color: #fff;
    background-image: url(https://www.lonestar.edu/images/btn_blue_arrow_2.png);
    background-position-x: 90%;
    background-position-y: 12px;
    background-position: top 11px right 15px;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: none;
    font-size: 22px;
    line-height: 21px;
    text-decoration: none;
    cursor: pointer;
    -webkit-box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab;
    -moz-box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab;
    box-shadow: 0 8px 6px -6px #333333, inset 0 8px 6px -8px #497dab
}

.whiteLarge_arrow:hover {
    color: #74a8d7;
    text-decoration: none;
    background-position-y: -28px;
    background-position: right 15px bottom 9px
}

.whiteButton,
.whiteButton_2 {
    color: #003768;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    display: inline-block;
    background-color: #fff;
    padding: 12px 14px;
    max-width: 145px;
    margin-bottom: 15px;
    border-radius: 4px;
    box-sizing: border-box;
    border: #59768f solid 1px;
    -webkit-box-shadow: 0 10px 6px -6px #051929, inset 0 8px 6px -8px #ccc;
    -moz-box-shadow: 0 10px 6px -6px #051929, inset 0 8px 6px -8px #ccc;
    box-shadow: 0 10px 6px -6px #051929, inset 0 8px 6px -8px #ccc
}

.whiteButton:hover,
.whiteButton_2:hover {
    color: #3678b3
}

#contentArea a span.glyphicon {
    margin-right: 8px;
    margin-top: 2px;
}

#contentArea a.btn {
    margin-right: 20px;
}

.grid_16 .dottedBorder_right {
    border-right: dotted #ccc 2px;
    box-sizing: border-box;
    padding-right: 50px
}

.one_half {
    width: 50%;
    float: left;
    display: inline;
    box-sizing: border-box
}

.center {
    margin: 0 auto;
    text-align: center
}

.featureBox_grey {
    background-color: #f7f7f7;
    margin: 0 auto;
    padding: 15px;
    width: 80%;
    font-size: 16px
}

.featureBox_grey img {
    float: left;
    max-width: 35%;
    margin: 0 15px 0 0
}

.featureBox_grey p {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px
}

.featureBox_grey a {
    color: #b30838
}

.featureBox_grey a:hover {
    color: #4789a1
}

blockquote.style-1 {
    padding: 1.5em;
    quotes: "\201C""\201D""\2018""\2019";
    font-size: 15px;
    font-style: italic;
    margin-bottom: 30px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5
}

blockquote.style-1 p {
    margin-bottom: 10px
}

blockquote.style-1 p:first-of-type:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    font-style: normal;
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: -.4em;
    margin-right: 10px
}

blockquote.style-1 p:last-of-type:after {
    color: #ccc;
    content: close-quote;
    font-size: 4em;
    font-style: normal;
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: -.6em;
    margin-left: 7px
}

blockquote.style-1 footer {
    color: #999;
    display: block;
    font-size: 13px;
    line-height: 21px;
    float: right;
    text-align: right;
    width: 85%
}

.ficeCode {
    color: #b3b3b3
}

.ficeCode_text {
    display: block;
    text-align: center;
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 14px;
    font-weight: 700
}

.ficeCode_number {
    display: block;
    text-align: center;
    font-size: 45px;
    margin-bottom: 10px;
    font-weight: 700
}

#azIndexMenu {
    width: 100%
}

#azIndexMenu ul li {
    list-style-type: none;
    display: inline;
    font-size: 1em;
    font-weight: 700;
    margin-left: 0 !important
}

#azIndexMenu ul li a {
    display: block;
    float: left;
    width: 16px;
    padding: 0;
    text-align: center;
    color: #003768
}

#azIndexMenu ul li a:hover {
    background-color: #dce8f2
}

.backToTop {
    text-align: right;
    font-style: italic
}

#socialnetworking td {
    width: 10px;
    height: 10px
}


iframe .campusMap {
    border: #000 solid 1px
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 2.5em
}

.google-map-container {
    position: relative;
    padding-bottom: 70%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 2em
}

.embed-container iframe,
.embed-container object,
.embed-container embed,
.google-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

iframe.start-up-form {
    width: 650px;
    height: 1060px
}

#contentArea .campusNewslist {
    list-style: none;
    margin-bottom: 15px
}

#contentArea ul.campusNewslist li {
    margin-bottom: 40px;
    margin-left: 0
}

.articleDate {
    color: #4d4d4d;
    margin-bottom: 5px;
    padding-bottom: 0;
    line-height: 1.2em;
    font-size: 14px
}

.articleTitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px
}

.articleAbstract {
    line-height: 1.4em
}

.newsArticle .articleDate {
    margin-bottom: 10px
}

.newsArticle .articleImage {
    float: right;
    margin-left: 12px;
    margin-bottom: 12px;
    width: 200px
}

.newsArticle .articleCaption p {
    color: gray;
    font-style: italic;
    font-size: 11px;
    line-height: 18px
}

.p0 {
    margin-bottom: 0
}

.p0-1 {
    margin-bottom: 2px
}

.p1 {
    margin-bottom: 5px
}

.p1-1 {
    margin-bottom: 7px
}

.p2 {
    margin-bottom: 10px
}

.p2-1 {
    margin-bottom: 12px
}

.p3 {
    margin-bottom: 15px
}

.p3-1 {
    margin-bottom: 17px
}

.p4 {
    margin-bottom: 20px
}

.p4-1 {
    margin-bottom: 22px
}

.p5 {
    margin-bottom: 25px
}

.p5-1 {
    margin-bottom: 27px
}

.p6 {
    margin-bottom: 30px
}

.p6-1 {
    margin-bottom: 32px
}

.p7 {
    margin-bottom: 35px
}

.p7-1 {
    margin-bottom: 37px
}

.p8 {
    margin-bottom: 40px
}

.p8-1 {
    margin-bottom: 42px
}

.p9 {
    margin-bottom: 45px
}

.p9-1 {
    margin-bottom: 47px
}

.r0-1 {
    margin-right: 2px
}

.r1 {
    margin-right: 5px
}

.r1-1 {
    margin-right: 7px
}

.r2 {
    margin-right: 10px
}

.r2-1 {
    margin-right: 12px
}

.r3 {
    margin-right: 15px
}

.r3-1 {
    margin-right: 17px
}

.r4 {
    margin-right: 20px
}

.r4-1 {
    margin-right: 22px
}

.r5 {
    margin-right: 25px
}

.r5-1 {
    margin-right: 27px
}

.indent-lr {
    padding-left: 5px;
    padding-right: 4px
}

.indent-top1-1 {
    padding-top: 7px
}

.indent-top2 {
    padding-top: 10px
}

.indent-top2-1 {
    padding-top: 12px
}

.indent-top3 {
    padding-top: 15px
}

.indent-top3-1 {
    padding-top: 17px
}

.indent-top4 {
    padding-top: 20px
}

.indent-top4-1 {
    padding-top: 22px
}

.indent-top5 {
    padding-top: 25px
}

.indent-top5-1 {
    padding-top: 27px
}

.indent-top6 {
    padding-top: 30px
}

.indent-top6-1 {
    padding-top: 32px
}

.indent-top7 {
    padding-top: 35px
}

.indent-top8 {
    padding-top: 40px
}

.indent-top9 {
    padding-top: 45px
}

.indent-right2 {
    padding-right: 10px
}

.indent-right2-1 {
    padding-right: 12px
}

.indent-right3 {
    padding-right: 15px
}

.indent-right4 {
    padding-right: 20px
}

.indent-right12 {
    padding-right: 60px
}

.indent-left2 {
    padding-left: 10px
}

.indent-left2-1 {
    padding-left: 12px
}

.indent-left3 {
    padding-left: 32px
}

.indent-left4 {
    padding-left: 20px
}

.indent-bottom4 {
    padding-bottom: 20px
}

.indent-bottom5 {
    padding-bottom: 25px
}

.indent-bottom7 {
    padding-bottom: 35px
}

.indent-bottom7-1 {
    padding-bottom: 38px
}

.indent-bottom8-1 {
    padding-bottom: 42px
}

.indent-bottom9-1 {
    padding-bottom: 47px
}

.indent-bottom17 {
    padding-bottom: 85px
}

section#content footer {
    border-top: 1px dashed #cccccc;
    padding-top: 20px;
    font-style: italic;
    color: #666666;
}

section#content footer p {
    color: #666666;
}

section#content footer a {
    color: #337ab7;
}

section#content .programPlanTable footer {
    border-top: none;
    padding-top: 0;
    font-weight: normal;
}

section#content footer h4 {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 6px;
    color: #666666;
}


.footer_list ul {
    padding-left: -10px
}

.footer_list li {
    padding-left: 0;
    margin-bottom: 11px;
    line-height: 18px;
    list-style: none;
    font-size: 13px
}

footer .divider {
    border-bottom: 1px solid #457299;
    display: block;
    height: 1px;
    width: 33%;
    margin-top: 12px;
    margin-bottom: 15px
}


#pageNav {
    background: #fff;
    border: #e5e5e5 solid 2px;
    width: 180px !important;
    padding: 8px;
    margin-top: 10px
}

#pageNav ul {
    margin-bottom: 15px
}

#pageNav li {
    list-style: none;
    line-height: 18px;
    padding-bottom: 6px;
    padding-top: 6px;
    color: #003768;
    display: block
}

#pageNav li a {
    text-decoration: none
}

#pageNav li ul {
    display: none
}

.lsmenusysside {
    background: #f2f2f2;
    padding: 10px 17px 1px;
    font-size: 13px;
    line-height: 21px
}

.mobilePageNav {
    background: #e5e5e5
}

#pageNav a:hover {
    color: #b30838;
    text-decoration: underline
}

.pageNavImage {
    overflow: hidden;
    width: 180px;
    padding: 12px 10px
}

.sideBar ul li {
    /* margin-left: .9em !important; */
    color: #888;
    font-size: 1em;
}

.grid_4.omega .sideBar ul {
    margin-bottom: 10px
}

.grid_4.omega .sideBar p {
    margin-bottom: 15px
}

#contentArea .finePrint {
    margin-top: 50px;
    border-top: 1px solid #D3D3D3;
    padding-top: 12px;
    width: 100%
}

#contentArea .finePrint p {
    font-size: 11px;
    font-style: italic;
    line-height: 135%;
    color: #7B7B7B
}

#contentArea ol.footnotes,
#contentArea ul.footnotes {
    color: #666666;
    margin-left: 15px !important;
    font-style: italic;
}

#contentArea ol.footnotes li,
#contentArea ul.footnotes li {
    margin-left: 0 !important;
}

.jumpMenu2 {
    background-color: #003768
}

@media only screen and (max-width: 995px) {
    h1 {
        font-size: 33px;
        margin-bottom: 18px
    }

    h1 span {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 10px;
    }

    h3 {
        font-size: 17px
    }

    .breadcrumb {
        font-size: 13px;
        margin-left: 2px
    }

    #pageNav {
        background: #fff;
        border: #d9d9d9 solid 2px;
        width: 144px !important;
        padding: 6px
    }

    .lsmenusysside {
        padding: 10px 15px 1px
    }

    .pageNavImage {
        width: 144px;
        padding: 10px 8px
    }

    .sideBar {
        border: #ccc 6px solid;
        padding: 10px;
        font-size: 11px;
        line-height: 16px;
        margin-bottom: 17px;
        color: #888
    }

    .sideBar p {
        color: #888;
        line-height: 17px;
        font-size: 12px
    }

    .sideBar iframe {
        max-width: 100%
    }

    .sideBar2 {
        border-left: #BBC5D0 1px solid;
        padding-left: 15px;
        font-size: 11px;
        line-height: 16px;
        margin-bottom: 17px;
        color: #888
    }

    .sideBar2 p {
        color: #888;
        line-height: 17px;
        font-size: 12px
    }

    .sideBar2 iframe {
        max-width: 100%
    }

    section[class*="-section"] img {
        max-width: 100%;
        margin-bottom: 10px
    }

    .icon {
        width: 25px;
        padding-right: 8px
    }

    .whyLSC {
        height: 128px;
        margin-bottom: 12px
    }

    .whyLSC_text {
        width: 150px
    }

    .whyLSC_headline {
        font-size: 23px;
        line-height: 24px;
        padding-top: 12px;
        width: 130px
    }

    .whyLSC_caption {
        padding-top: 5px;
        width: 135px;
        font-size: 13px;
        line-height: 15px
    }

    #recruitmentMessage {
        padding: 23px 32px 10px 10px;
        width: 80px
    }

    #line_1 {
        margin-bottom: 10px
    }

    .whiteButton {
        font-size: 19px;
        padding: 9px;
        margin-bottom: 15px;
        max-width: 120px
    }

    .whiteButton_2 {
        font-size: 16px;
        padding: 10px 12px;
        max-width: 105px
    }

    .grid_16 .dottedBorder_right {
        padding-right: 40px
    }

    .featureBox_grey img {
        max-width: 50%;
        margin: 0 15px 0 0
    }

    .featureBox_grey p {
        font-size: 15px;
        margin-bottom: 10px
    }

    .ficeCode_text {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 14px
    }

    .ficeCode_number {
        font-size: 35px
    }

    #azIndexMenu ul li {
        font-size: 13px
    }

    #azIndexMenu ul li a {
        width: 24px;
        padding: 2px 1px;
        margin-bottom: 5px
    }

    #contentArea ul li,
    #contentArea ol li {
        margin-left: 2em;
        margin-bottom: 10px
    }

    #landingPage ul li,
    #landingPage ul li {
        margin-bottom: .5em
    }

    .r3 {
        margin-right: 13px
    }

    .r5-1 {
        margin-right: 15px
    }

    .programPlanTable td:nth-of-type(1) {
        width: 23%;
        font-weight: bold;
        color: #595959
    }

    .programPlanTable td:nth-of-type(2) {
        width: 57%
    }

    .programPlanTable td:nth-of-type(3) {
        width: 20%
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        margin-bottom: 15px
    }

    h1 span {
        margin-bottom: 20px;
    }



    h3 {
        font-size: 16px;
        margin-bottom: 9px;
    }

    .breadcrumb {
        font-size: 13px;
        margin-left: 2px
    }

    .footer_list li {
        margin-bottom: 18px;
        line-height: 22px;
        font-size: 16px
    }

    #pageNav {
        background: #fff;
        border: #d9d9d9 solid 1px;
        width: 118px !important;
        padding: 5px;
        font-size: 12px
    }

    #pageNav li a {
        line-height: 18px;
        padding-bottom: 4px;
        padding-top: 4px
    }

    .lsmenusysside {
        padding: 6px 10px 1px
    }

    .pageNavImage {
        width: 118px;
        padding: 8px 6px
    }

    #campusHomepage .featuredContent img {
        margin-bottom: 0
    }

    .google-map-container {
        margin-bottom: 1.5em
    }

    .whyLSC {
        height: 170px;
        background-position: 410px 0
    }

    .whyLSC_text {
        width: 420px
    }

    .whyLSC_headline {
        font-size: 32px;
        line-height: 34px;
        padding-top: 20px;
        width: 400px
    }

    .whyLSC_caption {
        padding-top: 8px;
        width: 400px;
        font-size: 22px;
        line-height: 24px
    }

    #recruitmentMessage {
        padding: 35px 140px 10px 10px;
        width: 200px
    }

    #line_1 {
        margin-bottom: 20px
    }

    .ficeCode_text {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 14px
    }

    .ficeCode_number {
        font-size: 45px
    }

    #azIndexMenu ul li {
        font-size: 13px
    }

    #azIndexMenu ul li a {
        width: 26px;
        padding: 2px 1px;
        margin: 0 2px;
        margin-bottom: 5px
    }

    .whiteButton {
        font-size: 18px;
        padding: 8px;
        margin-bottom: 15px
    }

    .whiteButton_2 {
        display: block;
        font-size: 18px;
        padding: 10px 12px;
        max-width: none;
        margin-bottom: 20px;
        -webkit-box-shadow: 0 8px 6px -6px #566672, inset 0 8px 6px -8px #ccc;
        -moz-box-shadow: 0 8px 6px -6px #566672, inset 0 8px 6px -8px #ccc;
        box-shadow: 0 8px 6px -6px #566672, inset 0 8px 6px -8px #ccc
    }

    .grid_16 .dottedBorder_right {
        padding-right: 40px
    }

    .featureBox_grey img {
        max-width: 30%;
        margin: 0 15px 8px 0
    }

    .featureBox_grey p {
        font-size: 16px;
        margin-bottom: 20px
    }

    /*
    .responsiveTable table,
    .responsiveTable thead,
    .responsiveTable tbody,
    .responsiveTable th,
    .responsiveTable td,
    .responsiveTable tr {
        display: block
    }

    .responsiveTable thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px
    }

    .responsiveTable tr {
        border: 1px solid #ccc
    }

    .responsiveTable td {
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 15%
    }

    .responsiveTable tbody:last-child {
        border-bottom: 1px solid #ddd
    }

    .responsiveTable td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 13%;
        padding-right: 10px;
        white-space: nowrap
    }

    .responsiveTable td:last-child {
        border: none
    }

    .responsiveTable tr:nth-of-type(even) {
        background: #fff;
        border-bottom: none
    }

    .responsiveTable tr:nth-of-type(odd) {
        border-bottom: none;
        background: #eee
    }

    .responsiveTable tr:nth-of-type(even):hover {
        background-color: #eeeeee
    }

    .responsiveTable tr:nth-of-type(odd):hover {
        background-color: #ffffff
    }
*/
    .departmentContactTable td:nth-of-type(1):before {
        content: "Name";
        font-weight: 700
    }

    .departmentContactTable td:nth-of-type(2):before {
        content: "Phone";
        font-weight: 700
    }

    .departmentContactTable td:nth-of-type(3):before {
        content: "Email";
        font-weight: 700
    }

    .departmentContactTable td:nth-of-type(4):before {
        content: "Office";
        font-weight: 700
    }

    .departmentContactTable_vet td:nth-of-type(1):before {
        content: "Location";
        font-weight: 700
    }

    .departmentContactTable_vet td:nth-of-type(2):before {
        content: "Name";
        font-weight: 700
    }

    .departmentContactTable_vet td:nth-of-type(3):before {
        content: "Email";
        font-weight: 700
    }

    .departmentContactTable_vet td:nth-of-type(4):before {
        content: "Phone";
        font-weight: 700
    }

    .harveyTable td {
        padding-left: 25%
    }

    .harveyTable td:before {
        width: 20%;
        padding-right: 10px;
        padding-top: 4px;
    }

    .harveyTable td:nth-of-type(1):before {
        content: "Agency";
        font-weight: 700
    }

    .harveyTable td:nth-of-type(2):before {
        content: "Phone";
        font-weight: 700
    }


    .administrativeContactTable td:nth-of-type(1):before {
        content: "Name";
        font-weight: 700
    }

    .administrativeContactTable td:nth-of-type(2):before {
        content: "Position";
        font-weight: 700
    }

    .administrativeContactTable td:nth-of-type(3):before {
        content: "Email";
        font-weight: 700
    }

    .administrativeContactTable td:nth-of-type(4):before {
        content: "Phone";
        font-weight: 700
    }

    .adjunctContactTable td:nth-of-type(1):before {
        content: "Name";
        font-weight: 700
    }

    .adjunctContactTable td:nth-of-type(2):before {
        content: "Email";
        font-weight: 700
    }

    .programPlanTable {
        color: #595959;
    }

    .programPlanTable td {
        padding-left: 25px
    }

    .programPlanTable thead tr {
        position: inherit;
        top: inherit;
        left: inherit
    }

    .programPlanTable td:nth-of-type(even),
    .programPlanTable th:nth-of-type(even) {
        text-align: left
    }

    .programPlanTable tr:nth-of-type(odd) {
        background: #fff;
        border-bottom: none
    }

    .programPlanTable tr:nth-of-type(even) {
        border-bottom: none;
        background: #eee
    }

    .programPlanTable td:before {
        width: 0;
        padding-right: 0;
        color: #595959
    }

    .programPlanTable td:nth-of-type(odd) {
        border-bottom: none;
    }

    .programPlanTable td:nth-of-type(even) {
        text-align: left;
        /*padding-left:80px;*/
    }

    .programPlanTable td:nth-of-type(1):before {
        /*content:"Subject:";*/
        font-weight: 700;
        padding-top: 4px
    }

    .programPlanTable td:nth-of-type(1) {
        padding-bottom: 0;
        width: inherit
    }

    .programPlanTable td:nth-of-type(2):before {
        /*content:"Credits:";*/
        font-weight: 700;
        padding-top: 4px;
        font-style: italic;
    }
/*
    .programPlanTable td:nth-of-type(2) {
        padding-top: 0;
        padding-bottom: 0;
        width: inherit;
        border-bottom: hidden;
    }
*/
/*
    .programPlanTable td:nth-of-type(3) {
        padding-top: 0;
        font-style: italic;
        width: inherit;
        text-align: left;
    }
*/
    .programPlanTable td:nth-of-type(3):after {
        content: " Credits";
        font-style: italic;
    }

    .programPlanTable th:nth-of-type(odd) {
        border: none;
    }
/*
    .programPlanTable th:nth-of-type(even) {
        border: none;
        font-style: italic;
        font-weight: normal
    }
*/
    .programPlanTable th:nth-of-type(1):before {
        padding-top: 4px
    }

    .programPlanTable th:nth-of-type(1) {
        padding-bottom: 0;
        width: inherit;
    }

    .programPlanTable th:nth-of-type(2):before {
        padding-top: 4px;
    }
/*
    .programPlanTable th:nth-of-type(2) {
        padding-top: 0;
        ;
        width: inherit;
    }
*/
    .programPlanTable th:nth-of-type(2):after {}

    .programPlanTable ol {
        margin-bottom: 0;
        padding-bottom: 10px;
    }

    .programPlanTable ol li {
        margin-bottom: 0;
        padding-bottom: 10px;
    }

    .programPlanTable span {
        display: inline;
    }

    .programPlanTable span:nth-of-type(even):before {
        content: " ";
        white-space: pre;
    }

    .programPlanTable span:nth-of-type(even):after {
        content: " ";
        white-space: pre;
    }

    .programPlanTable.contactHours th:nth-of-type(1) {
        padding: 10px
    }

    .programPlanTable.contactHours th:nth-of-type(2) {
        display: none
    }

    .programPlanTable.contactHours td:nth-of-type(1) {
        width: inherit
    }

    .programPlanTable.contactHours td:nth-of-type(2) {
        border-left: hidden;
        width: inherit
    }

    .programPlanTable.contactHours td:nth-of-type(3) {
        text-align: left;
        width: inherit
    }

    .programPlanTable.contactHours td:nth-of-type(3):after {
        content: " Contact Hours"
    }

    .programPlanTable.contactHours tr:last-child td {
        padding: 10px
    }

    .programPlanTable.contactHours tr:last-child td:nth-of-type(1) {
        padding-bottom: 0
    }

    .programPlanTable.contactHours tr:last-child td:nth-of-type(2) {
        font-style: italic;
        padding-top: 0;
        text-align: left;
        font-weight: normal
    }

    .programPlanTable.contactHours tr:last-child td:nth-of-type(2):after {
        content: " Contact Hours"
    }

    .programPlanTable.associateTable td:nth-of-type(2) {
        padding-bottom: 10px;
    }

    .programPlanTable.associateTable tbody:last-of-type tr:last-child td:nth-of-type(1) {
        width: inherit;
        padding-bottom: 10px;
        font-weight: normal;
    }

    .meetYourProfessor td {
        padding-left: 18%;
        padding-right: 5%;
        box-sizing: border-box;
    }

    .meetYourProfessor td:before {
        width: 23%
    }

    .meetYourProfessor td:nth-of-type(1):before {
        content: "Name:";
        font-weight: 700
    }

    .meetYourProfessor td:nth-of-type(2):before {
        content: "Welcome \A Message:";
        white-space: pre;
        font-weight: 700
    }

    .meetYourProfessor td:nth-of-type(4):before {
        content: "Phone:";
        font-weight: 700
    }

    .meetYourProfessor td:nth-of-type(5):before {
        content: "Email:";
        font-weight: 700
    }

    .meetYourProfessor td:nth-of-type(6):before {
        content: "Office:";
        font-weight: 700
    }

    .ogcTable td {
        padding-left: 35%
    }

    .ogcTable td:before {
        width: 30%;
        padding-right: 10px
    }

    .ogcTable td:nth-of-type(1):before {
        content: "Policy Section"
    }

    .ogcTable td:nth-of-type(2):before {
        content: "Procedure"
    }

    .ogcTable td:nth-of-type(3):before {
        content: "Forms"
    }

    .ogcTable td:nth-of-type(4):before {
        content: "Notice & Comment"
    }

    .libraryCampusHours td,
    .libraryCenterHours td {
        padding-left: 20%
    }

    .libraryCampusHours td:before,
    .libraryCenterHours td:before {
        width: 15%
    }

    .libraryCampusHours td:nth-of-type(1):before {
        content: "Campus";
        font-weight: 700
    }

    .libraryCampusHours td:nth-of-type(2):before {
        content: "Sun"
    }

    .libraryCampusHours td:nth-of-type(3):before {
        content: "Mon - Thur"
    }

    .libraryCampusHours td:nth-of-type(4):before {
        content: "Fri"
    }

    .libraryCampusHours td:nth-of-type(5):before {
        content: "Sat"
    }

    .libraryCenterHours td:nth-of-type(1):before {
        content: "Center";
        font-weight: 700
    }

    .libraryCenterHours td:nth-of-type(2):before {
        content: "Sun"
    }

    .libraryCenterHours td:nth-of-type(3):before {
        content: "Mon"
    }

    .libraryCenterHours td:nth-of-type(4):before {
        content: "Tue"
    }

    .libraryCenterHours td:nth-of-type(5):before {
        content: "Wed"
    }

    .libraryCenterHours td:nth-of-type(6):before {
        content: "Thur"
    }

    .libraryCenterHours td:nth-of-type(7):before {
        content: "Fri"
    }

    .libraryCenterHours td:nth-of-type(8):before {
        content: "Sat"
    }

    .bondProjectPhasingTable td {
        padding-left: 25%
    }

    .bondProjectPhasingTable td:before {
        width: 20%
    }

    .bondProjectPhasingTable td:nth-of-type(1):before {
        content: "Campus";
        font-weight: 700
    }

    .bondProjectPhasingTable td:nth-of-type(2):before {
        content: "Phase 1";
        font-weight: 700
    }

    .bondProjectPhasingTable td:nth-of-type(3):before {
        content: "Phase 2";
        font-weight: 700
    }

    .bondProjectPhasingTable td:nth-of-type(4):before {
        content: "Phase 3";
        font-weight: 700
    }

    .bondResultsTable td {
        padding-left: 25%
    }

    .bondResultsTable td:before {
        width: 20%
    }

    .bondResultsTable td:nth-of-type(1):before {
        content: "Vote";
        font-weight: 700
    }

    .bondResultsTable td:nth-of-type(2):before {
        content: "Harris";
        font-weight: 700
    }

    .bondResultsTable td:nth-of-type(3):before {
        content: "Montgomery";
        font-weight: 700
    }

    .bondResultsTable td:nth-of-type(4):before {
        content: "San Jacinto";
        font-weight: 700
    }

    .bondResultsTable td:nth-of-type(5):before {
        content: "Total";
        font-weight: 700
    }

    .fitnessSchedule td {
        padding-left: 27%
    }

    .fitnessSchedule td:before {
        width: 22%
    }

    .fitnessSchedule td:nth-of-type(1):before {
        content: "Day";
        font-weight: 700
    }

    .fitnessSchedule td:nth-of-type(2):before {
        content: "9:00; a.m.";
        font-weight: 700
    }

    .fitnessSchedule td:nth-of-type(3):before {
        content: "Noon";
        font-weight: 700
    }

    .fitnessSchedule td:nth-of-type(4):before {
        content: "4:30; p.m.";
        font-weight: 700
    }

    .dualCreditTable td {
        padding-left: 27%;
        min-height: 50px;
    }

    .dualCreditTable td:before {
        width: 22%
    }

    .dualCreditTable td:nth-of-type(1):before {
        content: "LSC Course \A Number";
        font-weight: 700;
        white-space: pre;
    }

    .dualCreditTable td:nth-of-type(2):before {
        content: "LSC Course \A Title";
        font-weight: 700;
        white-space: pre;
    }

    .dualCreditTable td:nth-of-type(3):before {
        content: "ISD Course \A Subject";
        font-weight: 700;
        white-space: pre;
    }

    .dualCreditTable td:nth-of-type(4):before {
        content: "ISD Course \A Title";
        font-weight: 700;
        white-space: pre;
    }

    .dualCreditTable td:nth-of-type(5):before {
        content: "PEIMS #";
        font-weight: 700;
        white-space: pre;
    }

    .locationTable td:nth-of-type(1):before {
        content: "Location";
        font-weight: 700
    }

    .locationTable td:nth-of-type(2):before {
        content: "Date";
        font-weight: 700
    }

    .locationTable td:nth-of-type(3):before {
        content: "Time";
        font-weight: 700
    }

    .grid_16 .dottedBorder_right {
        border-right: none;
        box-sizing: border-box;
        padding-right: 0;
        width: 100% !important
    }

    #campusHomepage .container_16 .grid_16 .grid_7 {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .r3 {
        margin-right: 0
    }

    .r5-1 {
        margin-right: 15px
    }

    iframe.start-up-form {
        width: 100%;
        height: 1640px
    }
}

@media only screen and (max-width: 599px) {
    h1 span {
        margin-bottom: 20px;
    }

    #pageNav {
        display: none
    }

    .pageNavImage {
        display: none
    }

    .lsmenusysside {
        display: none
    }

    .sideBar {
        margin-right: 0;
        width: 100%;
        float: none;
        box-sizing: border-box
    }

    #btmNav {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        background: #fff;
        border: #d9d9d9 solid 2px;
        padding: 8px
    }

    #btmNav li a {
        line-height: 18px;
        padding-bottom: 5px;
        padding-top: 5px;
        color: #003768;
        text-decoration: none;
        display: block
    }

    #btmNav li {
        list-style: none
    }

    #btmNav li ul {
        display: none
    }

    .mobilePageNav {
        background: #e5e5e5;
        padding: 10px 17px
    }

    #btmNav a:hover {
        color: #b30838;
        text-decoration: underline
    }

    .newsArticle .articleImage {
        display: none
    }

    .newsArticle .articleCaption p {
        display: none
    }

    .whyLSC {
        height: 160px;
        background-position: 260px 0
    }

    .whyLSC_text {
        width: 280px
    }

    .whyLSC_headline {
        font-size: 28px;
        line-height: 30px;
        padding-top: 24px;
        width: 260px
    }

    .whyLSC_caption {
        padding-top: 8px;
        width: 260px;
        font-size: 21px;
        line-height: 23px
    }

    #recruitmentMessage {
        padding: 28px 35px 10px 10px;
        width: 200px
    }

    #line_1 {
        margin-bottom: 12px
    }

    .whiteButton {
        font-size: 17px;
        padding: 5px 12px;
        margin-bottom: 15px;
        max-width: 105px
    }

    .one_half {
        width: 100%;
        display: block
    }

    .featureBox_grey {
        margin-bottom: 30px
    }

    .featureBox_grey img {
        max-width: 30%;
        margin: 0 15px 8px 0
    }

    .featureBox_grey p {
        font-size: 16px;
        margin-bottom: 20px
    }

    .mobile_noBorder {
        border: none
    }

    .whiteLarge_arrow {
        padding: 12px 50px 12px 18px;
        max-height: 45px;
        margin-bottom: 10px;
        background-image: url(https://www.lonestar.edu/images/btn_blue_arrow_small.png);
        background-position-x: 92%;
        background-position-y: 13px;
        background-position: top 13px right 15px;
        font-size: 19px;
        line-height: 19px
    }

    .whiteLarge_arrow:hover {
        color: #74a8d7;
        background-position-y: -17px;
        background-position: right 15px bottom 11px
    }

    #content_header ul#bg_hover li {
        font-size: 13px
    }

    #content_header ul#bg_hover li a {
        width: 22px
    }

    .r5-1 {
        margin-right: 15px
    }
}

@media only screen and (max-width: 479px) {
    .sideBar {
        margin-right: 0;
        width: 100%;
        float: none
    }

    img {
        max-width: 100%
    }

    #campusHomepage .featuredContent p {
        font-size: 11px;
        line-height: 17px
    }

    .whyLSC {
        height: 140px;
        background-position: 175px 0
    }

    .whyLSC_text {
        width: 185px
    }

    .whyLSC_headline {
        font-size: 25px;
        line-height: 27px;
        padding-top: 10px;
        width: 180px
    }

    .whyLSC_caption {
        padding-top: 5px;
        width: 180px;
        font-size: 16px;
        line-height: 18px
    }

    #recruitmentMessage {
        padding: 24px 12px 10px 10px;
        width: 130px
    }

    #line_1 {
        margin-bottom: 7px
    }

    .whiteButton {
        font-size: 18px;
        padding: 12px;
        margin-bottom: 15px
    }

    .responsiveTable td {
        padding-left: 20%
    }

    .responsiveTable td:before {
        width: 16%
    }

    .programPlanTable td {
        padding-left: 15px
    }

    .programPlanTable td:nth-of-type(odd) {
        padding-left: 15px;
    }

    .programPlanTable span {
        display: block
    }

    .programPlanTable span:after {
        display: none
    }

    .dualCreditTable td {
        padding-left: 35%
    }

    .dualCreditTable td:before {
        width: 25%
    }

    iframe.start-up-form {
        width: 100%;
        height: 1700px
    }
}


@media print {
    body {
        background: none;
        color: #000;
        font-family: Georgia, "Times New Roman", Times, serif
    }

    #contentArea {
        width: 100%;
        margin: 0;
        padding: 0;
        background: none
    }

    #campuses,
    #utilities,
    #mainNav,
    #mainLogo,
    footer,
    nav,
    #pageNav,
    #btmNav,
    .sidebar,
    .breadcrumb,
    #stickyBox,
    object,
    iframe,
    video,
    audio,
    embed {
        display: none
    }

    h1 {
        font-size: 30px;
        color: #fff;
        background-color: #003768;
        width: 100%;
        padding: 10px 15px;
        box-sizing: border-box
    }

    img {
        max-width: 400px;
        border: 0
    }

    p a:after {
        content: " (https://www.LoneStar.com/"attr(href) ")";
        font-size: 80%;
        word-wrap: break-word
    }

    p a[href^="https://"]:after,
    p a[href^="https://"]:after {
        content: " ("attr(href) ")"
    }

    header:before {
        display: block;
        content: "www.LoneStar.edu";
        font-size: 18px
    }

    .accessibility {
        display: none
    }
}

.clear:after {

    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.hidden {
    display: none;
}

/*
.responsiveTable {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 28px
}

.responsiveTable tr:nth-of-type(even) {
    background: #eee
}

.responsiveTable th {
    background: #4d4d4d;
    color: #fff;
    font-weight: 700
}

.responsiveTable td,
.responsiveTable th {
    padding: 8px;
    border: 1px solid #d9d9d9;
    text-align: left
}

.responsiveTable tr:nth-of-type(even):hover {
    background-color: #e5e5e5
}

.responsiveTable tr:nth-of-type(odd):hover {
    background-color: #fafafa
}
*/
.meetYourProfessor .name {
    width: 18%
}

.meetYourProfessor .headshot {
    width: 18%
}

.meetYourProfessor .video {
    width: 20%
}

.meetYourProfessor .phone {
    width: 14%
}

.meetYourProfessor .email {
    width: 20%
}

.meetYourProfessor .office {
    width: 10%
}
