/* cmsms stylesheet: Kricom_BWR_Stylesheet modified: 07/15/25 23:43:26 */

body{ 
  font-family: 'Raleway', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
  color: black;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #5c9bd0;
}
.header{
  display: grid;
  justify-content: center;
  grid-area: 1 / 1 / 2 / 4;
  background-color: #3c89c9;
}
.box-center{
  background-color: #f2f0f0;
  padding: 20px;
  margin: 5px;
  grid-area: 2 / 2 / 3 / 3;
}
.box-left{
  width: 220px;
  height: 100%;
  margin-top: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  background-color: azure;
   grid-area: 2 / 1 / 3 / 2;
}
.box-right{
  width: 220px;
  height: 100%;
  margin-top: 5px;
  margin-left: 5px;
  margin-bottom: 5px;
  background-color: azure;
  grid-area: 2 / 3 / 3 / 4;
}
.breadcrumb{
    color: white;
    display: flex;
    justify-content: center;
}
#primary-nav{
    padding: 5px;
    margin: 0px;
}
.menu{
    background-color: #0099ff;
}

.flex-wrapper{ 
  background-color: #5c9bd0; 
  padding: 5px;
  display: grid;
  justify-content: center;
  //grid-template-columns: repeat(3, 1fr);
  //grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px; 
} 

.box-footer {
  grid-area: 3 / 1 / 4 / 4;
  background-color: #000002; 
  color: #5c9bd0;
  text-align: center;
  font-size: x-small;
  padding: 10px;
}
a {
  color: #6da5d5;
  transition: all 0.2s ease;
}
a:hover, a.menuactive {
  color: #3c89c9;
}
h1 {
  font-family: 'Sacramento', cursive;
  font-size: 4rem;
  margin-top: 1rem;
  margin-bottom: 0;
}
h1 a, h1 a:hover {
  color: #0099ff;
}
h2, h3, h4 {
  font-family: 'Raleway', 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
  font-size: 0.9rem;
}
h3 {
  font-size: 1.4rem;
  margin-top: 1rem;
  text-transform: uppercase;
}
#menu {
  display: grid;
  justify-content: center;
}
#menu ul li.first {
  border-left: 0px;
}
.ul{
  border-left: 0px;
  display: none;
}
#menu ul li.last {
  border-left: 0px;
}
#menu li {
  line-height: 40px;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 5px;
  margin-right: 5px;
}
.parent ul {
  display: none;
}
.parent{
  background: #5c9bd0;
  color: #0099ff;
  border-radius: 6px;
}
.parent:menuactive{
 background: #3c89c9;
}
.parent:hover {
  background: #0099ff;
  color: #5c9bd0;
}
.divider .parent{
  background: #0099ff;
  color: #5c9bd0;
  margin-bottom: 0.2rem;
}
.divider .menuparent:hover {
  background: #6da5d5;
  color: #0099ff;
}

.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav li {
  position: relative;
}

.nav li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
}

.nav li ul.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  z-index: 1000;
}

.nav li:hover > ul.dropdown-menu {
  display: block;
}

.nav li ul.dropdown-menu li a {
  padding: 8px 12px;
  white-space: nowrap;
}
