
    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_2792358a09bee1829f5d6286.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_bab8cb933583ba6eeacb5ff0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_0f13d45945bb94a2afd54d18.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_006cee9347da058d57ee5c8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_71120a9b20a31d638da24414.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_6c200ccb605699b350c02482.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7760049c5c253072ab4a6070.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2b011cd851c111b937fef791.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:30.240000px;}
.ls6{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.702000px;}
.lsf{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.720000px;}
.lse{letter-spacing:25.308000px;}
.lsd{letter-spacing:52.668000px;}
.ls1{letter-spacing:1393.860000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-59.904000px;}
.ws5{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.431360px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.284000px;}
.ws8{word-spacing:-12.798000px;}
.ws7{word-spacing:0.000000px;}
._8{margin-left:-1393.860000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._10{width:2.028000px;}
._18{width:3.989520px;}
._b{width:5.184000px;}
._c{width:6.450000px;}
._16{width:8.100000px;}
._e{width:9.378000px;}
._f{width:10.854000px;}
._15{width:12.474000px;}
._19{width:13.938000px;}
._14{width:15.228000px;}
._11{width:16.308000px;}
._d{width:18.036000px;}
._9{width:19.062000px;}
._a{width:20.136000px;}
._1a{width:21.330000px;}
._1b{width:22.356000px;}
._1e{width:23.706000px;}
._1c{width:24.786000px;}
._1d{width:25.968000px;}
._20{width:27.270000px;}
._1f{width:28.296000px;}
._26{width:30.024000px;}
._17{width:31.320000px;}
._28{width:32.454000px;}
._24{width:33.480000px;}
._2d{width:34.884000px;}
._31{width:36.126000px;}
._2b{width:37.638000px;}
._2a{width:38.880000px;}
._21{width:40.158000px;}
._22{width:41.202000px;}
._25{width:42.498000px;}
._29{width:44.388000px;}
._2f{width:45.522000px;}
._2e{width:46.818000px;}
._2c{width:48.114000px;}
._27{width:49.524000px;}
._23{width:51.462000px;}
._13{width:52.812000px;}
._12{width:54.162000px;}
._30{width:55.836000px;}
._32{width:57.240000px;}
._34{width:69.696000px;}
._33{width:70.938000px;}
._3{width:78.192000px;}
._5{width:121.140000px;}
._4{width:157.860000px;}
._2{width:1032.240000px;}
._6{width:1383.420000px;}
._7{width:1393.860000px;}
.fc7{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y3b{bottom:-8.970000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y38{bottom:66.990000px;}
.y37{bottom:86.970000px;}
.y36{bottom:106.770000px;}
.y77{bottom:107.100000px;}
.y160{bottom:108.000000px;}
.ycc{bottom:108.180000px;}
.y2e{bottom:112.500000px;}
.y110{bottom:115.560000px;}
.y108{bottom:115.920000px;}
.ye3{bottom:116.100000px;}
.y76{bottom:125.100000px;}
.ycb{bottom:126.000000px;}
.y35{bottom:126.570000px;}
.y2d{bottom:130.320000px;}
.y107{bottom:133.740000px;}
.ye2{bottom:133.920000px;}
.y10f{bottom:142.380000px;}
.y133{bottom:142.740000px;}
.y75{bottom:142.920000px;}
.y15a{bottom:143.820000px;}
.yca{bottom:144.000000px;}
.y34{bottom:146.370000px;}
.y2c{bottom:148.140000px;}
.y106{bottom:151.200000px;}
.y13b{bottom:151.560000px;}
.y132{bottom:160.560000px;}
.y74{bottom:160.740000px;}
.y159{bottom:161.640000px;}
.yad{bottom:161.820000px;}
.y2b{bottom:165.960000px;}
.y33{bottom:166.215000px;}
.y105{bottom:169.020000px;}
.y13a{bottom:169.380000px;}
.y10e{bottom:169.560000px;}
.y131{bottom:178.380000px;}
.y73{bottom:178.560000px;}
.y158{bottom:179.460000px;}
.yac{bottom:179.640000px;}
.y2a{bottom:183.780000px;}
.y32{bottom:186.195000px;}
.y10d{bottom:187.380000px;}
.y104{bottom:195.840000px;}
.y130{bottom:196.200000px;}
.y72{bottom:196.380000px;}
.y157{bottom:197.280000px;}
.yab{bottom:197.460000px;}
.y29{bottom:201.600000px;}
.y10c{bottom:205.200000px;}
.y31{bottom:205.995000px;}
.yd4{bottom:213.870000px;}
.y71{bottom:214.230000px;}
.yaa{bottom:215.310000px;}
.y28{bottom:219.630000px;}
.yda{bottom:223.230000px;}
.y12f{bottom:232.050000px;}
.y70{bottom:232.230000px;}
.y156{bottom:233.130000px;}
.ya9{bottom:233.310000px;}
.y30{bottom:236.235000px;}
.y27{bottom:239.430000px;}
.y103{bottom:241.050000px;}
.yd3{bottom:241.230000px;}
.y12e{bottom:249.870000px;}
.y6f{bottom:250.050000px;}
.y155{bottom:250.950000px;}
.ya8{bottom:251.130000px;}
.y102{bottom:258.870000px;}
.yd2{bottom:259.050000px;}
.y26{bottom:265.170000px;}
.y12d{bottom:267.690000px;}
.y6e{bottom:267.870000px;}
.y154{bottom:268.770000px;}
.ya7{bottom:268.950000px;}
.y101{bottom:276.690000px;}
.yd1{bottom:276.870000px;}
.y139{bottom:285.510000px;}
.ye1{bottom:285.690000px;}
.y153{bottom:286.590000px;}
.ya6{bottom:286.770000px;}
.y2f{bottom:287.820000px;}
.y100{bottom:294.510000px;}
.y6d{bottom:294.690000px;}
.y25{bottom:298.470000px;}
.ye0{bottom:303.510000px;}
.y152{bottom:304.410000px;}
.ya5{bottom:304.590000px;}
.y3a{bottom:305.850000px;}
.y6c{bottom:312.510000px;}
.y138{bottom:321.330000px;}
.ydf{bottom:321.510000px;}
.ya4{bottom:322.410000px;}
.y24{bottom:326.010000px;}
.yff{bottom:330.330000px;}
.y6b{bottom:330.510000px;}
.y39{bottom:335.010000px;}
.yde{bottom:339.330000px;}
.y15f{bottom:340.230000px;}
.ya3{bottom:340.410000px;}
.yfe{bottom:348.150000px;}
.y6a{bottom:348.330000px;}
.y151{bottom:349.230000px;}
.yc9{bottom:349.410000px;}
.y23{bottom:352.830000px;}
.ydd{bottom:356.790000px;}
.y10b{bottom:357.150000px;}
.y15e{bottom:358.050000px;}
.ya2{bottom:358.230000px;}
.yfd{bottom:365.970000px;}
.y69{bottom:366.150000px;}
.y150{bottom:367.050000px;}
.yc8{bottom:367.230000px;}
.y10a{bottom:374.970000px;}
.y15d{bottom:375.870000px;}
.ya1{bottom:376.050000px;}
.y12c{bottom:383.790000px;}
.y68{bottom:383.970000px;}
.y14f{bottom:384.870000px;}
.yc7{bottom:385.050000px;}
.yfc{bottom:392.790000px;}
.y15c{bottom:393.690000px;}
.ya0{bottom:393.870000px;}
.y22{bottom:397.110000px;}
.y12b{bottom:401.610000px;}
.y67{bottom:401.790000px;}
.y14e{bottom:402.690000px;}
.yc6{bottom:402.870000px;}
.yfb{bottom:410.610000px;}
.y9f{bottom:411.690000px;}
.y21{bottom:416.730000px;}
.y66{bottom:419.610000px;}
.yc5{bottom:420.690000px;}
.yfa{bottom:428.610000px;}
.y12a{bottom:437.430000px;}
.y65{bottom:437.610000px;}
.y14d{bottom:438.510000px;}
.y9e{bottom:438.690000px;}
.y15b{bottom:440.535000px;}
.y20{bottom:440.715000px;}
.yf9{bottom:446.475000px;}
.y129{bottom:455.295000px;}
.y64{bottom:455.475000px;}
.y14c{bottom:456.375000px;}
.y9d{bottom:456.555000px;}
.yf8{bottom:464.295000px;}
.y1f{bottom:464.475000px;}
.y128{bottom:473.115000px;}
.y63{bottom:473.295000px;}
.y14b{bottom:474.195000px;}
.y9c{bottom:474.375000px;}
.yf7{bottom:482.115000px;}
.y1e{bottom:488.235000px;}
.y127{bottom:490.575000px;}
.y137{bottom:490.935000px;}
.y62{bottom:491.115000px;}
.y14a{bottom:492.015000px;}
.y9b{bottom:492.195000px;}
.yf6{bottom:499.935000px;}
.y136{bottom:508.575000px;}
.y61{bottom:508.935000px;}
.y149{bottom:509.835000px;}
.y9a{bottom:510.015000px;}
.y1d{bottom:511.995000px;}
.yf5{bottom:517.935000px;}
.y60{bottom:526.935000px;}
.y99{bottom:527.835000px;}
.y170{bottom:531.075000px;}
.yf4{bottom:535.755000px;}
.y1c{bottom:535.935000px;}
.y117{bottom:544.395000px;}
.y5f{bottom:544.755000px;}
.y98{bottom:545.835000px;}
.yf3{bottom:553.575000px;}
.y148{bottom:554.655000px;}
.y16f{bottom:558.435000px;}
.y1b{bottom:559.515000px;}
.y5e{bottom:562.575000px;}
.y97{bottom:563.655000px;}
.y126{bottom:571.395000px;}
.yd0{bottom:571.575000px;}
.y147{bottom:572.475000px;}
.yd9{bottom:580.395000px;}
.y1a{bottom:581.295000px;}
.y96{bottom:581.475000px;}
.y16e{bottom:586.335000px;}
.y125{bottom:589.215000px;}
.y5d{bottom:589.395000px;}
.y146{bottom:590.295000px;}
.yd8{bottom:597.855000px;}
.yf2{bottom:598.215000px;}
.y95{bottom:599.295000px;}
.y124{bottom:607.035000px;}
.y5c{bottom:607.215000px;}
.y19{bottom:607.575000px;}
.y145{bottom:608.115000px;}
.yc4{bottom:608.295000px;}
.y16d{bottom:614.235000px;}
.yd7{bottom:615.675000px;}
.yf1{bottom:616.035000px;}
.y94{bottom:617.115000px;}
.y5b{bottom:625.035000px;}
.yc3{bottom:626.115000px;}
.yf0{bottom:634.035000px;}
.y93{bottom:635.115000px;}
.y18{bottom:638.355000px;}
.y16c{bottom:642.315000px;}
.y123{bottom:642.855000px;}
.y5a{bottom:643.035000px;}
.y144{bottom:643.935000px;}
.yc2{bottom:644.115000px;}
.yef{bottom:651.855000px;}
.y92{bottom:652.935000px;}
.y135{bottom:660.675000px;}
.y59{bottom:660.855000px;}
.y143{bottom:661.755000px;}
.yc1{bottom:661.935000px;}
.yee{bottom:669.675000px;}
.y91{bottom:670.755000px;}
.y58{bottom:678.705000px;}
.y142{bottom:679.605000px;}
.yc0{bottom:679.785000px;}
.y17{bottom:682.845000px;}
.y109{bottom:687.165000px;}
.yed{bottom:687.525000px;}
.y90{bottom:688.605000px;}
.y57{bottom:696.525000px;}
.y141{bottom:697.425000px;}
.ybf{bottom:697.605000px;}
.yec{bottom:705.345000px;}
.y8f{bottom:706.425000px;}
.y56{bottom:714.345000px;}
.y140{bottom:715.245000px;}
.ybe{bottom:715.425000px;}
.yeb{bottom:723.165000px;}
.y16b{bottom:723.345000px;}
.y8e{bottom:724.245000px;}
.y55{bottom:732.165000px;}
.ybd{bottom:733.245000px;}
.y16{bottom:734.145000px;}
.yea{bottom:741.165000px;}
.y8d{bottom:742.245000px;}
.y54{bottom:750.165000px;}
.y13f{bottom:751.065000px;}
.ybc{bottom:751.245000px;}
.ye9{bottom:758.985000px;}
.y53{bottom:767.985000px;}
.y16a{bottom:768.165000px;}
.y13e{bottom:768.885000px;}
.y8c{bottom:769.065000px;}
.ye8{bottom:776.805000px;}
.y116{bottom:776.985000px;}
.y15{bottom:784.905000px;}
.y52{bottom:785.805000px;}
.y169{bottom:785.985000px;}
.y8b{bottom:786.885000px;}
.y13d{bottom:788.685000px;}
.ye7{bottom:794.625000px;}
.y115{bottom:794.805000px;}
.y51{bottom:803.625000px;}
.y168{bottom:803.805000px;}
.y8a{bottom:804.705000px;}
.ye6{bottom:812.085000px;}
.y122{bottom:812.445000px;}
.y14{bottom:812.625000px;}
.y50{bottom:821.445000px;}
.y167{bottom:821.625000px;}
.y89{bottom:822.525000px;}
.ycf{bottom:830.445000px;}
.ye5{bottom:839.085000px;}
.y4f{bottom:839.445000px;}
.y88{bottom:840.345000px;}
.yce{bottom:848.445000px;}
.yd6{bottom:857.265000px;}
.y166{bottom:857.445000px;}
.y87{bottom:858.345000px;}
.y4e{bottom:866.265000px;}
.y13{bottom:867.705000px;}
.yd5{bottom:875.085000px;}
.y165{bottom:875.265000px;}
.y86{bottom:876.165000px;}
.y4d{bottom:884.085000px;}
.y12{bottom:890.565000px;}
.y121{bottom:892.905000px;}
.y164{bottom:893.085000px;}
.y85{bottom:893.985000px;}
.y4c{bottom:901.905000px;}
.y11{bottom:907.845000px;}
.y120{bottom:910.770000px;}
.y163{bottom:910.950000px;}
.y84{bottom:911.850000px;}
.y4b{bottom:919.770000px;}
.y10{bottom:925.350000px;}
.y11f{bottom:928.590000px;}
.y162{bottom:928.770000px;}
.ybb{bottom:929.310000px;}
.y83{bottom:929.670000px;}
.y4a{bottom:937.590000px;}
.yf{bottom:943.710000px;}
.y11e{bottom:946.590000px;}
.y82{bottom:947.670000px;}
.y49{bottom:955.590000px;}
.yba{bottom:956.670000px;}
.ye{bottom:961.350000px;}
.y11d{bottom:964.410000px;}
.y161{bottom:964.590000px;}
.y81{bottom:965.490000px;}
.y48{bottom:973.410000px;}
.yb9{bottom:974.490000px;}
.yd{bottom:978.990000px;}
.y11c{bottom:982.230000px;}
.y114{bottom:982.410000px;}
.y80{bottom:983.310000px;}
.y47{bottom:991.230000px;}
.yb8{bottom:992.310000px;}
.yc{bottom:998.070000px;}
.y11b{bottom:1000.050000px;}
.y113{bottom:1000.230000px;}
.y7f{bottom:1001.130000px;}
.y46{bottom:1009.050000px;}
.yb{bottom:1010.130000px;}
.y134{bottom:1017.510000px;}
.y11a{bottom:1017.870000px;}
.y112{bottom:1018.050000px;}
.y7e{bottom:1018.950000px;}
.ya{bottom:1022.190000px;}
.y45{bottom:1026.870000px;}
.yb7{bottom:1027.950000px;}
.y9{bottom:1034.250000px;}
.y119{bottom:1035.510000px;}
.y111{bottom:1035.870000px;}
.y7d{bottom:1036.770000px;}
.ydc{bottom:1044.510000px;}
.y44{bottom:1044.870000px;}
.yb6{bottom:1045.770000px;}
.y8{bottom:1046.310000px;}
.ye4{bottom:1053.870000px;}
.y7c{bottom:1056.750000px;}
.y7{bottom:1060.890000px;}
.y118{bottom:1062.330000px;}
.y43{bottom:1062.690000px;}
.yb5{bottom:1063.770000px;}
.ydb{bottom:1071.690000px;}
.y42{bottom:1080.510000px;}
.yb4{bottom:1081.590000px;}
.y6{bottom:1086.450000px;}
.y7b{bottom:1089.510000px;}
.ycd{bottom:1097.970000px;}
.y41{bottom:1098.330000px;}
.yb3{bottom:1099.410000px;}
.y7a{bottom:1107.330000px;}
.y40{bottom:1116.150000px;}
.yb2{bottom:1117.230000px;}
.y79{bottom:1125.150000px;}
.y13c{bottom:1133.610000px;}
.y3f{bottom:1133.970000px;}
.yb1{bottom:1135.050000px;}
.y78{bottom:1142.970000px;}
.yb0{bottom:1153.080000px;}
.y3e{bottom:1161.000000px;}
.yaf{bottom:1170.900000px;}
.y3d{bottom:1178.820000px;}
.yae{bottom:1190.700000px;}
.y3c{bottom:1196.640000px;}
.h2{height:31.135500px;}
.h7{height:40.985156px;}
.h16{height:48.410156px;}
.h15{height:52.971680px;}
.h3{height:52.998047px;}
.h10{height:53.709961px;}
.hf{height:54.421875px;}
.h17{height:55.503491px;}
.h13{height:58.621992px;}
.h9{height:58.651172px;}
.h14{height:58.763250px;}
.ha{height:60.226875px;}
.hb{height:65.010937px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.hd{height:72.326250px;}
.h8{height:72.562500px;}
.h11{height:78.367500px;}
.hc{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.h12{height:263.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x12{left:10.800000px;}
.x11{left:39.240000px;}
.x1{left:45.364500px;}
.x13{left:50.040000px;}
.x5{left:54.000000px;}
.x14{left:81.000000px;}
.x15{left:108.036000px;}
.xb{left:111.996000px;}
.xe{left:209.370000px;}
.x2{left:222.370500px;}
.xc{left:239.070000px;}
.x8{left:280.155000px;}
.x9{left:291.495000px;}
.x7{left:294.735000px;}
.xf{left:314.355000px;}
.xd{left:359.355000px;}
.x6{left:365.295000px;}
.xa{left:378.795000px;}
.x10{left:473.505000px;}
.x16{left:500.505000px;}
.x17{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.624000pt;}
.lsf{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.640000pt;}
.lse{letter-spacing:22.496000pt;}
.lsd{letter-spacing:46.816000pt;}
.ls1{letter-spacing:1238.986667pt;}
.ws6{word-spacing:-53.248000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.272320pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.808000pt;}
.ws8{word-spacing:-11.376000pt;}
.ws7{word-spacing:0.000000pt;}
._8{margin-left:-1238.986667pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._10{width:1.802667pt;}
._18{width:3.546240pt;}
._b{width:4.608000pt;}
._c{width:5.733333pt;}
._16{width:7.200000pt;}
._e{width:8.336000pt;}
._f{width:9.648000pt;}
._15{width:11.088000pt;}
._19{width:12.389333pt;}
._14{width:13.536000pt;}
._11{width:14.496000pt;}
._d{width:16.032000pt;}
._9{width:16.944000pt;}
._a{width:17.898667pt;}
._1a{width:18.960000pt;}
._1b{width:19.872000pt;}
._1e{width:21.072000pt;}
._1c{width:22.032000pt;}
._1d{width:23.082667pt;}
._20{width:24.240000pt;}
._1f{width:25.152000pt;}
._26{width:26.688000pt;}
._17{width:27.840000pt;}
._28{width:28.848000pt;}
._24{width:29.760000pt;}
._2d{width:31.008000pt;}
._31{width:32.112000pt;}
._2b{width:33.456000pt;}
._2a{width:34.560000pt;}
._21{width:35.696000pt;}
._22{width:36.624000pt;}
._25{width:37.776000pt;}
._29{width:39.456000pt;}
._2f{width:40.464000pt;}
._2e{width:41.616000pt;}
._2c{width:42.768000pt;}
._27{width:44.021333pt;}
._23{width:45.744000pt;}
._13{width:46.944000pt;}
._12{width:48.144000pt;}
._30{width:49.632000pt;}
._32{width:50.880000pt;}
._34{width:61.952000pt;}
._33{width:63.056000pt;}
._3{width:69.504000pt;}
._5{width:107.680000pt;}
._4{width:140.320000pt;}
._2{width:917.546667pt;}
._6{width:1229.706667pt;}
._7{width:1238.986667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y3b{bottom:-7.973333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y38{bottom:59.546667pt;}
.y37{bottom:77.306667pt;}
.y36{bottom:94.906667pt;}
.y77{bottom:95.200000pt;}
.y160{bottom:96.000000pt;}
.ycc{bottom:96.160000pt;}
.y2e{bottom:100.000000pt;}
.y110{bottom:102.720000pt;}
.y108{bottom:103.040000pt;}
.ye3{bottom:103.200000pt;}
.y76{bottom:111.200000pt;}
.ycb{bottom:112.000000pt;}
.y35{bottom:112.506667pt;}
.y2d{bottom:115.840000pt;}
.y107{bottom:118.880000pt;}
.ye2{bottom:119.040000pt;}
.y10f{bottom:126.560000pt;}
.y133{bottom:126.880000pt;}
.y75{bottom:127.040000pt;}
.y15a{bottom:127.840000pt;}
.yca{bottom:128.000000pt;}
.y34{bottom:130.106667pt;}
.y2c{bottom:131.680000pt;}
.y106{bottom:134.400000pt;}
.y13b{bottom:134.720000pt;}
.y132{bottom:142.720000pt;}
.y74{bottom:142.880000pt;}
.y159{bottom:143.680000pt;}
.yad{bottom:143.840000pt;}
.y2b{bottom:147.520000pt;}
.y33{bottom:147.746667pt;}
.y105{bottom:150.240000pt;}
.y13a{bottom:150.560000pt;}
.y10e{bottom:150.720000pt;}
.y131{bottom:158.560000pt;}
.y73{bottom:158.720000pt;}
.y158{bottom:159.520000pt;}
.yac{bottom:159.680000pt;}
.y2a{bottom:163.360000pt;}
.y32{bottom:165.506667pt;}
.y10d{bottom:166.560000pt;}
.y104{bottom:174.080000pt;}
.y130{bottom:174.400000pt;}
.y72{bottom:174.560000pt;}
.y157{bottom:175.360000pt;}
.yab{bottom:175.520000pt;}
.y29{bottom:179.200000pt;}
.y10c{bottom:182.400000pt;}
.y31{bottom:183.106667pt;}
.yd4{bottom:190.106667pt;}
.y71{bottom:190.426667pt;}
.yaa{bottom:191.386667pt;}
.y28{bottom:195.226667pt;}
.yda{bottom:198.426667pt;}
.y12f{bottom:206.266667pt;}
.y70{bottom:206.426667pt;}
.y156{bottom:207.226667pt;}
.ya9{bottom:207.386667pt;}
.y30{bottom:209.986667pt;}
.y27{bottom:212.826667pt;}
.y103{bottom:214.266667pt;}
.yd3{bottom:214.426667pt;}
.y12e{bottom:222.106667pt;}
.y6f{bottom:222.266667pt;}
.y155{bottom:223.066667pt;}
.ya8{bottom:223.226667pt;}
.y102{bottom:230.106667pt;}
.yd2{bottom:230.266667pt;}
.y26{bottom:235.706667pt;}
.y12d{bottom:237.946667pt;}
.y6e{bottom:238.106667pt;}
.y154{bottom:238.906667pt;}
.ya7{bottom:239.066667pt;}
.y101{bottom:245.946667pt;}
.yd1{bottom:246.106667pt;}
.y139{bottom:253.786667pt;}
.ye1{bottom:253.946667pt;}
.y153{bottom:254.746667pt;}
.ya6{bottom:254.906667pt;}
.y2f{bottom:255.840000pt;}
.y100{bottom:261.786667pt;}
.y6d{bottom:261.946667pt;}
.y25{bottom:265.306667pt;}
.ye0{bottom:269.786667pt;}
.y152{bottom:270.586667pt;}
.ya5{bottom:270.746667pt;}
.y3a{bottom:271.866667pt;}
.y6c{bottom:277.786667pt;}
.y138{bottom:285.626667pt;}
.ydf{bottom:285.786667pt;}
.ya4{bottom:286.586667pt;}
.y24{bottom:289.786667pt;}
.yff{bottom:293.626667pt;}
.y6b{bottom:293.786667pt;}
.y39{bottom:297.786667pt;}
.yde{bottom:301.626667pt;}
.y15f{bottom:302.426667pt;}
.ya3{bottom:302.586667pt;}
.yfe{bottom:309.466667pt;}
.y6a{bottom:309.626667pt;}
.y151{bottom:310.426667pt;}
.yc9{bottom:310.586667pt;}
.y23{bottom:313.626667pt;}
.ydd{bottom:317.146667pt;}
.y10b{bottom:317.466667pt;}
.y15e{bottom:318.266667pt;}
.ya2{bottom:318.426667pt;}
.yfd{bottom:325.306667pt;}
.y69{bottom:325.466667pt;}
.y150{bottom:326.266667pt;}
.yc8{bottom:326.426667pt;}
.y10a{bottom:333.306667pt;}
.y15d{bottom:334.106667pt;}
.ya1{bottom:334.266667pt;}
.y12c{bottom:341.146667pt;}
.y68{bottom:341.306667pt;}
.y14f{bottom:342.106667pt;}
.yc7{bottom:342.266667pt;}
.yfc{bottom:349.146667pt;}
.y15c{bottom:349.946667pt;}
.ya0{bottom:350.106667pt;}
.y22{bottom:352.986667pt;}
.y12b{bottom:356.986667pt;}
.y67{bottom:357.146667pt;}
.y14e{bottom:357.946667pt;}
.yc6{bottom:358.106667pt;}
.yfb{bottom:364.986667pt;}
.y9f{bottom:365.946667pt;}
.y21{bottom:370.426667pt;}
.y66{bottom:372.986667pt;}
.yc5{bottom:373.946667pt;}
.yfa{bottom:380.986667pt;}
.y12a{bottom:388.826667pt;}
.y65{bottom:388.986667pt;}
.y14d{bottom:389.786667pt;}
.y9e{bottom:389.946667pt;}
.y15b{bottom:391.586667pt;}
.y20{bottom:391.746667pt;}
.yf9{bottom:396.866667pt;}
.y129{bottom:404.706667pt;}
.y64{bottom:404.866667pt;}
.y14c{bottom:405.666667pt;}
.y9d{bottom:405.826667pt;}
.yf8{bottom:412.706667pt;}
.y1f{bottom:412.866667pt;}
.y128{bottom:420.546667pt;}
.y63{bottom:420.706667pt;}
.y14b{bottom:421.506667pt;}
.y9c{bottom:421.666667pt;}
.yf7{bottom:428.546667pt;}
.y1e{bottom:433.986667pt;}
.y127{bottom:436.066667pt;}
.y137{bottom:436.386667pt;}
.y62{bottom:436.546667pt;}
.y14a{bottom:437.346667pt;}
.y9b{bottom:437.506667pt;}
.yf6{bottom:444.386667pt;}
.y136{bottom:452.066667pt;}
.y61{bottom:452.386667pt;}
.y149{bottom:453.186667pt;}
.y9a{bottom:453.346667pt;}
.y1d{bottom:455.106667pt;}
.yf5{bottom:460.386667pt;}
.y60{bottom:468.386667pt;}
.y99{bottom:469.186667pt;}
.y170{bottom:472.066667pt;}
.yf4{bottom:476.226667pt;}
.y1c{bottom:476.386667pt;}
.y117{bottom:483.906667pt;}
.y5f{bottom:484.226667pt;}
.y98{bottom:485.186667pt;}
.yf3{bottom:492.066667pt;}
.y148{bottom:493.026667pt;}
.y16f{bottom:496.386667pt;}
.y1b{bottom:497.346667pt;}
.y5e{bottom:500.066667pt;}
.y97{bottom:501.026667pt;}
.y126{bottom:507.906667pt;}
.yd0{bottom:508.066667pt;}
.y147{bottom:508.866667pt;}
.yd9{bottom:515.906667pt;}
.y1a{bottom:516.706667pt;}
.y96{bottom:516.866667pt;}
.y16e{bottom:521.186667pt;}
.y125{bottom:523.746667pt;}
.y5d{bottom:523.906667pt;}
.y146{bottom:524.706667pt;}
.yd8{bottom:531.426667pt;}
.yf2{bottom:531.746667pt;}
.y95{bottom:532.706667pt;}
.y124{bottom:539.586667pt;}
.y5c{bottom:539.746667pt;}
.y19{bottom:540.066667pt;}
.y145{bottom:540.546667pt;}
.yc4{bottom:540.706667pt;}
.y16d{bottom:545.986667pt;}
.yd7{bottom:547.266667pt;}
.yf1{bottom:547.586667pt;}
.y94{bottom:548.546667pt;}
.y5b{bottom:555.586667pt;}
.yc3{bottom:556.546667pt;}
.yf0{bottom:563.586667pt;}
.y93{bottom:564.546667pt;}
.y18{bottom:567.426667pt;}
.y16c{bottom:570.946667pt;}
.y123{bottom:571.426667pt;}
.y5a{bottom:571.586667pt;}
.y144{bottom:572.386667pt;}
.yc2{bottom:572.546667pt;}
.yef{bottom:579.426667pt;}
.y92{bottom:580.386667pt;}
.y135{bottom:587.266667pt;}
.y59{bottom:587.426667pt;}
.y143{bottom:588.226667pt;}
.yc1{bottom:588.386667pt;}
.yee{bottom:595.266667pt;}
.y91{bottom:596.226667pt;}
.y58{bottom:603.293333pt;}
.y142{bottom:604.093333pt;}
.yc0{bottom:604.253333pt;}
.y17{bottom:606.973333pt;}
.y109{bottom:610.813333pt;}
.yed{bottom:611.133333pt;}
.y90{bottom:612.093333pt;}
.y57{bottom:619.133333pt;}
.y141{bottom:619.933333pt;}
.ybf{bottom:620.093333pt;}
.yec{bottom:626.973333pt;}
.y8f{bottom:627.933333pt;}
.y56{bottom:634.973333pt;}
.y140{bottom:635.773333pt;}
.ybe{bottom:635.933333pt;}
.yeb{bottom:642.813333pt;}
.y16b{bottom:642.973333pt;}
.y8e{bottom:643.773333pt;}
.y55{bottom:650.813333pt;}
.ybd{bottom:651.773333pt;}
.y16{bottom:652.573333pt;}
.yea{bottom:658.813333pt;}
.y8d{bottom:659.773333pt;}
.y54{bottom:666.813333pt;}
.y13f{bottom:667.613333pt;}
.ybc{bottom:667.773333pt;}
.ye9{bottom:674.653333pt;}
.y53{bottom:682.653333pt;}
.y16a{bottom:682.813333pt;}
.y13e{bottom:683.453333pt;}
.y8c{bottom:683.613333pt;}
.ye8{bottom:690.493333pt;}
.y116{bottom:690.653333pt;}
.y15{bottom:697.693333pt;}
.y52{bottom:698.493333pt;}
.y169{bottom:698.653333pt;}
.y8b{bottom:699.453333pt;}
.y13d{bottom:701.053333pt;}
.ye7{bottom:706.333333pt;}
.y115{bottom:706.493333pt;}
.y51{bottom:714.333333pt;}
.y168{bottom:714.493333pt;}
.y8a{bottom:715.293333pt;}
.ye6{bottom:721.853333pt;}
.y122{bottom:722.173333pt;}
.y14{bottom:722.333333pt;}
.y50{bottom:730.173333pt;}
.y167{bottom:730.333333pt;}
.y89{bottom:731.133333pt;}
.ycf{bottom:738.173333pt;}
.ye5{bottom:745.853333pt;}
.y4f{bottom:746.173333pt;}
.y88{bottom:746.973333pt;}
.yce{bottom:754.173333pt;}
.yd6{bottom:762.013333pt;}
.y166{bottom:762.173333pt;}
.y87{bottom:762.973333pt;}
.y4e{bottom:770.013333pt;}
.y13{bottom:771.293333pt;}
.yd5{bottom:777.853333pt;}
.y165{bottom:778.013333pt;}
.y86{bottom:778.813333pt;}
.y4d{bottom:785.853333pt;}
.y12{bottom:791.613333pt;}
.y121{bottom:793.693333pt;}
.y164{bottom:793.853333pt;}
.y85{bottom:794.653333pt;}
.y4c{bottom:801.693333pt;}
.y11{bottom:806.973333pt;}
.y120{bottom:809.573333pt;}
.y163{bottom:809.733333pt;}
.y84{bottom:810.533333pt;}
.y4b{bottom:817.573333pt;}
.y10{bottom:822.533333pt;}
.y11f{bottom:825.413333pt;}
.y162{bottom:825.573333pt;}
.ybb{bottom:826.053333pt;}
.y83{bottom:826.373333pt;}
.y4a{bottom:833.413333pt;}
.yf{bottom:838.853333pt;}
.y11e{bottom:841.413333pt;}
.y82{bottom:842.373333pt;}
.y49{bottom:849.413333pt;}
.yba{bottom:850.373333pt;}
.ye{bottom:854.533333pt;}
.y11d{bottom:857.253333pt;}
.y161{bottom:857.413333pt;}
.y81{bottom:858.213333pt;}
.y48{bottom:865.253333pt;}
.yb9{bottom:866.213333pt;}
.yd{bottom:870.213333pt;}
.y11c{bottom:873.093333pt;}
.y114{bottom:873.253333pt;}
.y80{bottom:874.053333pt;}
.y47{bottom:881.093333pt;}
.yb8{bottom:882.053333pt;}
.yc{bottom:887.173333pt;}
.y11b{bottom:888.933333pt;}
.y113{bottom:889.093333pt;}
.y7f{bottom:889.893333pt;}
.y46{bottom:896.933333pt;}
.yb{bottom:897.893333pt;}
.y134{bottom:904.453333pt;}
.y11a{bottom:904.773333pt;}
.y112{bottom:904.933333pt;}
.y7e{bottom:905.733333pt;}
.ya{bottom:908.613333pt;}
.y45{bottom:912.773333pt;}
.yb7{bottom:913.733333pt;}
.y9{bottom:919.333333pt;}
.y119{bottom:920.453333pt;}
.y111{bottom:920.773333pt;}
.y7d{bottom:921.573333pt;}
.ydc{bottom:928.453333pt;}
.y44{bottom:928.773333pt;}
.yb6{bottom:929.573333pt;}
.y8{bottom:930.053333pt;}
.ye4{bottom:936.773333pt;}
.y7c{bottom:939.333333pt;}
.y7{bottom:943.013333pt;}
.y118{bottom:944.293333pt;}
.y43{bottom:944.613333pt;}
.yb5{bottom:945.573333pt;}
.ydb{bottom:952.613333pt;}
.y42{bottom:960.453333pt;}
.yb4{bottom:961.413333pt;}
.y6{bottom:965.733333pt;}
.y7b{bottom:968.453333pt;}
.ycd{bottom:975.973333pt;}
.y41{bottom:976.293333pt;}
.yb3{bottom:977.253333pt;}
.y7a{bottom:984.293333pt;}
.y40{bottom:992.133333pt;}
.yb2{bottom:993.093333pt;}
.y79{bottom:1000.133333pt;}
.y13c{bottom:1007.653333pt;}
.y3f{bottom:1007.973333pt;}
.yb1{bottom:1008.933333pt;}
.y78{bottom:1015.973333pt;}
.yb0{bottom:1024.960000pt;}
.y3e{bottom:1032.000000pt;}
.yaf{bottom:1040.800000pt;}
.y3d{bottom:1047.840000pt;}
.yae{bottom:1058.400000pt;}
.y3c{bottom:1063.680000pt;}
.h2{height:27.676000pt;}
.h7{height:36.431250pt;}
.h16{height:43.031250pt;}
.h15{height:47.085938pt;}
.h3{height:47.109375pt;}
.h10{height:47.742188pt;}
.hf{height:48.375000pt;}
.h17{height:49.336436pt;}
.h13{height:52.108438pt;}
.h9{height:52.134375pt;}
.h14{height:52.234000pt;}
.ha{height:53.535000pt;}
.hb{height:57.787500pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.hd{height:64.290000pt;}
.h8{height:64.500000pt;}
.h11{height:69.660000pt;}
.hc{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.h12{height:234.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x12{left:9.600000pt;}
.x11{left:34.880000pt;}
.x1{left:40.324000pt;}
.x13{left:44.480000pt;}
.x5{left:48.000000pt;}
.x14{left:72.000000pt;}
.x15{left:96.032000pt;}
.xb{left:99.552000pt;}
.xe{left:186.106667pt;}
.x2{left:197.662667pt;}
.xc{left:212.506667pt;}
.x8{left:249.026667pt;}
.x9{left:259.106667pt;}
.x7{left:261.986667pt;}
.xf{left:279.426667pt;}
.xd{left:319.426667pt;}
.x6{left:324.706667pt;}
.xa{left:336.706667pt;}
.x10{left:420.893333pt;}
.x16{left:444.893333pt;}
.x17{left:468.893333pt;}
.x4{left:682.213333pt;}
}




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