﻿/* Basic Reset & Body Styling */
:root {
  --dph-gray: #dcddde;
  --dph-blue: #061c60;
  --dph-blue-2: #3a5094;
  --dph-blue-contrast: #fff;
  --dph-orange: #d08b38;

  --dph-left-nav-left-border-color: var(--dph-orange);
  --dph-second-nav-bg-color: var(--dph-blue-2);

  --dph-h1-color: #061c60;
  --dph-h2-color: #20367a;
  --dph-h3-color: #394f93;
  --dph-h4-color: #5369ad;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
html {
  scroll-behavior: smooth;
  font-size: 18px;
  font-family: sans-serif;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  /* background-color: #f4f7f6;  */
  color: #333;
}

/* Screen-reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.dph-placeholder {
  display: none;
}
.contEmphasis{
	color:#8c0303;
}

.progLink {
	color:white;font-family: Arial, Helvetica, sans-serif;line-height: 1.6;text-decoration:none;
}
a:hover.progLink{
	text-decoration:underline;
}



input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

.sectionBorder{
	border:1px solid black;
}

.vertical-scroll{
	overflow-y: scroll;
	height:500px;
}

/*
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}
input[type=submit]:hover,input[type=reset]:hover,input[type=button]:hover  {
 
  background-color:#3A5094;
  color:white
}
*/


/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other 
@media screen and (max-width: 600px) {
  .col-3,  input[type=submit] {
    width: 100%;
    margin-top: 0;
    font-size:14px;
  }
}

*/