
    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_275dc9e5390560d6ac165197.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_27244ad9ec5d1be7c56e6634.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9d2cf8128b39f0a5c466a299.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.882324;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_21b303d2a9a3be30da1de44c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_c2da74d1895ec9828be711f2.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_54c96401106520ace1315a05.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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;}
.ls1{letter-spacing:104.112000px;}
.ls2{letter-spacing:109.696200px;}
.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;}
}
.ws16{word-spacing:-55.944000px;}
.ws12{word-spacing:-40.536000px;}
.ws5{word-spacing:-38.799000px;}
.ws70{word-spacing:-38.721600px;}
.wsb0{word-spacing:-38.711700px;}
.ws3{word-spacing:-38.657700px;}
.ws4{word-spacing:-38.445900px;}
.ws6{word-spacing:-38.427300px;}
.ws83{word-spacing:-38.145600px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.ws32{word-spacing:-37.930800px;}
.ws6a{word-spacing:-23.451300px;}
.ws58{word-spacing:-23.382900px;}
.wsc1{word-spacing:-23.252400px;}
.wsa5{word-spacing:-23.241600px;}
.ws4d{word-spacing:-23.178300px;}
.ws74{word-spacing:-23.172300px;}
.wsa3{word-spacing:-23.166300px;}
.ws59{word-spacing:-23.166000px;}
.ws77{word-spacing:-23.160600px;}
.ws8c{word-spacing:-23.025000px;}
.wsa8{word-spacing:-23.020500px;}
.ws5d{word-spacing:-22.959000px;}
.ws82{word-spacing:-22.954500px;}
.ws9b{word-spacing:-22.948200px;}
.ws4a{word-spacing:-22.902000px;}
.ws31{word-spacing:-22.896000px;}
.ws5b{word-spacing:-22.894200px;}
.ws4b{word-spacing:-22.890300px;}
.ws26{word-spacing:-22.890000px;}
.wsa2{word-spacing:-22.889700px;}
.ws76{word-spacing:-22.888800px;}
.ws8b{word-spacing:-22.888200px;}
.ws49{word-spacing:-22.887900px;}
.ws7b{word-spacing:-22.887000px;}
.wsaf{word-spacing:-22.884300px;}
.ws9a{word-spacing:-22.882500px;}
.ws87{word-spacing:-22.882200px;}
.wsa0{word-spacing:-22.881900px;}
.ws50{word-spacing:-22.881300px;}
.ws7c{word-spacing:-22.880700px;}
.ws91{word-spacing:-22.752000px;}
.ws8a{word-spacing:-22.748400px;}
.ws5f{word-spacing:-22.743000px;}
.ws75{word-spacing:-22.742700px;}
.ws78{word-spacing:-22.731300px;}
.ws3f{word-spacing:-22.677000px;}
.ws2e{word-spacing:-22.604400px;}
.ws61{word-spacing:-22.599900px;}
.wsb6{word-spacing:-22.538400px;}
.ws15{word-spacing:-22.536000px;}
.wsb1{word-spacing:-22.533900px;}
.ws47{word-spacing:-22.524300px;}
.ws1d{word-spacing:-22.176000px;}
.ws7e{word-spacing:-22.175700px;}
.ws93{word-spacing:-21.442500px;}
.ws48{word-spacing:-21.306300px;}
.ws56{word-spacing:-21.301200px;}
.ws22{word-spacing:-21.240600px;}
.ws2d{word-spacing:-21.102000px;}
.ws53{word-spacing:-20.717100px;}
.ws69{word-spacing:-20.376000px;}
.ws9c{word-spacing:-20.011500px;}
.wsa1{word-spacing:-19.862100px;}
.wsbd{word-spacing:-19.720800px;}
.ws9{word-spacing:-19.662000px;}
.ws46{word-spacing:-19.656000px;}
.ws7f{word-spacing:-19.654200px;}
.ws86{word-spacing:-19.371300px;}
.ws21{word-spacing:-19.288500px;}
.ws2b{word-spacing:-19.286100px;}
.ws66{word-spacing:-19.156200px;}
.wsb3{word-spacing:-18.932400px;}
.ws1c{word-spacing:-18.852300px;}
.wsbc{word-spacing:-18.216000px;}
.wsb7{word-spacing:-18.214200px;}
.wsb8{word-spacing:-18.205200px;}
.ws1f{word-spacing:-17.858400px;}
.ws54{word-spacing:-17.835300px;}
.wsf{word-spacing:-17.496000px;}
.ws18{word-spacing:-17.403300px;}
.wsa{word-spacing:-16.689600px;}
.ws90{word-spacing:-16.414200px;}
.ws8{word-spacing:-16.409700px;}
.ws84{word-spacing:-16.060200px;}
.wsb{word-spacing:-15.336000px;}
.ws6f{word-spacing:-15.324900px;}
.ws5a{word-spacing:-15.249000px;}
.wsaa{word-spacing:-15.108300px;}
.ws81{word-spacing:-14.969700px;}
.ws3d{word-spacing:-14.622000px;}
.wsb9{word-spacing:-14.539200px;}
.ws4f{word-spacing:-14.118000px;}
.ws10{word-spacing:-13.380300px;}
.ws7d{word-spacing:-13.378500px;}
.ws19{word-spacing:-13.176000px;}
.ws8d{word-spacing:-13.167000px;}
.ws7a{word-spacing:-12.090300px;}
.wsb5{word-spacing:-11.943900px;}
.ws28{word-spacing:-11.862300px;}
.ws95{word-spacing:-11.736000px;}
.ws6d{word-spacing:-11.217600px;}
.ws88{word-spacing:-10.650300px;}
.wse{word-spacing:-10.270200px;}
.ws5c{word-spacing:-9.934200px;}
.wsb4{word-spacing:-9.798000px;}
.ws2a{word-spacing:-9.789000px;}
.ws42{word-spacing:-9.576000px;}
.ws73{word-spacing:-9.201600px;}
.wsad{word-spacing:-8.628000px;}
.ws11{word-spacing:-8.485200px;}
.ws89{word-spacing:-8.478300px;}
.ws71{word-spacing:-8.358000px;}
.ws8e{word-spacing:-8.352000px;}
.ws6c{word-spacing:-8.338500px;}
.wsbf{word-spacing:-8.052000px;}
.ws98{word-spacing:-7.762500px;}
.ws2f{word-spacing:-7.760700px;}
.ws7{word-spacing:-6.486000px;}
.ws37{word-spacing:-5.976000px;}
.ws23{word-spacing:-5.756100px;}
.ws92{word-spacing:-5.470200px;}
.ws5e{word-spacing:-5.460300px;}
.ws72{word-spacing:-5.256000px;}
.ws57{word-spacing:-4.536000px;}
.ws99{word-spacing:-3.822000px;}
.ws64{word-spacing:-2.880000px;}
.ws43{word-spacing:-1.572300px;}
.ws40{word-spacing:-1.422000px;}
.ws27{word-spacing:-0.430200px;}
.ws4c{word-spacing:0.000000px;}
.ws51{word-spacing:0.368100px;}
.ws13{word-spacing:1.440000px;}
.ws96{word-spacing:2.029500px;}
.wsa7{word-spacing:3.245700px;}
.ws34{word-spacing:3.755700px;}
.wsac{word-spacing:3.962100px;}
.ws94{word-spacing:4.338000px;}
.wsab{word-spacing:4.831200px;}
.wsb2{word-spacing:5.763600px;}
.wsba{word-spacing:6.264000px;}
.wsa6{word-spacing:6.777900px;}
.ws85{word-spacing:6.984000px;}
.wsbe{word-spacing:7.491900px;}
.ws3c{word-spacing:7.704000px;}
.ws9e{word-spacing:8.221200px;}
.ws3e{word-spacing:8.224800px;}
.ws79{word-spacing:9.140700px;}
.wsd{word-spacing:10.953300px;}
.ws44{word-spacing:10.955700px;}
.ws24{word-spacing:10.964700px;}
.ws35{word-spacing:11.599500px;}
.ws41{word-spacing:11.812500px;}
.ws55{word-spacing:13.331700px;}
.ws29{word-spacing:13.835700px;}
.ws80{word-spacing:14.842800px;}
.wsa9{word-spacing:15.264000px;}
.ws1a{word-spacing:15.624000px;}
.ws30{word-spacing:15.994200px;}
.ws3a{word-spacing:16.123800px;}
.ws14{word-spacing:16.344000px;}
.ws68{word-spacing:17.064000px;}
.ws6e{word-spacing:17.367300px;}
.ws67{word-spacing:17.581500px;}
.ws4e{word-spacing:17.648100px;}
.ws9d{word-spacing:18.149700px;}
.ws52{word-spacing:18.301500px;}
.ws63{word-spacing:19.247400px;}
.ws97{word-spacing:19.595700px;}
.ws33{word-spacing:20.668500px;}
.ws3b{word-spacing:20.889000px;}
.ws1e{word-spacing:21.234000px;}
.ws2c{word-spacing:22.464000px;}
.wsbb{word-spacing:24.341400px;}
.ws17{word-spacing:26.938800px;}
.ws1b{word-spacing:27.528300px;}
.ws25{word-spacing:28.224000px;}
.ws6b{word-spacing:31.261500px;}
.ws38{word-spacing:31.844700px;}
.ws9f{word-spacing:32.703300px;}
.ws8f{word-spacing:34.725300px;}
.wsc0{word-spacing:34.931700px;}
.ws62{word-spacing:36.150300px;}
.ws36{word-spacing:42.264000px;}
.ws20{word-spacing:44.503200px;}
.ws39{word-spacing:46.376700px;}
.wsae{word-spacing:52.857900px;}
.ws65{word-spacing:63.162900px;}
.wsa4{word-spacing:68.185800px;}
.ws45{word-spacing:69.264000px;}
.ws60{word-spacing:80.778000px;}
.wsc{word-spacing:99.227700px;}
.ws1{word-spacing:1037.484900px;}
._4{margin-left:-1.385100px;}
._0{width:1.076400px;}
._2f{width:2.108700px;}
._21{width:17.156700px;}
._1{width:18.968400px;}
._11{width:20.448000px;}
._3{width:21.960000px;}
._e{width:23.089800px;}
._8{width:24.264000px;}
._2{width:25.482300px;}
._1c{width:26.919900px;}
._9{width:28.224000px;}
._a{width:29.393100px;}
._7{width:31.320000px;}
._b{width:33.184800px;}
._17{width:34.384500px;}
._12{width:36.216000px;}
._25{width:38.736000px;}
._1d{width:40.250700px;}
._14{width:41.328000px;}
._20{width:42.336000px;}
._2a{width:44.052600px;}
._18{width:45.389700px;}
._2c{width:46.497600px;}
._2b{width:48.429900px;}
._1b{width:49.611600px;}
._27{width:50.694900px;}
._6{width:53.192700px;}
._15{width:55.460700px;}
._28{width:56.548800px;}
._d{width:57.888000px;}
._1f{width:59.814900px;}
._24{width:61.488000px;}
._f{width:62.862000px;}
._16{width:64.080000px;}
._30{width:66.436200px;}
._c{width:68.526000px;}
._13{width:69.984000px;}
._26{width:72.840600px;}
._1a{width:74.036700px;}
._29{width:76.658700px;}
._23{width:78.104700px;}
._2e{width:82.800000px;}
._19{width:84.168000px;}
._10{width:86.184000px;}
._32{width:90.668700px;}
._31{width:91.800000px;}
._2d{width:94.464000px;}
._1e{width:111.096000px;}
._22{width:122.862300px;}
._5{width:140.820300px;}
.fc3{color:rgb(33,37,41);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:59.700000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.yb6{bottom:106.815000px;}
.y52{bottom:116.715000px;}
.y79{bottom:120.315000px;}
.yb5{bottom:128.775000px;}
.y51{bottom:138.675000px;}
.yb4{bottom:150.915000px;}
.ydd{bottom:160.096500px;}
.y50{bottom:160.815000px;}
.y78{bottom:162.075000px;}
.y29{bottom:162.615000px;}
.y9b{bottom:170.175000px;}
.yb3{bottom:171.615000px;}
.ydc{bottom:180.796500px;}
.y4f{bottom:182.775000px;}
.y28{bottom:183.315000px;}
.y9a{bottom:192.136500px;}
.ydb{bottom:201.496500px;}
.y4e{bottom:203.475000px;}
.y27{bottom:204.015000px;}
.y99{bottom:214.275000px;}
.yb2{bottom:214.455000px;}
.yda{bottom:222.196500px;}
.y26{bottom:224.715000px;}
.y98{bottom:236.236500px;}
.yd9{bottom:242.896500px;}
.y77{bottom:245.236500px;}
.y25{bottom:245.415000px;}
.y4d{bottom:246.496500px;}
.yb1{bottom:256.215000px;}
.yd8{bottom:263.596500px;}
.y76{bottom:265.936500px;}
.y4c{bottom:267.196500px;}
.yb0{bottom:278.175000px;}
.y97{bottom:279.255000px;}
.yd7{bottom:284.295000px;}
.y75{bottom:286.636500px;}
.y24{bottom:287.175000px;}
.yaf{bottom:300.315000px;}
.yd6{bottom:304.996500px;}
.y74{bottom:307.336500px;}
.y23{bottom:307.875000px;}
.y4b{bottom:308.775000px;}
.yae{bottom:320.836500px;}
.y96{bottom:321.015000px;}
.yd5{bottom:325.696500px;}
.y22{bottom:328.575000px;}
.y4a{bottom:329.475000px;}
.y95{bottom:341.715000px;}
.yd4{bottom:346.396500px;}
.y73{bottom:348.915000px;}
.y21{bottom:349.275000px;}
.y49{bottom:350.175000px;}
.y94{bottom:362.415000px;}
.yad{bottom:363.855000px;}
.yd3{bottom:367.096500px;}
.y72{bottom:369.615000px;}
.y20{bottom:369.975000px;}
.y48{bottom:370.875000px;}
.yd2{bottom:387.795000px;}
.y71{bottom:390.315000px;}
.y1f{bottom:390.675000px;}
.y47{bottom:391.575000px;}
.y93{bottom:403.996500px;}
.yac{bottom:405.615000px;}
.yd1{bottom:408.496500px;}
.y70{bottom:411.015000px;}
.y46{bottom:412.275000px;}
.y92{bottom:424.696500px;}
.yab{bottom:426.315000px;}
.yd0{bottom:429.196500px;}
.y6f{bottom:431.715000px;}
.y1e{bottom:432.436500px;}
.y45{bottom:432.975000px;}
.y91{bottom:445.396500px;}
.ycf{bottom:449.896500px;}
.y1d{bottom:453.136500px;}
.y90{bottom:466.096500px;}
.yaa{bottom:468.075000px;}
.yce{bottom:470.596500px;}
.y6e{bottom:473.475000px;}
.y1c{bottom:473.836500px;}
.y44{bottom:474.736500px;}
.ya9{bottom:488.775000px;}
.ycd{bottom:491.295000px;}
.y6d{bottom:494.175000px;}
.y1b{bottom:494.536500px;}
.y43{bottom:495.436500px;}
.y8f{bottom:507.855000px;}
.ya8{bottom:509.475000px;}
.ycc{bottom:511.996500px;}
.y6c{bottom:514.875000px;}
.y1a{bottom:515.236500px;}
.y42{bottom:516.136500px;}
.ycb{bottom:532.695000px;}
.y6b{bottom:535.575000px;}
.y19{bottom:535.936500px;}
.y41{bottom:536.836500px;}
.y8e{bottom:549.615000px;}
.ya7{bottom:551.055000px;}
.yca{bottom:553.396500px;}
.y6a{bottom:556.275000px;}
.y18{bottom:556.636500px;}
.y40{bottom:557.536500px;}
.y8d{bottom:570.315000px;}
.ya6{bottom:573.015000px;}
.yc9{bottom:574.096500px;}
.y8c{bottom:591.015000px;}
.yc8{bottom:594.795000px;}
.ya5{bottom:594.975000px;}
.y69{bottom:598.036500px;}
.y17{bottom:598.215000px;}
.y3f{bottom:599.295000px;}
.y8b{bottom:611.715000px;}
.yc7{bottom:615.496500px;}
.ya4{bottom:617.115000px;}
.y68{bottom:618.736500px;}
.y3e{bottom:619.996500px;}
.y8a{bottom:632.415000px;}
.ya3{bottom:639.075000px;}
.y67{bottom:639.436500px;}
.y16{bottom:639.975000px;}
.y3d{bottom:640.695000px;}
.yc6{bottom:657.075000px;}
.y66{bottom:660.136500px;}
.y15{bottom:660.675000px;}
.y3c{bottom:661.396500px;}
.y89{bottom:673.996500px;}
.y65{bottom:680.836500px;}
.y3b{bottom:682.096500px;}
.y88{bottom:694.695000px;}
.yc5{bottom:698.836500px;}
.y64{bottom:701.536500px;}
.y14{bottom:702.436500px;}
.y87{bottom:716.655000px;}
.yc4{bottom:719.536500px;}
.y63{bottom:722.236500px;}
.y13{bottom:723.136500px;}
.y3a{bottom:723.675000px;}
.y86{bottom:737.355000px;}
.yc3{bottom:740.236500px;}
.y62{bottom:742.936500px;}
.y12{bottom:743.836500px;}
.y39{bottom:744.375000px;}
.y85{bottom:759.315000px;}
.yc2{bottom:760.936500px;}
.y11{bottom:764.536500px;}
.y38{bottom:765.075000px;}
.y84{bottom:780.015000px;}
.yc1{bottom:781.636500px;}
.y61{bottom:784.515000px;}
.y10{bottom:785.236500px;}
.y37{bottom:785.775000px;}
.y83{bottom:801.975000px;}
.yf{bottom:805.936500px;}
.y36{bottom:806.475000px;}
.y82{bottom:822.675000px;}
.yc0{bottom:823.395000px;}
.y60{bottom:826.275000px;}
.ye{bottom:826.636500px;}
.ya2{bottom:827.536500px;}
.ybf{bottom:844.096500px;}
.y5f{bottom:846.975000px;}
.yd{bottom:847.336500px;}
.y35{bottom:848.236500px;}
.ybe{bottom:864.795000px;}
.y81{bottom:865.695000px;}
.y5e{bottom:867.675000px;}
.yc{bottom:868.036500px;}
.ya1{bottom:868.936500px;}
.ybd{bottom:885.495000px;}
.y5d{bottom:888.375000px;}
.yb{bottom:888.736500px;}
.ya0{bottom:889.636500px;}
.y34{bottom:889.995000px;}
.y80{bottom:907.275000px;}
.ya{bottom:909.436500px;}
.y9f{bottom:910.336500px;}
.y33{bottom:910.695000px;}
.ybc{bottom:927.075000px;}
.y7f{bottom:929.415000px;}
.y5c{bottom:929.955000px;}
.y32{bottom:931.395000px;}
.ybb{bottom:947.775000px;}
.y5b{bottom:950.655000px;}
.y9{bottom:951.015000px;}
.y9e{bottom:952.095000px;}
.yba{bottom:968.475000px;}
.y5a{bottom:971.355000px;}
.y8{bottom:971.715000px;}
.y7e{bottom:972.436500px;}
.y9d{bottom:972.795000px;}
.y31{bottom:972.975000px;}
.y59{bottom:992.055000px;}
.y30{bottom:993.675000px;}
.yb9{bottom:1010.236500px;}
.y58{bottom:1012.755000px;}
.y7d{bottom:1014.195000px;}
.y2f{bottom:1014.375000px;}
.y57{bottom:1033.455000px;}
.y9c{bottom:1035.075000px;}
.yb8{bottom:1051.815000px;}
.y7c{bottom:1055.775000px;}
.y2e{bottom:1056.136500px;}
.yb7{bottom:1073.775000px;}
.y56{bottom:1075.215000px;}
.y7{bottom:1076.295000px;}
.y7b{bottom:1076.475000px;}
.y2d{bottom:1076.836500px;}
.y55{bottom:1095.915000px;}
.y7a{bottom:1097.175000px;}
.y2c{bottom:1097.536500px;}
.y54{bottom:1116.615000px;}
.y6{bottom:1117.875000px;}
.y2b{bottom:1118.236500px;}
.y2a{bottom:1138.936500px;}
.y53{bottom:1158.195000px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h4{height:47.988281px;}
.h5{height:49.992188px;}
.h6{height:50.027344px;}
.h7{height:55.406250px;}
.h2{height:62.261719px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x8{left:153.180000px;}
.x2{left:160.560000px;}
.x6{left:247.860000px;}
.x7{left:337.680000px;}
.x9{left:344.880000px;}
.x5{left:355.320000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:92.544000pt;}
.ls2{letter-spacing:97.507733pt;}
.ws16{word-spacing:-49.728000pt;}
.ws12{word-spacing:-36.032000pt;}
.ws5{word-spacing:-34.488000pt;}
.ws70{word-spacing:-34.419200pt;}
.wsb0{word-spacing:-34.410400pt;}
.ws3{word-spacing:-34.362400pt;}
.ws4{word-spacing:-34.174133pt;}
.ws6{word-spacing:-34.157600pt;}
.ws83{word-spacing:-33.907200pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.ws32{word-spacing:-33.716267pt;}
.ws6a{word-spacing:-20.845600pt;}
.ws58{word-spacing:-20.784800pt;}
.wsc1{word-spacing:-20.668800pt;}
.wsa5{word-spacing:-20.659200pt;}
.ws4d{word-spacing:-20.602933pt;}
.ws74{word-spacing:-20.597600pt;}
.wsa3{word-spacing:-20.592267pt;}
.ws59{word-spacing:-20.592000pt;}
.ws77{word-spacing:-20.587200pt;}
.ws8c{word-spacing:-20.466667pt;}
.wsa8{word-spacing:-20.462667pt;}
.ws5d{word-spacing:-20.408000pt;}
.ws82{word-spacing:-20.404000pt;}
.ws9b{word-spacing:-20.398400pt;}
.ws4a{word-spacing:-20.357333pt;}
.ws31{word-spacing:-20.352000pt;}
.ws5b{word-spacing:-20.350400pt;}
.ws4b{word-spacing:-20.346933pt;}
.ws26{word-spacing:-20.346667pt;}
.wsa2{word-spacing:-20.346400pt;}
.ws76{word-spacing:-20.345600pt;}
.ws8b{word-spacing:-20.345067pt;}
.ws49{word-spacing:-20.344800pt;}
.ws7b{word-spacing:-20.344000pt;}
.wsaf{word-spacing:-20.341600pt;}
.ws9a{word-spacing:-20.340000pt;}
.ws87{word-spacing:-20.339733pt;}
.wsa0{word-spacing:-20.339467pt;}
.ws50{word-spacing:-20.338933pt;}
.ws7c{word-spacing:-20.338400pt;}
.ws91{word-spacing:-20.224000pt;}
.ws8a{word-spacing:-20.220800pt;}
.ws5f{word-spacing:-20.216000pt;}
.ws75{word-spacing:-20.215733pt;}
.ws78{word-spacing:-20.205600pt;}
.ws3f{word-spacing:-20.157333pt;}
.ws2e{word-spacing:-20.092800pt;}
.ws61{word-spacing:-20.088800pt;}
.wsb6{word-spacing:-20.034133pt;}
.ws15{word-spacing:-20.032000pt;}
.wsb1{word-spacing:-20.030133pt;}
.ws47{word-spacing:-20.021600pt;}
.ws1d{word-spacing:-19.712000pt;}
.ws7e{word-spacing:-19.711733pt;}
.ws93{word-spacing:-19.060000pt;}
.ws48{word-spacing:-18.938933pt;}
.ws56{word-spacing:-18.934400pt;}
.ws22{word-spacing:-18.880533pt;}
.ws2d{word-spacing:-18.757333pt;}
.ws53{word-spacing:-18.415200pt;}
.ws69{word-spacing:-18.112000pt;}
.ws9c{word-spacing:-17.788000pt;}
.wsa1{word-spacing:-17.655200pt;}
.wsbd{word-spacing:-17.529600pt;}
.ws9{word-spacing:-17.477333pt;}
.ws46{word-spacing:-17.472000pt;}
.ws7f{word-spacing:-17.470400pt;}
.ws86{word-spacing:-17.218933pt;}
.ws21{word-spacing:-17.145333pt;}
.ws2b{word-spacing:-17.143200pt;}
.ws66{word-spacing:-17.027733pt;}
.wsb3{word-spacing:-16.828800pt;}
.ws1c{word-spacing:-16.757600pt;}
.wsbc{word-spacing:-16.192000pt;}
.wsb7{word-spacing:-16.190400pt;}
.wsb8{word-spacing:-16.182400pt;}
.ws1f{word-spacing:-15.874133pt;}
.ws54{word-spacing:-15.853600pt;}
.wsf{word-spacing:-15.552000pt;}
.ws18{word-spacing:-15.469600pt;}
.wsa{word-spacing:-14.835200pt;}
.ws90{word-spacing:-14.590400pt;}
.ws8{word-spacing:-14.586400pt;}
.ws84{word-spacing:-14.275733pt;}
.wsb{word-spacing:-13.632000pt;}
.ws6f{word-spacing:-13.622133pt;}
.ws5a{word-spacing:-13.554667pt;}
.wsaa{word-spacing:-13.429600pt;}
.ws81{word-spacing:-13.306400pt;}
.ws3d{word-spacing:-12.997333pt;}
.wsb9{word-spacing:-12.923733pt;}
.ws4f{word-spacing:-12.549333pt;}
.ws10{word-spacing:-11.893600pt;}
.ws7d{word-spacing:-11.892000pt;}
.ws19{word-spacing:-11.712000pt;}
.ws8d{word-spacing:-11.704000pt;}
.ws7a{word-spacing:-10.746933pt;}
.wsb5{word-spacing:-10.616800pt;}
.ws28{word-spacing:-10.544267pt;}
.ws95{word-spacing:-10.432000pt;}
.ws6d{word-spacing:-9.971200pt;}
.ws88{word-spacing:-9.466933pt;}
.wse{word-spacing:-9.129067pt;}
.ws5c{word-spacing:-8.830400pt;}
.wsb4{word-spacing:-8.709333pt;}
.ws2a{word-spacing:-8.701333pt;}
.ws42{word-spacing:-8.512000pt;}
.ws73{word-spacing:-8.179200pt;}
.wsad{word-spacing:-7.669333pt;}
.ws11{word-spacing:-7.542400pt;}
.ws89{word-spacing:-7.536267pt;}
.ws71{word-spacing:-7.429333pt;}
.ws8e{word-spacing:-7.424000pt;}
.ws6c{word-spacing:-7.412000pt;}
.wsbf{word-spacing:-7.157333pt;}
.ws98{word-spacing:-6.900000pt;}
.ws2f{word-spacing:-6.898400pt;}
.ws7{word-spacing:-5.765333pt;}
.ws37{word-spacing:-5.312000pt;}
.ws23{word-spacing:-5.116533pt;}
.ws92{word-spacing:-4.862400pt;}
.ws5e{word-spacing:-4.853600pt;}
.ws72{word-spacing:-4.672000pt;}
.ws57{word-spacing:-4.032000pt;}
.ws99{word-spacing:-3.397333pt;}
.ws64{word-spacing:-2.560000pt;}
.ws43{word-spacing:-1.397600pt;}
.ws40{word-spacing:-1.264000pt;}
.ws27{word-spacing:-0.382400pt;}
.ws4c{word-spacing:0.000000pt;}
.ws51{word-spacing:0.327200pt;}
.ws13{word-spacing:1.280000pt;}
.ws96{word-spacing:1.804000pt;}
.wsa7{word-spacing:2.885067pt;}
.ws34{word-spacing:3.338400pt;}
.wsac{word-spacing:3.521867pt;}
.ws94{word-spacing:3.856000pt;}
.wsab{word-spacing:4.294400pt;}
.wsb2{word-spacing:5.123200pt;}
.wsba{word-spacing:5.568000pt;}
.wsa6{word-spacing:6.024800pt;}
.ws85{word-spacing:6.208000pt;}
.wsbe{word-spacing:6.659467pt;}
.ws3c{word-spacing:6.848000pt;}
.ws9e{word-spacing:7.307733pt;}
.ws3e{word-spacing:7.310933pt;}
.ws79{word-spacing:8.125067pt;}
.wsd{word-spacing:9.736267pt;}
.ws44{word-spacing:9.738400pt;}
.ws24{word-spacing:9.746400pt;}
.ws35{word-spacing:10.310667pt;}
.ws41{word-spacing:10.500000pt;}
.ws55{word-spacing:11.850400pt;}
.ws29{word-spacing:12.298400pt;}
.ws80{word-spacing:13.193600pt;}
.wsa9{word-spacing:13.568000pt;}
.ws1a{word-spacing:13.888000pt;}
.ws30{word-spacing:14.217067pt;}
.ws3a{word-spacing:14.332267pt;}
.ws14{word-spacing:14.528000pt;}
.ws68{word-spacing:15.168000pt;}
.ws6e{word-spacing:15.437600pt;}
.ws67{word-spacing:15.628000pt;}
.ws4e{word-spacing:15.687200pt;}
.ws9d{word-spacing:16.133067pt;}
.ws52{word-spacing:16.268000pt;}
.ws63{word-spacing:17.108800pt;}
.ws97{word-spacing:17.418400pt;}
.ws33{word-spacing:18.372000pt;}
.ws3b{word-spacing:18.568000pt;}
.ws1e{word-spacing:18.874667pt;}
.ws2c{word-spacing:19.968000pt;}
.wsbb{word-spacing:21.636800pt;}
.ws17{word-spacing:23.945600pt;}
.ws1b{word-spacing:24.469600pt;}
.ws25{word-spacing:25.088000pt;}
.ws6b{word-spacing:27.788000pt;}
.ws38{word-spacing:28.306400pt;}
.ws9f{word-spacing:29.069600pt;}
.ws8f{word-spacing:30.866933pt;}
.wsc0{word-spacing:31.050400pt;}
.ws62{word-spacing:32.133600pt;}
.ws36{word-spacing:37.568000pt;}
.ws20{word-spacing:39.558400pt;}
.ws39{word-spacing:41.223733pt;}
.wsae{word-spacing:46.984800pt;}
.ws65{word-spacing:56.144800pt;}
.wsa4{word-spacing:60.609600pt;}
.ws45{word-spacing:61.568000pt;}
.ws60{word-spacing:71.802667pt;}
.wsc{word-spacing:88.202400pt;}
.ws1{word-spacing:922.208800pt;}
._4{margin-left:-1.231200pt;}
._0{width:0.956800pt;}
._2f{width:1.874400pt;}
._21{width:15.250400pt;}
._1{width:16.860800pt;}
._11{width:18.176000pt;}
._3{width:19.520000pt;}
._e{width:20.524267pt;}
._8{width:21.568000pt;}
._2{width:22.650933pt;}
._1c{width:23.928800pt;}
._9{width:25.088000pt;}
._a{width:26.127200pt;}
._7{width:27.840000pt;}
._b{width:29.497600pt;}
._17{width:30.564000pt;}
._12{width:32.192000pt;}
._25{width:34.432000pt;}
._1d{width:35.778400pt;}
._14{width:36.736000pt;}
._20{width:37.632000pt;}
._2a{width:39.157867pt;}
._18{width:40.346400pt;}
._2c{width:41.331200pt;}
._2b{width:43.048800pt;}
._1b{width:44.099200pt;}
._27{width:45.062133pt;}
._6{width:47.282400pt;}
._15{width:49.298400pt;}
._28{width:50.265600pt;}
._d{width:51.456000pt;}
._1f{width:53.168800pt;}
._24{width:54.656000pt;}
._f{width:55.877333pt;}
._16{width:56.960000pt;}
._30{width:59.054400pt;}
._c{width:60.912000pt;}
._13{width:62.208000pt;}
._26{width:64.747200pt;}
._1a{width:65.810400pt;}
._29{width:68.141067pt;}
._23{width:69.426400pt;}
._2e{width:73.600000pt;}
._19{width:74.816000pt;}
._10{width:76.608000pt;}
._32{width:80.594400pt;}
._31{width:81.600000pt;}
._2d{width:83.968000pt;}
._1e{width:98.752000pt;}
._22{width:109.210933pt;}
._5{width:125.173600pt;}
.fs1{font-size:53.066667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.yb6{bottom:94.946667pt;}
.y52{bottom:103.746667pt;}
.y79{bottom:106.946667pt;}
.yb5{bottom:114.466667pt;}
.y51{bottom:123.266667pt;}
.yb4{bottom:134.146667pt;}
.ydd{bottom:142.308000pt;}
.y50{bottom:142.946667pt;}
.y78{bottom:144.066667pt;}
.y29{bottom:144.546667pt;}
.y9b{bottom:151.266667pt;}
.yb3{bottom:152.546667pt;}
.ydc{bottom:160.708000pt;}
.y4f{bottom:162.466667pt;}
.y28{bottom:162.946667pt;}
.y9a{bottom:170.788000pt;}
.ydb{bottom:179.108000pt;}
.y4e{bottom:180.866667pt;}
.y27{bottom:181.346667pt;}
.y99{bottom:190.466667pt;}
.yb2{bottom:190.626667pt;}
.yda{bottom:197.508000pt;}
.y26{bottom:199.746667pt;}
.y98{bottom:209.988000pt;}
.yd9{bottom:215.908000pt;}
.y77{bottom:217.988000pt;}
.y25{bottom:218.146667pt;}
.y4d{bottom:219.108000pt;}
.yb1{bottom:227.746667pt;}
.yd8{bottom:234.308000pt;}
.y76{bottom:236.388000pt;}
.y4c{bottom:237.508000pt;}
.yb0{bottom:247.266667pt;}
.y97{bottom:248.226667pt;}
.yd7{bottom:252.706667pt;}
.y75{bottom:254.788000pt;}
.y24{bottom:255.266667pt;}
.yaf{bottom:266.946667pt;}
.yd6{bottom:271.108000pt;}
.y74{bottom:273.188000pt;}
.y23{bottom:273.666667pt;}
.y4b{bottom:274.466667pt;}
.yae{bottom:285.188000pt;}
.y96{bottom:285.346667pt;}
.yd5{bottom:289.508000pt;}
.y22{bottom:292.066667pt;}
.y4a{bottom:292.866667pt;}
.y95{bottom:303.746667pt;}
.yd4{bottom:307.908000pt;}
.y73{bottom:310.146667pt;}
.y21{bottom:310.466667pt;}
.y49{bottom:311.266667pt;}
.y94{bottom:322.146667pt;}
.yad{bottom:323.426667pt;}
.yd3{bottom:326.308000pt;}
.y72{bottom:328.546667pt;}
.y20{bottom:328.866667pt;}
.y48{bottom:329.666667pt;}
.yd2{bottom:344.706667pt;}
.y71{bottom:346.946667pt;}
.y1f{bottom:347.266667pt;}
.y47{bottom:348.066667pt;}
.y93{bottom:359.108000pt;}
.yac{bottom:360.546667pt;}
.yd1{bottom:363.108000pt;}
.y70{bottom:365.346667pt;}
.y46{bottom:366.466667pt;}
.y92{bottom:377.508000pt;}
.yab{bottom:378.946667pt;}
.yd0{bottom:381.508000pt;}
.y6f{bottom:383.746667pt;}
.y1e{bottom:384.388000pt;}
.y45{bottom:384.866667pt;}
.y91{bottom:395.908000pt;}
.ycf{bottom:399.908000pt;}
.y1d{bottom:402.788000pt;}
.y90{bottom:414.308000pt;}
.yaa{bottom:416.066667pt;}
.yce{bottom:418.308000pt;}
.y6e{bottom:420.866667pt;}
.y1c{bottom:421.188000pt;}
.y44{bottom:421.988000pt;}
.ya9{bottom:434.466667pt;}
.ycd{bottom:436.706667pt;}
.y6d{bottom:439.266667pt;}
.y1b{bottom:439.588000pt;}
.y43{bottom:440.388000pt;}
.y8f{bottom:451.426667pt;}
.ya8{bottom:452.866667pt;}
.ycc{bottom:455.108000pt;}
.y6c{bottom:457.666667pt;}
.y1a{bottom:457.988000pt;}
.y42{bottom:458.788000pt;}
.ycb{bottom:473.506667pt;}
.y6b{bottom:476.066667pt;}
.y19{bottom:476.388000pt;}
.y41{bottom:477.188000pt;}
.y8e{bottom:488.546667pt;}
.ya7{bottom:489.826667pt;}
.yca{bottom:491.908000pt;}
.y6a{bottom:494.466667pt;}
.y18{bottom:494.788000pt;}
.y40{bottom:495.588000pt;}
.y8d{bottom:506.946667pt;}
.ya6{bottom:509.346667pt;}
.yc9{bottom:510.308000pt;}
.y8c{bottom:525.346667pt;}
.yc8{bottom:528.706667pt;}
.ya5{bottom:528.866667pt;}
.y69{bottom:531.588000pt;}
.y17{bottom:531.746667pt;}
.y3f{bottom:532.706667pt;}
.y8b{bottom:543.746667pt;}
.yc7{bottom:547.108000pt;}
.ya4{bottom:548.546667pt;}
.y68{bottom:549.988000pt;}
.y3e{bottom:551.108000pt;}
.y8a{bottom:562.146667pt;}
.ya3{bottom:568.066667pt;}
.y67{bottom:568.388000pt;}
.y16{bottom:568.866667pt;}
.y3d{bottom:569.506667pt;}
.yc6{bottom:584.066667pt;}
.y66{bottom:586.788000pt;}
.y15{bottom:587.266667pt;}
.y3c{bottom:587.908000pt;}
.y89{bottom:599.108000pt;}
.y65{bottom:605.188000pt;}
.y3b{bottom:606.308000pt;}
.y88{bottom:617.506667pt;}
.yc5{bottom:621.188000pt;}
.y64{bottom:623.588000pt;}
.y14{bottom:624.388000pt;}
.y87{bottom:637.026667pt;}
.yc4{bottom:639.588000pt;}
.y63{bottom:641.988000pt;}
.y13{bottom:642.788000pt;}
.y3a{bottom:643.266667pt;}
.y86{bottom:655.426667pt;}
.yc3{bottom:657.988000pt;}
.y62{bottom:660.388000pt;}
.y12{bottom:661.188000pt;}
.y39{bottom:661.666667pt;}
.y85{bottom:674.946667pt;}
.yc2{bottom:676.388000pt;}
.y11{bottom:679.588000pt;}
.y38{bottom:680.066667pt;}
.y84{bottom:693.346667pt;}
.yc1{bottom:694.788000pt;}
.y61{bottom:697.346667pt;}
.y10{bottom:697.988000pt;}
.y37{bottom:698.466667pt;}
.y83{bottom:712.866667pt;}
.yf{bottom:716.388000pt;}
.y36{bottom:716.866667pt;}
.y82{bottom:731.266667pt;}
.yc0{bottom:731.906667pt;}
.y60{bottom:734.466667pt;}
.ye{bottom:734.788000pt;}
.ya2{bottom:735.588000pt;}
.ybf{bottom:750.308000pt;}
.y5f{bottom:752.866667pt;}
.yd{bottom:753.188000pt;}
.y35{bottom:753.988000pt;}
.ybe{bottom:768.706667pt;}
.y81{bottom:769.506667pt;}
.y5e{bottom:771.266667pt;}
.yc{bottom:771.588000pt;}
.ya1{bottom:772.388000pt;}
.ybd{bottom:787.106667pt;}
.y5d{bottom:789.666667pt;}
.yb{bottom:789.988000pt;}
.ya0{bottom:790.788000pt;}
.y34{bottom:791.106667pt;}
.y80{bottom:806.466667pt;}
.ya{bottom:808.388000pt;}
.y9f{bottom:809.188000pt;}
.y33{bottom:809.506667pt;}
.ybc{bottom:824.066667pt;}
.y7f{bottom:826.146667pt;}
.y5c{bottom:826.626667pt;}
.y32{bottom:827.906667pt;}
.ybb{bottom:842.466667pt;}
.y5b{bottom:845.026667pt;}
.y9{bottom:845.346667pt;}
.y9e{bottom:846.306667pt;}
.yba{bottom:860.866667pt;}
.y5a{bottom:863.426667pt;}
.y8{bottom:863.746667pt;}
.y7e{bottom:864.388000pt;}
.y9d{bottom:864.706667pt;}
.y31{bottom:864.866667pt;}
.y59{bottom:881.826667pt;}
.y30{bottom:883.266667pt;}
.yb9{bottom:897.988000pt;}
.y58{bottom:900.226667pt;}
.y7d{bottom:901.506667pt;}
.y2f{bottom:901.666667pt;}
.y57{bottom:918.626667pt;}
.y9c{bottom:920.066667pt;}
.yb8{bottom:934.946667pt;}
.y7c{bottom:938.466667pt;}
.y2e{bottom:938.788000pt;}
.yb7{bottom:954.466667pt;}
.y56{bottom:955.746667pt;}
.y7{bottom:956.706667pt;}
.y7b{bottom:956.866667pt;}
.y2d{bottom:957.188000pt;}
.y55{bottom:974.146667pt;}
.y7a{bottom:975.266667pt;}
.y2c{bottom:975.588000pt;}
.y54{bottom:992.546667pt;}
.y6{bottom:993.666667pt;}
.y2b{bottom:993.988000pt;}
.y2a{bottom:1012.388000pt;}
.y53{bottom:1029.506667pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h4{height:42.656250pt;}
.h5{height:44.437500pt;}
.h6{height:44.468750pt;}
.h7{height:49.250000pt;}
.h2{height:55.343750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x8{left:136.160000pt;}
.x2{left:142.720000pt;}
.x6{left:220.320000pt;}
.x7{left:300.160000pt;}
.x9{left:306.560000pt;}
.x5{left:315.840000pt;}
}




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