
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_e568d57cc07b922c47e25b3f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_da09df380ba6feccd45e1ef5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6894fe4e8ea697b18c2df689.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_236a672b82e0763d7b921220.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_220b0be14c35dfec311dc9ed.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_c488d7028b6b0f5d3ad4d5e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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:ff9;src:url('chunks/assets/font_563aefbbbcc1d8dea867c6c3.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_62b486811a855c72557a4db9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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:ffc;src:url('chunks/assets/font_5e59f58510d9301480e8ea70.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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);}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-60.480000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.810000px;}
.ls13{letter-spacing:-0.666000px;}
.ls16{letter-spacing:-0.460200px;}
.ls14{letter-spacing:-0.413400px;}
.ls11{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.226200px;}
.ls10{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.027360px;}
.ls18{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.106800px;}
.ls1d{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.149760px;}
.ls0{letter-spacing:0.153360px;}
.ls3{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.774000px;}
.ls17{letter-spacing:0.900000px;}
.ls1c{letter-spacing:1.080000px;}
.ls5{letter-spacing:40.986720px;}
.ls1b{letter-spacing:46.026720px;}
.ls4{letter-spacing:49.887360px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws11{word-spacing:-15.714000px;}
.ws1{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.246600px;}
.ws12{word-spacing:-15.199800px;}
.ws2{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.526600px;}
.wsf{word-spacing:-14.274000px;}
.ws8{word-spacing:-14.220000px;}
.ws7{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.140000px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.wsb{word-spacing:-8.928000px;}
.wse{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._3{width:2.343600px;}
._7{width:3.510000px;}
._b{width:4.510080px;}
._e{width:5.808240px;}
._f{width:6.824880px;}
._9{width:7.830000px;}
._8{width:8.964000px;}
._a{width:10.080240px;}
._6{width:11.191680px;}
._5{width:12.312000px;}
._10{width:13.611600px;}
._4{width:16.650000px;}
._d{width:17.917200px;}
._13{width:19.152960px;}
._c{width:21.159360px;}
._14{width:22.290000px;}
._15{width:23.583360px;}
._16{width:26.085360px;}
._11{width:30.024720px;}
._12{width:31.228560px;}
._2{width:137.046960px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:2.695500px;}
.y82{bottom:3.420000px;}
.y42{bottom:3.765000px;}
.y81{bottom:3.780000px;}
.y5{bottom:4.140000px;}
.yf2{bottom:4.845000px;}
.y5b{bottom:5.010000px;}
.yf4{bottom:5.025000px;}
.yfb{bottom:5.029500px;}
.yff{bottom:5.035500px;}
.yf7{bottom:5.205000px;}
.yfd{bottom:5.215500px;}
.y2{bottom:9.930000px;}
.y4c{bottom:10.255500px;}
.y41{bottom:21.045000px;}
.y59{bottom:21.235500px;}
.y4{bottom:23.070000px;}
.y58{bottom:37.975500px;}
.y40{bottom:38.190000px;}
.y4b{bottom:40.315500px;}
.y3{bottom:48.090000px;}
.y4a{bottom:51.469500px;}
.y57{bottom:55.429500px;}
.y3f{bottom:56.190000px;}
.y7{bottom:57.600000px;}
.y49{bottom:63.169500px;}
.y56{bottom:71.269500px;}
.y3e{bottom:72.750000px;}
.y48{bottom:76.129500px;}
.y55{bottom:86.749500px;}
.y47{bottom:89.089500px;}
.y3d{bottom:90.750000px;}
.y97{bottom:92.196000px;}
.y100{bottom:92.916000px;}
.y133{bottom:97.056000px;}
.y54{bottom:99.529500px;}
.y43{bottom:100.660500px;}
.y53{bottom:106.009500px;}
.y3c{bottom:106.950000px;}
.yfe{bottom:107.680500px;}
.y96{bottom:109.476000px;}
.ycc{bottom:110.016000px;}
.y46{bottom:111.049500px;}
.y132{bottom:114.156000px;}
.y52{bottom:121.849500px;}
.y3b{bottom:123.510000px;}
.yfc{bottom:126.940500px;}
.y95{bottom:127.836000px;}
.ycb{bottom:128.196000px;}
.y131{bottom:131.436000px;}
.y51{bottom:137.329500px;}
.y3a{bottom:140.070000px;}
.y94{bottom:145.836000px;}
.yfa{bottom:146.380500px;}
.yca{bottom:146.556000px;}
.y130{bottom:148.716000px;}
.y50{bottom:152.809500px;}
.y39{bottom:156.450000px;}
.y93{bottom:163.470000px;}
.yc9{bottom:164.550000px;}
.yf9{bottom:165.645000px;}
.y12f{bottom:165.990000px;}
.y4f{bottom:168.469500px;}
.y38{bottom:172.830000px;}
.y45{bottom:173.149500px;}
.y92{bottom:180.750000px;}
.yc8{bottom:182.190000px;}
.y12e{bottom:183.270000px;}
.y4e{bottom:183.589500px;}
.y44{bottom:183.769500px;}
.yf8{bottom:185.085000px;}
.y37{bottom:189.210000px;}
.y91{bottom:197.850000px;}
.y12d{bottom:200.370000px;}
.yc7{bottom:200.550000px;}
.yf6{bottom:204.345000px;}
.y36{bottom:205.590000px;}
.y90{bottom:215.130000px;}
.y12c{bottom:217.650000px;}
.yc6{bottom:218.730000px;}
.y35{bottom:221.790000px;}
.yf5{bottom:223.785000px;}
.y8f{bottom:232.410000px;}
.y12b{bottom:234.930000px;}
.yc5{bottom:236.730000px;}
.y34{bottom:238.350000px;}
.yf3{bottom:243.225000px;}
.y8e{bottom:249.690000px;}
.y12a{bottom:252.210000px;}
.yc4{bottom:254.370000px;}
.y33{bottom:254.730000px;}
.yf1{bottom:262.485000px;}
.y8d{bottom:266.610000px;}
.y129{bottom:269.130000px;}
.y32{bottom:271.110000px;}
.yc3{bottom:271.650000px;}
.y8c{bottom:281.205000px;}
.yf0{bottom:285.330000px;}
.y128{bottom:286.770000px;}
.y31{bottom:287.490000px;}
.yc2{bottom:288.930000px;}
.y1d{bottom:295.230000px;}
.y8b{bottom:299.205000px;}
.yef{bottom:302.430000px;}
.y127{bottom:303.870000px;}
.y30{bottom:303.900000px;}
.yc1{bottom:306.210000px;}
.yf{bottom:314.325000px;}
.y8a{bottom:317.205000px;}
.y1c{bottom:319.380000px;}
.yee{bottom:320.070000px;}
.y2f{bottom:320.280000px;}
.y126{bottom:321.150000px;}
.yc0{bottom:323.310000px;}
.y89{bottom:335.205000px;}
.y2e{bottom:336.660000px;}
.yed{bottom:337.350000px;}
.y125{bottom:338.430000px;}
.ybf{bottom:341.670000px;}
.y1b{bottom:343.500000px;}
.y2d{bottom:353.040000px;}
.y88{bottom:353.235000px;}
.yec{bottom:354.675000px;}
.y124{bottom:355.755000px;}
.ybe{bottom:360.075000px;}
.y1a{bottom:367.620000px;}
.y2c{bottom:369.420000px;}
.y87{bottom:371.235000px;}
.yeb{bottom:373.035000px;}
.ybd{bottom:378.075000px;}
.y2b{bottom:385.800000px;}
.y86{bottom:389.235000px;}
.y123{bottom:390.315000px;}
.yea{bottom:391.035000px;}
.y19{bottom:391.740000px;}
.ybc{bottom:395.715000px;}
.y2a{bottom:402.180000px;}
.y85{bottom:407.235000px;}
.y122{bottom:407.415000px;}
.ye9{bottom:408.495000px;}
.ybb{bottom:413.895000px;}
.y18{bottom:416.040000px;}
.y29{bottom:418.560000px;}
.y121{bottom:424.695000px;}
.y84{bottom:425.235000px;}
.ye8{bottom:425.775000px;}
.yba{bottom:432.255000px;}
.y28{bottom:434.760000px;}
.y17{bottom:440.160000px;}
.y120{bottom:441.975000px;}
.ye7{bottom:442.695000px;}
.y83{bottom:443.235000px;}
.yb9{bottom:450.255000px;}
.y27{bottom:451.140000px;}
.y11f{bottom:458.895000px;}
.ye6{bottom:460.335000px;}
.y80{bottom:461.235000px;}
.y16{bottom:464.280000px;}
.y26{bottom:466.800000px;}
.yb8{bottom:467.895000px;}
.y11e{bottom:476.535000px;}
.ye5{bottom:477.615000px;}
.y25{bottom:482.280000px;}
.y7f{bottom:483.015000px;}
.yb7{bottom:485.175000px;}
.y15{bottom:488.400000px;}
.y11d{bottom:493.815000px;}
.ye4{bottom:494.715000px;}
.y24{bottom:497.760000px;}
.y7e{bottom:500.115000px;}
.yb6{bottom:502.275000px;}
.y11c{bottom:510.915000px;}
.ye3{bottom:511.635000px;}
.y14{bottom:512.520000px;}
.y23{bottom:513.240000px;}
.y7d{bottom:517.395000px;}
.yb5{bottom:519.555000px;}
.y11b{bottom:528.195000px;}
.y22{bottom:528.900000px;}
.ye2{bottom:529.275000px;}
.y7c{bottom:534.675000px;}
.y13{bottom:536.640000px;}
.yb4{bottom:536.835000px;}
.y21{bottom:544.380000px;}
.y11a{bottom:545.475000px;}
.ye1{bottom:546.555000px;}
.y7b{bottom:551.955000px;}
.yb3{bottom:555.195000px;}
.y20{bottom:559.905000px;}
.y12{bottom:560.805000px;}
.y119{bottom:562.395000px;}
.ye0{bottom:563.475000px;}
.y7a{bottom:569.235000px;}
.yb2{bottom:573.555000px;}
.y1f{bottom:575.385000px;}
.y118{bottom:580.035000px;}
.ydf{bottom:581.115000px;}
.y11{bottom:585.105000px;}
.y79{bottom:586.515000px;}
.yb1{bottom:590.835000px;}
.y117{bottom:597.135000px;}
.yde{bottom:598.215000px;}
.y78{bottom:603.615000px;}
.y1e{bottom:606.165000px;}
.yb0{bottom:608.655000px;}
.y10{bottom:609.225000px;}
.y116{bottom:614.445000px;}
.ydd{bottom:615.525000px;}
.y77{bottom:620.925000px;}
.yaf{bottom:626.325000px;}
.y115{bottom:631.725000px;}
.ydc{bottom:633.885000px;}
.y76{bottom:638.205000px;}
.yae{bottom:644.685000px;}
.y114{bottom:649.005000px;}
.ydb{bottom:652.245000px;}
.y75{bottom:655.485000px;}
.yad{bottom:663.045000px;}
.y113{bottom:666.285000px;}
.yda{bottom:670.245000px;}
.y74{bottom:672.765000px;}
.yac{bottom:681.045000px;}
.y112{bottom:683.565000px;}
.yd9{bottom:687.705000px;}
.y73{bottom:689.865000px;}
.yab{bottom:698.505000px;}
.y111{bottom:700.665000px;}
.yd8{bottom:706.065000px;}
.y72{bottom:707.145000px;}
.yaa{bottom:715.785000px;}
.y110{bottom:717.945000px;}
.yd7{bottom:724.065000px;}
.y71{bottom:724.425000px;}
.ya9{bottom:733.065000px;}
.y10f{bottom:735.225000px;}
.y70{bottom:741.705000px;}
.ya8{bottom:750.345000px;}
.y10e{bottom:752.145000px;}
.yd6{bottom:758.625000px;}
.y6f{bottom:758.985000px;}
.ya7{bottom:767.625000px;}
.y10d{bottom:769.785000px;}
.y6e{bottom:776.265000px;}
.ya6{bottom:785.985000px;}
.y10c{bottom:787.965000px;}
.y6d{bottom:793.365000px;}
.ya5{bottom:804.165000px;}
.y10b{bottom:806.325000px;}
.y6c{bottom:810.645000px;}
.ya4{bottom:822.525000px;}
.y10a{bottom:824.685000px;}
.y6b{bottom:827.925000px;}
.ya3{bottom:840.525000px;}
.y109{bottom:843.045000px;}
.y6a{bottom:845.205000px;}
.ya2{bottom:858.165000px;}
.y108{bottom:859.965000px;}
.y69{bottom:862.485000px;}
.ya1{bottom:876.570000px;}
.y107{bottom:877.650000px;}
.y68{bottom:879.810000px;}
.ya0{bottom:893.670000px;}
.y106{bottom:895.830000px;}
.y67{bottom:896.910000px;}
.y9f{bottom:912.030000px;}
.y66{bottom:914.190000px;}
.y9e{bottom:930.030000px;}
.y65{bottom:931.470000px;}
.y105{bottom:932.550000px;}
.ye{bottom:938.850000px;}
.y9d{bottom:947.670000px;}
.y64{bottom:948.750000px;}
.yd5{bottom:949.830000px;}
.y104{bottom:950.910000px;}
.yd{bottom:956.310000px;}
.y9c{bottom:964.950000px;}
.y63{bottom:966.030000px;}
.yd4{bottom:968.190000px;}
.y103{bottom:969.270000px;}
.yc{bottom:973.590000px;}
.y9b{bottom:982.230000px;}
.y62{bottom:982.950000px;}
.yd3{bottom:986.010000px;}
.yb{bottom:990.870000px;}
.y9a{bottom:999.330000px;}
.y61{bottom:1000.410000px;}
.yd2{bottom:1003.650000px;}
.ya{bottom:1007.610000px;}
.y60{bottom:1017.690000px;}
.yd1{bottom:1020.930000px;}
.y5f{bottom:1034.970000px;}
.y99{bottom:1036.050000px;}
.yd0{bottom:1038.210000px;}
.y9{bottom:1043.430000px;}
.y5e{bottom:1053.330000px;}
.ycf{bottom:1055.130000px;}
.y102{bottom:1055.490000px;}
.y98{bottom:1071.330000px;}
.y5d{bottom:1071.690000px;}
.y8{bottom:1071.870000px;}
.yce{bottom:1072.770000px;}
.y5a{bottom:1075.320000px;}
.y5c{bottom:1088.790000px;}
.y101{bottom:1089.510000px;}
.ycd{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h15{height:5.650313px;}
.h18{height:17.265000px;}
.h19{height:17.301000px;}
.h1b{height:18.525000px;}
.h1c{height:18.535500px;}
.h1a{height:18.705000px;}
.h1d{height:18.715500px;}
.h16{height:27.540000px;}
.h13{height:29.678906px;}
.h12{height:35.332031px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.hd{height:52.971680px;}
.h14{height:54.421875px;}
.he{height:55.824609px;}
.h7{height:57.324375px;}
.hf{height:58.463677px;}
.h6{height:58.651172px;}
.h9{height:60.226875px;}
.h10{height:61.423863px;}
.h17{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h8{height:84.898125px;}
.h2{height:84.982500px;}
.h4{height:117.180000px;}
.h11{height:212.935500px;}
.ha{height:618.750000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.040000px;}
.w4{width:132.651000px;}
.w9{width:147.096000px;}
.w6{width:162.720000px;}
.wb{width:169.935000px;}
.wa{width:258.690000px;}
.w7{width:301.350000px;}
.w8{width:416.265000px;}
.w5{width:596.490000px;}
.w3{width:622.410000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x1a{left:-13.140000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x18{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:18.720000px;}
.x16{left:19.980000px;}
.x15{left:28.980000px;}
.x19{left:30.060000px;}
.xf{left:43.740000px;}
.x1c{left:47.700000px;}
.x10{left:50.760000px;}
.xe{left:55.080000px;}
.x1d{left:57.060000px;}
.x20{left:65.160000px;}
.x14{left:67.134000px;}
.x12{left:75.234000px;}
.x1{left:78.327000px;}
.x13{left:83.694000px;}
.x9{left:86.436000px;}
.x21{left:87.516000px;}
.x2{left:95.763000px;}
.x1e{left:102.774000px;}
.x1b{left:106.734000px;}
.x26{left:108.396000px;}
.x27{left:113.436000px;}
.x11{left:124.554000px;}
.x5{left:141.345000px;}
.x23{left:158.070000px;}
.x3{left:182.370000px;}
.x17{left:219.090000px;}
.x24{left:305.895000px;}
.x22{left:389.595000px;}
.xb{left:463.245000px;}
.xc{left:533.625000px;}
.x25{left:565.320000px;}
.xd{left:594.870000px;}
.xa{left:659.310000px;}
.x8{left:766.080000px;}
.x7{left:792.000000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-53.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls13{letter-spacing:-0.592000pt;}
.ls16{letter-spacing:-0.409067pt;}
.ls14{letter-spacing:-0.367467pt;}
.ls11{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.201067pt;}
.ls10{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.024320pt;}
.ls18{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.133120pt;}
.ls0{letter-spacing:0.136320pt;}
.ls3{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.688000pt;}
.ls17{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls5{letter-spacing:36.432640pt;}
.ls1b{letter-spacing:40.912640pt;}
.ls4{letter-spacing:44.344320pt;}
.wsa{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws11{word-spacing:-13.968000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.552533pt;}
.ws12{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.912533pt;}
.wsf{word-spacing:-12.688000pt;}
.ws8{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.wsb{word-spacing:-7.936000pt;}
.wse{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._3{width:2.083200pt;}
._7{width:3.120000pt;}
._b{width:4.008960pt;}
._e{width:5.162880pt;}
._f{width:6.066560pt;}
._9{width:6.960000pt;}
._8{width:7.968000pt;}
._a{width:8.960213pt;}
._6{width:9.948160pt;}
._5{width:10.944000pt;}
._10{width:12.099200pt;}
._4{width:14.800000pt;}
._d{width:15.926400pt;}
._13{width:17.024853pt;}
._c{width:18.808320pt;}
._14{width:19.813333pt;}
._15{width:20.962987pt;}
._16{width:23.186987pt;}
._11{width:26.688640pt;}
._12{width:27.758720pt;}
._2{width:121.819520pt;}
.fs9{font-size:5.120000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:2.396000pt;}
.y82{bottom:3.040000pt;}
.y42{bottom:3.346667pt;}
.y81{bottom:3.360000pt;}
.y5{bottom:3.680000pt;}
.yf2{bottom:4.306667pt;}
.y5b{bottom:4.453333pt;}
.yf4{bottom:4.466667pt;}
.yfb{bottom:4.470667pt;}
.yff{bottom:4.476000pt;}
.yf7{bottom:4.626667pt;}
.yfd{bottom:4.636000pt;}
.y2{bottom:8.826667pt;}
.y4c{bottom:9.116000pt;}
.y41{bottom:18.706667pt;}
.y59{bottom:18.876000pt;}
.y4{bottom:20.506667pt;}
.y58{bottom:33.756000pt;}
.y40{bottom:33.946667pt;}
.y4b{bottom:35.836000pt;}
.y3{bottom:42.746667pt;}
.y4a{bottom:45.750667pt;}
.y57{bottom:49.270667pt;}
.y3f{bottom:49.946667pt;}
.y7{bottom:51.200000pt;}
.y49{bottom:56.150667pt;}
.y56{bottom:63.350667pt;}
.y3e{bottom:64.666667pt;}
.y48{bottom:67.670667pt;}
.y55{bottom:77.110667pt;}
.y47{bottom:79.190667pt;}
.y3d{bottom:80.666667pt;}
.y97{bottom:81.952000pt;}
.y100{bottom:82.592000pt;}
.y133{bottom:86.272000pt;}
.y54{bottom:88.470667pt;}
.y43{bottom:89.476000pt;}
.y53{bottom:94.230667pt;}
.y3c{bottom:95.066667pt;}
.yfe{bottom:95.716000pt;}
.y96{bottom:97.312000pt;}
.ycc{bottom:97.792000pt;}
.y46{bottom:98.710667pt;}
.y132{bottom:101.472000pt;}
.y52{bottom:108.310667pt;}
.y3b{bottom:109.786667pt;}
.yfc{bottom:112.836000pt;}
.y95{bottom:113.632000pt;}
.ycb{bottom:113.952000pt;}
.y131{bottom:116.832000pt;}
.y51{bottom:122.070667pt;}
.y3a{bottom:124.506667pt;}
.y94{bottom:129.632000pt;}
.yfa{bottom:130.116000pt;}
.yca{bottom:130.272000pt;}
.y130{bottom:132.192000pt;}
.y50{bottom:135.830667pt;}
.y39{bottom:139.066667pt;}
.y93{bottom:145.306667pt;}
.yc9{bottom:146.266667pt;}
.yf9{bottom:147.240000pt;}
.y12f{bottom:147.546667pt;}
.y4f{bottom:149.750667pt;}
.y38{bottom:153.626667pt;}
.y45{bottom:153.910667pt;}
.y92{bottom:160.666667pt;}
.yc8{bottom:161.946667pt;}
.y12e{bottom:162.906667pt;}
.y4e{bottom:163.190667pt;}
.y44{bottom:163.350667pt;}
.yf8{bottom:164.520000pt;}
.y37{bottom:168.186667pt;}
.y91{bottom:175.866667pt;}
.y12d{bottom:178.106667pt;}
.yc7{bottom:178.266667pt;}
.yf6{bottom:181.640000pt;}
.y36{bottom:182.746667pt;}
.y90{bottom:191.226667pt;}
.y12c{bottom:193.466667pt;}
.yc6{bottom:194.426667pt;}
.y35{bottom:197.146667pt;}
.yf5{bottom:198.920000pt;}
.y8f{bottom:206.586667pt;}
.y12b{bottom:208.826667pt;}
.yc5{bottom:210.426667pt;}
.y34{bottom:211.866667pt;}
.yf3{bottom:216.200000pt;}
.y8e{bottom:221.946667pt;}
.y12a{bottom:224.186667pt;}
.yc4{bottom:226.106667pt;}
.y33{bottom:226.426667pt;}
.yf1{bottom:233.320000pt;}
.y8d{bottom:236.986667pt;}
.y129{bottom:239.226667pt;}
.y32{bottom:240.986667pt;}
.yc3{bottom:241.466667pt;}
.y8c{bottom:249.960000pt;}
.yf0{bottom:253.626667pt;}
.y128{bottom:254.906667pt;}
.y31{bottom:255.546667pt;}
.yc2{bottom:256.826667pt;}
.y1d{bottom:262.426667pt;}
.y8b{bottom:265.960000pt;}
.yef{bottom:268.826667pt;}
.y127{bottom:270.106667pt;}
.y30{bottom:270.133333pt;}
.yc1{bottom:272.186667pt;}
.yf{bottom:279.400000pt;}
.y8a{bottom:281.960000pt;}
.y1c{bottom:283.893333pt;}
.yee{bottom:284.506667pt;}
.y2f{bottom:284.693333pt;}
.y126{bottom:285.466667pt;}
.yc0{bottom:287.386667pt;}
.y89{bottom:297.960000pt;}
.y2e{bottom:299.253333pt;}
.yed{bottom:299.866667pt;}
.y125{bottom:300.826667pt;}
.ybf{bottom:303.706667pt;}
.y1b{bottom:305.333333pt;}
.y2d{bottom:313.813333pt;}
.y88{bottom:313.986667pt;}
.yec{bottom:315.266667pt;}
.y124{bottom:316.226667pt;}
.ybe{bottom:320.066667pt;}
.y1a{bottom:326.773333pt;}
.y2c{bottom:328.373333pt;}
.y87{bottom:329.986667pt;}
.yeb{bottom:331.586667pt;}
.ybd{bottom:336.066667pt;}
.y2b{bottom:342.933333pt;}
.y86{bottom:345.986667pt;}
.y123{bottom:346.946667pt;}
.yea{bottom:347.586667pt;}
.y19{bottom:348.213333pt;}
.ybc{bottom:351.746667pt;}
.y2a{bottom:357.493333pt;}
.y85{bottom:361.986667pt;}
.y122{bottom:362.146667pt;}
.ye9{bottom:363.106667pt;}
.ybb{bottom:367.906667pt;}
.y18{bottom:369.813333pt;}
.y29{bottom:372.053333pt;}
.y121{bottom:377.506667pt;}
.y84{bottom:377.986667pt;}
.ye8{bottom:378.466667pt;}
.yba{bottom:384.226667pt;}
.y28{bottom:386.453333pt;}
.y17{bottom:391.253333pt;}
.y120{bottom:392.866667pt;}
.ye7{bottom:393.506667pt;}
.y83{bottom:393.986667pt;}
.yb9{bottom:400.226667pt;}
.y27{bottom:401.013333pt;}
.y11f{bottom:407.906667pt;}
.ye6{bottom:409.186667pt;}
.y80{bottom:409.986667pt;}
.y16{bottom:412.693333pt;}
.y26{bottom:414.933333pt;}
.yb8{bottom:415.906667pt;}
.y11e{bottom:423.586667pt;}
.ye5{bottom:424.546667pt;}
.y25{bottom:428.693333pt;}
.y7f{bottom:429.346667pt;}
.yb7{bottom:431.266667pt;}
.y15{bottom:434.133333pt;}
.y11d{bottom:438.946667pt;}
.ye4{bottom:439.746667pt;}
.y24{bottom:442.453333pt;}
.y7e{bottom:444.546667pt;}
.yb6{bottom:446.466667pt;}
.y11c{bottom:454.146667pt;}
.ye3{bottom:454.786667pt;}
.y14{bottom:455.573333pt;}
.y23{bottom:456.213333pt;}
.y7d{bottom:459.906667pt;}
.yb5{bottom:461.826667pt;}
.y11b{bottom:469.506667pt;}
.y22{bottom:470.133333pt;}
.ye2{bottom:470.466667pt;}
.y7c{bottom:475.266667pt;}
.y13{bottom:477.013333pt;}
.yb4{bottom:477.186667pt;}
.y21{bottom:483.893333pt;}
.y11a{bottom:484.866667pt;}
.ye1{bottom:485.826667pt;}
.y7b{bottom:490.626667pt;}
.yb3{bottom:493.506667pt;}
.y20{bottom:497.693333pt;}
.y12{bottom:498.493333pt;}
.y119{bottom:499.906667pt;}
.ye0{bottom:500.866667pt;}
.y7a{bottom:505.986667pt;}
.yb2{bottom:509.826667pt;}
.y1f{bottom:511.453333pt;}
.y118{bottom:515.586667pt;}
.ydf{bottom:516.546667pt;}
.y11{bottom:520.093333pt;}
.y79{bottom:521.346667pt;}
.yb1{bottom:525.186667pt;}
.y117{bottom:530.786667pt;}
.yde{bottom:531.746667pt;}
.y78{bottom:536.546667pt;}
.y1e{bottom:538.813333pt;}
.yb0{bottom:541.026667pt;}
.y10{bottom:541.533333pt;}
.y116{bottom:546.173333pt;}
.ydd{bottom:547.133333pt;}
.y77{bottom:551.933333pt;}
.yaf{bottom:556.733333pt;}
.y115{bottom:561.533333pt;}
.ydc{bottom:563.453333pt;}
.y76{bottom:567.293333pt;}
.yae{bottom:573.053333pt;}
.y114{bottom:576.893333pt;}
.ydb{bottom:579.773333pt;}
.y75{bottom:582.653333pt;}
.yad{bottom:589.373333pt;}
.y113{bottom:592.253333pt;}
.yda{bottom:595.773333pt;}
.y74{bottom:598.013333pt;}
.yac{bottom:605.373333pt;}
.y112{bottom:607.613333pt;}
.yd9{bottom:611.293333pt;}
.y73{bottom:613.213333pt;}
.yab{bottom:620.893333pt;}
.y111{bottom:622.813333pt;}
.yd8{bottom:627.613333pt;}
.y72{bottom:628.573333pt;}
.yaa{bottom:636.253333pt;}
.y110{bottom:638.173333pt;}
.yd7{bottom:643.613333pt;}
.y71{bottom:643.933333pt;}
.ya9{bottom:651.613333pt;}
.y10f{bottom:653.533333pt;}
.y70{bottom:659.293333pt;}
.ya8{bottom:666.973333pt;}
.y10e{bottom:668.573333pt;}
.yd6{bottom:674.333333pt;}
.y6f{bottom:674.653333pt;}
.ya7{bottom:682.333333pt;}
.y10d{bottom:684.253333pt;}
.y6e{bottom:690.013333pt;}
.ya6{bottom:698.653333pt;}
.y10c{bottom:700.413333pt;}
.y6d{bottom:705.213333pt;}
.ya5{bottom:714.813333pt;}
.y10b{bottom:716.733333pt;}
.y6c{bottom:720.573333pt;}
.ya4{bottom:731.133333pt;}
.y10a{bottom:733.053333pt;}
.y6b{bottom:735.933333pt;}
.ya3{bottom:747.133333pt;}
.y109{bottom:749.373333pt;}
.y6a{bottom:751.293333pt;}
.ya2{bottom:762.813333pt;}
.y108{bottom:764.413333pt;}
.y69{bottom:766.653333pt;}
.ya1{bottom:779.173333pt;}
.y107{bottom:780.133333pt;}
.y68{bottom:782.053333pt;}
.ya0{bottom:794.373333pt;}
.y106{bottom:796.293333pt;}
.y67{bottom:797.253333pt;}
.y9f{bottom:810.693333pt;}
.y66{bottom:812.613333pt;}
.y9e{bottom:826.693333pt;}
.y65{bottom:827.973333pt;}
.y105{bottom:828.933333pt;}
.ye{bottom:834.533333pt;}
.y9d{bottom:842.373333pt;}
.y64{bottom:843.333333pt;}
.yd5{bottom:844.293333pt;}
.y104{bottom:845.253333pt;}
.yd{bottom:850.053333pt;}
.y9c{bottom:857.733333pt;}
.y63{bottom:858.693333pt;}
.yd4{bottom:860.613333pt;}
.y103{bottom:861.573333pt;}
.yc{bottom:865.413333pt;}
.y9b{bottom:873.093333pt;}
.y62{bottom:873.733333pt;}
.yd3{bottom:876.453333pt;}
.yb{bottom:880.773333pt;}
.y9a{bottom:888.293333pt;}
.y61{bottom:889.253333pt;}
.yd2{bottom:892.133333pt;}
.ya{bottom:895.653333pt;}
.y60{bottom:904.613333pt;}
.yd1{bottom:907.493333pt;}
.y5f{bottom:919.973333pt;}
.y99{bottom:920.933333pt;}
.yd0{bottom:922.853333pt;}
.y9{bottom:927.493333pt;}
.y5e{bottom:936.293333pt;}
.ycf{bottom:937.893333pt;}
.y102{bottom:938.213333pt;}
.y98{bottom:952.293333pt;}
.y5d{bottom:952.613333pt;}
.y8{bottom:952.773333pt;}
.yce{bottom:953.573333pt;}
.y5a{bottom:955.840000pt;}
.y5c{bottom:967.813333pt;}
.y101{bottom:968.453333pt;}
.ycd{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h15{height:5.022500pt;}
.h18{height:15.346667pt;}
.h19{height:15.378667pt;}
.h1b{height:16.466667pt;}
.h1c{height:16.476000pt;}
.h1a{height:16.626667pt;}
.h1d{height:16.636000pt;}
.h16{height:24.480000pt;}
.h13{height:26.381250pt;}
.h12{height:31.406250pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.hd{height:47.085938pt;}
.h14{height:48.375000pt;}
.he{height:49.621875pt;}
.h7{height:50.955000pt;}
.hf{height:51.967713pt;}
.h6{height:52.134375pt;}
.h9{height:53.535000pt;}
.h10{height:54.598989pt;}
.h17{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h8{height:75.465000pt;}
.h2{height:75.540000pt;}
.h4{height:104.160000pt;}
.h11{height:189.276000pt;}
.ha{height:550.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.480000pt;}
.w4{width:117.912000pt;}
.w9{width:130.752000pt;}
.w6{width:144.640000pt;}
.wb{width:151.053333pt;}
.wa{width:229.946667pt;}
.w7{width:267.866667pt;}
.w8{width:370.013333pt;}
.w5{width:530.213333pt;}
.w3{width:553.253333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x1a{left:-11.680000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x18{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:16.640000pt;}
.x16{left:17.760000pt;}
.x15{left:25.760000pt;}
.x19{left:26.720000pt;}
.xf{left:38.880000pt;}
.x1c{left:42.400000pt;}
.x10{left:45.120000pt;}
.xe{left:48.960000pt;}
.x1d{left:50.720000pt;}
.x20{left:57.920000pt;}
.x14{left:59.674667pt;}
.x12{left:66.874667pt;}
.x1{left:69.624000pt;}
.x13{left:74.394667pt;}
.x9{left:76.832000pt;}
.x21{left:77.792000pt;}
.x2{left:85.122667pt;}
.x1e{left:91.354667pt;}
.x1b{left:94.874667pt;}
.x26{left:96.352000pt;}
.x27{left:100.832000pt;}
.x11{left:110.714667pt;}
.x5{left:125.640000pt;}
.x23{left:140.506667pt;}
.x3{left:162.106667pt;}
.x17{left:194.746667pt;}
.x24{left:271.906667pt;}
.x22{left:346.306667pt;}
.xb{left:411.773333pt;}
.xc{left:474.333333pt;}
.x25{left:502.506667pt;}
.xd{left:528.773333pt;}
.xa{left:586.053333pt;}
.x8{left:680.960000pt;}
.x7{left:704.000000pt;}
}




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