/**
*	Ticket 	3870-8433189: summer camp menu
*	Author: Erich Polixa
*	Description: button-table description text hover state
*/

  .button-table td > a {
    height: 100%;
    position: relative;
  }

  .button-table .button-td-wrap {
    height: 0;
    padding-bottom: 100%;
  }

  .button-table .button-td {
    position: absolute;
    bottom: 0;
    height: auto;
    background-color: rgba(40, 59, 139, 0.95);
    padding: 12px 17px 10px;
    width: 100%;
  }

  .button-table .button-td .title {
    display: block;
    background: none;
    position: relative;
    padding: 0;
  }

  .button-table .button-td .desc {
    background: none;
    display: block;
    position: relative;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    text-transform: none;
    font-weight: normal;
    -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  }
  .button-table td > a:hover .desc {
    max-height: 9999px;
    -webkit-transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
  }

/* End Section */

/*
 * 8439475
 * Mike E
 * jquery default link color overriding our link color
 */
.ui-widget-content a {color: #5266bd !important;}

/* End Section */

/**
*
*	Date: 04/20/2016
*	Ticket 3870-8442144
*	Author: Kosha Burnett
*	Description: helping client layout a page
*/

.studentStories {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.studentStories > div {
	flex-basis: 32%;
	margin-right: 2%;
	min-width: 175px;
}

.studentStories > div:last-child {
	margin-right: 0;
}

.studentStories > div > div {
	min-height: 355px;
}

.studentStories img[align="right"] {
	margin-left: 0;
}

@media (max-width: 768px) {
	.studentStories > div > div {
		min-height: auto;
	}
}

/* End Section */


/*
*  Ticket 8453181
*  Adjust height of headerPhoto on this page to use taller image.
*  08/01/16 - James B
*/

.page_1526 .headerPhoto {
    height: 600px !important;
}

.page_1526 .headerPhoto #content567 {
    display: block;
}

.page_1526 .headerPhoto #content567 img {
    display: none;
}

.page_1526 .headerPhoto #content567 p {
    color: #fff;
    text-align: center;
    padding-top: 240px;
    margin: 0 50px;
    font-size: 30px;
    font-family: "Libre Baskerville", serif;
}

/* End Section */



.wrapper {
    max-width: 400px;
    padding-left: 1em;
    float: right;
    padding-right: 1em;
}

/**
 * Helpers
 */

.border-tlr-radius {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}
.text-center {
    text-align: center;
}
.radius {
    border-radius: 2px;
}
.padding-tb {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
}
.shadowDepth0 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.shadowDepth1 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

/**
 * Card Styles
 */

.card {
    background-color: #fff;
    margin-bottom: 1.6rem;
}
.card__padding {
    padding: 1rem;
}
.card__image {
    min-height: 100px;
    float: left;
    padding: 1em;
}
.card__image img {
    width: 50%;
    display: block;
    float: left;
}
.card__image h4,.card__image h5,.card__image h6, .card__image p {
    width: 50%;
    float: right;
    padding-left: 5%;
}
.card__content {
    position: relative;
}


.gridTable td.contentElementTD {background: inherit; border:0 none inherit;}

.gridTable tr:first-child {background: #f9f3eb; border:0 none inherit;}
.gridTable tr:nth-child(2n+2) {background: #dfebe9; border:0 none inherit;}
.gridTable tr:nth-child(2n+3) {background: #f9f3eb; border:0 none inherit;}
.gridTable tr:nth-child(7n) {background: #fff; border:0 none inherit;}

.gridTable h4.contentElementTitle {color:#f78c6c; text-transform:uppercase;}

/**
*
*   Date: 08/11/2016
*   Ticket 3870-8454284
*   Author: Kosha Burnett
*   Description: set image align in pixels so it works consistently
*/

img[align="left"] {
	margin-right: 30px;
}

img[align="right"] {
	margin-left: 30px;
}

/* End Section */