:root {
    --vls-blue: #001871;
    --vls-red: #e03c31;
    --vls-white: #ffffff;
    --vls-cyan: #4EC3E0;
    --vls-green: #6abf4b;
    --vls-silver-sand: #B7B8B9;
    --vls-wild-sand: #f8f5f0;
    --vls-subtext-grey: #888888;
    --vls-grey-bg: #F4F4F2;
    --vls-nav-line: rgba(0, 0, 0, 0.09);
    --vls-footer-bg: #080808;
    --vls-footer-text: #ffffff96;
    --vls-footer-heading: #ffffff96;
    --vls-footer-link: #ffffff96;
    --vls-footer-base: #ffffff96;
    --vls-footer-rule: #6a6a6a96;
}

*,*::before,*::after {
	box-sizing: border-box;
}
html,body {
	margin: 0;
}

.sp-vls-header {
    font-family: "Poppins", Arial, sans-serif;
    background: var(--vls-white);
    border-bottom: 1px solid var(--vls-nav-line);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.sp-vls-nav,
.sp-vls-nav__inner {
    height: 72px;
}

.sp-vls-nav__inner {
    align-items: center;
    display: flex;
    margin: 0 44px;
}

.sp-vls-nav__brand {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    padding-right: 52px;
}

.sp-vls-nav__brand img {
    display: block;
    height: 47px;
    object-fit: cover;
    width: 134px;
}

.sp-vls-nav__collapse {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    height: 72px;
    min-width: 0;
}

.sp-vls-nav__toggle {
    display: none;
}

.sp-vls-nav__links {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    height: 72px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sp-vls-nav__item {
    position: relative;
}

.sp-vls-nav__link {
    align-items: center;
    border-bottom: 2px solid transparent;
    color: var(--vls-blue);
    display: flex;
    flex-direction: column;
    font-size: 12.5px;
    font-weight: 500;
    gap: 4px;
    height: 72px;
    justify-content: center;
    line-height: normal;
    padding: 13px 15px 11px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

/* .sp-vls-nav__link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
} */

.sp-vls-nav__label {
    align-items: center;
    display: inline-flex;
    gap: 4px;
    line-height: normal;
}

.sp-vls-chevron {
    position: static;
}

.sp-vls-nav__link:hover,
.sp-vls-nav__link:focus {
    color: var(--vls-blue);
}

.sp-vls-nav__submenu {
    background: var(--vls-white);
    border: 1px solid rgba(0, 24, 113, 0.08);
    border-radius: 0;
    box-shadow: 0 18px 40px rgba(0, 24, 113, 0.12);
    left: 0;
    list-style: none;
    margin: 0;
    min-width: 210px;
    opacity: 0;
    padding: 10px 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
}

.sp-vls-nav__submenu li {
    margin: 0;
}

.sp-vls-nav__submenu-link {
    color: var(--vls-blue);
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    padding: 10px 16px;
    text-decoration: none;
}

.sp-vls-nav__item:hover>a.sp-vls-nav__link {
    border-bottom-color: var(--vls-red);
}

.sp-vls-nav__item.is-active>a.sp-vls-nav__link {
    border-bottom-color: var(--vls-red);
    color: var(--vls-red);
}

.sp-vls-nav__submenu-link:hover,
.sp-vls-nav__submenu-link:focus,
.sp-vls-nav__submenu-link.is-active {
    background: rgba(0, 24, 113, 0.05);
    color: var(--vls-red);
}

.sp-vls-nav__item--has-menu:hover .sp-vls-nav__submenu,
.sp-vls-nav__item--has-menu:focus-within .sp-vls-nav__submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sp-vls-nav__item--has-menu:hover .sp-vls-chevron::before,
.sp-vls-nav__item--has-menu:focus-within .sp-vls-chevron::before {
    transform: rotate(225deg) translateY(-1px);
}

.sp-vls-chevron {
    align-items: center;
    display: inline-flex;
    height: 9px;
    justify-content: center;
    margin-left: 4px;
    opacity: 0.4;
    width: 9px;
}

.sp-vls-chevron::before {
    border-bottom: 1.25px solid currentColor;
    border-right: 1.25px solid currentColor;
    content: "";
    display: block;
    height: 5.4px;
    transform: rotate(45deg) translateY(-1px);
    width: 5.4px;
}

.sp-vls-nav__actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    height: 32px;
    justify-content: flex-end;
}

.sp-vls-nav__search {
    background: var(--vls-white);
    border: 1px solid #dddddd;
    border-radius: 5px;
    color: #1c1c1c;
    flex: 0 0 148px;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    height: 32px;
    line-height: normal;
    padding: 7px 12px;
    width: 200px;
}

.sp-vls-nav__search::placeholder {
    /*color: #1c1c1c;*/
    opacity: 1;
}

.sp-vls-nav__search:focus {
    border-color: var(--vls-blue);
    box-shadow: 0 0 0 2px rgba(0, 24, 113, 0.08);
    outline: none;
}

.vls-language {
    flex: 0 0 auto;
    position: relative;
}

.vls-language__toggle {
    align-items: center;
    background: var(--vls-white);
    border: 1px solid #dddddd;
    border-radius: 5px;
    color: #1c1c1c;
    display: inline-flex;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    gap: 7px;
    height: 32px;
    justify-content: center;
    line-height: normal;
    padding: 0 10px;
    white-space: nowrap;
}

.vls-language__toggle::-webkit-details-marker {
    display: none;
}

.vls-language__toggle::marker {
    content: "";
}

.vls-language__toggle:hover,
.vls-language__toggle:focus {
    border-color: var(--vls-blue);
    box-shadow: 0 0 0 2px rgba(0, 24, 113, 0.08);
    outline: none;
}

.vls-language__flag {
    display: block;
    flex: 0 0 auto;
    height: 18px;
    object-fit: cover;
    width: 26px;
}

.vls-language__menu {
    background: var(--vls-white);
    border: 1px solid rgba(0, 24, 113, 0.08);
    border-radius: 5px;
    box-shadow: 0 14px 30px rgba(0, 24, 113, 0.12);
    list-style: none;
    margin: 6px 0 0;
    max-height: 320px;
    min-width: 158px;
    overflow-y: auto;
    opacity: 0;
    padding: 6px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(6px);
    transition: opacity 0.16s ease, transform 0.16s ease;
    z-index: 1040;
}

.vls-language:hover .vls-language__menu,
.vls-language[open] .vls-language__menu,
.vls-language:focus-within .vls-language__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.vls-language:hover .vls-chevron::before,
.vls-language[open] .vls-chevron::before,
.vls-language:focus-within .vls-chevron::before {
    transform: rotate(225deg) translateY(-1px);
}

.vls-language__option {
    align-items: center;
    border-radius: 4px;
    color: var(--vls-blue);
    display: flex;
    font-size: 12px;
    font-weight: 500;
    gap: 8px;
    padding: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.vls-language__option:hover,
.vls-language__option:focus,
.vls-language__option.is-active {
    background: rgba(0, 24, 113, 0.06);
    color: var(--vls-blue);
    outline: none;
}

.sp-vls-btn {
    align-items: center;
    display: inline-flex;
    font-size: 12px;
    height: 32px;
    justify-content: center;
    line-height: normal;
    border-radius: 2px;
    text-decoration: none;
    white-space: nowrap;
}

.sp-vls-btn--login {
    border: 1px solid #dddddd;
    color: var(--vls-blue);
    font-weight: 600;
    gap: 6px;
    width: 82px;
    border-radius: 5px;
}

.sp-vls-btn--account {
    background: var(--vls-red);
    color: var(--vls-white);
    font-weight: 700;
    width: 85px;
    border-radius: 5px;
}

.vls-btn:hover,
.vls-btn:focus {
    color: inherit;
}

.sp-vls-btn--account:hover,
.sp-vls-btn--account:focus {
    color: var(--vls-white);
}

.sp-vls-btn__icon {
    color: currentColor;
    flex: 0 0 13px;
    opacity: 0.55;
}


@media (min-width: 992px) {
    .sp-vls-nav__collapse.collapse:not(.show) {
        display: flex;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .sp-vls-nav__inner {
        margin: 0 24px;
    }

    .sp-vls-nav__brand {
        padding-right: 28px;
    }

    .sp-vls-nav__brand img {
        width: 120px;
    }

    .sp-vls-nav__link {
        padding-left: 10px;
        padding-right: 10px;
    }

    .sp-vls-nav__search {
        flex-basis: 120px;
        width: 120px;
    }
}

@media (max-width: 991.98px) {
    .vls-header {
        height: auto;
        min-height: 72px;
    }

    .sp-vls-nav,
    .sp-vls-nav__inner {
        height: auto;
        min-height: 72px;
    }

    .sp-vls-nav__inner {
        align-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        margin: 0;
        padding: 0 18px;
    }

    .sp-vls-nav__brand {
        min-height: 72px;
        padding-right: 0;
    }

    .sp-vls-nav__brand img {
        height: 42px;
        width: 120px;
    }

    .sp-vls-nav__toggle {
        align-items: center;
        border: 1px solid rgba(0, 24, 113, 0.16);
        border-radius: 6px;
        color: var(--vls-blue);
        display: inline-flex;
        height: 42px;
        justify-content: center;
        margin-left: auto;
        padding: 8px 10px;
        width: 50px;
    }

    .sp-vls-nav__toggle .sp-navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23001871' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: inline-block;
        height: 24px;
        width: 24px;
    }

    .sp-vls-nav__toggle:focus {
        box-shadow: 0 0 0 3px rgba(0, 24, 113, 0.12);
    }

    .sp-vls-nav__collapse.collapse:not(.show) {
        display: none;
    }

    .sp-vls-nav__collapse {
        align-items: stretch;
        background: var(--vls-white);
        border-top: 1px solid rgba(0, 24, 113, 0.08);
        display: flex;
        flex-basis: 100%;
        flex-direction: column;
        gap: 14px;
        height: auto;
        margin: 0 -18px;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        padding: 14px 18px 20px;
    }

    .sp-vls-nav__links,
    .sp-vls-nav__actions {
        align-items: stretch;
        flex-direction: column;
        height: auto;
        width: 100%;
    }

    .sp-vls-nav__links {
        gap: 2px;
        order: 2;
    }

    .sp-vls-nav__link {
        border-bottom: 0;
        border-radius: 6px;
        flex-direction: row;
        font-size: 14px;
        gap: 12px;
        height: auto;
        justify-content: flex-start;
        min-height: 46px;
        padding: 11px 12px;
        white-space: normal;
    }

    .sp-vls-nav__link img {
        flex: 0 0 22px;
    }

    .sp-vls-nav__link:hover,
    .sp-vls-nav__link:focus {
        background: rgba(0, 24, 113, 0.05);
    }

    .sp-vls-nav__item:hover>a.sp-vls-nav__link {
        border-bottom-color: transparent;
    }

    .sp-vls-nav__label {
        flex: 1 1 auto;
        justify-content: space-between;
    }

    .sp-vls-nav__item {
        width: 100%;
    }

    .sp-vls-nav__submenu {
        border: 0;
        border-left: 2px solid rgba(0, 24, 113, 0.12);
        border-radius: 0;
        box-shadow: none;
        display: none;
        margin: 2px 0 10px 23px;
        min-width: 0;
        opacity: 1;
        padding: 0;
        pointer-events: auto;
        position: static;
        transform: none;
        width: calc(100% - 23px);
    }

    .sp-vls-nav__item--has-menu:hover .sp-vls-nav__submenu,
    .sp-vls-nav__item--has-menu:focus-within .sp-vls-nav__submenu,
    .sp-vls-nav__item--has-menu.is-open .sp-vls-nav__submenu {
        display: block;
    }

    .sp-vls-nav__submenu-link {
        border-radius: 5px;
        font-size: 13px;
        padding: 9px 12px;
    }

    .sp-vls-nav__actions {
        display: grid;
        flex-basis: auto;
        gap: 10px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        justify-content: flex-start;
        order: 1;
        padding: 0;
    }

    .sp-vls-nav__search {
        flex-basis: auto;
        grid-column: 1 / -1;
        height: 42px;
        width: 100%;
    }

    .vls-language,
    .vls-language__toggle {
        width: 100%;
    }

    .vls-language__toggle {
        height: 42px;
    }

    .vls-language__menu {
        left: 0;
        right: auto;
        width: 100%;
    }

    .vls-btn--login,
    .sp-vls-btn--account {
        height: 42px;
        width: 100%;
    }

}


.search-wrapper {
    position: relative;
    display: inline-block;
}

.search-results {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 9999;

    display: none;

    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.search-results.show {
    display: block;
}

.search-item {
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #222;
    cursor: pointer;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-item:hover {
    background-color: #f5f5f5;
}

.search-highlight {
    font-weight: 700;
    color: #000;
}

/* Scrollbar Styling */
.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-results::-webkit-scrollbar-thumb {
    background: #bdbdbd;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Added by ThulasiManohar */
.fcl-breadcrumb {
    background: var(--vls-wild-sand);
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.fcl-breadcrumb__inner {
    align-items: center;
    color: #888;
    display: flex;
    font-size: 11px;
    gap: 8px;
    min-height: 43px;
    padding: 12px 44px;
}

.fcl-breadcrumb__inner a {
    color: inherit;
    text-decoration: none;
}

.fcl-breadcrumb__inner strong {
    color: #001871;
    font-weight: 600;
}

/* modified from https://portal.vanguardlogistics.com/apps/skin2/css/style-2020.css */

@charset "UTF-8";

@import
	url("https://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic&subset=latin,greek,latin-ext,cyrillic,greek-ext,vietnamese,cyrillic-ext")
	;
@import url('https://fonts.googleapis.com/css?family=Hind+Guntur:300,400,500,600,700&display=swap');

@font-face {
  font-family: Averta;
  font-weight: bold;
  font-style: normal;
  src: url('/apps/fonts/AvertaDemoPE-ExtraBold.eot');
  src: url('/apps/fonts/AvertaDemoPE-ExtraBold.otf') format('opentype'), 
       url('/apps/fonts/AvertaDemoPE-ExtraBold.woff') format('woff');  
}
@font-face {
  font-family: Averta;
  font-weight: normal;
  font-style: normal;
  src: url('/apps/fonts/AvertaDemoPECuttedDemo-Regular.eot');
  src: url('/apps/fonts/AvertaDemoPECuttedDemo-Regular.otf') format('opentype'),
	   url('/apps/fonts/AvertaDemoPECuttedDemo-Regular.woff') format('woff');  
}

footer .vls-fmc {
    font-size:8px !important;
}

html{
font-size: 100% !important;
}

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video
	{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline
}

article,aside,details,figcaption,figure,footer,header123,hgroup,menu,nav,section
	{
	display: block;
}

body {
	line-height: 1;
}

ol,ul {
	list-style: none;
}

blockquote,q {
	quotes: none;
}

blockquote:before,blockquote:after {
	content: "";
	content: none;
}

q:before,q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: 0 none;
}
/* global colors */
/*
 *
 * EXAMPLE:
 * blockquote{
 * color: color(blue);
 * background: color(orange, pale,.4);
 * border-color: color(orange, dark);
 * }
 */
/* Interior header123s */
h1 {
	font-family: 'Hind Guntur';
	color: #E03C31;
	font-size: 2.0em;
	line-height: 1.2em;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
}

h2 {
	font-family: 'Hind Guntur';
	color: #E03C31;
	font-size: 1.6em;
	line-height: 1.5em;
	font-weight: 700
}

h3 {
	font-family: 'Hind Guntur';
	color: #555555;
	font-size: 1.6em;
	line-height: 1.8em;
	font-weight: 800
}

h4 {
	font-family: 'Hind Guntur';
	color: #E03C31;
	font-size: 1.3em;
	line-height: 1.45em;
	font-weight: 700
}

h5 {
	font-family: 'Hind Guntur';
	color: #555555;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: bold
}

h6 {
	font-family: 'Hind Guntur'
	color: #555555;
	line-height: 1.8em;
	font-size: 1.2em;
	font-weight: 600
}

.table {
	color: #555555;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 600;
}

.table h1 {
	color: #E03C31;
	font-size: 16px;
	font-size: 1rem;
	font-weight: bold;
}

.social {
	float: left;
	margin: 0 40px;
	height: 1.25em;
}

.social .icon {
	background-image: url("../img/social-icons2.png");
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	height: 100%;
	width: 100%;
}

.social .icon.facebook {
	background-position: 0 0;
}

.social .icon.twitter {
	background-position: -20px 0;
}

.social .icon.linkedin {
	background-position: -40px 0;
}

.social .link {
	float: left;
	height: 20px;
	margin-right: 10px;
	position: relative;
	width: 20px;
}
.full_width {
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 100%;
	margin-left: 0%;
	margin-right: 0%;
}

.full_width:before,.full_width:after {
	content: '';
	display: table;
}

.full_width:after {
	clear: both;
}

.button {
	margin: 0.5em;
	padding: 5px 5px 0px 5px;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 16px;
	font-size: 1rem;
}

.button.outline {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: #E03C31;
	color: white;
	border: 2px solid #e03c31;
	background-color: white;
	color: #E03C31;
	border: 2px solid #e03c31;
}

.button.outline:hover {
	background-color: #E03C31;
	color: white;
}

.button.dark {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: #E03C31;
	color: white;
	border: 2px solid #e03c31;
}
.web-form select[size]{
	padding: 3px 5px 2px 5px;
	background-image: none;
}

.web-form select[size]:active{
	padding: 3px 5px 2px 5px;
	background-image: none;
}

.web-form select[size]:hover{
	padding: 3px 5px 2px 5px;
	background-image: none;
}

.web-form select[size]:disabled{
	padding: 3px 5px 2px 5px;
	background-image: none;
}

select {
	background-color: #fff;
	color: #000;
	border: 1px solid #e03c31;
	font-family: 'Hind Guntur';
	font-weight: normal;
	padding: 3px 24px 2px 5px;
	font-size: 14px;
	font-size: 0.875rem;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	border-radius: 4px;
	/* modified the image and back-ground position */
	background-image: url("../img/arrow-down-orange.svg");
	background-position: right center;
	background-repeat: no-repeat;
}

/* Added by Harry for header123 select box */
select::-ms-expand {
	display: none;
}



input:disabled,select:disabled,textarea:disabled {
	background-color: #F0F0F0;
	border:1px solid #B7B8B9;
	color: #555555;
}

input[readonly],select[readonly],textarea[readonly] {
	background-color: #F0F0F0;
	border:1px solid #B7B8B9;
	color: #555555;
}

select:disabled{
	background-image: url("../img/arrow-down-grey.svg");
}

input {
	/*border: 1px solid #e03c31;*/
	border: 0;
	padding: 5px 10px 2px 10px;
	font-size: 14px;
	font-size: 0.875rem;
	font-family: 'Hind Guntur';
	border-radius: 4px;
	border: 1px solid #e03c31;
}

input[type="search"] {
	max-width: 140px;
	cursor: pointer;
}

input[type="submit"],input[type="button"],input[type="reset"] {
	background-color: #FFFFFF;
	border: 1px solid #e03c31;
	color: #E03C31;
	cursor: pointer;
	padding-right: 24px;
	background-image: url("../img/arrow-right-orange.svg");
	background-position: right center;
	background-repeat: no-repeat;

}
input[type="file"] {	
	border: none;	
	color:#e03c31 !important;
	}


input[type="submit"]:hover,input[type="button"]:hover,input[type="reset"]:hover
{
	background-color: #E03C31;
	border: 1px solid #e03c31;
	color: #FFFFFF;	
	background-image: url("../img/arrow-right-white.svg");
	background-position: right center;
	background-repeat: no-repeat;
}

input[type="submit"]:focus,input[type="button"]:focus,input[type="reset"]:focus
{
	background-color: #E03C31;
	border: 1px solid #e03c31;
	color: #FFFFFF;	
	background-image: url("../img/arrow-right-white.svg");
	background-position: right center;
	background-repeat: no-repeat;
}

input[type="submit"]:disabled,input[type="button"]:disabled,input[type="reset"]:disabled
{
	background-image: url("../img/arrow-right-grey.svg");
	background-position: right center;
	background-repeat: no-repeat;
}

input[type="submit"]:enabled:active,input[type="button"]:enabled:active,input[type="reset"]:enabled:active
{
	background-image: url("../img/arrow-down-white.svg");
	background-position: right center;
	background-repeat: no-repeat;
}

textarea {
	padding: 5px 10px 2px 10px;
	font-size: 14px;
	font-size: 0.875rem;
	font-family: "Hind Guntur";
	border: 1px solid #e03c31;
	border-radius: 4px;
}

label {
	font-size: 16px;
	font-size: 1rem;
	font-weight: bold;
	color: #555555;
}

label.required {
	color: #E03C31;
}

label span.required {
	color: #E03C31;
}

label.special {
	color: #E03C31;
}

.slicknav_menu {
	display: none;
}

@media only screen and (max-width: 40em) {
	.slicknav_menu {
		display: block;
	}
}

.slicknav_menu .logo {
	float: left;
	padding-top: 0.5em;
	padding-left: 2%;
	color: white;
}

.slicknav_menu .logo img {
	height: 40px;
}

body .slicknav_nav a {
	padding: 10px 0px;
	margin: 0;
	color: white;
}

body .slicknav_nav li {
	padding-top: 5px;
	text-align: center;
}

body .slicknav_nav label {
	color: white;
}

header123,.header123 {
	background-color: #fff;
	position: relative;
	min-height: 5em;
	*zoom: 1;
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 100%;
	margin-left: 0%;
	margin-right: 0%
}

header123:before,header123:after,.header123:before,.header123:after {
	content: '';
	display: table
}

header123:after,.header123:after {
	clear: both
}

@media only screen and (max-width: 40em) {
	header123,.header123 {
		display: block;
		clear: both;
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		display: none
	}
	header123:first-child,.header123:first-child {
		margin-left: auto
	}
	header123:last-child,.header123:last-child {
		margin-right: auto
	}
}

header123 nav,.header123 nav {
	color: #E03C31;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	position: relative
}

@media only screen and (max-width: 40em) {
	header123 nav,.header123 nav {
		display: none
	}
}

header123 nav ul,.header123 nav ul {
	float: right;
	margin-top: 2.5em;
	list-style-type: none
}

@media only screen and (max-width: 40em) {
	header123 nav ul,.header123 nav ul {
		margin: 0
	}
}

header123 nav li,.header123 nav li {
	float: left;
	text-transform: uppercase
}

header123 nav li+li:before,.header123 nav li+li:before {
	content: " | ";
	padding: 0 10px;
	color: #555555;
	font-weight: bold
}

header123 nav li a,.header123 nav li a {
	text-decoration: none;
	color: #E03C31;
}

header123 nav li a:hover,.header123 nav li a:hover {
	text-decoration: underline;
	color: #555555
}

header123 nav .social,.header123 nav .social {
	float: right;
	margin-top: 2.3em
}

header123 nav .btn,.header123 nav .btn {
	float: right;
	margin-right: 40px;
	padding: 12px 12px 7px 12px;
	margin-top: 2em;
	text-transform: uppercase;
	border-radius: 4px;
}

header123 #mobile-nav,.header123 #mobile-nav {
	display: none
}

header123 .mobile-header123,.header123 .mobile-header123 {
	display: none
}

header123 .vg-logo,.header123 .vg-logo {
	min-height: 95px;
	float: left
}

@media only screen and (max-width: 40em) {
	header123 .vg-logo,.header123 .vg-logo {
		*zoom: 1;
		width: auto;
		max-width: 100%;
		float: none;
		display: block;
		margin-right: auto;
		margin-left: auto;
		padding-left: 0;
		padding-right: 0;
		display: block;
		clear: both;
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto
	}
	header123 .vg-logo:before,header123 .vg-logo:after,.header123 .vg-logo:before,.header123 .vg-logo:after
		{
		content: '';
		display: table
	}
	header123 .vg-logo:after,.header123 .vg-logo:after {
		clear: both
	}
	header123 .vg-logo:first-child,.header123 .vg-logo:first-child {
		margin-left: auto
	}
	header123 .vg-logo:last-child,.header123 .vg-logo:last-child {
		margin-right: auto
	}
}

header123 .vg-logo img,.header123 .vg-logo img {
	/*height: 65px;*/
	width: 185px;
	margin-top: 10px;
	margin-left: 12px
}

header123 subnav,header123 .subnav,.header123 subnav,.header123 .subnav {
	position: relative;
	*
	zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 100%;
	margin-left: 0%;
	margin-right: 0%;
	background-color: #E03C31;
	min-height: 3.25em;
	color: #fff;
	font-weight: lighter;
}

header123 subnav:before,header123 subnav:after,header123 .subnav:before,header123 .subnav:after,.header123 subnav:before,.header123 subnav:after,.header123 .subnav:before,.header123 .subnav:after
	{
	content: '';
	display: table
}

header123 subnav:after,header123 .subnav:after,.header123 subnav:after,.header123 .subnav:after
	{
	clear: both
}

header123 subnav .controls,header123 .subnav .controls,.header123 subnav .controls,.header123 .subnav .controls
	{
	position: absolute;
	/*-webkit-transform-style: preserve-3d;*/
	transform-style: preserve-3d;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	float: right;
	right: 0;
	text-transform:uppercase;
}

@media only screen and (max-width: 40em) {
	header123 subnav .controls,header123 .subnav .controls,.header123 subnav .controls,.header123 .subnav .controls
		{
		*zoom: 1;
		float: left;
		clear: none;
		text-align: inherit;
		width: 100%;
		margin-left: 0%;
		margin-right: 0%
	}
	header123 subnav .controls:before,header123 subnav .controls:after,header123 .subnav .controls:before,header123 .subnav .controls:after,.header123 subnav .controls:before,.header123 subnav .controls:after,.header123 .subnav .controls:before,.header123 .subnav .controls:after
		{
		content: '';
		display: table
	}
	header123 subnav .controls:after,header123 .subnav .controls:after,.header123 subnav .controls:after,.header123 .subnav .controls:after
		{
		clear: both
	}
}

header123 subnav .controls li,header123 .subnav .controls li,.header123 subnav .controls li,.header123 .subnav .controls li
	{
	float: left;
	margin-right: 1em;
	margin-left: 35px;
	margin-right: 45px
}


@media only screen and (max-width: 40em) {
	header123 subnav .controls li,header123 .subnav .controls li,.header123 subnav .controls li,.header123 .subnav .controls li
		{
		margin-left: 10px
	}
}

header123 subnav .controls li:first-child,header123 .subnav .controls li:first-child,.header123 subnav .controls li:first-child,.header123 .subnav .controls li:first-child
	{
	margin-right: 60px
}

header123 subnav .controls label,header123 .subnav .controls label,.header123 subnav .controls label,.header123 .subnav .controls label
	{
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: normal;
	color: #fff
}



header123 subnav a{
color: #E03C31 !important;
}
.page-container .main-content .web-right-link a{
color: #E03C31;

}
.page-container .main-content .left a{
color: #E03C31;

}

.page-container .main-content .web-crumb a{
color: #E03C31;
}




div.news.horizontal ul.article-container li.article,div.news.vertical ul.article-container li.article
	{
	background-color: #e6e7e8;
}

div.news.horizontal ul.article-container li.article div.content,div.news.vertical ul.article-container li.article div.content
	{
	*zoom: 1;
	width: auto;
	max-width: 97%;
	float: none;
	display: block;
	margin-right: auto;
	margin-left: auto;
	padding-left: 0;
	padding-right: 0;
	padding: 2em;
	position: relative;
}

div.news.horizontal ul.article-container li.article div.content:before,div.news.horizontal ul.article-container li.article div.content:after,div.news.vertical ul.article-container li.article div.content:before,div.news.vertical ul.article-container li.article div.content:after
	{
	content: '';
	display: table;
}

div.news.horizontal ul.article-container li.article div.content:after,div.news.vertical ul.article-container li.article div.content:after
	{
	clear: both;
}

div.news.horizontal ul.article-container li.article div.content span.date,div.news.vertical ul.article-container li.article div.content span.date
	{
	position: relative;
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 50%;
	margin-left: 0%;
	margin-right: 0%;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 300;
	color: #555555;
}

div.news.horizontal ul.article-container li.article div.content span.date:before,div.news.horizontal ul.article-container li.article div.content span.date:after,div.news.vertical ul.article-container li.article div.content span.date:before,div.news.vertical ul.article-container li.article div.content span.date:after
	{
	content: '';
	display: table;
}

div.news.horizontal ul.article-container li.article div.content span.date:after,div.news.vertical ul.article-container li.article div.content span.date:after
	{
	clear: both;
}

div.news.horizontal ul.article-container li.article div.content ul.socialshare,div.news.vertical ul.article-container li.article div.content ul.socialshare
	{
	position: absolute;
	transform-style: preserve-3d;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	position: relative;
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 50%;
	margin-left: 0%;
	margin-right: 0%;
	height: 1.25em;
}

div.news.horizontal ul.article-container li.article div.content ul.socialshare:before,div.news.horizontal ul.article-container li.article div.content ul.socialshare:after,div.news.vertical ul.article-container li.article div.content ul.socialshare:before,div.news.vertical ul.article-container li.article div.content ul.socialshare:after
	{
	content: '';
	display: table;
}

div.news.horizontal ul.article-container li.article div.content ul.socialshare:after,div.news.vertical ul.article-container li.article div.content ul.socialshare:after
	{
	clear: both;
}

div.news.horizontal ul.article-container li.article div.content ul.socialshare .icon,div.news.vertical ul.article-container li.article div.content ul.socialshare .icon
	{
	font-size: 13px;
	font-size: 0.8125rem;
	color: white;
	cursor: pointer;
}

div.news.horizontal ul.article-container li.article div.content ul.socialshare .icon.facebook::after,div.news.vertical ul.article-container li.article div.content ul.socialshare .icon.facebook::after
	{
	position: absolute;
	transform-style: preserve-3d;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-family: FontAwesome;
	position: absolute;
	content: "?";
}

div.news.horizontal ul.article-container li.article div.content ul.socialshare .icon.twitter::after,div.news.vertical ul.article-container li.article div.content ul.socialshare .icon.twitter::after
	{
	position: absolute;
	transform-style: preserve-3d;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-family: FontAwesome;
	position: absolute;
	content: "?";
}

div.news.horizontal ul.article-container li.article div.content ul.socialshare .icon.linkedin::after,div.news.vertical ul.article-container li.article div.content ul.socialshare .icon.linkedin::after
	{
	position: absolute;
	transform-style: preserve-3d;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-family: FontAwesome;
	position: absolute;
	content: "?";
}

div.news.horizontal ul.article-container li.article div.content ul.socialshare li.link,div.news.vertical ul.article-container li.article div.content ul.socialshare li.link
	{
	background: #555555;
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 31.33333%;
	margin-left: 0%;
	margin-right: 3%;
	position: relative;
	float: left;
	width: 20px;
	height: 20px;
}

div.news.horizontal ul.article-container li.article div.content ul.socialshare li.link:before,div.news.horizontal ul.article-container li.article div.content ul.socialshare li.link:after,div.news.vertical ul.article-container li.article div.content ul.socialshare li.link:before,div.news.vertical ul.article-container li.article div.content ul.socialshare li.link:after
	{
	content: '';
	display: table;
}

div.news.horizontal ul.article-container li.article div.content ul.socialshare li.link:after,div.news.vertical ul.article-container li.article div.content ul.socialshare li.link:after
	{
	clear: both;
}

div.news.horizontal ul.article-container li.article div.content ul.socialshare li.link:last-child,div.news.vertical ul.article-container li.article div.content ul.socialshare li.link:last-child
	{
	margin-right: 0%;
}

@media only screen and (max-width: 40em) {
	div.news.horizontal ul.article-container li.article div.content ul.socialshare li.link,div.news.vertical ul.article-container li.article div.content ul.socialshare li.link
		{
		width: 30px;
		height: 30px;
	}
}

div.news.horizontal ul.article-container li.article div.content h2.title,div.news.vertical ul.article-container li.article div.content h2.title
	{
	margin-top: 1.5em;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 800;
	color: #E03C31;
	padding: 20px 0;
	border-bottom: 1px solid white;
}

div.news.horizontal ul.article-container li.article div.content p.excerpt,div.news.vertical ul.article-container li.article div.content p.excerpt
	{
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #555555;
	line-height: 20px;
	padding: 20px 0;
}

div.news.horizontal ul.article-container li.article div.content a.readmore,div.news.vertical ul.article-container li.article div.content a.readmore
	{
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #252728;
	text-decoration: none;
}

div.news.horizontal ul.article-container li.article div.content a.readmore:hover,div.news.vertical ul.article-container li.article div.content a.readmore:hover
	{
	text-decoration: underline;
}

div.news.horizontal ul.article-container li.article:nth-child(odd),div.news.vertical ul.article-container li.article:nth-child(odd)
	{
	background-color: #cccccc;
}

.news-controls {
	position: absolute;
	width: 100%;
	height: 50px;
	margin-top: -180px;
}

.news-controls .control {
	min-height: 100%;
}

.news-controls .control i {
	font-size: 48px;
	font-size: 3rem;
	color: #f45272;
}

.news-controls .control i:hover {
	color: #E03C31;
}

.news-controls .control.left {
	margin-left: 2%;
	float: left;
}

.news-controls .control.right {
	margin-right: 2%;
	float: right;
}

div.news.horizontal {
	*zoom: 1;
	width: auto;
	max-width: 100%;
	float: none;
	display: block;
	margin-right: auto;
	margin-left: auto;
	padding-left: 0;
	padding-right: 0;
	min-height: 10em;
	border-bottom: 1px solid white;
}

div.news.horizontal:before,div.news.horizontal:after {
	content: '';
	display: table;
}

div.news.horizontal:after {
	clear: both;
}

#left.left.control {
	text-align: center;
}

@media only screen and (max-width: 60em) {
	#left.left.control {
		width: auto;
	}
}

#left.left.control .fa.fa-caret-up {
	width: 100%;
	background-color: #cccccc;
	color: #E03C31;
	font-size: 30px;
}

#right.right.control {
	text-align: center;
}

@media only screen and (max-width: 60em) {
	#right.right.control {
		width: auto;
	}
}

#right.right.control .fa.fa-caret-down {
	width: 100%;
	background-color: #cccccc;
	color: #E03C31;
	font-size: 30px;
}

div.news.vertical .bx-wrapper {
	margin: 0;
	float: right;
}

@media only screen and (max-width: 40em) {
	div.news.vertical .bx-wrapper {
		margin: 0 auto;
		float: none;
	}
}

div.news.vertical ul.article-container {
	background-color: #cccccc;
}

div.news.vertical ul.article-container li.article {
	background-color: #e6e7e8;
}

div.news.vertical ul.article-container li.article div.content {
	*zoom: 1;
	width: auto;
	max-width: 97%;
	float: none;
	display: block;
	margin-right: auto;
	margin-left: auto;
	padding-left: 0;
	padding-right: 0;
	padding: 2em;
	position: relative;
}

div.news.vertical ul.article-container li.article div.content:before,div.news.vertical ul.article-container li.article div.content:after
	{
	content: '';
	display: table;
}

div.news.vertical ul.article-container li.article div.content:after {
	clear: both;
}

div.news.vertical ul.article-container li.article div.content span.date
	{
	position: relative;
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 50%;
	margin-left: 0%;
	margin-right: 0%;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 300;
	color: #555555;
}

div.news.vertical ul.article-container li.article div.content span.date:before,div.news.vertical ul.article-container li.article div.content span.date:after
	{
	content: '';
	display: table;
}

div.news.vertical ul.article-container li.article div.content span.date:after
	{
	clear: both;
}

div.news.vertical ul.article-container li.article div.content ul.socialshare
	{
	position: absolute;
	transform-style: preserve-3d;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	position: relative;
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 50%;
	margin-left: 0%;
	margin-right: 0%;
	height: 1.25em;
}

div.news.vertical ul.article-container li.article div.content ul.socialshare:before,div.news.vertical ul.article-container li.article div.content ul.socialshare:after
	{
	content: '';
	display: table;
}

div.news.vertical ul.article-container li.article div.content ul.socialshare:after
	{
	clear: both;
}

div.news.vertical ul.article-container li.article div.content ul.socialshare .icon
	{
	font-size: 13px;
	font-size: 0.8125rem;
	color: white;
	cursor: pointer;
}

div.news.vertical ul.article-container li.article div.content ul.socialshare .icon.facebook::after
	{
	position: absolute;
	transform-style: preserve-3d;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-family: FontAwesome;
	position: absolute;
	content: "?";
}

div.news.vertical ul.article-container li.article div.content ul.socialshare .icon.twitter::after
	{
	position: absolute;
	transform-style: preserve-3d;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-family: FontAwesome;
	position: absolute;
	content: "?";
}

div.news.vertical ul.article-container li.article div.content ul.socialshare .icon.linkedin::after
	{
	position: absolute;
	transform-style: preserve-3d;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-family: FontAwesome;
	position: absolute;
	content: "?";
}

div.news.vertical ul.article-container li.article div.content ul.socialshare li.link
	{
	background: #555555;
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 31.33333%;
	margin-left: 0%;
	margin-right: 3%;
	position: relative;
	float: left;
	width: 20px;
	height: 20px;
}

div.news.vertical ul.article-container li.article div.content ul.socialshare li.link:before,div.news.vertical ul.article-container li.article div.content ul.socialshare li.link:after
	{
	content: '';
	display: table;
}

div.news.vertical ul.article-container li.article div.content ul.socialshare li.link:after
	{
	clear: both;
}

div.news.vertical ul.article-container li.article div.content ul.socialshare li.link:last-child
	{
	margin-right: 0%;
}

@media only screen and (max-width: 40em) {
	div.news.vertical ul.article-container li.article div.content ul.socialshare li.link
		{
		width: 30px;
		height: 30px;
	}
}

div.news.vertical ul.article-container li.article div.content h2.title {
	margin-top: 1.5em;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 800;
	color: #E03C31;
	padding: 20px 0;
	border-bottom: 1px solid white;
}

div.news.vertical ul.article-container li.article div.content p.excerpt
	{
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #555555;
	line-height: 20px;
	padding: 20px 0;
}

div.news.vertical ul.article-container li.article div.content a.readmore
	{
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #252728;
	text-decoration: none;
}

div.news.vertical ul.article-container li.article div.content a.readmore:hover
	{
	text-decoration: underline;
}

div.news.vertical ul.article-container li.article:nth-child(odd) {
	background-color: #cccccc;
}

.secondary-menu {
	position: relative;
	background: #555555;
	min-height: 3em;
	border-top: 2px solid #ccc;
	border-bottom: 2px solid #ccc
}

.secondary-menu .secondary-menu-content {
	*zoom: 1;
	width: auto;
	max-width: 80%;
	float: none;
	display: block;
	margin-right: auto;
	margin-left: auto;
	padding-left: 0;
	padding-right: 0;
	margin: 0 auto
}

.secondary-menu .secondary-menu-content:before,.secondary-menu .secondary-menu-content:after
	{
	content: '';
	display: table
}

.secondary-menu .secondary-menu-content:after {
	clear: both
}

.secondary-menu-content>ul {
	list-style-type: none
}

.secondary-menu-content>ul>li {
	color: #fff;
	cursor: pointer;
	float: left;
	padding: 17px 0;
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 20%;
	margin-left: 0%;
	margin-right: 0%;
	text-align: center;
	border-left: 2px solid #ccc
}

.secondary-menu-content>ul>li:before,.secondary-menu-content>ul>li:after
	{
	content: '';
	display: table
}

.secondary-menu-content>ul>li:after {
	clear: both
}

.secondary-menu-content>ul>li:nth-child(5n) {
	float: right
}

.secondary-menu-content>ul>li:nth-child(5n+1) {
	clear: both
}

@media only screen and (max-width: 40em) {
	.secondary-menu-content>ul>li {
		display: block;
		clear: both;
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		border: none
	}
	.secondary-menu-content>ul>li:first-child {
		margin-left: auto
	}
	.secondary-menu-content>ul>li:last-child {
		margin-right: auto
	}
}

.secondary-menu-content>ul>li:hover,.secondary-menu-content>ul>li.active
	{
	background-color: #252728
}

.secondary-menu-content>ul>li:nth-child(5n) {
	border-right: none
}

@media only screen and (max-width: 40em) {
	.secondary-menu-content>ul>li:nth-child(5n) {
		border: none
	}
}

.secondary-menu-content>ul>li:last-child {
	border-right: 2px solid #ccc
}

@media only screen and (max-width: 40em) {
	.secondary-menu-content>ul>li:last-child {
		border: none
	}
}

.secondary-menu-content>ul>li a {
	text-decoration: none;
	color: #fff
}

.secondary-menu-drop-down {
	background-color: #fff;
	font-size: 14px;
	font-size: 0.875rem;
	color: #555555;
	text-align: left
}

.secondary-menu-drop-down h5 {
	font-weight: 800;
	font-size: 14px;
	font-size: 0.875rem;
	color: #555555;
	text-transform: uppercase;
	padding-top: 8px;
	padding-bottom: 8px
}

.secondary-menu-drop-down .inner,.secondary-menu-drop-down .inner-small
	{
	*zoom: 1;
	width: auto;
	max-width: 80%;
	float: none;
	display: block;
	margin-right: auto;
	margin-left: auto;
	padding-left: 0;
	padding-right: 0;
	clear: both;
	padding-top: 30px;
	display: none
}

.secondary-menu-drop-down .inner:before,.secondary-menu-drop-down .inner:after,.secondary-menu-drop-down .inner-small:before,.secondary-menu-drop-down .inner-small:after
	{
	content: '';
	display: table
}

.secondary-menu-drop-down .inner:after,.secondary-menu-drop-down .inner-small:after
	{
	clear: both
}

.secondary-menu-drop-down .inner .linkContainer,.secondary-menu-drop-down .inner-small .linkContainer
	{
	display: table;
	margin: 0 auto
}

.secondary-menu-drop-down .inner .linkContainer .linkColumn,.secondary-menu-drop-down .inner-small .linkContainer .linkColumn
	{
	display: table-cell;
	vertical-align: top;
	padding-left: 40px
}

.secondary-menu-drop-down .inner .linkContainer .linkColumn:first-child,.secondary-menu-drop-down .inner-small .linkContainer .linkColumn:first-child
	{
	padding-left: 0px
}

.secondary-menu-drop-down .inner ul.linkSection,.secondary-menu-drop-down .inner-small ul.linkSection
	{
	float: left;
	margin-left: 30px
}

.secondary-menu-drop-down .inner ul.linkSection li,.secondary-menu-drop-down .inner-small ul.linkSection li
	{
	padding: 0px;
	margin: 15px 0px;
	text-transform: uppercase;
	font-weight: bold
}

.secondary-menu-drop-down .inner ul.linkSection li ul.linkList,.secondary-menu-drop-down .inner-small ul.linkSection li ul.linkList
	{
	padding-left: 15px
}

.secondary-menu-drop-down .inner ul.linkSection li ul.linkList li,.secondary-menu-drop-down .inner-small ul.linkSection li ul.linkList li
	{
	padding: 0px;
	margin: 15px 0px;
	text-transform: none;
	font-weight: normal
}

.secondary-menu-drop-down .inner ul.linkSection a,.secondary-menu-drop-down .inner ul.linkSection a:link,.secondary-menu-drop-down .inner ul.linkSection a:active,.secondary-menu-drop-down .inner ul.linkSection a:visited,.secondary-menu-drop-down .inner-small ul.linkSection a,.secondary-menu-drop-down .inner-small ul.linkSection a:link,.secondary-menu-drop-down .inner-small ul.linkSection a:active,.secondary-menu-drop-down .inner-small ul.linkSection a:visited
	{
	color: #555555;
	text-decoration: none
}

.secondary-menu-drop-down .inner ul.linkSection a:hover,.secondary-menu-drop-down .inner-small ul.linkSection a:hover
	{
	color: #E03C31
}

.secondary-menu-drop-down .inner ul.linkSection:first-child,.secondary-menu-drop-down .inner-small ul.linkSection:first-child
	{
	margin-left: 0px
}

.secondary-menu-drop-down li {
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 15px
}

.secondary-menu-content .sec-dd {
	position: relative;
	width: 100%;
	background-color: #f1f2f2;
	top: 32px;
	z-index: 2999;
	text-align: left;
	padding: 10px;
	text-transform: uppercase;
	font-size: 0.9em;
	font-weight: bold;
	line-height: 28px;
	display: none
}

.secondary-menu-content .sec-dd a,.secondary-menu-content .sec-dd a:link,.secondary-menu-content .sec-dd a:active,.secondary-menu-content .sec-dd a:visited
	{
	color: #555555;
	text-decoration: none
}

.secondary-menu-content .sec-dd a:hover {
	color: #E03C31;
	text-decoration: none
}

table {
	width: 100%;
	border-collapse: collapse;
	border-bottom: 1px solid #555555;
}
/* Zebra striping */
tr:nth-of-type(odd) {
	background: #dddddd;
}

th {
	background-color: #E03C31;
	color: white;
	padding: 5px;
}

td,th {
	border: 0;
	text-align: left;
	font-weight: 600;
	font-size: 13px;
	font-size: 0.8125rem;
}

td {
	padding: 15px 5px;
}

.above-table {
	background-color: #f0f0f0;
	padding-top: 10px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	font-weight: bold;
	font-size: 16px;
	font-size: 1.2rem;
	color: #555555;
}

.above-table .value {
	color: #E03C31;
}

.above-table .left {
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 50%;
	margin-left: 0%;
	margin-right: 0%;
}

.above-table .left:before,.above-table .left:after {
	content: '';
	display: table;
}

.above-table .left:after {
	clear: both;
}

.above-table .right {
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 50%;
	margin-left: 0%;
	margin-right: 0%;
}

.above-table .right:before,.above-table .right:after {
	content: '';
	display: table;
}

.above-table .right:after {
	clear: both;
}
/*
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 760px) , ( min-device-width : 768px)
	and (max-device-width: 1024px) {
	/* Force table to not be like tables anymore */
	table,thead,tbody,th,td,tr {
		display: block;
	}
	/* Hide table header123s (but not display: none;, for accessibility) */
	thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	tr {
		border: 1px solid #ccc;
	}
	td {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 50%;
	}
	td:before {
		/* Now like a table header123 */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
	}
}
/* Page specific imports */
.hero {
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 100%;
	margin-left: 0%;
	margin-right: 0%;
	background-repeat: no-repeat;
	background-position: center center;
	min-height: 400px;
	background-size: cover;
	position: relative;
}

.hero:before,.hero:after {
	content: '';
	display: table;
}

.hero:after {
	clear: both;
}

.hero .hero-content {
	*zoom: 1;
	width: auto;
	max-width: 80%;
	float: none;
	display: block;
	margin-right: auto;
	margin-left: auto;
	padding-left: 0;
	padding-right: 0;
}

.hero .hero-content:before,.hero .hero-content:after {
	content: '';
	display: table;
}

.hero .hero-content:after {
	clear: both;
}

@media only screen and (max-width: 40em) {
	.hero .hero-content {
		display: block;
		clear: both;
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.hero .hero-content:first-child {
		margin-left: auto;
	}
	.hero .hero-content:last-child {
		margin-right: auto;
	}
}

.hero .hero-content h1 {
	font-size: 64px;
	font-size: 4rem;
	font-weight: 800;
	font-style: italic;
	margin-top: 45px;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.hero .hero-content p {
	color: #E03C31;
	font-weight: bold;
	font-size: 17px;
	font-size: 1.0625rem;
	margin-bottom: 20px;
}

.hero .hero-content .hero-btn {
	display: block;
	width: 240px;
	height: 49px;
	background-color: #E03C31;
	border: 3px solid #e03c31;
	color: white;
	font-weight: bold;
	font-size: 18px;
	font-size: 1.125rem;
	padding-left: 10px;
	padding-top: 13px;
	cursor: pointer;
}

.hero .hero-content .hero-btn i {
	float: right;
	margin-right: 1em;
}

.hero .hero-content .hero-drop-down {
	width: 240px;
	background-color: white;
	padding: 10px;
	position: absolute;
	z-index: 999;
}

@media only screen and (max-width: 40em) {
	.hero .hero-content .hero-drop-down {
		position: relative;
	}
}

.hero .hero-content .hero-tool {
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 22.75%;
	margin-left: 0%;
	margin-right: 3%;
}

.hero .hero-content .hero-tool:before,.hero .hero-content .hero-tool:after
	{
	content: '';
	display: table;
}

.hero .hero-content .hero-tool:after {
	clear: both;
}

.hero .hero-content .hero-tool:nth-child(4n) {
	margin-right: 0%;
	float: right;
}

.hero .hero-content .hero-tool:nth-child(4n + 1) {
	clear: both;
}

@media only screen and (max-width: 40em) {
	.hero .hero-content .hero-tool {
		display: block;
		clear: both;
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 1em;
	}
	.hero .hero-content .hero-tool:first-child {
		margin-left: auto;
	}
	.hero .hero-content .hero-tool:last-child {
		margin-right: auto;
	}
}

.page-container:before,.page-container:after {
	content: '';
	display: table;
	clear: both;
}

.page-container {
	/*  position: relative;*/
	/*  @include span(1/1);*/
	
}

@media only screen {
	.page-container aside,.page-container .aside {
		display: table-cell;
		vertical-align: top;
		position: relative;
		background-color: white;
		min-width: 240px;
		max-width: 250px;
		float: left;
	}
}

@media only screen and (max-width: 40em) {
	.page-container aside,.page-container .aside {
		display: block;
		clear: both;
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.page-container aside:first-child,.page-container .aside:first-child {
		margin-left: auto;
	}
	.page-container aside:last-child,.page-container .aside:last-child {
		margin-right: auto;
	}
}

@media only screen {
	.page-container aside .vanguard-tool,.page-container .aside .vanguard-tool
		{
		margin: 1em 0;
		float: none;
		width: 220px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0px;
		padding-right: 0px;
	}
	.page-container aside .vanguard-tool .vanguard-tool-btn,.page-container .aside .vanguard-tool .vanguard-tool-btn
		{
		display: block;
		width: 220px;
		height: 40px;
		background-color: white;
		border: 3px solid #e03c31;
		color: #555555;
		font-weight: bold;
		font-size: 16px;
		font-size: 1rem;
		padding-left: 10px;
		padding-top: 9px;
		cursor: pointer;
	}
	.page-container aside .vanguard-tool .vanguard-tool-btn i,.page-container .aside .vanguard-tool .vanguard-tool-btn i
		{
		float: right;
		margin-right: 1em;
	}
	.page-container aside .vanguard-tool .vanguard-tool-btn .text,.page-container .aside .vanguard-tool .vanguard-tool-btn .text
		{
		float: left;
		text-transform: uppercase;
	}
	.page-container aside .vanguard-tool .vanguard-tool-btn .arrow,.page-container .aside .vanguard-tool .vanguard-tool-btn .arrow
		{
		height: 18px;
		width: 18px;
		float: right;
		color: #E03C31;
		margin-top: -4px;
		font-size: 1.4em;
	}
	.page-container aside .vanguard-tool .vanguard-tool-btn .arrow::after,.page-container .aside .vanguard-tool .vanguard-tool-btn .arrow::after
		{
		content: "\25B8";
	}
	.page-container aside .vanguard-tool .vanguard-tool-btn.open,.page-container .aside .vanguard-tool .vanguard-tool-btn.open
		{
		background-color: #E03C31;
		color: white;
	}
	.page-container aside .vanguard-tool .vanguard-tool-btn.open .arrow::after,.page-container .aside .vanguard-tool .vanguard-tool-btn.open .arrow::after
		{
		color: white;
		content: "\25BE";
	}
}

@media only print {
	.page-container aside,.page-container .aside {
		display: none;
	}
}

.drop-down-text {
	font-size: 16px;
	font-size: 1rem;
	color: #555555
}

.drop-down-text .drop-down-item {
	padding: 10px;
	border-top: solid 1px #e6e7e8
}

.drop-down-text .drop-down-item a,.drop-down-text .drop-down-item a:link,.drop-down-text .drop-down-item a:visited,.drop-down-text .drop-down-item a:active,.drop-down-text .drop-down-item a:hover
	{
	color: #555555;
	text-decoration: none
}

.drop-down-text .drop-down-sep {
	padding: 10px;
	font-style: italic;
	border-top: solid 1px #878c8e
}

.drop-down-text .drop-down-item:first-child {
	border-top: none
}

.drop-down-text {
	width: auto;
	padding: 0 !important;
}

.drop-down-menu {
	font-size: 0.9em;
	background-color: #dddddd;
	width: 220px;
	padding: 0px 10px;
}

.drop-down-menu .drop-down-item {
	border-top: none;
	padding: 10px 0px;
	font-weight: bold;
}

.drop-down-menu .drop-down-sep {
	border-top: solid 1px #000000;
	padding-top: 10px;
	font-style: italic;
}

@media only screen {
	.page-container .aside .vanguard-sub-tool,.page-container .aside.vanguard-sub-tool
		{
		margin: auto;
		float: none;
		width: 100%;
		padding-left: 0px;
		padding-right: 0px
	}
	.page-container aside .vanguard-sub-tool .vanguard-sub-tool-btn,.page-container .aside .vanguard-sub-tool .vanguard-sub-tool-btn
		{
		display: block;
		width: 100%;
		height: 40px;
		background-color: #dddddd;
		border-top: 1px solid #aaaaaa;
		color: #555555;
		font-weight: bold;
		font-size: 16px;
		font-size: 0.9rem;
		padding-left: 0px;
		padding-top: 9px;
		cursor: pointer
	}
	div.drop-down-menu div.vanguard-sub-tool.last .vanguard-sub-tool-btn {
		border-bottom: 1px solid #aaaaaa;
	}
	.page-container aside .vanguard-sub-tool .vanguard-sub-tool-btn i,.page-container .aside .vanguard-sub-tool .vanguard-sub-tool-btn i
		{
		float: right;
		margin-right: 0.3em;
		color: #ffffff;
	}
	.page-container aside .vanguard-sub-tool .vanguard-sub-tool-btn.open i,.page-container .aside .vanguard-sub-tool .vanguard-sub-tool-btn.open i
		{
		color: #aaaaaa;
	}
	.page-container aside .vanguard-sub-tool .vanguard-sub-tool-btn.open,.page-container .aside .vanguard-sub-tool .vanguard-sub-tool-btn.open
		{
		color: #E03C31;
	}
	.page-container aside .vanguard-sub-tool .vanguard-sub-tool-btn .arrow,.page-container .aside .vanguard-sub-tool .vanguard-sub-tool-btn .arrow
		{
		height: 18px;
		width: 18px;
		float: right;
		color: #ffffff;
		margin-top: -4px;
		font-size: 1.4em;
	}
	.page-container aside .vanguard-sub-tool .vanguard-sub-tool-btn .arrow::after,.page-container .aside .vanguard-sub-tool .vanguard-sub-tool-btn .arrow::after
		{
		content: "\25B8";
	}	
	.page-container aside .vanguard-sub-tool .vanguard-sub-tool-btn.open .arrow::after,.page-container .aside .vanguard-sub-tool .vanguard-sub-tool-btn.open .arrow::after
		{
		color: #aaaaaa;
		content: "\25BE";
	}
}

@media only print {
	.page-container aside,.page-container .aside {
		display: none
	}
}

.drop-down-sub-text {
	font-size: 16px;
	font-size: 0.9rem;
	color: #555555
}

.drop-down-sub-text .drop-down-sub-item {
	padding: 10px;
	border-top: solid 1px #e6e7e8
}

.drop-down-sub-text .drop-down-sub-item a,.drop-down-sub-text .drop-down-sub-item a:link,.drop-down-sub-text .drop-down-sub-item a:visited,.drop-down-sub-text .drop-down-sub-item a:active
	{
	color: #555555;
	text-decoration: none
}

.drop-down-sub-text .drop-down-sub-item a:hover {
	color: #E03C31;
	text-decoration: none
}

.drop-down-sub-text .drop-down-sub-sep {
	padding: 10px;
	font-style: italic;
	border-top: solid 1px #878c8e
}

.drop-down-sub-text .drop-down-sub-item:first-child {
	border-top: none
}

.drop-down-sub-menu {
	font-size: 0.9em;
	background-color: #dddddd;
	width: 200px;
	padding: 0px 0px;
}

.drop-down-sub-menu .drop-down-sub-item {
	border-top: none;
	padding: 10px 0px;
	font-weight: normal;
}

.drop-down-sub-menu .drop-down-sub-sep {
	border-top: solid 1px #000000;
	padding-top: 10px;
	font-style: italic;
}

.vanguard-tool-drop-down,.vanguard-sub-tool-drop-down {
	padding-bottom: 0px;
	margin-bottom: 0px;
	display: none;
	padding-top: 0px;
	margin-top: 0px;
	clear: both;
}

.seperator{
	border-top: solid 1px #000000 !important;
	padding-top: 10px !important;
}



.page-container .main-content {
	background-color: white;	
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	/*width: calc(100% - 250px);*/
	width:100%;
	margin-left: 0%;
	margin-right: 0%;
	padding:1.5em;
	padding:2%;
}

::i-block-chrome,.page-container .main-content {
 	width: 100%;
}

.page-container .main-content:before,.page-container .main-content:after
	{
	content: '';
	display: table;
}

.page-container .main-content:after {
	clear: both;
}

@media only screen and (max-width: 40em) {
	.page-container .main-content {
		display: block;
		clear: both;
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.page-container .main-content:first-child {
		margin-left: auto;
	}
	.page-container .main-content:last-child {
		margin-right: auto;
	}
}

.page-container .main-content p {
	margin: 0.5em 0;
	white-space: pre-line;
	font-family:'Hind Guntur'!important;
}

.page-container .vertical-news-container {
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 25%;
	margin-left: 0%;
	margin-right: 0%;
	max-width: 320px;
	float: right;
}

.page-container .vertical-news-container:before,.page-container .vertical-news-container:after
	{
	content: '';
	display: table;
}

.page-container .vertical-news-container:after {
	clear: both;
}

@media only screen and (max-width: 40em) {
	.page-container .vertical-news-container {
		display: block;
		clear: both;
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.page-container .vertical-news-container:first-child {
		margin-left: auto;
	}
	.page-container .vertical-news-container:last-child {
		margin-right: auto;
	}
}

.page-container .qoute-container {
	background-color: #e6e7e8;
	margin: 1em auto;
	*zoom: 1;
	width: auto;
	max-width: 75%;
	float: none;
	display: block;
	margin-right: auto;
	margin-left: auto;
	padding-left: 0;
	padding-right: 0;
}

.page-container .qoute-container:before,.page-container .qoute-container:after
	{
	content: '';
	display: table;
}

.page-container .qoute-container:after {
	clear: both;
}

@media only screen and (max-width: 40em) {
	.page-container .qoute-container {
		*zoom: 1;
		width: auto;
		max-width: 90%;
		float: none;
		display: block;
		margin-right: auto;
		margin-left: auto;
		padding-left: 0;
		padding-right: 0;
	}
	.page-container .qoute-container:before,.page-container .qoute-container:after
		{
		content: '';
		display: table;
	}
	.page-container .qoute-container:after {
		clear: both;
	}
}

.page-container .qoute-container p {
	padding: 1.5em;
	color: #E03C31;
	font-style: italic;
	font-weight: 600;
}

.page-container .image-container {
	margin: 1.5em 0;
	background-color: #555555;
	position: relative;
}

.page-container .image-container img {
	*zoom: 1;
	width: auto;
	max-width: 100%;
	float: none;
	display: block;
	margin-right: auto;
	margin-left: auto;
	padding-left: 0;
	padding-right: 0;
}

.page-container .image-container img:before,.page-container .image-container img:after
	{
	content: '';
	display: table;
}

.page-container .image-container img:after {
	clear: both;
}

.page-container .image-container .image-info {
	padding: 1.5em;
	*zoom: 1;
	width: auto;
	max-width: 90%;
	float: none;
	display: block;
	margin-right: auto;
	margin-left: auto;
	padding-left: 0;
	padding-right: 0;
}

.page-container .image-container .image-info:before,.page-container .image-container .image-info:after
	{
	content: '';
	display: table;
}

.page-container .image-container .image-info:after {
	clear: both;
}

.page-container .image-container .image-info .img-title {
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 22.75%;
	margin-left: 0%;
	margin-right: 3%;
}

.page-container .image-container .image-info .img-title:before,.page-container .image-container .image-info .img-title:after
	{
	content: '';
	display: table;
}

.page-container .image-container .image-info .img-title:after {
	clear: both;
}

.page-container .image-container .image-info .img-title:last-child {
	margin-right: 0%;
}

@media only screen and (max-width: 40em) {
	.page-container .image-container .image-info .img-title {
		display: block;
		clear: both;
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.page-container .image-container .image-info .img-title:first-child {
		margin-left: auto;
	}
	.page-container .image-container .image-info .img-title:last-child {
		margin-right: auto;
	}
}

.page-container .image-container .image-info .img-title h1 {
	color: white;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 600;
}

.page-container .image-container .image-info .img-description {
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 74.25%;
	margin-left: 0%;
	margin-right: 3%;
}

.page-container .image-container .image-info .img-description:before,.page-container .image-container .image-info .img-description:after
	{
	content: '';
	display: table;
}

.page-container .image-container .image-info .img-description:after {
	clear: both;
}

.page-container .image-container .image-info .img-description:last-child
	{
	margin-right: 0%;
}

@media only screen and (max-width: 40em) {
	.page-container .image-container .image-info .img-description {
		display: block;
		clear: both;
		float: none;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.page-container .image-container .image-info .img-description:first-child
		{
		margin-left: auto;
	}
	.page-container .image-container .image-info .img-description:last-child
		{
		margin-right: auto;
	}
}

.page-container .image-container .image-info .img-description p {
	color: white;
}

.page-container .content-box {
	border-top: 3px solid #e03c31;
	background-color: #F0F0F0;
	padding-top: 40px;
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 50px;
	border-radius:5px;
}

.page-container .content-box .left {
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 50%;
	margin-left: 0%;
	margin-right: 0%;
}




	
.page-container .content-box .left:before,.page-container .content-box .left:after
	{
	content: '';
	display: table;
}

.page-container .content-box .left:after {
	clear: both;
}

@media only screen and (max-width: 60em) {
	.page-container .content-box .left {
		*zoom: 1;
		float: left;
		clear: none;
		text-align: inherit;
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
	}
	.page-container .content-box .left:before,.page-container .content-box .left:after
		{
		content: '';
		display: table;
	}
	.page-container .content-box .left:after {
		clear: both;
	}
}

.page-container .content-box .right {
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 50%;
	margin-left: 0%;
	margin-right: 0%;
}


.page-container .content-box .right:before,.page-container .content-box .right:after
	{
	content: '';
	display: table;
}

.page-container .content-box .right:after {
	clear: both;
}

@media only screen and (max-width: 60em) {
	.page-container .content-box .right {
		*zoom: 1;
		float: left;
		clear: none;
		text-align: inherit;
		width: 100%;
		margin-left: 0%;
		margin-right: 0%;
	}
	.page-container .content-box .right:before,.page-container .content-box .right:after
		{
		content: '';
		display: table;
	}
	.page-container .content-box .right:after {
		clear: both;
	}
}

.page-container .content-box label {
	display: block;
	margin-bottom: 8px;
}

.page-container .content-box input {
	width: 90%;
	margin-bottom: 30px;
	margin-right: 10px;
}

.page-container .content-box select {
	margin-bottom: 30px;
	margin-right: 10px;
}

.page-container .content-box textarea {
	width: 90%;
	margin-bottom: 15px;
}

.page-container .contact-box h5 {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: bold;
	color: #555555;
}

.page-container .content-box.sub-content-box {
	background-color: #E03C31;
	color: white;
	padding: 25px 50px 0 50px;
	border-top: 0;
}

.page-container .content-box.sub-content-box label {
	color: white;
}

.page-container .terms h5 {
	margin-top: 20px;
}

.page-container .terms h2 {
	margin-top: 70px;
}

.page-container .terms .letters {
	margin-top: 30px;
}

.page-container .terms .letters .letter {
	font-size: 34px;
	font-size: 2.125rem;
	font-weight: 600;
	display: inline-block;
	background-color: #e6e7e8;
	color: white;
	width: 49px;
	height: 65px;
	text-align: center;
	padding-top: 15px;
	cursor: pointer;
}

.page-container .terms .letters .letter:hover {
	background-color: #E03C31;
}

.page-container .terms .term-list {
	margin-top: 30px;
	background-color: #e6e7e8;
	padding: 30px 25px;
}

.page-container .terms .term-list .definition {
	font-size: 18px;
	font-size: 1.125rem;
}

.page-container .terms .term-list .definition .term {
	font-weight: bold;
}

.page-container .terms .terms-top .fa.fa-caret-up {
	width: 100%;
	background-color: #cccccc;
	color: #E03C31;
	font-size: 30px;
	text-align: center;
}

.page-container .locations h2,.page-container .locations h6 {
	margin-top: 40px;
}

.page-container .locations h6 {
	font-weight: bold;
	color: #E03C31;
}

.page-container .locations .office {
	margin-top: 15px;
	font-weight: bold;
}

.page-container .locations p {
	margin-top: 5px;
	line-height: 0.8;
}

.page-container .locations .map {
	clear: both;
	background-color: #e6e7e8;
	display: block;
	width: 100%;
	height: 590px;
}

.page-container .locations .main-content {
	width: 75%;
}

.page-container .news-years {
	float: right;
	width: 25%;
}

@media only screen and (max-width: 60em) {
	.page-container .news-years {
		width: 100%;
		float: none;
	}
}

.page-container .news-years .news-year {
	background-color: #e6e7e8;
	display: block;
	height: 95px;
	width: 90%;
	padding: 20px;
	color: #555555;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: bold;
	margin-bottom: 10px;
}

@media only screen and (max-width: 60em) {
	.page-container .news-years .news-year {
		width: 100%;
	}
}

.page-container .news-years .news-year .year {
	color: #E03C31;
	font-weight: 800;
	font-size: 30px;
	font-size: 1.875rem;
}

.page-container .news-years .news-year.selected {
	background-color: #E03C31;
	color: white;
}

.page-container .news-years .news-year.selected .year {
	color: black;
}

.page-container .news .main-content {
	width: 75%;
}

.page-container .news h2 {
	margin-top: 75px;
}

.page-container .news .newsletters,.page-container .news .press-releases
	{
	width: 66%;
	float: left;
}

@media only screen and (max-width: 60em) {
	.page-container .news .newsletters,.page-container .news .press-releases
		{
		width: 100%;
		float: none;
	}
}

.page-container .news .newsletters .newsletter,.page-container .news .newsletters .press-release,.page-container .news .press-releases .newsletter,.page-container .news .press-releases .press-release
	{
	margin-top: 25px;
}

.page-container .news .newsletters p,.page-container .news .press-releases p
	{
	font-weight: 300;
	font-size: 12px;
	font-size: 0.75rem;
	color: white;
	line-height: 1.5;
}

.page-container .news .newsletters h1,.page-container .news .press-releases h1
	{
	font-weight: 800;
	font-size: 30px;
	font-size: 1.875rem;
	color: white;
}

.page-container .news .newsletters h2,.page-container .news .press-releases h2
	{
	font-weight: normal;
	font-size: 30px;
	font-size: 1.875rem;
	color: white;
	margin-top: 0px;
}

.page-container .news .newsletters h3,.page-container .news .press-releases h3
	{
	font-weight: 600;
	font-size: 16px;
	font-size: 1rem;
	color: white;
	margin-top: 15px;
	margin-bottom: 10px;
	line-height: 1.2;
}

.page-container .news .newsletters .image-container,.page-container .news .press-releases .image-container
	{
	width: 75%;
	float: left;
	margin: 0;
	height: 300px;
	background-color: #E03C31;
	border-left: 5px solid #e03c31;
	padding: 15px;
}

@media only screen and (max-width: 60em) {
	.page-container .news .newsletters .image-container,.page-container .news .press-releases .image-container
		{
		width: 100%;
		float: none;
	}
}

.page-container .news .newsletters .excerpt-container,.page-container .news .press-releases .excerpt-container
	{
	width: 25%;
	float: left;
	height: 300px;
	background-color: #555555;
	padding: 10px 15px;
}

@media only screen and (max-width: 60em) {
	.page-container .news .newsletters .excerpt-container,.page-container .news .press-releases .excerpt-container
		{
		width: 100%;
		float: none;
	}
}

.page-container .news .newsletters .social,.page-container .news .press-releases .social
	{
	float: right;
	font-size: 12px;
	font-size: 0.75rem;
	width: 85px;
	margin: 5px;
	text-transform: uppercase;
}

.page-container .news .newsletters ul.socialshare,.page-container .news .press-releases ul.socialshare
	{
	float: right;
	height: 1.25em;
}

.page-container .news .newsletters ul.socialshare .icon,.page-container .news .press-releases ul.socialshare .icon
	{
	font-size: 10px;
	font-size: 0.625rem;
	cursor: pointer;
}

.page-container .news .newsletters ul.socialshare .icon.facebook::after,.page-container .news .press-releases ul.socialshare .icon.facebook::after
	{
	position: absolute;
	transform-style: preserve-3d;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-family: FontAwesome;
	position: absolute;
	content: "?";
}

.page-container .news .newsletters ul.socialshare .icon.twitter::after,.page-container .news .press-releases ul.socialshare .icon.twitter::after
	{
	position: absolute;
	transform-style: preserve-3d;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-family: FontAwesome;
	position: absolute;
	content: "?";
}

.page-container .news .newsletters ul.socialshare .icon.linkedin::after,.page-container .news .press-releases ul.socialshare .icon.linkedin::after
	{
	position: absolute;
	transform-style: preserve-3d;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-family: FontAwesome;
	position: absolute;
	content: "?";
}

.page-container .news .newsletters ul.socialshare li.link,.page-container .news .press-releases ul.socialshare li.link
	{
	background: #cccccc;
	margin-left: 8px;
	margin-right: 0;
	position: relative;
	float: left;
	width: 20px;
	height: 20px;
}

@media only screen and (max-width: 40em) {
	.page-container .news .newsletters ul.socialshare li.link,.page-container .news .press-releases ul.socialshare li.link
		{
		width: 30px;
		height: 30px;
	}
}

.page-container .news .newsletters .press-date,.page-container .news .press-releases .press-date
	{
	float: left;
}

.page-container .news .press-releases .image-container,.page-container .news .press-releases .excerpt-container
	{
	height: 300px;
}

.page-container .news .press-releases ul.socialshare .icon {
	color: #555555;
}

.page-container .news .newsletters .image-container,.page-container .news .newsletters .excerpt-container
	{
	min-height: 90px;
	height: auto;
}

.page-container .news .newsletters ul.socialshare .icon {
	color: white;
}

.page-container .profile h1 {
	margin-bottom: 130px;
}

.page-container .profile .welcome {
	float: left;
}

.page-container .profile .edit-profile {
	float: right;
}

.page-container .profile .edit-profile a,.page-container .profile .edit-profile a:visited
	{
	color: #555555;
}

.page-container .profile .info-box {
	margin-top: 20px;
	background-color: #e6e7e8;
	padding: 50px;
}

.page-container .profile .profile-picture {
	background-color: #cccccc;
	display: block;
	width: 150px;
	height: 165px;
	float: left;
}

.page-container .profile .info-box-content {
	margin-left: 20px;
	float: left;
}

.page-container .profile h2 {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: bold;
	color: #555555;
}

.page-container .profile hr {
	border: 1px solid #555555;
}

.page-container .profile .value {
	color: #E03C31;
	font-weight: 600;
	font-size: 12px;
	font-size: 0.75rem;
}

.page-container .profile label {
	color: #555555;
	font-weight: 600;
	font-size: 12px;
	font-size: 0.75rem;
	width: 80px;
	display: inline-block;
}

.page-container .calculator .right label {
	width: 110px;
	display: inline-block;
	font-size: 18px;
	font-weight: normal;
}

.page-container .calculator .right input {
	width: auto;
}

.page-container .calculator .right select {
	width: 190px;
	margin-bottom: 30px;
}
/* vendor*/
.slicknav_btn {
	position: relative;
	display: block;
	vertical-align: middle;
	float: right;
	padding: 0.438em 0.625em 0.438em 0.625em;
	line-height: 1.125em;
	cursor: pointer;
}

.slicknav_btn .slicknav_icon-bar+.slicknav_icon-bar {
	margin-top: 0.188em;
}

.slicknav_menu {
	*zoom: 1;
}

.slicknav_menu .slicknav_menutxt {
	display: block;
	line-height: 1.188em;
	float: left;
}

.slicknav_menu .slicknav_icon {
	float: left;
	margin: 0.188em 0 0 0.438em;
}

.slicknav_menu .slicknav_no-text {
	margin: 0;
}

.slicknav_menu .slicknav_icon-bar {
	display: block;
	width: 1.125em;
	height: 0.125em;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.slicknav_menu:before {
	content: " ";
	display: table;
}

.slicknav_menu:after {
	content: " ";
	display: table;
	clear: both;
}

.slicknav_nav {
	clear: both;
}

.slicknav_nav ul {
	display: block;
}

.slicknav_nav li {
	display: block;
}

.slicknav_nav .slicknav_arrow {
	font-size: 0.8em;
	margin: 0 0 0 0.4em;
}

.slicknav_nav .slicknav_item {
	cursor: pointer;
}

.slicknav_nav .slicknav_item a {
	display: inline;
}

.slicknav_nav .slicknav_row {
	display: block;
}

.slicknav_nav a {
	display: block;
}

.slicknav_nav .slicknav_parent-link a {
	display: inline;
}

.slicknav_brand {
	float: left;
}

.slicknav_menu {
	font-size: 16px;
	box-sizing: border-box;
	background: #E03C31;
	padding: 5px;
}

.slicknav_menu * {
	box-sizing: border-box;
}

.slicknav_menu .slicknav_menutxt {
	color: #fff;
	font-weight: bold;
	text-shadow: 0 1px 3px #000;
}

.slicknav_menu .slicknav_icon-bar {
	background-color: #fff;
}

.slicknav_btn {
	margin: 5px 5px 6px;
	text-decoration: none;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background-color: #E03C31;
}

.slicknav_nav {
	color: #fff;
	margin: 0;
	padding: 0;
	font-size: 0.875em;
	list-style: none;
	overflow: hidden;
}

.slicknav_nav ul {
	list-style: none;
	overflow: hidden;
	padding: 0;
	margin: 0 0 0 20px;
}

.slicknav_nav .slicknav_row {
	padding: 5px 10px;
	margin: 2px 5px;
}

.slicknav_nav .slicknav_row:hover {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #E03C31;
	color: #fff;
}

.slicknav_nav a {
	padding: 5px 10px;
	margin: 2px 5px;
	text-decoration: none;
	color: #fff;
}

.slicknav_nav a:hover {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #E03C31;
	color: white;
}

.slicknav_nav .slicknav_txtnode {
	margin-left: 15px;
}

.slicknav_nav .slicknav_item a {
	padding: 0;
	margin: 0;
}

.slicknav_nav .slicknav_parent-link a {
	padding: 0;
	margin: 0;
}

.slicknav_brand {
	color: #fff;
	font-size: 18px;
	line-height: 30px;
	padding: 7px 12px;
	height: 44px;
}
/* =============================================================================
Main Styles
========================================================================== */
*,*:after,*:before {
	box-sizing: border-box;
}

body {
	font-family: "Hind Guntur";
	color: #555555;
	font-size: 16px;
	font-size: 1rem;
	margin: 0;
	padding: 0;
	background-color: #f0f0f0 !important;
}

@media only screen and (max-width: 30em) {
	body {
		background-color: #555555;
	}
}

.main-content {
	*zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 100%;
	margin-left: 0%;
	margin-right: 0%;
	position: relative;
	min-height: 10em;
}

.main-content:before,.main-content:after {
	content: '';
	display: table;
}

.main-content:after {
	clear: both;
}

.btn {
	font-size: 12px;
	font-size: 0.75rem;
	color: #E03C31;
	font-weight: bold;
	border: 2px solid #e03c31;
	padding: 10px 15px 5px 15px;
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	border-radius: 4px;
}

.btn:hover {
	background-color: #E03C31;
	text-decoration: none;
	color: white;
}

.solid-btn {
	font-size: 12px;
	font-size: 0.75rem;
	color: white;
	background-color: #E03C31;
	font-weight: bold;
	border: 2px solid #e03c31;
	padding: 10px 17px;
	display: inline-block;
	cursor: pointer;
}

.solid-btn:hover {
	color: #E03C31;
	background-color: white;
}

.drop-down-header123 {
	font-weight: bold;
	font-size: 16px;
	font-size: 1rem;
	color: #E03C31;
	padding: 4px 0 10px;
}

.drop-down-text {
	font-size: 16px;
	font-size: 1rem;
	color: #555555;
	padding: 4px 0 10px;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

hr {
	border: 1px solid white;
}

a,a:visited {
	/*color: #E03C31;*/
	text-decoration: none;
}

.tab {
	padding: 0px;
	margin-bottom: 20px;
	border-bottom: 2px solid #E03C31;
	width: 100%;
	height: 35px;
	
}

.tab ul {
	list-style-type: none;
}

.tab li {
	display: inline;
}

.tab a {
	display: block;
	height: 34px;
	background-color: #ffffff;
	color: #555555;
	font-size: 12px;
	font-size: 0.85em;
	padding: 10px 24px 5px 20px;
	float: left;
	cursor: pointer;
	margin-right: 8px;
	text-decoration: none;
	text-transform: uppercase;
	background-image: url("../img/arrow-right-grey-tab.svg");
	background-position: right center;
	background-repeat: no-repeat;
	border:1px solid #B7B8B9;
	border-radius:4px 4px 0px 0px;
	border-bottom:1px solid #E03C31;
}

.tab a:hover,.tab a:focus {
	background-color: #E03C31;
	border:1px solid #E03C31;
	text-decoration: none;
	color: #fff;
	background-image: url("../img/arrow-right-white-tab.svg");
	background-position: right center;
	background-repeat: no-repeat;
}

.tab.small a {
	width: 100px;
}

.tab.small-ext a {
	width: 125px;
}

.tab.medium a {
	width: 150px;
}

.tab.medium-ext a {
	width: 175px;
}

.tab.large a {
	width: 200px;
}

.tab.ext-large a {
	width: 350px;
}

.tab.ext-large-emp a {
	width: 270px;
}

.tab li.tab-selected a {
	background-color: #E03C31;
	border:1px solid #E03C31;
	color:#fff;
	text-decoration: none;
	background-image: url("../img/arrow-down-white-tab.svg");
	background-position: right center;
	background-repeat: no-repeat;
	border-bottom:0px;
}

.tab li.tab-selected a:hover {
	background-color: #E03C31;
	border:1px solid #E03C31;
	color:#fff;
	text-decoration: none;
	background-image: url("../img/arrow-down-white-tab.svg");
	background-position: right center;
	background-repeat: no-repeat;
	border-bottom:0px;
}

@media only screen and (max-width: 60em) {
	.tab.wide-tab {
		width: 100%;
	}
}

.aside-sub-nav {
	margin-right: 1em;
	margin: 0;
	padding-right: 0;
	padding-left: 0;
	padding-top: 10px;
	width: 220px;
}

.aside-sub-nav li {
	clear: left;
	border-bottom: 1px dashed #666666;
	height: 30px;
}

.aside-sub-nav a {
	margin-right: 1em;
	margin: 0;
	color: Black;
	font-size: 13px;
	font-size: 0.813em;
	padding-right: 0;
	padding-left: 5px;
	height: 25px;
	text-decoration: none;
}

.aside-sub-nav a:hover {
	color: #E03C31;
}

.aside-sub-nav a:visited {
	color: Black;
}

.aside-sub-nav input[type="submit"] {
	margin: 0;
	margin-right: 5px;
	padding: 0;
	color: Black;
	background: white;
	border: 0px;
	font-family: "Hind Guntur";
	font-size: 13px;
	font-size: 0.813em;
	text-align: left;
	text-decoration: none;
}

.aside-sub-nav input[type="submit"]:hover {
	color: #E03C31;
}

.welcome-user-info {
	margin-right: 1em;
	padding-left: 10px;
	padding-top: 20px;
	font-size: 14px;
	font-size: 0.875rem;
	color: white;
	text-transform: uppercase;
}

.welcome-user-info li {
	display: inline;
}

.web-note {
	color: #555555;
	font-size: 13px;
	font-size: 0.8125rem;
	font-style: italic;
	font-weight: normal;
	padding-top: 10px;
}

.web-right-link {
	float: right;
	margin: 0px;
	padding: 0px
}

.web-search-form {
	float: left;
	padding: 0px;
	margin: 0;
	width: 100%;
}

.web-search-form label {
	float: left;
	margin-right: 10px;
	width: 20% !important;
}

.web-search-form input,.web-search-form select {
	float: left;
	width: 34% !important;
}

.web-search-form input[type="checkbox"],.web-search-form input[type="radio"]
	{
	width: 50px !important;	
}

.web-button {
	float: right;
	text-align: right;
	padding: 0;
	margin-right: 10%;
	width: 100%;
	height:40px;
}

.web-button.left {
	float: left;
	text-align: left;
	margin-right: 0px;
}

.web-button.left-form {
	float: left;
	text-align: left;
	padding-left: 35%;
	margin-right: 0px;
}

.web-button.left-full-form {
	float: left;
	text-align: left;
	padding-left: 17.5%;
	margin-right: 0px;
}

.web-button.center {
	float: left;
	text-align: center;
	margin-right: 0px;
}

.web-button.search-form {
	float: left;
	text-align: left;
	padding-left: 23%;
	margin-left: 75px;
	/*margin-left: 34px;*/
	margin-right: 0px;
}

.web-button li {
	display: inline;
	margin-right: 1em;
}

.web-button input:disabled {
	background-color: #F0F0F0;
	border: 1px solid #B7B8B9;
	color: #555555;
	cursor:inherit;
}

.web-button.ex-small input[type="submit"],.web-button.ex-small input[type="button"],.web-button.ex-small input[type="reset"]
	{
	width: 70px !important;
}

.web-button.small input[type="submit"],.web-button.small input[type="button"],.web-button.small input[type="reset"]
	{
	width: 120px !important;
}

.web-button.medium input[type="submit"],.web-button.medium input[type="button"],.web-button.medium input[type="reset"]
	{
	width: 165px !important;
}

.web-form {
	float: left;
	padding: 0;
	margin: 0;
	width: 100%;
}

.web-form ul {
	list-style-type: none;
}

.web-form li {
	clear: left;
	margin: 0;
}

.web-form label {
	float: left;
	width: 35%;
}

.web-form input,.web-form select,.web-form textarea {
	float: left;
	width: 50% !important;
}

.web-form input[type="checkbox"],.web-form input[type="radio"] {
	float: left;
	width: 30px !important;
	margin-top:2px !important;
}

.web-form label.error {
	font-weight: normal;
	padding-left: 35%;
	margin-bottom: 30px !important;
	width: 100%;
}

.phoneErrorSeperate label[for='p_phone'].error {
	width:85% !important;
}

.web-form .error {
	color: #e03c31;
	margin-bottom: 5px !important;
}

.web-form label.web-row-full {
	width: 17.5%;
}

.web-form-full label.error {
	padding-left: 17.5%;
	margin-bottom: 30px !important;
	font-weight: normal;
}

.web-multi-content label.error {
	font-weight: normal;
	margin-bottom: 30px !important;
	width: 100%;
}

.web-multi-content .error {
	color: #ff0000;
	margin-bottom: 5px !important;
}

.web-inline {
	float: left;
	padding: 0px;
	margin: 0px;
	width: 100%;
}

.web-inline ul {
	float: left;
	margin: 0;
	Padding: 0;
	width: 60%;
	list-style-type: none;
}

.web-inline li {
	display: inline;
	float: left;
	margin-right: 1em;
	margin: 0;
	padding: 0;
}

.web-inline li label {
	font-weight: normal !important;
}

.web-inline label {
	float: left;
	width: 35%;
}

.web-inline label.web-row-full {
	width: 17.5%;
}

.web-inline input[type="checkbox"],.web-inline input[type="radio"] {
	float: left;
	width: 30px !important;
	margin-top:2px !important;
}

.web-inline label.error {
	font-weight: normal;
	margin-left: 35%;
	margin-bottom: 30px !important;
	width: 100%;
}

.web-inline .error {
	color: #ff0000;
	margin-bottom: 5px !important;
}

.web-form-login {
	margin: 0px;
	padding: 0px;
}

.web-form-login label.error {
	color: #e03c31;
	float: right;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: normal;
	margin-bottom: 30px !important;
	width: 100%;
}


.web-form-login .error {
	color: #e03c31 !important;
	margin-bottom: 5px !important;
}

.web-sub-header123 {
	padding: 0px;
	margin-bottom: 20px;
	border-bottom: 2px solid #e03c31;
	height: 34px;
}

.web-sub-header123 h4 {
	float: left;
}

.web-sub-header123 a {
	float: right;
}

.web-overlay {
	background-color: #000000;
	opacity: 0.6;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	margin: 0px;
	padding: 0px;
	z-index: 998;
}

.web-popup {
	position: fixed;
	background-color: #f0f0f0;
	padding: 20px;
	z-index: 999;
	left: 50%;
	top: 50px;
	border-radius:8px;
	transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0); /* IE 9 */	
}

::i-block-chrome,.web-popup {
 	left:20%
}

.web-popup-header123 {
	padding: 0px;
	margin-bottom: 20px;
	border-bottom: 3px solid #e03c31;
	height: 44px;
}

.web-popup-header123 h4 {
	float: left;
	color: #E03C31;
	font-size: 28px;
	font-size: 1.75rem;
	font-weight: 600;
}

.web-popup-header123 a {
	float: right;
}

.web-multi-content  .right {
	clear: none;
	float: left;
	margin-left: 0;
	margin-right: 0;
	text-align: inherit;
	width: 50%;
	padding-left: 10px;
}

.web-multi-content .left {
	clear: none;
	float: left;
	margin-left: 0;
	margin-right: 0;
	text-align: inherit;
	width: 50%;
	padding-right: 10px;
}

div.main-content>div.web-multi-content>div.left {
	width: 70%;
}

div.main-content>div.web-multi-content>div.right {
	width: 30%;
}

.web-multi-content::after {
	clear: both;
	content: "";
	display: table;
}

.web-multi-content .left::before,.split-content .left::after {
	content: "";
	display: table;
}

.web-multi-content .right::before,.split-content .right::after {
	content: "";
	display: table;
}

.web-pagination {
	width: 100%;
	padding: 0px;
	margin: 0px;
}

.web-pagination .col {
	width: 49%;
	padding: 0px;
	margin: 0px;
	display: inline-block;
}

.web-pagination .col ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

.web-pagination .col li {
	display: inline;
	padding: 0px;
	margin: 0px;
}

.web-pagination .block {
	display: inline-block;
	padding: 0px;
	margin: 0px;
	float: left;
	clear: right;
}

.web-pagination .block ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

.web-pagination .block li {
	display: inline;
	padding: 0px;
	margin: 0px;
}

.web-pagination .block.w30 {
	padding: 0px;
	margin: 0px;
	float: left;
	clear: right;
}

.web-pagination .block select {
	background-color: white;
	color: black;
	border: 0;
	padding: 10px 20px 10px 10px;
	margin: 0px;
	font-size: 14px;
	font-size: 0.875rem;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	background-image: url("../img/drop-down-arrows-black.png");
	background-position: inherit 10px top 50%;
	background-repeat: no-repeat;
}

.web-bottom-notes {
	padding-left: 20px;
	margin: 0px;
	font-size: 14px;
	font-size: 0.875rem;
	color: #E03C31;
}

.web-bottom-notes ol {
	list-style-type: decimal !important;
}

.web-bottom-notes ul {
	list-style-type: circle !important;
}

/* jQuery styles added to over-ride */
.ui-datepicker table {
	font-size: 0.875rem;
	border-bottom: 0 none;
}

.ui-datepicker table tr:nth-of-type(2n+1) {
	background-color: #ffffff;
}

.ui-datepicker table th {
	font-size: 0.875rem;
	background-color: #FFFFFF;
	color: #001871;
}

.ui-datepicker table td {
	font-size: 0.875rem;
}

.ui-datepicker-title {
	font-size: 0.95rem;
}

.ui-menu {
	max-height: 200px;
	overflow: auto;
}

.ui-menu-item {
	font-size: 0.875rem;
}
/* jQuery styles end */

.help-bubble-icon {
	position: relative;
	height: 30px;
	width: 20px;
}

.help-bubble-icon .help-bubble {
	display: none;
}

.help-bubble-icon:hover .help-bubble {
	display: block;
}

.help-bubble {
	position: absolute;
	top: 25px;
	left: -27px;
}

.help-bubble .help-arrow {
	position: absolute;
	width: 12px;
	height: 12px;
	top: 0px;
	left: 30px;
	z-index: 81;
	background-image: url('../img/bubble-arrow.png');
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

.help-bubble .help-bubble-box {
	position: relative;
	z-index: 80;
	top: 10px;
	min-width: 280px;
	padding: 10px;
	background-color: #F1F2F2;
	border: solid 1px #E03C31;
	font-size: 0.8em;
	line-height: 24px;
}

.web-view label,.web-view span{
	margin-bottom: 20px !important;
}

div.move-controls.web-button input[type="button"]{
	padding: 5px 10px 2px 10px;
	background-image: none;
}


		 /* Tools tab start*/

/*New header123 CSS Start*/
/*header123 start*/
.vls-logo {
        width: 19vw;
        max-width: 330px;
        min-width: 150px;
        padding-right: 10%;
    }
    
    .vls-logo-wrapper {
        padding-left:0;
    }

    @media (max-width: 840px) {
        .vls-logo {
            width: 100%;
            max-width: 200px;
            padding: 0;
        }
    }
    
    .mdc-top-app-bar {
        background-color: white;
        color: black;
        position: static;
    }
    
    
    @media (min-width: 841px) and (max-width: 930px) {
        .mdc-top-app-bar.page-component {
            padding: 0 1% !important;
        }
    }
 
    .mdc-top-app-bar .mdc-top-app-bar__section {
        position: relative;
        z-index:101;
    }
 
   .mdc-top-app-bar .mdc-top-app-bar__section--align-end.vls-desktop-only {
       flex: 1 3 20%;
   }

    .mdc-top-app-bar__row {
        align-items: center;
    }

    .mdc-top-app-bar .mdc-top-app-bar__action-item {
        color: black;
        position: relative;
		text-align:center;
    }
    
    .mdc-top-app-bar .mdc-top-app-bar__action-item a {
        text-decoration: none;
    }
    
    .vls-search-bar {
        height: 36px;
    }
    
    .vls-search-bar .material-icons {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left:4px;
    }
    
    .mdc-button--outlined:not(:disabled).vls-button-login {
        border-color: #B7B8B9;
        color: #555555;
        text-transform: none;
        margin-left: 1em;
    }

    .mdc-button--outlined:not(:disabled).vls-button-login:hover,.mdc-button--outlined:not(:disabled).vls-button-login:focus {
        border-color: #000;
    }

    .vls-button-login .material-icons {
        color: #B7B8B9;
        margin-right: 10px;
    }
    
    .mdc-button--outlined:not(:disabled).vls-button-login:hover .material-icons, .mdc-button--outlined:not(:disabled).vls-button-login:focus .material-icons {
        color: #555;
        transition: color 0.08s cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    
    
    
   .create-account-btn  {  
	position:absolute;
	right:0;
	padding-right:1%;
	padding-top:10px;
        text-align: center;
        
    }


	.create-account-btn a {  
		color: #555555 !important;
        text-decoration: none;
        font-size: 11px;
		font-family: Averta, 'Hind Guntur', sans-serif;
		letter-spacing:1px;
    }
    
    .create-account-btn  a:hover {
        color: #E03C31 !important;
    }
	.create-account-btn a a:visited {
        color: #555555 !important;
    }


    .vls-menu-toggle {
        display: none;
        text-align: right;
        color: #E03C31;
    }

    @media (max-width: 840px) {
        .mdc-top-app-bar__section.vls-desktop-only {
            display: none;
        }
        
        .vls-menu-toggle {
            display: block;
        }

		.create-account-btn {
            display: none;
        }
    }

	header123 subnav,header123 .subnav,.header123 subnav,.header123 .subnav {
	position: relative;
	*
	zoom: 1;
	float: left;
	clear: none;
	text-align: inherit;
	width: 100%;
	margin-left: 0%;
	margin-right: 0%;
	background-color: #E03C31;
	min-height: 3.25em;
	color: #fff;
	font-weight: lighter;
}

header123 subnav:before,header123 subnav:after,header123 .subnav:before,header123 .subnav:after,.header123 subnav:before,.header123 subnav:after,.header123 .subnav:before,.header123 .subnav:after
	{
	content: '';
	display: table
}

header123 subnav:after,header123 .subnav:after,.header123 subnav:after,.header123 .subnav:after
	{
	clear: both
}

header123 subnav .controls,header123 .subnav .controls,.header123 subnav .controls,.header123 .subnav .controls
	{
	position: absolute;
	/*-webkit-transform-style: preserve-3d;*/
	transform-style: preserve-3d;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	float: right;
	right: 0;
	text-transform:uppercase;
	padding-right:6%;
}

@media only screen and (max-width: 40em) {
	header123 subnav .controls,header123 .subnav .controls,.header123 subnav .controls,.header123 .subnav .controls
		{
		*zoom: 1;
		float: left;
		clear: none;
		text-align: inherit;
		width: 100%;
		margin-left: 0%;
		margin-right: 0%
	}
	header123 subnav .controls:before,header123 subnav .controls:after,header123 .subnav .controls:before,header123 .subnav .controls:after,.header123 subnav .controls:before,.header123 subnav .controls:after,.header123 .subnav .controls:before,.header123 .subnav .controls:after
		{
		content: '';
		display: table
	}
	header123 subnav .controls:after,header123 .subnav .controls:after,.header123 subnav .controls:after,.header123 .subnav .controls:after
		{
		clear: both
	}
}

header123 subnav .controls li,header123 .subnav .controls li,.header123 subnav .controls li,.header123 .subnav .controls li
	{
	float: left;
	margin-right: 1em;
	margin-left: 35px;
	margin-right: 8px;
}

@media only screen and (max-width: 40em) {
	header123 subnav .controls li,header123 .subnav .controls li,.header123 subnav .controls li,.header123 .subnav .controls li
		{
		margin-left: 10px
	}
}

header123 subnav .controls li:first-child,header123 .subnav .controls li:first-child,.header123 subnav .controls li:first-child,.header123 .subnav .controls li:first-child
	{
	margin-right: 60px
}

header123 subnav .controls label,header123 .subnav .controls label,.header123 subnav .controls label,.header123 .subnav .controls label
	{
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: normal;
	color: #fff
}

header123 subnav .controls input[type="submit"],header123 .subnav .controls input[type="submit"],.header123 subnav .controls input[type="submit"],.header123 .subnav .controls input[type="submit"]
	{
	background-color: #E03C31;
	color: #fff;
	cursor: pointer
}

header123 subnav .controls input[type="submit"]:hover,header123 .subnav .controls input[type="submit"]:hover,.header123 subnav .controls input[type="submit"]:hover,.header123 .subnav .controls input[type="submit"]:hover
	{
	background-color: #E03C31;
	color: #fff;
	border: 1px solid #e03c31
}

.mdc-list-item__text {
    line-height: 30px;
}

	/*header123 end*/
        
	/* Dropdown menu styles */
    .vls-dd-menu-toggle {
        line-height: 2em;
        padding: 4px;
        font-size: 16px;
        color: #E03C31;
        cursor: pointer;
    }
    
    .vls-dd-menu-toggle svg {
        vertical-align: middle;
        transition: transform 100ms ease-in;
    }
    
    .vls-dd-menu-toggle:focus, .vls-dd-menu-toggle:hover, .vls-dd-menu-toggle:active, .mdc-menu-surface--open ~ .vls-dd-menu-toggle {
        color: #001871;
    }
    
    .vls-dd-menu-toggle:focus path,.vls-dd-menu-toggle:hover path, .vls-dd-menu-toggle:active path, .mdc-menu-surface--open ~ .vls-dd-menu-toggle path {
        stroke: #001871 !important;
    }
    
    .vls-dd-menu-toggle:hover svg, .vls-dd-menu-toggle:active svg, .mdc-menu-surface--open ~ .vls-dd-menu-toggle svg {
        -ms-transform: rotate(90deg); /* IE 9 */
        -webkit-transform: rotate(90deg); /* Safari prior 9.0 */
        transform: rotate(90deg); /* Standard syntax */
    }

    .mdc-menu-surface.vls-dd-menu {
        box-shadow: 0px 6px 10px 3px rgba(0,0,0,0.16);
        border: 2px solid #CCCCCC;
        border-radius: 0px;
        overflow: visible;
    }
    
    .vls-dd-menu a {
        text-decoration: none;
        color: #555555;
        width: 100%;
        height: 100%;
		text-align:left;
    }
    
    .vls-dd-menu a .mdc-list-item__text {
        position: relative;
        top: 25%;
    }
    
    .vls-dd-menu li:hover {
        background-color: white;
    }
     
    .mdc-list-item {
        padding: 0;
    }
    
    .mdc-list-item a {
        padding: 0 16px;
    }
     
    .mdc-list-item:hover::before {
        opacity: 0;
    }
    
    .vls-dd-menu li:hover a, .vls-dd-menu li:focus a {
        color: #E03C31;
    }
    
    .vls-dd-arrow-up {
        width: 0; 
        height: 0; 
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-bottom: 18px solid white;
        position: absolute;
        top: -18px;
        left: 41px;
    }
    
    .vls-dd-arrow-up-border {
        width: 0; 
        height: 0; 
        border-left: 21px solid transparent;
        border-right: 21px solid transparent;
        border-bottom: 21px solid #CCCCCC;
        position: absolute;
        top: -21px;
        left: 38px;
    }      

/*footer start*/
           .footer-nav {
    color: white;
    /*background-color: #B7B8B9;*/
    background-color: #555555;
}
@media (max-width: 840px) {
    .footer-nav {
        display: none;
    }
}
    
.footer-nav a {
    color: white;
    text-decoration: none;
}
    
.footer-nav ul li {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 12px;
}
    
.footer-nav li:before {
    content: '> ';
}
    
.footer-nav .heading {
    font-weight: 700;
}
    
.vls-footer-position {
    width:fit-content;
    margin:auto;
}

.vls-footer-position {
    width:fit-content;
    margin:auto;
}
@media (max-width: 839px) and (min-width: 480px) {
    .footer-nav .vls-footer-position {
        width: 100%;
    }
}

.footer-nav .mdc-layout-grid__inner, footer .mdc-layout-grid__inner {
    padding-top: 60px;
    padding-bottom:30px;
}
@media (max-width: 480px) {
    footer .mdc-layout-grid__inner {
        padding-top: 30px;
    }
}
    
footer .vls-social {
    text-align: right;
}
@media (max-width: 480px) {
    footer, .mdc-layout-grid__cell, footer .vls-social {
            text-align: center;
    }
}

@media (min-width: 840px)
.mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-desktop {
    width: calc(25% - 24px);
    width: calc(20% - var(--mdc-layout-grid-gutter-desktop, 24px)) !important;
}
    
.vls-contact {
    display: none;
    width: 100%;
    padding: 30px 0;
    text-align: center;
    color: white;
    font-family: Averta, 'Hind Guntur', sans-serif;
    font-size: 20pt;
    background-color: #001871;
}
@media (max-width: 840px) {
    .vls-contact {
        display: block; 
    }
}
    
.vls-contact .mdc-button {
    border-width: 2px;
    border-radius: 8px;
    border-color: white;
    color: white;
}
		 /* Tools tab start*/


	/*Tools tab ends*/
		 /*New header123 Css Ends*/

 .page-component {
        padding-left: 6% !important;
        padding-right: 6% !important;
    }

    .footer-nav-mobile {
        color: #E03C31;
        background-color: #FFF;
        font-family: Averta, 'Hind Guntur', sans-serif;
		display: none;
    }

    .footer-nav-mobile .vls-footer-position-mobile {
        width: 100%;
        max-width: 320px;
        margin: auto;
        margin-bottom: 45px;
		text-align: left;
    }
        
    .footer-nav-mobile a {
        color: #E03C31 !important;
        text-decoration: none;
    }
        
    .footer-nav-mobile ul li{
        list-style: none;
        margin-left: 0;
        padding-left: 0;
		text-align: left;
		padding: 10px;
    }


        
    .footer-nav-mobile li:before {
        content: '> ';
    }
        
    .footer-nav-mobile .heading-mobile {
        font-weight: 700;
        font-size: 1.3em;
        line-height: 1em;
    }

    .footer-nav-mobile .vls-grid-wrapper-mobile {
        padding-top: 60px;
        padding-bottom:30px;
    }

    /* Make list take up two columns at tablet size */
    @media (max-width: 840px){
		.footer-nav-mobile{
			display: block;
		}        
    }

	/*Tools tab ends*/
		 /*New header123 Css Ends*/

.expand-collapse-add{
background-color:#E03C31;color:#ffffff;margin-left: 5px;height:27px;border-radius:3px 3px 0px 0px;font-family:'Hind Guntur';width:150px !important;padding-left:20px;padding-right:35px;padding-top:2px;padding-bottom:0px;margin-right:5px;font-size:small;
}
.expand-collapse-remove{
background-color:#555555;color:#ffffff;margin-left: 5px;height:27px;border-radius:3px 3px 0px 0px;font-family:'Hind Guntur';width:150px !important;padding-left:19px;padding-right:40px;padding-top:2px;padding-bottom:0px;font-size:small;margin-right:38px;
}

.expand{
background-color:#E03C31;color:#ffffff;margin-left: 5px;height:27px;border-radius:3px 3px 0px 0px;font-family:'Hind Guntur';width:150px !important;padding-left:20px;padding-right:35px;padding-top:2px;padding-bottom:0px;margin-right:38px;font-size:small;
}

.collapse{
background-color:#555555;color:#ffffff;margin-left: 5px;height:27px;border-radius:3px 3px 0px 0px;font-family:'Hind Guntur';width:150px !important;padding-left:20px;padding-right:35px;padding-top:2px;padding-bottom:0px;margin-right:38px;font-size:small;
}

.mdc-top-app-bar--prominent .mdc-top-app-bar__row {
    height: 95px !important;
    margin-top: 20px !important;
}

.vls-dd-menu .mdc-list {

    overflow: auto;
    max-height: inherit;
    box-sizing: border-box;
    padding: 0;

}

/*Mobile header123 side nav sart*/
  .mdc-drawer {
         width: 100vw;
         height: auto;
         }
         /* Open drawer takes up space on the page */
         .mdc-drawer--dismissible.mdc-drawer--open {
         display: block;
         position: relative;
         }
         /* When a drawer is open, content takes no space on the page */
         .mdc-drawer--open ~ .mdc-drawer-app-content {
         display: none;
         position: relative;
         overflow: auto;
         }
         .mdc-drawer .mdc-list-item {
         font-family: "Averta";
         }
         .mdc-list-item.vls-sidenav-link {
         height: 50px;
         padding-left:70px;
         font-size: 16px;
         color: #555555;
         margin: 0;
         margin-bottom: 2px;
         }
         #sidenav-main .vls-sidenav-link {
         color: #E03C31;
         font-size: 20px;
         }
         #sidenav-main .vls-sidenav-tools-link {
         background-color: #F0F0F0;
         }
         /*#sidenav-main*/
         .mdc-list-item.vls-sidenav-tools-link {
         margin: 0;
         margin-bottom: 2px;
         color: #E03C31;
         font-size: 20px;
         }
         .vls-sidenav-link svg, .vls-sidenav-link img {
         position: absolute;
         right:0;
         }
         .vls-sidenav-link .vls-navlink-icon-wrapper, .vls-sidenav-link .vls-navlink-icon-wrapper-right {
         position: relative;
         }
		  .vls-sidenav-link .vls-navlink-icon-wrapper img,  .vls-sidenav-link .vls-navlink-icon-wrapper-right img {
         position: relative;
         }
         .vls-sidenav-link .vls-navlink-icon-wrapper svg, .vls-sidenav-link .vls-navlink-icon-wrapper img {
         position: absolute;
         left: -55px;
         right: unset;
         top: 50%;
         transform: translateY(-50%);
         }	
		 .vls-sidenav-link .vls-navlink-icon-wrapper-right img {
         position: absolute;
         left: 40px;
         right: unset;
         top: 50%;
         transform: translateY(-50%);
         }		 
,

/*Mobile header123 side nav sart*/

/* modified from https://portal.vanguardlogistics.com/apps/skin2/css/style-2020.css */
/* Added by ThulasiManohar */