@charset "UTF-8";




/*  Menu Buttons  */
:root {
     --main-bg: #fff;
    --menu-bg: #ecb731;
    --menu-font-color: #132231;
    --menu-border: #132231;
    --menu-bg-selected: #132231;
    --menu-bg-hover: #132231;
	--menu-font-hover: #fff;
	
	
	
}

.nevada-blue-bg {
    background: #00557e;
}

.nevada-gray-bg {
    background: #f6f7f6;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-size: 1rem;
	font-family: 'Arial Rounded MT Regular';
	/*font-family: 'Lato', sans-serif; */
	line-height: 28.8px;
	font-weight: 300;
	margin: 0;
	padding: 0;
	text-align: left;
	background-color: none;
	color: #000000;
	height: 100%;
	}

p {
	font-family: 'Arial Rounded MT Regular';
	margin: 1em 0;
	color: #132231;
    font-size: 18px;
    line-height: 1.4;
	}

h1 {
	font-family: 'Arial MT Bold';
	font-size: 3rem;
    line-height: 1;
	font-weight: 400;
	color: #000000;
	margin-bottom: 0.5rem;
	margin: 0.67em 0;
	padding: .5em 0 .3em 0;
}
h2 {
	font-family: 'Arial MT Bold';
    font-size: 32px;
    margin-bottom: 32px;
	color: #00557E;
    line-height: 1.1;
}
h3 {
	font-family: 'Arial MT Bold';
	color: #656565;
	font-size: 24px;
    line-height: 1.3;
	
}
h4 {
	font-family: Inter, Arial, Helvetica, sans-serif;
	font-size: 1.333em;
	text-transform: none;
	font-weight: normal;
	color: #000000;
	line-height: 1.5em;
	margin: 0;
	padding: 0;
}


.commit {
	font-family: 'Arial MT Bold';
    font-size: 32px;
    margin-bottom: 32px;
	color: #ecb731;
    line-height: 1.1;
}



.menu-sub {
    margin: 0 auto;
    display: flex;
    flex-flow: column wrap;
    width: 80rem;
    max-width: 100%;
}

.bullets-p {
    font-size: 1.2rem;
	font-family: Inter, Arial, Helvetica, sans-serif;
	/*font-family: 'Lato', sans-serif; */
	line-height: 25px;
	font-weight: 400;
	margin: 0;
	padding: 0;
	text-align: left;
	background-color: none;
	color: #000000;
	height: 100%;
}

.red-h3 {
    font-family: Inter, Arial, Helvetica, sans-serif;
	font-size: 1.5rem;
	color: #cc0000;
    line-height: 1.3;
    font-weight: 300;
	margin-bottom: 0.5rem;
	letter-spacing: -0.0176em;
}

.btn-menu {
	font-family: 'Arial MT Bold';
    position: relative;
    cursor: pointer;
    background: var(--menu-bg);
    border: none;
    padding: 2rem;
    color: var(--menu-font-color);
    font-weight: 700;
    border-top: 0.1rem solid var(--menu-border);
    border-bottom: 0.1rem solid var(--menu-border);
    transition: background 1s;
	
}

.btn-menu:hover {
    background: var(--menu-bg-hover);
    color: var(--menu-font-hover);
}

.btn-menu:focus {
    outline: none;
    box-shadow: none;
}

.selected {
    background: var(--menu-bg-selected);
    color: var(--menu-font-hover);
}

.selected::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 5.6rem;
    width: 0.5rem;
}

/*  End Menu Buttons  */

a.link-cvs:link, a.link-cvs:visited {
	color: #c00;
	text-decoration: none;
} 
a.link-cvs:hover, a.link-cvs:active {
	color: #eb0000;
	text-decoration: underline;
}

.clean-button-mps, a.clean-button-mps {
	font-family: 'Arial MT Bold';
	margin: 1em 0;
	background-color: #ecb731;
	color: #132231;
	text-decoration:none;
	text-transform: none;
	border: 1px solid #132231;
}
.clean-button-mps:hover, .clean-button-mps:focus {
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000', GradientType=0);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0,.05)), to(rgba(0,0,0,.1)));
	background-image: -webkit-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: -moz-linear-gradient(top, rgba(0,0,0,.05) 0, rgba(0,0,0,.1));
	background-image: -ms-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: -o-linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-image: linear-gradient(transparent, rgba(0,0,0,.05) 40%, rgba(0,0,0,.1));
	background-color:#132231;
	font-family: 'Arial MT Bold';
	text-decoration: none;
	color: #fff;
	border: 1px solid #132231;
}


/*  accordion  */
.accordion {
  font-family: Inter, Arial, Helvetica, sans-serif;
	/*font-family: 'Baskerville', "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif"; */
  background-color: #eb0000;
  color: #fff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover { 
  color: #000000;
  background-color: #fff;
  border: 1px solid #eb0000;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #fff;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/*  accordion  */



.form-mps-copy{
	width: 30%;
	padding: 14% 4%;
	margin: auto;
	float: left;
	text-align: left;
	vertical-align: middle;
	background-image: url(/navistar/images/form-color.png);
    background-repeat: no-repeat;
    background-position: 0px center;
}

@media screen and (min-width: 10px) and (max-width: 989px) {
	
	.form-mps-copy{
	width: 96%;
	padding: 2em 2%;
	margin: auto;
	float: none;
	text-align: left;
	vertical-align: middle;
	background-image: url(/navistar/images/form-color.png);
	background-color: #000;
    background-repeat: no-repeat;
	background-position: center;
}	
}

