/*background color of toplevel menu */
.menuInner{ 
background: #003663 !important; 
}
 
.WaGadgetMenuHorizontal.menuStyle002 .menuBackground{ 
background: #003663 !important; 
}

/*the entire background color */
.WaGadgetMenuHorizontal .menuBackground {
    background: #003663;
}

/*foreground and background color hover toplevel menu */
.WaGadgetMenuHorizontal .menuInner ul.firstLevel>li>.item>a:hover{
background: #003663 !important;
color: white !important;
}

/*background color of drop down menu */
.WaGadgetMenuHorizontal .menuInner ul ul li>.item>a{
background: #003663 !important;
color: white !important;
}

/*background color hover of drop down menu*/
.WaGadgetMenuHorizontal .menuInner ul ul li>.item>a:hover{ 
background: #429933 !important; 
}

/*main menu word color*/
.WaGadgetMenuHorizontal .menuInner ul.firstLevel>li.sel>.item>a {
    color: #429933;
}

/*mobile first level color*/
.WaGadgetMenuHorizontal[class*=menuStyle] .menuInner ul.firstLevel {
    background: #003663;
}

/*mobile second level color*/
@media only screen and (max-width: 616px) {
.WaGadgetMenuHorizontal[class*=menuStyle] .menuInner ul ul {
    background: #003663;
 }
}

/*Gadget style 004 title background color*/
.gadgetStyle004 .gadgetStyleTitle {
   padding: 12px 20px 14px 20px;
   background: #003663;
}
And this is the other:
.gadgetStyle004 {
   background: white;
   border: 5px solid #003663;
}

.gadgetStyle004 {
    background: white;
    border: 5px solid #003663;
}


/*WA Support - A link that has not been visited */
a:link {
    color: #003663;
}
/*WA Support  A link that has been visited */
a:visited {
    color: #003663;
}
/*WA Support  A link that is hovered on */
a:hover {
    color: red;
}
/*WA Support  A link that is selected */
a:active {
    color: #003663;
}

/* Code to change page width START */
.container_12 {
    width: 1200px;
}
.s1_grid_12{
    width: auto;
}
@media only screen and (max-width: 1199px) and (min-width: 600px){
.container_12 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    min-width: 600px;
}}
@media only screen and (max-width: 616px){
.container_12 {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 600px;
    min-width: 320px;
    display: block;
}}
/* Code to change page width END */