
    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_4c65106cf92eea9cf7996bdc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_826056bdad931f7f98b6d776.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c2f1c0220ff9fe7e6201d21d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_48b71028a960d06efee0b4bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.211914;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_53ea9c6ee695aabca6db61ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_b7b56e988789b2d1cec53255.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.211914;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_7d7c7afedaf291536e3cc0f3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_bda3d614cd49ec71cb0a3496.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_c674604f29434e85d582f9a0.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;}
.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:-95.940000px;}
.v2{vertical-align:-91.680000px;}
.v3{vertical-align:-87.240000px;}
.v4{vertical-align:-8.520000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.520000px;}
.ls20{letter-spacing:-1.326000px;}
.ls1a{letter-spacing:-1.014000px;}
.ls3{letter-spacing:-0.930000px;}
.lsa{letter-spacing:-0.798000px;}
.ls1b{letter-spacing:-0.750000px;}
.ls19{letter-spacing:-0.606000px;}
.ls10{letter-spacing:-0.528000px;}
.ls1e{letter-spacing:-0.434400px;}
.ls6{letter-spacing:-0.370200px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.091392px;}
.ls9{letter-spacing:0.527760px;}
.ls15{letter-spacing:0.590822px;}
.ls8{letter-spacing:0.606000px;}
.ls14{letter-spacing:0.643080px;}
.ls1d{letter-spacing:0.650822px;}
.ls18{letter-spacing:0.710822px;}
.lsb{letter-spacing:0.768000px;}
.ls16{letter-spacing:0.770822px;}
.ls11{letter-spacing:0.782856px;}
.lsd{letter-spacing:0.790598px;}
.ls7{letter-spacing:0.798000px;}
.ls1c{letter-spacing:0.804000px;}
.ls2{letter-spacing:0.842856px;}
.lsf{letter-spacing:0.937435px;}
.ls12{letter-spacing:0.962856px;}
.ls17{letter-spacing:2.750822px;}
.ls5{letter-spacing:77.745588px;}
.ls1f{letter-spacing:120.465588px;}
.ls0{letter-spacing:194.869500px;}
.lsc{letter-spacing:199.129500px;}
.ls4{letter-spacing:2609.389500px;}
.ls13{letter-spacing:2875.669500px;}
.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;}
}
.ws5{word-spacing:-72.354000px;}
.ws6{word-spacing:-26.266608px;}
.ws7{word-spacing:-26.236608px;}
.ws1{word-spacing:-25.468608px;}
.ws9{word-spacing:-24.940608px;}
.ws0{word-spacing:-24.745068px;}
.ws3{word-spacing:-24.538608px;}
.ws4{word-spacing:-24.374868px;}
.wsf{word-spacing:-24.142608px;}
.wsb{word-spacing:-24.025440px;}
.ws8{word-spacing:-23.827440px;}
.wsd{word-spacing:-23.749200px;}
.wsa{word-spacing:-23.221440px;}
.wse{word-spacing:-22.787040px;}
.wsc{word-spacing:-14.981683px;}
.ws2{word-spacing:0.000000px;}
._19{margin-left:-3.551682px;}
._c{margin-left:-2.516346px;}
._2{margin-left:-1.316190px;}
._0{width:1.078974px;}
._3{width:2.618238px;}
._1{width:3.651912px;}
._1b{width:4.761306px;}
._1d{width:6.203958px;}
._1e{width:7.349448px;}
._21{width:8.425476px;}
._f{width:9.844146px;}
._e{width:11.097798px;}
._1f{width:12.774612px;}
._10{width:13.973712px;}
._1a{width:14.988042px;}
._20{width:17.014560px;}
._28{width:18.232524px;}
._24{width:19.335492px;}
._16{width:20.379264px;}
._17{width:21.380640px;}
._18{width:23.242416px;}
._7{width:24.650406px;}
._6{width:26.929050px;}
._1c{width:28.593414px;}
._a{width:30.092496px;}
._b{width:31.483548px;}
._11{width:33.192258px;}
._d{width:34.257414px;}
._2c{width:35.315886px;}
._2b{width:36.508578px;}
._27{width:37.713216px;}
._15{width:39.633948px;}
._14{width:40.999008px;}
._2d{width:43.098420px;}
._2e{width:44.945652px;}
._30{width:45.979776px;}
._37{width:47.461998px;}
._34{width:48.511152px;}
._35{width:49.707198px;}
._38{width:53.541960px;}
._26{width:56.279040px;}
._25{width:58.058508px;}
._39{width:69.592086px;}
._3a{width:71.083176px;}
._23{width:75.822144px;}
._22{width:76.936566px;}
._40{width:86.292018px;}
._33{width:87.473868px;}
._41{width:88.739970px;}
._13{width:95.185818px;}
._12{width:96.501714px;}
._8{width:99.469302px;}
._9{width:101.551854px;}
._4{width:125.390598px;}
._5{width:127.535466px;}
._3b{width:156.710844px;}
._3c{width:158.093490px;}
._32{width:185.191392px;}
._31{width:187.471392px;}
._3e{width:215.759628px;}
._3f{width:217.009800px;}
._29{width:838.969392px;}
._36{width:1755.360966px;}
._2a{width:1865.591118px;}
._2f{width:1990.029552px;}
._3d{width:2308.502868px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:17.024400px;}
.fs2{font-size:23.409000px;}
.fs5{font-size:29.793000px;}
.fs4{font-size:36.177600px;}
.fs9{font-size:42.561600px;}
.fs8{font-size:48.945600px;}
.fs3{font-size:53.202000px;}
.fs7{font-size:65.970000px;}
.fs0{font-size:72.354000px;}
.fs1{font-size:82.998000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:1.560000px;}
.y5{bottom:1.590000px;}
.ye3{bottom:3.150000px;}
.ybd{bottom:3.180000px;}
.yc0{bottom:3.195000px;}
.y83{bottom:3.690000px;}
.y68{bottom:3.705000px;}
.yc9{bottom:3.717000px;}
.y6a{bottom:3.720000px;}
.y1d{bottom:3.735000px;}
.yba{bottom:3.750000px;}
.y85{bottom:3.765000px;}
.ya4{bottom:4.230000px;}
.y7c{bottom:4.260000px;}
.y3{bottom:4.785000px;}
.yb9{bottom:4.815000px;}
.ybe{bottom:13.290000px;}
.yea{bottom:13.305000px;}
.ydf{bottom:13.815000px;}
.yc4{bottom:13.830000px;}
.yff{bottom:13.845000px;}
.yc7{bottom:13.860000px;}
.y7e{bottom:14.370000px;}
.y81{bottom:14.865000px;}
.ya5{bottom:14.880000px;}
.y6b{bottom:14.895000px;}
.yeb{bottom:21.285000px;}
.ybc{bottom:23.400000px;}
.yb5{bottom:23.415000px;}
.yc2{bottom:23.445000px;}
.yde{bottom:23.925000px;}
.yd0{bottom:23.940000px;}
.yc6{bottom:23.970000px;}
.yb8{bottom:24.495000px;}
.y80{bottom:25.515000px;}
.y69{bottom:25.530000px;}
.y7a{bottom:25.575000px;}
.ya3{bottom:26.040000px;}
.y77{bottom:26.055000px;}
.ye6{bottom:33.555000px;}
.yfe{bottom:34.050000px;}
.y9f{bottom:36.705000px;}
.ycf{bottom:43.620000px;}
.yd5{bottom:43.635000px;}
.y107{bottom:43.650000px;}
.ye8{bottom:43.665000px;}
.y100{bottom:44.160000px;}
.y10c{bottom:44.190000px;}
.yb7{bottom:44.715000px;}
.y9c{bottom:47.880000px;}
.yd8{bottom:53.745000px;}
.ye5{bottom:53.775000px;}
.y9e{bottom:58.560000px;}
.ye7{bottom:63.345000px;}
.yd3{bottom:63.855000px;}
.y108{bottom:63.870000px;}
.y9d{bottom:69.735000px;}
.ye9{bottom:73.455000px;}
.yd7{bottom:73.995000px;}
.yec{bottom:83.565000px;}
.yd2{bottom:84.105000px;}
.yd6{bottom:94.215000px;}
.y99{bottom:100.623000px;}
.y36{bottom:101.154000px;}
.y12a{bottom:102.219000px;}
.yd4{bottom:103.785000px;}
.ycb{bottom:104.347500px;}
.y116{bottom:107.539500px;}
.ycc{bottom:109.666500px;}
.y65{bottom:110.199000px;}
.yfc{bottom:113.391000px;}
.y98{bottom:122.436000px;}
.y35{bottom:123.499500px;}
.yd9{bottom:124.005000px;}
.y129{bottom:124.032000px;}
.yca{bottom:126.159000px;}
.y115{bottom:129.351000px;}
.y64{bottom:131.479500px;}
.yfb{bottom:135.204000px;}
.yda{bottom:144.225000px;}
.y97{bottom:144.247500px;}
.yc8{bottom:144.787500px;}
.y34{bottom:145.312500px;}
.y128{bottom:145.845000px;}
.y114{bottom:151.170000px;}
.y63{bottom:153.300000px;}
.yfa{bottom:157.020000px;}
.yc5{bottom:165.540000px;}
.y96{bottom:166.065000px;}
.y33{bottom:167.130000px;}
.y127{bottom:168.195000px;}
.y113{bottom:172.980000px;}
.y62{bottom:175.110000px;}
.ycd{bottom:175.635000px;}
.yf9{bottom:178.860000px;}
.y95{bottom:187.905000px;}
.y32{bottom:188.970000px;}
.y126{bottom:190.035000px;}
.y112{bottom:194.820000px;}
.y61{bottom:196.950000px;}
.yf8{bottom:200.685000px;}
.yc3{bottom:206.535000px;}
.y94{bottom:210.255000px;}
.y31{bottom:210.780000px;}
.y125{bottom:211.845000px;}
.y111{bottom:216.645000px;}
.y60{bottom:218.760000px;}
.yf7{bottom:222.495000px;}
.y93{bottom:232.065000px;}
.y30{bottom:232.605000px;}
.y124{bottom:233.670000px;}
.y110{bottom:238.980000px;}
.y5f{bottom:241.110000px;}
.yf6{bottom:244.305000px;}
.yc1{bottom:247.500000px;}
.y92{bottom:253.875000px;}
.y2f{bottom:254.415000px;}
.y123{bottom:255.480000px;}
.y10f{bottom:260.790000px;}
.y5e{bottom:262.920000px;}
.yf5{bottom:266.685000px;}
.y91{bottom:275.730000px;}
.y2e{bottom:276.255000px;}
.y122{bottom:277.320000px;}
.y10e{bottom:279.450000px;}
.y5d{bottom:284.775000px;}
.ybf{bottom:288.495000px;}
.y90{bottom:297.540000px;}
.y2d{bottom:298.605000px;}
.y121{bottom:299.130000px;}
.y5c{bottom:306.585000px;}
.ybb{bottom:309.255000px;}
.yf4{bottom:310.305000px;}
.y8f{bottom:319.350000px;}
.y2c{bottom:320.415000px;}
.y120{bottom:320.955000px;}
.y5b{bottom:328.395000px;}
.yf3{bottom:332.115000px;}
.y8e{bottom:341.160000px;}
.y2b{bottom:342.225000px;}
.y11f{bottom:342.765000px;}
.y5a{bottom:350.205000px;}
.yb6{bottom:350.220000px;}
.yf2{bottom:350.745000px;}
.y10d{bottom:361.425000px;}
.y8d{bottom:363.015000px;}
.y2a{bottom:364.080000px;}
.y11e{bottom:365.145000px;}
.yf1{bottom:371.520000px;}
.y59{bottom:372.060000px;}
.yb4{bottom:372.585000px;}
.y8c{bottom:385.365000px;}
.y29{bottom:385.890000px;}
.y11d{bottom:386.955000px;}
.yf0{bottom:392.805000px;}
.y58{bottom:393.870000px;}
.y10b{bottom:401.850000px;}
.y8b{bottom:407.175000px;}
.y28{bottom:407.700000px;}
.y11c{bottom:408.765000px;}
.yef{bottom:413.550000px;}
.yb3{bottom:414.615000px;}
.y57{bottom:416.220000px;}
.yb2{bottom:422.595000px;}
.y8a{bottom:428.985000px;}
.y27{bottom:429.510000px;}
.y11b{bottom:430.575000px;}
.y56{bottom:438.030000px;}
.yb1{bottom:444.450000px;}
.y89{bottom:450.840000px;}
.y26{bottom:451.365000px;}
.y11a{bottom:452.430000px;}
.yee{bottom:454.020000px;}
.y55{bottom:459.885000px;}
.y10a{bottom:463.065000px;}
.yb0{bottom:466.260000px;}
.y88{bottom:472.650000px;}
.y25{bottom:473.715000px;}
.y119{bottom:474.240000px;}
.yed{bottom:475.305000px;}
.y54{bottom:481.695000px;}
.yaf{bottom:488.610000px;}
.y118{bottom:492.330000px;}
.y87{bottom:492.870000px;}
.y24{bottom:495.525000px;}
.ye4{bottom:496.050000px;}
.y117{bottom:499.785000px;}
.y53{bottom:503.505000px;}
.y109{bottom:504.030000px;}
.y86{bottom:505.635000px;}
.yae{bottom:510.420000px;}
.y23{bottom:517.335000px;}
.y84{bottom:524.250000px;}
.y106{bottom:524.790000px;}
.y52{bottom:525.345000px;}
.yad{bottom:532.275000px;}
.y22{bottom:539.190000px;}
.y51{bottom:547.170000px;}
.y82{bottom:547.200000px;}
.yac{bottom:554.085000px;}
.y21{bottom:561.000000px;}
.y50{bottom:568.980000px;}
.y7f{bottom:569.535000px;}
.yab{bottom:575.895000px;}
.y20{bottom:582.810000px;}
.y4f{bottom:590.790000px;}
.ye2{bottom:597.210000px;}
.yaa{bottom:597.705000px;}
.y1e{bottom:600.930000px;}
.y105{bottom:605.715000px;}
.y1c{bottom:608.370000px;}
.y4e{bottom:613.170000px;}
.y7d{bottom:614.235000px;}
.ya9{bottom:619.560000px;}
.y1b{bottom:633.915000px;}
.y4d{bottom:634.980000px;}
.ya8{bottom:638.700000px;}
.y104{bottom:646.695000px;}
.y1a{bottom:655.725000px;}
.y4c{bottom:656.790000px;}
.ye1{bottom:657.855000px;}
.y7b{bottom:658.395000px;}
.ya7{bottom:661.050000px;}
.y19{bottom:677.550000px;}
.y4b{bottom:678.615000px;}
.y79{bottom:681.270000px;}
.ya6{bottom:683.925000px;}
.y103{bottom:687.660000px;}
.y18{bottom:699.390000px;}
.ye0{bottom:699.420000px;}
.y4a{bottom:700.455000px;}
.ydd{bottom:720.165000px;}
.y17{bottom:721.740000px;}
.y49{bottom:722.265000px;}
.y76{bottom:726.015000px;}
.ya2{bottom:728.145000px;}
.y16{bottom:743.550000px;}
.y48{bottom:744.090000px;}
.y78{bottom:748.365000px;}
.ydc{bottom:761.130000px;}
.y15{bottom:765.360000px;}
.y47{bottom:765.900000px;}
.y102{bottom:769.110000px;}
.ya1{bottom:772.830000px;}
.y75{bottom:773.880000px;}
.ydb{bottom:781.875000px;}
.y14{bottom:787.215000px;}
.y46{bottom:788.280000px;}
.y101{bottom:789.870000px;}
.y74{bottom:791.475000px;}
.ya0{bottom:795.720000px;}
.yd1{bottom:802.635000px;}
.y13{bottom:809.025000px;}
.y45{bottom:810.090000px;}
.yfd{bottom:810.615000px;}
.y73{bottom:813.285000px;}
.y9b{bottom:818.070000px;}
.y12{bottom:830.835000px;}
.y44{bottom:831.900000px;}
.y11{bottom:852.645000px;}
.y43{bottom:853.710000px;}
.y72{bottom:856.905000px;}
.y42{bottom:875.565000px;}
.y10{bottom:876.090000px;}
.y71{bottom:878.760000px;}
.y41{bottom:897.375000px;}
.yf{bottom:898.965000px;}
.y70{bottom:900.570000px;}
.y9a{bottom:908.010000px;}
.y40{bottom:919.185000px;}
.ye{bottom:920.790000px;}
.y6f{bottom:922.380000px;}
.y3f{bottom:940.995000px;}
.yd{bottom:942.600000px;}
.y6e{bottom:944.190000px;}
.y3e{bottom:963.375000px;}
.yce{bottom:963.915000px;}
.yc{bottom:964.440000px;}
.y6d{bottom:966.570000px;}
.y3d{bottom:985.200000px;}
.yb{bottom:987.315000px;}
.y6c{bottom:988.380000px;}
.y3c{bottom:1007.010000px;}
.ya{bottom:1012.860000px;}
.y3b{bottom:1028.820000px;}
.y9{bottom:1038.390000px;}
.y3a{bottom:1050.675000px;}
.y67{bottom:1051.755000px;}
.y8{bottom:1063.965000px;}
.y39{bottom:1072.485000px;}
.y66{bottom:1077.270000px;}
.y7{bottom:1089.510000px;}
.y38{bottom:1094.295000px;}
.y37{bottom:1116.105000px;}
.y6{bottom:1139.025000px;}
.y4{bottom:1154.985000px;}
.y2{bottom:1162.425000px;}
.y1{bottom:1191.690000px;}
.h5{height:7.418250px;}
.h32{height:7.448250px;}
.h18{height:13.017681px;}
.h6{height:17.899655px;}
.h2a{height:19.654500px;}
.h1d{height:19.684500px;}
.h24{height:20.187000px;}
.h2c{height:20.202000px;}
.h20{height:20.209500px;}
.h23{height:20.217000px;}
.h26{height:20.251500px;}
.hc{height:21.783000px;}
.h10{height:21.798000px;}
.ha{height:21.813000px;}
.h13{height:21.849000px;}
.h11{height:22.330500px;}
.h15{height:22.781171px;}
.h3{height:25.522500px;}
.h14{height:36.195265px;}
.h31{height:39.856500px;}
.h19{height:39.871500px;}
.h1c{height:39.886500px;}
.h2e{height:39.901500px;}
.h1e{height:39.937500px;}
.h25{height:40.404000px;}
.h1f{height:40.434000px;}
.he{height:40.680826px;}
.h12{height:43.626000px;}
.hd{height:43.660500px;}
.h17{height:44.127000px;}
.hf{height:44.142000px;}
.h2d{height:50.443857px;}
.hb{height:53.227978px;}
.h2{height:55.325373px;}
.h21{height:60.103500px;}
.h27{height:60.118500px;}
.h2b{height:60.651000px;}
.h30{height:60.685500px;}
.h1b{height:62.245500px;}
.h7{height:63.464291px;}
.h1a{height:66.002212px;}
.h8{height:72.389329px;}
.h4{height:74.368510px;}
.h29{height:74.522212px;}
.h2f{height:80.370000px;}
.h9{height:86.402215px;}
.h16{height:87.819000px;}
.h28{height:100.054500px;}
.h22{height:160.740000px;}
.h1{height:1263.000000px;}
.h0{height:1263.015000px;}
.w7{width:61.218000px;}
.w8{width:64.374000px;}
.w6{width:69.153000px;}
.w23{width:69.198000px;}
.w10{width:73.951500px;}
.wf{width:73.986000px;}
.we{width:74.518500px;}
.w22{width:75.081000px;}
.w5{width:79.839000px;}
.w21{width:85.690500px;}
.w18{width:88.366500px;}
.wd{width:91.543500px;}
.wc{width:93.103500px;}
.w24{width:95.805000px;}
.w4{width:95.820000px;}
.w19{width:98.991000px;}
.w1a{width:99.012000px;}
.w1b{width:99.523500px;}
.w1f{width:101.083500px;}
.w20{width:106.972500px;}
.w17{width:111.765000px;}
.w1c{width:112.312500px;}
.wb{width:149.604000px;}
.w11{width:150.135000px;}
.w15{width:152.743500px;}
.w9{width:175.140000px;}
.w1e{width:176.730000px;}
.w25{width:177.795000px;}
.w12{width:190.573500px;}
.w13{width:265.605000px;}
.w14{width:286.935000px;}
.w3{width:350.248500px;}
.wa{width:408.255000px;}
.w16{width:487.080000px;}
.w26{width:552.555000px;}
.w2{width:718.078500px;}
.w1d{width:730.890000px;}
.w1{width:892.500000px;}
.w0{width:892.725000px;}
.x0{left:0.000000px;}
.x3d{left:3.724500px;}
.x44{left:4.800000px;}
.x4c{left:6.375000px;}
.x3{left:7.980000px;}
.x14{left:9.045000px;}
.x45{left:10.110000px;}
.x11{left:11.670000px;}
.x29{left:13.290000px;}
.x20{left:14.370000px;}
.x5a{left:15.405000px;}
.x3c{left:16.470000px;}
.xf{left:17.565000px;}
.x52{left:19.125000px;}
.x23{left:20.205000px;}
.x3e{left:21.330000px;}
.x1d{left:22.380000px;}
.x1e{left:23.400000px;}
.xd{left:25.035000px;}
.x40{left:26.610000px;}
.x2e{left:28.755000px;}
.x2a{left:30.855000px;}
.x2b{left:31.920000px;}
.x38{left:34.050000px;}
.x18{left:35.644500px;}
.x55{left:37.815000px;}
.x49{left:40.434000px;}
.x19{left:41.494500px;}
.x27{left:43.099500px;}
.x4a{left:46.314000px;}
.x53{left:47.895000px;}
.x24{left:48.975000px;}
.x57{left:50.580000px;}
.x58{left:52.179000px;}
.x54{left:53.235000px;}
.x56{left:55.875000px;}
.x5f{left:58.545000px;}
.x2f{left:76.635000px;}
.x2c{left:104.340000px;}
.x2{left:109.135500px;}
.x37{left:112.858500px;}
.x3a{left:113.925000px;}
.x1{left:117.115500px;}
.x32{left:121.365000px;}
.xb{left:122.434500px;}
.x31{left:123.495000px;}
.x30{left:126.690000px;}
.xa{left:127.755000px;}
.x16{left:132.012000px;}
.x25{left:138.396000px;}
.x5d{left:139.459500px;}
.x35{left:141.055500px;}
.x1b{left:147.435000px;}
.x5b{left:155.460000px;}
.x5c{left:159.180000px;}
.x33{left:160.245000px;}
.x4{left:170.355000px;}
.x15{left:171.420000px;}
.x48{left:187.914000px;}
.x47{left:236.895000px;}
.x60{left:242.730000px;}
.x39{left:266.145000px;}
.x1a{left:284.820000px;}
.x5e{left:287.475000px;}
.x4b{left:291.195000px;}
.x28{left:300.240000px;}
.x3f{left:355.065000px;}
.x36{left:356.130000px;}
.x17{left:379.005000px;}
.x4d{left:392.850000px;}
.x26{left:449.805000px;}
.x41{left:454.605000px;}
.xc{left:459.390000px;}
.x1f{left:470.055000px;}
.x8{left:476.970000px;}
.x5{left:478.575000px;}
.x4e{left:500.385000px;}
.x46{left:505.170000px;}
.x21{left:544.575000px;}
.x42{left:554.160000px;}
.xe{left:555.210000px;}
.x2d{left:565.860000px;}
.x4f{left:586.605000px;}
.x9{left:598.875000px;}
.x22{left:619.125000px;}
.x10{left:635.625000px;}
.x43{left:653.715000px;}
.x50{left:662.220000px;}
.x1c{left:694.140000px;}
.x12{left:705.315000px;}
.x6{left:719.190000px;}
.x7{left:720.255000px;}
.x51{left:732.510000px;}
.x59{left:748.470000px;}
.x3b{left:753.795000px;}
.x13{left:767.100000px;}
.x34{left:773.985000px;}
@media print{
.v1{vertical-align:-85.280000pt;}
.v2{vertical-align:-81.493333pt;}
.v3{vertical-align:-77.546667pt;}
.v4{vertical-align:-7.573333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.573333pt;}
.ls20{letter-spacing:-1.178667pt;}
.ls1a{letter-spacing:-0.901333pt;}
.ls3{letter-spacing:-0.826667pt;}
.lsa{letter-spacing:-0.709333pt;}
.ls1b{letter-spacing:-0.666667pt;}
.ls19{letter-spacing:-0.538667pt;}
.ls10{letter-spacing:-0.469333pt;}
.ls1e{letter-spacing:-0.386133pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.081237pt;}
.ls9{letter-spacing:0.469120pt;}
.ls15{letter-spacing:0.525175pt;}
.ls8{letter-spacing:0.538667pt;}
.ls14{letter-spacing:0.571627pt;}
.ls1d{letter-spacing:0.578509pt;}
.ls18{letter-spacing:0.631842pt;}
.lsb{letter-spacing:0.682667pt;}
.ls16{letter-spacing:0.685175pt;}
.ls11{letter-spacing:0.695872pt;}
.lsd{letter-spacing:0.702754pt;}
.ls7{letter-spacing:0.709333pt;}
.ls1c{letter-spacing:0.714667pt;}
.ls2{letter-spacing:0.749205pt;}
.lsf{letter-spacing:0.833276pt;}
.ls12{letter-spacing:0.855872pt;}
.ls17{letter-spacing:2.445175pt;}
.ls5{letter-spacing:69.107189pt;}
.ls1f{letter-spacing:107.080523pt;}
.ls0{letter-spacing:173.217333pt;}
.lsc{letter-spacing:177.004000pt;}
.ls4{letter-spacing:2319.457333pt;}
.ls13{letter-spacing:2556.150667pt;}
.ws5{word-spacing:-64.314667pt;}
.ws6{word-spacing:-23.348096pt;}
.ws7{word-spacing:-23.321429pt;}
.ws1{word-spacing:-22.638763pt;}
.ws9{word-spacing:-22.169429pt;}
.ws0{word-spacing:-21.995616pt;}
.ws3{word-spacing:-21.812096pt;}
.ws4{word-spacing:-21.666549pt;}
.wsf{word-spacing:-21.460096pt;}
.wsb{word-spacing:-21.355947pt;}
.ws8{word-spacing:-21.179947pt;}
.wsd{word-spacing:-21.110400pt;}
.wsa{word-spacing:-20.641280pt;}
.wse{word-spacing:-20.255147pt;}
.wsc{word-spacing:-13.317052pt;}
.ws2{word-spacing:0.000000pt;}
._19{margin-left:-3.157051pt;}
._c{margin-left:-2.236752pt;}
._2{margin-left:-1.169947pt;}
._0{width:0.959088pt;}
._3{width:2.327323pt;}
._1{width:3.246144pt;}
._1b{width:4.232272pt;}
._1d{width:5.514629pt;}
._1e{width:6.532843pt;}
._21{width:7.489312pt;}
._f{width:8.750352pt;}
._e{width:9.864709pt;}
._1f{width:11.355211pt;}
._10{width:12.421077pt;}
._1a{width:13.322704pt;}
._20{width:15.124053pt;}
._28{width:16.206688pt;}
._24{width:17.187104pt;}
._16{width:18.114901pt;}
._17{width:19.005013pt;}
._18{width:20.659925pt;}
._7{width:21.911472pt;}
._6{width:23.936933pt;}
._1c{width:25.416368pt;}
._a{width:26.748885pt;}
._b{width:27.985376pt;}
._11{width:29.504229pt;}
._d{width:30.451035pt;}
._2c{width:31.391899pt;}
._2b{width:32.452069pt;}
._27{width:33.522859pt;}
._15{width:35.230176pt;}
._14{width:36.443563pt;}
._2d{width:38.309707pt;}
._2e{width:39.951691pt;}
._30{width:40.870912pt;}
._37{width:42.188443pt;}
._34{width:43.121024pt;}
._35{width:44.184176pt;}
._38{width:47.592853pt;}
._26{width:50.025813pt;}
._25{width:51.607563pt;}
._39{width:61.859632pt;}
._3a{width:63.185045pt;}
._23{width:67.397461pt;}
._22{width:68.388059pt;}
._40{width:76.704016pt;}
._33{width:77.754549pt;}
._41{width:78.879973pt;}
._13{width:84.609616pt;}
._12{width:85.779301pt;}
._8{width:88.417157pt;}
._9{width:90.268315pt;}
._4{width:111.458309pt;}
._5{width:113.364859pt;}
._3b{width:139.298528pt;}
._3c{width:140.527547pt;}
._32{width:164.614571pt;}
._31{width:166.641237pt;}
._3e{width:191.786336pt;}
._3f{width:192.897600pt;}
._29{width:745.750571pt;}
._36{width:1560.320859pt;}
._2a{width:1658.303216pt;}
._2f{width:1768.915157pt;}
._3d{width:2052.002549pt;}
.fs6{font-size:15.132800pt;}
.fs2{font-size:20.808000pt;}
.fs5{font-size:26.482667pt;}
.fs4{font-size:32.157867pt;}
.fs9{font-size:37.832533pt;}
.fs8{font-size:43.507200pt;}
.fs3{font-size:47.290667pt;}
.fs7{font-size:58.640000pt;}
.fs0{font-size:64.314667pt;}
.fs1{font-size:73.776000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:1.386667pt;}
.y5{bottom:1.413333pt;}
.ye3{bottom:2.800000pt;}
.ybd{bottom:2.826667pt;}
.yc0{bottom:2.840000pt;}
.y83{bottom:3.280000pt;}
.y68{bottom:3.293333pt;}
.yc9{bottom:3.304000pt;}
.y6a{bottom:3.306667pt;}
.y1d{bottom:3.320000pt;}
.yba{bottom:3.333333pt;}
.y85{bottom:3.346667pt;}
.ya4{bottom:3.760000pt;}
.y7c{bottom:3.786667pt;}
.y3{bottom:4.253333pt;}
.yb9{bottom:4.280000pt;}
.ybe{bottom:11.813333pt;}
.yea{bottom:11.826667pt;}
.ydf{bottom:12.280000pt;}
.yc4{bottom:12.293333pt;}
.yff{bottom:12.306667pt;}
.yc7{bottom:12.320000pt;}
.y7e{bottom:12.773333pt;}
.y81{bottom:13.213333pt;}
.ya5{bottom:13.226667pt;}
.y6b{bottom:13.240000pt;}
.yeb{bottom:18.920000pt;}
.ybc{bottom:20.800000pt;}
.yb5{bottom:20.813333pt;}
.yc2{bottom:20.840000pt;}
.yde{bottom:21.266667pt;}
.yd0{bottom:21.280000pt;}
.yc6{bottom:21.306667pt;}
.yb8{bottom:21.773333pt;}
.y80{bottom:22.680000pt;}
.y69{bottom:22.693333pt;}
.y7a{bottom:22.733333pt;}
.ya3{bottom:23.146667pt;}
.y77{bottom:23.160000pt;}
.ye6{bottom:29.826667pt;}
.yfe{bottom:30.266667pt;}
.y9f{bottom:32.626667pt;}
.ycf{bottom:38.773333pt;}
.yd5{bottom:38.786667pt;}
.y107{bottom:38.800000pt;}
.ye8{bottom:38.813333pt;}
.y100{bottom:39.253333pt;}
.y10c{bottom:39.280000pt;}
.yb7{bottom:39.746667pt;}
.y9c{bottom:42.560000pt;}
.yd8{bottom:47.773333pt;}
.ye5{bottom:47.800000pt;}
.y9e{bottom:52.053333pt;}
.ye7{bottom:56.306667pt;}
.yd3{bottom:56.760000pt;}
.y108{bottom:56.773333pt;}
.y9d{bottom:61.986667pt;}
.ye9{bottom:65.293333pt;}
.yd7{bottom:65.773333pt;}
.yec{bottom:74.280000pt;}
.yd2{bottom:74.760000pt;}
.yd6{bottom:83.746667pt;}
.y99{bottom:89.442667pt;}
.y36{bottom:89.914667pt;}
.y12a{bottom:90.861333pt;}
.yd4{bottom:92.253333pt;}
.ycb{bottom:92.753333pt;}
.y116{bottom:95.590667pt;}
.ycc{bottom:97.481333pt;}
.y65{bottom:97.954667pt;}
.yfc{bottom:100.792000pt;}
.y98{bottom:108.832000pt;}
.y35{bottom:109.777333pt;}
.yd9{bottom:110.226667pt;}
.y129{bottom:110.250667pt;}
.yca{bottom:112.141333pt;}
.y115{bottom:114.978667pt;}
.y64{bottom:116.870667pt;}
.yfb{bottom:120.181333pt;}
.yda{bottom:128.200000pt;}
.y97{bottom:128.220000pt;}
.yc8{bottom:128.700000pt;}
.y34{bottom:129.166667pt;}
.y128{bottom:129.640000pt;}
.y114{bottom:134.373333pt;}
.y63{bottom:136.266667pt;}
.yfa{bottom:139.573333pt;}
.yc5{bottom:147.146667pt;}
.y96{bottom:147.613333pt;}
.y33{bottom:148.560000pt;}
.y127{bottom:149.506667pt;}
.y113{bottom:153.760000pt;}
.y62{bottom:155.653333pt;}
.ycd{bottom:156.120000pt;}
.yf9{bottom:158.986667pt;}
.y95{bottom:167.026667pt;}
.y32{bottom:167.973333pt;}
.y126{bottom:168.920000pt;}
.y112{bottom:173.173333pt;}
.y61{bottom:175.066667pt;}
.yf8{bottom:178.386667pt;}
.yc3{bottom:183.586667pt;}
.y94{bottom:186.893333pt;}
.y31{bottom:187.360000pt;}
.y125{bottom:188.306667pt;}
.y111{bottom:192.573333pt;}
.y60{bottom:194.453333pt;}
.yf7{bottom:197.773333pt;}
.y93{bottom:206.280000pt;}
.y30{bottom:206.760000pt;}
.y124{bottom:207.706667pt;}
.y110{bottom:212.426667pt;}
.y5f{bottom:214.320000pt;}
.yf6{bottom:217.160000pt;}
.yc1{bottom:220.000000pt;}
.y92{bottom:225.666667pt;}
.y2f{bottom:226.146667pt;}
.y123{bottom:227.093333pt;}
.y10f{bottom:231.813333pt;}
.y5e{bottom:233.706667pt;}
.yf5{bottom:237.053333pt;}
.y91{bottom:245.093333pt;}
.y2e{bottom:245.560000pt;}
.y122{bottom:246.506667pt;}
.y10e{bottom:248.400000pt;}
.y5d{bottom:253.133333pt;}
.ybf{bottom:256.440000pt;}
.y90{bottom:264.480000pt;}
.y2d{bottom:265.426667pt;}
.y121{bottom:265.893333pt;}
.y5c{bottom:272.520000pt;}
.ybb{bottom:274.893333pt;}
.yf4{bottom:275.826667pt;}
.y8f{bottom:283.866667pt;}
.y2c{bottom:284.813333pt;}
.y120{bottom:285.293333pt;}
.y5b{bottom:291.906667pt;}
.yf3{bottom:295.213333pt;}
.y8e{bottom:303.253333pt;}
.y2b{bottom:304.200000pt;}
.y11f{bottom:304.680000pt;}
.y5a{bottom:311.293333pt;}
.yb6{bottom:311.306667pt;}
.yf2{bottom:311.773333pt;}
.y10d{bottom:321.266667pt;}
.y8d{bottom:322.680000pt;}
.y2a{bottom:323.626667pt;}
.y11e{bottom:324.573333pt;}
.yf1{bottom:330.240000pt;}
.y59{bottom:330.720000pt;}
.yb4{bottom:331.186667pt;}
.y8c{bottom:342.546667pt;}
.y29{bottom:343.013333pt;}
.y11d{bottom:343.960000pt;}
.yf0{bottom:349.160000pt;}
.y58{bottom:350.106667pt;}
.y10b{bottom:357.200000pt;}
.y8b{bottom:361.933333pt;}
.y28{bottom:362.400000pt;}
.y11c{bottom:363.346667pt;}
.yef{bottom:367.600000pt;}
.yb3{bottom:368.546667pt;}
.y57{bottom:369.973333pt;}
.yb2{bottom:375.640000pt;}
.y8a{bottom:381.320000pt;}
.y27{bottom:381.786667pt;}
.y11b{bottom:382.733333pt;}
.y56{bottom:389.360000pt;}
.yb1{bottom:395.066667pt;}
.y89{bottom:400.746667pt;}
.y26{bottom:401.213333pt;}
.y11a{bottom:402.160000pt;}
.yee{bottom:403.573333pt;}
.y55{bottom:408.786667pt;}
.y10a{bottom:411.613333pt;}
.yb0{bottom:414.453333pt;}
.y88{bottom:420.133333pt;}
.y25{bottom:421.080000pt;}
.y119{bottom:421.546667pt;}
.yed{bottom:422.493333pt;}
.y54{bottom:428.173333pt;}
.yaf{bottom:434.320000pt;}
.y118{bottom:437.626667pt;}
.y87{bottom:438.106667pt;}
.y24{bottom:440.466667pt;}
.ye4{bottom:440.933333pt;}
.y117{bottom:444.253333pt;}
.y53{bottom:447.560000pt;}
.y109{bottom:448.026667pt;}
.y86{bottom:449.453333pt;}
.yae{bottom:453.706667pt;}
.y23{bottom:459.853333pt;}
.y84{bottom:466.000000pt;}
.y106{bottom:466.480000pt;}
.y52{bottom:466.973333pt;}
.yad{bottom:473.133333pt;}
.y22{bottom:479.280000pt;}
.y51{bottom:486.373333pt;}
.y82{bottom:486.400000pt;}
.yac{bottom:492.520000pt;}
.y21{bottom:498.666667pt;}
.y50{bottom:505.760000pt;}
.y7f{bottom:506.253333pt;}
.yab{bottom:511.906667pt;}
.y20{bottom:518.053333pt;}
.y4f{bottom:525.146667pt;}
.ye2{bottom:530.853333pt;}
.yaa{bottom:531.293333pt;}
.y1e{bottom:534.160000pt;}
.y105{bottom:538.413333pt;}
.y1c{bottom:540.773333pt;}
.y4e{bottom:545.040000pt;}
.y7d{bottom:545.986667pt;}
.ya9{bottom:550.720000pt;}
.y1b{bottom:563.480000pt;}
.y4d{bottom:564.426667pt;}
.ya8{bottom:567.733333pt;}
.y104{bottom:574.840000pt;}
.y1a{bottom:582.866667pt;}
.y4c{bottom:583.813333pt;}
.ye1{bottom:584.760000pt;}
.y7b{bottom:585.240000pt;}
.ya7{bottom:587.600000pt;}
.y19{bottom:602.266667pt;}
.y4b{bottom:603.213333pt;}
.y79{bottom:605.573333pt;}
.ya6{bottom:607.933333pt;}
.y103{bottom:611.253333pt;}
.y18{bottom:621.680000pt;}
.ye0{bottom:621.706667pt;}
.y4a{bottom:622.626667pt;}
.ydd{bottom:640.146667pt;}
.y17{bottom:641.546667pt;}
.y49{bottom:642.013333pt;}
.y76{bottom:645.346667pt;}
.ya2{bottom:647.240000pt;}
.y16{bottom:660.933333pt;}
.y48{bottom:661.413333pt;}
.y78{bottom:665.213333pt;}
.ydc{bottom:676.560000pt;}
.y15{bottom:680.320000pt;}
.y47{bottom:680.800000pt;}
.y102{bottom:683.653333pt;}
.ya1{bottom:686.960000pt;}
.y75{bottom:687.893333pt;}
.ydb{bottom:695.000000pt;}
.y14{bottom:699.746667pt;}
.y46{bottom:700.693333pt;}
.y101{bottom:702.106667pt;}
.y74{bottom:703.533333pt;}
.ya0{bottom:707.306667pt;}
.yd1{bottom:713.453333pt;}
.y13{bottom:719.133333pt;}
.y45{bottom:720.080000pt;}
.yfd{bottom:720.546667pt;}
.y73{bottom:722.920000pt;}
.y9b{bottom:727.173333pt;}
.y12{bottom:738.520000pt;}
.y44{bottom:739.466667pt;}
.y11{bottom:757.906667pt;}
.y43{bottom:758.853333pt;}
.y72{bottom:761.693333pt;}
.y42{bottom:778.280000pt;}
.y10{bottom:778.746667pt;}
.y71{bottom:781.120000pt;}
.y41{bottom:797.666667pt;}
.yf{bottom:799.080000pt;}
.y70{bottom:800.506667pt;}
.y9a{bottom:807.120000pt;}
.y40{bottom:817.053333pt;}
.ye{bottom:818.480000pt;}
.y6f{bottom:819.893333pt;}
.y3f{bottom:836.440000pt;}
.yd{bottom:837.866667pt;}
.y6e{bottom:839.280000pt;}
.y3e{bottom:856.333333pt;}
.yce{bottom:856.813333pt;}
.yc{bottom:857.280000pt;}
.y6d{bottom:859.173333pt;}
.y3d{bottom:875.733333pt;}
.yb{bottom:877.613333pt;}
.y6c{bottom:878.560000pt;}
.y3c{bottom:895.120000pt;}
.ya{bottom:900.320000pt;}
.y3b{bottom:914.506667pt;}
.y9{bottom:923.013333pt;}
.y3a{bottom:933.933333pt;}
.y67{bottom:934.893333pt;}
.y8{bottom:945.746667pt;}
.y39{bottom:953.320000pt;}
.y66{bottom:957.573333pt;}
.y7{bottom:968.453333pt;}
.y38{bottom:972.706667pt;}
.y37{bottom:992.093333pt;}
.y6{bottom:1012.466667pt;}
.y4{bottom:1026.653333pt;}
.y2{bottom:1033.266667pt;}
.y1{bottom:1059.280000pt;}
.h5{height:6.594000pt;}
.h32{height:6.620667pt;}
.h18{height:11.571272pt;}
.h6{height:15.910805pt;}
.h2a{height:17.470667pt;}
.h1d{height:17.497333pt;}
.h24{height:17.944000pt;}
.h2c{height:17.957333pt;}
.h20{height:17.964000pt;}
.h23{height:17.970667pt;}
.h26{height:18.001333pt;}
.hc{height:19.362667pt;}
.h10{height:19.376000pt;}
.ha{height:19.389333pt;}
.h13{height:19.421333pt;}
.h11{height:19.849333pt;}
.h15{height:20.249930pt;}
.h3{height:22.686667pt;}
.h14{height:32.173569pt;}
.h31{height:35.428000pt;}
.h19{height:35.441333pt;}
.h1c{height:35.454667pt;}
.h2e{height:35.468000pt;}
.h1e{height:35.500000pt;}
.h25{height:35.914667pt;}
.h1f{height:35.941333pt;}
.he{height:36.160734pt;}
.h12{height:38.778667pt;}
.hd{height:38.809333pt;}
.h17{height:39.224000pt;}
.hf{height:39.237333pt;}
.h2d{height:44.838984pt;}
.hb{height:47.313758pt;}
.h2{height:49.178109pt;}
.h21{height:53.425333pt;}
.h27{height:53.438667pt;}
.h2b{height:53.912000pt;}
.h30{height:53.942667pt;}
.h1b{height:55.329333pt;}
.h7{height:56.412703pt;}
.h1a{height:58.668633pt;}
.h8{height:64.346070pt;}
.h4{height:66.105343pt;}
.h29{height:66.241966pt;}
.h2f{height:71.440000pt;}
.h9{height:76.801969pt;}
.h16{height:78.061333pt;}
.h28{height:88.937333pt;}
.h22{height:142.880000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.680000pt;}
.w7{width:54.416000pt;}
.w8{width:57.221333pt;}
.w6{width:61.469333pt;}
.w23{width:61.509333pt;}
.w10{width:65.734667pt;}
.wf{width:65.765333pt;}
.we{width:66.238667pt;}
.w22{width:66.738667pt;}
.w5{width:70.968000pt;}
.w21{width:76.169333pt;}
.w18{width:78.548000pt;}
.wd{width:81.372000pt;}
.wc{width:82.758667pt;}
.w24{width:85.160000pt;}
.w4{width:85.173333pt;}
.w19{width:87.992000pt;}
.w1a{width:88.010667pt;}
.w1b{width:88.465333pt;}
.w1f{width:89.852000pt;}
.w20{width:95.086667pt;}
.w17{width:99.346667pt;}
.w1c{width:99.833333pt;}
.wb{width:132.981333pt;}
.w11{width:133.453333pt;}
.w15{width:135.772000pt;}
.w9{width:155.680000pt;}
.w1e{width:157.093333pt;}
.w25{width:158.040000pt;}
.w12{width:169.398667pt;}
.w13{width:236.093333pt;}
.w14{width:255.053333pt;}
.w3{width:311.332000pt;}
.wa{width:362.893333pt;}
.w16{width:432.960000pt;}
.w26{width:491.160000pt;}
.w2{width:638.292000pt;}
.w1d{width:649.680000pt;}
.w1{width:793.333333pt;}
.w0{width:793.533333pt;}
.x0{left:0.000000pt;}
.x3d{left:3.310667pt;}
.x44{left:4.266667pt;}
.x4c{left:5.666667pt;}
.x3{left:7.093333pt;}
.x14{left:8.040000pt;}
.x45{left:8.986667pt;}
.x11{left:10.373333pt;}
.x29{left:11.813333pt;}
.x20{left:12.773333pt;}
.x5a{left:13.693333pt;}
.x3c{left:14.640000pt;}
.xf{left:15.613333pt;}
.x52{left:17.000000pt;}
.x23{left:17.960000pt;}
.x3e{left:18.960000pt;}
.x1d{left:19.893333pt;}
.x1e{left:20.800000pt;}
.xd{left:22.253333pt;}
.x40{left:23.653333pt;}
.x2e{left:25.560000pt;}
.x2a{left:27.426667pt;}
.x2b{left:28.373333pt;}
.x38{left:30.266667pt;}
.x18{left:31.684000pt;}
.x55{left:33.613333pt;}
.x49{left:35.941333pt;}
.x19{left:36.884000pt;}
.x27{left:38.310667pt;}
.x4a{left:41.168000pt;}
.x53{left:42.573333pt;}
.x24{left:43.533333pt;}
.x57{left:44.960000pt;}
.x58{left:46.381333pt;}
.x54{left:47.320000pt;}
.x56{left:49.666667pt;}
.x5f{left:52.040000pt;}
.x2f{left:68.120000pt;}
.x2c{left:92.746667pt;}
.x2{left:97.009333pt;}
.x37{left:100.318667pt;}
.x3a{left:101.266667pt;}
.x1{left:104.102667pt;}
.x32{left:107.880000pt;}
.xb{left:108.830667pt;}
.x31{left:109.773333pt;}
.x30{left:112.613333pt;}
.xa{left:113.560000pt;}
.x16{left:117.344000pt;}
.x25{left:123.018667pt;}
.x5d{left:123.964000pt;}
.x35{left:125.382667pt;}
.x1b{left:131.053333pt;}
.x5b{left:138.186667pt;}
.x5c{left:141.493333pt;}
.x33{left:142.440000pt;}
.x4{left:151.426667pt;}
.x15{left:152.373333pt;}
.x48{left:167.034667pt;}
.x47{left:210.573333pt;}
.x60{left:215.760000pt;}
.x39{left:236.573333pt;}
.x1a{left:253.173333pt;}
.x5e{left:255.533333pt;}
.x4b{left:258.840000pt;}
.x28{left:266.880000pt;}
.x3f{left:315.613333pt;}
.x36{left:316.560000pt;}
.x17{left:336.893333pt;}
.x4d{left:349.200000pt;}
.x26{left:399.826667pt;}
.x41{left:404.093333pt;}
.xc{left:408.346667pt;}
.x1f{left:417.826667pt;}
.x8{left:423.973333pt;}
.x5{left:425.400000pt;}
.x4e{left:444.786667pt;}
.x46{left:449.040000pt;}
.x21{left:484.066667pt;}
.x42{left:492.586667pt;}
.xe{left:493.520000pt;}
.x2d{left:502.986667pt;}
.x4f{left:521.426667pt;}
.x9{left:532.333333pt;}
.x22{left:550.333333pt;}
.x10{left:565.000000pt;}
.x43{left:581.080000pt;}
.x50{left:588.640000pt;}
.x1c{left:617.013333pt;}
.x12{left:626.946667pt;}
.x6{left:639.280000pt;}
.x7{left:640.226667pt;}
.x51{left:651.120000pt;}
.x59{left:665.306667pt;}
.x3b{left:670.040000pt;}
.x13{left:681.866667pt;}
.x34{left:687.986667pt;}
}




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