@charset "UTF-8";
/* CSS Document */

.derek_menu1, a
{
  /*color: #007bff !important;*/
  /*color: #C3441A !important;*/
  color: #2C61BD !important;
}
  
  
.derek_menu1:hover, .derek_menu1:focus, a:hover, a:focus
{
  /*color: #007bff !important;*/
  /*color: #9F3E13 !important;*/
  color: #C00 !important;
  text-decoration: none;
}

h2
{
	color:#2C61BD; font-size:38px; margin-bottom:16px;
}

h3
{
	color:#555; margin-top:6px;
}

.heading_bar
{
	padding:16px 0; background-color:#2C61BD; color:#FFF; text-align: center;
}

.heading_bar2
{
	padding:8px 0; background-color:#2C61BD; color:#FFF; text-align: center;
}

.rounded_corners
{
	border-radius:3px;
}

.show_if_desktop
{
    display:none;
}

.show_if_laptop
{
    display:block;
}

.show_if_mobile
{
    display:block;
}

@media only screen and (min-width: 600px) and (max-width: 960px)
{
  .show_if_desktop
  {
      display:none;
  }

  .show_if_laptop
  {
      display:block;
  }

  .show_if_mobile
  {
      display:none;
  }
}

@media only screen and (min-width: 961px)
{
  .show_if_desktop
  {
      display:block;
  }

  .show_if_laptop
  {
      display:none;
  }

  .show_if_mobile
  {
      display:none;
  }
}