
    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_8b9485acc4563d5a8f230a2c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_d63a965514827af103e1a53d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_c5acae90a4e7729a00ad4bf0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.v3{vertical-align:-22.200000px;}
.v4{vertical-align:-21.090000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v5{vertical-align:24.420000px;}
.v2{vertical-align:26.640000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.285000px;}
.ls9{letter-spacing:0.720000px;}
.ls6{letter-spacing:3.600000px;}
.ls1{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.lsa{letter-spacing:6.000000px;}
.lsc{letter-spacing:6.352200px;}
.ls2{letter-spacing:6.600000px;}
.ls5{letter-spacing:7.200000px;}
.lsb{letter-spacing:8.672400px;}
.ls3{letter-spacing:10.200000px;}
.lsd{letter-spacing:18.026400px;}
.lse{letter-spacing:19.800000px;}
.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;}
}
.ws1{word-spacing:-38.862000px;}
.wsd{word-spacing:-36.102000px;}
.wsa{word-spacing:-27.432000px;}
.wsb{word-spacing:-22.860000px;}
.ws2{word-spacing:-20.232000px;}
.wsc{word-spacing:-18.546000px;}
.ws9{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.860000px;}
.ws7{word-spacing:-16.302000px;}
.ws5{word-spacing:-16.017000px;}
.ws6{word-spacing:-14.079000px;}
.ws3{word-spacing:-12.139200px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-20.446667px;}
._1d{margin-left:-18.546000px;}
._1f{margin-left:-17.514000px;}
._14{margin-left:-15.924000px;}
._1e{margin-left:-13.596000px;}
._1c{margin-left:-12.510600px;}
._1b{margin-left:-11.311800px;}
._6{margin-left:-10.200000px;}
._d{margin-left:-7.980000px;}
._3{margin-left:-6.732000px;}
._2{margin-left:-4.950000px;}
._0{margin-left:-3.906000px;}
._7{margin-left:-2.856000px;}
._4{margin-left:-1.020000px;}
._b{width:1.062000px;}
._9{width:2.244000px;}
._1{width:3.780000px;}
._c{width:5.196000px;}
._19{width:6.197400px;}
._8{width:7.200000px;}
._e{width:9.072000px;}
._a{width:11.016000px;}
._11{width:12.114000px;}
._10{width:13.824000px;}
._17{width:15.282000px;}
._16{width:16.783200px;}
._18{width:18.036000px;}
._13{width:19.080000px;}
._1a{width:21.288000px;}
._15{width:38.923200px;}
._f{width:56.923200px;}
._12{width:58.329600px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.200000px;}
.fs7{font-size:36.000000px;}
.fsa{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.837550px;}
.y1f{bottom:171.813150px;}
.y11b{bottom:176.154600px;}
.y74{bottom:177.363150px;}
.y44{bottom:181.612500px;}
.y143{bottom:182.160000px;}
.yc0{bottom:182.812500px;}
.y163{bottom:187.894350px;}
.y1e{bottom:188.313150px;}
.y73{bottom:193.863150px;}
.y11a{bottom:195.954600px;}
.y142{bottom:202.110000px;}
.y43{bottom:203.212500px;}
.ybf{bottom:204.412500px;}
.y72{bottom:204.813150px;}
.y162{bottom:208.144200px;}
.y1d{bottom:210.363150px;}
.y119{bottom:215.754600px;}
.ye6{bottom:219.862500px;}
.y63{bottom:221.313150px;}
.y141{bottom:222.060000px;}
.y42{bottom:224.812500px;}
.ybe{bottom:226.012500px;}
.ye0{bottom:226.863150px;}
.y161{bottom:228.394200px;}
.y118{bottom:235.404600px;}
.y62{bottom:237.813150px;}
.ye5{bottom:241.612500px;}
.y140{bottom:242.010000px;}
.y94{bottom:242.362500px;}
.y71{bottom:243.363150px;}
.y41{bottom:246.412500px;}
.ybd{bottom:247.612500px;}
.y160{bottom:248.644200px;}
.y100{bottom:250.508550px;}
.yb2{bottom:251.408550px;}
.y1c{bottom:252.929400px;}
.y70{bottom:254.313150px;}
.y117{bottom:255.054600px;}
.y61{bottom:259.585650px;}
.y13f{bottom:261.960000px;}
.ye4{bottom:263.362500px;}
.y93{bottom:263.962500px;}
.y40{bottom:268.012500px;}
.y15f{bottom:268.894200px;}
.ybc{bottom:269.212500px;}
.yc2{bottom:270.813150px;}
.yff{bottom:272.408550px;}
.yb1{bottom:273.008550px;}
.y1b{bottom:274.529400px;}
.y116{bottom:274.704600px;}
.y6f{bottom:276.363150px;}
.ydf{bottom:276.412500px;}
.y13e{bottom:281.910000px;}
.ye3{bottom:285.112500px;}
.y92{bottom:285.562500px;}
.y6e{bottom:287.313150px;}
.y15e{bottom:289.144200px;}
.y3f{bottom:289.612500px;}
.ybb{bottom:290.812500px;}
.yc1{bottom:292.863150px;}
.yfe{bottom:294.308550px;}
.y115{bottom:294.354600px;}
.yb0{bottom:294.608550px;}
.y1a{bottom:296.129400px;}
.yde{bottom:298.312500px;}
.y60{bottom:300.908550px;}
.y13d{bottom:301.860000px;}
.y6d{bottom:303.813150px;}
.ye2{bottom:306.862500px;}
.y91{bottom:307.162500px;}
.y15d{bottom:309.394200px;}
.y3e{bottom:311.212500px;}
.yba{bottom:312.412500px;}
.y114{bottom:314.004600px;}
.yfd{bottom:316.208550px;}
.y19{bottom:317.729400px;}
.ydd{bottom:320.212500px;}
.y6c{bottom:320.313150px;}
.y13c{bottom:321.810000px;}
.y5f{bottom:322.508550px;}
.yaf{bottom:324.712500px;}
.ye1{bottom:328.612500px;}
.y90{bottom:328.762500px;}
.y15c{bottom:329.644200px;}
.y3d{bottom:332.812500px;}
.y113{bottom:333.654600px;}
.yb9{bottom:334.012500px;}
.y6b{bottom:336.813150px;}
.yfc{bottom:338.108550px;}
.y18{bottom:339.329400px;}
.y13b{bottom:341.760000px;}
.ydc{bottom:342.112500px;}
.y5e{bottom:344.108550px;}
.y15b{bottom:349.894200px;}
.y8f{bottom:350.362500px;}
.y112{bottom:353.304600px;}
.y6a{bottom:353.313150px;}
.y3c{bottom:354.412500px;}
.yb8{bottom:355.612500px;}
.yfb{bottom:360.008550px;}
.y17{bottom:360.929400px;}
.y13a{bottom:361.710000px;}
.ydb{bottom:364.012500px;}
.y5d{bottom:365.708550px;}
.y15a{bottom:370.144200px;}
.y8e{bottom:372.112500px;}
.y69{bottom:375.363150px;}
.y3b{bottom:376.012500px;}
.yb7{bottom:377.212500px;}
.y111{bottom:381.608550px;}
.y139{bottom:381.660000px;}
.yfa{bottom:381.908550px;}
.y16{bottom:382.529400px;}
.yda{bottom:385.912500px;}
.y68{bottom:386.313150px;}
.y5c{bottom:387.308550px;}
.y159{bottom:390.394200px;}
.y8d{bottom:393.862500px;}
.y3a{bottom:397.612500px;}
.yb6{bottom:398.812500px;}
.y138{bottom:401.610000px;}
.yf9{bottom:403.808550px;}
.y15{bottom:404.129400px;}
.yae{bottom:404.812500px;}
.yd9{bottom:407.812500px;}
.y67{bottom:408.363150px;}
.y5b{bottom:408.908550px;}
.y8c{bottom:415.612500px;}
.y39{bottom:419.212500px;}
.y66{bottom:419.313150px;}
.yb5{bottom:420.412500px;}
.y137{bottom:421.560000px;}
.yf8{bottom:425.708550px;}
.y14{bottom:425.729400px;}
.yad{bottom:426.412500px;}
.yd8{bottom:429.712500px;}
.y5a{bottom:430.508550px;}
.y110{bottom:433.612500px;}
.y65{bottom:435.813150px;}
.y8b{bottom:437.362500px;}
.y158{bottom:440.448150px;}
.y38{bottom:440.812500px;}
.y136{bottom:441.510000px;}
.yb4{bottom:442.012500px;}
.y13{bottom:447.329400px;}
.yf7{bottom:447.608550px;}
.yac{bottom:448.012500px;}
.yd7{bottom:451.612500px;}
.y59{bottom:452.108550px;}
.y10f{bottom:455.512500px;}
.y64{bottom:457.863150px;}
.y8a{bottom:459.112500px;}
.y135{bottom:461.460000px;}
.y37{bottom:462.412500px;}
.yb3{bottom:463.612500px;}
.y157{bottom:468.902100px;}
.y12{bottom:468.929400px;}
.yab{bottom:469.312500px;}
.yf6{bottom:469.508550px;}
.yd6{bottom:473.512500px;}
.y58{bottom:473.708550px;}
.y10e{bottom:477.412500px;}
.y89{bottom:480.862500px;}
.y134{bottom:481.410000px;}
.y36{bottom:484.012500px;}
.y156{bottom:488.852100px;}
.y11{bottom:490.529400px;}
.yaa{bottom:490.612500px;}
.y57{bottom:495.308550px;}
.yd5{bottom:495.412500px;}
.y10d{bottom:499.312500px;}
.yf5{bottom:499.912500px;}
.y133{bottom:501.360000px;}
.y88{bottom:502.612500px;}
.y35{bottom:505.612500px;}
.y155{bottom:508.802100px;}
.ya9{bottom:511.912500px;}
.y10{bottom:512.129400px;}
.y56{bottom:516.908550px;}
.yd4{bottom:517.312500px;}
.y10c{bottom:521.212500px;}
.y132{bottom:521.310000px;}
.y87{bottom:524.362500px;}
.y34{bottom:527.212500px;}
.ya8{bottom:533.212500px;}
.yf{bottom:533.729400px;}
.y55{bottom:538.508550px;}
.yd3{bottom:539.212500px;}
.y131{bottom:541.260000px;}
.y10b{bottom:543.112500px;}
.y86{bottom:546.112500px;}
.y33{bottom:548.812500px;}
.ya7{bottom:554.512500px;}
.ye{bottom:555.329400px;}
.y54{bottom:560.108550px;}
.yd2{bottom:561.112500px;}
.y130{bottom:561.210000px;}
.y10a{bottom:565.012500px;}
.y85{bottom:567.862500px;}
.y32{bottom:570.412500px;}
.ya6{bottom:575.812500px;}
.yd{bottom:576.929400px;}
.y12f{bottom:581.160000px;}
.y53{bottom:581.708550px;}
.yd1{bottom:583.012500px;}
.y109{bottom:586.912500px;}
.yf4{bottom:587.512500px;}
.y84{bottom:589.612500px;}
.y31{bottom:592.012500px;}
.y154{bottom:593.760000px;}
.ya5{bottom:597.112500px;}
.yc{bottom:598.529400px;}
.y12e{bottom:601.110000px;}
.y52{bottom:603.308550px;}
.yd0{bottom:604.912500px;}
.y108{bottom:608.812500px;}
.yf3{bottom:609.412500px;}
.y83{bottom:611.362500px;}
.y30{bottom:613.612500px;}
.ya4{bottom:618.412500px;}
.yb{bottom:620.129400px;}
.y12d{bottom:621.060000px;}
.y51{bottom:624.908550px;}
.ycf{bottom:626.812500px;}
.y107{bottom:630.712500px;}
.yf2{bottom:631.312500px;}
.y82{bottom:633.112500px;}
.y2f{bottom:635.212500px;}
.y153{bottom:636.210000px;}
.ya3{bottom:639.712500px;}
.y12c{bottom:641.010000px;}
.ya{bottom:641.729400px;}
.y50{bottom:646.508550px;}
.yce{bottom:648.712500px;}
.y106{bottom:652.612500px;}
.yf1{bottom:653.212500px;}
.y81{bottom:654.862500px;}
.y152{bottom:656.460000px;}
.y2e{bottom:656.812500px;}
.y12b{bottom:660.960000px;}
.ya2{bottom:661.012500px;}
.y9{bottom:663.329400px;}
.y4f{bottom:668.108550px;}
.ycd{bottom:670.612500px;}
.y105{bottom:674.512500px;}
.yf0{bottom:675.112500px;}
.y80{bottom:676.612500px;}
.y151{bottom:676.710000px;}
.y2d{bottom:678.412500px;}
.y12a{bottom:680.910000px;}
.ya1{bottom:682.312500px;}
.y8{bottom:684.929400px;}
.y4e{bottom:689.708550px;}
.ycc{bottom:692.512500px;}
.y104{bottom:696.412500px;}
.y150{bottom:696.960000px;}
.yef{bottom:697.012500px;}
.y7f{bottom:698.362500px;}
.y2c{bottom:700.012500px;}
.y129{bottom:700.860000px;}
.ya0{bottom:703.612500px;}
.y4d{bottom:711.308550px;}
.ycb{bottom:714.412500px;}
.y7{bottom:715.033350px;}
.y14f{bottom:717.210000px;}
.y103{bottom:718.312500px;}
.yee{bottom:718.912500px;}
.y7e{bottom:720.112500px;}
.y128{bottom:720.810000px;}
.y2b{bottom:721.612500px;}
.y9f{bottom:724.912500px;}
.y4c{bottom:732.908550px;}
.y14e{bottom:737.460000px;}
.y102{bottom:740.212500px;}
.y127{bottom:740.760000px;}
.yed{bottom:740.812500px;}
.y7d{bottom:741.862500px;}
.y2a{bottom:743.212500px;}
.y9e{bottom:746.212500px;}
.y168{bottom:751.560000px;}
.y4b{bottom:754.508550px;}
.y14d{bottom:757.710000px;}
.y126{bottom:760.710000px;}
.y101{bottom:762.112500px;}
.yec{bottom:762.712500px;}
.y7c{bottom:763.612500px;}
.y29{bottom:764.812500px;}
.y9d{bottom:767.512500px;}
.y167{bottom:769.560000px;}
.y4a{bottom:776.108550px;}
.y14c{bottom:777.960000px;}
.y125{bottom:780.660000px;}
.yca{bottom:784.012500px;}
.yeb{bottom:784.612500px;}
.y7b{bottom:785.362500px;}
.y28{bottom:786.412500px;}
.y166{bottom:787.560000px;}
.y9c{bottom:788.812500px;}
.y14b{bottom:798.210000px;}
.y124{bottom:800.610000px;}
.y165{bottom:805.560000px;}
.yc9{bottom:805.912500px;}
.yea{bottom:806.512500px;}
.y7a{bottom:807.112500px;}
.y27{bottom:808.012500px;}
.y9b{bottom:810.112500px;}
.y14a{bottom:818.460000px;}
.y123{bottom:820.560000px;}
.y6{bottom:823.033350px;}
.yc8{bottom:827.812500px;}
.ye9{bottom:828.412500px;}
.y79{bottom:828.862500px;}
.y26{bottom:829.612500px;}
.y9a{bottom:831.412500px;}
.y149{bottom:838.710000px;}
.y122{bottom:840.510000px;}
.y49{bottom:842.708550px;}
.yc7{bottom:849.712500px;}
.ye8{bottom:850.312500px;}
.y78{bottom:850.612500px;}
.y25{bottom:851.212500px;}
.y99{bottom:852.712500px;}
.y5{bottom:853.633350px;}
.y148{bottom:858.960000px;}
.y121{bottom:860.460000px;}
.y48{bottom:864.308550px;}
.yc6{bottom:871.612500px;}
.ye7{bottom:872.212500px;}
.y77{bottom:872.362500px;}
.y24{bottom:872.812500px;}
.y98{bottom:874.012500px;}
.y147{bottom:879.210000px;}
.y164{bottom:880.260000px;}
.y120{bottom:880.410000px;}
.y4{bottom:884.233350px;}
.y47{bottom:885.908550px;}
.yc5{bottom:893.512500px;}
.y76{bottom:894.112500px;}
.y23{bottom:894.412500px;}
.y97{bottom:895.312500px;}
.y146{bottom:899.460000px;}
.y11f{bottom:900.360000px;}
.y46{bottom:907.508550px;}
.yc4{bottom:915.412500px;}
.y75{bottom:915.862500px;}
.y22{bottom:916.012500px;}
.y96{bottom:916.612500px;}
.y145{bottom:919.710000px;}
.y11e{bottom:920.310000px;}
.y45{bottom:929.108550px;}
.yc3{bottom:937.312500px;}
.y21{bottom:937.612500px;}
.y95{bottom:937.912500px;}
.y3{bottom:939.494700px;}
.y144{bottom:939.960000px;}
.y11d{bottom:940.260000px;}
.y2{bottom:957.494700px;}
.y20{bottom:959.212500px;}
.y11c{bottom:960.210000px;}
.hc{height:33.906094px;}
.h8{height:34.734375px;}
.hd{height:35.690625px;}
.h4{height:40.523438px;}
.h3{height:43.523438px;}
.ha{height:46.312500px;}
.hf{height:50.947266px;}
.h9{height:54.996094px;}
.h5{height:56.041992px;}
.h2{height:57.890625px;}
.hb{height:61.136719px;}
.he{height:63.679688px;}
.h7{height:69.468750px;}
.h6{height:98.414062px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x7{left:108.035400px;}
.x1{left:129.295350px;}
.x4{left:150.555150px;}
.x8{left:171.814950px;}
.x2{left:182.170350px;}
.x5{left:191.051850px;}
.x3{left:302.077950px;}
.x9{left:574.709400px;}
.x6{left:607.039350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v4{vertical-align:-18.746667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v5{vertical-align:21.706667pt;}
.v2{vertical-align:23.680000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.253333pt;}
.ls9{letter-spacing:0.640000pt;}
.ls6{letter-spacing:3.200000pt;}
.ls1{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.lsa{letter-spacing:5.333333pt;}
.lsc{letter-spacing:5.646400pt;}
.ls2{letter-spacing:5.866667pt;}
.ls5{letter-spacing:6.400000pt;}
.lsb{letter-spacing:7.708800pt;}
.ls3{letter-spacing:9.066667pt;}
.lsd{letter-spacing:16.023467pt;}
.lse{letter-spacing:17.600000pt;}
.ws1{word-spacing:-34.544000pt;}
.wsd{word-spacing:-32.090667pt;}
.wsa{word-spacing:-24.384000pt;}
.wsb{word-spacing:-20.320000pt;}
.ws2{word-spacing:-17.984000pt;}
.wsc{word-spacing:-16.485333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws7{word-spacing:-14.490667pt;}
.ws5{word-spacing:-14.237333pt;}
.ws6{word-spacing:-12.514667pt;}
.ws3{word-spacing:-10.790400pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-18.174815pt;}
._1d{margin-left:-16.485333pt;}
._1f{margin-left:-15.568000pt;}
._14{margin-left:-14.154667pt;}
._1e{margin-left:-12.085333pt;}
._1c{margin-left:-11.120533pt;}
._1b{margin-left:-10.054933pt;}
._6{margin-left:-9.066667pt;}
._d{margin-left:-7.093333pt;}
._3{margin-left:-5.984000pt;}
._2{margin-left:-4.400000pt;}
._0{margin-left:-3.472000pt;}
._7{margin-left:-2.538667pt;}
._4{margin-left:-0.906667pt;}
._b{width:0.944000pt;}
._9{width:1.994667pt;}
._1{width:3.360000pt;}
._c{width:4.618667pt;}
._19{width:5.508800pt;}
._8{width:6.400000pt;}
._e{width:8.064000pt;}
._a{width:9.792000pt;}
._11{width:10.768000pt;}
._10{width:12.288000pt;}
._17{width:13.584000pt;}
._16{width:14.918400pt;}
._18{width:16.032000pt;}
._13{width:16.960000pt;}
._1a{width:18.922667pt;}
._15{width:34.598400pt;}
._f{width:50.598400pt;}
._12{width:51.848533pt;}
.fs9{font-size:30.400000pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.855600pt;}
.y1f{bottom:152.722800pt;}
.y11b{bottom:156.581867pt;}
.y74{bottom:157.656133pt;}
.y44{bottom:161.433333pt;}
.y143{bottom:161.920000pt;}
.yc0{bottom:162.500000pt;}
.y163{bottom:167.017200pt;}
.y1e{bottom:167.389467pt;}
.y73{bottom:172.322800pt;}
.y11a{bottom:174.181867pt;}
.y142{bottom:179.653333pt;}
.y43{bottom:180.633333pt;}
.ybf{bottom:181.700000pt;}
.y72{bottom:182.056133pt;}
.y162{bottom:185.017067pt;}
.y1d{bottom:186.989467pt;}
.y119{bottom:191.781867pt;}
.ye6{bottom:195.433333pt;}
.y63{bottom:196.722800pt;}
.y141{bottom:197.386667pt;}
.y42{bottom:199.833333pt;}
.ybe{bottom:200.900000pt;}
.ye0{bottom:201.656133pt;}
.y161{bottom:203.017067pt;}
.y118{bottom:209.248533pt;}
.y62{bottom:211.389467pt;}
.ye5{bottom:214.766667pt;}
.y140{bottom:215.120000pt;}
.y94{bottom:215.433333pt;}
.y71{bottom:216.322800pt;}
.y41{bottom:219.033333pt;}
.ybd{bottom:220.100000pt;}
.y160{bottom:221.017067pt;}
.y100{bottom:222.674267pt;}
.yb2{bottom:223.474267pt;}
.y1c{bottom:224.826133pt;}
.y70{bottom:226.056133pt;}
.y117{bottom:226.715200pt;}
.y61{bottom:230.742800pt;}
.y13f{bottom:232.853333pt;}
.ye4{bottom:234.100000pt;}
.y93{bottom:234.633333pt;}
.y40{bottom:238.233333pt;}
.y15f{bottom:239.017067pt;}
.ybc{bottom:239.300000pt;}
.yc2{bottom:240.722800pt;}
.yff{bottom:242.140933pt;}
.yb1{bottom:242.674267pt;}
.y1b{bottom:244.026133pt;}
.y116{bottom:244.181867pt;}
.y6f{bottom:245.656133pt;}
.ydf{bottom:245.700000pt;}
.y13e{bottom:250.586667pt;}
.ye3{bottom:253.433333pt;}
.y92{bottom:253.833333pt;}
.y6e{bottom:255.389467pt;}
.y15e{bottom:257.017067pt;}
.y3f{bottom:257.433333pt;}
.ybb{bottom:258.500000pt;}
.yc1{bottom:260.322800pt;}
.yfe{bottom:261.607600pt;}
.y115{bottom:261.648533pt;}
.yb0{bottom:261.874267pt;}
.y1a{bottom:263.226133pt;}
.yde{bottom:265.166667pt;}
.y60{bottom:267.474267pt;}
.y13d{bottom:268.320000pt;}
.y6d{bottom:270.056133pt;}
.ye2{bottom:272.766667pt;}
.y91{bottom:273.033333pt;}
.y15d{bottom:275.017067pt;}
.y3e{bottom:276.633333pt;}
.yba{bottom:277.700000pt;}
.y114{bottom:279.115200pt;}
.yfd{bottom:281.074267pt;}
.y19{bottom:282.426133pt;}
.ydd{bottom:284.633333pt;}
.y6c{bottom:284.722800pt;}
.y13c{bottom:286.053333pt;}
.y5f{bottom:286.674267pt;}
.yaf{bottom:288.633333pt;}
.ye1{bottom:292.100000pt;}
.y90{bottom:292.233333pt;}
.y15c{bottom:293.017067pt;}
.y3d{bottom:295.833333pt;}
.y113{bottom:296.581867pt;}
.yb9{bottom:296.900000pt;}
.y6b{bottom:299.389467pt;}
.yfc{bottom:300.540933pt;}
.y18{bottom:301.626133pt;}
.y13b{bottom:303.786667pt;}
.ydc{bottom:304.100000pt;}
.y5e{bottom:305.874267pt;}
.y15b{bottom:311.017067pt;}
.y8f{bottom:311.433333pt;}
.y112{bottom:314.048533pt;}
.y6a{bottom:314.056133pt;}
.y3c{bottom:315.033333pt;}
.yb8{bottom:316.100000pt;}
.yfb{bottom:320.007600pt;}
.y17{bottom:320.826133pt;}
.y13a{bottom:321.520000pt;}
.ydb{bottom:323.566667pt;}
.y5d{bottom:325.074267pt;}
.y15a{bottom:329.017067pt;}
.y8e{bottom:330.766667pt;}
.y69{bottom:333.656133pt;}
.y3b{bottom:334.233333pt;}
.yb7{bottom:335.300000pt;}
.y111{bottom:339.207600pt;}
.y139{bottom:339.253333pt;}
.yfa{bottom:339.474267pt;}
.y16{bottom:340.026133pt;}
.yda{bottom:343.033333pt;}
.y68{bottom:343.389467pt;}
.y5c{bottom:344.274267pt;}
.y159{bottom:347.017067pt;}
.y8d{bottom:350.100000pt;}
.y3a{bottom:353.433333pt;}
.yb6{bottom:354.500000pt;}
.y138{bottom:356.986667pt;}
.yf9{bottom:358.940933pt;}
.y15{bottom:359.226133pt;}
.yae{bottom:359.833333pt;}
.yd9{bottom:362.500000pt;}
.y67{bottom:362.989467pt;}
.y5b{bottom:363.474267pt;}
.y8c{bottom:369.433333pt;}
.y39{bottom:372.633333pt;}
.y66{bottom:372.722800pt;}
.yb5{bottom:373.700000pt;}
.y137{bottom:374.720000pt;}
.yf8{bottom:378.407600pt;}
.y14{bottom:378.426133pt;}
.yad{bottom:379.033333pt;}
.yd8{bottom:381.966667pt;}
.y5a{bottom:382.674267pt;}
.y110{bottom:385.433333pt;}
.y65{bottom:387.389467pt;}
.y8b{bottom:388.766667pt;}
.y158{bottom:391.509467pt;}
.y38{bottom:391.833333pt;}
.y136{bottom:392.453333pt;}
.yb4{bottom:392.900000pt;}
.y13{bottom:397.626133pt;}
.yf7{bottom:397.874267pt;}
.yac{bottom:398.233333pt;}
.yd7{bottom:401.433333pt;}
.y59{bottom:401.874267pt;}
.y10f{bottom:404.900000pt;}
.y64{bottom:406.989467pt;}
.y8a{bottom:408.100000pt;}
.y135{bottom:410.186667pt;}
.y37{bottom:411.033333pt;}
.yb3{bottom:412.100000pt;}
.y157{bottom:416.801867pt;}
.y12{bottom:416.826133pt;}
.yab{bottom:417.166667pt;}
.yf6{bottom:417.340933pt;}
.yd6{bottom:420.900000pt;}
.y58{bottom:421.074267pt;}
.y10e{bottom:424.366667pt;}
.y89{bottom:427.433333pt;}
.y134{bottom:427.920000pt;}
.y36{bottom:430.233333pt;}
.y156{bottom:434.535200pt;}
.y11{bottom:436.026133pt;}
.yaa{bottom:436.100000pt;}
.y57{bottom:440.274267pt;}
.yd5{bottom:440.366667pt;}
.y10d{bottom:443.833333pt;}
.yf5{bottom:444.366667pt;}
.y133{bottom:445.653333pt;}
.y88{bottom:446.766667pt;}
.y35{bottom:449.433333pt;}
.y155{bottom:452.268533pt;}
.ya9{bottom:455.033333pt;}
.y10{bottom:455.226133pt;}
.y56{bottom:459.474267pt;}
.yd4{bottom:459.833333pt;}
.y10c{bottom:463.300000pt;}
.y132{bottom:463.386667pt;}
.y87{bottom:466.100000pt;}
.y34{bottom:468.633333pt;}
.ya8{bottom:473.966667pt;}
.yf{bottom:474.426133pt;}
.y55{bottom:478.674267pt;}
.yd3{bottom:479.300000pt;}
.y131{bottom:481.120000pt;}
.y10b{bottom:482.766667pt;}
.y86{bottom:485.433333pt;}
.y33{bottom:487.833333pt;}
.ya7{bottom:492.900000pt;}
.ye{bottom:493.626133pt;}
.y54{bottom:497.874267pt;}
.yd2{bottom:498.766667pt;}
.y130{bottom:498.853333pt;}
.y10a{bottom:502.233333pt;}
.y85{bottom:504.766667pt;}
.y32{bottom:507.033333pt;}
.ya6{bottom:511.833333pt;}
.yd{bottom:512.826133pt;}
.y12f{bottom:516.586667pt;}
.y53{bottom:517.074267pt;}
.yd1{bottom:518.233333pt;}
.y109{bottom:521.700000pt;}
.yf4{bottom:522.233333pt;}
.y84{bottom:524.100000pt;}
.y31{bottom:526.233333pt;}
.y154{bottom:527.786667pt;}
.ya5{bottom:530.766667pt;}
.yc{bottom:532.026133pt;}
.y12e{bottom:534.320000pt;}
.y52{bottom:536.274267pt;}
.yd0{bottom:537.700000pt;}
.y108{bottom:541.166667pt;}
.yf3{bottom:541.700000pt;}
.y83{bottom:543.433333pt;}
.y30{bottom:545.433333pt;}
.ya4{bottom:549.700000pt;}
.yb{bottom:551.226133pt;}
.y12d{bottom:552.053333pt;}
.y51{bottom:555.474267pt;}
.ycf{bottom:557.166667pt;}
.y107{bottom:560.633333pt;}
.yf2{bottom:561.166667pt;}
.y82{bottom:562.766667pt;}
.y2f{bottom:564.633333pt;}
.y153{bottom:565.520000pt;}
.ya3{bottom:568.633333pt;}
.y12c{bottom:569.786667pt;}
.ya{bottom:570.426133pt;}
.y50{bottom:574.674267pt;}
.yce{bottom:576.633333pt;}
.y106{bottom:580.100000pt;}
.yf1{bottom:580.633333pt;}
.y81{bottom:582.100000pt;}
.y152{bottom:583.520000pt;}
.y2e{bottom:583.833333pt;}
.y12b{bottom:587.520000pt;}
.ya2{bottom:587.566667pt;}
.y9{bottom:589.626133pt;}
.y4f{bottom:593.874267pt;}
.ycd{bottom:596.100000pt;}
.y105{bottom:599.566667pt;}
.yf0{bottom:600.100000pt;}
.y80{bottom:601.433333pt;}
.y151{bottom:601.520000pt;}
.y2d{bottom:603.033333pt;}
.y12a{bottom:605.253333pt;}
.ya1{bottom:606.500000pt;}
.y8{bottom:608.826133pt;}
.y4e{bottom:613.074267pt;}
.ycc{bottom:615.566667pt;}
.y104{bottom:619.033333pt;}
.y150{bottom:619.520000pt;}
.yef{bottom:619.566667pt;}
.y7f{bottom:620.766667pt;}
.y2c{bottom:622.233333pt;}
.y129{bottom:622.986667pt;}
.ya0{bottom:625.433333pt;}
.y4d{bottom:632.274267pt;}
.ycb{bottom:635.033333pt;}
.y7{bottom:635.585200pt;}
.y14f{bottom:637.520000pt;}
.y103{bottom:638.500000pt;}
.yee{bottom:639.033333pt;}
.y7e{bottom:640.100000pt;}
.y128{bottom:640.720000pt;}
.y2b{bottom:641.433333pt;}
.y9f{bottom:644.366667pt;}
.y4c{bottom:651.474267pt;}
.y14e{bottom:655.520000pt;}
.y102{bottom:657.966667pt;}
.y127{bottom:658.453333pt;}
.yed{bottom:658.500000pt;}
.y7d{bottom:659.433333pt;}
.y2a{bottom:660.633333pt;}
.y9e{bottom:663.300000pt;}
.y168{bottom:668.053333pt;}
.y4b{bottom:670.674267pt;}
.y14d{bottom:673.520000pt;}
.y126{bottom:676.186667pt;}
.y101{bottom:677.433333pt;}
.yec{bottom:677.966667pt;}
.y7c{bottom:678.766667pt;}
.y29{bottom:679.833333pt;}
.y9d{bottom:682.233333pt;}
.y167{bottom:684.053333pt;}
.y4a{bottom:689.874267pt;}
.y14c{bottom:691.520000pt;}
.y125{bottom:693.920000pt;}
.yca{bottom:696.900000pt;}
.yeb{bottom:697.433333pt;}
.y7b{bottom:698.100000pt;}
.y28{bottom:699.033333pt;}
.y166{bottom:700.053333pt;}
.y9c{bottom:701.166667pt;}
.y14b{bottom:709.520000pt;}
.y124{bottom:711.653333pt;}
.y165{bottom:716.053333pt;}
.yc9{bottom:716.366667pt;}
.yea{bottom:716.900000pt;}
.y7a{bottom:717.433333pt;}
.y27{bottom:718.233333pt;}
.y9b{bottom:720.100000pt;}
.y14a{bottom:727.520000pt;}
.y123{bottom:729.386667pt;}
.y6{bottom:731.585200pt;}
.yc8{bottom:735.833333pt;}
.ye9{bottom:736.366667pt;}
.y79{bottom:736.766667pt;}
.y26{bottom:737.433333pt;}
.y9a{bottom:739.033333pt;}
.y149{bottom:745.520000pt;}
.y122{bottom:747.120000pt;}
.y49{bottom:749.074267pt;}
.yc7{bottom:755.300000pt;}
.ye8{bottom:755.833333pt;}
.y78{bottom:756.100000pt;}
.y25{bottom:756.633333pt;}
.y99{bottom:757.966667pt;}
.y5{bottom:758.785200pt;}
.y148{bottom:763.520000pt;}
.y121{bottom:764.853333pt;}
.y48{bottom:768.274267pt;}
.yc6{bottom:774.766667pt;}
.ye7{bottom:775.300000pt;}
.y77{bottom:775.433333pt;}
.y24{bottom:775.833333pt;}
.y98{bottom:776.900000pt;}
.y147{bottom:781.520000pt;}
.y164{bottom:782.453333pt;}
.y120{bottom:782.586667pt;}
.y4{bottom:785.985200pt;}
.y47{bottom:787.474267pt;}
.yc5{bottom:794.233333pt;}
.y76{bottom:794.766667pt;}
.y23{bottom:795.033333pt;}
.y97{bottom:795.833333pt;}
.y146{bottom:799.520000pt;}
.y11f{bottom:800.320000pt;}
.y46{bottom:806.674267pt;}
.yc4{bottom:813.700000pt;}
.y75{bottom:814.100000pt;}
.y22{bottom:814.233333pt;}
.y96{bottom:814.766667pt;}
.y145{bottom:817.520000pt;}
.y11e{bottom:818.053333pt;}
.y45{bottom:825.874267pt;}
.yc3{bottom:833.166667pt;}
.y21{bottom:833.433333pt;}
.y95{bottom:833.700000pt;}
.y3{bottom:835.106400pt;}
.y144{bottom:835.520000pt;}
.y11d{bottom:835.786667pt;}
.y2{bottom:851.106400pt;}
.y20{bottom:852.633333pt;}
.y11c{bottom:853.520000pt;}
.hc{height:30.138750pt;}
.h8{height:30.875000pt;}
.hd{height:31.725000pt;}
.h4{height:36.020833pt;}
.h3{height:38.687500pt;}
.ha{height:41.166667pt;}
.hf{height:45.286458pt;}
.h9{height:48.885417pt;}
.h5{height:49.815104pt;}
.h2{height:51.458333pt;}
.hb{height:54.343750pt;}
.he{height:56.604167pt;}
.h7{height:61.750000pt;}
.h6{height:87.479167pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x7{left:96.031467pt;}
.x1{left:114.929200pt;}
.x4{left:133.826800pt;}
.x8{left:152.724400pt;}
.x2{left:161.929200pt;}
.x5{left:169.823867pt;}
.x3{left:268.513733pt;}
.x9{left:510.852800pt;}
.x6{left:539.590533pt;}
}




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