<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">img {
	image-rendering: -webkit-optimize-contrast;
}

/*****SPACING &amp; POSITIONING*****/
.no-side-padding {
	padding-right: 0;
	padding-left: 0;
}

.no-padding {
	padding: 0;
}

.no-padding-top {
	padding-top: 0;
}

.no-padding-right {
	padding-right: 0;
}

.no-padding-bottom {
	padding-bottom: 0;
}

.no-padding-left {
	padding-left: 0;
}

.no-margin {
	margin: 0;
}

.no-margin-top {
	margin-top: 0;
}

.no-margin-left {
	margin-left: 0;
}

.no-margin-bottom {
	margin-bottom: 0;
}

.no-margin-right {
	margin-right: 0;
}

.add-padding-top-10 {
	padding-top: 10px;
}

.add-padding-top-20 {
	padding-top: 20px;
}

.add-padding-top-40 {
	padding-top: 40px;
}

.add-padding-top-60 {
	padding-top: 60px;
}

.add-padding-bottom-10 {
	padding-bottom: 10px;
}

.add-padding-bottom-20 {
	padding-bottom: 20px;
}

.add-padding-bottom-40 {
	padding-bottom: 40px;
}

.add-padding-left-20 {
	padding-left: 20px;
}

.add-padding-left-40 {
	padding-left: 40px;
}

.add-padding-right-20 {
	padding-right: 20px;
}

.add-padding-right-40 {
	padding-right: 40px;
}

.full-height {
    height: 100%;
}

.full-width {
    width: 100%;
}

.flexCenter {
	align-items: center;
    -webkit-align-items: center;
}

.flexEnd {
	align-items: flex-end;
    -webkit-align-items: flex-end;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.row{
	margin: 0;
}

.margin-side-auto {
	margin-left: auto;
	margin-right: auto;
}

.add-margin-top-20 {
	margin-top: 20px;
}

.add-margin-bottom-20 {
	margin-bottom: 20px;
}

.add-margin-left-20 {
	margin-left: 20px;
}

.position-absolute {
	position: absolute;
}

/*****MENU*****/

.header_wrapper {
    position: relative;
	z-index: 11;
    height: 83px;
    background-color: #000000;
	border-bottom: 1px solid #ffffff;
}

.main-header {
	position: relative;
	z-index: 100;
	width: 100%;
    height: auto;
    background-color: #ffffff;  
}

.header {
    max-width: 540px;
    width: 96%;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 22px;
}

.stick {
    position: fixed;
    top: 0;
    z-index: 11000;
    width: 100%;
}

.logo {
    max-width: 280px;
    width: 15%;
}

.logo img {
    vertical-align: top;
}

.menu_wrapper {
    overflow: hidden;
    min-width: 900px;
    padding-top: 6px;
}

.menu {
    overflow:inherit;
}

.menu li {
    display: block;
    position: relative;
    float: left;
    margin-left: 7.8%;
}

.menu li.first {
    display: block;
    position: relative;
    float: left;
    /*margin-left: 0%;*/
    margin-left: 11.5%;
}


.menu li a{
    display: block;
    font-size: 13px;
	color:#ffffff;
    letter-spacing: 1px;
    /*transition: color 0.2s ease-in-out;*/
	text-decoration: none;
}

.menu li:after {
    content: '';
    position: relative;
    top: 4px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease-in-out, top 0.4s ease-in-out;
    width: 20px;
    height: 6px;
    border-radius: 10px;
}

.menu li.active a {
    color:#e01a22;
}

.menu li.active:after {
    background-color: #e01a22;
    top: -6px;
}

.menu li.parents_active a {
    color:#e01a22;
}

.menu li.parents_active:after {
    background-color: #e01a22;
    top: -6px;
}

.menu li:hover a {
    color: #e01a22;
}

.menu li.mb {
    display: none;
}

.menu_wrapper input { display:none; }
.menu_wrapper label{ display:none; }

/*****BACKGROUNDS*****/

.light-gray-background {
	background: #f8f8f8;
}

.gray-background {
	background: #d8d8d8;
}

/*****BORDERS*****/
.c-gradient {
	background: linear-gradient(90deg, #E22128 0%, #4D80E6 100%);
	max-width: 55%;
	padding: 2px;
	margin: 2% auto;
	box-sizing: border-box;
}

.c-gradient-inner {
	width: 100%;
	background: #ffffff;
	padding: 5%;
	text-align: center;
	box-sizing: border-box;
	margin: 0 auto;
}

/*****TEXT*****/

.cf-white {
	color: #ffffff;
}

.cf-black {
	color: #333333;
	text-shadow: none;
}

.cf-red {
	color: #cc0000;
}

.cf-gray {
	color: #63676D;
}

.cf-aqua {
	color: #5EC8C4;
}

.cf-dark-aqua {
	color: #436871;
}

.cf-green {
	color: #009933;
}

.cf-blue {
	color: #0066b1;
}

.font-weight-bold {
	font-weight: bold;
}
.text-decoration-underline {
	text-decoration: underline;
}

.break-word {
	word-wrap: break-word;
}

.h2-small-text {
	font-size: 20px;
}

.h4-small-text {
	font-size: 14px;
}

/*****BUTTONS*****/

.cbtn {
	background-color: transparent;
    border-color: transparent;
    border-width: 2px;
    border-style: solid;
    display: inline-block;
    padding: 10px 18px;
    text-transform: uppercase;
    text-align: center;
    margin: 10px 0px 10px 0;
    width: auto;
    font-weight: 500;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.cf-60 {
	font-size: 60px;
}

.cbtn-white-o {
    border-color: #ffffff;
    color: #ffffff;
}

.cbtn-red {
    background-color: #cc0000;
    color: #ffffff;
}

.cbtn-white-o:hover,
.cbtn-red:hover {
    opacity: 0.8;
}

.main-navbar {
    border-bottom: 1px solid #000000;
}

.canon-logo-container {
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: 20px;
}

.canon-logo {
	max-width: 200px;
	min-width: 200px;
}

.language-button-container {
	margin-top: 22px;
}
	
.language-button-container .language-button_off {
	max-width: 160px;
	width: 100%;
}

.language-button-container .language-button_on {
	display: none;
	max-width: 160px;
	width: 100%;
}

.language-button-container:hover .language-button_off {
	display: none;
}

.language-button-container:hover .language-button_on {
	display: block;
}

/*****MOBILE CUSTOMS*****/

.mobile-only {
	display: none !important;
}

@media only screen and (max-width:1225px) {

	.header_wrapper {
		height: auto;
		z-index: 700;
		border-bottom: none;
	}

	.header {
		height: 67px;
		max-width: 1280px;
		width: 100%;
		padding-bottom: 0;
		background-image: none;
		padding-top: 0;
	}

	.logo{
	  display:none;
	}

	.menu_wrapper {
		width: 100%;
		height: auto;
		top: 0;
		z-index: 600;
		display: block;
		background-image: none;
		padding-top: 0;
		min-width: 0;
		max-width: none;
		float: none;
		position: absolute;
	}

	.menu_wrapper input {
		display: none;
	}

	.menu_wrapper label {
		display: block;
		top: 0;
		left: 0;
		width: 68px;
		height: 65px;
		cursor: pointer;
		font-size: 16px;
		color: #ffffff;
		line-height: 65px;
		text-align: center;
		margin-left: 35px;
	}
	
	.mobile-logo {
		width: 200px;
		height: 67px;
		margin: -71px auto auto auto;
		display: block;
		background-size: 196px auto;
		background-position: 3px 17px;
		background-repeat: no-repeat;
	}

	.mobile-check:checked ~ .menu_nav {
		/*height: 394px;*/
		height: 115px;
		background-image: none;
		background-color: #000;
	}

	.menu_nav {
		height: 0px;
		margin-top: 0px;
		overflow: hidden;
		transition: all 500ms ease;
		border-top: 1px solid #6f6f6f;
	}

	.menu_nav ul.menu{
		width: 100%;
		height: auto;
		padding: 0;
		border-top: none;
	}

	.menu_nav ul.menu li {
		border-bottom: 1px solid #6f6f6f;
		max-width: none;
		float: none;
		margin-left: 0;
		padding-bottom: 0;
	}


	.menu li:after{
		display:none;
	}


	.menu_nav ul.menu li a {
		width: 100%;
		height: auto;
		display: block;
		padding: 18px 0;
		font-size: 16px;
		line-height: 1.2;
		color: #ffffff;
		text-align: center;
		text-decoration: none;
		background-color: #000000;
		border-left: none;
	}

	ul.menu li.active_menu {
		height: auto;
		background:none;
	}

	.menu_nav ul.menu li.active a {
		color: #e01a22;
	}

	ul.menu li:hover{
		height:auto;
		background: none;
	}
}

@media screen and (min-width: 1160px){

	body {
		font-size: 16px;
	}
	.text-emphasis {
		font-size: 20px;
	}
	.h3-emphasis {
		font-size: 30px;
	}
	.h4-emphasis {
		font-size: 24px;
	}
	.h5-emphasis {
		font-size: 18px;
	}
}

@media screen and (max-width: 1159px){

	.text-emphasis {
		font-size: 18px;
	}
	.h3-emphasis {
		font-size: 28px;
	}
	.h4-emphasis {
		font-size: 22px;
	}
	.h5-emphasis {
		font-size: 16px;
	}
}

@media screen and (max-width: 991px){

	.canon-logo-container {
		margin-top: 20px;
		margin-bottom: 15px;
		margin-left: 0px;
	}
	
	.canon-logo {
		max-width: 250px;
		min-width: 250px;
		margin-left: auto;
		margin-right: auto;
	}

	.language-button-container {
		margin-top: 15px;
		margin-bottom: 30px;
	}
	
	.cf-60 {
		font-size: 40px;
	}

	.cbtn-white-o {
		border-color: transparent;
		background-color: #cc0000;
		color: #ffffff;
	}
	
	.c-gradient {
		max-width: 95%;
	}
	
	.desktop-only {
		display: none !important;
	}

	.mobile-only {
		display: block !important;
	}
}

@media screen and (min-width: 600px){
	.vertical-align-middle {
		display: flex;
		align-items: center;
	}
}

@media screen and (max-width: 400px){
	.mobile-logo {
		width: 150px;
		height: 67px;
		margin: -71px auto auto auto;
		display: block;
		background-size: 146px auto;
		background-position: 3px 20px;
	}
}

@media screen and (max-width: 280px){
	.canon-logo {
		min-width: 100%;
	}
}</pre></body></html>