
    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_bf12cd65992a42c8e8c33eba.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893000;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_575c3bb8c0e472a9f4fee438.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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);}
.v1{vertical-align:-19.799400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.800000px;}
.ls1{letter-spacing:-0.480000px;}
.ls2{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.040000px;}
.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;}
}
.ws9b{word-spacing:-17.040000px;}
.ws20{word-spacing:-16.500000px;}
.ws3d{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws21{word-spacing:-10.500000px;}
.ws70{word-spacing:-4.740000px;}
.ws9a{word-spacing:-4.020000px;}
.ws96{word-spacing:-3.720000px;}
.ws85{word-spacing:-3.420000px;}
.ws5{word-spacing:-3.240000px;}
.ws4f{word-spacing:-3.180000px;}
.ws8a{word-spacing:-3.060000px;}
.ws8b{word-spacing:-3.000000px;}
.ws3f{word-spacing:-2.820000px;}
.ws32{word-spacing:-2.760000px;}
.ws68{word-spacing:-2.700000px;}
.ws4c{word-spacing:-2.640000px;}
.ws11{word-spacing:-2.592000px;}
.ws7b{word-spacing:-2.460000px;}
.ws6b{word-spacing:-2.400000px;}
.ws7c{word-spacing:-2.340000px;}
.wsaa{word-spacing:-2.220000px;}
.ws46{word-spacing:-2.160000px;}
.ws5d{word-spacing:-2.100000px;}
.ws4{word-spacing:-1.944000px;}
.ws97{word-spacing:-1.920000px;}
.ws79{word-spacing:-1.860000px;}
.ws2f{word-spacing:-1.800000px;}
.wsa4{word-spacing:-1.680000px;}
.ws12{word-spacing:-1.674000px;}
.wse{word-spacing:-1.620000px;}
.ws45{word-spacing:-1.560000px;}
.ws2a{word-spacing:-1.500000px;}
.ws4d{word-spacing:-1.380000px;}
.ws8c{word-spacing:-1.320000px;}
.ws93{word-spacing:-1.260000px;}
.ws4b{word-spacing:-1.200000px;}
.ws2e{word-spacing:-1.140000px;}
.ws42{word-spacing:-1.080000px;}
.ws41{word-spacing:-1.020000px;}
.ws8{word-spacing:-0.972000px;}
.ws1f{word-spacing:-0.960000px;}
.ws5c{word-spacing:-0.900000px;}
.ws58{word-spacing:-0.840000px;}
.ws59{word-spacing:-0.780000px;}
.ws80{word-spacing:-0.720000px;}
.ws61{word-spacing:-0.600000px;}
.ws28{word-spacing:-0.540000px;}
.ws1d{word-spacing:-0.480000px;}
.ws14{word-spacing:-0.432000px;}
.ws1a{word-spacing:-0.420000px;}
.wsb{word-spacing:-0.378000px;}
.ws5e{word-spacing:-0.360000px;}
.ws2c{word-spacing:-0.300000px;}
.ws38{word-spacing:-0.240000px;}
.ws86{word-spacing:-0.180000px;}
.ws84{word-spacing:-0.120000px;}
.ws89{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws6f{word-spacing:0.060000px;}
.ws24{word-spacing:0.120000px;}
.ws35{word-spacing:0.180000px;}
.ws52{word-spacing:0.240000px;}
.ws3a{word-spacing:0.300000px;}
.ws15{word-spacing:0.324000px;}
.ws29{word-spacing:0.360000px;}
.wsd{word-spacing:0.486000px;}
.ws66{word-spacing:0.540000px;}
.wsa{word-spacing:0.594000px;}
.ws2d{word-spacing:0.600000px;}
.ws3{word-spacing:0.648000px;}
.ws23{word-spacing:0.720000px;}
.ws19{word-spacing:0.780000px;}
.ws82{word-spacing:0.840000px;}
.ws7{word-spacing:0.864000px;}
.ws37{word-spacing:0.900000px;}
.ws54{word-spacing:1.020000px;}
.ws7d{word-spacing:1.080000px;}
.ws47{word-spacing:1.200000px;}
.ws65{word-spacing:1.260000px;}
.ws73{word-spacing:1.320000px;}
.ws71{word-spacing:1.380000px;}
.ws69{word-spacing:1.440000px;}
.ws64{word-spacing:1.500000px;}
.ws7a{word-spacing:1.560000px;}
.ws3e{word-spacing:1.620000px;}
.ws6e{word-spacing:1.680000px;}
.wsf{word-spacing:1.728000px;}
.ws27{word-spacing:1.800000px;}
.ws55{word-spacing:2.040000px;}
.ws9{word-spacing:2.052000px;}
.wsc{word-spacing:2.160000px;}
.ws6c{word-spacing:2.220000px;}
.ws33{word-spacing:2.340000px;}
.ws6{word-spacing:2.376000px;}
.ws57{word-spacing:2.460000px;}
.ws62{word-spacing:2.520000px;}
.ws1b{word-spacing:2.580000px;}
.wsa9{word-spacing:2.640000px;}
.ws3c{word-spacing:2.688000px;}
.ws2{word-spacing:2.700000px;}
.ws30{word-spacing:2.760000px;}
.ws8d{word-spacing:2.820000px;}
.ws44{word-spacing:2.880000px;}
.ws51{word-spacing:2.940000px;}
.ws81{word-spacing:3.000000px;}
.ws31{word-spacing:3.060000px;}
.wsa6{word-spacing:3.180000px;}
.ws5a{word-spacing:3.240000px;}
.ws3b{word-spacing:3.360000px;}
.ws2b{word-spacing:3.480000px;}
.ws5f{word-spacing:3.660000px;}
.ws4a{word-spacing:3.780000px;}
.ws10{word-spacing:3.834000px;}
.ws53{word-spacing:3.900000px;}
.ws6a{word-spacing:3.960000px;}
.ws67{word-spacing:4.020000px;}
.ws13{word-spacing:4.050000px;}
.ws48{word-spacing:4.080000px;}
.ws43{word-spacing:4.320000px;}
.ws76{word-spacing:4.500000px;}
.ws8e{word-spacing:4.560000px;}
.ws7f{word-spacing:4.620000px;}
.ws39{word-spacing:4.740000px;}
.ws92{word-spacing:4.800000px;}
.ws22{word-spacing:4.860000px;}
.ws26{word-spacing:4.920000px;}
.ws9d{word-spacing:4.980000px;}
.ws50{word-spacing:5.040000px;}
.ws98{word-spacing:5.100000px;}
.ws78{word-spacing:5.160000px;}
.ws8f{word-spacing:5.220000px;}
.ws77{word-spacing:5.280000px;}
.ws87{word-spacing:5.400000px;}
.ws91{word-spacing:5.580000px;}
.ws74{word-spacing:5.820000px;}
.ws34{word-spacing:6.000000px;}
.wsa1{word-spacing:6.180000px;}
.ws17{word-spacing:6.240000px;}
.ws88{word-spacing:6.300000px;}
.ws16{word-spacing:6.360000px;}
.ws4e{word-spacing:6.480000px;}
.ws99{word-spacing:6.540000px;}
.ws72{word-spacing:6.720000px;}
.ws83{word-spacing:6.960000px;}
.ws1c{word-spacing:7.020000px;}
.ws9c{word-spacing:7.200000px;}
.wsa0{word-spacing:7.260000px;}
.ws40{word-spacing:7.380000px;}
.ws75{word-spacing:7.620000px;}
.ws9f{word-spacing:7.740000px;}
.ws60{word-spacing:7.800000px;}
.wsa8{word-spacing:7.920000px;}
.ws18{word-spacing:8.340000px;}
.ws36{word-spacing:8.700000px;}
.ws49{word-spacing:8.820000px;}
.ws5b{word-spacing:8.880000px;}
.ws90{word-spacing:8.940000px;}
.ws95{word-spacing:9.420000px;}
.ws1e{word-spacing:9.660000px;}
.ws7e{word-spacing:9.720000px;}
.ws94{word-spacing:9.840000px;}
.ws6d{word-spacing:9.960000px;}
.ws9e{word-spacing:10.500000px;}
.wsa3{word-spacing:10.800000px;}
.ws63{word-spacing:11.160000px;}
.ws56{word-spacing:11.340000px;}
.ws25{word-spacing:14.220000px;}
.wsa2{word-spacing:15.000000px;}
.wsa7{word-spacing:18.780000px;}
.wsa5{word-spacing:25.320000px;}
._8{margin-left:-45.000000px;}
._a{margin-left:-19.920000px;}
._d{margin-left:-17.040000px;}
._4{margin-left:-9.324000px;}
._6{margin-left:-7.492800px;}
._3{margin-left:-6.150600px;}
._5{margin-left:-4.628400px;}
._2{margin-left:-2.813400px;}
._1{margin-left:-1.350000px;}
._e{width:2.040000px;}
._9{width:30.000000px;}
._0{width:287.010000px;}
._7{width:289.224000px;}
._c{width:325.222800px;}
._b{width:338.742000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:41.609700px;}
.y3{bottom:56.609700px;}
.y2{bottom:71.609700px;}
.y31{bottom:103.695000px;}
.yf9{bottom:106.262250px;}
.yb6{bottom:106.299150px;}
.y5e{bottom:106.462950px;}
.y30{bottom:121.695000px;}
.yf8{bottom:124.262250px;}
.yb5{bottom:124.299150px;}
.y5d{bottom:124.462950px;}
.y2f{bottom:139.695000px;}
.y10e{bottom:142.262250px;}
.yb4{bottom:142.299150px;}
.y5c{bottom:142.462950px;}
.y2e{bottom:157.695000px;}
.yf7{bottom:160.262250px;}
.yb3{bottom:160.299150px;}
.y5b{bottom:160.462950px;}
.y2d{bottom:175.695000px;}
.yf6{bottom:178.262250px;}
.yb2{bottom:178.299150px;}
.y7f{bottom:178.462950px;}
.y2c{bottom:193.695000px;}
.yf5{bottom:196.262250px;}
.yb1{bottom:196.299150px;}
.ya1{bottom:196.462950px;}
.y5a{bottom:200.962950px;}
.y2b{bottom:211.695000px;}
.yf4{bottom:214.262250px;}
.ye4{bottom:214.299150px;}
.ya0{bottom:214.462950px;}
.y7e{bottom:217.462950px;}
.y59{bottom:218.962950px;}
.y2a{bottom:229.695000px;}
.ydb{bottom:230.962950px;}
.yf3{bottom:232.262250px;}
.yb0{bottom:232.299150px;}
.y9f{bottom:232.462950px;}
.y7d{bottom:235.462950px;}
.y58{bottom:236.962950px;}
.y125{bottom:242.962950px;}
.y29{bottom:247.695000px;}
.yf2{bottom:250.262250px;}
.yaf{bottom:250.299150px;}
.y9e{bottom:250.462950px;}
.y7c{bottom:253.462950px;}
.y57{bottom:254.962950px;}
.y124{bottom:260.962950px;}
.yda{bottom:265.462950px;}
.y28{bottom:265.695000px;}
.yf1{bottom:268.262250px;}
.yae{bottom:268.299150px;}
.y9d{bottom:268.462950px;}
.y7b{bottom:271.462950px;}
.y56{bottom:272.962950px;}
.y123{bottom:278.962950px;}
.yd9{bottom:283.462950px;}
.y27{bottom:283.695000px;}
.yf0{bottom:286.262250px;}
.yad{bottom:286.299150px;}
.y9c{bottom:286.462950px;}
.y7a{bottom:289.462950px;}
.y55{bottom:290.962950px;}
.y122{bottom:296.962950px;}
.yd8{bottom:301.462950px;}
.y26{bottom:301.695000px;}
.yef{bottom:304.262250px;}
.yac{bottom:304.299150px;}
.y9b{bottom:304.462950px;}
.y79{bottom:307.462950px;}
.y54{bottom:308.962950px;}
.y121{bottom:314.962950px;}
.yd7{bottom:319.462950px;}
.y25{bottom:319.695000px;}
.yee{bottom:322.262250px;}
.yfe{bottom:322.299150px;}
.y9a{bottom:322.462950px;}
.y53{bottom:326.962950px;}
.y120{bottom:332.962950px;}
.yd6{bottom:337.462950px;}
.y10d{bottom:340.262250px;}
.yab{bottom:340.299150px;}
.y99{bottom:340.462950px;}
.y78{bottom:343.462950px;}
.y52{bottom:344.962950px;}
.y11f{bottom:350.962950px;}
.yd5{bottom:355.462950px;}
.y24{bottom:355.695000px;}
.yed{bottom:358.262250px;}
.yaa{bottom:358.299150px;}
.y98{bottom:358.462950px;}
.y51{bottom:362.962950px;}
.y11e{bottom:368.962950px;}
.y23{bottom:370.695000px;}
.yd4{bottom:373.462950px;}
.yec{bottom:376.262250px;}
.yfd{bottom:376.299150px;}
.y97{bottom:376.462950px;}
.y77{bottom:379.462950px;}
.ye3{bottom:380.799150px;}
.y50{bottom:380.962950px;}
.y22{bottom:385.695000px;}
.y11d{bottom:386.962950px;}
.yd3{bottom:391.462950px;}
.yeb{bottom:394.262250px;}
.ya9{bottom:394.299150px;}
.y96{bottom:394.462950px;}
.y76{bottom:397.462950px;}
.ye2{bottom:398.799150px;}
.y4f{bottom:398.962950px;}
.y21{bottom:400.695000px;}
.y11c{bottom:404.962950px;}
.yd2{bottom:409.462950px;}
.y10c{bottom:412.262250px;}
.yfc{bottom:412.299150px;}
.y95{bottom:412.462950px;}
.y75{bottom:415.462950px;}
.y20{bottom:415.695000px;}
.ye1{bottom:416.799150px;}
.y4e{bottom:416.962950px;}
.y11b{bottom:422.962950px;}
.yd1{bottom:427.462950px;}
.yea{bottom:430.262250px;}
.ya8{bottom:430.299150px;}
.y94{bottom:430.462950px;}
.y1f{bottom:430.695000px;}
.y74{bottom:433.462950px;}
.y4d{bottom:434.962950px;}
.y11a{bottom:440.962950px;}
.yd0{bottom:445.462950px;}
.y1e{bottom:445.695000px;}
.y10b{bottom:448.262250px;}
.ya7{bottom:448.299150px;}
.y93{bottom:448.462950px;}
.y73{bottom:451.462950px;}
.y4c{bottom:452.962950px;}
.ye0{bottom:455.799150px;}
.y119{bottom:458.962950px;}
.y1d{bottom:460.695000px;}
.ycf{bottom:463.462950px;}
.ye9{bottom:466.262250px;}
.ya6{bottom:466.299150px;}
.y92{bottom:466.462950px;}
.y72{bottom:469.462950px;}
.y4b{bottom:470.962950px;}
.ydf{bottom:473.799150px;}
.y1c{bottom:475.695000px;}
.y118{bottom:476.962950px;}
.yce{bottom:481.462950px;}
.ye8{bottom:484.262250px;}
.ya5{bottom:484.299150px;}
.y91{bottom:484.462950px;}
.y71{bottom:487.462950px;}
.y4a{bottom:488.962950px;}
.y1b{bottom:490.695000px;}
.yde{bottom:491.799150px;}
.y117{bottom:494.962950px;}
.ycd{bottom:499.462950px;}
.ye7{bottom:502.262250px;}
.ya4{bottom:502.299150px;}
.y90{bottom:502.462950px;}
.y70{bottom:505.462950px;}
.y1a{bottom:505.695000px;}
.y49{bottom:506.962950px;}
.ydd{bottom:509.799150px;}
.y116{bottom:512.962950px;}
.ycc{bottom:517.462950px;}
.ya3{bottom:520.299150px;}
.y19{bottom:520.695000px;}
.y112{bottom:522.992100px;}
.y6f{bottom:523.462950px;}
.y48{bottom:524.962950px;}
.ydc{bottom:527.799150px;}
.y115{bottom:530.962950px;}
.ycb{bottom:535.462950px;}
.y18{bottom:535.695000px;}
.ya2{bottom:538.299150px;}
.y111{bottom:540.992100px;}
.y6e{bottom:541.462950px;}
.y47{bottom:542.962950px;}
.y8f{bottom:544.462950px;}
.y114{bottom:548.962950px;}
.y17{bottom:550.695000px;}
.yca{bottom:553.462950px;}
.yff{bottom:554.859600px;}
.yfb{bottom:556.359600px;}
.y110{bottom:558.992100px;}
.y6d{bottom:559.462950px;}
.y46{bottom:560.962950px;}
.y8e{bottom:562.462950px;}
.y16{bottom:565.695000px;}
.y10a{bottom:566.962950px;}
.yb9{bottom:570.875400px;}
.yc9{bottom:571.462950px;}
.yfa{bottom:574.359600px;}
.y10f{bottom:576.992100px;}
.y6c{bottom:577.462950px;}
.y45{bottom:578.962950px;}
.y8d{bottom:580.462950px;}
.y15{bottom:580.695000px;}
.y109{bottom:584.962950px;}
.yb8{bottom:588.875400px;}
.yc8{bottom:589.462950px;}
.ye6{bottom:591.367500px;}
.y6b{bottom:595.462950px;}
.y14{bottom:595.695000px;}
.y44{bottom:596.962950px;}
.y8c{bottom:598.462950px;}
.y108{bottom:602.962950px;}
.yb7{bottom:606.875400px;}
.yc7{bottom:607.462950px;}
.ye5{bottom:609.367500px;}
.y13{bottom:610.695000px;}
.y6a{bottom:613.462950px;}
.y43{bottom:614.962950px;}
.y8b{bottom:616.462950px;}
.y107{bottom:620.962950px;}
.yc6{bottom:625.462950px;}
.y12{bottom:625.695000px;}
.y69{bottom:631.462950px;}
.y42{bottom:632.962950px;}
.y8a{bottom:634.462950px;}
.y106{bottom:638.962950px;}
.y11{bottom:640.695000px;}
.yc5{bottom:643.462950px;}
.y68{bottom:649.462950px;}
.y41{bottom:650.962950px;}
.y89{bottom:652.462950px;}
.y10{bottom:655.695000px;}
.y105{bottom:656.962950px;}
.yc4{bottom:661.462950px;}
.y67{bottom:667.462950px;}
.y40{bottom:668.962950px;}
.y88{bottom:670.462950px;}
.yf{bottom:670.695000px;}
.y104{bottom:674.962950px;}
.yc3{bottom:679.462950px;}
.y66{bottom:685.462950px;}
.ye{bottom:685.695000px;}
.y3f{bottom:686.962950px;}
.y87{bottom:688.462950px;}
.y103{bottom:692.962950px;}
.yc2{bottom:697.462950px;}
.yd{bottom:700.695000px;}
.y65{bottom:703.462950px;}
.y3e{bottom:704.962950px;}
.y86{bottom:706.462950px;}
.y102{bottom:710.962950px;}
.y3d{bottom:722.962950px;}
.y85{bottom:724.462950px;}
.y101{bottom:728.962950px;}
.yc1{bottom:731.962950px;}
.yc{bottom:736.695000px;}
.y3c{bottom:740.962950px;}
.y84{bottom:742.462950px;}
.y64{bottom:743.962950px;}
.y113{bottom:746.962950px;}
.yc0{bottom:749.962950px;}
.yb{bottom:750.195000px;}
.y3b{bottom:758.962950px;}
.y63{bottom:761.962950px;}
.ya{bottom:763.695000px;}
.y100{bottom:764.962950px;}
.y62{bottom:779.962950px;}
.y83{bottom:782.962950px;}
.ybf{bottom:784.462950px;}
.y3a{bottom:797.962950px;}
.y9{bottom:798.945000px;}
.y82{bottom:800.962950px;}
.ybe{bottom:802.462950px;}
.y39{bottom:815.962950px;}
.y81{bottom:818.962950px;}
.ybd{bottom:820.462950px;}
.y8{bottom:822.945000px;}
.y38{bottom:833.962950px;}
.y80{bottom:836.962950px;}
.ybc{bottom:838.462950px;}
.y7{bottom:846.945000px;}
.y37{bottom:851.962950px;}
.y61{bottom:854.962950px;}
.ybb{bottom:856.462950px;}
.y36{bottom:869.962950px;}
.y6{bottom:870.945000px;}
.y60{bottom:872.962950px;}
.yba{bottom:874.462950px;}
.y5f{bottom:890.962950px;}
.y5{bottom:894.945000px;}
.y35{bottom:908.962950px;}
.y34{bottom:926.962950px;}
.y33{bottom:944.962950px;}
.y32{bottom:982.799400px;}
.y1{bottom:985.129800px;}
.h3{height:33.024000px;}
.h2{height:37.044000px;}
.h5{height:37.152000px;}
.h6{height:41.280000px;}
.h7{height:45.408000px;}
.h8{height:48.696000px;}
.h4{height:57.792000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w1{width:744.000000px;}
.w0{width:744.094500px;}
.x0{left:0.000000px;}
.x1{left:95.669250px;}
.x3{left:97.381500px;}
.x2{left:101.970150px;}
.x4{left:111.440550px;}
.xb{left:121.169250px;}
.x12{left:122.669250px;}
.x16{left:128.669250px;}
.xd{left:130.319250px;}
.x13{left:137.494500px;}
.x10{left:146.669250px;}
.xf{left:154.335750px;}
.x7{left:190.255650px;}
.xc{left:235.166250px;}
.x8{left:269.232450px;}
.x5{left:292.143450px;}
.xe{left:306.228300px;}
.xa{left:307.893300px;}
.x14{left:312.048000px;}
.x15{left:324.955200px;}
.x6{left:329.556000px;}
.x11{left:332.042550px;}
.x9{left:337.062450px;}
@media print{
.v1{vertical-align:-17.599467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.600000pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.813333pt;}
.ws9b{word-spacing:-15.146667pt;}
.ws20{word-spacing:-14.666667pt;}
.ws3d{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws21{word-spacing:-9.333333pt;}
.ws70{word-spacing:-4.213333pt;}
.ws9a{word-spacing:-3.573333pt;}
.ws96{word-spacing:-3.306667pt;}
.ws85{word-spacing:-3.040000pt;}
.ws5{word-spacing:-2.880000pt;}
.ws4f{word-spacing:-2.826667pt;}
.ws8a{word-spacing:-2.720000pt;}
.ws8b{word-spacing:-2.666667pt;}
.ws3f{word-spacing:-2.506667pt;}
.ws32{word-spacing:-2.453333pt;}
.ws68{word-spacing:-2.400000pt;}
.ws4c{word-spacing:-2.346667pt;}
.ws11{word-spacing:-2.304000pt;}
.ws7b{word-spacing:-2.186667pt;}
.ws6b{word-spacing:-2.133333pt;}
.ws7c{word-spacing:-2.080000pt;}
.wsaa{word-spacing:-1.973333pt;}
.ws46{word-spacing:-1.920000pt;}
.ws5d{word-spacing:-1.866667pt;}
.ws4{word-spacing:-1.728000pt;}
.ws97{word-spacing:-1.706667pt;}
.ws79{word-spacing:-1.653333pt;}
.ws2f{word-spacing:-1.600000pt;}
.wsa4{word-spacing:-1.493333pt;}
.ws12{word-spacing:-1.488000pt;}
.wse{word-spacing:-1.440000pt;}
.ws45{word-spacing:-1.386667pt;}
.ws2a{word-spacing:-1.333333pt;}
.ws4d{word-spacing:-1.226667pt;}
.ws8c{word-spacing:-1.173333pt;}
.ws93{word-spacing:-1.120000pt;}
.ws4b{word-spacing:-1.066667pt;}
.ws2e{word-spacing:-1.013333pt;}
.ws42{word-spacing:-0.960000pt;}
.ws41{word-spacing:-0.906667pt;}
.ws8{word-spacing:-0.864000pt;}
.ws1f{word-spacing:-0.853333pt;}
.ws5c{word-spacing:-0.800000pt;}
.ws58{word-spacing:-0.746667pt;}
.ws59{word-spacing:-0.693333pt;}
.ws80{word-spacing:-0.640000pt;}
.ws61{word-spacing:-0.533333pt;}
.ws28{word-spacing:-0.480000pt;}
.ws1d{word-spacing:-0.426667pt;}
.ws14{word-spacing:-0.384000pt;}
.ws1a{word-spacing:-0.373333pt;}
.wsb{word-spacing:-0.336000pt;}
.ws5e{word-spacing:-0.320000pt;}
.ws2c{word-spacing:-0.266667pt;}
.ws38{word-spacing:-0.213333pt;}
.ws86{word-spacing:-0.160000pt;}
.ws84{word-spacing:-0.106667pt;}
.ws89{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.053333pt;}
.ws24{word-spacing:0.106667pt;}
.ws35{word-spacing:0.160000pt;}
.ws52{word-spacing:0.213333pt;}
.ws3a{word-spacing:0.266667pt;}
.ws15{word-spacing:0.288000pt;}
.ws29{word-spacing:0.320000pt;}
.wsd{word-spacing:0.432000pt;}
.ws66{word-spacing:0.480000pt;}
.wsa{word-spacing:0.528000pt;}
.ws2d{word-spacing:0.533333pt;}
.ws3{word-spacing:0.576000pt;}
.ws23{word-spacing:0.640000pt;}
.ws19{word-spacing:0.693333pt;}
.ws82{word-spacing:0.746667pt;}
.ws7{word-spacing:0.768000pt;}
.ws37{word-spacing:0.800000pt;}
.ws54{word-spacing:0.906667pt;}
.ws7d{word-spacing:0.960000pt;}
.ws47{word-spacing:1.066667pt;}
.ws65{word-spacing:1.120000pt;}
.ws73{word-spacing:1.173333pt;}
.ws71{word-spacing:1.226667pt;}
.ws69{word-spacing:1.280000pt;}
.ws64{word-spacing:1.333333pt;}
.ws7a{word-spacing:1.386667pt;}
.ws3e{word-spacing:1.440000pt;}
.ws6e{word-spacing:1.493333pt;}
.wsf{word-spacing:1.536000pt;}
.ws27{word-spacing:1.600000pt;}
.ws55{word-spacing:1.813333pt;}
.ws9{word-spacing:1.824000pt;}
.wsc{word-spacing:1.920000pt;}
.ws6c{word-spacing:1.973333pt;}
.ws33{word-spacing:2.080000pt;}
.ws6{word-spacing:2.112000pt;}
.ws57{word-spacing:2.186667pt;}
.ws62{word-spacing:2.240000pt;}
.ws1b{word-spacing:2.293333pt;}
.wsa9{word-spacing:2.346667pt;}
.ws3c{word-spacing:2.389333pt;}
.ws2{word-spacing:2.400000pt;}
.ws30{word-spacing:2.453333pt;}
.ws8d{word-spacing:2.506667pt;}
.ws44{word-spacing:2.560000pt;}
.ws51{word-spacing:2.613333pt;}
.ws81{word-spacing:2.666667pt;}
.ws31{word-spacing:2.720000pt;}
.wsa6{word-spacing:2.826667pt;}
.ws5a{word-spacing:2.880000pt;}
.ws3b{word-spacing:2.986667pt;}
.ws2b{word-spacing:3.093333pt;}
.ws5f{word-spacing:3.253333pt;}
.ws4a{word-spacing:3.360000pt;}
.ws10{word-spacing:3.408000pt;}
.ws53{word-spacing:3.466667pt;}
.ws6a{word-spacing:3.520000pt;}
.ws67{word-spacing:3.573333pt;}
.ws13{word-spacing:3.600000pt;}
.ws48{word-spacing:3.626667pt;}
.ws43{word-spacing:3.840000pt;}
.ws76{word-spacing:4.000000pt;}
.ws8e{word-spacing:4.053333pt;}
.ws7f{word-spacing:4.106667pt;}
.ws39{word-spacing:4.213333pt;}
.ws92{word-spacing:4.266667pt;}
.ws22{word-spacing:4.320000pt;}
.ws26{word-spacing:4.373333pt;}
.ws9d{word-spacing:4.426667pt;}
.ws50{word-spacing:4.480000pt;}
.ws98{word-spacing:4.533333pt;}
.ws78{word-spacing:4.586667pt;}
.ws8f{word-spacing:4.640000pt;}
.ws77{word-spacing:4.693333pt;}
.ws87{word-spacing:4.800000pt;}
.ws91{word-spacing:4.960000pt;}
.ws74{word-spacing:5.173333pt;}
.ws34{word-spacing:5.333333pt;}
.wsa1{word-spacing:5.493333pt;}
.ws17{word-spacing:5.546667pt;}
.ws88{word-spacing:5.600000pt;}
.ws16{word-spacing:5.653333pt;}
.ws4e{word-spacing:5.760000pt;}
.ws99{word-spacing:5.813333pt;}
.ws72{word-spacing:5.973333pt;}
.ws83{word-spacing:6.186667pt;}
.ws1c{word-spacing:6.240000pt;}
.ws9c{word-spacing:6.400000pt;}
.wsa0{word-spacing:6.453333pt;}
.ws40{word-spacing:6.560000pt;}
.ws75{word-spacing:6.773333pt;}
.ws9f{word-spacing:6.880000pt;}
.ws60{word-spacing:6.933333pt;}
.wsa8{word-spacing:7.040000pt;}
.ws18{word-spacing:7.413333pt;}
.ws36{word-spacing:7.733333pt;}
.ws49{word-spacing:7.840000pt;}
.ws5b{word-spacing:7.893333pt;}
.ws90{word-spacing:7.946667pt;}
.ws95{word-spacing:8.373333pt;}
.ws1e{word-spacing:8.586667pt;}
.ws7e{word-spacing:8.640000pt;}
.ws94{word-spacing:8.746667pt;}
.ws6d{word-spacing:8.853333pt;}
.ws9e{word-spacing:9.333333pt;}
.wsa3{word-spacing:9.600000pt;}
.ws63{word-spacing:9.920000pt;}
.ws56{word-spacing:10.080000pt;}
.ws25{word-spacing:12.640000pt;}
.wsa2{word-spacing:13.333333pt;}
.wsa7{word-spacing:16.693333pt;}
.wsa5{word-spacing:22.506667pt;}
._8{margin-left:-40.000000pt;}
._a{margin-left:-17.706667pt;}
._d{margin-left:-15.146667pt;}
._4{margin-left:-8.288000pt;}
._6{margin-left:-6.660267pt;}
._3{margin-left:-5.467200pt;}
._5{margin-left:-4.114133pt;}
._2{margin-left:-2.500800pt;}
._1{margin-left:-1.200000pt;}
._e{width:1.813333pt;}
._9{width:26.666667pt;}
._0{width:255.120000pt;}
._7{width:257.088000pt;}
._c{width:289.086933pt;}
._b{width:301.104000pt;}
.fs5{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:36.986400pt;}
.y3{bottom:50.319733pt;}
.y2{bottom:63.653067pt;}
.y31{bottom:92.173333pt;}
.yf9{bottom:94.455333pt;}
.yb6{bottom:94.488133pt;}
.y5e{bottom:94.633733pt;}
.y30{bottom:108.173333pt;}
.yf8{bottom:110.455333pt;}
.yb5{bottom:110.488133pt;}
.y5d{bottom:110.633733pt;}
.y2f{bottom:124.173333pt;}
.y10e{bottom:126.455333pt;}
.yb4{bottom:126.488133pt;}
.y5c{bottom:126.633733pt;}
.y2e{bottom:140.173333pt;}
.yf7{bottom:142.455333pt;}
.yb3{bottom:142.488133pt;}
.y5b{bottom:142.633733pt;}
.y2d{bottom:156.173333pt;}
.yf6{bottom:158.455333pt;}
.yb2{bottom:158.488133pt;}
.y7f{bottom:158.633733pt;}
.y2c{bottom:172.173333pt;}
.yf5{bottom:174.455333pt;}
.yb1{bottom:174.488133pt;}
.ya1{bottom:174.633733pt;}
.y5a{bottom:178.633733pt;}
.y2b{bottom:188.173333pt;}
.yf4{bottom:190.455333pt;}
.ye4{bottom:190.488133pt;}
.ya0{bottom:190.633733pt;}
.y7e{bottom:193.300400pt;}
.y59{bottom:194.633733pt;}
.y2a{bottom:204.173333pt;}
.ydb{bottom:205.300400pt;}
.yf3{bottom:206.455333pt;}
.yb0{bottom:206.488133pt;}
.y9f{bottom:206.633733pt;}
.y7d{bottom:209.300400pt;}
.y58{bottom:210.633733pt;}
.y125{bottom:215.967067pt;}
.y29{bottom:220.173333pt;}
.yf2{bottom:222.455333pt;}
.yaf{bottom:222.488133pt;}
.y9e{bottom:222.633733pt;}
.y7c{bottom:225.300400pt;}
.y57{bottom:226.633733pt;}
.y124{bottom:231.967067pt;}
.yda{bottom:235.967067pt;}
.y28{bottom:236.173333pt;}
.yf1{bottom:238.455333pt;}
.yae{bottom:238.488133pt;}
.y9d{bottom:238.633733pt;}
.y7b{bottom:241.300400pt;}
.y56{bottom:242.633733pt;}
.y123{bottom:247.967067pt;}
.yd9{bottom:251.967067pt;}
.y27{bottom:252.173333pt;}
.yf0{bottom:254.455333pt;}
.yad{bottom:254.488133pt;}
.y9c{bottom:254.633733pt;}
.y7a{bottom:257.300400pt;}
.y55{bottom:258.633733pt;}
.y122{bottom:263.967067pt;}
.yd8{bottom:267.967067pt;}
.y26{bottom:268.173333pt;}
.yef{bottom:270.455333pt;}
.yac{bottom:270.488133pt;}
.y9b{bottom:270.633733pt;}
.y79{bottom:273.300400pt;}
.y54{bottom:274.633733pt;}
.y121{bottom:279.967067pt;}
.yd7{bottom:283.967067pt;}
.y25{bottom:284.173333pt;}
.yee{bottom:286.455333pt;}
.yfe{bottom:286.488133pt;}
.y9a{bottom:286.633733pt;}
.y53{bottom:290.633733pt;}
.y120{bottom:295.967067pt;}
.yd6{bottom:299.967067pt;}
.y10d{bottom:302.455333pt;}
.yab{bottom:302.488133pt;}
.y99{bottom:302.633733pt;}
.y78{bottom:305.300400pt;}
.y52{bottom:306.633733pt;}
.y11f{bottom:311.967067pt;}
.yd5{bottom:315.967067pt;}
.y24{bottom:316.173333pt;}
.yed{bottom:318.455333pt;}
.yaa{bottom:318.488133pt;}
.y98{bottom:318.633733pt;}
.y51{bottom:322.633733pt;}
.y11e{bottom:327.967067pt;}
.y23{bottom:329.506667pt;}
.yd4{bottom:331.967067pt;}
.yec{bottom:334.455333pt;}
.yfd{bottom:334.488133pt;}
.y97{bottom:334.633733pt;}
.y77{bottom:337.300400pt;}
.ye3{bottom:338.488133pt;}
.y50{bottom:338.633733pt;}
.y22{bottom:342.840000pt;}
.y11d{bottom:343.967067pt;}
.yd3{bottom:347.967067pt;}
.yeb{bottom:350.455333pt;}
.ya9{bottom:350.488133pt;}
.y96{bottom:350.633733pt;}
.y76{bottom:353.300400pt;}
.ye2{bottom:354.488133pt;}
.y4f{bottom:354.633733pt;}
.y21{bottom:356.173333pt;}
.y11c{bottom:359.967067pt;}
.yd2{bottom:363.967067pt;}
.y10c{bottom:366.455333pt;}
.yfc{bottom:366.488133pt;}
.y95{bottom:366.633733pt;}
.y75{bottom:369.300400pt;}
.y20{bottom:369.506667pt;}
.ye1{bottom:370.488133pt;}
.y4e{bottom:370.633733pt;}
.y11b{bottom:375.967067pt;}
.yd1{bottom:379.967067pt;}
.yea{bottom:382.455333pt;}
.ya8{bottom:382.488133pt;}
.y94{bottom:382.633733pt;}
.y1f{bottom:382.840000pt;}
.y74{bottom:385.300400pt;}
.y4d{bottom:386.633733pt;}
.y11a{bottom:391.967067pt;}
.yd0{bottom:395.967067pt;}
.y1e{bottom:396.173333pt;}
.y10b{bottom:398.455333pt;}
.ya7{bottom:398.488133pt;}
.y93{bottom:398.633733pt;}
.y73{bottom:401.300400pt;}
.y4c{bottom:402.633733pt;}
.ye0{bottom:405.154800pt;}
.y119{bottom:407.967067pt;}
.y1d{bottom:409.506667pt;}
.ycf{bottom:411.967067pt;}
.ye9{bottom:414.455333pt;}
.ya6{bottom:414.488133pt;}
.y92{bottom:414.633733pt;}
.y72{bottom:417.300400pt;}
.y4b{bottom:418.633733pt;}
.ydf{bottom:421.154800pt;}
.y1c{bottom:422.840000pt;}
.y118{bottom:423.967067pt;}
.yce{bottom:427.967067pt;}
.ye8{bottom:430.455333pt;}
.ya5{bottom:430.488133pt;}
.y91{bottom:430.633733pt;}
.y71{bottom:433.300400pt;}
.y4a{bottom:434.633733pt;}
.y1b{bottom:436.173333pt;}
.yde{bottom:437.154800pt;}
.y117{bottom:439.967067pt;}
.ycd{bottom:443.967067pt;}
.ye7{bottom:446.455333pt;}
.ya4{bottom:446.488133pt;}
.y90{bottom:446.633733pt;}
.y70{bottom:449.300400pt;}
.y1a{bottom:449.506667pt;}
.y49{bottom:450.633733pt;}
.ydd{bottom:453.154800pt;}
.y116{bottom:455.967067pt;}
.ycc{bottom:459.967067pt;}
.ya3{bottom:462.488133pt;}
.y19{bottom:462.840000pt;}
.y112{bottom:464.881867pt;}
.y6f{bottom:465.300400pt;}
.y48{bottom:466.633733pt;}
.ydc{bottom:469.154800pt;}
.y115{bottom:471.967067pt;}
.ycb{bottom:475.967067pt;}
.y18{bottom:476.173333pt;}
.ya2{bottom:478.488133pt;}
.y111{bottom:480.881867pt;}
.y6e{bottom:481.300400pt;}
.y47{bottom:482.633733pt;}
.y8f{bottom:483.967067pt;}
.y114{bottom:487.967067pt;}
.y17{bottom:489.506667pt;}
.yca{bottom:491.967067pt;}
.yff{bottom:493.208533pt;}
.yfb{bottom:494.541867pt;}
.y110{bottom:496.881867pt;}
.y6d{bottom:497.300400pt;}
.y46{bottom:498.633733pt;}
.y8e{bottom:499.967067pt;}
.y16{bottom:502.840000pt;}
.y10a{bottom:503.967067pt;}
.yb9{bottom:507.444800pt;}
.yc9{bottom:507.967067pt;}
.yfa{bottom:510.541867pt;}
.y10f{bottom:512.881867pt;}
.y6c{bottom:513.300400pt;}
.y45{bottom:514.633733pt;}
.y8d{bottom:515.967067pt;}
.y15{bottom:516.173333pt;}
.y109{bottom:519.967067pt;}
.yb8{bottom:523.444800pt;}
.yc8{bottom:523.967067pt;}
.ye6{bottom:525.660000pt;}
.y6b{bottom:529.300400pt;}
.y14{bottom:529.506667pt;}
.y44{bottom:530.633733pt;}
.y8c{bottom:531.967067pt;}
.y108{bottom:535.967067pt;}
.yb7{bottom:539.444800pt;}
.yc7{bottom:539.967067pt;}
.ye5{bottom:541.660000pt;}
.y13{bottom:542.840000pt;}
.y6a{bottom:545.300400pt;}
.y43{bottom:546.633733pt;}
.y8b{bottom:547.967067pt;}
.y107{bottom:551.967067pt;}
.yc6{bottom:555.967067pt;}
.y12{bottom:556.173333pt;}
.y69{bottom:561.300400pt;}
.y42{bottom:562.633733pt;}
.y8a{bottom:563.967067pt;}
.y106{bottom:567.967067pt;}
.y11{bottom:569.506667pt;}
.yc5{bottom:571.967067pt;}
.y68{bottom:577.300400pt;}
.y41{bottom:578.633733pt;}
.y89{bottom:579.967067pt;}
.y10{bottom:582.840000pt;}
.y105{bottom:583.967067pt;}
.yc4{bottom:587.967067pt;}
.y67{bottom:593.300400pt;}
.y40{bottom:594.633733pt;}
.y88{bottom:595.967067pt;}
.yf{bottom:596.173333pt;}
.y104{bottom:599.967067pt;}
.yc3{bottom:603.967067pt;}
.y66{bottom:609.300400pt;}
.ye{bottom:609.506667pt;}
.y3f{bottom:610.633733pt;}
.y87{bottom:611.967067pt;}
.y103{bottom:615.967067pt;}
.yc2{bottom:619.967067pt;}
.yd{bottom:622.840000pt;}
.y65{bottom:625.300400pt;}
.y3e{bottom:626.633733pt;}
.y86{bottom:627.967067pt;}
.y102{bottom:631.967067pt;}
.y3d{bottom:642.633733pt;}
.y85{bottom:643.967067pt;}
.y101{bottom:647.967067pt;}
.yc1{bottom:650.633733pt;}
.yc{bottom:654.840000pt;}
.y3c{bottom:658.633733pt;}
.y84{bottom:659.967067pt;}
.y64{bottom:661.300400pt;}
.y113{bottom:663.967067pt;}
.yc0{bottom:666.633733pt;}
.yb{bottom:666.840000pt;}
.y3b{bottom:674.633733pt;}
.y63{bottom:677.300400pt;}
.ya{bottom:678.840000pt;}
.y100{bottom:679.967067pt;}
.y62{bottom:693.300400pt;}
.y83{bottom:695.967067pt;}
.ybf{bottom:697.300400pt;}
.y3a{bottom:709.300400pt;}
.y9{bottom:710.173333pt;}
.y82{bottom:711.967067pt;}
.ybe{bottom:713.300400pt;}
.y39{bottom:725.300400pt;}
.y81{bottom:727.967067pt;}
.ybd{bottom:729.300400pt;}
.y8{bottom:731.506667pt;}
.y38{bottom:741.300400pt;}
.y80{bottom:743.967067pt;}
.ybc{bottom:745.300400pt;}
.y7{bottom:752.840000pt;}
.y37{bottom:757.300400pt;}
.y61{bottom:759.967067pt;}
.ybb{bottom:761.300400pt;}
.y36{bottom:773.300400pt;}
.y6{bottom:774.173333pt;}
.y60{bottom:775.967067pt;}
.yba{bottom:777.300400pt;}
.y5f{bottom:791.967067pt;}
.y5{bottom:795.506667pt;}
.y35{bottom:807.967067pt;}
.y34{bottom:823.967067pt;}
.y33{bottom:839.967067pt;}
.y32{bottom:873.599467pt;}
.y1{bottom:875.670933pt;}
.h3{height:29.354667pt;}
.h2{height:32.928000pt;}
.h5{height:33.024000pt;}
.h6{height:36.693333pt;}
.h7{height:40.362667pt;}
.h8{height:43.285333pt;}
.h4{height:51.370667pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w1{width:661.333333pt;}
.w0{width:661.417333pt;}
.x0{left:0.000000pt;}
.x1{left:85.039333pt;}
.x3{left:86.561333pt;}
.x2{left:90.640133pt;}
.x4{left:99.058267pt;}
.xb{left:107.706000pt;}
.x12{left:109.039333pt;}
.x16{left:114.372667pt;}
.xd{left:115.839333pt;}
.x13{left:122.217333pt;}
.x10{left:130.372667pt;}
.xf{left:137.187333pt;}
.x7{left:169.116133pt;}
.xc{left:209.036667pt;}
.x8{left:239.317733pt;}
.x5{left:259.683067pt;}
.xe{left:272.202933pt;}
.xa{left:273.682933pt;}
.x14{left:277.376000pt;}
.x15{left:288.849067pt;}
.x6{left:292.938667pt;}
.x11{left:295.148933pt;}
.x9{left:299.611067pt;}
}




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