
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_7d9a18faeb9d6a74053d2d03.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_08e0414264f2e6f38e3641c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4bdf7a60936d1646002b635d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.953613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_822d0892cf22dda25f55d54d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0d243b3c1204d16d64d6b49d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.995605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b82356834b875abda40e574a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_608e78282374a312b617e7e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_46d2b93a856804edb48f17fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0952dfa619f50aa7ca3f9ac4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_05c3032840721db0e56adec2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1106d3e789f6be3e5be24bf5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_94cad2b3a2f8abab9af3dc26.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.103000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b83ab40f19ef6560d1f4508e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.995605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_460551464f257523aba70939.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_80c1dbcacbfc3b97891efd6b.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f14a5bd8cd05dc09aae8bef1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.953613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6a6c1f2f54af5454eb976d1a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_790a4f989173d13310fe7cf0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e00054b2f641faea9adfafb5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.995605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_60500cfbf24f4111ba7b7ecb.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_f34181b536cb1a335ab5dae1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_44096c28c6b3da3413337dbe.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_2d0292da2c944e283a4c0de3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.953613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_4d06bfd81ac7a326da078171.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.995605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_49c5daef53d6cf34e6ee33aa.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.103000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_98c19a2b307dcb302c3944c5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.924316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_115734a43b83dcb9c7237add.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_fefa1ba13812deb0e0aab426.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_ea3a1d1b5b6b28e81a6f3099.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.000000,0.249998,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249998,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249998,-0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,0.249996,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249996,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249996,-0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.067228,0.240622,-0.240808,0.067166,0,0);-ms-transform:matrix(0.067228,0.240622,-0.240808,0.067166,0,0);-webkit-transform:matrix(0.067228,0.240622,-0.240808,0.067166,0,0);}
.mb{transform:matrix(0.081324,0.236238,-0.236425,0.081261,0,0);-ms-transform:matrix(0.081324,0.236238,-0.236425,0.081261,0,0);-webkit-transform:matrix(0.081324,0.236238,-0.236425,0.081261,0,0);}
.m15{transform:matrix(0.220114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220114,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.227565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227565,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.240269,-0.069684,0.069736,0.240077,0,0);-ms-transform:matrix(0.240269,-0.069684,0.069736,0.240077,0,0);-webkit-transform:matrix(0.240269,-0.069684,0.069736,0.240077,0,0);}
.m5{transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.247390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247390,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248304,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248336,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249948,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250208,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.274998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274998,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.vb{vertical-align:-23.976000px;}
.v3{vertical-align:-19.394400px;}
.v7{vertical-align:-4.172774px;}
.v6{vertical-align:-2.086387px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.086387px;}
.v2{vertical-align:3.831600px;}
.v9{vertical-align:12.413400px;}
.v5{vertical-align:14.343600px;}
.v1{vertical-align:19.980600px;}
.v4{vertical-align:22.504200px;}
.va{vertical-align:23.976000px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.024000px;}
.ls1f{letter-spacing:0.057980px;}
.ls13{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.123313px;}
.ls11{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.524700px;}
.ls2{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.780000px;}
.lsa{letter-spacing:0.792000px;}
.ls1{letter-spacing:0.840000px;}
.ls8{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.864007px;}
.ls15{letter-spacing:0.900000px;}
.ls9{letter-spacing:0.936000px;}
.ls14{letter-spacing:0.960000px;}
.ls1e{letter-spacing:1.368000px;}
.ls19{letter-spacing:1.440000px;}
.ls1d{letter-spacing:1.500000px;}
.lsd{letter-spacing:2.016000px;}
.lsc{letter-spacing:2.088000px;}
.ls5{letter-spacing:2.160000px;}
.ls3{letter-spacing:2.220000px;}
.ls18{letter-spacing:2.448000px;}
.ls1c{letter-spacing:2.880000px;}
.ls1a{letter-spacing:3.168000px;}
.ls21{letter-spacing:3.168026px;}
.ls16{letter-spacing:7.080000px;}
.ls1b{letter-spacing:7.488000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws36{word-spacing:-90.000000px;}
.ws35{word-spacing:-72.000000px;}
.ws21{word-spacing:-55.176000px;}
.ws8{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws6{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.488000px;}
.wsc{word-spacing:-16.344000px;}
.wsa{word-spacing:-15.912000px;}
.ws37{word-spacing:-15.768000px;}
.wsd{word-spacing:-15.696000px;}
.ws7{word-spacing:-15.624000px;}
.wsf{word-spacing:-13.920000px;}
.wse{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.560000px;}
.ws1{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.020000px;}
.ws2{word-spacing:-8.115360px;}
.ws39{word-spacing:-3.168026px;}
.ws14{word-spacing:-2.160000px;}
.ws13{word-spacing:-2.088000px;}
.ws23{word-spacing:-1.500000px;}
.ws22{word-spacing:-1.368000px;}
.ws10{word-spacing:-0.936000px;}
.ws1f{word-spacing:-0.900000px;}
.ws12{word-spacing:-0.864000px;}
.ws1e{word-spacing:-0.840000px;}
.ws1a{word-spacing:-0.792000px;}
.ws1b{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.360000px;}
.ws18{word-spacing:-0.288000px;}
.ws38{word-spacing:-0.216000px;}
.ws1d{word-spacing:-0.144000px;}
.ws16{word-spacing:-0.072000px;}
.ws4{word-spacing:-0.060000px;}
.ws29{word-spacing:-0.057955px;}
.ws2e{word-spacing:-0.049676px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:0.360000px;}
.ws1c{word-spacing:0.792000px;}
.ws20{word-spacing:0.900000px;}
.ws11{word-spacing:0.936000px;}
.ws15{word-spacing:2.088000px;}
.ws25{word-spacing:8.585760px;}
.ws24{word-spacing:8.620380px;}
.ws31{word-spacing:8.850755px;}
.ws2f{word-spacing:8.851801px;}
.ws32{word-spacing:10.285651px;}
.ws30{word-spacing:10.286842px;}
.ws34{word-spacing:10.326976px;}
.ws33{word-spacing:10.327126px;}
.ws28{word-spacing:14.427857px;}
.ws27{word-spacing:18.555331px;}
.ws2b{word-spacing:28.919645px;}
.ws2a{word-spacing:31.006032px;}
.ws2c{word-spacing:33.092419px;}
.ws2d{word-spacing:37.207238px;}
.ws26{word-spacing:643.280820px;}
._e{margin-left:-15.048000px;}
._6{margin-left:-4.465980px;}
._f{margin-left:-3.168026px;}
._0{margin-left:-1.618956px;}
._1{width:1.020000px;}
._4{width:2.088000px;}
._d{width:3.588000px;}
._8{width:22.392000px;}
._7{width:31.063987px;}
._b{width:43.056000px;}
._a{width:51.696000px;}
._c{width:82.656000px;}
._11{width:163.780913px;}
._10{width:165.097562px;}
._9{width:200.088000px;}
._5{width:608.400000px;}
._3{width:1015.494600px;}
._2{width:2889.984000px;}
.fc4{color:rgb(237,28,36);}
.fc3{color:rgb(47,47,50);}
.fc1{color:rgb(190,35,41);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:29.596800px;}
.fs17{font-size:34.620000px;}
.fs2{font-size:34.980000px;}
.fs23{font-size:35.545200px;}
.fs20{font-size:35.549400px;}
.fs13{font-size:40.190400px;}
.fs22{font-size:41.469000px;}
.fs25{font-size:41.473800px;}
.fs24{font-size:41.474400px;}
.fs21{font-size:41.479200px;}
.fs29{font-size:41.976000px;}
.fs16{font-size:45.253800px;}
.fsf{font-size:46.861200px;}
.fse{font-size:46.866600px;}
.fs10{font-size:46.872000px;}
.fs14{font-size:46.878000px;}
.fs12{font-size:46.883400px;}
.fs11{font-size:46.888800px;}
.fs3{font-size:48.000000px;}
.fs1c{font-size:49.675800px;}
.fs1f{font-size:49.676400px;}
.fs19{font-size:49.679400px;}
.fs27{font-size:53.330400px;}
.fs26{font-size:53.336400px;}
.fs15{font-size:55.176000px;}
.fs1a{font-size:57.943200px;}
.fs1d{font-size:57.946800px;}
.fs1b{font-size:57.955200px;}
.fs1e{font-size:57.955800px;}
.fs1{font-size:60.000000px;}
.fsd{font-size:60.268189px;}
.fsc{font-size:60.307185px;}
.fsb{font-size:60.309350px;}
.fs7{font-size:68.808600px;}
.fs9{font-size:68.818800px;}
.fs5{font-size:72.000000px;}
.fs2b{font-size:72.000600px;}
.fs18{font-size:74.519400px;}
.fs8{font-size:80.277000px;}
.fsa{font-size:83.684400px;}
.fs28{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs2a{font-size:90.000600px;}
.fs2c{font-size:94.475400px;}
.fs0{font-size:107.930400px;}
.y0{bottom:0.000000px;}
.y7{bottom:25.155750px;}
.y9e{bottom:100.089900px;}
.y2a{bottom:104.236800px;}
.y4e{bottom:106.690500px;}
.y70{bottom:108.628350px;}
.y77{bottom:110.393550px;}
.y86{bottom:110.894550px;}
.y6f{bottom:125.185500px;}
.y1b{bottom:125.709900px;}
.y9d{bottom:127.089900px;}
.y76{bottom:132.893550px;}
.y4d{bottom:132.940500px;}
.y6e{bottom:133.980450px;}
.y2d{bottom:140.162550px;}
.y2e{bottom:140.289600px;}
.y7c{bottom:140.326200px;}
.y2f{bottom:150.868650px;}
.y1a{bottom:151.959900px;}
.y9c{bottom:154.089900px;}
.y75{bottom:155.393550px;}
.y36{bottom:155.400900px;}
.y7a{bottom:157.545450px;}
.y4c{bottom:159.190500px;}
.y30{bottom:166.732950px;}
.y85{bottom:168.657750px;}
.y6d{bottom:171.755850px;}
.y9b{bottom:181.089900px;}
.y31{bottom:183.358876px;}
.y74{bottom:185.393550px;}
.y19{bottom:185.709900px;}
.y35{bottom:199.976100px;}
.y7f{bottom:204.766050px;}
.y71{bottom:205.391550px;}
.y4b{bottom:206.232450px;}
.y2b{bottom:207.295950px;}
.y32{bottom:207.533250px;}
.y73{bottom:207.893550px;}
.y9a{bottom:208.089900px;}
.y83{bottom:210.247500px;}
.y6c{bottom:213.152400px;}
.y79{bottom:214.177650px;}
.y78{bottom:223.065000px;}
.y18{bottom:232.746000px;}
.y4a{bottom:233.232450px;}
.y2c{bottom:235.214850px;}
.y72{bottom:237.893550px;}
.y33{bottom:240.776400px;}
.y84{bottom:246.506850px;}
.y37{bottom:246.825920px;}
.y82{bottom:249.133195px;}
.y67{bottom:250.434282px;}
.y6b{bottom:252.994650px;}
.y9f{bottom:259.274400px;}
.y17{bottom:259.746000px;}
.y49{bottom:260.232450px;}
.y81{bottom:273.281250px;}
.y41{bottom:273.295800px;}
.y7e{bottom:283.469250px;}
.y1c{bottom:286.734000px;}
.y16{bottom:286.746000px;}
.y48{bottom:287.232450px;}
.y40{bottom:289.848600px;}
.y34{bottom:292.151400px;}
.y6a{bottom:292.841250px;}
.y66{bottom:292.854450px;}
.y7b{bottom:301.617150px;}
.y3d{bottom:301.998000px;}
.y38{bottom:309.530250px;}
.y98{bottom:313.840650px;}
.y47{bottom:314.232450px;}
.y3c{bottom:314.945850px;}
.y68{bottom:319.289100px;}
.y80{bottom:320.688000px;}
.y15{bottom:321.240000px;}
.y69{bottom:334.754850px;}
.y39{bottom:339.755724px;}
.y7d{bottom:340.042950px;}
.y97{bottom:340.840650px;}
.y46{bottom:341.232450px;}
.y14{bottom:348.240000px;}
.y3a{bottom:349.891050px;}
.y3e{bottom:358.368150px;}
.y3b{bottom:359.308650px;}
.y43{bottom:365.418450px;}
.y96{bottom:367.840650px;}
.y45{bottom:368.232450px;}
.y13{bottom:375.240000px;}
.y42{bottom:381.971250px;}
.y3f{bottom:389.134350px;}
.y95{bottom:394.840650px;}
.y44{bottom:395.232450px;}
.y12{bottom:409.746000px;}
.y94{bottom:421.840650px;}
.y6{bottom:422.711400px;}
.y11{bottom:436.746000px;}
.y93{bottom:448.840650px;}
.y5{bottom:448.961400px;}
.y10{bottom:463.746000px;}
.y65{bottom:469.839900px;}
.y4{bottom:475.211400px;}
.ya2{bottom:475.636387px;}
.y92{bottom:475.840650px;}
.y64{bottom:496.839900px;}
.y26{bottom:497.544450px;}
.yf{bottom:498.252000px;}
.y3{bottom:501.461400px;}
.y91{bottom:502.840650px;}
.ya1{bottom:507.136650px;}
.y25{bottom:520.044450px;}
.y63{bottom:523.839900px;}
.ye{bottom:525.252000px;}
.y2{bottom:527.711400px;}
.y24{bottom:542.544450px;}
.ya0{bottom:542.824950px;}
.y99{bottom:554.024400px;}
.y28{bottom:577.044450px;}
.yd{bottom:578.138700px;}
.y1{bottom:583.939500px;}
.y27{bottom:599.544450px;}
.y8f{bottom:608.590650px;}
.y8e{bottom:635.590650px;}
.yc{bottom:649.735800px;}
.y21{bottom:657.516900px;}
.y8d{bottom:662.590650px;}
.y22{bottom:681.173363px;}
.y4f{bottom:684.687000px;}
.y62{bottom:686.641500px;}
.y8c{bottom:689.590650px;}
.y61{bottom:709.141500px;}
.ya3{bottom:711.986550px;}
.y8b{bottom:716.590650px;}
.y29{bottom:723.994650px;}
.y60{bottom:731.641500px;}
.y5f{bottom:754.141500px;}
.y90{bottom:767.774400px;}
.y53{bottom:776.876250px;}
.y52{bottom:786.829500px;}
.y20{bottom:794.844450px;}
.y59{bottom:796.205250px;}
.y51{bottom:796.782750px;}
.y58{bottom:806.158500px;}
.y8a{bottom:833.257350px;}
.y55{bottom:858.954000px;}
.y5d{bottom:860.391030px;}
.y54{bottom:868.907250px;}
.y5c{bottom:870.344280px;}
.y89{bottom:905.688450px;}
.y23{bottom:913.668450px;}
.y1f{bottom:923.859000px;}
.y88{bottom:933.228450px;}
.yb{bottom:951.228450px;}
.y87{bottom:959.688450px;}
.y57{bottom:959.931885px;}
.y5b{bottom:967.860165px;}
.y56{bottom:969.885135px;}
.y5a{bottom:977.813415px;}
.ya{bottom:982.728450px;}
.y1e{bottom:987.228450px;}
.y9{bottom:1014.228450px;}
.y50{bottom:1016.682000px;}
.y5e{bottom:1016.686500px;}
.y8{bottom:1067.115300px;}
.y1d{bottom:1188.398400px;}
.ha{height:21.980827px;}
.h1a{height:33.977637px;}
.h2a{height:34.885670px;}
.h27{height:34.889792px;}
.h17{height:39.444680px;}
.h29{height:40.699556px;}
.h2c{height:40.704267px;}
.h2b{height:40.704855px;}
.h28{height:40.709566px;}
.h4{height:44.560547px;}
.h1c{height:44.589844px;}
.h3{height:45.959399px;}
.h13{height:45.991705px;}
.h12{height:45.997005px;}
.h14{height:46.002305px;}
.h18{height:46.008193px;}
.h16{height:46.013493px;}
.h15{height:46.018793px;}
.h19{height:48.554880px;}
.h5{height:50.062500px;}
.h2e{height:52.314831px;}
.h2d{height:52.320717px;}
.h7{height:53.472656px;}
.h33{height:53.473102px;}
.h8{height:53.507812px;}
.h9{height:53.520656px;}
.h31{height:55.150559px;}
.h1b{height:56.481837px;}
.h1e{height:56.868082px;}
.h25{height:56.871615px;}
.h24{height:56.879859px;}
.h2f{height:58.968000px;}
.h11{height:59.149931px;}
.h10{height:59.188204px;}
.hf{height:59.190329px;}
.h26{height:61.168070px;}
.h30{height:62.384766px;}
.h22{height:63.085681px;}
.h20{height:63.086281px;}
.h1f{height:63.097681px;}
.h23{height:63.103681px;}
.h6{height:63.105469px;}
.h21{height:63.109681px;}
.h32{height:66.841266px;}
.hd{height:67.508286px;}
.hb{height:67.531878px;}
.h34{height:70.164592px;}
.h1d{height:73.136716px;}
.hc{height:78.787485px;}
.h2{height:80.157294px;}
.he{height:82.131662px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:42.520050px;}
.x3{left:85.039350px;}
.x1b{left:88.060500px;}
.x2{left:91.211400px;}
.x11{left:94.483350px;}
.x43{left:95.998500px;}
.x26{left:99.577950px;}
.x23{left:103.013700px;}
.xd{left:106.293900px;}
.x5{left:112.324200px;}
.x25{left:115.445850px;}
.x8{left:118.233300px;}
.xc{left:119.928900px;}
.x1a{left:122.847098px;}
.x19{left:131.916450px;}
.x7{left:135.435450px;}
.x2b{left:137.167950px;}
.xa{left:149.438841px;}
.x20{left:151.519800px;}
.x4{left:153.667950px;}
.x3d{left:171.276150px;}
.x13{left:183.332550px;}
.x3c{left:191.332050px;}
.x9{left:203.913300px;}
.x3a{left:206.044200px;}
.x39{left:208.250250px;}
.x3f{left:225.849600px;}
.x42{left:229.167450px;}
.x3b{left:236.066100px;}
.x14{left:244.577700px;}
.x3e{left:249.444600px;}
.x40{left:251.986347px;}
.x27{left:256.821990px;}
.x41{left:266.866650px;}
.x37{left:268.521900px;}
.x38{left:274.162385px;}
.x1f{left:278.225100px;}
.x12{left:284.981250px;}
.x1e{left:311.626500px;}
.x15{left:314.897400px;}
.x2d{left:318.896550px;}
.x1d{left:325.239300px;}
.x1c{left:353.720250px;}
.x24{left:357.668700px;}
.x16{left:375.390918px;}
.x35{left:377.063250px;}
.x32{left:383.788350px;}
.x31{left:384.823950px;}
.x17{left:386.728950px;}
.x18{left:390.508350px;}
.x21{left:395.524650px;}
.x33{left:409.144050px;}
.x30{left:416.762700px;}
.x34{left:426.739050px;}
.x44{left:429.516649px;}
.x2a{left:442.179120px;}
.x45{left:446.455800px;}
.x28{left:449.388735px;}
.x29{left:451.552485px;}
.xb{left:459.000000px;}
.x22{left:467.715750px;}
.xf{left:488.975100px;}
.xe{left:500.906250px;}
.x10{left:502.610100px;}
.x2f{left:522.925867px;}
.x2e{left:524.582550px;}
.x2c{left:590.512950px;}
.x36{left:637.040100px;}
.x46{left:710.062500px;}
.x6{left:716.304900px;}
@media print{
.vb{vertical-align:-21.312000pt;}
.v3{vertical-align:-17.239467pt;}
.v7{vertical-align:-3.709133pt;}
.v6{vertical-align:-1.854566pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.854566pt;}
.v2{vertical-align:3.405867pt;}
.v9{vertical-align:11.034133pt;}
.v5{vertical-align:12.749867pt;}
.v1{vertical-align:17.760533pt;}
.v4{vertical-align:20.003733pt;}
.va{vertical-align:21.312000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.021333pt;}
.ls1f{letter-spacing:0.051538pt;}
.ls13{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.109611pt;}
.ls11{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.466400pt;}
.ls2{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.693333pt;}
.lsa{letter-spacing:0.704000pt;}
.ls1{letter-spacing:0.746667pt;}
.ls8{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.768006pt;}
.ls15{letter-spacing:0.800000pt;}
.ls9{letter-spacing:0.832000pt;}
.ls14{letter-spacing:0.853333pt;}
.ls1e{letter-spacing:1.216000pt;}
.ls19{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.333333pt;}
.lsd{letter-spacing:1.792000pt;}
.lsc{letter-spacing:1.856000pt;}
.ls5{letter-spacing:1.920000pt;}
.ls3{letter-spacing:1.973333pt;}
.ls18{letter-spacing:2.176000pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:2.816000pt;}
.ls21{letter-spacing:2.816023pt;}
.ls16{letter-spacing:6.293333pt;}
.ls1b{letter-spacing:6.656000pt;}
.ws36{word-spacing:-80.000000pt;}
.ws35{word-spacing:-64.000000pt;}
.ws21{word-spacing:-49.045333pt;}
.ws8{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.656000pt;}
.wsc{word-spacing:-14.528000pt;}
.wsa{word-spacing:-14.144000pt;}
.ws37{word-spacing:-14.016000pt;}
.wsd{word-spacing:-13.952000pt;}
.ws7{word-spacing:-13.888000pt;}
.wsf{word-spacing:-12.373333pt;}
.wse{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.053333pt;}
.ws1{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.573333pt;}
.ws2{word-spacing:-7.213653pt;}
.ws39{word-spacing:-2.816023pt;}
.ws14{word-spacing:-1.920000pt;}
.ws13{word-spacing:-1.856000pt;}
.ws23{word-spacing:-1.333333pt;}
.ws22{word-spacing:-1.216000pt;}
.ws10{word-spacing:-0.832000pt;}
.ws1f{word-spacing:-0.800000pt;}
.ws12{word-spacing:-0.768000pt;}
.ws1e{word-spacing:-0.746667pt;}
.ws1a{word-spacing:-0.704000pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.320000pt;}
.ws18{word-spacing:-0.256000pt;}
.ws38{word-spacing:-0.192000pt;}
.ws1d{word-spacing:-0.128000pt;}
.ws16{word-spacing:-0.064000pt;}
.ws4{word-spacing:-0.053333pt;}
.ws29{word-spacing:-0.051516pt;}
.ws2e{word-spacing:-0.044157pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:0.320000pt;}
.ws1c{word-spacing:0.704000pt;}
.ws20{word-spacing:0.800000pt;}
.ws11{word-spacing:0.832000pt;}
.ws15{word-spacing:1.856000pt;}
.ws25{word-spacing:7.631787pt;}
.ws24{word-spacing:7.662560pt;}
.ws31{word-spacing:7.867338pt;}
.ws2f{word-spacing:7.868267pt;}
.ws32{word-spacing:9.142801pt;}
.ws30{word-spacing:9.143859pt;}
.ws34{word-spacing:9.179534pt;}
.ws33{word-spacing:9.179667pt;}
.ws28{word-spacing:12.824762pt;}
.ws27{word-spacing:16.493627pt;}
.ws2b{word-spacing:25.706351pt;}
.ws2a{word-spacing:27.560917pt;}
.ws2c{word-spacing:29.415484pt;}
.ws2d{word-spacing:33.073101pt;}
.ws26{word-spacing:571.805173pt;}
._e{margin-left:-13.376000pt;}
._6{margin-left:-3.969760pt;}
._f{margin-left:-2.816023pt;}
._0{margin-left:-1.439072pt;}
._1{width:0.906667pt;}
._4{width:1.856000pt;}
._d{width:3.189333pt;}
._8{width:19.904000pt;}
._7{width:27.612433pt;}
._b{width:38.272000pt;}
._a{width:45.952000pt;}
._c{width:73.472000pt;}
._11{width:145.583034pt;}
._10{width:146.753389pt;}
._9{width:177.856000pt;}
._5{width:540.800000pt;}
._3{width:902.661867pt;}
._2{width:2568.874667pt;}
.fs6{font-size:26.308267pt;}
.fs17{font-size:30.773333pt;}
.fs2{font-size:31.093333pt;}
.fs23{font-size:31.595733pt;}
.fs20{font-size:31.599467pt;}
.fs13{font-size:35.724800pt;}
.fs22{font-size:36.861333pt;}
.fs25{font-size:36.865600pt;}
.fs24{font-size:36.866133pt;}
.fs21{font-size:36.870400pt;}
.fs29{font-size:37.312000pt;}
.fs16{font-size:40.225600pt;}
.fsf{font-size:41.654400pt;}
.fse{font-size:41.659200pt;}
.fs10{font-size:41.664000pt;}
.fs14{font-size:41.669333pt;}
.fs12{font-size:41.674133pt;}
.fs11{font-size:41.678933pt;}
.fs3{font-size:42.666667pt;}
.fs1c{font-size:44.156267pt;}
.fs1f{font-size:44.156800pt;}
.fs19{font-size:44.159467pt;}
.fs27{font-size:47.404800pt;}
.fs26{font-size:47.410133pt;}
.fs15{font-size:49.045333pt;}
.fs1a{font-size:51.505067pt;}
.fs1d{font-size:51.508267pt;}
.fs1b{font-size:51.515733pt;}
.fs1e{font-size:51.516267pt;}
.fs1{font-size:53.333333pt;}
.fsd{font-size:53.571723pt;}
.fsc{font-size:53.606387pt;}
.fsb{font-size:53.608311pt;}
.fs7{font-size:61.163200pt;}
.fs9{font-size:61.172267pt;}
.fs5{font-size:64.000000pt;}
.fs2b{font-size:64.000533pt;}
.fs18{font-size:66.239467pt;}
.fs8{font-size:71.357333pt;}
.fsa{font-size:74.386133pt;}
.fs28{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs2a{font-size:80.000533pt;}
.fs2c{font-size:83.978133pt;}
.fs0{font-size:95.938133pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:22.360667pt;}
.y9e{bottom:88.968800pt;}
.y2a{bottom:92.654933pt;}
.y4e{bottom:94.836000pt;}
.y70{bottom:96.558533pt;}
.y77{bottom:98.127600pt;}
.y86{bottom:98.572933pt;}
.y6f{bottom:111.276000pt;}
.y1b{bottom:111.742133pt;}
.y9d{bottom:112.968800pt;}
.y76{bottom:118.127600pt;}
.y4d{bottom:118.169333pt;}
.y6e{bottom:119.093733pt;}
.y2d{bottom:124.588933pt;}
.y2e{bottom:124.701867pt;}
.y7c{bottom:124.734400pt;}
.y2f{bottom:134.105467pt;}
.y1a{bottom:135.075467pt;}
.y9c{bottom:136.968800pt;}
.y75{bottom:138.127600pt;}
.y36{bottom:138.134133pt;}
.y7a{bottom:140.040400pt;}
.y4c{bottom:141.502667pt;}
.y30{bottom:148.207067pt;}
.y85{bottom:149.918000pt;}
.y6d{bottom:152.671867pt;}
.y9b{bottom:160.968800pt;}
.y31{bottom:162.985668pt;}
.y74{bottom:164.794267pt;}
.y19{bottom:165.075467pt;}
.y35{bottom:177.756533pt;}
.y7f{bottom:182.014267pt;}
.y71{bottom:182.570267pt;}
.y4b{bottom:183.317733pt;}
.y2b{bottom:184.263067pt;}
.y32{bottom:184.474000pt;}
.y73{bottom:184.794267pt;}
.y9a{bottom:184.968800pt;}
.y83{bottom:186.886667pt;}
.y6c{bottom:189.468800pt;}
.y79{bottom:190.380133pt;}
.y78{bottom:198.280000pt;}
.y18{bottom:206.885333pt;}
.y4a{bottom:207.317733pt;}
.y2c{bottom:209.079867pt;}
.y72{bottom:211.460933pt;}
.y33{bottom:214.023467pt;}
.y84{bottom:219.117200pt;}
.y37{bottom:219.400818pt;}
.y82{bottom:221.451729pt;}
.y67{bottom:222.608250pt;}
.y6b{bottom:224.884133pt;}
.y9f{bottom:230.466133pt;}
.y17{bottom:230.885333pt;}
.y49{bottom:231.317733pt;}
.y81{bottom:242.916667pt;}
.y41{bottom:242.929600pt;}
.y7e{bottom:251.972667pt;}
.y1c{bottom:254.874667pt;}
.y16{bottom:254.885333pt;}
.y48{bottom:255.317733pt;}
.y40{bottom:257.643200pt;}
.y34{bottom:259.690133pt;}
.y6a{bottom:260.303333pt;}
.y66{bottom:260.315067pt;}
.y7b{bottom:268.104133pt;}
.y3d{bottom:268.442667pt;}
.y38{bottom:275.138000pt;}
.y98{bottom:278.969467pt;}
.y47{bottom:279.317733pt;}
.y3c{bottom:279.951867pt;}
.y68{bottom:283.812533pt;}
.y80{bottom:285.056000pt;}
.y15{bottom:285.546667pt;}
.y69{bottom:297.559867pt;}
.y39{bottom:302.005088pt;}
.y7d{bottom:302.260400pt;}
.y97{bottom:302.969467pt;}
.y46{bottom:303.317733pt;}
.y14{bottom:309.546667pt;}
.y3a{bottom:311.014267pt;}
.y3e{bottom:318.549467pt;}
.y3b{bottom:319.385467pt;}
.y43{bottom:324.816400pt;}
.y96{bottom:326.969467pt;}
.y45{bottom:327.317733pt;}
.y13{bottom:333.546667pt;}
.y42{bottom:339.530000pt;}
.y3f{bottom:345.897200pt;}
.y95{bottom:350.969467pt;}
.y44{bottom:351.317733pt;}
.y12{bottom:364.218667pt;}
.y94{bottom:374.969467pt;}
.y6{bottom:375.743467pt;}
.y11{bottom:388.218667pt;}
.y93{bottom:398.969467pt;}
.y5{bottom:399.076800pt;}
.y10{bottom:412.218667pt;}
.y65{bottom:417.635467pt;}
.y4{bottom:422.410133pt;}
.ya2{bottom:422.787900pt;}
.y92{bottom:422.969467pt;}
.y64{bottom:441.635467pt;}
.y26{bottom:442.261733pt;}
.yf{bottom:442.890667pt;}
.y3{bottom:445.743467pt;}
.y91{bottom:446.969467pt;}
.ya1{bottom:450.788133pt;}
.y25{bottom:462.261733pt;}
.y63{bottom:465.635467pt;}
.ye{bottom:466.890667pt;}
.y2{bottom:469.076800pt;}
.y24{bottom:482.261733pt;}
.ya0{bottom:482.511067pt;}
.y99{bottom:492.466133pt;}
.y28{bottom:512.928400pt;}
.yd{bottom:513.901067pt;}
.y1{bottom:519.057333pt;}
.y27{bottom:532.928400pt;}
.y8f{bottom:540.969467pt;}
.y8e{bottom:564.969467pt;}
.yc{bottom:577.542933pt;}
.y21{bottom:584.459467pt;}
.y8d{bottom:588.969467pt;}
.y22{bottom:605.487433pt;}
.y4f{bottom:608.610667pt;}
.y62{bottom:610.348000pt;}
.y8c{bottom:612.969467pt;}
.y61{bottom:630.348000pt;}
.ya3{bottom:632.876933pt;}
.y8b{bottom:636.969467pt;}
.y29{bottom:643.550800pt;}
.y60{bottom:650.348000pt;}
.y5f{bottom:670.348000pt;}
.y90{bottom:682.466133pt;}
.y53{bottom:690.556667pt;}
.y52{bottom:699.404000pt;}
.y20{bottom:706.528400pt;}
.y59{bottom:707.738000pt;}
.y51{bottom:708.251333pt;}
.y58{bottom:716.585333pt;}
.y8a{bottom:740.673200pt;}
.y55{bottom:763.514667pt;}
.y5d{bottom:764.792027pt;}
.y54{bottom:772.362000pt;}
.y5c{bottom:773.639360pt;}
.y89{bottom:805.056400pt;}
.y23{bottom:812.149733pt;}
.y1f{bottom:821.208000pt;}
.y88{bottom:829.536400pt;}
.yb{bottom:845.536400pt;}
.y87{bottom:853.056400pt;}
.y57{bottom:853.272787pt;}
.y5b{bottom:860.320147pt;}
.y56{bottom:862.120120pt;}
.y5a{bottom:869.167480pt;}
.ya{bottom:873.536400pt;}
.y1e{bottom:877.536400pt;}
.y9{bottom:901.536400pt;}
.y50{bottom:903.717333pt;}
.y5e{bottom:903.721333pt;}
.y8{bottom:948.546933pt;}
.y1d{bottom:1056.354133pt;}
.ha{height:19.538512pt;}
.h1a{height:30.202344pt;}
.h2a{height:31.009484pt;}
.h27{height:31.013148pt;}
.h17{height:35.061937pt;}
.h29{height:36.177383pt;}
.h2c{height:36.181570pt;}
.h2b{height:36.182094pt;}
.h28{height:36.186281pt;}
.h4{height:39.609375pt;}
.h1c{height:39.635417pt;}
.h3{height:40.852799pt;}
.h13{height:40.881516pt;}
.h12{height:40.886227pt;}
.h14{height:40.890937pt;}
.h18{height:40.896172pt;}
.h16{height:40.900883pt;}
.h15{height:40.905594pt;}
.h19{height:43.159893pt;}
.h5{height:44.500000pt;}
.h2e{height:46.502072pt;}
.h2d{height:46.507304pt;}
.h7{height:47.531250pt;}
.h33{height:47.531646pt;}
.h8{height:47.562500pt;}
.h9{height:47.573917pt;}
.h31{height:49.022719pt;}
.h1b{height:50.206077pt;}
.h1e{height:50.549406pt;}
.h25{height:50.552547pt;}
.h24{height:50.559875pt;}
.h2f{height:52.416000pt;}
.h11{height:52.577717pt;}
.h10{height:52.611737pt;}
.hf{height:52.613625pt;}
.h26{height:54.371618pt;}
.h30{height:55.453125pt;}
.h22{height:56.076161pt;}
.h20{height:56.076694pt;}
.h1f{height:56.086828pt;}
.h23{height:56.092161pt;}
.h6{height:56.093750pt;}
.h21{height:56.097494pt;}
.h32{height:59.414459pt;}
.hd{height:60.007365pt;}
.hb{height:60.028336pt;}
.h34{height:62.368526pt;}
.h1d{height:65.010414pt;}
.hc{height:70.033320pt;}
.h2{height:71.250928pt;}
.he{height:73.005922pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:37.795600pt;}
.x3{left:75.590533pt;}
.x1b{left:78.276000pt;}
.x2{left:81.076800pt;}
.x11{left:83.985200pt;}
.x43{left:85.332000pt;}
.x26{left:88.513733pt;}
.x23{left:91.567733pt;}
.xd{left:94.483467pt;}
.x5{left:99.843733pt;}
.x25{left:102.618533pt;}
.x8{left:105.096267pt;}
.xc{left:106.603467pt;}
.x1a{left:109.197420pt;}
.x19{left:117.259067pt;}
.x7{left:120.387067pt;}
.x2b{left:121.927067pt;}
.xa{left:132.834526pt;}
.x20{left:134.684267pt;}
.x4{left:136.593733pt;}
.x3d{left:152.245467pt;}
.x13{left:162.962267pt;}
.x3c{left:170.072933pt;}
.x9{left:181.256267pt;}
.x3a{left:183.150400pt;}
.x39{left:185.111333pt;}
.x3f{left:200.755200pt;}
.x42{left:203.704400pt;}
.x3b{left:209.836533pt;}
.x14{left:217.402400pt;}
.x3e{left:221.728533pt;}
.x40{left:223.987864pt;}
.x27{left:228.286213pt;}
.x41{left:237.214800pt;}
.x37{left:238.686133pt;}
.x38{left:243.699898pt;}
.x1f{left:247.311200pt;}
.x12{left:253.316667pt;}
.x1e{left:277.001333pt;}
.x15{left:279.908800pt;}
.x2d{left:283.463600pt;}
.x1d{left:289.101600pt;}
.x1c{left:314.418000pt;}
.x24{left:317.927733pt;}
.x16{left:333.680816pt;}
.x35{left:335.167333pt;}
.x32{left:341.145200pt;}
.x31{left:342.065733pt;}
.x17{left:343.759067pt;}
.x18{left:347.118533pt;}
.x21{left:351.577467pt;}
.x33{left:363.683600pt;}
.x30{left:370.455733pt;}
.x34{left:379.323600pt;}
.x44{left:381.792577pt;}
.x2a{left:393.048107pt;}
.x45{left:396.849600pt;}
.x28{left:399.456653pt;}
.x29{left:401.379987pt;}
.xb{left:408.000000pt;}
.x22{left:415.747333pt;}
.xf{left:434.644533pt;}
.xe{left:445.250000pt;}
.x10{left:446.764533pt;}
.x2f{left:464.822993pt;}
.x2e{left:466.295600pt;}
.x2c{left:524.900400pt;}
.x36{left:566.257867pt;}
.x46{left:631.166667pt;}
.x6{left:636.715467pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  