
    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_57b41a6859faf9225763d10f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6e890fe70c66ad8d850539dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_248674f4b7db724d816598ad.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f7096a726206644251488dc7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_ba5a3c3bbeefc51bf82813d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_48b799cc6d2dbfb495634daa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.715820;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_90da9766903eb23574eb8d66.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_0723512e7ac21fe0401a599c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b73ddfe8506e8997b30b7f27.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ddef3977fbf5839bbe9ee188.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.917480;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_86cac6b1ceca56ed515bf0f5.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{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);}
.m3{transform:matrix(0.233798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233798,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);}
.m5{transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.271997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271997,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-172.800000px;}
.vb{vertical-align:-117.660000px;}
.v2{vertical-align:-73.440000px;}
.v3{vertical-align:-44.640000px;}
.v4{vertical-align:-40.320000px;}
.v11{vertical-align:-36.000000px;}
.v8{vertical-align:-34.560000px;}
.v12{vertical-align:-27.960000px;}
.v7{vertical-align:-25.920000px;}
.v10{vertical-align:-9.060000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:28.260000px;}
.v9{vertical-align:34.560000px;}
.vf{vertical-align:36.000000px;}
.ve{vertical-align:38.199079px;}
.v5{vertical-align:40.320000px;}
.va{vertical-align:43.200000px;}
.v14{vertical-align:65.935716px;}
.v1{vertical-align:73.440000px;}
.vc{vertical-align:90.541069px;}
.vd{vertical-align:92.193278px;}
.ls4e{letter-spacing:-4.217771px;}
.ls4f{letter-spacing:-3.982405px;}
.ls46{letter-spacing:-3.398695px;}
.ls43{letter-spacing:-3.007021px;}
.ls42{letter-spacing:-2.927715px;}
.ls3b{letter-spacing:-2.592000px;}
.ls3d{letter-spacing:-2.491532px;}
.ls4a{letter-spacing:-1.289810px;}
.ls38{letter-spacing:-0.864000px;}
.ls48{letter-spacing:-0.584651px;}
.ls33{letter-spacing:-0.553200px;}
.ls40{letter-spacing:-0.520776px;}
.ls51{letter-spacing:-0.357000px;}
.ls3f{letter-spacing:-0.341016px;}
.ls37{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.213000px;}
.ls36{letter-spacing:-0.144000px;}
.ls3c{letter-spacing:-0.075000px;}
.ls32{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.072000px;}
.ls31{letter-spacing:0.075000px;}
.ls17{letter-spacing:0.089219px;}
.ls12{letter-spacing:0.097983px;}
.ls9{letter-spacing:0.106560px;}
.ls34{letter-spacing:0.126600px;}
.ls15{letter-spacing:0.164071px;}
.lsa{letter-spacing:0.216000px;}
.ls4d{letter-spacing:0.234425px;}
.ls3a{letter-spacing:0.247800px;}
.ls3{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.296248px;}
.lsc{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.408000px;}
.ls18{letter-spacing:0.413280px;}
.ls39{letter-spacing:0.496200px;}
.ls45{letter-spacing:0.519600px;}
.lsd{letter-spacing:0.555248px;}
.ls2{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.658080px;}
.lsb{letter-spacing:0.682560px;}
.ls49{letter-spacing:0.819076px;}
.ls2d{letter-spacing:1.191754px;}
.lse{letter-spacing:1.255679px;}
.ls2b{letter-spacing:1.269698px;}
.ls3e{letter-spacing:1.526641px;}
.ls7{letter-spacing:1.728000px;}
.ls28{letter-spacing:1.856339px;}
.ls16{letter-spacing:1.883519px;}
.ls50{letter-spacing:2.108886px;}
.ls47{letter-spacing:2.344252px;}
.ls41{letter-spacing:2.570838px;}
.ls4b{letter-spacing:2.814986px;}
.ls4c{letter-spacing:3.634062px;}
.ls29{letter-spacing:3.660000px;}
.ls5{letter-spacing:6.048000px;}
.ls44{letter-spacing:7.005367px;}
.ls6{letter-spacing:7.488000px;}
.ls2f{letter-spacing:7.962210px;}
.ls2e{letter-spacing:8.046146px;}
.ls2c{letter-spacing:11.460000px;}
.ls24{letter-spacing:12.600000px;}
.ls8{letter-spacing:16.128000px;}
.ls23{letter-spacing:21.240000px;}
.ls27{letter-spacing:174.960000px;}
.ls22{letter-spacing:176.820000px;}
.ls26{letter-spacing:191.100000px;}
.ls21{letter-spacing:199.020000px;}
.ls25{letter-spacing:221.040000px;}
.ls1f{letter-spacing:222.900000px;}
.ls1e{letter-spacing:223.020000px;}
.ls20{letter-spacing:223.080000px;}
.ls1d{letter-spacing:239.040000px;}
.lsf{letter-spacing:249.052503px;}
.ls2a{letter-spacing:258.963835px;}
.ls1{letter-spacing:530.328000px;}
.ls14{letter-spacing:809.960697px;}
.ls11{letter-spacing:815.855416px;}
.ls1a{letter-spacing:903.248460px;}
.ls13{letter-spacing:907.622351px;}
.ls19{letter-spacing:921.315208px;}
.ls1b{letter-spacing:1484.760000px;}
.ls1c{letter-spacing:2094.517440px;}
.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;}
}
.wsa{word-spacing:-144.000000px;}
.ws2{word-spacing:-68.454720px;}
.ws3b{word-spacing:-53.242560px;}
.ws4{word-spacing:-46.837440px;}
.ws12{word-spacing:-46.762440px;}
.ws1{word-spacing:-45.636480px;}
.ws0{word-spacing:-45.083280px;}
.ws7{word-spacing:-40.608000px;}
.wse{word-spacing:-40.568232px;}
.wsc{word-spacing:-40.320000px;}
.wsf{word-spacing:-40.319832px;}
.ws22{word-spacing:-40.032000px;}
.ws8{word-spacing:-39.888000px;}
.wsb{word-spacing:-39.744000px;}
.wsd{word-spacing:-39.168000px;}
.ws2d{word-spacing:-35.062333px;}
.ws29{word-spacing:-34.243257px;}
.ws1f{word-spacing:-33.746160px;}
.ws39{word-spacing:-33.537157px;}
.ws11{word-spacing:-33.226560px;}
.ws6{word-spacing:-33.013560px;}
.ws2c{word-spacing:-32.247347px;}
.ws32{word-spacing:-31.662696px;}
.ws23{word-spacing:-31.428271px;}
.ws5{word-spacing:-31.224960px;}
.ws28{word-spacing:-30.138462px;}
.ws10{word-spacing:-30.024000px;}
.ws1e{word-spacing:-29.113078px;}
.ws30{word-spacing:-28.029576px;}
.ws3{word-spacing:-27.622080px;}
.ws38{word-spacing:-27.445867px;}
.ws33{word-spacing:-27.210500px;}
.ws14{word-spacing:-26.889085px;}
.ws9{word-spacing:-26.821440px;}
.ws1d{word-spacing:-23.991229px;}
.ws19{word-spacing:-23.634352px;}
.ws3a{word-spacing:-23.218560px;}
.ws3c{word-spacing:-22.861560px;}
.ws20{word-spacing:-22.417920px;}
.ws16{word-spacing:-22.107710px;}
.ws17{word-spacing:-19.616179px;}
.ws1b{word-spacing:-19.179995px;}
.ws3f{word-spacing:-15.212160px;}
.ws21{word-spacing:-0.144000px;}
.ws45{word-spacing:0.000000px;}
.ws36{word-spacing:88.233140px;}
.ws2e{word-spacing:116.603753px;}
.ws25{word-spacing:145.223365px;}
.ws2b{word-spacing:148.237038px;}
.ws40{word-spacing:167.181553px;}
.ws26{word-spacing:173.785021px;}
.ws3e{word-spacing:181.766315px;}
.ws1c{word-spacing:194.659849px;}
.ws3d{word-spacing:203.553436px;}
.ws27{word-spacing:206.670795px;}
.ws37{word-spacing:271.434298px;}
.ws42{word-spacing:281.023110px;}
.ws44{word-spacing:295.601817px;}
.ws41{word-spacing:301.300959px;}
.ws43{word-spacing:317.341033px;}
.ws15{word-spacing:332.318979px;}
.ws2f{word-spacing:339.887220px;}
.ws34{word-spacing:570.763203px;}
.ws2a{word-spacing:713.024036px;}
.ws13{word-spacing:761.712577px;}
.ws35{word-spacing:829.485590px;}
.ws1a{word-spacing:846.087541px;}
.ws18{word-spacing:868.293234px;}
.ws31{word-spacing:1097.466738px;}
.ws24{word-spacing:1100.785973px;}
._18{margin-left:-185.125056px;}
._3{margin-left:-31.616304px;}
._6{margin-left:-27.954240px;}
._a{margin-left:-18.734880px;}
._b{margin-left:-16.348320px;}
._7{margin-left:-14.055840px;}
._1f{margin-left:-12.744000px;}
._5{margin-left:-10.560000px;}
._9{margin-left:-9.501936px;}
._d{margin-left:-7.798368px;}
._e{margin-left:-6.394944px;}
._11{margin-left:-5.363520px;}
._8{margin-left:-4.106160px;}
._c{margin-left:-2.924256px;}
._1{margin-left:-1.404480px;}
._0{width:1.812000px;}
._4{width:3.506976px;}
._2{width:5.297760px;}
._f{width:7.125120px;}
._23{width:8.203453px;}
._22{width:9.203488px;}
._1c{width:10.389794px;}
._17{width:14.240256px;}
._12{width:15.572016px;}
._13{width:16.699200px;}
._14{width:18.468000px;}
._15{width:20.076000px;}
._16{width:21.208512px;}
._1d{width:98.136766px;}
._10{width:112.740192px;}
._1a{width:123.791683px;}
._19{width:144.391440px;}
._26{width:148.113552px;}
._1e{width:154.072165px;}
._2f{width:155.645809px;}
._2c{width:167.390258px;}
._1b{width:201.026961px;}
._29{width:215.943158px;}
._28{width:239.630214px;}
._20{width:248.062630px;}
._2b{width:311.676367px;}
._2e{width:323.597650px;}
._2a{width:354.639456px;}
._2d{width:361.397193px;}
._21{width:411.360839px;}
._25{width:543.270702px;}
._24{width:601.498902px;}
._27{width:606.749620px;}
.fca{color:rgb(0,0,212);}
.fc8{color:rgb(255,12,12);}
.fcb{color:transparent;}
.fc6{color:rgb(72,53,232);}
.fc3{color:rgb(178,3,3);}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(166,105,232);}
.fc2{color:rgb(51,51,153);}
.fc1{color:rgb(232,17,17);}
.fc9{color:rgb(221,8,6);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:5.760000px;}
.fs1c{font-size:54.720000px;}
.fs14{font-size:58.780980px;}
.fs20{font-size:71.912450px;}
.fs11{font-size:72.000000px;}
.fs1b{font-size:72.055897px;}
.fs15{font-size:79.524138px;}
.fs17{font-size:80.640000px;}
.fs1a{font-size:83.520000px;}
.fs1d{font-size:83.859965px;}
.fs1e{font-size:84.003659px;}
.fs13{font-size:92.206496px;}
.fse{font-size:96.480000px;}
.fs7{font-size:99.360000px;}
.fs10{font-size:108.000000px;}
.fs21{font-size:108.014981px;}
.fs1f{font-size:108.024381px;}
.fsb{font-size:112.320000px;}
.fs19{font-size:113.051335px;}
.fs16{font-size:119.210205px;}
.fsd{font-size:119.520000px;}
.fs6{font-size:138.240000px;}
.fs3{font-size:138.384000px;}
.fsc{font-size:144.000000px;}
.fsf{font-size:144.144000px;}
.fs8{font-size:149.760000px;}
.fs5{font-size:164.160000px;}
.fs9{font-size:168.480000px;}
.fsa{font-size:168.624000px;}
.fs22{font-size:180.000000px;}
.fs12{font-size:191.520000px;}
.fs18{font-size:216.000000px;}
.fs4{font-size:246.240000px;}
.fs1{font-size:407.520000px;}
.fs2{font-size:407.664000px;}
.y0{bottom:0.000000px;}
.y88{bottom:4.569020px;}
.ya2{bottom:7.212577px;}
.ydc{bottom:36.327358px;}
.yf0{bottom:36.405378px;}
.ye7{bottom:36.407994px;}
.ya1{bottom:43.392206px;}
.yd7{bottom:51.320290px;}
.y87{bottom:54.664997px;}
.ydf{bottom:58.901713px;}
.yea{bottom:63.374044px;}
.ya0{bottom:75.585663px;}
.y9f{bottom:108.424026px;}
.y86{bottom:109.946267px;}
.ye0{bottom:111.350126px;}
.yf3{bottom:123.266903px;}
.yeb{bottom:135.326918px;}
.y9e{bottom:140.615130px;}
.yd8{bottom:141.282374px;}
.y85{bottom:155.636463px;}
.ye1{bottom:162.305745px;}
.y9d{bottom:173.394651px;}
.y30{bottom:177.195000px;}
.yf4{bottom:195.244953px;}
.y84{bottom:201.371268px;}
.y9c{bottom:205.588109px;}
.yec{bottom:207.284283px;}
.ye2{bottom:213.258370px;}
.y1d{bottom:220.890000px;}
.y83{bottom:224.006536px;}
.yd9{bottom:231.204038px;}
.y9b{bottom:238.355861px;}
.y2f{bottom:241.995000px;}
.y42{bottom:256.605000px;}
.y2d{bottom:260.175000px;}
.ye3{bottom:264.225967px;}
.yf5{bottom:267.193063px;}
.y82{bottom:269.739689px;}
.y9a{bottom:270.624636px;}
.y1c{bottom:274.890000px;}
.yed{bottom:279.238653px;}
.y2e{bottom:283.035000px;}
.y41{bottom:289.005000px;}
.y2c{bottom:292.575000px;}
.y81{bottom:292.788008px;}
.y99{bottom:303.387681px;}
.ye4{bottom:316.705823px;}
.yda{bottom:321.161630px;}
.y1b{bottom:328.890000px;}
.y98{bottom:335.585847px;}
.y80{bottom:338.521161px;}
.yf6{bottom:339.141172px;}
.yee{bottom:351.148109px;}
.y7f{bottom:361.156429px;}
.ye5{bottom:367.658447px;}
.y97{bottom:368.372428px;}
.y1a{bottom:382.890000px;}
.y96{bottom:401.159010px;}
.ydb{bottom:411.089282px;}
.y7e{bottom:412.457527px;}
.ye6{bottom:418.611072px;}
.yef{bottom:423.102480px;}
.y95{bottom:435.098889px;}
.yf7{bottom:442.572194px;}
.y102{bottom:444.165000px;}
.yf1{bottom:456.070337px;}
.y44{bottom:471.270000px;}
.y101{bottom:613.470000px;}
.y100{bottom:667.110000px;}
.y43{bottom:707.010000px;}
.yff{bottom:717.510000px;}
.yfe{bottom:767.910000px;}
.yfd{bottom:819.435000px;}
.y40{bottom:844.995000px;}
.yfc{bottom:875.955000px;}
.yc{bottom:899.355000px;}
.y3f{bottom:909.795000px;}
.yfb{bottom:926.355000px;}
.y3e{bottom:952.995000px;}
.yfa{bottom:976.755000px;}
.y3d{bottom:996.195000px;}
.yf9{bottom:1027.155000px;}
.y3c{bottom:1039.395000px;}
.yf8{bottom:1077.555000px;}
.y3b{bottom:1082.595000px;}
.y3a{bottom:1125.795000px;}
.y103{bottom:1168.350000px;}
.y39{bottom:1168.995000px;}
.y45{bottom:1209.165000px;}
.y38{bottom:1212.195000px;}
.y37{bottom:1255.425000px;}
.y36{bottom:1298.625000px;}
.y35{bottom:1341.825000px;}
.yc0{bottom:1370.850000px;}
.y34{bottom:1385.025000px;}
.y1e{bottom:1393.590000px;}
.yc3{bottom:1408.170000px;}
.ybf{bottom:1414.050000px;}
.yc2{bottom:1440.570000px;}
.y23{bottom:1454.940000px;}
.ybe{bottom:1457.250000px;}
.yc1{bottom:1472.970000px;}
.y4e{bottom:1490.430000px;}
.y53{bottom:1490.730000px;}
.ye9{bottom:1496.865000px;}
.y22{bottom:1498.140000px;}
.ybd{bottom:1500.450000px;}
.yb1{bottom:1508.505000px;}
.yf2{bottom:1509.420000px;}
.y52{bottom:1526.730000px;}
.ybc{bottom:1543.650000px;}
.y1f{bottom:1550.730000px;}
.y4d{bottom:1555.230000px;}
.y51{bottom:1568.160000px;}
.ybb{bottom:1586.850000px;}
.y4c{bottom:1598.430000px;}
.yba{bottom:1630.080000px;}
.y4b{bottom:1641.630000px;}
.yb9{bottom:1673.280000px;}
.y4a{bottom:1684.875000px;}
.yb0{bottom:1690.485000px;}
.yb8{bottom:1716.480000px;}
.y20{bottom:1753.125000px;}
.yb7{bottom:1759.680000px;}
.yb6{bottom:1802.880000px;}
.yc4{bottom:1845.870000px;}
.yb5{bottom:1846.080000px;}
.y50{bottom:1881.690000px;}
.yb4{bottom:1889.280000px;}
.y49{bottom:1891.260000px;}
.yb3{bottom:1932.480000px;}
.y48{bottom:1934.460000px;}
.y21{bottom:1942.305000px;}
.yb2{bottom:1975.680000px;}
.y47{bottom:1977.660000px;}
.yaa{bottom:2003.790000px;}
.y46{bottom:2020.890000px;}
.ya9{bottom:2048.430000px;}
.ya8{bottom:2097.390000px;}
.y2a{bottom:2137.110000px;}
.ya7{bottom:2140.590000px;}
.y29{bottom:2180.310000px;}
.ya6{bottom:2183.790000px;}
.y4f{bottom:2185.455000px;}
.y28{bottom:2223.510000px;}
.ya5{bottom:2226.990000px;}
.ya4{bottom:2270.190000px;}
.y27{bottom:2309.910000px;}
.ya3{bottom:2313.390000px;}
.y26{bottom:2353.110000px;}
.y94{bottom:2356.545000px;}
.y25{bottom:2396.310000px;}
.y24{bottom:2440.980000px;}
.y7d{bottom:2456.850000px;}
.y33{bottom:2487.675000px;}
.y32{bottom:2532.315000px;}
.y31{bottom:2582.715000px;}
.y2b{bottom:2684.415000px;}
.yaf{bottom:2832.810000px;}
.y5b{bottom:2833.485000px;}
.yae{bottom:2865.210000px;}
.yad{bottom:2897.610000px;}
.y5a{bottom:2898.285000px;}
.y8b{bottom:2923.635000px;}
.yac{bottom:2930.010000px;}
.y59{bottom:2942.925000px;}
.y8a{bottom:2956.755000px;}
.yab{bottom:2962.410000px;}
.y89{bottom:2992.035000px;}
.y58{bottom:2993.325000px;}
.y7c{bottom:3037.110000px;}
.y57{bottom:3043.725000px;}
.y7b{bottom:3078.150000px;}
.y56{bottom:3094.170000px;}
.y7a{bottom:3110.550000px;}
.y77{bottom:3137.400000px;}
.y55{bottom:3144.570000px;}
.yde{bottom:3153.795000px;}
.ydd{bottom:3160.050000px;}
.ye8{bottom:3163.065000px;}
.y76{bottom:3180.600000px;}
.yd5{bottom:3186.930000px;}
.y54{bottom:3194.970000px;}
.yd0{bottom:3212.430000px;}
.y75{bottom:3223.800000px;}
.y19{bottom:3266.460000px;}
.y74{bottom:3267.030000px;}
.yd1{bottom:3302.460000px;}
.y73{bottom:3310.230000px;}
.y72{bottom:3353.430000px;}
.y1{bottom:3388.965000px;}
.yd2{bottom:3392.460000px;}
.y71{bottom:3396.630000px;}
.y18{bottom:3415.965000px;}
.y70{bottom:3439.830000px;}
.y93{bottom:3465.570000px;}
.y91{bottom:3467.340000px;}
.y17{bottom:3482.205000px;}
.yd3{bottom:3482.460000px;}
.y6f{bottom:3483.030000px;}
.yce{bottom:3498.945000px;}
.y6e{bottom:3526.230000px;}
.y8d{bottom:3527.175000px;}
.y92{bottom:3530.370000px;}
.y16{bottom:3532.650000px;}
.y6d{bottom:3569.430000px;}
.yd4{bottom:3572.460000px;}
.yd6{bottom:3577.725000px;}
.y15{bottom:3583.050000px;}
.ycd{bottom:3606.765000px;}
.y6c{bottom:3612.630000px;}
.yc5{bottom:3629.265000px;}
.y14{bottom:3633.450000px;}
.y6b{bottom:3655.830000px;}
.yc6{bottom:3681.795000px;}
.y13{bottom:3683.850000px;}
.y6a{bottom:3699.030000px;}
.y63{bottom:3704.475000px;}
.yc7{bottom:3732.810000px;}
.y12{bottom:3734.250000px;}
.ycf{bottom:3738.315000px;}
.y69{bottom:3742.230000px;}
.y62{bottom:3769.305000px;}
.yc8{bottom:3783.780000px;}
.y11{bottom:3784.650000px;}
.y68{bottom:3785.475000px;}
.y61{bottom:3813.945000px;}
.y67{bottom:3828.675000px;}
.yc9{bottom:3834.795000px;}
.y10{bottom:3835.050000px;}
.y60{bottom:3864.345000px;}
.y66{bottom:3871.875000px;}
.y90{bottom:3883.605000px;}
.yf{bottom:3885.450000px;}
.yca{bottom:3887.310000px;}
.y8f{bottom:3894.810000px;}
.y5f{bottom:3914.745000px;}
.y65{bottom:3915.075000px;}
.y8c{bottom:3931.275000px;}
.ye{bottom:3935.850000px;}
.y8e{bottom:3938.010000px;}
.ycb{bottom:3938.295000px;}
.y64{bottom:3958.275000px;}
.y5e{bottom:3965.145000px;}
.yd{bottom:3986.250000px;}
.ycc{bottom:3989.310000px;}
.y5d{bottom:4015.545000px;}
.y78{bottom:4044.450000px;}
.y5c{bottom:4065.945000px;}
.y79{bottom:4073.865000px;}
.yb{bottom:4080.240000px;}
.ya{bottom:4242.030000px;}
.y9{bottom:4302.510000px;}
.y8{bottom:4347.510000px;}
.y7{bottom:4380.630000px;}
.y6{bottom:4428.180000px;}
.y5{bottom:4501.980000px;}
.y4{bottom:4623.870000px;}
.y3{bottom:4746.315000px;}
.y2{bottom:4868.715000px;}
.h2{height:6.007500px;}
.h1f{height:75.152049px;}
.h14{height:82.941190px;}
.h1b{height:87.108750px;}
.h21{height:87.463323px;}
.h23{height:87.613191px;}
.h9{height:95.985000px;}
.hb{height:99.984375px;}
.h11{height:100.084359px;}
.h1d{height:100.625625px;}
.h13{height:104.264167px;}
.h7{height:111.555000px;}
.hf{height:112.640625px;}
.h1a{height:117.909010px;}
.h17{height:124.332518px;}
.hc{height:124.655625px;}
.h24{height:140.938153px;}
.h25{height:141.082027px;}
.h6{height:144.180000px;}
.h18{height:149.976562px;}
.hd{height:150.187500px;}
.he{height:150.337688px;}
.h15{height:173.482259px;}
.h16{height:175.134469px;}
.h8{height:175.719375px;}
.ha{height:175.869563px;}
.h26{height:187.734375px;}
.h10{height:199.749375px;}
.h1c{height:237.189375px;}
.h5{height:256.820625px;}
.h3{height:425.030625px;}
.h4{height:425.180813px;}
.h12{height:482.428591px;}
.h19{height:497.259236px;}
.h1e{height:550.509329px;}
.h22{height:562.489744px;}
.h20{height:569.986633px;}
.h0{height:5101.920000px;}
.h1{height:5102.250000px;}
.w4{width:614.989296px;}
.w6{width:621.021714px;}
.w5{width:626.995839px;}
.w2{width:779.252562px;}
.w3{width:954.190999px;}
.w0{width:3826.440000px;}
.w1{width:3826.500000px;}
.x0{left:0.000000px;}
.x2e{left:6.045993px;}
.x37{left:7.403290px;}
.x42{left:31.457950px;}
.x41{left:43.475241px;}
.x45{left:44.934577px;}
.x43{left:61.424037px;}
.x46{left:64.416314px;}
.x48{left:65.946014px;}
.x49{left:116.888160px;}
.x4b{left:119.900295px;}
.x12{left:129.600000px;}
.x16{left:134.892000px;}
.x24{left:137.016000px;}
.x2d{left:142.862970px;}
.x17{left:151.815000px;}
.xa{left:159.870000px;}
.x26{left:179.205000px;}
.x21{left:222.480000px;}
.x1d{left:279.975000px;}
.x20{left:347.070000px;}
.x18{left:357.045000px;}
.x7{left:502.485000px;}
.x3{left:562.500000px;}
.xe{left:620.385000px;}
.x2{left:647.460000px;}
.x5{left:662.325000px;}
.x15{left:682.095000px;}
.xd{left:685.260000px;}
.x8{left:708.735000px;}
.x14{left:735.375000px;}
.x22{left:775.155000px;}
.x1f{left:788.430000px;}
.x13{left:813.930000px;}
.xb{left:837.000000px;}
.x1e{left:930.675000px;}
.x10{left:954.285000px;}
.x11{left:1008.285000px;}
.x1b{left:1051.380000px;}
.x1c{left:1065.450000px;}
.xf{left:1104.330000px;}
.x23{left:1320.810000px;}
.x19{left:1329.690000px;}
.x1a{left:1396.290000px;}
.x25{left:1475.850000px;}
.x4{left:1649.085000px;}
.x6{left:1808.310000px;}
.x1{left:1996.635000px;}
.x36{left:2002.680000px;}
.x38{left:2013.480000px;}
.x39{left:2015.175000px;}
.x4c{left:2017.440000px;}
.x3f{left:2021.685000px;}
.x4d{left:2032.200000px;}
.x3a{left:2035.620000px;}
.xc{left:2049.480000px;}
.x2b{left:2063.550000px;}
.x3e{left:2068.890000px;}
.x30{left:2090.730000px;}
.x27{left:2105.565000px;}
.x31{left:2122.815000px;}
.x3d{left:2148.510000px;}
.x3b{left:2234.850000px;}
.x44{left:2509.380000px;}
.x33{left:2530.650000px;}
.x2a{left:2548.875000px;}
.x40{left:2580.930000px;}
.x4a{left:2595.375000px;}
.x4e{left:2620.875000px;}
.x4f{left:2629.875000px;}
.x47{left:2655.825000px;}
.x32{left:2676.165000px;}
.x35{left:2700.930000px;}
.x9{left:2838.060000px;}
.x2c{left:2931.930000px;}
.x2f{left:2936.625000px;}
.x34{left:3125.310000px;}
.x3c{left:3193.560000px;}
.x28{left:3219.225000px;}
.x29{left:3309.450000px;}
@media print{
.v6{vertical-align:-153.600000pt;}
.vb{vertical-align:-104.586667pt;}
.v2{vertical-align:-65.280000pt;}
.v3{vertical-align:-39.680000pt;}
.v4{vertical-align:-35.840000pt;}
.v11{vertical-align:-32.000000pt;}
.v8{vertical-align:-30.720000pt;}
.v12{vertical-align:-24.853333pt;}
.v7{vertical-align:-23.040000pt;}
.v10{vertical-align:-8.053333pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:25.120000pt;}
.v9{vertical-align:30.720000pt;}
.vf{vertical-align:32.000000pt;}
.ve{vertical-align:33.954737pt;}
.v5{vertical-align:35.840000pt;}
.va{vertical-align:38.400000pt;}
.v14{vertical-align:58.609525pt;}
.v1{vertical-align:65.280000pt;}
.vc{vertical-align:80.480950pt;}
.vd{vertical-align:81.949581pt;}
.ls4e{letter-spacing:-3.749130pt;}
.ls4f{letter-spacing:-3.539915pt;}
.ls46{letter-spacing:-3.021062pt;}
.ls43{letter-spacing:-2.672907pt;}
.ls42{letter-spacing:-2.602413pt;}
.ls3b{letter-spacing:-2.304000pt;}
.ls3d{letter-spacing:-2.214695pt;}
.ls4a{letter-spacing:-1.146497pt;}
.ls38{letter-spacing:-0.768000pt;}
.ls48{letter-spacing:-0.519690pt;}
.ls33{letter-spacing:-0.491733pt;}
.ls40{letter-spacing:-0.462912pt;}
.ls51{letter-spacing:-0.317333pt;}
.ls3f{letter-spacing:-0.303125pt;}
.ls37{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.189333pt;}
.ls36{letter-spacing:-0.128000pt;}
.ls3c{letter-spacing:-0.066667pt;}
.ls32{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.064000pt;}
.ls31{letter-spacing:0.066667pt;}
.ls17{letter-spacing:0.079306pt;}
.ls12{letter-spacing:0.087096pt;}
.ls9{letter-spacing:0.094720pt;}
.ls34{letter-spacing:0.112533pt;}
.ls15{letter-spacing:0.145841pt;}
.lsa{letter-spacing:0.192000pt;}
.ls4d{letter-spacing:0.208378pt;}
.ls3a{letter-spacing:0.220267pt;}
.ls3{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.263331pt;}
.lsc{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.362667pt;}
.ls18{letter-spacing:0.367360pt;}
.ls39{letter-spacing:0.441067pt;}
.ls45{letter-spacing:0.461867pt;}
.lsd{letter-spacing:0.493554pt;}
.ls2{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.584960pt;}
.lsb{letter-spacing:0.606720pt;}
.ls49{letter-spacing:0.728068pt;}
.ls2d{letter-spacing:1.059337pt;}
.lse{letter-spacing:1.116159pt;}
.ls2b{letter-spacing:1.128621pt;}
.ls3e{letter-spacing:1.357015pt;}
.ls7{letter-spacing:1.536000pt;}
.ls28{letter-spacing:1.650079pt;}
.ls16{letter-spacing:1.674239pt;}
.ls50{letter-spacing:1.874565pt;}
.ls47{letter-spacing:2.083780pt;}
.ls41{letter-spacing:2.285189pt;}
.ls4b{letter-spacing:2.502210pt;}
.ls4c{letter-spacing:3.230277pt;}
.ls29{letter-spacing:3.253333pt;}
.ls5{letter-spacing:5.376000pt;}
.ls44{letter-spacing:6.226993pt;}
.ls6{letter-spacing:6.656000pt;}
.ls2f{letter-spacing:7.077520pt;}
.ls2e{letter-spacing:7.152129pt;}
.ls2c{letter-spacing:10.186667pt;}
.ls24{letter-spacing:11.200000pt;}
.ls8{letter-spacing:14.336000pt;}
.ls23{letter-spacing:18.880000pt;}
.ls27{letter-spacing:155.520000pt;}
.ls22{letter-spacing:157.173333pt;}
.ls26{letter-spacing:169.866667pt;}
.ls21{letter-spacing:176.906667pt;}
.ls25{letter-spacing:196.480000pt;}
.ls1f{letter-spacing:198.133333pt;}
.ls1e{letter-spacing:198.240000pt;}
.ls20{letter-spacing:198.293333pt;}
.ls1d{letter-spacing:212.480000pt;}
.lsf{letter-spacing:221.380003pt;}
.ls2a{letter-spacing:230.190076pt;}
.ls1{letter-spacing:471.402667pt;}
.ls14{letter-spacing:719.965064pt;}
.ls11{letter-spacing:725.204814pt;}
.ls1a{letter-spacing:802.887520pt;}
.ls13{letter-spacing:806.775424pt;}
.ls19{letter-spacing:818.946852pt;}
.ls1b{letter-spacing:1319.786667pt;}
.ls1c{letter-spacing:1861.793280pt;}
.wsa{word-spacing:-128.000000pt;}
.ws2{word-spacing:-60.848640pt;}
.ws3b{word-spacing:-47.326720pt;}
.ws4{word-spacing:-41.633280pt;}
.ws12{word-spacing:-41.566613pt;}
.ws1{word-spacing:-40.565760pt;}
.ws0{word-spacing:-40.074027pt;}
.ws7{word-spacing:-36.096000pt;}
.wse{word-spacing:-36.060651pt;}
.wsc{word-spacing:-35.840000pt;}
.wsf{word-spacing:-35.839851pt;}
.ws22{word-spacing:-35.584000pt;}
.ws8{word-spacing:-35.456000pt;}
.wsb{word-spacing:-35.328000pt;}
.wsd{word-spacing:-34.816000pt;}
.ws2d{word-spacing:-31.166518pt;}
.ws29{word-spacing:-30.438451pt;}
.ws1f{word-spacing:-29.996587pt;}
.ws39{word-spacing:-29.810806pt;}
.ws11{word-spacing:-29.534720pt;}
.ws6{word-spacing:-29.345387pt;}
.ws2c{word-spacing:-28.664309pt;}
.ws32{word-spacing:-28.144619pt;}
.ws23{word-spacing:-27.936241pt;}
.ws5{word-spacing:-27.755520pt;}
.ws28{word-spacing:-26.789744pt;}
.ws10{word-spacing:-26.688000pt;}
.ws1e{word-spacing:-25.878291pt;}
.ws30{word-spacing:-24.915179pt;}
.ws3{word-spacing:-24.552960pt;}
.ws38{word-spacing:-24.396326pt;}
.ws33{word-spacing:-24.187111pt;}
.ws14{word-spacing:-23.901409pt;}
.ws9{word-spacing:-23.841280pt;}
.ws1d{word-spacing:-21.325537pt;}
.ws19{word-spacing:-21.008313pt;}
.ws3a{word-spacing:-20.638720pt;}
.ws3c{word-spacing:-20.321387pt;}
.ws20{word-spacing:-19.927040pt;}
.ws16{word-spacing:-19.651298pt;}
.ws17{word-spacing:-17.436603pt;}
.ws1b{word-spacing:-17.048885pt;}
.ws3f{word-spacing:-13.521920pt;}
.ws21{word-spacing:-0.128000pt;}
.ws45{word-spacing:0.000000pt;}
.ws36{word-spacing:78.429458pt;}
.ws2e{word-spacing:103.647781pt;}
.ws25{word-spacing:129.087436pt;}
.ws2b{word-spacing:131.766256pt;}
.ws40{word-spacing:148.605825pt;}
.ws26{word-spacing:154.475574pt;}
.ws3e{word-spacing:161.570058pt;}
.ws1c{word-spacing:173.030977pt;}
.ws3d{word-spacing:180.936387pt;}
.ws27{word-spacing:183.707374pt;}
.ws37{word-spacing:241.274931pt;}
.ws42{word-spacing:249.798320pt;}
.ws44{word-spacing:262.757171pt;}
.ws41{word-spacing:267.823075pt;}
.ws43{word-spacing:282.080918pt;}
.ws15{word-spacing:295.394648pt;}
.ws2f{word-spacing:302.121973pt;}
.ws34{word-spacing:507.345069pt;}
.ws2a{word-spacing:633.799143pt;}
.ws13{word-spacing:677.077846pt;}
.ws35{word-spacing:737.320524pt;}
.ws1a{word-spacing:752.077815pt;}
.ws18{word-spacing:771.816208pt;}
.ws31{word-spacing:975.525989pt;}
.ws24{word-spacing:978.476420pt;}
._18{margin-left:-164.555605pt;}
._3{margin-left:-28.103381pt;}
._6{margin-left:-24.848213pt;}
._a{margin-left:-16.653227pt;}
._b{margin-left:-14.531840pt;}
._7{margin-left:-12.494080pt;}
._1f{margin-left:-11.328000pt;}
._5{margin-left:-9.386667pt;}
._9{margin-left:-8.446165pt;}
._d{margin-left:-6.931883pt;}
._e{margin-left:-5.684395pt;}
._11{margin-left:-4.767573pt;}
._8{margin-left:-3.649920pt;}
._c{margin-left:-2.599339pt;}
._1{margin-left:-1.248427pt;}
._0{width:1.610667pt;}
._4{width:3.117312pt;}
._2{width:4.709120pt;}
._f{width:6.333440pt;}
._23{width:7.291958pt;}
._22{width:8.180878pt;}
._1c{width:9.235372pt;}
._17{width:12.658005pt;}
._12{width:13.841792pt;}
._13{width:14.843733pt;}
._14{width:16.416000pt;}
._15{width:17.845333pt;}
._16{width:18.852011pt;}
._1d{width:87.232681pt;}
._10{width:100.213504pt;}
._1a{width:110.037051pt;}
._19{width:128.347947pt;}
._26{width:131.656490pt;}
._1e{width:136.953036pt;}
._2f{width:138.351830pt;}
._2c{width:148.791340pt;}
._1b{width:178.690632pt;}
._29{width:191.949474pt;}
._28{width:213.004635pt;}
._20{width:220.500115pt;}
._2b{width:277.045659pt;}
._2e{width:287.642356pt;}
._2a{width:315.235072pt;}
._2d{width:321.241949pt;}
._21{width:365.654079pt;}
._25{width:482.907290pt;}
._24{width:534.665691pt;}
._27{width:539.332995pt;}
.fs0{font-size:5.120000pt;}
.fs1c{font-size:48.640000pt;}
.fs14{font-size:52.249760pt;}
.fs20{font-size:63.922178pt;}
.fs11{font-size:64.000000pt;}
.fs1b{font-size:64.049686pt;}
.fs15{font-size:70.688122pt;}
.fs17{font-size:71.680000pt;}
.fs1a{font-size:74.240000pt;}
.fs1d{font-size:74.542191pt;}
.fs1e{font-size:74.669919pt;}
.fs13{font-size:81.961330pt;}
.fse{font-size:85.760000pt;}
.fs7{font-size:88.320000pt;}
.fs10{font-size:96.000000pt;}
.fs21{font-size:96.013317pt;}
.fs1f{font-size:96.021672pt;}
.fsb{font-size:99.840000pt;}
.fs19{font-size:100.490076pt;}
.fs16{font-size:105.964626pt;}
.fsd{font-size:106.240000pt;}
.fs6{font-size:122.880000pt;}
.fs3{font-size:123.008000pt;}
.fsc{font-size:128.000000pt;}
.fsf{font-size:128.128000pt;}
.fs8{font-size:133.120000pt;}
.fs5{font-size:145.920000pt;}
.fs9{font-size:149.760000pt;}
.fsa{font-size:149.888000pt;}
.fs22{font-size:160.000000pt;}
.fs12{font-size:170.240000pt;}
.fs18{font-size:192.000000pt;}
.fs4{font-size:218.880000pt;}
.fs1{font-size:362.240000pt;}
.fs2{font-size:362.368000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:4.061351pt;}
.ya2{bottom:6.411180pt;}
.ydc{bottom:32.290985pt;}
.yf0{bottom:32.360336pt;}
.ye7{bottom:32.362661pt;}
.ya1{bottom:38.570849pt;}
.yd7{bottom:45.618036pt;}
.y87{bottom:48.591108pt;}
.ydf{bottom:52.357078pt;}
.yea{bottom:56.332484pt;}
.ya0{bottom:67.187256pt;}
.y9f{bottom:96.376912pt;}
.y86{bottom:97.730015pt;}
.ye0{bottom:98.977890pt;}
.yf3{bottom:109.570580pt;}
.yeb{bottom:120.290593pt;}
.y9e{bottom:124.991227pt;}
.yd8{bottom:125.584332pt;}
.y85{bottom:138.343523pt;}
.ye1{bottom:144.271773pt;}
.y9d{bottom:154.128579pt;}
.y30{bottom:157.506667pt;}
.yf4{bottom:173.551070pt;}
.y84{bottom:178.996683pt;}
.y9c{bottom:182.744985pt;}
.yec{bottom:184.252696pt;}
.ye2{bottom:189.562995pt;}
.y1d{bottom:196.346667pt;}
.y83{bottom:199.116920pt;}
.yd9{bottom:205.514700pt;}
.y9b{bottom:211.871877pt;}
.y2f{bottom:215.106667pt;}
.y42{bottom:228.093333pt;}
.y2d{bottom:231.266667pt;}
.ye3{bottom:234.867526pt;}
.yf5{bottom:237.504945pt;}
.y82{bottom:239.768612pt;}
.y9a{bottom:240.555232pt;}
.y1c{bottom:244.346667pt;}
.yed{bottom:248.212136pt;}
.y2e{bottom:251.586667pt;}
.y41{bottom:256.893333pt;}
.y2c{bottom:260.066667pt;}
.y81{bottom:260.256007pt;}
.y99{bottom:269.677939pt;}
.ye4{bottom:281.516287pt;}
.yda{bottom:285.477005pt;}
.y1b{bottom:292.346667pt;}
.y98{bottom:298.298530pt;}
.y80{bottom:300.907699pt;}
.yf6{bottom:301.458820pt;}
.yee{bottom:312.131652pt;}
.y7f{bottom:321.027937pt;}
.ye5{bottom:326.807509pt;}
.y97{bottom:327.442159pt;}
.y1a{bottom:340.346667pt;}
.y96{bottom:356.585787pt;}
.ydb{bottom:365.412695pt;}
.y7e{bottom:366.628913pt;}
.ye6{bottom:372.098731pt;}
.yef{bottom:376.091093pt;}
.y95{bottom:386.754568pt;}
.yf7{bottom:393.397506pt;}
.y102{bottom:394.813333pt;}
.yf1{bottom:405.395855pt;}
.y44{bottom:418.906667pt;}
.y101{bottom:545.306667pt;}
.y100{bottom:592.986667pt;}
.y43{bottom:628.453333pt;}
.yff{bottom:637.786667pt;}
.yfe{bottom:682.586667pt;}
.yfd{bottom:728.386667pt;}
.y40{bottom:751.106667pt;}
.yfc{bottom:778.626667pt;}
.yc{bottom:799.426667pt;}
.y3f{bottom:808.706667pt;}
.yfb{bottom:823.426667pt;}
.y3e{bottom:847.106667pt;}
.yfa{bottom:868.226667pt;}
.y3d{bottom:885.506667pt;}
.yf9{bottom:913.026667pt;}
.y3c{bottom:923.906667pt;}
.yf8{bottom:957.826667pt;}
.y3b{bottom:962.306667pt;}
.y3a{bottom:1000.706667pt;}
.y103{bottom:1038.533333pt;}
.y39{bottom:1039.106667pt;}
.y45{bottom:1074.813333pt;}
.y38{bottom:1077.506667pt;}
.y37{bottom:1115.933333pt;}
.y36{bottom:1154.333333pt;}
.y35{bottom:1192.733333pt;}
.yc0{bottom:1218.533333pt;}
.y34{bottom:1231.133333pt;}
.y1e{bottom:1238.746667pt;}
.yc3{bottom:1251.706667pt;}
.ybf{bottom:1256.933333pt;}
.yc2{bottom:1280.506667pt;}
.y23{bottom:1293.280000pt;}
.ybe{bottom:1295.333333pt;}
.yc1{bottom:1309.306667pt;}
.y4e{bottom:1324.826667pt;}
.y53{bottom:1325.093333pt;}
.ye9{bottom:1330.546667pt;}
.y22{bottom:1331.680000pt;}
.ybd{bottom:1333.733333pt;}
.yb1{bottom:1340.893333pt;}
.yf2{bottom:1341.706667pt;}
.y52{bottom:1357.093333pt;}
.ybc{bottom:1372.133333pt;}
.y1f{bottom:1378.426667pt;}
.y4d{bottom:1382.426667pt;}
.y51{bottom:1393.920000pt;}
.ybb{bottom:1410.533333pt;}
.y4c{bottom:1420.826667pt;}
.yba{bottom:1448.960000pt;}
.y4b{bottom:1459.226667pt;}
.yb9{bottom:1487.360000pt;}
.y4a{bottom:1497.666667pt;}
.yb0{bottom:1502.653333pt;}
.yb8{bottom:1525.760000pt;}
.y20{bottom:1558.333333pt;}
.yb7{bottom:1564.160000pt;}
.yb6{bottom:1602.560000pt;}
.yc4{bottom:1640.773333pt;}
.yb5{bottom:1640.960000pt;}
.y50{bottom:1672.613333pt;}
.yb4{bottom:1679.360000pt;}
.y49{bottom:1681.120000pt;}
.yb3{bottom:1717.760000pt;}
.y48{bottom:1719.520000pt;}
.y21{bottom:1726.493333pt;}
.yb2{bottom:1756.160000pt;}
.y47{bottom:1757.920000pt;}
.yaa{bottom:1781.146667pt;}
.y46{bottom:1796.346667pt;}
.ya9{bottom:1820.826667pt;}
.ya8{bottom:1864.346667pt;}
.y2a{bottom:1899.653333pt;}
.ya7{bottom:1902.746667pt;}
.y29{bottom:1938.053333pt;}
.ya6{bottom:1941.146667pt;}
.y4f{bottom:1942.626667pt;}
.y28{bottom:1976.453333pt;}
.ya5{bottom:1979.546667pt;}
.ya4{bottom:2017.946667pt;}
.y27{bottom:2053.253333pt;}
.ya3{bottom:2056.346667pt;}
.y26{bottom:2091.653333pt;}
.y94{bottom:2094.706667pt;}
.y25{bottom:2130.053333pt;}
.y24{bottom:2169.760000pt;}
.y7d{bottom:2183.866667pt;}
.y33{bottom:2211.266667pt;}
.y32{bottom:2250.946667pt;}
.y31{bottom:2295.746667pt;}
.y2b{bottom:2386.146667pt;}
.yaf{bottom:2518.053333pt;}
.y5b{bottom:2518.653333pt;}
.yae{bottom:2546.853333pt;}
.yad{bottom:2575.653333pt;}
.y5a{bottom:2576.253333pt;}
.y8b{bottom:2598.786667pt;}
.yac{bottom:2604.453333pt;}
.y59{bottom:2615.933333pt;}
.y8a{bottom:2628.226667pt;}
.yab{bottom:2633.253333pt;}
.y89{bottom:2659.586667pt;}
.y58{bottom:2660.733333pt;}
.y7c{bottom:2699.653333pt;}
.y57{bottom:2705.533333pt;}
.y7b{bottom:2736.133333pt;}
.y56{bottom:2750.373333pt;}
.y7a{bottom:2764.933333pt;}
.y77{bottom:2788.800000pt;}
.y55{bottom:2795.173333pt;}
.yde{bottom:2803.373333pt;}
.ydd{bottom:2808.933333pt;}
.ye8{bottom:2811.613333pt;}
.y76{bottom:2827.200000pt;}
.yd5{bottom:2832.826667pt;}
.y54{bottom:2839.973333pt;}
.yd0{bottom:2855.493333pt;}
.y75{bottom:2865.600000pt;}
.y19{bottom:2903.520000pt;}
.y74{bottom:2904.026667pt;}
.yd1{bottom:2935.520000pt;}
.y73{bottom:2942.426667pt;}
.y72{bottom:2980.826667pt;}
.y1{bottom:3012.413333pt;}
.yd2{bottom:3015.520000pt;}
.y71{bottom:3019.226667pt;}
.y18{bottom:3036.413333pt;}
.y70{bottom:3057.626667pt;}
.y93{bottom:3080.506667pt;}
.y91{bottom:3082.080000pt;}
.y17{bottom:3095.293333pt;}
.yd3{bottom:3095.520000pt;}
.y6f{bottom:3096.026667pt;}
.yce{bottom:3110.173333pt;}
.y6e{bottom:3134.426667pt;}
.y8d{bottom:3135.266667pt;}
.y92{bottom:3138.106667pt;}
.y16{bottom:3140.133333pt;}
.y6d{bottom:3172.826667pt;}
.yd4{bottom:3175.520000pt;}
.yd6{bottom:3180.200000pt;}
.y15{bottom:3184.933333pt;}
.ycd{bottom:3206.013333pt;}
.y6c{bottom:3211.226667pt;}
.yc5{bottom:3226.013333pt;}
.y14{bottom:3229.733333pt;}
.y6b{bottom:3249.626667pt;}
.yc6{bottom:3272.706667pt;}
.y13{bottom:3274.533333pt;}
.y6a{bottom:3288.026667pt;}
.y63{bottom:3292.866667pt;}
.yc7{bottom:3318.053333pt;}
.y12{bottom:3319.333333pt;}
.ycf{bottom:3322.946667pt;}
.y69{bottom:3326.426667pt;}
.y62{bottom:3350.493333pt;}
.yc8{bottom:3363.360000pt;}
.y11{bottom:3364.133333pt;}
.y68{bottom:3364.866667pt;}
.y61{bottom:3390.173333pt;}
.y67{bottom:3403.266667pt;}
.yc9{bottom:3408.706667pt;}
.y10{bottom:3408.933333pt;}
.y60{bottom:3434.973333pt;}
.y66{bottom:3441.666667pt;}
.y90{bottom:3452.093333pt;}
.yf{bottom:3453.733333pt;}
.yca{bottom:3455.386667pt;}
.y8f{bottom:3462.053333pt;}
.y5f{bottom:3479.773333pt;}
.y65{bottom:3480.066667pt;}
.y8c{bottom:3494.466667pt;}
.ye{bottom:3498.533333pt;}
.y8e{bottom:3500.453333pt;}
.ycb{bottom:3500.706667pt;}
.y64{bottom:3518.466667pt;}
.y5e{bottom:3524.573333pt;}
.yd{bottom:3543.333333pt;}
.ycc{bottom:3546.053333pt;}
.y5d{bottom:3569.373333pt;}
.y78{bottom:3595.066667pt;}
.y5c{bottom:3614.173333pt;}
.y79{bottom:3621.213333pt;}
.yb{bottom:3626.880000pt;}
.ya{bottom:3770.693333pt;}
.y9{bottom:3824.453333pt;}
.y8{bottom:3864.453333pt;}
.y7{bottom:3893.893333pt;}
.y6{bottom:3936.160000pt;}
.y5{bottom:4001.760000pt;}
.y4{bottom:4110.106667pt;}
.y3{bottom:4218.946667pt;}
.y2{bottom:4327.746667pt;}
.h2{height:5.340000pt;}
.h1f{height:66.801821pt;}
.h14{height:73.725503pt;}
.h1b{height:77.430000pt;}
.h21{height:77.745176pt;}
.h23{height:77.878392pt;}
.h9{height:85.320000pt;}
.hb{height:88.875000pt;}
.h11{height:88.963875pt;}
.h1d{height:89.445000pt;}
.h13{height:92.679260pt;}
.h7{height:99.160000pt;}
.hf{height:100.125000pt;}
.h1a{height:104.808009pt;}
.h17{height:110.517794pt;}
.hc{height:110.805000pt;}
.h24{height:125.278359pt;}
.h25{height:125.406246pt;}
.h6{height:128.160000pt;}
.h18{height:133.312500pt;}
.hd{height:133.500000pt;}
.he{height:133.633500pt;}
.h15{height:154.206453pt;}
.h16{height:155.675083pt;}
.h8{height:156.195000pt;}
.ha{height:156.328500pt;}
.h26{height:166.875000pt;}
.h10{height:177.555000pt;}
.h1c{height:210.835000pt;}
.h5{height:228.285000pt;}
.h3{height:377.805000pt;}
.h4{height:377.938500pt;}
.h12{height:428.825414pt;}
.h19{height:442.008209pt;}
.h1e{height:489.341625pt;}
.h22{height:499.990883pt;}
.h20{height:506.654785pt;}
.h0{height:4535.040000pt;}
.h1{height:4535.333333pt;}
.w4{width:546.657152pt;}
.w6{width:552.019302pt;}
.w5{width:557.329635pt;}
.w2{width:692.668944pt;}
.w3{width:848.169777pt;}
.w0{width:3401.280000pt;}
.w1{width:3401.333333pt;}
.x0{left:0.000000pt;}
.x2e{left:5.374216pt;}
.x37{left:6.580702pt;}
.x42{left:27.962622pt;}
.x41{left:38.644658pt;}
.x45{left:39.941846pt;}
.x43{left:54.599144pt;}
.x46{left:57.258945pt;}
.x48{left:58.618679pt;}
.x49{left:103.900586pt;}
.x4b{left:106.578040pt;}
.x12{left:115.200000pt;}
.x16{left:119.904000pt;}
.x24{left:121.792000pt;}
.x2d{left:126.989306pt;}
.x17{left:134.946667pt;}
.xa{left:142.106667pt;}
.x26{left:159.293333pt;}
.x21{left:197.760000pt;}
.x1d{left:248.866667pt;}
.x20{left:308.506667pt;}
.x18{left:317.373333pt;}
.x7{left:446.653333pt;}
.x3{left:500.000000pt;}
.xe{left:551.453333pt;}
.x2{left:575.520000pt;}
.x5{left:588.733333pt;}
.x15{left:606.306667pt;}
.xd{left:609.120000pt;}
.x8{left:629.986667pt;}
.x14{left:653.666667pt;}
.x22{left:689.026667pt;}
.x1f{left:700.826667pt;}
.x13{left:723.493333pt;}
.xb{left:744.000000pt;}
.x1e{left:827.266667pt;}
.x10{left:848.253333pt;}
.x11{left:896.253333pt;}
.x1b{left:934.560000pt;}
.x1c{left:947.066667pt;}
.xf{left:981.626667pt;}
.x23{left:1174.053333pt;}
.x19{left:1181.946667pt;}
.x1a{left:1241.146667pt;}
.x25{left:1311.866667pt;}
.x4{left:1465.853333pt;}
.x6{left:1607.386667pt;}
.x1{left:1774.786667pt;}
.x36{left:1780.160000pt;}
.x38{left:1789.760000pt;}
.x39{left:1791.266667pt;}
.x4c{left:1793.280000pt;}
.x3f{left:1797.053333pt;}
.x4d{left:1806.400000pt;}
.x3a{left:1809.440000pt;}
.xc{left:1821.760000pt;}
.x2b{left:1834.266667pt;}
.x3e{left:1839.013333pt;}
.x30{left:1858.426667pt;}
.x27{left:1871.613333pt;}
.x31{left:1886.946667pt;}
.x3d{left:1909.786667pt;}
.x3b{left:1986.533333pt;}
.x44{left:2230.560000pt;}
.x33{left:2249.466667pt;}
.x2a{left:2265.666667pt;}
.x40{left:2294.160000pt;}
.x4a{left:2307.000000pt;}
.x4e{left:2329.666667pt;}
.x4f{left:2337.666667pt;}
.x47{left:2360.733333pt;}
.x32{left:2378.813333pt;}
.x35{left:2400.826667pt;}
.x9{left:2522.720000pt;}
.x2c{left:2606.160000pt;}
.x2f{left:2610.333333pt;}
.x34{left:2778.053333pt;}
.x3c{left:2838.720000pt;}
.x28{left:2861.533333pt;}
.x29{left:2941.733333pt;}
}




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