/*Navbar*/
.navbar{
	background-color: #0079C2;
	border:none;
	-webkit-box-shadow: 0px 10px 41px -5px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 10px 41px -5px rgba(0,0,0,0.3);
	box-shadow: 0px 10px 41px -5px rgba(0,0,0,0.3);
}	
.navbar-inverse .navbar-nav>li>a{
	color: white; 
}
.navbar-inverse a{
	color: white;
}

.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover{
	background-color: #035E91;
}
.navbar-inverse .navbar-nav>li>a:focus, .navbar-inverse .navbar-nav>li>a:hover{
	background-color: #035E91;	
}
.navbar-inverse .navbar-toggle{
	border-color: #035E91;
}
.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover{
	background-color: #035E91;	
}
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form{
	border-color: #035E91;
}
/*Cover Section*/
#cover{
	background-color: #C3E5F9;
	padding-bottom: 28px;
}
.description{
	margin-top: 84px;
}
.description h1{
    text-align: left;
	color: #035E91;
	font-size: 20px;
}
.description p{
	margin-top: 20px;
}
a{
	color: #03486F;
}
.searchCriteria {
	background-color: #0F7BBE;
	border-radius: 4px;
	margin: 0 auto;
	margin-top: 30px;
	width: 395px; /*20240711 was 330px*/
	padding: 20px; /*20240711 was 230px*/
}
#searchBox{
	border-radius: 4px; 
	border: none;
	width: 100%;
	padding: 5px 15px;
}
select{
	border-radius: 4px; 
	border: none;
	margin-top:15px;
	height: 30px; 
	width: 69%;
    padding: 5px 12px;
}
.sbtn {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0px 2px 3px #666666;
    -moz-box-shadow: 0px 2px 3px #666666;
    box-shadow: 0px 2px 3px #666666;
    color: #ffffff;
    padding: 5px 13px;
    background:#035E91;
    text-decoration: none;
    border: none;
    margin-left: 4%;
}
.sbtn:hover {
  	background: #03486F;
  	text-decoration: none;
}
input[type=checkbox]{
	margin-left: 0px;
}
label{
	margin-right: 30px;
	margin-top: 15px;
	margin-left: 5px;
	font-weight: 600;
	color: white;
    letter-spacing: 0.5px;
}
/*Centers Section*/
#centers{
	padding: 25px 0;
	background-color: #0079C2;
	-webkit-box-shadow: inset 0px 0px 20px 1px rgba(140,140,148,1);
	-moz-box-shadow: inset 0px 0px 20px 1px rgba(140,140,148,1);
	box-shadow: inset 0px 0px 20px 1px rgba(140,140,148,1);
}
.sectionTitle{
	color: #E3EEFC;
	text-align: center;
	margin-top: 0;
	margin-bottom: 21px;
}
.containingCircle{
	background-color: #035E91;
	text-align: center;
	vertical-align: middle;
	width: 165px;
	position: relative;
	border-radius: 50%;
	margin: 0 auto;
	transition: background-color 0.5s;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-webkit-transition:  -webkit-transform .5s ease-out;
    -moz-transition: -moz-transform .5s ease-out;
    -o-transition: -o-transform .5s ease-out;
    -ms-transition: -ms-transform .5s ease-out; 
    transition: transform .5s ease-out; 
}
.containingCircle:hover {
	background-color: #E3EEFC;
    -webkit-box-shadow: 0px 0px 19px 1.5px  rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 19px 1.5px  rgba(0,0,0,0.3);
    box-shadow: 0px 0px 19px 1.5px  rgba(0,0,0,0.3);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.containingCircle:hover .whiteLogo{
	display: none;
}
.containingCircle .clinicLogo:not(.whiteLogo){
	display: none;
}
.containingCircle:hover .clinicLogo:not(.whiteLogo){
	display: block;
}
.clinicLogo{
	height:auto;
	width: 130px;
	position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    margin: auto;
}
.centerTitle{
	color: #E3EEFC;
	text-align: center;
	font-weight: 600;
	margin-top: 33px;
}
/*Results Section*/
#scrollingCanvas{
	background: url('Content/Products/RTMCC/hash.png') repeat; /*url('../images/hash.png') repeat; */
	padding-top: 5px;
	padding-bottom: 75px;
	position: relative;
}
.bgoverlay{
	position: absolute;
	background: rgba(127, 181, 249, 0.2);
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
.backToTop{
	background-color: #035E91;
	color: white;
	right: 30px;
	width: 22px;
	height: 22px;
	border-radius: 2px;
	float: right;
	position: fixed;
	bottom: 30px;
	display: none;
	padding: 0;
	-webkit-transition:  -webkit-transform .2s ease-out;
    -moz-transition: -moz-transform .2s ease-out;
    -o-transition: -o-transform .2s ease-out;
    -ms-transition: -ms-transform .2s ease-out; 
    transition: transform .2s ease-out;
}
.backToTop-Out{
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);	
}
.backToTop-In{
    -webkit-transform: scale(2.0);
    -moz-transform: scale(2.0);
    -o-transform: scale(2.0);
    transform: scale(2.0);
}
.backToTop i{
	font-size: 14px;
	margin-top: 2px;
}
.backToTop:hover{
	background-color: #034D77;
}
.noResults{
	color: #035E91;
	text-align: center;
	margin-top: 50px;
	margin-top: 80px;
    margin-bottom: 29px;
    display: none;
}
/*Block*/
.grid_item{ 
	width: 33.333333%;
}
.block{
	width: 88%;
	margin-left:auto;
	margin-right: auto;
	margin-top: 40px;
	-webkit-box-shadow: 0px 0px 23px -4px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 23px -4px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 23px -4px rgba(0,0,0,0.75);
	-webkit-transition:  -webkit-transform .15s ease-out;
    -moz-transition: -moz-transform .15s ease-out;
    -o-transition: -o-transform .15s ease-out;
    -ms-transition: -ms-transform .15s ease-out; 
    transition: transform .15s ease-out; 

}
.block:hover{
	-webkit-box-shadow: 0px 0px 23px -4px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 23px -4px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 23px 0px rgba(0,0,0,0.75);
	-webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -o-transform: scale(1.02);
    transform: scale(1.02);
}
.blockHeader{
	background-color: #035E91;
}
.title{
	color: white;
	padding: 15px;
	font-size: 1.3em;
	margin: 0px; 
}
.title:hover{
	text-decoration: underline;
	cursor: pointer;
}
.blockBody{
	background-color: #FAFAFA;
}
.blockCategory, .blockDate{
	color: #035E91;
	background-color: #AEC8E9;
	padding: 5px 15px; 
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.blockDate{
	width: 100%;
	top: 100%;
	margin: 12px 0px;
	text-align: center;
}
.blockFormat{
	width: 85%;
	margin: 0px auto;
	padding-top: 22px;
	padding-bottom: 22px;
}
.blockImage{
	width: 100%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
}
.blockButton{
	width: 100%;
    display:block;
    text-align:center;
    text-decoration: none;
	background-color: #035E91;
	color: white;
	border: none;
	padding-top: 5px;
	padding-bottom:5px;
}
.blockButton:hover{
    text-decoration: none;
    color: white;
	background-color: #01456B;
}

.blockButton:visited {
	text-decoration: none;
	background-color: #035E91;
	color: white;
}

footer{
	background-color: #002C44;
}
footer table{
	color: white;
	font-size: 14px;
	margin: 10px 0;
}
footer a{
	color: white;
}
table .fa{
	font-size: 30px;
	margin-top: -6px;
}
tr td:first-child{
	width: 43px;
	text-align: center;
	margin-right: 10px;
}
tr td:nth-child(2){
	padding-left: 10px;
}
.socialMedia{
	margin: 20px 0px; 
	text-align: right;
}
.socialMedia i {
	display: inline-block;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid white;
	padding: 8px 0px 0px 0px;
	margin-left:auto; margin-right:0;
	font-size: 25px;
	color: white;
	text-align: center;
}
.socialMedia i:hover {
	color: #002C44;
	background-color: white;
	cursor: pointer;
}
.contact{
	padding-top: 10px;
	padding-bottom: 10px;
}
.contactHeader{
	font-weight: bold;
	margin: 0;
}
.contactDescription{
	color: white;
	font-size: 13px;
}
.ufLogo{
	margin-top: 37px;
	text-align: right;
}
.ufLogo img{
	width: 200px;
}
.footerText{
	color: white;
	font-size: 11px;
	margin-bottom: 10px;
}
/*Media Queries*/
@media only screen and (min-width: 320px) and (max-height: 480px) { /*Iphone 4*/
	.searchCriteria{
		width: 290px;
	}
	select{
		width: 65%;
	}
}
@media only screen and (min-width: 320px) and (max-height: 568px) { /*Iphone 5*/
	.searchCriteria{
		width: 290px;
	}
	select{
		width: 65%;
	}
}
@media only screen and (min-width: 375px) and (max-height: 627px) { /*Iphone 6*/

}
@media only screen and (min-width: 414px) and (max-height: 736px) { /*Iphone 6*/
	
}
@media only screen and (min-width: 768px) and (max-height: 1024px) { /*Ipad*/
	
}
@media only screen and (min-width: 1100px) { /*Computers*/
	.searchCriteria{
		margin-top: 115px;
	}
}
@media only screen and (max-width: 1100px){ /*Anything that is not a computer*/
	.backToTop{
		display: none;
	}
	.description{
		padding-right: 0;
		text-align: left;
	}
}
@media only screen and (max-width: 767px) { /*Phones*/
	.socialMedia{
		text-align: center;
	}
	.ufLogo{
		text-align: center;
		margin: 16px auto;
	}
	.socialMedia {
    	margin: 0px auto;
	}
	.centerTitle{
		margin-bottom: 48px; 
		padding: 0 50px;
	}
}
@media only screen and (max-width: 575px) { /*Single Block Breakpoint*/
	.grid_item{ 
		width: 100%;
	}
}
@media only screen and (min-width: 576px) and (max-width: 900px) { /*Double Block Breakpoint*/
	.grid_item{ 
		width: 50%;
	}
}
@media only screen and (max-width: 375px) { /*Mobile for Block Width 1*/
	.block{
		width: 95%;
	}
	.socialMedia{
		margin:-10px auto;
	}
	.socialMedia i{
		float: none;
	}
	.ufLogo img{
		margin: 10 auto;
		position: static;
	}
	.footerText{
		text-align: justify;
		padding-left: 10px;
		margin-right: 10px;
	}
}