
    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_5191dc0460c901367e16ddbc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.800000;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_044e56d1c9f08d3feee5cf21.woff')format("woff");}.ff2{font-family:ff2;line-height:1.264000;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_d790f85de8b38f0a1e73d94a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053000;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_65a25757531f1db192991b75.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_f5c3b04bfcbf886c08036106.woff')format("woff");}.ff5{font-family:ff5;line-height:1.058000;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_72e0d1ad457785242b06016f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.800000;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_573600b0dcc61d6290d3bc6d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.053000;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_63fc863effbc6e2be5e56d7b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_d2c9d5a034bbe8309acd10bd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.009000;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_c447aeb9f306e3aa215becc9.woff')format("woff");}.ffa{font-family:ffa;line-height:1.008000;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_c598232446276ee94bfb5677.woff')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_4fefaad138596a889dc1a08b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.008000;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_73bd25a1713c107bcb3331da.woff')format("woff");}.ffd{font-family:ffd;line-height:0.800000;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;}
.m2{transform:matrix(0.080650,0.236634,-0.236634,0.080650,0,0);-ms-transform:matrix(0.080650,0.236634,-0.236634,0.080650,0,0);-webkit-transform:matrix(0.080650,0.236634,-0.236634,0.080650,0,0);}
.m3{transform:matrix(0.087833,0.234063,-0.234063,0.087833,0,0);-ms-transform:matrix(0.087833,0.234063,-0.234063,0.087833,0,0);-webkit-transform:matrix(0.087833,0.234063,-0.234063,0.087833,0,0);}
.m4{transform:matrix(0.095007,0.231244,-0.231244,0.095007,0,0);-ms-transform:matrix(0.095007,0.231244,-0.231244,0.095007,0,0);-webkit-transform:matrix(0.095007,0.231244,-0.231244,0.095007,0,0);}
.m5{transform:matrix(0.102574,0.227988,-0.227988,0.102574,0,0);-ms-transform:matrix(0.102574,0.227988,-0.227988,0.102574,0,0);-webkit-transform:matrix(0.102574,0.227988,-0.227988,0.102574,0,0);}
.m6{transform:matrix(0.109601,0.224694,-0.224694,0.109601,0,0);-ms-transform:matrix(0.109601,0.224694,-0.224694,0.109601,0,0);-webkit-transform:matrix(0.109601,0.224694,-0.224694,0.109601,0,0);}
.m7{transform:matrix(0.116142,0.221385,-0.221385,0.116142,0,0);-ms-transform:matrix(0.116142,0.221385,-0.221385,0.116142,0,0);-webkit-transform:matrix(0.116142,0.221385,-0.221385,0.116142,0,0);}
.m50{transform:matrix(0.121909,-0.218262,0.218262,0.121909,0,0);-ms-transform:matrix(0.121909,-0.218262,0.218262,0.121909,0,0);-webkit-transform:matrix(0.121909,-0.218262,0.218262,0.121909,0,0);}
.m8{transform:matrix(0.123098,0.217593,-0.217593,0.123098,0,0);-ms-transform:matrix(0.123098,0.217593,-0.217593,0.123098,0,0);-webkit-transform:matrix(0.123098,0.217593,-0.217593,0.123098,0,0);}
.m4f{transform:matrix(0.128652,-0.214357,0.214357,0.128652,0,0);-ms-transform:matrix(0.128652,-0.214357,0.214357,0.128652,0,0);-webkit-transform:matrix(0.128652,-0.214357,0.214357,0.128652,0,0);}
.m9{transform:matrix(0.128891,0.214213,-0.214213,0.128891,0,0);-ms-transform:matrix(0.128891,0.214213,-0.214213,0.128891,0,0);-webkit-transform:matrix(0.128891,0.214213,-0.214213,0.128891,0,0);}
.ma{transform:matrix(0.134429,0.210781,-0.210781,0.134429,0,0);-ms-transform:matrix(0.134429,0.210781,-0.210781,0.134429,0,0);-webkit-transform:matrix(0.134429,0.210781,-0.210781,0.134429,0,0);}
.m4e{transform:matrix(0.135353,-0.210189,0.210189,0.135353,0,0);-ms-transform:matrix(0.135353,-0.210189,0.210189,0.135353,0,0);-webkit-transform:matrix(0.135353,-0.210189,0.210189,0.135353,0,0);}
.mb{transform:matrix(0.140977,0.206459,-0.206459,0.140977,0,0);-ms-transform:matrix(0.140977,0.206459,-0.206459,0.140977,0,0);-webkit-transform:matrix(0.140977,0.206459,-0.206459,0.140977,0,0);}
.m4d{transform:matrix(0.142262,-0.205576,0.205576,0.142262,0,0);-ms-transform:matrix(0.142262,-0.205576,0.205576,0.142262,0,0);-webkit-transform:matrix(0.142262,-0.205576,0.205576,0.142262,0,0);}
.mc{transform:matrix(0.147454,0.201884,-0.201884,0.147454,0,0);-ms-transform:matrix(0.147454,0.201884,-0.201884,0.147454,0,0);-webkit-transform:matrix(0.147454,0.201884,-0.201884,0.147454,0,0);}
.m4c{transform:matrix(0.149013,-0.200736,0.200736,0.149013,0,0);-ms-transform:matrix(0.149013,-0.200736,0.200736,0.149013,0,0);-webkit-transform:matrix(0.149013,-0.200736,0.200736,0.149013,0,0);}
.md{transform:matrix(0.153692,0.197177,-0.197177,0.153692,0,0);-ms-transform:matrix(0.153692,0.197177,-0.197177,0.153692,0,0);-webkit-transform:matrix(0.153692,0.197177,-0.197177,0.153692,0,0);}
.m4b{transform:matrix(0.155299,-0.195914,0.195914,0.155299,0,0);-ms-transform:matrix(0.155299,-0.195914,0.195914,0.155299,0,0);-webkit-transform:matrix(0.155299,-0.195914,0.195914,0.155299,0,0);}
.me{transform:matrix(0.158195,0.193583,-0.193583,0.158195,0,0);-ms-transform:matrix(0.158195,0.193583,-0.193583,0.158195,0,0);-webkit-transform:matrix(0.158195,0.193583,-0.193583,0.158195,0,0);}
.m4a{transform:matrix(0.161757,-0.190616,0.190616,0.161757,0,0);-ms-transform:matrix(0.161757,-0.190616,0.190616,0.161757,0,0);-webkit-transform:matrix(0.161757,-0.190616,0.190616,0.161757,0,0);}
.mf{transform:matrix(0.163127,0.189445,-0.189445,0.163127,0,0);-ms-transform:matrix(0.163127,0.189445,-0.189445,0.163127,0,0);-webkit-transform:matrix(0.163127,0.189445,-0.189445,0.163127,0,0);}
.m49{transform:matrix(0.168012,-0.185127,0.185127,0.168012,0,0);-ms-transform:matrix(0.168012,-0.185127,0.185127,0.168012,0,0);-webkit-transform:matrix(0.168012,-0.185127,0.185127,0.168012,0,0);}
.m10{transform:matrix(0.168287,0.184877,-0.184877,0.168287,0,0);-ms-transform:matrix(0.168287,0.184877,-0.184877,0.168287,0,0);-webkit-transform:matrix(0.168287,0.184877,-0.184877,0.168287,0,0);}
.m11{transform:matrix(0.173186,0.180295,-0.180295,0.173186,0,0);-ms-transform:matrix(0.173186,0.180295,-0.180295,0.173186,0,0);-webkit-transform:matrix(0.173186,0.180295,-0.180295,0.173186,0,0);}
.m48{transform:matrix(0.174081,-0.179432,0.179432,0.174081,0,0);-ms-transform:matrix(0.174081,-0.179432,0.179432,0.174081,0,0);-webkit-transform:matrix(0.174081,-0.179432,0.179432,0.174081,0,0);}
.m12{transform:matrix(0.177961,0.175585,-0.175585,0.177961,0,0);-ms-transform:matrix(0.177961,0.175585,-0.175585,0.177961,0,0);-webkit-transform:matrix(0.177961,0.175585,-0.175585,0.177961,0,0);}
.m47{transform:matrix(0.180245,-0.173239,0.173239,0.180245,0,0);-ms-transform:matrix(0.180245,-0.173239,0.173239,0.180245,0,0);-webkit-transform:matrix(0.180245,-0.173239,0.173239,0.180245,0,0);}
.m13{transform:matrix(0.182202,0.171179,-0.171179,0.182202,0,0);-ms-transform:matrix(0.182202,0.171179,-0.171179,0.182202,0,0);-webkit-transform:matrix(0.182202,0.171179,-0.171179,0.182202,0,0);}
.m46{transform:matrix(0.186486,-0.166502,0.166502,0.186486,0,0);-ms-transform:matrix(0.186486,-0.166502,0.166502,0.186486,0,0);-webkit-transform:matrix(0.186486,-0.166502,0.166502,0.186486,0,0);}
.m14{transform:matrix(0.187428,0.165441,-0.165441,0.187428,0,0);-ms-transform:matrix(0.187428,0.165441,-0.165441,0.187428,0,0);-webkit-transform:matrix(0.187428,0.165441,-0.165441,0.187428,0,0);}
.m45{transform:matrix(0.191134,-0.161145,0.161145,0.191134,0,0);-ms-transform:matrix(0.191134,-0.161145,0.161145,0.191134,0,0);-webkit-transform:matrix(0.191134,-0.161145,0.161145,0.191134,0,0);}
.m15{transform:matrix(0.192301,0.159751,-0.159751,0.192301,0,0);-ms-transform:matrix(0.192301,0.159751,-0.159751,0.192301,0,0);-webkit-transform:matrix(0.192301,0.159751,-0.159751,0.192301,0,0);}
.m44{transform:matrix(0.195561,-0.155743,0.155743,0.195561,0,0);-ms-transform:matrix(0.195561,-0.155743,0.155743,0.195561,0,0);-webkit-transform:matrix(0.195561,-0.155743,0.155743,0.195561,0,0);}
.m16{transform:matrix(0.195983,0.155211,-0.155211,0.195983,0,0);-ms-transform:matrix(0.195983,0.155211,-0.155211,0.195983,0,0);-webkit-transform:matrix(0.195983,0.155211,-0.155211,0.195983,0,0);}
.m43{transform:matrix(0.199835,-0.150219,0.150219,0.199835,0,0);-ms-transform:matrix(0.199835,-0.150219,0.150219,0.199835,0,0);-webkit-transform:matrix(0.199835,-0.150219,0.150219,0.199835,0,0);}
.m17{transform:matrix(0.199961,0.150051,-0.150051,0.199961,0,0);-ms-transform:matrix(0.199961,0.150051,-0.150051,0.199961,0,0);-webkit-transform:matrix(0.199961,0.150051,-0.150051,0.199961,0,0);}
.m42{transform:matrix(0.203682,-0.144961,0.144961,0.203682,0,0);-ms-transform:matrix(0.203682,-0.144961,0.144961,0.203682,0,0);-webkit-transform:matrix(0.203682,-0.144961,0.144961,0.203682,0,0);}
.m18{transform:matrix(0.203803,0.144790,-0.144790,0.203803,0,0);-ms-transform:matrix(0.203803,0.144790,-0.144790,0.203803,0,0);-webkit-transform:matrix(0.203803,0.144790,-0.144790,0.203803,0,0);}
.m19{transform:matrix(0.207340,0.139679,-0.139679,0.207340,0,0);-ms-transform:matrix(0.207340,0.139679,-0.139679,0.207340,0,0);-webkit-transform:matrix(0.207340,0.139679,-0.139679,0.207340,0,0);}
.m41{transform:matrix(0.207390,-0.139604,0.139604,0.207390,0,0);-ms-transform:matrix(0.207390,-0.139604,0.139604,0.207390,0,0);-webkit-transform:matrix(0.207390,-0.139604,0.139604,0.207390,0,0);}
.m40{transform:matrix(0.210999,-0.134088,0.134088,0.210999,0,0);-ms-transform:matrix(0.210999,-0.134088,0.134088,0.210999,0,0);-webkit-transform:matrix(0.210999,-0.134088,0.134088,0.210999,0,0);}
.m1a{transform:matrix(0.211600,0.133137,-0.133137,0.211600,0,0);-ms-transform:matrix(0.211600,0.133137,-0.133137,0.211600,0,0);-webkit-transform:matrix(0.211600,0.133137,-0.133137,0.211600,0,0);}
.m3f{transform:matrix(0.214227,-0.128868,0.128868,0.214227,0,0);-ms-transform:matrix(0.214227,-0.128868,0.128868,0.214227,0,0);-webkit-transform:matrix(0.214227,-0.128868,0.128868,0.214227,0,0);}
.m1b{transform:matrix(0.215914,0.126020,-0.126020,0.215914,0,0);-ms-transform:matrix(0.215914,0.126020,-0.126020,0.215914,0,0);-webkit-transform:matrix(0.215914,0.126020,-0.126020,0.215914,0,0);}
.m3e{transform:matrix(0.217288,-0.123636,0.123636,0.217288,0,0);-ms-transform:matrix(0.217288,-0.123636,0.123636,0.217288,0,0);-webkit-transform:matrix(0.217288,-0.123636,0.123636,0.217288,0,0);}
.m1c{transform:matrix(0.220029,0.118689,-0.118689,0.220029,0,0);-ms-transform:matrix(0.220029,0.118689,-0.118689,0.220029,0,0);-webkit-transform:matrix(0.220029,0.118689,-0.118689,0.220029,0,0);}
.m3d{transform:matrix(0.221007,-0.116859,0.116859,0.221007,0,0);-ms-transform:matrix(0.221007,-0.116859,0.116859,0.221007,0,0);-webkit-transform:matrix(0.221007,-0.116859,0.116859,0.221007,0,0);}
.m1d{transform:matrix(0.223885,0.111244,-0.111244,0.223885,0,0);-ms-transform:matrix(0.223885,0.111244,-0.111244,0.223885,0,0);-webkit-transform:matrix(0.223885,0.111244,-0.111244,0.223885,0,0);}
.m3c{transform:matrix(0.224551,-0.109894,0.109894,0.224551,0,0);-ms-transform:matrix(0.224551,-0.109894,0.109894,0.224551,0,0);-webkit-transform:matrix(0.224551,-0.109894,0.109894,0.224551,0,0);}
.m1e{transform:matrix(0.226598,0.105610,-0.105610,0.226598,0,0);-ms-transform:matrix(0.226598,0.105610,-0.105610,0.226598,0,0);-webkit-transform:matrix(0.226598,0.105610,-0.105610,0.226598,0,0);}
.m3b{transform:matrix(0.227924,-0.102717,0.102717,0.227924,0,0);-ms-transform:matrix(0.227924,-0.102717,0.102717,0.227924,0,0);-webkit-transform:matrix(0.227924,-0.102717,0.102717,0.227924,0,0);}
.m1f{transform:matrix(0.229196,0.099846,-0.099846,0.229196,0,0);-ms-transform:matrix(0.229196,0.099846,-0.099846,0.229196,0,0);-webkit-transform:matrix(0.229196,0.099846,-0.099846,0.229196,0,0);}
.m3a{transform:matrix(0.231035,-0.095515,0.095515,0.231035,0,0);-ms-transform:matrix(0.231035,-0.095515,0.095515,0.231035,0,0);-webkit-transform:matrix(0.231035,-0.095515,0.095515,0.231035,0,0);}
.m20{transform:matrix(0.231648,0.094018,-0.094018,0.231648,0,0);-ms-transform:matrix(0.231648,0.094018,-0.094018,0.231648,0,0);-webkit-transform:matrix(0.231648,0.094018,-0.094018,0.231648,0,0);}
.m51{transform:matrix(0.231715,-0.093852,0.093852,0.231715,0,0);-ms-transform:matrix(0.231715,-0.093852,0.093852,0.231715,0,0);-webkit-transform:matrix(0.231715,-0.093852,0.093852,0.231715,0,0);}
.m39{transform:matrix(0.233445,-0.089462,0.089462,0.233445,0,0);-ms-transform:matrix(0.233445,-0.089462,0.089462,0.233445,0,0);-webkit-transform:matrix(0.233445,-0.089462,0.089462,0.233445,0,0);}
.m21{transform:matrix(0.233992,0.088021,-0.088021,0.233992,0,0);-ms-transform:matrix(0.233992,0.088021,-0.088021,0.233992,0,0);-webkit-transform:matrix(0.233992,0.088021,-0.088021,0.233992,0,0);}
.m38{transform:matrix(0.235563,-0.083725,0.083725,0.235563,0,0);-ms-transform:matrix(0.235563,-0.083725,0.083725,0.235563,0,0);-webkit-transform:matrix(0.235563,-0.083725,0.083725,0.235563,0,0);}
.m22{transform:matrix(0.236861,0.079980,-0.079980,0.236861,0,0);-ms-transform:matrix(0.236861,0.079980,-0.079980,0.236861,0,0);-webkit-transform:matrix(0.236861,0.079980,-0.079980,0.236861,0,0);}
.m37{transform:matrix(0.238009,-0.076498,0.076498,0.238009,0,0);-ms-transform:matrix(0.238009,-0.076498,0.076498,0.238009,0,0);-webkit-transform:matrix(0.238009,-0.076498,0.076498,0.238009,0,0);}
.m23{transform:matrix(0.239230,0.072589,-0.072589,0.239230,0,0);-ms-transform:matrix(0.239230,0.072589,-0.072589,0.239230,0,0);-webkit-transform:matrix(0.239230,0.072589,-0.072589,0.239230,0,0);}
.m36{transform:matrix(0.239921,-0.070270,0.070270,0.239921,0,0);-ms-transform:matrix(0.239921,-0.070270,0.070270,0.239921,0,0);-webkit-transform:matrix(0.239921,-0.070270,0.070270,0.239921,0,0);}
.m24{transform:matrix(0.241255,0.065545,-0.065545,0.241255,0,0);-ms-transform:matrix(0.241255,0.065545,-0.065545,0.241255,0,0);-webkit-transform:matrix(0.241255,0.065545,-0.065545,0.241255,0,0);}
.m35{transform:matrix(0.241499,-0.064641,0.064641,0.241499,0,0);-ms-transform:matrix(0.241499,-0.064641,0.064641,0.241499,0,0);-webkit-transform:matrix(0.241499,-0.064641,0.064641,0.241499,0,0);}
.m25{transform:matrix(0.243203,0.057897,-0.057897,0.243203,0,0);-ms-transform:matrix(0.243203,0.057897,-0.057897,0.243203,0,0);-webkit-transform:matrix(0.243203,0.057897,-0.057897,0.243203,0,0);}
.m34{transform:matrix(0.243429,-0.056941,0.056941,0.243429,0,0);-ms-transform:matrix(0.243429,-0.056941,0.056941,0.243429,0,0);-webkit-transform:matrix(0.243429,-0.056941,0.056941,0.243429,0,0);}
.m1{transform:matrix(0.243830,0.055200,-0.055200,0.243830,0,0);-ms-transform:matrix(0.243830,0.055200,-0.055200,0.243830,0,0);-webkit-transform:matrix(0.243830,0.055200,-0.055200,0.243830,0,0);}
.m26{transform:matrix(0.245084,0.049333,-0.049333,0.245084,0,0);-ms-transform:matrix(0.245084,0.049333,-0.049333,0.245084,0,0);-webkit-transform:matrix(0.245084,0.049333,-0.049333,0.245084,0,0);}
.m33{transform:matrix(0.245261,-0.048445,0.048445,0.245261,0,0);-ms-transform:matrix(0.245261,-0.048445,0.048445,0.245261,0,0);-webkit-transform:matrix(0.245261,-0.048445,0.048445,0.245261,0,0);}
.m32{transform:matrix(0.246378,-0.042402,0.042402,0.246378,0,0);-ms-transform:matrix(0.246378,-0.042402,0.042402,0.246378,0,0);-webkit-transform:matrix(0.246378,-0.042402,0.042402,0.246378,0,0);}
.m27{transform:matrix(0.246658,0.040738,-0.040738,0.246658,0,0);-ms-transform:matrix(0.246658,0.040738,-0.040738,0.246658,0,0);-webkit-transform:matrix(0.246658,0.040738,-0.040738,0.246658,0,0);}
.m31{transform:matrix(0.247371,-0.036157,0.036157,0.247371,0,0);-ms-transform:matrix(0.247371,-0.036157,0.036157,0.247371,0,0);-webkit-transform:matrix(0.247371,-0.036157,0.036157,0.247371,0,0);}
.m28{transform:matrix(0.247878,0.032505,-0.032505,0.247878,0,0);-ms-transform:matrix(0.247878,0.032505,-0.032505,0.247878,0,0);-webkit-transform:matrix(0.247878,0.032505,-0.032505,0.247878,0,0);}
.m30{transform:matrix(0.248207,-0.029890,0.029890,0.248207,0,0);-ms-transform:matrix(0.248207,-0.029890,0.029890,0.248207,0,0);-webkit-transform:matrix(0.248207,-0.029890,0.029890,0.248207,0,0);}
.m2f{transform:matrix(0.248820,-0.024262,0.024262,0.248820,0,0);-ms-transform:matrix(0.248820,-0.024262,0.024262,0.248820,0,0);-webkit-transform:matrix(0.248820,-0.024262,0.024262,0.248820,0,0);}
.m29{transform:matrix(0.248822,0.024237,-0.024237,0.248822,0,0);-ms-transform:matrix(0.248822,0.024237,-0.024237,0.248822,0,0);-webkit-transform:matrix(0.248822,0.024237,-0.024237,0.248822,0,0);}
.m2e{transform:matrix(0.249455,-0.016496,0.016496,0.249455,0,0);-ms-transform:matrix(0.249455,-0.016496,0.016496,0.249455,0,0);-webkit-transform:matrix(0.249455,-0.016496,0.016496,0.249455,0,0);}
.m2a{transform:matrix(0.249493,0.015911,-0.015911,0.249493,0,0);-ms-transform:matrix(0.249493,0.015911,-0.015911,0.249493,0,0);-webkit-transform:matrix(0.249493,0.015911,-0.015911,0.249493,0,0);}
.m2d{transform:matrix(0.249852,-0.008615,0.008615,0.249852,0,0);-ms-transform:matrix(0.249852,-0.008615,0.008615,0.249852,0,0);-webkit-transform:matrix(0.249852,-0.008615,0.008615,0.249852,0,0);}
.m2b{transform:matrix(0.249872,0.007997,-0.007997,0.249872,0,0);-ms-transform:matrix(0.249872,0.007997,-0.007997,0.249872,0,0);-webkit-transform:matrix(0.249872,0.007997,-0.007997,0.249872,0,0);}
.m52{transform:matrix(0.249933,0.005770,-0.005770,0.249933,0,0);-ms-transform:matrix(0.249933,0.005770,-0.005770,0.249933,0,0);-webkit-transform:matrix(0.249933,0.005770,-0.005770,0.249933,0,0);}
.m2c{transform:matrix(0.250000,-0.000309,0.000309,0.250000,0,0);-ms-transform:matrix(0.250000,-0.000309,0.000309,0.250000,0,0);-webkit-transform:matrix(0.250000,-0.000309,0.000309,0.250000,0,0);}
.m0{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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:154.804160px;}
.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;}
}
.ws3{word-spacing:-48.903485px;}
.ws1{word-spacing:-48.903482px;}
.ws0{word-spacing:-39.897271px;}
.ws5{word-spacing:-33.297722px;}
.ws2{word-spacing:-31.316418px;}
.ws4{word-spacing:-28.900166px;}
.ws6{word-spacing:-19.152604px;}
.ws7{word-spacing:0.000000px;}
._e{margin-left:-18.780230px;}
._23{margin-left:-13.781687px;}
._3a{margin-left:-12.584649px;}
._18{margin-left:-9.310704px;}
._f{margin-left:-7.651785px;}
._3{margin-left:-5.723762px;}
._b{margin-left:-3.928999px;}
._0{margin-left:-2.719459px;}
._10{margin-left:-1.471631px;}
._1b{width:4.379106px;}
._8{width:9.534733px;}
._3c{width:14.871629px;}
._5{width:17.477638px;}
._38{width:19.566025px;}
._37{width:20.764037px;}
._36{width:23.620655px;}
._16{width:27.098565px;}
._31{width:28.386914px;}
._d{width:29.770249px;}
._1c{width:31.282774px;}
._3b{width:41.790131px;}
._2b{width:46.450685px;}
._28{width:47.857900px;}
._9{width:50.964534px;}
._32{width:52.210259px;}
._20{width:55.644971px;}
._13{width:56.853223px;}
._30{width:58.286208px;}
._6{width:59.707446px;}
._2d{width:64.314080px;}
._35{width:68.529585px;}
._19{width:69.568260px;}
._7{width:76.996400px;}
._1a{width:79.065811px;}
._17{width:88.141684px;}
._22{width:101.793767px;}
._2c{width:104.965111px;}
._1f{width:113.416301px;}
._12{width:114.512853px;}
._2a{width:115.818725px;}
._39{width:126.813445px;}
._11{width:136.358138px;}
._4{width:138.305589px;}
._1d{width:147.393731px;}
._1e{width:148.486891px;}
._29{width:154.751422px;}
._24{width:167.187652px;}
._21{width:188.944304px;}
._33{width:191.999898px;}
._15{width:201.499834px;}
._1{width:226.688193px;}
._a{width:228.880522px;}
._2e{width:241.679570px;}
._25{width:289.431563px;}
._26{width:290.637580px;}
._c{width:298.638758px;}
._27{width:319.455932px;}
._14{width:345.623311px;}
._34{width:354.935872px;}
._2{width:357.737137px;}
._2f{width:413.594730px;}
.fc8{color:transparent;}
.fc6{color:rgb(242,209,159);}
.fc5{color:rgb(29,113,184);}
.fc4{color:rgb(203,108,230);}
.fc7{color:rgb(152,222,198);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc3{color:rgb(160,217,241);}
.fc0{color:rgb(237,145,177);}
.fs1e{font-size:72.002271px;}
.fs18{font-size:78.941916px;}
.fs1c{font-size:108.647242px;}
.fs16{font-size:119.973784px;}
.fs1d{font-size:125.958973px;}
.fs17{font-size:126.003974px;}
.fs0{font-size:149.989740px;}
.fs10{font-size:217.311846px;}
.fs13{font-size:217.311847px;}
.fs5{font-size:217.311848px;}
.fs12{font-size:217.311851px;}
.fsc{font-size:217.311852px;}
.fse{font-size:217.311853px;}
.fs3{font-size:217.311855px;}
.fs8{font-size:217.311856px;}
.fs6{font-size:217.311857px;}
.fs9{font-size:217.311859px;}
.fsf{font-size:217.311860px;}
.fs4{font-size:217.311861px;}
.fs7{font-size:217.311863px;}
.fsd{font-size:217.311864px;}
.fs2{font-size:217.311865px;}
.fsb{font-size:217.311867px;}
.fs11{font-size:217.311870px;}
.fsa{font-size:217.311871px;}
.fs1a{font-size:244.517407px;}
.fs1{font-size:244.517411px;}
.fs19{font-size:244.517413px;}
.fs1b{font-size:244.517424px;}
.fs15{font-size:450.014194px;}
.fs14{font-size:689.916752px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000119px;}
.y71{bottom:5.030903px;}
.y8f{bottom:9.228020px;}
.y91{bottom:9.278766px;}
.y93{bottom:9.317438px;}
.y7f{bottom:9.326755px;}
.y8b{bottom:9.338708px;}
.y85{bottom:9.347848px;}
.y83{bottom:9.377204px;}
.y89{bottom:9.397243px;}
.y87{bottom:9.481266px;}
.y81{bottom:9.519938px;}
.y7d{bottom:12.580222px;}
.y74{bottom:14.129621px;}
.y7a{bottom:19.781066px;}
.y8e{bottom:46.924456px;}
.y8d{bottom:84.620892px;}
.y73{bottom:92.303869px;}
.y7c{bottom:98.161321px;}
.y79{bottom:106.188887px;}
.y70{bottom:121.590114px;}
.y94{bottom:140.536376px;}
.y9{bottom:142.572982px;}
.y6f{bottom:178.112131px;}
.y8{bottom:217.968031px;}
.y6e{bottom:221.988515px;}
.y6d{bottom:265.864899px;}
.y61{bottom:380.922945px;}
.y77{bottom:590.427062px;}
.y76{bottom:634.303446px;}
.y75{bottom:678.179830px;}
.y6c{bottom:785.313796px;}
.y6b{bottom:837.065428px;}
.y6a{bottom:888.817060px;}
.y69{bottom:940.568692px;}
.y68{bottom:992.320325px;}
.y67{bottom:1044.071957px;}
.y66{bottom:1095.823589px;}
.y65{bottom:1147.575222px;}
.y64{bottom:1199.326854px;}
.y63{bottom:1251.078486px;}
.y62{bottom:1302.830119px;}
.y60{bottom:1466.021086px;}
.y5f{bottom:1578.524634px;}
.y8c{bottom:1619.190052px;}
.y5e{bottom:1691.028183px;}
.y34{bottom:1764.083145px;}
.y35{bottom:1764.184215px;}
.y33{bottom:1764.982412px;}
.y36{bottom:1765.089912px;}
.y32{bottom:1766.871470px;}
.y37{bottom:1767.109217px;}
.y38{bottom:1769.691558px;}
.y31{bottom:1769.759519px;}
.y39{bottom:1771.374993px;}
.y30{bottom:1773.656929px;}
.y3a{bottom:1775.910716px;}
.y3b{bottom:1778.349473px;}
.y2f{bottom:1778.512262px;}
.y3c{bottom:1784.053907px;}
.y2e{bottom:1784.991458px;}
.y3d{bottom:1791.636871px;}
.y2d{bottom:1791.974616px;}
.y3e{bottom:1797.887087px;}
.y2c{bottom:1799.010979px;}
.y3f{bottom:1802.914496px;}
.y2b{bottom:1806.566651px;}
.y40{bottom:1811.774307px;}
.y2a{bottom:1816.065859px;}
.y41{bottom:1820.512761px;}
.y42{bottom:1826.931446px;}
.y29{bottom:1827.167457px;}
.y28{bottom:1832.858309px;}
.y43{bottom:1837.984248px;}
.y27{bottom:1844.996630px;}
.y44{bottom:1849.314220px;}
.y26{bottom:1851.364994px;}
.y45{bottom:1862.297886px;}
.y25{bottom:1864.686275px;}
.y46{bottom:1874.802052px;}
.y24{bottom:1878.950480px;}
.y47{bottom:1889.104344px;}
.y23{bottom:1894.288024px;}
.y48{bottom:1896.695034px;}
.y8a{bottom:1898.910040px;}
.y22{bottom:1909.976064px;}
.y49{bottom:1912.497556px;}
.y4a{bottom:1922.553500px;}
.y21{bottom:1924.942615px;}
.y20{bottom:1935.451410px;}
.y4b{bottom:1939.307018px;}
.y4c{bottom:1950.128536px;}
.y1f{bottom:1952.670936px;}
.y1e{bottom:1963.959028px;}
.y4d{bottom:1970.230984px;}
.y1d{bottom:1979.280531px;}
.y4e{bottom:1981.849305px;}
.y1c{bottom:1998.952440px;}
.y4f{bottom:2003.870901px;}
.y1b{bottom:2016.810450px;}
.y50{bottom:2026.778605px;}
.y1a{bottom:2029.531648px;}
.y51{bottom:2048.205292px;}
.y19{bottom:2051.226577px;}
.y18{bottom:2064.669001px;}
.y52{bottom:2070.469736px;}
.y17{bottom:2088.460219px;}
.y53{bottom:2093.226897px;}
.y88{bottom:2099.790032px;}
.y16{bottom:2100.047705px;}
.y54{bottom:2116.956385px;}
.y15{bottom:2121.005759px;}
.y55{bottom:2138.452527px;}
.y14{bottom:2144.792928px;}
.y56{bottom:2165.613876px;}
.y13{bottom:2167.581619px;}
.y57{bottom:2188.116686px;}
.y12{bottom:2191.925682px;}
.y11{bottom:2207.468848px;}
.y58{bottom:2213.874433px;}
.y7b{bottom:2222.190027px;}
.y10{bottom:2233.681763px;}
.yf{bottom:2257.398371px;}
.ye{bottom:2280.791229px;}
.y86{bottom:2304.990023px;}
.yd{bottom:2307.954152px;}
.yc{bottom:2335.195990px;}
.yb{bottom:2359.598692px;}
.ya{bottom:2386.912128px;}
.y95{bottom:2404.558671px;}
.y72{bottom:2486.790016px;}
.y84{bottom:2498.670015px;}
.y7{bottom:2643.390009px;}
.y80{bottom:2696.670007px;}
.y82{bottom:2896.469998px;}
.y78{bottom:2966.669996px;}
.y7e{bottom:3089.429990px;}
.y92{bottom:3281.669982px;}
.y90{bottom:3475.349974px;}
.y5d{bottom:3955.693105px;}
.y5c{bottom:4007.444738px;}
.y5b{bottom:4059.196370px;}
.y6{bottom:4110.948002px;}
.y5{bottom:4162.699635px;}
.y4{bottom:4214.451267px;}
.y3{bottom:4266.202899px;}
.y2{bottom:4317.954532px;}
.y5a{bottom:4607.335074px;}
.y59{bottom:4779.465504px;}
.h17{height:23.399999px;}
.h1f{height:38.159998px;}
.h18{height:59.206437px;}
.h23{height:73.730326px;}
.h14{height:95.838433px;}
.h22{height:100.619570px;}
.h16{height:100.655519px;}
.h20{height:111.254776px;}
.h21{height:113.399995px;}
.h15{height:115.342110px;}
.h1d{height:147.239994px;}
.h3{height:153.589494px;}
.h1b{height:155.519994px;}
.h10{height:167.112809px;}
.h9{height:167.112811px;}
.h11{height:167.112813px;}
.hf{height:167.112814px;}
.h7{height:167.112816px;}
.ha{height:167.112818px;}
.hc{height:167.112819px;}
.h8{height:167.112821px;}
.hb{height:167.112823px;}
.h6{height:167.112824px;}
.he{height:167.112826px;}
.hd{height:167.112829px;}
.h1c{height:180.209329px;}
.h5{height:180.209332px;}
.h1a{height:180.209333px;}
.h1e{height:180.209342px;}
.h19{height:245.519990px;}
.h13{height:331.660461px;}
.h12{height:511.918230px;}
.h4{height:511.919979px;}
.h2{height:5055.749789px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.w11{width:42.119998px;}
.w10{width:62.639997px;}
.wa{width:77.759997px;}
.w9{width:88.199996px;}
.w8{width:119.519995px;}
.wb{width:131.759995px;}
.wd{width:150.119994px;}
.wc{width:185.759992px;}
.we{width:242.999990px;}
.wf{width:308.879987px;}
.w5{width:325.799986px;}
.w6{width:362.519985px;}
.w7{width:402.839983px;}
.w4{width:406.799983px;}
.w3{width:557.279977px;}
.w2{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x67{left:4.681893px;}
.x64{left:6.950954px;}
.x68{left:11.192806px;}
.x5d{left:22.682265px;}
.x65{left:41.770735px;}
.x5e{left:57.642996px;}
.x4{left:148.751922px;}
.x3{left:203.311940px;}
.x54{left:237.811213px;}
.x6c{left:246.599990px;}
.x59{left:250.032449px;}
.x6a{left:251.639990px;}
.x6b{left:253.079989px;}
.x69{left:255.239989px;}
.x6f{left:257.399989px;}
.x6e{left:477.955308px;}
.x6d{left:491.437466px;}
.x5{left:1002.998725px;}
.x6{left:1012.344338px;}
.x7{left:1021.477580px;}
.x8{left:1032.679485px;}
.x9{left:1044.942712px;}
.xa{left:1056.354055px;}
.xb{left:1068.776445px;}
.xc{left:1083.705179px;}
.xd{left:1092.976903px;}
.xe{left:1108.526044px;}
.xf{left:1124.077698px;}
.x10{left:1141.492027px;}
.x11{left:1157.915850px;}
.x12{left:1167.259117px;}
.x13{left:1187.876277px;}
.x14{left:1200.011227px;}
.x15{left:1220.970779px;}
.x16{left:1233.802293px;}
.x1{left:1243.165808px;}
.x17{left:1252.777800px;}
.x18{left:1275.141781px;}
.x19{left:1293.646024px;}
.x1a{left:1307.791133px;}
.x1b{left:1330.869041px;}
.x1c{left:1345.575904px;}
.x1d{left:1367.767035px;}
.x1e{left:1392.705321px;}
.x1f{left:1419.006121px;}
.x20{left:1445.470489px;}
.x21{left:1472.501605px;}
.x22{left:1485.948176px;}
.x23{left:1514.068930px;}
.x24{left:1527.824739px;}
.x25{left:1557.405729px;}
.x70{left:1566.103985px;}
.x26{left:1585.655192px;}
.x27{left:1610.561223px;}
.x63{left:1623.959932px;}
.x28{left:1636.391973px;}
.x29{left:1665.661366px;}
.x2a{left:1698.040685px;}
.x2b{left:1727.485724px;}
.x2c{left:1757.292101px;}
.x2d{left:1786.996980px;}
.x66{left:1806.839925px;}
.x2e{left:1817.187233px;}
.x5c{left:1841.338759px;}
.x2f{left:1843.972985px;}
.x30{left:1876.964134px;}
.x31{left:1903.720702px;}
.x32{left:1933.675733px;}
.x33{left:1959.459385px;}
.x34{left:1974.242538px;}
.x62{left:1989.551005px;}
.x5a{left:1991.377897px;}
.x35{left:2004.533439px;}
.x36{left:2019.198478px;}
.x2{left:2032.199915px;}
.x37{left:2048.185062px;}
.x38{left:2080.266708px;}
.x39{left:2103.463465px;}
.x3a{left:2120.847747px;}
.x3b{left:2148.325823px;}
.x3c{left:2172.753202px;}
.x3d{left:2189.673371px;}
.x3e{left:2216.361567px;}
.x3f{left:2241.517051px;}
.x40{left:2267.985016px;}
.x41{left:2291.645507px;}
.x42{left:2316.601659px;}
.x43{left:2329.383347px;}
.x44{left:2354.106969px;}
.x45{left:2369.153307px;}
.x46{left:2392.570560px;}
.x47{left:2407.116091px;}
.x48{left:2432.192681px;}
.x49{left:2446.120329px;}
.x4a{left:2470.767991px;}
.x4b{left:2494.549964px;}
.x4c{left:2515.323975px;}
.x4d{left:2535.518728px;}
.x58{left:2537.576757px;}
.x4e{left:2554.825550px;}
.x4f{left:2573.587605px;}
.x50{left:2589.595269px;}
.x51{left:2608.319697px;}
.x52{left:2622.827322px;}
.x53{left:2638.246326px;}
.x60{left:2647.977904px;}
.x57{left:2662.104123px;}
.x5b{left:2731.178550px;}
.x55{left:2735.654286px;}
.x61{left:2764.067503px;}
.x5f{left:2767.794183px;}
.x56{left:2817.587548px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:137.603698pt;}
.ws3{word-spacing:-43.469764pt;}
.ws1{word-spacing:-43.469762pt;}
.ws0{word-spacing:-35.464241pt;}
.ws5{word-spacing:-29.597975pt;}
.ws2{word-spacing:-27.836816pt;}
.ws4{word-spacing:-25.689037pt;}
.ws6{word-spacing:-17.024537pt;}
.ws7{word-spacing:0.000000pt;}
._e{margin-left:-16.693537pt;}
._23{margin-left:-12.250388pt;}
._3a{margin-left:-11.186355pt;}
._18{margin-left:-8.276182pt;}
._f{margin-left:-6.801587pt;}
._3{margin-left:-5.087788pt;}
._b{margin-left:-3.492444pt;}
._0{margin-left:-2.417297pt;}
._10{margin-left:-1.308116pt;}
._1b{width:3.892538pt;}
._8{width:8.475319pt;}
._3c{width:13.219226pt;}
._5{width:15.535679pt;}
._38{width:17.392023pt;}
._37{width:18.456921pt;}
._36{width:20.996138pt;}
._16{width:24.087614pt;}
._31{width:25.232812pt;}
._d{width:26.462444pt;}
._1c{width:27.806911pt;}
._3b{width:37.146783pt;}
._2b{width:41.289498pt;}
._28{width:42.540356pt;}
._9{width:45.301808pt;}
._32{width:46.409119pt;}
._20{width:49.462196pt;}
._13{width:50.536198pt;}
._30{width:51.809962pt;}
._6{width:53.073286pt;}
._2d{width:57.168071pt;}
._35{width:60.915186pt;}
._19{width:61.838453pt;}
._7{width:68.441244pt;}
._1a{width:70.280721pt;}
._17{width:78.348163pt;}
._22{width:90.483348pt;}
._2c{width:93.302321pt;}
._1f{width:100.814490pt;}
._12{width:101.789203pt;}
._2a{width:102.949978pt;}
._39{width:112.723062pt;}
._11{width:121.207234pt;}
._4{width:122.938301pt;}
._1d{width:131.016650pt;}
._1e{width:131.988347pt;}
._29{width:137.556819pt;}
._24{width:148.611246pt;}
._21{width:167.950492pt;}
._33{width:170.666576pt;}
._15{width:179.110963pt;}
._1{width:201.500616pt;}
._a{width:203.449353pt;}
._2e{width:214.826284pt;}
._25{width:257.272501pt;}
._26{width:258.344515pt;}
._c{width:265.456673pt;}
._27{width:283.960828pt;}
._14{width:307.220721pt;}
._34{width:315.498553pt;}
._2{width:317.988566pt;}
._2f{width:367.639760pt;}
.fs1e{font-size:64.002019pt;}
.fs18{font-size:70.170592pt;}
.fs1c{font-size:96.575326pt;}
.fs16{font-size:106.643364pt;}
.fs1d{font-size:111.963531pt;}
.fs17{font-size:112.003533pt;}
.fs0{font-size:133.324213pt;}
.fs10{font-size:193.166085pt;}
.fs13{font-size:193.166086pt;}
.fs5{font-size:193.166087pt;}
.fs12{font-size:193.166089pt;}
.fsc{font-size:193.166091pt;}
.fse{font-size:193.166092pt;}
.fs3{font-size:193.166093pt;}
.fs8{font-size:193.166094pt;}
.fs6{font-size:193.166095pt;}
.fs9{font-size:193.166097pt;}
.fsf{font-size:193.166098pt;}
.fs4{font-size:193.166099pt;}
.fs7{font-size:193.166100pt;}
.fsd{font-size:193.166101pt;}
.fs2{font-size:193.166103pt;}
.fsb{font-size:193.166104pt;}
.fs11{font-size:193.166107pt;}
.fsa{font-size:193.166108pt;}
.fs1a{font-size:217.348806pt;}
.fs1{font-size:217.348810pt;}
.fs19{font-size:217.348811pt;}
.fs1b{font-size:217.348822pt;}
.fs15{font-size:400.012617pt;}
.fs14{font-size:613.259335pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000106pt;}
.y71{bottom:4.471914pt;}
.y8f{bottom:8.202684pt;}
.y91{bottom:8.247792pt;}
.y93{bottom:8.282167pt;}
.y7f{bottom:8.290449pt;}
.y8b{bottom:8.301074pt;}
.y85{bottom:8.309199pt;}
.y83{bottom:8.335292pt;}
.y89{bottom:8.353105pt;}
.y87{bottom:8.427792pt;}
.y81{bottom:8.462167pt;}
.y7d{bottom:11.182420pt;}
.y74{bottom:12.559663pt;}
.y7a{bottom:17.583169pt;}
.y8e{bottom:41.710627pt;}
.y8d{bottom:75.218571pt;}
.y73{bottom:82.047883pt;}
.y7c{bottom:87.254507pt;}
.y79{bottom:94.390122pt;}
.y70{bottom:108.080101pt;}
.y94{bottom:124.921223pt;}
.y9{bottom:126.731540pt;}
.y6f{bottom:158.321894pt;}
.y8{bottom:193.749361pt;}
.y6e{bottom:197.323124pt;}
.y6d{bottom:236.324355pt;}
.y61{bottom:338.598174pt;}
.y77{bottom:524.824055pt;}
.y76{bottom:563.825285pt;}
.y75{bottom:602.826515pt;}
.y6c{bottom:698.056707pt;}
.y6b{bottom:744.058158pt;}
.y6a{bottom:790.059609pt;}
.y69{bottom:836.061060pt;}
.y68{bottom:882.062511pt;}
.y67{bottom:928.063962pt;}
.y66{bottom:974.065413pt;}
.y65{bottom:1020.066864pt;}
.y64{bottom:1066.068315pt;}
.y63{bottom:1112.069766pt;}
.y62{bottom:1158.071217pt;}
.y60{bottom:1303.129854pt;}
.y5f{bottom:1403.133008pt;}
.y8c{bottom:1439.280046pt;}
.y5e{bottom:1503.136163pt;}
.y34{bottom:1568.073907pt;}
.y35{bottom:1568.163747pt;}
.y33{bottom:1568.873255pt;}
.y36{bottom:1568.968810pt;}
.y32{bottom:1570.552418pt;}
.y37{bottom:1570.763749pt;}
.y38{bottom:1573.059162pt;}
.y31{bottom:1573.119572pt;}
.y39{bottom:1574.555549pt;}
.y30{bottom:1576.583936pt;}
.y3a{bottom:1578.587303pt;}
.y3b{bottom:1580.755088pt;}
.y2f{bottom:1580.899789pt;}
.y3c{bottom:1585.825695pt;}
.y2e{bottom:1586.659074pt;}
.y3d{bottom:1592.566108pt;}
.y2d{bottom:1592.866326pt;}
.y3e{bottom:1598.121855pt;}
.y2c{bottom:1599.120870pt;}
.y3f{bottom:1602.590663pt;}
.y2b{bottom:1605.837023pt;}
.y40{bottom:1610.466050pt;}
.y2a{bottom:1614.280764pt;}
.y41{bottom:1618.233565pt;}
.y42{bottom:1623.939063pt;}
.y29{bottom:1624.148851pt;}
.y28{bottom:1629.207386pt;}
.y43{bottom:1633.763776pt;}
.y27{bottom:1639.997004pt;}
.y44{bottom:1643.834862pt;}
.y26{bottom:1645.657773pt;}
.y45{bottom:1655.375898pt;}
.y25{bottom:1657.498911pt;}
.y46{bottom:1666.490713pt;}
.y24{bottom:1670.178204pt;}
.y47{bottom:1679.203861pt;}
.y23{bottom:1683.811577pt;}
.y48{bottom:1685.951141pt;}
.y8a{bottom:1687.920036pt;}
.y22{bottom:1697.756501pt;}
.y49{bottom:1699.997827pt;}
.y4a{bottom:1708.936445pt;}
.y21{bottom:1711.060102pt;}
.y20{bottom:1720.401253pt;}
.y4b{bottom:1723.828461pt;}
.y4c{bottom:1733.447587pt;}
.y1f{bottom:1735.707498pt;}
.y1e{bottom:1745.741358pt;}
.y4d{bottom:1751.316430pt;}
.y1d{bottom:1759.360472pt;}
.y4e{bottom:1761.643827pt;}
.y1c{bottom:1776.846613pt;}
.y4f{bottom:1781.218578pt;}
.y1b{bottom:1792.720400pt;}
.y50{bottom:1801.580982pt;}
.y1a{bottom:1804.028131pt;}
.y51{bottom:1820.626926pt;}
.y19{bottom:1823.312513pt;}
.y18{bottom:1835.261334pt;}
.y52{bottom:1840.417543pt;}
.y17{bottom:1856.409083pt;}
.y53{bottom:1860.646131pt;}
.y88{bottom:1866.480028pt;}
.y16{bottom:1866.709071pt;}
.y54{bottom:1881.739009pt;}
.y15{bottom:1885.338453pt;}
.y55{bottom:1900.846690pt;}
.y14{bottom:1906.482602pt;}
.y56{bottom:1924.990112pt;}
.y13{bottom:1926.739217pt;}
.y57{bottom:1944.992610pt;}
.y12{bottom:1948.378384pt;}
.y11{bottom:1962.194532pt;}
.y58{bottom:1967.888385pt;}
.y7b{bottom:1975.280024pt;}
.y10{bottom:1985.494900pt;}
.yf{bottom:2006.576330pt;}
.ye{bottom:2027.369981pt;}
.y86{bottom:2048.880021pt;}
.yd{bottom:2051.514802pt;}
.yc{bottom:2075.729769pt;}
.yb{bottom:2097.421060pt;}
.ya{bottom:2121.699669pt;}
.y95{bottom:2137.385486pt;}
.y72{bottom:2210.480014pt;}
.y84{bottom:2221.040013pt;}
.y7{bottom:2349.680008pt;}
.y80{bottom:2397.040006pt;}
.y82{bottom:2574.639999pt;}
.y78{bottom:2637.039996pt;}
.y7e{bottom:2746.159991pt;}
.y92{bottom:2917.039984pt;}
.y90{bottom:3089.199977pt;}
.y5d{bottom:3516.171649pt;}
.y5c{bottom:3562.173100pt;}
.y5b{bottom:3608.174551pt;}
.y6{bottom:3654.176002pt;}
.y5{bottom:3700.177453pt;}
.y4{bottom:3746.178904pt;}
.y3{bottom:3792.180355pt;}
.y2{bottom:3838.181806pt;}
.y5a{bottom:4095.408955pt;}
.y59{bottom:4248.413781pt;}
.h17{height:20.799999pt;}
.h1f{height:33.919999pt;}
.h18{height:52.627944pt;}
.h23{height:65.538067pt;}
.h14{height:85.189718pt;}
.h22{height:89.439618pt;}
.h16{height:89.471572pt;}
.h20{height:98.893134pt;}
.h21{height:100.799996pt;}
.h15{height:102.526320pt;}
.h1d{height:130.879995pt;}
.h3{height:136.523994pt;}
.h1b{height:138.239994pt;}
.h10{height:148.544719pt;}
.h9{height:148.544721pt;}
.h11{height:148.544723pt;}
.hf{height:148.544724pt;}
.h7{height:148.544725pt;}
.ha{height:148.544727pt;}
.hc{height:148.544728pt;}
.h8{height:148.544730pt;}
.hb{height:148.544731pt;}
.h6{height:148.544733pt;}
.he{height:148.544734pt;}
.hd{height:148.544737pt;}
.h1c{height:160.186070pt;}
.h5{height:160.186073pt;}
.h1a{height:160.186074pt;}
.h1e{height:160.186082pt;}
.h19{height:218.239991pt;}
.h13{height:294.809299pt;}
.h12{height:455.038427pt;}
.h4{height:455.039981pt;}
.h2{height:4493.999813pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.w11{width:37.439998pt;}
.w10{width:55.679998pt;}
.wa{width:69.119997pt;}
.w9{width:78.399997pt;}
.w8{width:106.239996pt;}
.wb{width:117.119995pt;}
.wd{width:133.439994pt;}
.wc{width:165.119993pt;}
.we{width:215.999991pt;}
.wf{width:274.559989pt;}
.w5{width:289.599988pt;}
.w6{width:322.239987pt;}
.w7{width:358.079985pt;}
.w4{width:361.599985pt;}
.w3{width:495.359979pt;}
.w2{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x67{left:4.161683pt;}
.x64{left:6.178626pt;}
.x68{left:9.949161pt;}
.x5d{left:20.162013pt;}
.x65{left:37.129542pt;}
.x5e{left:51.238218pt;}
.x4{left:132.223931pt;}
.x3{left:180.721724pt;}
.x54{left:211.387745pt;}
.x6c{left:219.199991pt;}
.x59{left:222.251066pt;}
.x6a{left:223.679991pt;}
.x6b{left:224.959991pt;}
.x69{left:226.879991pt;}
.x6f{left:228.799990pt;}
.x6e{left:424.849163pt;}
.x6d{left:436.833303pt;}
.x5{left:891.554422pt;}
.x6{left:899.861634pt;}
.x7{left:907.980071pt;}
.x8{left:917.937320pt;}
.x9{left:928.837966pt;}
.xa{left:938.981382pt;}
.xb{left:950.023506pt;}
.xc{left:963.293493pt;}
.xd{left:971.535024pt;}
.xe{left:985.356484pt;}
.xf{left:999.180176pt;}
.x10{left:1014.659580pt;}
.x11{left:1029.258533pt;}
.x12{left:1037.563659pt;}
.x13{left:1055.890024pt;}
.x14{left:1066.676646pt;}
.x15{left:1085.307359pt;}
.x16{left:1096.713149pt;}
.x1{left:1105.036274pt;}
.x17{left:1113.580267pt;}
.x18{left:1133.459361pt;}
.x19{left:1149.907577pt;}
.x1a{left:1162.481007pt;}
.x1b{left:1182.994703pt;}
.x1c{left:1196.067470pt;}
.x1d{left:1215.792920pt;}
.x1e{left:1237.960285pt;}
.x1f{left:1261.338774pt;}
.x20{left:1284.862657pt;}
.x21{left:1308.890316pt;}
.x22{left:1320.842823pt;}
.x23{left:1345.839049pt;}
.x24{left:1358.066435pt;}
.x25{left:1384.360648pt;}
.x70{left:1392.092431pt;}
.x26{left:1409.471282pt;}
.x27{left:1431.609976pt;}
.x63{left:1443.519940pt;}
.x28{left:1454.570643pt;}
.x29{left:1480.587881pt;}
.x2a{left:1509.369498pt;}
.x2b{left:1535.542866pt;}
.x2c{left:1562.037423pt;}
.x2d{left:1588.441760pt;}
.x66{left:1606.079933pt;}
.x2e{left:1615.277540pt;}
.x5c{left:1636.745564pt;}
.x2f{left:1639.087098pt;}
.x30{left:1668.412564pt;}
.x31{left:1692.196180pt;}
.x32{left:1718.822874pt;}
.x33{left:1741.741675pt;}
.x34{left:1754.882256pt;}
.x62{left:1768.489782pt;}
.x5a{left:1770.113686pt;}
.x35{left:1781.807502pt;}
.x36{left:1794.843092pt;}
.x2{left:1806.399925pt;}
.x37{left:1820.608944pt;}
.x38{left:1849.125963pt;}
.x39{left:1869.745302pt;}
.x3a{left:1885.197997pt;}
.x3b{left:1909.622953pt;}
.x3c{left:1931.336180pt;}
.x3d{left:1946.376330pt;}
.x3e{left:1970.099170pt;}
.x3f{left:1992.459601pt;}
.x40{left:2015.986681pt;}
.x41{left:2037.018228pt;}
.x42{left:2059.201475pt;}
.x43{left:2070.562975pt;}
.x44{left:2092.539528pt;}
.x45{left:2105.914050pt;}
.x46{left:2126.729387pt;}
.x47{left:2139.658748pt;}
.x48{left:2161.949050pt;}
.x49{left:2174.329181pt;}
.x4a{left:2196.238214pt;}
.x4b{left:2217.377746pt;}
.x4c{left:2235.843533pt;}
.x4d{left:2253.794425pt;}
.x58{left:2255.623784pt;}
.x4e{left:2270.956045pt;}
.x4f{left:2287.633427pt;}
.x50{left:2301.862461pt;}
.x51{left:2318.506398pt;}
.x52{left:2331.402064pt;}
.x53{left:2345.107845pt;}
.x60{left:2353.758137pt;}
.x57{left:2366.314776pt;}
.x5b{left:2427.714267pt;}
.x55{left:2431.692699pt;}
.x61{left:2456.948892pt;}
.x5f{left:2460.261496pt;}
.x56{left:2504.522265pt;}
}




    .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; }
  