/***** Table styling, borders on bottom rows only. table header block colour *****/

.table-container
{
	width: 100%;
	overflow-y: auto;
	_overflow: auto;
	margin: 0em 0 1em;
}

.table-container::-webkit-scrollbar
{
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}

.table-container::-webkit-scrollbar-thumb
{
	border-radius: 8px;
	border-bottom: 3px solid #fff !important;
	background-color: rgba(0, 0, 0, .3);
}

.table-container table {border:solid 0px #f7f7f7 !important;}
	
	
.table-container table thead tr th {background-color: #f7f7f7 !important; border: 1px solid #f7f7f7 !important;}
.table-container table thead p {text-align:left;}

.table-container table tr {border-bottom:solid 1px #dce2e7 !important;}

.table-container table tr td 
{
	border:solid 0px #f7f7f7 !important;
	background-color:#fff;
}

.table-container table tr td p {margin:0px;}

.table-container table tr td h4{
    background-color: #ff6;
    display: inline-block;
    font-family: "Open Sans",sans-serif;
    font-size: 0.84em;
	margin: 0px;
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid #c4c4c4;
}

.table-container table tr td h5 {
	font-family:"Open Sans",sans-serif;
	font-size:0.84em;
    background-color: #9f6;
    display: inline-block;
	margin: 0px;
    padding: 7px 10px;
    border-radius: 10px;
    border: 1px solid #c4c4c4;
}

/*****Table column adjust*****/

.col1 {
    min-width: 150px;
    width: 40%;
}
.col2 {width:20%;}

.col3 {width:30%;}

/*****Table 2*****/

.table-container2
{
	width: 100%;
	overflow-y: auto;
	_overflow: auto;
	margin: 0 0 1em;
}

.table-container2::-webkit-scrollbar
{
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}

.table-container2::-webkit-scrollbar-thumb
{
	border-radius: 8px;
	border-bottom: 3px solid #fff !important;
	background-color: rgba(0, 0, 0, .3);
}

.table-container2 table tr td 
{
	border:solid 1px #c4c4c4 !important;
	background-color:#fff;
}

.table-container2 table {border:solid 0px #f7f7f7 !important;}

.table-container2 table tr {border-bottom:solid 1px #F6F6F6 !important;}

.table-container2 table tr td p {margin:0px;}

.table-container2 table tr th {background-color:#cc9933; color:#fff;}

/*****End*****/


hr {border: none; border-bottom: 1px solid #EFEFEF !important; clear: both; width:100% !important; max-width:100% !important;}


/****Image adjustment***/

.img-adjust img {
	margin-top: 9px !important;
}

img {border-radius:5px;}

/*****End*****/


/****blockquote****/

blockquote {
    background: none repeat scroll 0 0 #ececec;
    border-left: 6px solid #3f5d9a !important;
    color: #383838 !important;
    font-size: 1.3em !important;
    font-style: italic !important;
    font-weight: normal !important;
	line-height: 24px !important;
    margin: 0.25em 0 !important;
    padding: 0.25em 49px !important;
    position: relative;
    width: 100%;
}
/**
blockquote::before {
    color: #3f5d9a;
    content: "“";
    display: block;
    font-size: 80px;
    left: 5px;
    position: absolute;
    top: -15px;
}
blockquote::after {
    bottom: -40px;
    color: #3f5d9a;
    content: "”";
    display: block;
    font-size: 80px;
    position: absolute;
    right: 20px;
}
**/
.cite {
    color: #1e683f;
    display: block;
    font-size: 14px;
    margin-right: 20px;
    margin-top: 5px;
    text-align: right;
    text-transform: uppercase;
}

/*****End*****/

/****Caption****/

figure {
 /**background: none repeat scroll 0 0 #f3cd1e !important;**/
    border: medium none !important;
    border-radius: 10px;
    display: inline-block !important;
    float: none;
    margin: 10px 20px;
    min-height: 240px;
    min-width: 120px;
    padding: 0 0 9px !important;
    vertical-align: top !important;
}

figure img {border-radius: 6px;}

figure figcaption {text-align: center; font-size: small; line-height: 20px; color:#515151;}

/*****Lists 1 - horizontal float left list used for Alumni image grid*****/

.list1 ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.list1 ul li {
    border-radius: 10px;
    display: inline-block;
    line-height: 19px;
    margin: 4px 6px;
    min-width: 230px;
    padding: 6px;
    text-align: left;
    vertical-align: top;
    width: 30%;
    margin-bottom: -30px;
}

.list1 img {
 height: auto !important;
 width: 100% !important;
}

.list1 ul li a:link {
    color: #666;
    text-decoration: none;
    font-size: 1.2em;
    vertical-align: middle;
    line-height: 30px;
	}
.list1 ul li a:hover {color: #44749D;}
.list1 ul li a:visited {color: #666;}

/*****End*****/

/**HOVER EFFECTS**/

/* BACKGROUND TRANSITIONS */
/* Fade */
.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
  background-color: #2098d1;
  color: white;
}

/* Underline Reveal */
.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #614486;
  height: 4px;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/**BUTTON**/

.mybutton {
    background-color: #fff;
    color: #614486;
    display: inline-block;
    margin-bottom: 10px;
	min-width: 160px;
    padding: 0.4em;
    text-decoration: none;
}