/* Nav Bar Adjustments */
.menu .navbar-nav>li.menu-item-has-children>.sub-menu>li {
 width: 100%;
}
@media (min-width: 1280px) {
	.menu .navbar-nav li.menu-item-has-children .sub-menu {
		    left: inherit;
		    right: inherit;
	        padding: 20px 20px;
	}
}
/* OIP Navigation & Buttons */
a.new-button {
    background: #003466;
    display: inline-block;
    font-family: Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    position: relative;
    padding: 1em 1em;
    padding-right: 2.5em;
    border: none;
    color: white ;
    transition: .2s;
    border-radius: 8px;
}
.content-button {
  display: inline-block;
  font-family: Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  padding: 1em 1em;
  padding-right: 2.5em;
  background: #009ed8;
  border: none;
  color: white;
  transition: .2s;
  border-radius: 8px;
}
.content-button:before,
.content-button:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding-top: inherit;
  padding-bottom: inherit;
  width: 1.5em;
  content: "\00a0";
  font-family: 'FontAwesome', sans-serif;
  font-size: 1.2em;
  text-align: center;
  transition: .2s;
   border-radius: 0px 8px 8px 0px;
}
.content-button:before {
  background: rgba(0, 0, 0, 0.1);
}
.content-button:hover {
  background: #0079a5;
}
.content-button:active,
.content-button:focus {
  background: #002e3f;
  outline: none;
}
.content-button {
  min-width: 14em;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
}
.arrow {
  background: #003466;
}
.arrow:hover {
  background: #075bac;
}
.arrow:active,
.arrow:focus {
  background: #2c0657;
}
.arrow:after {
  content: "\F054";
}
.arrow:hover:after {
  -webkit-animation: bounceright .3s alternate ease infinite;
  animation: bounceright .3s alternate ease infinite;
}


@-webkit-keyframes bounceright {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(3px);
  }
}

@keyframes bounceright {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(3px);
  }
}

/* Back Button */
.content-button.backbtn {
  padding-left: 2.5em;
}
.content-button.backbtn:before,
.content-button.backbtn:after {
   border-radius: 8px 0px 0px 8px;
   left:0;
}

.arrow.backbtn:after {
    content: "\F053";
}