
    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_956930a5f226c25cbcdd7718.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_4b655fce274997a2456f6c08.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_224a8a0b017d2ae6b9b6d59a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_90716a52d6f96dd4d45b52b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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.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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:18.510000px;}
.ls4{letter-spacing:30.738000px;}
.ls3{letter-spacing:31.470000px;}
.ls5{letter-spacing:37.944000px;}
.ls1{letter-spacing:43.704000px;}
.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;}
}
.ws1f{word-spacing:-55.944000px;}
.ws89{word-spacing:-38.867400px;}
.ws6{word-spacing:-38.657700px;}
.ws66{word-spacing:-38.656800px;}
.ws26{word-spacing:-38.656500px;}
.ws1d{word-spacing:-38.655900px;}
.wsd{word-spacing:-38.653200px;}
.ws5{word-spacing:-38.647800px;}
.ws29{word-spacing:-38.644500px;}
.ws18{word-spacing:-38.589300px;}
.ws22{word-spacing:-38.582100px;}
.ws7f{word-spacing:-38.444400px;}
.ws62{word-spacing:-38.440800px;}
.ws86{word-spacing:-38.439600px;}
.ws7a{word-spacing:-38.439000px;}
.ws5b{word-spacing:-38.438700px;}
.ws6b{word-spacing:-38.435400px;}
.wsa4{word-spacing:-38.431800px;}
.ws35{word-spacing:-38.430900px;}
.wsa{word-spacing:-38.428200px;}
.ws87{word-spacing:-38.426400px;}
.ws76{word-spacing:-38.415000px;}
.ws3{word-spacing:-38.374200px;}
.ws5c{word-spacing:-38.371500px;}
.ws8a{word-spacing:-38.370600px;}
.ws36{word-spacing:-38.366700px;}
.wsb{word-spacing:-38.366100px;}
.wse5{word-spacing:-38.359800px;}
.wsa5{word-spacing:-38.356200px;}
.ws9a{word-spacing:-38.166000px;}
.ws37{word-spacing:-38.153700px;}
.wsc8{word-spacing:-38.152800px;}
.ws4a{word-spacing:-38.152500px;}
.ws0{word-spacing:-37.944000px;}
.wsd1{word-spacing:-37.942200px;}
.ws8b{word-spacing:-37.941300px;}
.ws13{word-spacing:-37.940400px;}
.ws4{word-spacing:-37.938600px;}
.ws3c{word-spacing:-37.935000px;}
.ws2{word-spacing:-37.931400px;}
.wsda{word-spacing:-37.922400px;}
.wsc{word-spacing:-37.862100px;}
.ws9{word-spacing:-37.856100px;}
.wsd2{word-spacing:-37.734000px;}
.ws61{word-spacing:-37.730400px;}
.ws3f{word-spacing:-37.726200px;}
.ws6d{word-spacing:-37.719000px;}
.wsce{word-spacing:-37.718100px;}
.ws4e{word-spacing:-37.717800px;}
.ws4b{word-spacing:-37.717200px;}
.ws8d{word-spacing:-37.716900px;}
.wse4{word-spacing:-37.713600px;}
.wsea{word-spacing:-37.711800px;}
.ws8c{word-spacing:-37.710900px;}
.wsbe{word-spacing:-37.710000px;}
.wse{word-spacing:-37.709100px;}
.wsd5{word-spacing:-37.708200px;}
.ws32{word-spacing:-37.697400px;}
.wse8{word-spacing:-37.440000px;}
.wsc5{word-spacing:-37.434600px;}
.ws47{word-spacing:-37.432800px;}
.ws9d{word-spacing:-37.414800px;}
.wsc6{word-spacing:-37.215000px;}
.ws43{word-spacing:-37.213200px;}
.wsb5{word-spacing:-37.207800px;}
.wscf{word-spacing:-37.001700px;}
.wsc1{word-spacing:-37.000800px;}
.ws63{word-spacing:-36.991800px;}
.wsc4{word-spacing:-36.988200px;}
.ws67{word-spacing:-36.717900px;}
.wsdf{word-spacing:-36.714600px;}
.ws39{word-spacing:-36.707400px;}
.ws44{word-spacing:-36.704700px;}
.ws68{word-spacing:-36.500400px;}
.ws56{word-spacing:-36.496800px;}
.ws81{word-spacing:-35.784000px;}
.wscd{word-spacing:-35.542800px;}
.ws1e{word-spacing:-35.271900px;}
.ws19{word-spacing:-35.260200px;}
.wsa6{word-spacing:-35.061300px;}
.ws21{word-spacing:-35.061000px;}
.ws1a{word-spacing:-34.994400px;}
.ws97{word-spacing:-34.848000px;}
.ws2e{word-spacing:-34.838400px;}
.wse3{word-spacing:-34.556400px;}
.ws20{word-spacing:-34.552800px;}
.wsb6{word-spacing:-34.339200px;}
.wsad{word-spacing:-34.119000px;}
.ws11{word-spacing:-33.831000px;}
.ws71{word-spacing:-33.624000px;}
.ws96{word-spacing:-33.622200px;}
.wsb4{word-spacing:-33.621300px;}
.ws8{word-spacing:-33.547800px;}
.ws23{word-spacing:-33.120000px;}
.wse0{word-spacing:-33.116400px;}
.ws45{word-spacing:-33.114000px;}
.ws24{word-spacing:-32.904000px;}
.wscb{word-spacing:-32.895000px;}
.ws28{word-spacing:-32.675400px;}
.wse1{word-spacing:-32.396400px;}
.ws27{word-spacing:-32.393400px;}
.wsa8{word-spacing:-32.182200px;}
.ws77{word-spacing:-32.180400px;}
.wsc2{word-spacing:-32.164200px;}
.wsa7{word-spacing:-31.957200px;}
.wsb0{word-spacing:-31.953600px;}
.ws99{word-spacing:-31.946400px;}
.ws88{word-spacing:-31.885200px;}
.wsa3{word-spacing:-31.674600px;}
.wsb3{word-spacing:-31.667400px;}
.wse9{word-spacing:-31.461300px;}
.ws2f{word-spacing:-30.950100px;}
.ws7b{word-spacing:-30.735000px;}
.wsee{word-spacing:-30.728400px;}
.ws30{word-spacing:-30.215400px;}
.ws5f{word-spacing:-30.024000px;}
.ws84{word-spacing:-30.022800px;}
.ws1c{word-spacing:-30.020400px;}
.ws79{word-spacing:-29.799000px;}
.ws9f{word-spacing:-28.590000px;}
.ws80{word-spacing:-28.582800px;}
.wsde{word-spacing:-28.576800px;}
.ws50{word-spacing:-28.570500px;}
.ws73{word-spacing:-28.569600px;}
.wsae{word-spacing:-28.080000px;}
.ws2c{word-spacing:-28.076400px;}
.wsed{word-spacing:-28.074600px;}
.wse7{word-spacing:-27.861300px;}
.wsd6{word-spacing:-27.859200px;}
.wsef{word-spacing:-27.144000px;}
.wsaa{word-spacing:-27.127800px;}
.ws69{word-spacing:-27.125400px;}
.ws46{word-spacing:-27.124200px;}
.wsb9{word-spacing:-26.416800px;}
.wsb1{word-spacing:-26.415600px;}
.ws94{word-spacing:-25.920000px;}
.wsc9{word-spacing:-25.700100px;}
.ws82{word-spacing:-25.687800px;}
.ws54{word-spacing:-25.484400px;}
.ws93{word-spacing:-25.196400px;}
.wsca{word-spacing:-24.983100px;}
.ws1b{word-spacing:-24.480000px;}
.wsf{word-spacing:-24.467100px;}
.ws10{word-spacing:-24.040800px;}
.ws14{word-spacing:-23.766000px;}
.ws7e{word-spacing:-23.754600px;}
.ws7d{word-spacing:-23.539200px;}
.ws12{word-spacing:-23.535000px;}
.ws15{word-spacing:-23.164500px;}
.ws70{word-spacing:-22.813200px;}
.ws6c{word-spacing:-22.812000px;}
.ws75{word-spacing:-22.320000px;}
.wsba{word-spacing:-22.318200px;}
.wsc3{word-spacing:-22.104000px;}
.wsa9{word-spacing:-22.102200px;}
.ws31{word-spacing:-22.096800px;}
.wsd0{word-spacing:-22.095000px;}
.wsb2{word-spacing:-21.166800px;}
.wsd8{word-spacing:-20.880000px;}
.ws7c{word-spacing:-20.160000px;}
.ws9e{word-spacing:-19.420200px;}
.wsbb{word-spacing:-19.230000px;}
.wsac{word-spacing:-19.218000px;}
.ws6f{word-spacing:-19.209600px;}
.ws2b{word-spacing:-18.718200px;}
.wsd3{word-spacing:-18.500100px;}
.wsd4{word-spacing:-18.498600px;}
.ws2a{word-spacing:-18.495600px;}
.ws7{word-spacing:-18.472500px;}
.ws33{word-spacing:-18.276300px;}
.ws34{word-spacing:-18.270900px;}
.wsa0{word-spacing:-17.790000px;}
.ws64{word-spacing:-17.275500px;}
.ws40{word-spacing:-17.266500px;}
.wsec{word-spacing:-17.060400px;}
.ws72{word-spacing:-17.047800px;}
.wsd9{word-spacing:-16.837800px;}
.wsbd{word-spacing:-16.344000px;}
.wsdb{word-spacing:-16.335000px;}
.wsdc{word-spacing:-16.127700px;}
.wsdd{word-spacing:-15.618600px;}
.ws98{word-spacing:-15.615000px;}
.ws6a{word-spacing:-15.578400px;}
.wse2{word-spacing:-15.106500px;}
.ws83{word-spacing:-14.188200px;}
.ws85{word-spacing:-13.966800px;}
.ws95{word-spacing:-13.235400px;}
.wsc0{word-spacing:-12.960000px;}
.ws74{word-spacing:-12.733200px;}
.wsbf{word-spacing:-12.521700px;}
.wsb8{word-spacing:-11.795400px;}
.wseb{word-spacing:-11.304000px;}
.ws2d{word-spacing:-10.581000px;}
.wsc7{word-spacing:-10.576800px;}
.wscc{word-spacing:-10.067400px;}
.wsa2{word-spacing:-9.860400px;}
.wsab{word-spacing:-8.926800px;}
.ws16{word-spacing:-7.906800px;}
.ws9b{word-spacing:-7.678200px;}
.wsb7{word-spacing:-6.474600px;}
.ws3d{word-spacing:-6.270000px;}
.wsaf{word-spacing:-6.037800px;}
.ws6e{word-spacing:-2.869800px;}
.wsa1{word-spacing:-1.713000px;}
.ws41{word-spacing:-0.493200px;}
.wsd7{word-spacing:0.000000px;}
.ws17{word-spacing:1.085400px;}
.ws25{word-spacing:1.656000px;}
.ws51{word-spacing:1.887300px;}
.ws55{word-spacing:4.041900px;}
.ws65{word-spacing:5.261400px;}
.ws52{word-spacing:5.977200px;}
.ws38{word-spacing:8.644500px;}
.ws5d{word-spacing:9.081900px;}
.ws3b{word-spacing:10.309500px;}
.wsbc{word-spacing:11.028600px;}
.ws90{word-spacing:11.530800px;}
.ws91{word-spacing:11.536800px;}
.ws9c{word-spacing:14.616000px;}
.ws49{word-spacing:17.307900px;}
.ws3e{word-spacing:21.091800px;}
.ws78{word-spacing:23.994000px;}
.ws4f{word-spacing:26.653500px;}
.ws48{word-spacing:28.299600px;}
.ws58{word-spacing:37.157400px;}
.ws4d{word-spacing:38.385900px;}
.ws4c{word-spacing:44.863800px;}
.ws42{word-spacing:59.274000px;}
.ws5e{word-spacing:65.035800px;}
.ws57{word-spacing:65.740800px;}
.ws8e{word-spacing:66.465900px;}
.ws8f{word-spacing:67.185900px;}
.ws5a{word-spacing:74.391600px;}
.ws53{word-spacing:74.898900px;}
.wse6{word-spacing:83.345700px;}
.ws92{word-spacing:106.569900px;}
.ws60{word-spacing:152.859600px;}
.ws59{word-spacing:175.682700px;}
.ws3a{word-spacing:218.396700px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._25{width:17.028000px;}
._4{width:18.775800px;}
._13{width:19.912200px;}
._26{width:21.271800px;}
._9{width:22.419600px;}
._6{width:23.495400px;}
._b{width:24.820800px;}
._1e{width:25.837200px;}
._a{width:26.940000px;}
._1c{width:28.129200px;}
._d{width:29.221200px;}
._11{width:30.865200px;}
._1b{width:31.910400px;}
._5{width:33.467100px;}
._f{width:34.893600px;}
._1{width:36.000000px;}
._1a{width:37.168800px;}
._c{width:38.367600px;}
._18{width:40.176000px;}
._16{width:42.232800px;}
._1d{width:43.342800px;}
._1f{width:44.647800px;}
._23{width:46.129200px;}
._e{width:47.229000px;}
._21{width:48.316800px;}
._7{width:49.382400px;}
._22{width:51.141600px;}
._17{width:54.617400px;}
._20{width:55.715400px;}
._8{width:58.242600px;}
._12{width:63.360000px;}
._15{width:66.090000px;}
._24{width:68.620200px;}
._10{width:76.877700px;}
._19{width:81.985200px;}
._14{width:94.435200px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:3.855000px;}
.y38{bottom:3.870000px;}
.y50{bottom:3.886500px;}
.y56{bottom:3.915000px;}
.y5c{bottom:3.946500px;}
.y46{bottom:4.261500px;}
.y7{bottom:4.471500px;}
.y95{bottom:4.636500px;}
.y99{bottom:4.696500px;}
.y3f{bottom:4.755000px;}
.y62{bottom:4.800000px;}
.y8c{bottom:8.865000px;}
.y8d{bottom:9.015000px;}
.y91{bottom:9.090000px;}
.y4a{bottom:14.296500px;}
.y36{bottom:14.311500px;}
.y54{bottom:14.355000px;}
.y5a{bottom:14.386500px;}
.y8a{bottom:14.415000px;}
.y43{bottom:14.521500px;}
.y93{bottom:14.895000px;}
.y3c{bottom:15.015000px;}
.y97{bottom:15.136500px;}
.y60{bottom:15.240000px;}
.y32{bottom:17.955000px;}
.y8f{bottom:19.350000px;}
.y48{bottom:24.555000px;}
.y34{bottom:24.571500px;}
.y4e{bottom:24.586500px;}
.y52{bottom:24.615000px;}
.y58{bottom:24.646500px;}
.y41{bottom:24.780000px;}
.y45{bottom:24.961500px;}
.y3a{bottom:25.275000px;}
.y94{bottom:25.336500px;}
.y98{bottom:25.396500px;}
.y3e{bottom:25.455000px;}
.y5e{bottom:25.500000px;}
.y30{bottom:28.215000px;}
.y90{bottom:29.790000px;}
.y53{bottom:34.875000px;}
.y59{bottom:34.905000px;}
.y89{bottom:34.936500px;}
.y49{bottom:34.996500px;}
.y35{bottom:35.011500px;}
.y42{bottom:35.221500px;}
.y3b{bottom:35.715000px;}
.y5f{bottom:35.761500px;}
.y31{bottom:38.475000px;}
.y5b{bottom:45.165000px;}
.y4b{bottom:45.255000px;}
.y37{bottom:45.270000px;}
.y4f{bottom:45.286500px;}
.y55{bottom:45.315000px;}
.y44{bottom:45.480000px;}
.y3d{bottom:45.975000px;}
.y61{bottom:46.021500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.yb3{bottom:103.396500px;}
.yb2{bottom:124.096500px;}
.y69{bottom:126.436500px;}
.y2b{bottom:141.736500px;}
.yca{bottom:143.175000px;}
.yb1{bottom:144.796500px;}
.y96{bottom:145.500000px;}
.y68{bottom:147.136500px;}
.y2a{bottom:162.436500px;}
.yc9{bottom:163.875000px;}
.yb0{bottom:165.496500px;}
.y67{bottom:167.836500px;}
.y29{bottom:183.136500px;}
.yaf{bottom:186.196500px;}
.y92{bottom:188.400000px;}
.y66{bottom:188.536500px;}
.yc8{bottom:205.636500px;}
.yae{bottom:206.896500px;}
.y65{bottom:209.236500px;}
.y28{bottom:224.896500px;}
.yc7{bottom:226.336500px;}
.yad{bottom:227.596500px;}
.y64{bottom:229.936500px;}
.y8e{bottom:231.825000px;}
.y27{bottom:245.596500px;}
.yac{bottom:248.295000px;}
.y26{bottom:266.295000px;}
.yc6{bottom:268.096500px;}
.y63{bottom:271.515000px;}
.y88{bottom:284.100000px;}
.y25{bottom:286.996500px;}
.yab{bottom:289.875000px;}
.y24{bottom:307.696500px;}
.y5d{bottom:309.375000px;}
.yc5{bottom:309.675000px;}
.y8b{bottom:315.750000px;}
.y23{bottom:328.396500px;}
.yc4{bottom:330.375000px;}
.yaa{bottom:331.636500px;}
.y22{bottom:349.096500px;}
.ye5{bottom:352.336500px;}
.y87{bottom:371.775000px;}
.yc3{bottom:372.136500px;}
.ye4{bottom:373.036500px;}
.y57{bottom:373.050000px;}
.y21{bottom:390.675000px;}
.ye3{bottom:396.436500px;}
.y20{bottom:411.375000px;}
.y86{bottom:413.536500px;}
.yc2{bottom:413.896500px;}
.ye2{bottom:417.136500px;}
.yc1{bottom:434.596500px;}
.y51{bottom:435.900000px;}
.ye1{bottom:440.715000px;}
.y1f{bottom:453.136500px;}
.y85{bottom:455.295000px;}
.ye0{bottom:461.415000px;}
.y1e{bottom:473.836500px;}
.yc0{bottom:475.996500px;}
.ydf{bottom:484.815000px;}
.y1d{bottom:494.536500px;}
.ybf{bottom:496.695000px;}
.y84{bottom:496.875000px;}
.y4d{bottom:498.750000px;}
.yde{bottom:505.515000px;}
.ybe{bottom:517.396500px;}
.y83{bottom:517.575000px;}
.ydd{bottom:526.215000px;}
.y1c{bottom:536.296500px;}
.ybd{bottom:538.096500px;}
.y82{bottom:538.275000px;}
.ydc{bottom:549.796500px;}
.y1b{bottom:556.996500px;}
.ybc{bottom:558.796500px;}
.y81{bottom:558.975000px;}
.y47{bottom:561.600000px;}
.ydb{bottom:570.496500px;}
.ybb{bottom:579.496500px;}
.y80{bottom:579.675000px;}
.yda{bottom:591.195000px;}
.y1a{bottom:598.575000px;}
.yba{bottom:600.195000px;}
.y7f{bottom:600.375000px;}
.yd9{bottom:614.596500px;}
.y19{bottom:619.275000px;}
.yb9{bottom:620.896500px;}
.y7e{bottom:621.075000px;}
.y40{bottom:624.375000px;}
.yd8{bottom:635.295000px;}
.y18{bottom:639.975000px;}
.ya9{bottom:640.875000px;}
.yb8{bottom:641.596500px;}
.y7d{bottom:641.775000px;}
.yd7{bottom:656.175000px;}
.y17{bottom:660.675000px;}
.ya8{bottom:661.575000px;}
.yb7{bottom:662.295000px;}
.y7c{bottom:662.475000px;}
.yd6{bottom:679.575000px;}
.ya7{bottom:682.275000px;}
.yb6{bottom:682.996500px;}
.y7b{bottom:683.175000px;}
.y39{bottom:687.600000px;}
.yd5{bottom:700.275000px;}
.y16{bottom:702.436500px;}
.ya6{bottom:702.975000px;}
.yb5{bottom:703.695000px;}
.y7a{bottom:703.875000px;}
.yd4{bottom:720.975000px;}
.y15{bottom:723.136500px;}
.ya5{bottom:723.675000px;}
.yb4{bottom:724.396500px;}
.y79{bottom:724.575000px;}
.y14{bottom:743.836500px;}
.ya4{bottom:744.375000px;}
.y78{bottom:745.275000px;}
.y33{bottom:752.025000px;}
.y13{bottom:764.536500px;}
.ya3{bottom:765.075000px;}
.yd3{bottom:765.436500px;}
.y77{bottom:765.975000px;}
.ya2{bottom:785.775000px;}
.y76{bottom:786.675000px;}
.y12{bottom:806.295000px;}
.ya1{bottom:806.475000px;}
.yd2{bottom:807.195000px;}
.y75{bottom:807.375000px;}
.y2f{bottom:814.800000px;}
.y11{bottom:826.996500px;}
.ya0{bottom:827.175000px;}
.yd1{bottom:827.895000px;}
.y74{bottom:828.075000px;}
.y10{bottom:847.695000px;}
.yd0{bottom:848.596500px;}
.y73{bottom:848.775000px;}
.yf{bottom:868.395000px;}
.y9f{bottom:868.936500px;}
.ycf{bottom:869.295000px;}
.y72{bottom:869.475000px;}
.y9e{bottom:889.636500px;}
.yce{bottom:889.995000px;}
.y71{bottom:890.175000px;}
.y2e{bottom:909.795000px;}
.ye{bottom:909.975000px;}
.y9d{bottom:910.336500px;}
.ycd{bottom:910.695000px;}
.y70{bottom:910.875000px;}
.y9c{bottom:931.036500px;}
.ycc{bottom:931.395000px;}
.y6f{bottom:931.575000px;}
.y2d{bottom:951.375000px;}
.yd{bottom:951.736500px;}
.ycb{bottom:952.095000px;}
.y6e{bottom:952.275000px;}
.y9b{bottom:972.795000px;}
.y6d{bottom:972.975000px;}
.y2c{bottom:993.136500px;}
.yc{bottom:993.495000px;}
.y6c{bottom:993.675000px;}
.yb{bottom:1014.195000px;}
.y6b{bottom:1014.375000px;}
.y9a{bottom:1034.895000px;}
.y6a{bottom:1035.075000px;}
.ya{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.hc{height:31.200000px;}
.hd{height:31.650000px;}
.h10{height:42.900000px;}
.hf{height:43.425000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.he{height:52.275000px;}
.h11{height:58.573682px;}
.h7{height:62.775000px;}
.hb{height:62.850000px;}
.h9{height:63.225000px;}
.ha{height:63.600000px;}
.h8{height:64.350000px;}
.h6{height:70.050000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w3{width:62.850000px;}
.w4{width:107.025000px;}
.w5{width:127.650000px;}
.w8{width:176.775000px;}
.wa{width:176.850000px;}
.wb{width:177.000000px;}
.w7{width:177.375000px;}
.w6{width:226.275000px;}
.w9{width:530.550000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.145000px;}
.xc{left:119.475000px;}
.x1{left:127.620000px;}
.xb{left:132.120000px;}
.x4{left:160.738500px;}
.x5{left:182.880000px;}
.xe{left:289.200000px;}
.x11{left:296.175000px;}
.x6{left:337.320000px;}
.xf{left:416.775000px;}
.x8{left:423.360000px;}
.x3{left:465.825000px;}
.x12{left:472.950000px;}
.x7{left:539.638500px;}
.xa{left:578.700000px;}
.x9{left:620.820000px;}
.x10{left:642.975000px;}
.x13{left:649.725000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:16.453333pt;}
.ls4{letter-spacing:27.322667pt;}
.ls3{letter-spacing:27.973333pt;}
.ls5{letter-spacing:33.728000pt;}
.ls1{letter-spacing:38.848000pt;}
.ws1f{word-spacing:-49.728000pt;}
.ws89{word-spacing:-34.548800pt;}
.ws6{word-spacing:-34.362400pt;}
.ws66{word-spacing:-34.361600pt;}
.ws26{word-spacing:-34.361333pt;}
.ws1d{word-spacing:-34.360800pt;}
.wsd{word-spacing:-34.358400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws29{word-spacing:-34.350667pt;}
.ws18{word-spacing:-34.301600pt;}
.ws22{word-spacing:-34.295200pt;}
.ws7f{word-spacing:-34.172800pt;}
.ws62{word-spacing:-34.169600pt;}
.ws86{word-spacing:-34.168533pt;}
.ws7a{word-spacing:-34.168000pt;}
.ws5b{word-spacing:-34.167733pt;}
.ws6b{word-spacing:-34.164800pt;}
.wsa4{word-spacing:-34.161600pt;}
.ws35{word-spacing:-34.160800pt;}
.wsa{word-spacing:-34.158400pt;}
.ws87{word-spacing:-34.156800pt;}
.ws76{word-spacing:-34.146667pt;}
.ws3{word-spacing:-34.110400pt;}
.ws5c{word-spacing:-34.108000pt;}
.ws8a{word-spacing:-34.107200pt;}
.ws36{word-spacing:-34.103733pt;}
.wsb{word-spacing:-34.103200pt;}
.wse5{word-spacing:-34.097600pt;}
.wsa5{word-spacing:-34.094400pt;}
.ws9a{word-spacing:-33.925333pt;}
.ws37{word-spacing:-33.914400pt;}
.wsc8{word-spacing:-33.913600pt;}
.ws4a{word-spacing:-33.913333pt;}
.ws0{word-spacing:-33.728000pt;}
.wsd1{word-spacing:-33.726400pt;}
.ws8b{word-spacing:-33.725600pt;}
.ws13{word-spacing:-33.724800pt;}
.ws4{word-spacing:-33.723200pt;}
.ws3c{word-spacing:-33.720000pt;}
.ws2{word-spacing:-33.716800pt;}
.wsda{word-spacing:-33.708800pt;}
.wsc{word-spacing:-33.655200pt;}
.ws9{word-spacing:-33.649867pt;}
.wsd2{word-spacing:-33.541333pt;}
.ws61{word-spacing:-33.538133pt;}
.ws3f{word-spacing:-33.534400pt;}
.ws6d{word-spacing:-33.528000pt;}
.wsce{word-spacing:-33.527200pt;}
.ws4e{word-spacing:-33.526933pt;}
.ws4b{word-spacing:-33.526400pt;}
.ws8d{word-spacing:-33.526133pt;}
.wse4{word-spacing:-33.523200pt;}
.wsea{word-spacing:-33.521600pt;}
.ws8c{word-spacing:-33.520800pt;}
.wsbe{word-spacing:-33.520000pt;}
.wse{word-spacing:-33.519200pt;}
.wsd5{word-spacing:-33.518400pt;}
.ws32{word-spacing:-33.508800pt;}
.wse8{word-spacing:-33.280000pt;}
.wsc5{word-spacing:-33.275200pt;}
.ws47{word-spacing:-33.273600pt;}
.ws9d{word-spacing:-33.257600pt;}
.wsc6{word-spacing:-33.080000pt;}
.ws43{word-spacing:-33.078400pt;}
.wsb5{word-spacing:-33.073600pt;}
.wscf{word-spacing:-32.890400pt;}
.wsc1{word-spacing:-32.889600pt;}
.ws63{word-spacing:-32.881600pt;}
.wsc4{word-spacing:-32.878400pt;}
.ws67{word-spacing:-32.638133pt;}
.wsdf{word-spacing:-32.635200pt;}
.ws39{word-spacing:-32.628800pt;}
.ws44{word-spacing:-32.626400pt;}
.ws68{word-spacing:-32.444800pt;}
.ws56{word-spacing:-32.441600pt;}
.ws81{word-spacing:-31.808000pt;}
.wscd{word-spacing:-31.593600pt;}
.ws1e{word-spacing:-31.352800pt;}
.ws19{word-spacing:-31.342400pt;}
.wsa6{word-spacing:-31.165600pt;}
.ws21{word-spacing:-31.165333pt;}
.ws1a{word-spacing:-31.106133pt;}
.ws97{word-spacing:-30.976000pt;}
.ws2e{word-spacing:-30.967467pt;}
.wse3{word-spacing:-30.716800pt;}
.ws20{word-spacing:-30.713600pt;}
.wsb6{word-spacing:-30.523733pt;}
.wsad{word-spacing:-30.328000pt;}
.ws11{word-spacing:-30.072000pt;}
.ws71{word-spacing:-29.888000pt;}
.ws96{word-spacing:-29.886400pt;}
.wsb4{word-spacing:-29.885600pt;}
.ws8{word-spacing:-29.820267pt;}
.ws23{word-spacing:-29.440000pt;}
.wse0{word-spacing:-29.436800pt;}
.ws45{word-spacing:-29.434667pt;}
.ws24{word-spacing:-29.248000pt;}
.wscb{word-spacing:-29.240000pt;}
.ws28{word-spacing:-29.044800pt;}
.wse1{word-spacing:-28.796800pt;}
.ws27{word-spacing:-28.794133pt;}
.wsa8{word-spacing:-28.606400pt;}
.ws77{word-spacing:-28.604800pt;}
.wsc2{word-spacing:-28.590400pt;}
.wsa7{word-spacing:-28.406400pt;}
.wsb0{word-spacing:-28.403200pt;}
.ws99{word-spacing:-28.396800pt;}
.ws88{word-spacing:-28.342400pt;}
.wsa3{word-spacing:-28.155200pt;}
.wsb3{word-spacing:-28.148800pt;}
.wse9{word-spacing:-27.965600pt;}
.ws2f{word-spacing:-27.511200pt;}
.ws7b{word-spacing:-27.320000pt;}
.wsee{word-spacing:-27.314133pt;}
.ws30{word-spacing:-26.858133pt;}
.ws5f{word-spacing:-26.688000pt;}
.ws84{word-spacing:-26.686933pt;}
.ws1c{word-spacing:-26.684800pt;}
.ws79{word-spacing:-26.488000pt;}
.ws9f{word-spacing:-25.413333pt;}
.ws80{word-spacing:-25.406933pt;}
.wsde{word-spacing:-25.401600pt;}
.ws50{word-spacing:-25.396000pt;}
.ws73{word-spacing:-25.395200pt;}
.wsae{word-spacing:-24.960000pt;}
.ws2c{word-spacing:-24.956800pt;}
.wsed{word-spacing:-24.955200pt;}
.wse7{word-spacing:-24.765600pt;}
.wsd6{word-spacing:-24.763733pt;}
.wsef{word-spacing:-24.128000pt;}
.wsaa{word-spacing:-24.113600pt;}
.ws69{word-spacing:-24.111467pt;}
.ws46{word-spacing:-24.110400pt;}
.wsb9{word-spacing:-23.481600pt;}
.wsb1{word-spacing:-23.480533pt;}
.ws94{word-spacing:-23.040000pt;}
.wsc9{word-spacing:-22.844533pt;}
.ws82{word-spacing:-22.833600pt;}
.ws54{word-spacing:-22.652800pt;}
.ws93{word-spacing:-22.396800pt;}
.wsca{word-spacing:-22.207200pt;}
.ws1b{word-spacing:-21.760000pt;}
.wsf{word-spacing:-21.748533pt;}
.ws10{word-spacing:-21.369600pt;}
.ws14{word-spacing:-21.125333pt;}
.ws7e{word-spacing:-21.115200pt;}
.ws7d{word-spacing:-20.923733pt;}
.ws12{word-spacing:-20.920000pt;}
.ws15{word-spacing:-20.590667pt;}
.ws70{word-spacing:-20.278400pt;}
.ws6c{word-spacing:-20.277333pt;}
.ws75{word-spacing:-19.840000pt;}
.wsba{word-spacing:-19.838400pt;}
.wsc3{word-spacing:-19.648000pt;}
.wsa9{word-spacing:-19.646400pt;}
.ws31{word-spacing:-19.641600pt;}
.wsd0{word-spacing:-19.640000pt;}
.wsb2{word-spacing:-18.814933pt;}
.wsd8{word-spacing:-18.560000pt;}
.ws7c{word-spacing:-17.920000pt;}
.ws9e{word-spacing:-17.262400pt;}
.wsbb{word-spacing:-17.093333pt;}
.wsac{word-spacing:-17.082667pt;}
.ws6f{word-spacing:-17.075200pt;}
.ws2b{word-spacing:-16.638400pt;}
.wsd3{word-spacing:-16.444533pt;}
.wsd4{word-spacing:-16.443200pt;}
.ws2a{word-spacing:-16.440533pt;}
.ws7{word-spacing:-16.420000pt;}
.ws33{word-spacing:-16.245600pt;}
.ws34{word-spacing:-16.240800pt;}
.wsa0{word-spacing:-15.813333pt;}
.ws64{word-spacing:-15.356000pt;}
.ws40{word-spacing:-15.348000pt;}
.wsec{word-spacing:-15.164800pt;}
.ws72{word-spacing:-15.153600pt;}
.wsd9{word-spacing:-14.966933pt;}
.wsbd{word-spacing:-14.528000pt;}
.wsdb{word-spacing:-14.520000pt;}
.wsdc{word-spacing:-14.335733pt;}
.wsdd{word-spacing:-13.883200pt;}
.ws98{word-spacing:-13.880000pt;}
.ws6a{word-spacing:-13.847467pt;}
.wse2{word-spacing:-13.428000pt;}
.ws83{word-spacing:-12.611733pt;}
.ws85{word-spacing:-12.414933pt;}
.ws95{word-spacing:-11.764800pt;}
.wsc0{word-spacing:-11.520000pt;}
.ws74{word-spacing:-11.318400pt;}
.wsbf{word-spacing:-11.130400pt;}
.wsb8{word-spacing:-10.484800pt;}
.wseb{word-spacing:-10.048000pt;}
.ws2d{word-spacing:-9.405333pt;}
.wsc7{word-spacing:-9.401600pt;}
.wscc{word-spacing:-8.948800pt;}
.wsa2{word-spacing:-8.764800pt;}
.wsab{word-spacing:-7.934933pt;}
.ws16{word-spacing:-7.028267pt;}
.ws9b{word-spacing:-6.825067pt;}
.wsb7{word-spacing:-5.755200pt;}
.ws3d{word-spacing:-5.573333pt;}
.wsaf{word-spacing:-5.366933pt;}
.ws6e{word-spacing:-2.550933pt;}
.wsa1{word-spacing:-1.522667pt;}
.ws41{word-spacing:-0.438400pt;}
.wsd7{word-spacing:0.000000pt;}
.ws17{word-spacing:0.964800pt;}
.ws25{word-spacing:1.472000pt;}
.ws51{word-spacing:1.677600pt;}
.ws55{word-spacing:3.592800pt;}
.ws65{word-spacing:4.676800pt;}
.ws52{word-spacing:5.313067pt;}
.ws38{word-spacing:7.684000pt;}
.ws5d{word-spacing:8.072800pt;}
.ws3b{word-spacing:9.164000pt;}
.wsbc{word-spacing:9.803200pt;}
.ws90{word-spacing:10.249600pt;}
.ws91{word-spacing:10.254933pt;}
.ws9c{word-spacing:12.992000pt;}
.ws49{word-spacing:15.384800pt;}
.ws3e{word-spacing:18.748267pt;}
.ws78{word-spacing:21.328000pt;}
.ws4f{word-spacing:23.692000pt;}
.ws48{word-spacing:25.155200pt;}
.ws58{word-spacing:33.028800pt;}
.ws4d{word-spacing:34.120800pt;}
.ws4c{word-spacing:39.878933pt;}
.ws42{word-spacing:52.688000pt;}
.ws5e{word-spacing:57.809600pt;}
.ws57{word-spacing:58.436267pt;}
.ws8e{word-spacing:59.080800pt;}
.ws8f{word-spacing:59.720800pt;}
.ws5a{word-spacing:66.125867pt;}
.ws53{word-spacing:66.576800pt;}
.wse6{word-spacing:74.085067pt;}
.ws92{word-spacing:94.728800pt;}
.ws60{word-spacing:135.875200pt;}
.ws59{word-spacing:156.162400pt;}
.ws3a{word-spacing:194.130400pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._25{width:15.136000pt;}
._4{width:16.689600pt;}
._13{width:17.699733pt;}
._26{width:18.908267pt;}
._9{width:19.928533pt;}
._6{width:20.884800pt;}
._b{width:22.062933pt;}
._1e{width:22.966400pt;}
._a{width:23.946667pt;}
._1c{width:25.003733pt;}
._d{width:25.974400pt;}
._11{width:27.435733pt;}
._1b{width:28.364800pt;}
._5{width:29.748533pt;}
._f{width:31.016533pt;}
._1{width:32.000000pt;}
._1a{width:33.038933pt;}
._c{width:34.104533pt;}
._18{width:35.712000pt;}
._16{width:37.540267pt;}
._1d{width:38.526933pt;}
._1f{width:39.686933pt;}
._23{width:41.003733pt;}
._e{width:41.981333pt;}
._21{width:42.948267pt;}
._7{width:43.895467pt;}
._22{width:45.459200pt;}
._17{width:48.548800pt;}
._20{width:49.524800pt;}
._8{width:51.771200pt;}
._12{width:56.320000pt;}
._15{width:58.746667pt;}
._24{width:60.995733pt;}
._10{width:68.335733pt;}
._19{width:72.875733pt;}
._14{width:83.942400pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:3.426667pt;}
.y38{bottom:3.440000pt;}
.y50{bottom:3.454667pt;}
.y56{bottom:3.480000pt;}
.y5c{bottom:3.508000pt;}
.y46{bottom:3.788000pt;}
.y7{bottom:3.974667pt;}
.y95{bottom:4.121333pt;}
.y99{bottom:4.174667pt;}
.y3f{bottom:4.226667pt;}
.y62{bottom:4.266667pt;}
.y8c{bottom:7.880000pt;}
.y8d{bottom:8.013333pt;}
.y91{bottom:8.080000pt;}
.y4a{bottom:12.708000pt;}
.y36{bottom:12.721333pt;}
.y54{bottom:12.760000pt;}
.y5a{bottom:12.788000pt;}
.y8a{bottom:12.813333pt;}
.y43{bottom:12.908000pt;}
.y93{bottom:13.240000pt;}
.y3c{bottom:13.346667pt;}
.y97{bottom:13.454667pt;}
.y60{bottom:13.546667pt;}
.y32{bottom:15.960000pt;}
.y8f{bottom:17.200000pt;}
.y48{bottom:21.826667pt;}
.y34{bottom:21.841333pt;}
.y4e{bottom:21.854667pt;}
.y52{bottom:21.880000pt;}
.y58{bottom:21.908000pt;}
.y41{bottom:22.026667pt;}
.y45{bottom:22.188000pt;}
.y3a{bottom:22.466667pt;}
.y94{bottom:22.521333pt;}
.y98{bottom:22.574667pt;}
.y3e{bottom:22.626667pt;}
.y5e{bottom:22.666667pt;}
.y30{bottom:25.080000pt;}
.y90{bottom:26.480000pt;}
.y53{bottom:31.000000pt;}
.y59{bottom:31.026667pt;}
.y89{bottom:31.054667pt;}
.y49{bottom:31.108000pt;}
.y35{bottom:31.121333pt;}
.y42{bottom:31.308000pt;}
.y3b{bottom:31.746667pt;}
.y5f{bottom:31.788000pt;}
.y31{bottom:34.200000pt;}
.y5b{bottom:40.146667pt;}
.y4b{bottom:40.226667pt;}
.y37{bottom:40.240000pt;}
.y4f{bottom:40.254667pt;}
.y55{bottom:40.280000pt;}
.y44{bottom:40.426667pt;}
.y3d{bottom:40.866667pt;}
.y61{bottom:40.908000pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.yb3{bottom:91.908000pt;}
.yb2{bottom:110.308000pt;}
.y69{bottom:112.388000pt;}
.y2b{bottom:125.988000pt;}
.yca{bottom:127.266667pt;}
.yb1{bottom:128.708000pt;}
.y96{bottom:129.333333pt;}
.y68{bottom:130.788000pt;}
.y2a{bottom:144.388000pt;}
.yc9{bottom:145.666667pt;}
.yb0{bottom:147.108000pt;}
.y67{bottom:149.188000pt;}
.y29{bottom:162.788000pt;}
.yaf{bottom:165.508000pt;}
.y92{bottom:167.466667pt;}
.y66{bottom:167.588000pt;}
.yc8{bottom:182.788000pt;}
.yae{bottom:183.908000pt;}
.y65{bottom:185.988000pt;}
.y28{bottom:199.908000pt;}
.yc7{bottom:201.188000pt;}
.yad{bottom:202.308000pt;}
.y64{bottom:204.388000pt;}
.y8e{bottom:206.066667pt;}
.y27{bottom:218.308000pt;}
.yac{bottom:220.706667pt;}
.y26{bottom:236.706667pt;}
.yc6{bottom:238.308000pt;}
.y63{bottom:241.346667pt;}
.y88{bottom:252.533333pt;}
.y25{bottom:255.108000pt;}
.yab{bottom:257.666667pt;}
.y24{bottom:273.508000pt;}
.y5d{bottom:275.000000pt;}
.yc5{bottom:275.266667pt;}
.y8b{bottom:280.666667pt;}
.y23{bottom:291.908000pt;}
.yc4{bottom:293.666667pt;}
.yaa{bottom:294.788000pt;}
.y22{bottom:310.308000pt;}
.ye5{bottom:313.188000pt;}
.y87{bottom:330.466667pt;}
.yc3{bottom:330.788000pt;}
.ye4{bottom:331.588000pt;}
.y57{bottom:331.600000pt;}
.y21{bottom:347.266667pt;}
.ye3{bottom:352.388000pt;}
.y20{bottom:365.666667pt;}
.y86{bottom:367.588000pt;}
.yc2{bottom:367.908000pt;}
.ye2{bottom:370.788000pt;}
.yc1{bottom:386.308000pt;}
.y51{bottom:387.466667pt;}
.ye1{bottom:391.746667pt;}
.y1f{bottom:402.788000pt;}
.y85{bottom:404.706667pt;}
.ye0{bottom:410.146667pt;}
.y1e{bottom:421.188000pt;}
.yc0{bottom:423.108000pt;}
.ydf{bottom:430.946667pt;}
.y1d{bottom:439.588000pt;}
.ybf{bottom:441.506667pt;}
.y84{bottom:441.666667pt;}
.y4d{bottom:443.333333pt;}
.yde{bottom:449.346667pt;}
.ybe{bottom:459.908000pt;}
.y83{bottom:460.066667pt;}
.ydd{bottom:467.746667pt;}
.y1c{bottom:476.708000pt;}
.ybd{bottom:478.308000pt;}
.y82{bottom:478.466667pt;}
.ydc{bottom:488.708000pt;}
.y1b{bottom:495.108000pt;}
.ybc{bottom:496.708000pt;}
.y81{bottom:496.866667pt;}
.y47{bottom:499.200000pt;}
.ydb{bottom:507.108000pt;}
.ybb{bottom:515.108000pt;}
.y80{bottom:515.266667pt;}
.yda{bottom:525.506667pt;}
.y1a{bottom:532.066667pt;}
.yba{bottom:533.506667pt;}
.y7f{bottom:533.666667pt;}
.yd9{bottom:546.308000pt;}
.y19{bottom:550.466667pt;}
.yb9{bottom:551.908000pt;}
.y7e{bottom:552.066667pt;}
.y40{bottom:555.000000pt;}
.yd8{bottom:564.706667pt;}
.y18{bottom:568.866667pt;}
.ya9{bottom:569.666667pt;}
.yb8{bottom:570.308000pt;}
.y7d{bottom:570.466667pt;}
.yd7{bottom:583.266667pt;}
.y17{bottom:587.266667pt;}
.ya8{bottom:588.066667pt;}
.yb7{bottom:588.706667pt;}
.y7c{bottom:588.866667pt;}
.yd6{bottom:604.066667pt;}
.ya7{bottom:606.466667pt;}
.yb6{bottom:607.108000pt;}
.y7b{bottom:607.266667pt;}
.y39{bottom:611.200000pt;}
.yd5{bottom:622.466667pt;}
.y16{bottom:624.388000pt;}
.ya6{bottom:624.866667pt;}
.yb5{bottom:625.506667pt;}
.y7a{bottom:625.666667pt;}
.yd4{bottom:640.866667pt;}
.y15{bottom:642.788000pt;}
.ya5{bottom:643.266667pt;}
.yb4{bottom:643.908000pt;}
.y79{bottom:644.066667pt;}
.y14{bottom:661.188000pt;}
.ya4{bottom:661.666667pt;}
.y78{bottom:662.466667pt;}
.y33{bottom:668.466667pt;}
.y13{bottom:679.588000pt;}
.ya3{bottom:680.066667pt;}
.yd3{bottom:680.388000pt;}
.y77{bottom:680.866667pt;}
.ya2{bottom:698.466667pt;}
.y76{bottom:699.266667pt;}
.y12{bottom:716.706667pt;}
.ya1{bottom:716.866667pt;}
.yd2{bottom:717.506667pt;}
.y75{bottom:717.666667pt;}
.y2f{bottom:724.266667pt;}
.y11{bottom:735.108000pt;}
.ya0{bottom:735.266667pt;}
.yd1{bottom:735.906667pt;}
.y74{bottom:736.066667pt;}
.y10{bottom:753.506667pt;}
.yd0{bottom:754.308000pt;}
.y73{bottom:754.466667pt;}
.yf{bottom:771.906667pt;}
.y9f{bottom:772.388000pt;}
.ycf{bottom:772.706667pt;}
.y72{bottom:772.866667pt;}
.y9e{bottom:790.788000pt;}
.yce{bottom:791.106667pt;}
.y71{bottom:791.266667pt;}
.y2e{bottom:808.706667pt;}
.ye{bottom:808.866667pt;}
.y9d{bottom:809.188000pt;}
.ycd{bottom:809.506667pt;}
.y70{bottom:809.666667pt;}
.y9c{bottom:827.588000pt;}
.ycc{bottom:827.906667pt;}
.y6f{bottom:828.066667pt;}
.y2d{bottom:845.666667pt;}
.yd{bottom:845.988000pt;}
.ycb{bottom:846.306667pt;}
.y6e{bottom:846.466667pt;}
.y9b{bottom:864.706667pt;}
.y6d{bottom:864.866667pt;}
.y2c{bottom:882.788000pt;}
.yc{bottom:883.106667pt;}
.y6c{bottom:883.266667pt;}
.yb{bottom:901.506667pt;}
.y6b{bottom:901.666667pt;}
.y9a{bottom:919.906667pt;}
.y6a{bottom:920.066667pt;}
.ya{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.hc{height:27.733333pt;}
.hd{height:28.133333pt;}
.h10{height:38.133333pt;}
.hf{height:38.600000pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.he{height:46.466667pt;}
.h11{height:52.065495pt;}
.h7{height:55.800000pt;}
.hb{height:55.866667pt;}
.h9{height:56.200000pt;}
.ha{height:56.533333pt;}
.h8{height:57.200000pt;}
.h6{height:62.266667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w3{width:55.866667pt;}
.w4{width:95.133333pt;}
.w5{width:113.466667pt;}
.w8{width:157.133333pt;}
.wa{width:157.200000pt;}
.wb{width:157.333333pt;}
.w7{width:157.666667pt;}
.w6{width:201.133333pt;}
.w9{width:471.600000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.240000pt;}
.xc{left:106.200000pt;}
.x1{left:113.440000pt;}
.xb{left:117.440000pt;}
.x4{left:142.878667pt;}
.x5{left:162.560000pt;}
.xe{left:257.066667pt;}
.x11{left:263.266667pt;}
.x6{left:299.840000pt;}
.xf{left:370.466667pt;}
.x8{left:376.320000pt;}
.x3{left:414.066667pt;}
.x12{left:420.400000pt;}
.x7{left:479.678667pt;}
.xa{left:514.400000pt;}
.x9{left:551.840000pt;}
.x10{left:571.533333pt;}
.x13{left:577.533333pt;}
.x2{left:649.920000pt;}
}




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