@import url(vendor/normalize.css);
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

button,
input[type="submit"] {
  border: 1px solid #2459a6;
  border-radius: 3px;
  box-shadow: inset 0 1px 0 0 #89a8d5;
  color: white;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  background-color: #477DCA;
  background-image: -webkit-linear-gradient(#477DCA, #2760b2);
  background-image: linear-gradient(#477DCA, #2760b2);
  padding: 7px 18px;
  text-decoration: none;
  text-shadow: 0 1px 0 #1b4f9a;
  background-clip: padding-box;
  -webkit-font-smoothing: antialiased;
  font-size: 1em;
  font-weight: bold;
  line-height: 1em; }
  button:hover:not(:disabled),
  input[type="submit"]:hover:not(:disabled) {
    box-shadow: inset 0 1px 0 0 #628cc8;
    cursor: pointer;
    background-color: #3c71bb;
    background-image: -webkit-linear-gradient(#3c71bb, #255aa5);
    background-image: linear-gradient(#3c71bb, #255aa5); }
  button:active:not(:disabled),
  input[type="submit"]:active:not(:disabled), button:focus:not(:disabled),
  input[type="submit"]:focus:not(:disabled) {
    border: 1px solid #2459a6;
    box-shadow: inset 0 0 8px 4px #235397, inset 0 0 8px 4px #235397; }
  button:disabled,
  input[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed; }

body {
  color: #333;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5em; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  line-height: 1.25em;
  margin: 0;
  text-rendering: optimizeLegibility; }

h1 {
  font-size: 2.25em; }

h2 {
  font-size: 2em; }

h3 {
  font-size: 1.75em; }

h4 {
  font-size: 1.5em; }

h5 {
  font-size: 1.25em; }

h6 {
  font-size: 1em; }

p {
  margin: 0 0 0.75em; }

a {
  color: #477DCA;
  text-decoration: none;
  -webkit-transition: color 0.1s linear;
  -moz-transition: color 0.1s linear;
  transition: color 0.1s linear; }
  a:hover {
    color: #2c5999; }
  a:active, a:focus {
    color: #2c5999;
    outline: none; }

hr {
  border-bottom: 1px solid #DDD;
  border-left: none;
  border-right: none;
  border-top: none;
  margin: 1.5em 0; }

img {
  margin: 0;
  max-width: 100%; }

abbr, acronym {
  border-bottom: 1px dotted #DDD;
  cursor: help; }

address {
  display: block;
  margin: 0 0 0.75em; }

hgroup {
  margin-bottom: 0.75em; }

del {
  color: #595959; }

blockquote {
  border-left: 2px solid #DDD;
  color: #595959;
  margin: 1.5em 0;
  padding-left: 0.75em; }

cite {
  color: #737373;
  font-style: italic; }
  cite:before {
    content: '\2014 \00A0'; }

fieldset {
  background: #f7f7f7;
  border: 1px solid #DDD;
  margin: 0 0 0.75em 0;
  padding: 1.5em; }

input,
label,
select {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1em; }

label {
  font-weight: bold;
  margin-bottom: 0.375em; }
  label.required:after {
    content: "*"; }
  label abbr {
    display: none; }

textarea,
input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"],
select[multiple=multiple] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color;
  -moz-transition: border-color;
  transition: border-color;
  background-color: white;
  border-radius: 0.1875em;
  border: 1px solid #DDD;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1em;
  margin-bottom: 0.75em;
  padding: 0.5em 0.5em;
  width: 100%; }
  textarea:hover,
  input[type="email"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="url"]:hover, input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="month"]:hover, input[type="time"]:hover, input[type="week"]:hover,
  select[multiple=multiple]:hover {
    border-color: #c4c4c4; }
  textarea:focus,
  input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus,
  select[multiple=multiple]:focus {
    border-color: #477DCA;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(55, 112, 192, 0.7);
    outline: none; }

textarea {
  resize: vertical; }

input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none; }

input[type="checkbox"], input[type="radio"] {
  display: inline;
  margin-right: 0.375em; }

input[type="file"] {
  width: 100%; }

select {
  width: auto;
  max-width: 100%;
  margin-bottom: 1.5em; }

button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap; }

table {
  border-collapse: collapse;
  margin: 0.75em 0;
  table-layout: fixed;
  width: 100%; }

th {
  border-bottom: 1px solid #b7b7b7;
  font-weight: bold;
  padding: 0.75em 0;
  text-align: left; }

td {
  border-bottom: 1px solid #DDD;
  padding: 0.75em 0; }

tr, td, th {
  vertical-align: middle; }

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none; }
dl {
  line-height: 1.5em;
  margin-bottom: 0.75em; }
  dl dt {
    font-weight: bold;
    margin-top: 0.75em; }
  dl dd {
    margin: 0; }

body {
  background-color: #dddddd; }

div.outer-container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto; }
  div.outer-container:after {
    content: "";
    display: table;
    clear: both; }

div.back-button {
  text-align: center;
  padding: 4px;
  background-color: #000000; }
  div.back-button a {
    transition: all 0.15s;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition-timing-function: linear;
    -webkit-transition-timing-function: linear;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
    opacity: 0.85; }
  div.back-button a:hover {
    opacity: 1; }

div.comp {
  display: block;
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden; }

body.home, body.home div.comp {
  height: 7362px;
  background-size: 1920px 7362px; }

body.home-mobile, body.home-mobile div.comp {
  height: 8404px;
  background-size: 320px 8404px; }

body.about, body.about div.comp {
  height: 2319px;
  background-size: 1920px 2319px; }

body.our-team, body.our-team div.comp {
  height: 4964px;
  background-size: 1920px 4964px; }

body.doctor-bio, body.doctor-bio div.comp {
  height: 2043px;
  background-size: 1920px 2043px; }

body.services, body.services div.comp {
  height: 1909px;
  background-size: 1920px 1909px; }

body.services-imaging, body.services-imaging div.comp {
  height: 2399px;
  background-size: 1920px 2399px; }

body.services-radiology, body.services-radiology div.comp {
  height: 2915px;
  background-size: 1922px 2915px; }

body.services-ancillary, body.services-ancillary div.comp {
  height: 2836px;
  background-size: 1920px 2836px; }

body.services-individual, body.services-individual div.comp {
  height: 1609px;
  background-size: 1920px 1609px; }

body.for-physicians, body.for-physicians div.comp {
  height: 1443px;
  background-size: 1920px 1443px; }

body.news, body.news div.comp {
  height: 2302px;
  background-size: 1920px 2302px; }

body.news-post, body.news-post div.comp {
  height: 1951px;
  background-size: 1920px 1951px; }

body.contact, body.contact div.comp {
  height: 2274px;
  background-size: 1920px 2274px; }

body.imaging-centers, body.imaging-centers div.comp {
  height: 1498px;
  background-size: 1920px 1498px; }

body.imaging-center, body.imaging-center div.comp {
  height: 1790px;
  background-size: 1920px 1790px; }

body.index {
  font-family: helvetica, arial, sans-serif;
  background-color: #0068a6;
  color: #ffffff;
  text-align: left;
  padding: 50px; }
  @media screen and (max-width: 540px) {
    body.index {
      padding: 20px; } }
  body.index div.outer-container {
    max-width: 960px; }
  body.index div.disclaimer {
    float: left;
    display: block;
    margin-right: 0%;
    width: 66.6666666667%;
    padding: 0 20px; }
    body.index div.disclaimer:last-child {
      margin-right: 0; }
    @media screen and (max-width: 540px) {
      body.index div.disclaimer {
        float: left;
        display: block;
        margin-right: 0%;
        width: 100%;
        padding-bottom: 20px; }
        body.index div.disclaimer:last-child {
          margin-right: 0; } }
  body.index div.links {
    float: left;
    display: block;
    margin-right: 0%;
    width: 33.3333333333%;
    padding: 0 20px;
    border-left: 1px solid #5a98c4; }
    body.index div.links:last-child {
      margin-right: 0; }
    @media screen and (max-width: 540px) {
      body.index div.links {
        float: left;
        display: block;
        margin-right: 0%;
        width: 100%;
        border-top: 1px solid #5a98c4;
        border-left: none;
        padding-top: 25px;
        text-align: center; }
        body.index div.links:last-child {
          margin-right: 0; } }
  body.index p {
    font-size: 15px;
    line-height: 22px;
    opacity: 0.85; }
  body.index h1 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center; }
  body.index a {
    transition: all 0.15s;
    -webkit-transition: all 0.15s;
    -moz-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition-timing-function: linear;
    -webkit-transition-timing-function: linear;
    font-size: 15px;
    line-height: 22px;
    color: #ffffff;
    opacity: 0.85;
    padding-left: 0px; }
  body.index a:hover {
    opacity: 1;
    padding-left: 5px; }
  body.index hr {
    width: 50px;
    height: 1px;
    display: block;
    border: none;
    background-color: #5a98c4;
    margin: 10px 0; }
    @media screen and (max-width: 540px) {
      body.index hr {
        margin: 10px auto; } }

div.dropdown-links {
  width: 100%;
  height: 41px;
  position: relative;
  top: 179px; }
  div.dropdown-links a {
    display: block;
    position: relative;
    margin: 0 auto; }
    div.dropdown-links a img {
      -webkit-transition: opacity 0.3s;
      -moz-transition: opacity 0.3s;
      transition: opacity 0.3s;
      max-width: none;
      position: absolute;
      top: 0;
      left: 0;
      display: none; }
  div.dropdown-links a.about {
    width: 100px;
    height: 41px;
    right: 311px; }
  div.dropdown-links a.team {
    width: 115px;
    height: 41px;
    top: -41px;
    right: 183px; }
  div.dropdown-links a.services {
    width: 100px;
    height: 41px;
    top: -82px;
    right: 48px; }
    div.dropdown-links a.services img {
      left: -171px; }
  div.dropdown-links a.physicians {
    width: 138px;
    height: 41px;
    top: -123px;
    left: 108px; }
    div.dropdown-links a.physicians img {
      left: -5px; }
  div.dropdown-links a.news {
    width: 125px;
    height: 41px;
    top: -164px;
    left: 282px; }
    div.dropdown-links a.news img {
      left: -5px; }
  div.dropdown-links a.contact {
    width: 100px;
    height: 41px;
    top: -205px;
    left: 434px; }
    div.dropdown-links a.contact img {
      left: -226px; }
  div.dropdown-links a:hover img {
    display: block; }

a.slider {
  width: 100%;
  height: 625px;
  display: block;
  position: relative;
  top: 179px; }

@media screen and (max-width: 540px) {
  body.home-mobile, body.home-mobile div.comp {
    height: auto !important; } }

body.home-mobile img {
  display: none; }
  @media screen and (max-width: 540px) {
    body.home-mobile img {
      display: block; } }
