
    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_4f4d48ef3fd060ad0d1b912d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_a2372f523f0a35dccaafee34.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_0202273aeebb0e82e3fd5935.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_78f79f3a236157ab757b08f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.793945;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_bd59978e139cb1ab9ede0e1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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;}
.m5{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,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);}
.m4{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.040000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.404400px;}
.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;}
}
.ws6{word-spacing:-79.908900px;}
.ws7{word-spacing:-76.672800px;}
.ws15{word-spacing:-72.000000px;}
.ws9{word-spacing:-59.700000px;}
.wsa0{word-spacing:-56.721600px;}
.wsa7{word-spacing:-54.931500px;}
.ws42{word-spacing:-54.056100px;}
.ws92{word-spacing:-53.554500px;}
.ws86{word-spacing:-50.200500px;}
.ws7c{word-spacing:-50.196900px;}
.ws5c{word-spacing:-50.191800px;}
.wsd6{word-spacing:-49.836300px;}
.ws94{word-spacing:-49.647900px;}
.ws41{word-spacing:-49.476000px;}
.wscd{word-spacing:-49.120800px;}
.ws85{word-spacing:-48.738000px;}
.ws81{word-spacing:-48.682800px;}
.ws23{word-spacing:-48.603300px;}
.ws69{word-spacing:-48.519300px;}
.wsce{word-spacing:-48.395700px;}
.ws28{word-spacing:-48.389400px;}
.wsc9{word-spacing:-47.960100px;}
.wsba{word-spacing:-47.881500px;}
.wsca{word-spacing:-47.749500px;}
.wsd3{word-spacing:-47.678400px;}
.ws5a{word-spacing:-47.588400px;}
.ws68{word-spacing:-47.394000px;}
.wsd0{word-spacing:-47.286900px;}
.ws5b{word-spacing:-47.271900px;}
.ws7a{word-spacing:-47.244000px;}
.wsde{word-spacing:-47.223600px;}
.wsdd{word-spacing:-47.200500px;}
.ws1c{word-spacing:-46.869300px;}
.ws6f{word-spacing:-46.822200px;}
.ws4d{word-spacing:-46.774800px;}
.ws65{word-spacing:-46.767900px;}
.wse9{word-spacing:-46.617900px;}
.wsb2{word-spacing:-46.449300px;}
.wsd4{word-spacing:-46.313100px;}
.wsb9{word-spacing:-46.049700px;}
.wsc4{word-spacing:-46.048800px;}
.ws89{word-spacing:-45.854400px;}
.wsb5{word-spacing:-45.810600px;}
.ws44{word-spacing:-45.805200px;}
.wsc6{word-spacing:-45.802500px;}
.wsa3{word-spacing:-45.796500px;}
.wsa6{word-spacing:-45.726600px;}
.ws59{word-spacing:-45.718800px;}
.ws9f{word-spacing:-45.543300px;}
.wsd2{word-spacing:-45.522600px;}
.wsea{word-spacing:-45.519300px;}
.wsc2{word-spacing:-45.517500px;}
.wsc8{word-spacing:-45.516600px;}
.ws54{word-spacing:-45.500400px;}
.ws10{word-spacing:-45.476700px;}
.ws73{word-spacing:-45.467700px;}
.wse{word-spacing:-45.438000px;}
.ws91{word-spacing:-45.333000px;}
.ws2a{word-spacing:-45.331200px;}
.wsa{word-spacing:-45.327000px;}
.ws98{word-spacing:-45.323700px;}
.ws12{word-spacing:-45.323400px;}
.wsb3{word-spacing:-45.322200px;}
.wsae{word-spacing:-45.321600px;}
.ws11{word-spacing:-45.297000px;}
.ws9b{word-spacing:-45.268500px;}
.ws96{word-spacing:-45.244500px;}
.ws7f{word-spacing:-45.235800px;}
.ws14{word-spacing:-45.206400px;}
.wsc{word-spacing:-45.192900px;}
.wsf{word-spacing:-45.192300px;}
.ws83{word-spacing:-45.166800px;}
.ws9d{word-spacing:-45.162300px;}
.wsa2{word-spacing:-45.159600px;}
.ws5f{word-spacing:-45.120900px;}
.wse0{word-spacing:-45.062100px;}
.wse6{word-spacing:-45.050700px;}
.ws80{word-spacing:-45.010200px;}
.wsbb{word-spacing:-44.998800px;}
.ws4c{word-spacing:-44.997900px;}
.wsda{word-spacing:-44.805300px;}
.ws8{word-spacing:-44.759100px;}
.wsc5{word-spacing:-44.715600px;}
.wsb8{word-spacing:-44.706300px;}
.ws13{word-spacing:-44.681400px;}
.wsb{word-spacing:-44.657100px;}
.ws61{word-spacing:-44.656800px;}
.wsbc{word-spacing:-44.609700px;}
.ws8a{word-spacing:-44.607900px;}
.wsaf{word-spacing:-44.602500px;}
.ws74{word-spacing:-44.550300px;}
.wsb4{word-spacing:-44.522100px;}
.wsb1{word-spacing:-44.510700px;}
.wsd{word-spacing:-44.478300px;}
.ws78{word-spacing:-44.392800px;}
.ws58{word-spacing:-44.365200px;}
.ws8c{word-spacing:-44.285100px;}
.ws63{word-spacing:-44.076600px;}
.ws1b{word-spacing:-43.922100px;}
.wsd9{word-spacing:-43.892400px;}
.wsa9{word-spacing:-43.887000px;}
.wsaa{word-spacing:-43.648800px;}
.ws62{word-spacing:-43.620900px;}
.ws8e{word-spacing:-43.558800px;}
.wsbe{word-spacing:-43.429500px;}
.ws7d{word-spacing:-43.344000px;}
.ws97{word-spacing:-43.274700px;}
.ws1f{word-spacing:-43.169700px;}
.ws38{word-spacing:-43.157100px;}
.ws3c{word-spacing:-43.002300px;}
.ws7e{word-spacing:-42.922800px;}
.wsd5{word-spacing:-42.922500px;}
.ws6c{word-spacing:-42.912900px;}
.ws29{word-spacing:-42.910200px;}
.ws22{word-spacing:-42.552900px;}
.ws3d{word-spacing:-42.450600px;}
.wsac{word-spacing:-42.349500px;}
.ws16{word-spacing:-42.290400px;}
.ws35{word-spacing:-42.202500px;}
.ws7b{word-spacing:-41.863800px;}
.ws2f{word-spacing:-41.855100px;}
.ws48{word-spacing:-41.721600px;}
.ws8f{word-spacing:-41.487000px;}
.ws9a{word-spacing:-41.476500px;}
.ws70{word-spacing:-41.409300px;}
.ws5d{word-spacing:-41.189400px;}
.wsa8{word-spacing:-40.918500px;}
.ws1a{word-spacing:-40.837800px;}
.ws47{word-spacing:-40.820700px;}
.ws43{word-spacing:-40.782000px;}
.ws34{word-spacing:-40.685100px;}
.ws9e{word-spacing:-40.126800px;}
.ws9c{word-spacing:-40.124100px;}
.ws95{word-spacing:-40.049700px;}
.ws3f{word-spacing:-40.029900px;}
.wsdc{word-spacing:-39.756600px;}
.ws8b{word-spacing:-39.748500px;}
.ws79{word-spacing:-39.252000px;}
.wscf{word-spacing:-39.037500px;}
.ws45{word-spacing:-39.036600px;}
.ws90{word-spacing:-38.907900px;}
.wsad{word-spacing:-38.843700px;}
.ws37{word-spacing:-38.841600px;}
.wsc0{word-spacing:-38.782500px;}
.ws72{word-spacing:-38.744700px;}
.wsbf{word-spacing:-38.703300px;}
.ws52{word-spacing:-38.512500px;}
.wse3{word-spacing:-38.314800px;}
.ws31{word-spacing:-38.234700px;}
.ws66{word-spacing:-38.129700px;}
.wsb6{word-spacing:-38.123400px;}
.ws82{word-spacing:-37.882800px;}
.wsc7{word-spacing:-37.870200px;}
.ws2d{word-spacing:-37.597200px;}
.ws93{word-spacing:-37.535700px;}
.ws25{word-spacing:-37.411200px;}
.ws67{word-spacing:-37.327200px;}
.ws24{word-spacing:-36.950100px;}
.ws99{word-spacing:-36.911100px;}
.wse2{word-spacing:-36.879300px;}
.wse1{word-spacing:-36.682800px;}
.ws3b{word-spacing:-36.678900px;}
.ws71{word-spacing:-36.492600px;}
.ws51{word-spacing:-36.448800px;}
.ws20{word-spacing:-36.429900px;}
.wsd8{word-spacing:-36.374100px;}
.wsb7{word-spacing:-36.364800px;}
.ws8d{word-spacing:-35.716800px;}
.ws75{word-spacing:-35.637000px;}
.ws5{word-spacing:-35.523900px;}
.ws0{word-spacing:-35.511600px;}
.wsd1{word-spacing:-35.445300px;}
.wsd7{word-spacing:-35.441700px;}
.ws3{word-spacing:-35.295600px;}
.wsa4{word-spacing:-35.245200px;}
.ws40{word-spacing:-35.239200px;}
.ws21{word-spacing:-35.182500px;}
.wsbd{word-spacing:-35.083200px;}
.ws3e{word-spacing:-34.923300px;}
.wsa1{word-spacing:-34.712100px;}
.ws32{word-spacing:-34.449000px;}
.ws4b{word-spacing:-34.442100px;}
.ws46{word-spacing:-34.436400px;}
.ws1e{word-spacing:-34.350600px;}
.wsab{word-spacing:-34.203300px;}
.ws4a{word-spacing:-33.999000px;}
.ws87{word-spacing:-33.960900px;}
.wsdb{word-spacing:-33.742500px;}
.wsb0{word-spacing:-33.630000px;}
.ws49{word-spacing:-33.478500px;}
.wsc3{word-spacing:-33.278400px;}
.ws2e{word-spacing:-33.193800px;}
.ws76{word-spacing:-32.921400px;}
.ws18{word-spacing:-32.836500px;}
.wsec{word-spacing:-32.765100px;}
.ws1{word-spacing:-32.712900px;}
.ws30{word-spacing:-32.550300px;}
.ws55{word-spacing:-31.859700px;}
.ws2c{word-spacing:-31.833000px;}
.ws3a{word-spacing:-31.330200px;}
.ws88{word-spacing:-31.319700px;}
.ws4f{word-spacing:-30.974100px;}
.ws4e{word-spacing:-30.849000px;}
.ws2{word-spacing:-30.616500px;}
.ws6d{word-spacing:-30.142500px;}
.ws2b{word-spacing:-30.044100px;}
.ws57{word-spacing:-30.041400px;}
.ws77{word-spacing:-29.968500px;}
.wsa5{word-spacing:-29.885100px;}
.ws17{word-spacing:-29.422500px;}
.ws53{word-spacing:-29.327400px;}
.ws56{word-spacing:-29.176500px;}
.ws19{word-spacing:-28.758900px;}
.ws1d{word-spacing:-28.445100px;}
.ws26{word-spacing:-28.252200px;}
.ws50{word-spacing:-27.858000px;}
.ws36{word-spacing:-27.802800px;}
.wse4{word-spacing:-26.802600px;}
.wsdf{word-spacing:-26.798400px;}
.ws5e{word-spacing:-26.511000px;}
.ws33{word-spacing:-25.700100px;}
.ws6e{word-spacing:-25.010100px;}
.ws39{word-spacing:-24.627300px;}
.wseb{word-spacing:-22.672500px;}
.wse7{word-spacing:-21.763500px;}
.wsc1{word-spacing:-21.753900px;}
.wse8{word-spacing:-21.568800px;}
.ws6b{word-spacing:-19.805100px;}
.ws84{word-spacing:-19.415700px;}
.wscb{word-spacing:-19.244400px;}
.wscc{word-spacing:-18.879300px;}
.ws6a{word-spacing:-18.739200px;}
.wse5{word-spacing:-18.240300px;}
.ws64{word-spacing:-13.802100px;}
.ws27{word-spacing:-13.629000px;}
.ws60{word-spacing:0.000000px;}
.ws4{word-spacing:476.259000px;}
._6{margin-left:-2.588700px;}
._0{margin-left:-1.436100px;}
._2{width:1.084200px;}
._22{width:10.665300px;}
._1f{width:12.328500px;}
._16{width:13.509600px;}
._3{width:14.698200px;}
._9{width:15.838200px;}
._11{width:17.277600px;}
._a{width:18.588300px;}
._10{width:19.901400px;}
._f{width:20.918100px;}
._e{width:22.567800px;}
._7{width:23.977800px;}
._15{width:25.537200px;}
._12{width:26.616900px;}
._13{width:27.642300px;}
._c{width:28.777500px;}
._14{width:30.103200px;}
._24{width:31.138500px;}
._1{width:32.165400px;}
._1e{width:33.411900px;}
._8{width:34.455900px;}
._17{width:35.513700px;}
._1c{width:36.560100px;}
._1b{width:37.561200px;}
._d{width:39.416400px;}
._20{width:41.005500px;}
._23{width:42.315600px;}
._b{width:43.780500px;}
._18{width:47.558700px;}
._1d{width:49.410600px;}
._25{width:53.349900px;}
._1a{width:58.236300px;}
._19{width:59.813700px;}
._21{width:99.189000px;}
._4{width:221.592900px;}
._5{width:709.275900px;}
.fc4{color:rgb(0,102,204);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(30,115,190);}
.fc0{color:rgb(255,0,0);}
.fs5{font-size:39.000000px;}
.fs2{font-size:59.700000px;}
.fs1{font-size:62.700000px;}
.fs0{font-size:66.300000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:102.300000px;}
.y0{bottom:0.000000px;}
.y3{bottom:14.446500px;}
.yc9{bottom:41.446500px;}
.yc8{bottom:59.446500px;}
.y62{bottom:72.765000px;}
.yc7{bottom:77.265000px;}
.y61{bottom:90.586500px;}
.yc6{bottom:95.265000px;}
.ya2{bottom:96.886500px;}
.y60{bottom:108.586500px;}
.y5f{bottom:126.405000px;}
.yc5{bottom:127.846500px;}
.y5e{bottom:149.265000px;}
.y2e{bottom:150.346500px;}
.y91{bottom:155.565000px;}
.y2d{bottom:168.165000px;}
.yc4{bottom:171.586500px;}
.y90{bottom:173.565000px;}
.y5d{bottom:177.165000px;}
.y2c{bottom:186.165000px;}
.yc3{bottom:189.405000px;}
.y8f{bottom:191.386500px;}
.y5c{bottom:195.165000px;}
.y2b{bottom:203.986500px;}
.yc2{bottom:207.225000px;}
.y8e{bottom:209.386500px;}
.y5b{bottom:213.165000px;}
.y2a{bottom:221.986500px;}
.yc1{bottom:225.225000px;}
.y5a{bottom:230.986500px;}
.y8d{bottom:237.465000px;}
.y29{bottom:239.805000px;}
.yc0{bottom:243.225000px;}
.y59{bottom:248.805000px;}
.y8c{bottom:255.286500px;}
.ybf{bottom:261.046500px;}
.y8b{bottom:273.105000px;}
.y28{bottom:275.625000px;}
.y58{bottom:276.886500px;}
.ybe{bottom:278.865000px;}
.y27{bottom:293.625000px;}
.y57{bottom:294.886500px;}
.ybd{bottom:296.865000px;}
.y8a{bottom:301.186500px;}
.y26{bottom:311.445000px;}
.y56{bottom:312.705000px;}
.ybc{bottom:314.686500px;}
.y89{bottom:319.186500px;}
.y25{bottom:329.265000px;}
.y55{bottom:330.525000px;}
.ybb{bottom:332.686500px;}
.y88{bottom:337.005000px;}
.y24{bottom:347.265000px;}
.y54{bottom:348.525000px;}
.yba{bottom:350.505000px;}
.y87{bottom:364.725000px;}
.y23{bottom:365.086500px;}
.yb9{bottom:368.325000px;}
.ya1{bottom:371.025000px;}
.y53{bottom:376.246500px;}
.y86{bottom:382.725000px;}
.y22{bottom:383.086500px;}
.ya0{bottom:388.846500px;}
.yec{bottom:391.365000px;}
.y52{bottom:394.246500px;}
.y85{bottom:400.546500px;}
.y21{bottom:400.905000px;}
.yb8{bottom:403.786500px;}
.yeb{bottom:409.186500px;}
.y51{bottom:412.065000px;}
.y20{bottom:418.725000px;}
.y9f{bottom:419.986500px;}
.yea{bottom:427.186500px;}
.y50{bottom:430.065000px;}
.y84{bottom:430.605000px;}
.y1f{bottom:436.725000px;}
.y9e{bottom:437.986500px;}
.ye9{bottom:445.005000px;}
.y4f{bottom:447.886500px;}
.y83{bottom:448.605000px;}
.y1e{bottom:454.546500px;}
.yb7{bottom:455.805000px;}
.ye8{bottom:462.825000px;}
.y4e{bottom:465.705000px;}
.y82{bottom:466.425000px;}
.y9d{bottom:469.125000px;}
.y1d{bottom:472.546500px;}
.yb6{bottom:473.625000px;}
.y9c{bottom:487.125000px;}
.y1c{bottom:490.365000px;}
.yb5{bottom:491.625000px;}
.ye7{bottom:492.886500px;}
.y81{bottom:496.486500px;}
.y4d{bottom:500.086500px;}
.y9b{bottom:504.946500px;}
.y1b{bottom:508.365000px;}
.yb4{bottom:509.446500px;}
.ye6{bottom:510.705000px;}
.y80{bottom:514.305000px;}
.y4c{bottom:518.086500px;}
.yb3{bottom:527.446500px;}
.ye5{bottom:528.705000px;}
.y7f{bottom:532.125000px;}
.y4b{bottom:535.905000px;}
.y9a{bottom:536.086500px;}
.y1a{bottom:540.946500px;}
.yb2{bottom:545.265000px;}
.ye4{bottom:546.525000px;}
.y7e{bottom:550.125000px;}
.y4a{bottom:553.725000px;}
.y99{bottom:554.086500px;}
.yb1{bottom:563.265000px;}
.y49{bottom:571.725000px;}
.ye3{bottom:576.586500px;}
.yb0{bottom:581.086500px;}
.y98{bottom:581.805000px;}
.y7d{bottom:582.705000px;}
.y48{bottom:589.546500px;}
.ye2{bottom:594.586500px;}
.yaf{bottom:598.905000px;}
.y97{bottom:599.625000px;}
.y19{bottom:603.765000px;}
.ye1{bottom:612.405000px;}
.yae{bottom:616.905000px;}
.y18{bottom:623.025000px;}
.y47{bottom:624.105000px;}
.y7c{bottom:626.445000px;}
.y96{bottom:627.525000px;}
.ye0{bottom:630.405000px;}
.y17{bottom:642.286500px;}
.y7b{bottom:644.445000px;}
.y95{bottom:645.525000px;}
.ydf{bottom:648.225000px;}
.yad{bottom:650.925000px;}
.y16{bottom:661.365000px;}
.y7a{bottom:662.265000px;}
.y46{bottom:665.325000px;}
.y94{bottom:678.286500px;}
.y79{bottom:680.265000px;}
.y15{bottom:680.625000px;}
.y45{bottom:683.146500px;}
.yde{bottom:696.105000px;}
.y44{bottom:700.965000px;}
.y78{bottom:704.025000px;}
.ydd{bottom:713.925000px;}
.y43{bottom:718.965000px;}
.y14{bottom:719.146500px;}
.ydc{bottom:731.925000px;}
.y77{bottom:734.086500px;}
.y42{bottom:736.965000px;}
.y13{bottom:738.405000px;}
.y93{bottom:739.125000px;}
.y76{bottom:752.086500px;}
.y41{bottom:754.786500px;}
.y12{bottom:757.665000px;}
.ydb{bottom:761.805000px;}
.y75{bottom:769.905000px;}
.y40{bottom:772.605000px;}
.y11{bottom:776.925000px;}
.yda{bottom:779.805000px;}
.y74{bottom:787.725000px;}
.y3f{bottom:790.425000px;}
.y10{bottom:796.186500px;}
.yd9{bottom:797.625000px;}
.y3e{bottom:808.425000px;}
.y73{bottom:811.665000px;}
.yd8{bottom:815.625000px;}
.y3d{bottom:826.425000px;}
.yf{bottom:834.705000px;}
.y72{bottom:841.725000px;}
.y3c{bottom:844.246500px;}
.yd7{bottom:845.505000px;}
.ye{bottom:853.965000px;}
.y71{bottom:859.725000px;}
.y3b{bottom:862.065000px;}
.yd6{bottom:863.325000px;}
.yac{bottom:873.045000px;}
.yd{bottom:873.225000px;}
.y70{bottom:877.545000px;}
.y3a{bottom:880.065000px;}
.yd5{bottom:881.325000px;}
.yc{bottom:892.486500px;}
.y6f{bottom:895.365000px;}
.y39{bottom:897.886500px;}
.yab{bottom:906.345000px;}
.yd4{bottom:911.386500px;}
.yb{bottom:911.565000px;}
.y38{bottom:915.886500px;}
.y6e{bottom:923.445000px;}
.yd3{bottom:929.205000px;}
.y37{bottom:933.705000px;}
.yd2{bottom:947.205000px;}
.ya{bottom:950.086500px;}
.y6d{bottom:951.345000px;}
.y36{bottom:951.525000px;}
.y92{bottom:964.125000px;}
.yd1{bottom:965.025000px;}
.yaa{bottom:967.186500px;}
.y6c{bottom:969.165000px;}
.y9{bottom:969.345000px;}
.y35{bottom:969.525000px;}
.ya9{bottom:985.005000px;}
.y6b{bottom:987.165000px;}
.y34{bottom:987.345000px;}
.y8{bottom:988.605000px;}
.yd0{bottom:994.905000px;}
.y6a{bottom:1004.986500px;}
.y33{bottom:1005.345000px;}
.y7{bottom:1007.865000px;}
.ycf{bottom:1012.905000px;}
.ya8{bottom:1016.325000px;}
.y69{bottom:1022.986500px;}
.y32{bottom:1023.165000px;}
.y6{bottom:1027.125000px;}
.yce{bottom:1030.725000px;}
.ya7{bottom:1034.145000px;}
.y31{bottom:1041.165000px;}
.y68{bottom:1045.665000px;}
.ycd{bottom:1048.725000px;}
.y30{bottom:1058.986500px;}
.ya6{bottom:1065.286500px;}
.y67{bottom:1074.105000px;}
.ycc{bottom:1078.786500px;}
.y66{bottom:1091.745000px;}
.y5{bottom:1095.525000px;}
.ya5{bottom:1096.425000px;}
.ycb{bottom:1096.605000px;}
.y65{bottom:1109.565000px;}
.ya4{bottom:1114.245000px;}
.y2f{bottom:1114.425000px;}
.y64{bottom:1127.205000px;}
.y4{bottom:1128.105000px;}
.yca{bottom:1132.425000px;}
.ya3{bottom:1147.545000px;}
.y63{bottom:1150.245000px;}
.y2{bottom:1180.665000px;}
.y1{bottom:1207.125000px;}
.h2{height:40.460742px;}
.h1{height:44.933789px;}
.h4{height:45.153955px;}
.h5{height:54.457031px;}
.h3{height:77.374365px;}
.h0{height:1263.000000px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.200000px;}
.x14{left:108.000000px;}
.x4{left:109.260000px;}
.x1d{left:115.200000px;}
.x16{left:118.800000px;}
.x19{left:122.760000px;}
.x17{left:127.080000px;}
.x18{left:130.320000px;}
.x15{left:138.238500px;}
.x1{left:140.038500px;}
.x1a{left:141.660000px;}
.x2{left:164.520000px;}
.x1e{left:174.060000px;}
.x11{left:300.600000px;}
.x8{left:301.860000px;}
.x7{left:310.860000px;}
.x10{left:313.560000px;}
.xf{left:315.538500px;}
.xd{left:325.260000px;}
.xe{left:327.238500px;}
.x1c{left:333.000000px;}
.xc{left:344.700000px;}
.x1b{left:347.220000px;}
.x5{left:349.560000px;}
.x12{left:360.180000px;}
.x9{left:364.860000px;}
.xb{left:366.660000px;}
.x6{left:371.160000px;}
.x13{left:374.220000px;}
.xa{left:376.560000px;}
@media print{
.v1{vertical-align:-4.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.359467pt;}
.ws6{word-spacing:-71.030133pt;}
.ws7{word-spacing:-68.153600pt;}
.ws15{word-spacing:-64.000000pt;}
.ws9{word-spacing:-53.066667pt;}
.wsa0{word-spacing:-50.419200pt;}
.wsa7{word-spacing:-48.828000pt;}
.ws42{word-spacing:-48.049867pt;}
.ws92{word-spacing:-47.604000pt;}
.ws86{word-spacing:-44.622667pt;}
.ws7c{word-spacing:-44.619467pt;}
.ws5c{word-spacing:-44.614933pt;}
.wsd6{word-spacing:-44.298933pt;}
.ws94{word-spacing:-44.131467pt;}
.ws41{word-spacing:-43.978667pt;}
.wscd{word-spacing:-43.662933pt;}
.ws85{word-spacing:-43.322667pt;}
.ws81{word-spacing:-43.273600pt;}
.ws23{word-spacing:-43.202933pt;}
.ws69{word-spacing:-43.128267pt;}
.wsce{word-spacing:-43.018400pt;}
.ws28{word-spacing:-43.012800pt;}
.wsc9{word-spacing:-42.631200pt;}
.wsba{word-spacing:-42.561333pt;}
.wsca{word-spacing:-42.444000pt;}
.wsd3{word-spacing:-42.380800pt;}
.ws5a{word-spacing:-42.300800pt;}
.ws68{word-spacing:-42.128000pt;}
.wsd0{word-spacing:-42.032800pt;}
.ws5b{word-spacing:-42.019467pt;}
.ws7a{word-spacing:-41.994667pt;}
.wsde{word-spacing:-41.976533pt;}
.wsdd{word-spacing:-41.956000pt;}
.ws1c{word-spacing:-41.661600pt;}
.ws6f{word-spacing:-41.619733pt;}
.ws4d{word-spacing:-41.577600pt;}
.ws65{word-spacing:-41.571467pt;}
.wse9{word-spacing:-41.438133pt;}
.wsb2{word-spacing:-41.288267pt;}
.wsd4{word-spacing:-41.167200pt;}
.wsb9{word-spacing:-40.933067pt;}
.wsc4{word-spacing:-40.932267pt;}
.ws89{word-spacing:-40.759467pt;}
.wsb5{word-spacing:-40.720533pt;}
.ws44{word-spacing:-40.715733pt;}
.wsc6{word-spacing:-40.713333pt;}
.wsa3{word-spacing:-40.708000pt;}
.wsa6{word-spacing:-40.645867pt;}
.ws59{word-spacing:-40.638933pt;}
.ws9f{word-spacing:-40.482933pt;}
.wsd2{word-spacing:-40.464533pt;}
.wsea{word-spacing:-40.461600pt;}
.wsc2{word-spacing:-40.460000pt;}
.wsc8{word-spacing:-40.459200pt;}
.ws54{word-spacing:-40.444800pt;}
.ws10{word-spacing:-40.423733pt;}
.ws73{word-spacing:-40.415733pt;}
.wse{word-spacing:-40.389333pt;}
.ws91{word-spacing:-40.296000pt;}
.ws2a{word-spacing:-40.294400pt;}
.wsa{word-spacing:-40.290667pt;}
.ws98{word-spacing:-40.287733pt;}
.ws12{word-spacing:-40.287467pt;}
.wsb3{word-spacing:-40.286400pt;}
.wsae{word-spacing:-40.285867pt;}
.ws11{word-spacing:-40.264000pt;}
.ws9b{word-spacing:-40.238667pt;}
.ws96{word-spacing:-40.217333pt;}
.ws7f{word-spacing:-40.209600pt;}
.ws14{word-spacing:-40.183467pt;}
.wsc{word-spacing:-40.171467pt;}
.wsf{word-spacing:-40.170933pt;}
.ws83{word-spacing:-40.148267pt;}
.ws9d{word-spacing:-40.144267pt;}
.wsa2{word-spacing:-40.141867pt;}
.ws5f{word-spacing:-40.107467pt;}
.wse0{word-spacing:-40.055200pt;}
.wse6{word-spacing:-40.045067pt;}
.ws80{word-spacing:-40.009067pt;}
.wsbb{word-spacing:-39.998933pt;}
.ws4c{word-spacing:-39.998133pt;}
.wsda{word-spacing:-39.826933pt;}
.ws8{word-spacing:-39.785867pt;}
.wsc5{word-spacing:-39.747200pt;}
.wsb8{word-spacing:-39.738933pt;}
.ws13{word-spacing:-39.716800pt;}
.wsb{word-spacing:-39.695200pt;}
.ws61{word-spacing:-39.694933pt;}
.wsbc{word-spacing:-39.653067pt;}
.ws8a{word-spacing:-39.651467pt;}
.wsaf{word-spacing:-39.646667pt;}
.ws74{word-spacing:-39.600267pt;}
.wsb4{word-spacing:-39.575200pt;}
.wsb1{word-spacing:-39.565067pt;}
.wsd{word-spacing:-39.536267pt;}
.ws78{word-spacing:-39.460267pt;}
.ws58{word-spacing:-39.435733pt;}
.ws8c{word-spacing:-39.364533pt;}
.ws63{word-spacing:-39.179200pt;}
.ws1b{word-spacing:-39.041867pt;}
.wsd9{word-spacing:-39.015467pt;}
.wsa9{word-spacing:-39.010667pt;}
.wsaa{word-spacing:-38.798933pt;}
.ws62{word-spacing:-38.774133pt;}
.ws8e{word-spacing:-38.718933pt;}
.wsbe{word-spacing:-38.604000pt;}
.ws7d{word-spacing:-38.528000pt;}
.ws97{word-spacing:-38.466400pt;}
.ws1f{word-spacing:-38.373067pt;}
.ws38{word-spacing:-38.361867pt;}
.ws3c{word-spacing:-38.224267pt;}
.ws7e{word-spacing:-38.153600pt;}
.wsd5{word-spacing:-38.153333pt;}
.ws6c{word-spacing:-38.144800pt;}
.ws29{word-spacing:-38.142400pt;}
.ws22{word-spacing:-37.824800pt;}
.ws3d{word-spacing:-37.733867pt;}
.wsac{word-spacing:-37.644000pt;}
.ws16{word-spacing:-37.591467pt;}
.ws35{word-spacing:-37.513333pt;}
.ws7b{word-spacing:-37.212267pt;}
.ws2f{word-spacing:-37.204533pt;}
.ws48{word-spacing:-37.085867pt;}
.ws8f{word-spacing:-36.877333pt;}
.ws9a{word-spacing:-36.868000pt;}
.ws70{word-spacing:-36.808267pt;}
.ws5d{word-spacing:-36.612800pt;}
.wsa8{word-spacing:-36.372000pt;}
.ws1a{word-spacing:-36.300267pt;}
.ws47{word-spacing:-36.285067pt;}
.ws43{word-spacing:-36.250667pt;}
.ws34{word-spacing:-36.164533pt;}
.ws9e{word-spacing:-35.668267pt;}
.ws9c{word-spacing:-35.665867pt;}
.ws95{word-spacing:-35.599733pt;}
.ws3f{word-spacing:-35.582133pt;}
.wsdc{word-spacing:-35.339200pt;}
.ws8b{word-spacing:-35.332000pt;}
.ws79{word-spacing:-34.890667pt;}
.wscf{word-spacing:-34.700000pt;}
.ws45{word-spacing:-34.699200pt;}
.ws90{word-spacing:-34.584800pt;}
.wsad{word-spacing:-34.527733pt;}
.ws37{word-spacing:-34.525867pt;}
.wsc0{word-spacing:-34.473333pt;}
.ws72{word-spacing:-34.439733pt;}
.wsbf{word-spacing:-34.402933pt;}
.ws52{word-spacing:-34.233333pt;}
.wse3{word-spacing:-34.057600pt;}
.ws31{word-spacing:-33.986400pt;}
.ws66{word-spacing:-33.893067pt;}
.wsb6{word-spacing:-33.887467pt;}
.ws82{word-spacing:-33.673600pt;}
.wsc7{word-spacing:-33.662400pt;}
.ws2d{word-spacing:-33.419733pt;}
.ws93{word-spacing:-33.365067pt;}
.ws25{word-spacing:-33.254400pt;}
.ws67{word-spacing:-33.179733pt;}
.ws24{word-spacing:-32.844533pt;}
.ws99{word-spacing:-32.809867pt;}
.wse2{word-spacing:-32.781600pt;}
.wse1{word-spacing:-32.606933pt;}
.ws3b{word-spacing:-32.603467pt;}
.ws71{word-spacing:-32.437867pt;}
.ws51{word-spacing:-32.398933pt;}
.ws20{word-spacing:-32.382133pt;}
.wsd8{word-spacing:-32.332533pt;}
.wsb7{word-spacing:-32.324267pt;}
.ws8d{word-spacing:-31.748267pt;}
.ws75{word-spacing:-31.677333pt;}
.ws5{word-spacing:-31.576800pt;}
.ws0{word-spacing:-31.565867pt;}
.wsd1{word-spacing:-31.506933pt;}
.wsd7{word-spacing:-31.503733pt;}
.ws3{word-spacing:-31.373867pt;}
.wsa4{word-spacing:-31.329067pt;}
.ws40{word-spacing:-31.323733pt;}
.ws21{word-spacing:-31.273333pt;}
.wsbd{word-spacing:-31.185067pt;}
.ws3e{word-spacing:-31.042933pt;}
.wsa1{word-spacing:-30.855200pt;}
.ws32{word-spacing:-30.621333pt;}
.ws4b{word-spacing:-30.615200pt;}
.ws46{word-spacing:-30.610133pt;}
.ws1e{word-spacing:-30.533867pt;}
.wsab{word-spacing:-30.402933pt;}
.ws4a{word-spacing:-30.221333pt;}
.ws87{word-spacing:-30.187467pt;}
.wsdb{word-spacing:-29.993333pt;}
.wsb0{word-spacing:-29.893333pt;}
.ws49{word-spacing:-29.758667pt;}
.wsc3{word-spacing:-29.580800pt;}
.ws2e{word-spacing:-29.505600pt;}
.ws76{word-spacing:-29.263467pt;}
.ws18{word-spacing:-29.188000pt;}
.wsec{word-spacing:-29.124533pt;}
.ws1{word-spacing:-29.078133pt;}
.ws30{word-spacing:-28.933600pt;}
.ws55{word-spacing:-28.319733pt;}
.ws2c{word-spacing:-28.296000pt;}
.ws3a{word-spacing:-27.849067pt;}
.ws88{word-spacing:-27.839733pt;}
.ws4f{word-spacing:-27.532533pt;}
.ws4e{word-spacing:-27.421333pt;}
.ws2{word-spacing:-27.214667pt;}
.ws6d{word-spacing:-26.793333pt;}
.ws2b{word-spacing:-26.705867pt;}
.ws57{word-spacing:-26.703467pt;}
.ws77{word-spacing:-26.638667pt;}
.wsa5{word-spacing:-26.564533pt;}
.ws17{word-spacing:-26.153333pt;}
.ws53{word-spacing:-26.068800pt;}
.ws56{word-spacing:-25.934667pt;}
.ws19{word-spacing:-25.563467pt;}
.ws1d{word-spacing:-25.284533pt;}
.ws26{word-spacing:-25.113067pt;}
.ws50{word-spacing:-24.762667pt;}
.ws36{word-spacing:-24.713600pt;}
.wse4{word-spacing:-23.824533pt;}
.wsdf{word-spacing:-23.820800pt;}
.ws5e{word-spacing:-23.565333pt;}
.ws33{word-spacing:-22.844533pt;}
.ws6e{word-spacing:-22.231200pt;}
.ws39{word-spacing:-21.890933pt;}
.wseb{word-spacing:-20.153333pt;}
.wse7{word-spacing:-19.345333pt;}
.wsc1{word-spacing:-19.336800pt;}
.wse8{word-spacing:-19.172267pt;}
.ws6b{word-spacing:-17.604533pt;}
.ws84{word-spacing:-17.258400pt;}
.wscb{word-spacing:-17.106133pt;}
.wscc{word-spacing:-16.781600pt;}
.ws6a{word-spacing:-16.657067pt;}
.wse5{word-spacing:-16.213600pt;}
.ws64{word-spacing:-12.268533pt;}
.ws27{word-spacing:-12.114667pt;}
.ws60{word-spacing:0.000000pt;}
.ws4{word-spacing:423.341333pt;}
._6{margin-left:-2.301067pt;}
._0{margin-left:-1.276533pt;}
._2{width:0.963733pt;}
._22{width:9.480267pt;}
._1f{width:10.958667pt;}
._16{width:12.008533pt;}
._3{width:13.065067pt;}
._9{width:14.078400pt;}
._11{width:15.357867pt;}
._a{width:16.522933pt;}
._10{width:17.690133pt;}
._f{width:18.593867pt;}
._e{width:20.060267pt;}
._7{width:21.313600pt;}
._15{width:22.699733pt;}
._12{width:23.659467pt;}
._13{width:24.570933pt;}
._c{width:25.580000pt;}
._14{width:26.758400pt;}
._24{width:27.678667pt;}
._1{width:28.591467pt;}
._1e{width:29.699467pt;}
._8{width:30.627467pt;}
._17{width:31.567733pt;}
._1c{width:32.497867pt;}
._1b{width:33.387733pt;}
._d{width:35.036800pt;}
._20{width:36.449333pt;}
._23{width:37.613867pt;}
._b{width:38.916000pt;}
._18{width:42.274400pt;}
._1d{width:43.920533pt;}
._25{width:47.422133pt;}
._1a{width:51.765600pt;}
._19{width:53.167733pt;}
._21{width:88.168000pt;}
._4{width:196.971467pt;}
._5{width:630.467467pt;}
.fs5{font-size:34.666667pt;}
.fs2{font-size:53.066667pt;}
.fs1{font-size:55.733333pt;}
.fs0{font-size:58.933333pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:90.933333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:12.841333pt;}
.yc9{bottom:36.841333pt;}
.yc8{bottom:52.841333pt;}
.y62{bottom:64.680000pt;}
.yc7{bottom:68.680000pt;}
.y61{bottom:80.521333pt;}
.yc6{bottom:84.680000pt;}
.ya2{bottom:86.121333pt;}
.y60{bottom:96.521333pt;}
.y5f{bottom:112.360000pt;}
.yc5{bottom:113.641333pt;}
.y5e{bottom:132.680000pt;}
.y2e{bottom:133.641333pt;}
.y91{bottom:138.280000pt;}
.y2d{bottom:149.480000pt;}
.yc4{bottom:152.521333pt;}
.y90{bottom:154.280000pt;}
.y5d{bottom:157.480000pt;}
.y2c{bottom:165.480000pt;}
.yc3{bottom:168.360000pt;}
.y8f{bottom:170.121333pt;}
.y5c{bottom:173.480000pt;}
.y2b{bottom:181.321333pt;}
.yc2{bottom:184.200000pt;}
.y8e{bottom:186.121333pt;}
.y5b{bottom:189.480000pt;}
.y2a{bottom:197.321333pt;}
.yc1{bottom:200.200000pt;}
.y5a{bottom:205.321333pt;}
.y8d{bottom:211.080000pt;}
.y29{bottom:213.160000pt;}
.yc0{bottom:216.200000pt;}
.y59{bottom:221.160000pt;}
.y8c{bottom:226.921333pt;}
.ybf{bottom:232.041333pt;}
.y8b{bottom:242.760000pt;}
.y28{bottom:245.000000pt;}
.y58{bottom:246.121333pt;}
.ybe{bottom:247.880000pt;}
.y27{bottom:261.000000pt;}
.y57{bottom:262.121333pt;}
.ybd{bottom:263.880000pt;}
.y8a{bottom:267.721333pt;}
.y26{bottom:276.840000pt;}
.y56{bottom:277.960000pt;}
.ybc{bottom:279.721333pt;}
.y89{bottom:283.721333pt;}
.y25{bottom:292.680000pt;}
.y55{bottom:293.800000pt;}
.ybb{bottom:295.721333pt;}
.y88{bottom:299.560000pt;}
.y24{bottom:308.680000pt;}
.y54{bottom:309.800000pt;}
.yba{bottom:311.560000pt;}
.y87{bottom:324.200000pt;}
.y23{bottom:324.521333pt;}
.yb9{bottom:327.400000pt;}
.ya1{bottom:329.800000pt;}
.y53{bottom:334.441333pt;}
.y86{bottom:340.200000pt;}
.y22{bottom:340.521333pt;}
.ya0{bottom:345.641333pt;}
.yec{bottom:347.880000pt;}
.y52{bottom:350.441333pt;}
.y85{bottom:356.041333pt;}
.y21{bottom:356.360000pt;}
.yb8{bottom:358.921333pt;}
.yeb{bottom:363.721333pt;}
.y51{bottom:366.280000pt;}
.y20{bottom:372.200000pt;}
.y9f{bottom:373.321333pt;}
.yea{bottom:379.721333pt;}
.y50{bottom:382.280000pt;}
.y84{bottom:382.760000pt;}
.y1f{bottom:388.200000pt;}
.y9e{bottom:389.321333pt;}
.ye9{bottom:395.560000pt;}
.y4f{bottom:398.121333pt;}
.y83{bottom:398.760000pt;}
.y1e{bottom:404.041333pt;}
.yb7{bottom:405.160000pt;}
.ye8{bottom:411.400000pt;}
.y4e{bottom:413.960000pt;}
.y82{bottom:414.600000pt;}
.y9d{bottom:417.000000pt;}
.y1d{bottom:420.041333pt;}
.yb6{bottom:421.000000pt;}
.y9c{bottom:433.000000pt;}
.y1c{bottom:435.880000pt;}
.yb5{bottom:437.000000pt;}
.ye7{bottom:438.121333pt;}
.y81{bottom:441.321333pt;}
.y4d{bottom:444.521333pt;}
.y9b{bottom:448.841333pt;}
.y1b{bottom:451.880000pt;}
.yb4{bottom:452.841333pt;}
.ye6{bottom:453.960000pt;}
.y80{bottom:457.160000pt;}
.y4c{bottom:460.521333pt;}
.yb3{bottom:468.841333pt;}
.ye5{bottom:469.960000pt;}
.y7f{bottom:473.000000pt;}
.y4b{bottom:476.360000pt;}
.y9a{bottom:476.521333pt;}
.y1a{bottom:480.841333pt;}
.yb2{bottom:484.680000pt;}
.ye4{bottom:485.800000pt;}
.y7e{bottom:489.000000pt;}
.y4a{bottom:492.200000pt;}
.y99{bottom:492.521333pt;}
.yb1{bottom:500.680000pt;}
.y49{bottom:508.200000pt;}
.ye3{bottom:512.521333pt;}
.yb0{bottom:516.521333pt;}
.y98{bottom:517.160000pt;}
.y7d{bottom:517.960000pt;}
.y48{bottom:524.041333pt;}
.ye2{bottom:528.521333pt;}
.yaf{bottom:532.360000pt;}
.y97{bottom:533.000000pt;}
.y19{bottom:536.680000pt;}
.ye1{bottom:544.360000pt;}
.yae{bottom:548.360000pt;}
.y18{bottom:553.800000pt;}
.y47{bottom:554.760000pt;}
.y7c{bottom:556.840000pt;}
.y96{bottom:557.800000pt;}
.ye0{bottom:560.360000pt;}
.y17{bottom:570.921333pt;}
.y7b{bottom:572.840000pt;}
.y95{bottom:573.800000pt;}
.ydf{bottom:576.200000pt;}
.yad{bottom:578.600000pt;}
.y16{bottom:587.880000pt;}
.y7a{bottom:588.680000pt;}
.y46{bottom:591.400000pt;}
.y94{bottom:602.921333pt;}
.y79{bottom:604.680000pt;}
.y15{bottom:605.000000pt;}
.y45{bottom:607.241333pt;}
.yde{bottom:618.760000pt;}
.y44{bottom:623.080000pt;}
.y78{bottom:625.800000pt;}
.ydd{bottom:634.600000pt;}
.y43{bottom:639.080000pt;}
.y14{bottom:639.241333pt;}
.ydc{bottom:650.600000pt;}
.y77{bottom:652.521333pt;}
.y42{bottom:655.080000pt;}
.y13{bottom:656.360000pt;}
.y93{bottom:657.000000pt;}
.y76{bottom:668.521333pt;}
.y41{bottom:670.921333pt;}
.y12{bottom:673.480000pt;}
.ydb{bottom:677.160000pt;}
.y75{bottom:684.360000pt;}
.y40{bottom:686.760000pt;}
.y11{bottom:690.600000pt;}
.yda{bottom:693.160000pt;}
.y74{bottom:700.200000pt;}
.y3f{bottom:702.600000pt;}
.y10{bottom:707.721333pt;}
.yd9{bottom:709.000000pt;}
.y3e{bottom:718.600000pt;}
.y73{bottom:721.480000pt;}
.yd8{bottom:725.000000pt;}
.y3d{bottom:734.600000pt;}
.yf{bottom:741.960000pt;}
.y72{bottom:748.200000pt;}
.y3c{bottom:750.441333pt;}
.yd7{bottom:751.560000pt;}
.ye{bottom:759.080000pt;}
.y71{bottom:764.200000pt;}
.y3b{bottom:766.280000pt;}
.yd6{bottom:767.400000pt;}
.yac{bottom:776.040000pt;}
.yd{bottom:776.200000pt;}
.y70{bottom:780.040000pt;}
.y3a{bottom:782.280000pt;}
.yd5{bottom:783.400000pt;}
.yc{bottom:793.321333pt;}
.y6f{bottom:795.880000pt;}
.y39{bottom:798.121333pt;}
.yab{bottom:805.640000pt;}
.yd4{bottom:810.121333pt;}
.yb{bottom:810.280000pt;}
.y38{bottom:814.121333pt;}
.y6e{bottom:820.840000pt;}
.yd3{bottom:825.960000pt;}
.y37{bottom:829.960000pt;}
.yd2{bottom:841.960000pt;}
.ya{bottom:844.521333pt;}
.y6d{bottom:845.640000pt;}
.y36{bottom:845.800000pt;}
.y92{bottom:857.000000pt;}
.yd1{bottom:857.800000pt;}
.yaa{bottom:859.721333pt;}
.y6c{bottom:861.480000pt;}
.y9{bottom:861.640000pt;}
.y35{bottom:861.800000pt;}
.ya9{bottom:875.560000pt;}
.y6b{bottom:877.480000pt;}
.y34{bottom:877.640000pt;}
.y8{bottom:878.760000pt;}
.yd0{bottom:884.360000pt;}
.y6a{bottom:893.321333pt;}
.y33{bottom:893.640000pt;}
.y7{bottom:895.880000pt;}
.ycf{bottom:900.360000pt;}
.ya8{bottom:903.400000pt;}
.y69{bottom:909.321333pt;}
.y32{bottom:909.480000pt;}
.y6{bottom:913.000000pt;}
.yce{bottom:916.200000pt;}
.ya7{bottom:919.240000pt;}
.y31{bottom:925.480000pt;}
.y68{bottom:929.480000pt;}
.ycd{bottom:932.200000pt;}
.y30{bottom:941.321333pt;}
.ya6{bottom:946.921333pt;}
.y67{bottom:954.760000pt;}
.ycc{bottom:958.921333pt;}
.y66{bottom:970.440000pt;}
.y5{bottom:973.800000pt;}
.ya5{bottom:974.600000pt;}
.ycb{bottom:974.760000pt;}
.y65{bottom:986.280000pt;}
.ya4{bottom:990.440000pt;}
.y2f{bottom:990.600000pt;}
.y64{bottom:1001.960000pt;}
.y4{bottom:1002.760000pt;}
.yca{bottom:1006.600000pt;}
.ya3{bottom:1020.040000pt;}
.y63{bottom:1022.440000pt;}
.y2{bottom:1049.480000pt;}
.y1{bottom:1073.000000pt;}
.h2{height:35.965104pt;}
.h1{height:39.941146pt;}
.h4{height:40.136849pt;}
.h5{height:48.406250pt;}
.h3{height:68.777214pt;}
.h0{height:1122.666667pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.400000pt;}
.x14{left:96.000000pt;}
.x4{left:97.120000pt;}
.x1d{left:102.400000pt;}
.x16{left:105.600000pt;}
.x19{left:109.120000pt;}
.x17{left:112.960000pt;}
.x18{left:115.840000pt;}
.x15{left:122.878667pt;}
.x1{left:124.478667pt;}
.x1a{left:125.920000pt;}
.x2{left:146.240000pt;}
.x1e{left:154.720000pt;}
.x11{left:267.200000pt;}
.x8{left:268.320000pt;}
.x7{left:276.320000pt;}
.x10{left:278.720000pt;}
.xf{left:280.478667pt;}
.xd{left:289.120000pt;}
.xe{left:290.878667pt;}
.x1c{left:296.000000pt;}
.xc{left:306.400000pt;}
.x1b{left:308.640000pt;}
.x5{left:310.720000pt;}
.x12{left:320.160000pt;}
.x9{left:324.320000pt;}
.xb{left:325.920000pt;}
.x6{left:329.920000pt;}
.x13{left:332.640000pt;}
.xa{left:334.720000pt;}
}




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