
    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_890a7f835ae2f8559d92b197.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.117676;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_12dbe3c05ed21548d49bcc8b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.117676;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_5b3fc8b070a7c9c908ba9809.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123047;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_82890ea0a51617dc41ecdf50.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191406;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_c92a27c367e6866552d35f3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.129395;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_d9b8dde66d0bea8909273a7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.123047;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_cb1398795f275aea4ac634aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.928711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.702000px;}
.lsf{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.252000px;}
.ls12{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.178800px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.126000px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.223800px;}
.lsd{letter-spacing:0.226200px;}
.ls18{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.541200px;}
.ls15{letter-spacing:0.738000px;}
.ls2{letter-spacing:4.500000px;}
.ls14{letter-spacing:4.620000px;}
.ls3{letter-spacing:22.986720px;}
.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;}
}
.ws11{word-spacing:-54.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.824000px;}
.wsa{word-spacing:-13.626000px;}
.wsc{word-spacing:-13.608000px;}
.ws13{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.284000px;}
.wsf{word-spacing:-13.248000px;}
.ws7{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.798000px;}
.ws4{word-spacing:-12.283800px;}
.ws10{word-spacing:-10.981200px;}
.ws9{word-spacing:-10.666200px;}
.wse{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.261200px;}
.ws5{word-spacing:0.000000px;}
._12{margin-left:-4.322400px;}
._7{margin-left:-3.294000px;}
._8{margin-left:-2.106000px;}
._0{margin-left:-1.080000px;}
._1{width:1.152000px;}
._b{width:2.736000px;}
._6{width:3.780000px;}
._2{width:4.806000px;}
._9{width:6.462000px;}
._a{width:7.848000px;}
._4{width:8.964000px;}
._3{width:9.990000px;}
._5{width:11.718000px;}
._d{width:13.565520px;}
._13{width:15.012000px;}
._e{width:16.452480px;}
._11{width:17.987760px;}
._10{width:19.362240px;}
._15{width:20.435760px;}
._14{width:26.622000px;}
._f{width:198.000000px;}
._16{width:850.680000px;}
._c{width:1733.700000px;}
.fc8{color:rgb(28,29,30);}
.fc6{color:rgb(17,85,204);}
.fc4{color:rgb(0,111,183);}
.fc3{color:rgb(0,0,255);}
.fc9{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc7{color:rgb(26,26,26);}
.fc5{color:rgb(34,34,34);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:2.880000px;}
.y6a{bottom:3.060000px;}
.y90{bottom:3.240000px;}
.yb4{bottom:5.400000px;}
.yf{bottom:57.780000px;}
.ye{bottom:78.480000px;}
.yd{bottom:99.180000px;}
.yc{bottom:119.880000px;}
.yb{bottom:140.616000px;}
.ya{bottom:161.310000px;}
.y9{bottom:182.010000px;}
.y8{bottom:200.910000px;}
.y7{bottom:212.070000px;}
.y6{bottom:227.550000px;}
.y5{bottom:243.030000px;}
.y4{bottom:259.590000px;}
.y3f{bottom:279.390000px;}
.y9d{bottom:281.730000px;}
.ydf{bottom:283.170000px;}
.yc6{bottom:284.610000px;}
.y3e{bottom:294.870000px;}
.y9c{bottom:299.010000px;}
.y3d{bottom:299.370000px;}
.y116{bottom:299.550000px;}
.yc5{bottom:301.710000px;}
.yde{bottom:304.770000px;}
.y3c{bottom:310.350000px;}
.y6d{bottom:314.850000px;}
.y115{bottom:315.030000px;}
.y9b{bottom:316.290000px;}
.yc4{bottom:318.990000px;}
.y3b{bottom:326.190000px;}
.y6c{bottom:326.910000px;}
.y114{bottom:330.510000px;}
.y9a{bottom:333.390000px;}
.yf8{bottom:333.570000px;}
.yc3{bottom:336.270000px;}
.y3a{bottom:343.470000px;}
.y113{bottom:345.990000px;}
.y143{bottom:350.670000px;}
.yf7{bottom:351.390000px;}
.y39{bottom:360.390000px;}
.y112{bottom:361.830000px;}
.y99{bottom:362.190000px;}
.yc2{bottom:362.550000px;}
.y6b{bottom:363.090000px;}
.y142{bottom:366.150000px;}
.yf6{bottom:371.190000px;}
.y69{bottom:375.690000px;}
.y38{bottom:375.870000px;}
.y111{bottom:379.110000px;}
.y141{bottom:381.675000px;}
.yf5{bottom:383.835000px;}
.y98{bottom:389.235000px;}
.yc1{bottom:389.595000px;}
.y68{bottom:391.395000px;}
.y37{bottom:391.575000px;}
.y36{bottom:396.075000px;}
.y110{bottom:396.435000px;}
.y140{bottom:397.155000px;}
.y67{bottom:406.875000px;}
.y35{bottom:408.135000px;}
.y97{bottom:409.215000px;}
.yc0{bottom:409.575000px;}
.y13f{bottom:412.815000px;}
.y10f{bottom:413.715000px;}
.y66{bottom:425.595000px;}
.y96{bottom:426.495000px;}
.ybf{bottom:426.855000px;}
.y13e{bottom:428.295000px;}
.y10e{bottom:430.995000px;}
.y65{bottom:442.875000px;}
.y95{bottom:443.775000px;}
.ybe{bottom:443.955000px;}
.y10d{bottom:448.275000px;}
.y13d{bottom:459.255000px;}
.y64{bottom:460.155000px;}
.y94{bottom:461.055000px;}
.ybd{bottom:461.235000px;}
.y10c{bottom:465.375000px;}
.y34{bottom:471.135000px;}
.y13c{bottom:474.915000px;}
.y63{bottom:477.435000px;}
.y93{bottom:478.335000px;}
.ybc{bottom:478.515000px;}
.y10b{bottom:482.655000px;}
.y33{bottom:488.235000px;}
.y13b{bottom:490.395000px;}
.y92{bottom:492.375000px;}
.y62{bottom:494.535000px;}
.ybb{bottom:495.795000px;}
.y10a{bottom:499.935000px;}
.y32{bottom:505.515000px;}
.y13a{bottom:505.875000px;}
.y91{bottom:507.855000px;}
.y61{bottom:511.815000px;}
.yba{bottom:513.075000px;}
.ydd{bottom:515.055000px;}
.y109{bottom:517.215000px;}
.y139{bottom:521.355000px;}
.y31{bottom:522.795000px;}
.y8f{bottom:523.335000px;}
.y60{bottom:529.095000px;}
.yb9{bottom:530.355000px;}
.ydc{bottom:532.335000px;}
.y138{bottom:537.015000px;}
.y30{bottom:540.075000px;}
.y8e{bottom:542.055000px;}
.y108{bottom:543.495000px;}
.yb8{bottom:547.455000px;}
.ydb{bottom:549.615000px;}
.y137{bottom:552.495000px;}
.y8d{bottom:554.655000px;}
.y5f{bottom:555.375000px;}
.y2e{bottom:557.355000px;}
.y107{bottom:561.495000px;}
.y2f{bottom:562.575000px;}
.yb7{bottom:564.735000px;}
.yda{bottom:566.715000px;}
.y136{bottom:567.975000px;}
.y8c{bottom:570.135000px;}
.y2d{bottom:574.635000px;}
.y106{bottom:581.475000px;}
.y5e{bottom:582.375000px;}
.y135{bottom:583.455000px;}
.yd9{bottom:583.995000px;}
.y8b{bottom:585.795000px;}
.yb6{bottom:587.775000px;}
.y105{bottom:598.575000px;}
.y134{bottom:598.935000px;}
.yd8{bottom:601.275000px;}
.y5d{bottom:602.355000px;}
.yb5{bottom:603.255000px;}
.y2c{bottom:603.435000px;}
.y8a{bottom:604.515000px;}
.y133{bottom:614.595000px;}
.y104{bottom:615.855000px;}
.yd7{bottom:618.555000px;}
.y5c{bottom:619.455000px;}
.yb3{bottom:621.255000px;}
.y89{bottom:621.795000px;}
.y2b{bottom:629.715000px;}
.y132{bottom:630.075000px;}
.y103{bottom:633.165000px;}
.yd6{bottom:635.865000px;}
.y5b{bottom:636.765000px;}
.y88{bottom:639.105000px;}
.y131{bottom:645.585000px;}
.y102{bottom:650.445000px;}
.yd5{bottom:653.145000px;}
.y5a{bottom:654.045000px;}
.y2a{bottom:655.665000px;}
.y87{bottom:656.205000px;}
.y130{bottom:661.065000px;}
.y101{bottom:668.445000px;}
.yd4{bottom:670.245000px;}
.y29{bottom:671.145000px;}
.y59{bottom:671.325000px;}
.y86{bottom:673.485000px;}
.yb2{bottom:674.025000px;}
.y12f{bottom:676.725000px;}
.y28{bottom:686.625000px;}
.y85{bottom:687.525000px;}
.y100{bottom:688.065000px;}
.y58{bottom:689.325000px;}
.y12e{bottom:692.205000px;}
.yb1{bottom:693.825000px;}
.yf4{bottom:695.265000px;}
.y27{bottom:702.105000px;}
.y84{bottom:703.005000px;}
.yd3{bottom:704.805000px;}
.y12d{bottom:707.685000px;}
.y57{bottom:709.305000px;}
.yff{bottom:709.665000px;}
.yf3{bottom:712.545000px;}
.yb0{bottom:714.885000px;}
.y26{bottom:717.765000px;}
.y83{bottom:718.665000px;}
.yd2{bottom:722.085000px;}
.y12c{bottom:723.165000px;}
.y56{bottom:726.585000px;}
.yf2{bottom:729.645000px;}
.yaf{bottom:731.625000px;}
.y25{bottom:733.245000px;}
.y82{bottom:734.145000px;}
.y12b{bottom:738.825000px;}
.y55{bottom:743.685000px;}
.yae{bottom:747.105000px;}
.yd1{bottom:748.185000px;}
.y24{bottom:748.725000px;}
.y81{bottom:749.625000px;}
.y12a{bottom:754.305000px;}
.yf1{bottom:755.925000px;}
.y54{bottom:760.965000px;}
.yad{bottom:762.765000px;}
.y23{bottom:764.205000px;}
.y80{bottom:768.165000px;}
.y129{bottom:769.785000px;}
.yd0{bottom:775.185000px;}
.y53{bottom:778.245000px;}
.y22{bottom:779.865000px;}
.y7f{bottom:780.765000px;}
.yac{bottom:781.485000px;}
.yf0{bottom:782.925000px;}
.y128{bottom:785.265000px;}
.ycf{bottom:791.925000px;}
.y52{bottom:795.525000px;}
.y21{bottom:795.705000px;}
.y7e{bottom:796.245000px;}
.yab{bottom:798.765000px;}
.y127{bottom:800.925000px;}
.yef{bottom:802.905000px;}
.yce{bottom:807.585000px;}
.y7d{bottom:811.725000px;}
.y20{bottom:812.625000px;}
.y51{bottom:812.805000px;}
.yaa{bottom:815.865000px;}
.y126{bottom:816.405000px;}
.yee{bottom:820.185000px;}
.ycd{bottom:823.065000px;}
.y7c{bottom:827.205000px;}
.y1f{bottom:828.105000px;}
.y50{bottom:830.805000px;}
.y125{bottom:831.885000px;}
.ya9{bottom:833.145000px;}
.yed{bottom:838.185000px;}
.ycc{bottom:838.545000px;}
.y7b{bottom:842.865000px;}
.y1e{bottom:843.585000px;}
.y124{bottom:847.365000px;}
.y4f{bottom:847.545000px;}
.ya8{bottom:850.425000px;}
.ycb{bottom:854.025000px;}
.yec{bottom:854.925000px;}
.y1d{bottom:859.065000px;}
.y7a{bottom:861.585000px;}
.y4e{bottom:863.025000px;}
.ya7{bottom:867.705000px;}
.yeb{bottom:870.405000px;}
.yca{bottom:872.565000px;}
.y1c{bottom:874.725000px;}
.y4d{bottom:878.505000px;}
.y79{bottom:878.865000px;}
.ya6{bottom:885.030000px;}
.yc9{bottom:885.210000px;}
.yea{bottom:885.930000px;}
.y1b{bottom:890.250000px;}
.y123{bottom:894.030000px;}
.y78{bottom:896.010000px;}
.yc8{bottom:903.210000px;}
.ye9{bottom:905.370000px;}
.y1a{bottom:905.730000px;}
.y4c{bottom:908.790000px;}
.y122{bottom:909.510000px;}
.ya5{bottom:911.130000px;}
.y77{bottom:913.290000px;}
.yc7{bottom:918.690000px;}
.y19{bottom:921.210000px;}
.ye8{bottom:922.110000px;}
.y121{bottom:925.170000px;}
.y4b{bottom:928.230000px;}
.y76{bottom:930.570000px;}
.yfe{bottom:936.690000px;}
.y18{bottom:936.870000px;}
.ye7{bottom:937.770000px;}
.ya4{bottom:938.130000px;}
.y120{bottom:940.650000px;}
.y4a{bottom:940.830000px;}
.y75{bottom:947.850000px;}
.y17{bottom:952.350000px;}
.ye6{bottom:953.250000px;}
.yfd{bottom:953.970000px;}
.y11f{bottom:956.130000px;}
.y49{bottom:956.310000px;}
.ya3{bottom:958.110000px;}
.y74{bottom:965.130000px;}
.y16{bottom:967.830000px;}
.yfc{bottom:971.250000px;}
.y11e{bottom:971.610000px;}
.y48{bottom:971.790000px;}
.ye5{bottom:971.970000px;}
.ya2{bottom:975.390000px;}
.y73{bottom:982.410000px;}
.y15{bottom:984.390000px;}
.y11d{bottom:987.270000px;}
.yfb{bottom:988.530000px;}
.ye4{bottom:989.250000px;}
.y47{bottom:990.330000px;}
.ya1{bottom:992.670000px;}
.y72{bottom:999.510000px;}
.y11c{bottom:1002.750000px;}
.y46{bottom:1002.930000px;}
.y14{bottom:1005.090000px;}
.ye3{bottom:1006.530000px;}
.ya0{bottom:1009.950000px;}
.yfa{bottom:1014.630000px;}
.y71{bottom:1016.430000px;}
.y11b{bottom:1018.230000px;}
.y45{bottom:1018.410000px;}
.ye2{bottom:1023.810000px;}
.y12{bottom:1025.790000px;}
.y9f{bottom:1027.230000px;}
.y70{bottom:1029.030000px;}
.y13{bottom:1031.730000px;}
.y11a{bottom:1033.710000px;}
.y43{bottom:1033.890000px;}
.ye1{bottom:1040.910000px;}
.yf9{bottom:1041.630000px;}
.y9e{bottom:1044.510000px;}
.y6f{bottom:1044.690000px;}
.y11{bottom:1046.490000px;}
.y119{bottom:1049.370000px;}
.ye0{bottom:1058.190000px;}
.y6e{bottom:1060.170000px;}
.y41{bottom:1061.610000px;}
.y118{bottom:1064.850000px;}
.y42{bottom:1066.830000px;}
.y10{bottom:1076.190000px;}
.y40{bottom:1078.890000px;}
.y117{bottom:1080.330000px;}
.y3{bottom:1157.760000px;}
.y2{bottom:1177.740000px;}
.y1{bottom:1195.020000px;}
.h10{height:15.480000px;}
.h11{height:15.516000px;}
.h13{height:15.660000px;}
.h12{height:15.696000px;}
.h15{height:15.840000px;}
.h17{height:18.000000px;}
.h16{height:18.036000px;}
.hf{height:32.273438px;}
.he{height:34.855313px;}
.h6{height:44.282812px;}
.h14{height:47.961914px;}
.h5{height:48.410156px;}
.ha{height:48.647461px;}
.h9{height:49.570312px;}
.hd{height:53.077852px;}
.hc{height:53.573906px;}
.h2{height:53.836523px;}
.hb{height:54.857813px;}
.h8{height:63.949219px;}
.h4{height:64.546875px;}
.h3{height:64.863281px;}
.h7{height:66.093750px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w10{width:33.660000px;}
.w1c{width:42.120000px;}
.w13{width:42.480000px;}
.w26{width:46.080000px;}
.w2a{width:52.740000px;}
.w4{width:52.920000px;}
.wa{width:54.000000px;}
.w18{width:64.080000px;}
.we{width:74.340000px;}
.w14{width:74.376000px;}
.w28{width:74.520000px;}
.wd{width:74.556000px;}
.w2d{width:74.916000px;}
.w32{width:84.600000px;}
.w30{width:84.996000px;}
.w8{width:85.176000px;}
.w2e{width:95.220000px;}
.w23{width:95.580000px;}
.w1f{width:95.616000px;}
.w1e{width:95.760000px;}
.w31{width:96.120000px;}
.wb{width:105.156000px;}
.w5{width:106.236000px;}
.w1a{width:106.380000px;}
.w1d{width:106.416000px;}
.w27{width:113.436000px;}
.w7{width:116.820000px;}
.w22{width:116.856000px;}
.w2c{width:117.000000px;}
.w6{width:117.036000px;}
.wc{width:117.396000px;}
.w19{width:127.476000px;}
.w15{width:127.620000px;}
.w16{width:127.656000px;}
.w21{width:159.870000px;}
.w11{width:167.970000px;}
.w25{width:338.295000px;}
.w12{width:340.275000px;}
.w20{width:414.825000px;}
.w9{width:425.265000px;}
.w2b{width:457.665000px;}
.w33{width:478.725000px;}
.wf{width:488.265000px;}
.w24{width:489.165000px;}
.w2f{width:499.785000px;}
.w1b{width:510.225000px;}
.w29{width:517.605000px;}
.w17{width:520.125000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x20{left:15.300000px;}
.x23{left:25.740000px;}
.x1b{left:26.820000px;}
.x5{left:170.129987px;}
.x13{left:174.629987px;}
.x8{left:179.669987px;}
.xd{left:199.649987px;}
.x1c{left:203.790000px;}
.x6{left:212.249987px;}
.x9{left:216.029987px;}
.x18{left:223.050000px;}
.x11{left:224.129987px;}
.x15{left:247.169973px;}
.x16{left:252.074987px;}
.xf{left:259.274973px;}
.x10{left:264.134987px;}
.x2d{left:296.354987px;}
.x1e{left:297.795000px;}
.x2{left:304.994987px;}
.x31{left:308.055000px;}
.xe{left:317.054987px;}
.x24{left:318.675000px;}
.x35{left:320.474987px;}
.x7{left:329.834987px;}
.x36{left:330.914987px;}
.x2b{left:340.275000px;}
.x1d{left:371.775000px;}
.x21{left:393.375000px;}
.x32{left:404.175000px;}
.x25{left:414.435000px;}
.x2e{left:424.905000px;}
.x12{left:428.324987px;}
.xc{left:446.504987px;}
.x14{left:458.564987px;}
.x3{left:463.064987px;}
.x1{left:467.564987px;}
.x33{left:499.785000px;}
.x26{left:510.045000px;}
.x29{left:521.205000px;}
.x4{left:524.804987px;}
.x27{left:531.285000px;}
.x2f{left:541.905000px;}
.x19{left:563.145000px;}
.x1f{left:574.125000px;}
.x2c{left:587.129987px;}
.x22{left:595.410000px;}
.x28{left:605.850000px;}
.x30{left:616.830000px;}
.x2a{left:627.450000px;}
.x34{left:630.329987px;}
.x1a{left:638.070000px;}
.xa{left:671.009973px;}
.xb{left:677.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.624000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.224000pt;}
.ls12{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.158933pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.112000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.198933pt;}
.lsd{letter-spacing:0.201067pt;}
.ls18{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.481067pt;}
.ls15{letter-spacing:0.656000pt;}
.ls2{letter-spacing:4.000000pt;}
.ls14{letter-spacing:4.106667pt;}
.ls3{letter-spacing:20.432640pt;}
.ws11{word-spacing:-48.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.288000pt;}
.wsa{word-spacing:-12.112000pt;}
.wsc{word-spacing:-12.096000pt;}
.ws13{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.808000pt;}
.wsf{word-spacing:-11.776000pt;}
.ws7{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.376000pt;}
.ws4{word-spacing:-10.918933pt;}
.ws10{word-spacing:-9.761067pt;}
.ws9{word-spacing:-9.481067pt;}
.wse{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.121067pt;}
.ws5{word-spacing:0.000000pt;}
._12{margin-left:-3.842133pt;}
._7{margin-left:-2.928000pt;}
._8{margin-left:-1.872000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.024000pt;}
._b{width:2.432000pt;}
._6{width:3.360000pt;}
._2{width:4.272000pt;}
._9{width:5.744000pt;}
._a{width:6.976000pt;}
._4{width:7.968000pt;}
._3{width:8.880000pt;}
._5{width:10.416000pt;}
._d{width:12.058240pt;}
._13{width:13.344000pt;}
._e{width:14.624427pt;}
._11{width:15.989120pt;}
._10{width:17.210880pt;}
._15{width:18.165120pt;}
._14{width:23.664000pt;}
._f{width:176.000000pt;}
._16{width:756.160000pt;}
._c{width:1541.066667pt;}
.fs4{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.560000pt;}
.y6a{bottom:2.720000pt;}
.y90{bottom:2.880000pt;}
.yb4{bottom:4.800000pt;}
.yf{bottom:51.360000pt;}
.ye{bottom:69.760000pt;}
.yd{bottom:88.160000pt;}
.yc{bottom:106.560000pt;}
.yb{bottom:124.992000pt;}
.ya{bottom:143.386667pt;}
.y9{bottom:161.786667pt;}
.y8{bottom:178.586667pt;}
.y7{bottom:188.506667pt;}
.y6{bottom:202.266667pt;}
.y5{bottom:216.026667pt;}
.y4{bottom:230.746667pt;}
.y3f{bottom:248.346667pt;}
.y9d{bottom:250.426667pt;}
.ydf{bottom:251.706667pt;}
.yc6{bottom:252.986667pt;}
.y3e{bottom:262.106667pt;}
.y9c{bottom:265.786667pt;}
.y3d{bottom:266.106667pt;}
.y116{bottom:266.266667pt;}
.yc5{bottom:268.186667pt;}
.yde{bottom:270.906667pt;}
.y3c{bottom:275.866667pt;}
.y6d{bottom:279.866667pt;}
.y115{bottom:280.026667pt;}
.y9b{bottom:281.146667pt;}
.yc4{bottom:283.546667pt;}
.y3b{bottom:289.946667pt;}
.y6c{bottom:290.586667pt;}
.y114{bottom:293.786667pt;}
.y9a{bottom:296.346667pt;}
.yf8{bottom:296.506667pt;}
.yc3{bottom:298.906667pt;}
.y3a{bottom:305.306667pt;}
.y113{bottom:307.546667pt;}
.y143{bottom:311.706667pt;}
.yf7{bottom:312.346667pt;}
.y39{bottom:320.346667pt;}
.y112{bottom:321.626667pt;}
.y99{bottom:321.946667pt;}
.yc2{bottom:322.266667pt;}
.y6b{bottom:322.746667pt;}
.y142{bottom:325.466667pt;}
.yf6{bottom:329.946667pt;}
.y69{bottom:333.946667pt;}
.y38{bottom:334.106667pt;}
.y111{bottom:336.986667pt;}
.y141{bottom:339.266667pt;}
.yf5{bottom:341.186667pt;}
.y98{bottom:345.986667pt;}
.yc1{bottom:346.306667pt;}
.y68{bottom:347.906667pt;}
.y37{bottom:348.066667pt;}
.y36{bottom:352.066667pt;}
.y110{bottom:352.386667pt;}
.y140{bottom:353.026667pt;}
.y67{bottom:361.666667pt;}
.y35{bottom:362.786667pt;}
.y97{bottom:363.746667pt;}
.yc0{bottom:364.066667pt;}
.y13f{bottom:366.946667pt;}
.y10f{bottom:367.746667pt;}
.y66{bottom:378.306667pt;}
.y96{bottom:379.106667pt;}
.ybf{bottom:379.426667pt;}
.y13e{bottom:380.706667pt;}
.y10e{bottom:383.106667pt;}
.y65{bottom:393.666667pt;}
.y95{bottom:394.466667pt;}
.ybe{bottom:394.626667pt;}
.y10d{bottom:398.466667pt;}
.y13d{bottom:408.226667pt;}
.y64{bottom:409.026667pt;}
.y94{bottom:409.826667pt;}
.ybd{bottom:409.986667pt;}
.y10c{bottom:413.666667pt;}
.y34{bottom:418.786667pt;}
.y13c{bottom:422.146667pt;}
.y63{bottom:424.386667pt;}
.y93{bottom:425.186667pt;}
.ybc{bottom:425.346667pt;}
.y10b{bottom:429.026667pt;}
.y33{bottom:433.986667pt;}
.y13b{bottom:435.906667pt;}
.y92{bottom:437.666667pt;}
.y62{bottom:439.586667pt;}
.ybb{bottom:440.706667pt;}
.y10a{bottom:444.386667pt;}
.y32{bottom:449.346667pt;}
.y13a{bottom:449.666667pt;}
.y91{bottom:451.426667pt;}
.y61{bottom:454.946667pt;}
.yba{bottom:456.066667pt;}
.ydd{bottom:457.826667pt;}
.y109{bottom:459.746667pt;}
.y139{bottom:463.426667pt;}
.y31{bottom:464.706667pt;}
.y8f{bottom:465.186667pt;}
.y60{bottom:470.306667pt;}
.yb9{bottom:471.426667pt;}
.ydc{bottom:473.186667pt;}
.y138{bottom:477.346667pt;}
.y30{bottom:480.066667pt;}
.y8e{bottom:481.826667pt;}
.y108{bottom:483.106667pt;}
.yb8{bottom:486.626667pt;}
.ydb{bottom:488.546667pt;}
.y137{bottom:491.106667pt;}
.y8d{bottom:493.026667pt;}
.y5f{bottom:493.666667pt;}
.y2e{bottom:495.426667pt;}
.y107{bottom:499.106667pt;}
.y2f{bottom:500.066667pt;}
.yb7{bottom:501.986667pt;}
.yda{bottom:503.746667pt;}
.y136{bottom:504.866667pt;}
.y8c{bottom:506.786667pt;}
.y2d{bottom:510.786667pt;}
.y106{bottom:516.866667pt;}
.y5e{bottom:517.666667pt;}
.y135{bottom:518.626667pt;}
.yd9{bottom:519.106667pt;}
.y8b{bottom:520.706667pt;}
.yb6{bottom:522.466667pt;}
.y105{bottom:532.066667pt;}
.y134{bottom:532.386667pt;}
.yd8{bottom:534.466667pt;}
.y5d{bottom:535.426667pt;}
.yb5{bottom:536.226667pt;}
.y2c{bottom:536.386667pt;}
.y8a{bottom:537.346667pt;}
.y133{bottom:546.306667pt;}
.y104{bottom:547.426667pt;}
.yd7{bottom:549.826667pt;}
.y5c{bottom:550.626667pt;}
.yb3{bottom:552.226667pt;}
.y89{bottom:552.706667pt;}
.y2b{bottom:559.746667pt;}
.y132{bottom:560.066667pt;}
.y103{bottom:562.813333pt;}
.yd6{bottom:565.213333pt;}
.y5b{bottom:566.013333pt;}
.y88{bottom:568.093333pt;}
.y131{bottom:573.853333pt;}
.y102{bottom:578.173333pt;}
.yd5{bottom:580.573333pt;}
.y5a{bottom:581.373333pt;}
.y2a{bottom:582.813333pt;}
.y87{bottom:583.293333pt;}
.y130{bottom:587.613333pt;}
.y101{bottom:594.173333pt;}
.yd4{bottom:595.773333pt;}
.y29{bottom:596.573333pt;}
.y59{bottom:596.733333pt;}
.y86{bottom:598.653333pt;}
.yb2{bottom:599.133333pt;}
.y12f{bottom:601.533333pt;}
.y28{bottom:610.333333pt;}
.y85{bottom:611.133333pt;}
.y100{bottom:611.613333pt;}
.y58{bottom:612.733333pt;}
.y12e{bottom:615.293333pt;}
.yb1{bottom:616.733333pt;}
.yf4{bottom:618.013333pt;}
.y27{bottom:624.093333pt;}
.y84{bottom:624.893333pt;}
.yd3{bottom:626.493333pt;}
.y12d{bottom:629.053333pt;}
.y57{bottom:630.493333pt;}
.yff{bottom:630.813333pt;}
.yf3{bottom:633.373333pt;}
.yb0{bottom:635.453333pt;}
.y26{bottom:638.013333pt;}
.y83{bottom:638.813333pt;}
.yd2{bottom:641.853333pt;}
.y12c{bottom:642.813333pt;}
.y56{bottom:645.853333pt;}
.yf2{bottom:648.573333pt;}
.yaf{bottom:650.333333pt;}
.y25{bottom:651.773333pt;}
.y82{bottom:652.573333pt;}
.y12b{bottom:656.733333pt;}
.y55{bottom:661.053333pt;}
.yae{bottom:664.093333pt;}
.yd1{bottom:665.053333pt;}
.y24{bottom:665.533333pt;}
.y81{bottom:666.333333pt;}
.y12a{bottom:670.493333pt;}
.yf1{bottom:671.933333pt;}
.y54{bottom:676.413333pt;}
.yad{bottom:678.013333pt;}
.y23{bottom:679.293333pt;}
.y80{bottom:682.813333pt;}
.y129{bottom:684.253333pt;}
.yd0{bottom:689.053333pt;}
.y53{bottom:691.773333pt;}
.y22{bottom:693.213333pt;}
.y7f{bottom:694.013333pt;}
.yac{bottom:694.653333pt;}
.yf0{bottom:695.933333pt;}
.y128{bottom:698.013333pt;}
.ycf{bottom:703.933333pt;}
.y52{bottom:707.133333pt;}
.y21{bottom:707.293333pt;}
.y7e{bottom:707.773333pt;}
.yab{bottom:710.013333pt;}
.y127{bottom:711.933333pt;}
.yef{bottom:713.693333pt;}
.yce{bottom:717.853333pt;}
.y7d{bottom:721.533333pt;}
.y20{bottom:722.333333pt;}
.y51{bottom:722.493333pt;}
.yaa{bottom:725.213333pt;}
.y126{bottom:725.693333pt;}
.yee{bottom:729.053333pt;}
.ycd{bottom:731.613333pt;}
.y7c{bottom:735.293333pt;}
.y1f{bottom:736.093333pt;}
.y50{bottom:738.493333pt;}
.y125{bottom:739.453333pt;}
.ya9{bottom:740.573333pt;}
.yed{bottom:745.053333pt;}
.ycc{bottom:745.373333pt;}
.y7b{bottom:749.213333pt;}
.y1e{bottom:749.853333pt;}
.y124{bottom:753.213333pt;}
.y4f{bottom:753.373333pt;}
.ya8{bottom:755.933333pt;}
.ycb{bottom:759.133333pt;}
.yec{bottom:759.933333pt;}
.y1d{bottom:763.613333pt;}
.y7a{bottom:765.853333pt;}
.y4e{bottom:767.133333pt;}
.ya7{bottom:771.293333pt;}
.yeb{bottom:773.693333pt;}
.yca{bottom:775.613333pt;}
.y1c{bottom:777.533333pt;}
.y4d{bottom:780.893333pt;}
.y79{bottom:781.213333pt;}
.ya6{bottom:786.693333pt;}
.yc9{bottom:786.853333pt;}
.yea{bottom:787.493333pt;}
.y1b{bottom:791.333333pt;}
.y123{bottom:794.693333pt;}
.y78{bottom:796.453333pt;}
.yc8{bottom:802.853333pt;}
.ye9{bottom:804.773333pt;}
.y1a{bottom:805.093333pt;}
.y4c{bottom:807.813333pt;}
.y122{bottom:808.453333pt;}
.ya5{bottom:809.893333pt;}
.y77{bottom:811.813333pt;}
.yc7{bottom:816.613333pt;}
.y19{bottom:818.853333pt;}
.ye8{bottom:819.653333pt;}
.y121{bottom:822.373333pt;}
.y4b{bottom:825.093333pt;}
.y76{bottom:827.173333pt;}
.yfe{bottom:832.613333pt;}
.y18{bottom:832.773333pt;}
.ye7{bottom:833.573333pt;}
.ya4{bottom:833.893333pt;}
.y120{bottom:836.133333pt;}
.y4a{bottom:836.293333pt;}
.y75{bottom:842.533333pt;}
.y17{bottom:846.533333pt;}
.ye6{bottom:847.333333pt;}
.yfd{bottom:847.973333pt;}
.y11f{bottom:849.893333pt;}
.y49{bottom:850.053333pt;}
.ya3{bottom:851.653333pt;}
.y74{bottom:857.893333pt;}
.y16{bottom:860.293333pt;}
.yfc{bottom:863.333333pt;}
.y11e{bottom:863.653333pt;}
.y48{bottom:863.813333pt;}
.ye5{bottom:863.973333pt;}
.ya2{bottom:867.013333pt;}
.y73{bottom:873.253333pt;}
.y15{bottom:875.013333pt;}
.y11d{bottom:877.573333pt;}
.yfb{bottom:878.693333pt;}
.ye4{bottom:879.333333pt;}
.y47{bottom:880.293333pt;}
.ya1{bottom:882.373333pt;}
.y72{bottom:888.453333pt;}
.y11c{bottom:891.333333pt;}
.y46{bottom:891.493333pt;}
.y14{bottom:893.413333pt;}
.ye3{bottom:894.693333pt;}
.ya0{bottom:897.733333pt;}
.yfa{bottom:901.893333pt;}
.y71{bottom:903.493333pt;}
.y11b{bottom:905.093333pt;}
.y45{bottom:905.253333pt;}
.ye2{bottom:910.053333pt;}
.y12{bottom:911.813333pt;}
.y9f{bottom:913.093333pt;}
.y70{bottom:914.693333pt;}
.y13{bottom:917.093333pt;}
.y11a{bottom:918.853333pt;}
.y43{bottom:919.013333pt;}
.ye1{bottom:925.253333pt;}
.yf9{bottom:925.893333pt;}
.y9e{bottom:928.453333pt;}
.y6f{bottom:928.613333pt;}
.y11{bottom:930.213333pt;}
.y119{bottom:932.773333pt;}
.ye0{bottom:940.613333pt;}
.y6e{bottom:942.373333pt;}
.y41{bottom:943.653333pt;}
.y118{bottom:946.533333pt;}
.y42{bottom:948.293333pt;}
.y10{bottom:956.613333pt;}
.y40{bottom:959.013333pt;}
.y117{bottom:960.293333pt;}
.y3{bottom:1029.120000pt;}
.y2{bottom:1046.880000pt;}
.y1{bottom:1062.240000pt;}
.h10{height:13.760000pt;}
.h11{height:13.792000pt;}
.h13{height:13.920000pt;}
.h12{height:13.952000pt;}
.h15{height:14.080000pt;}
.h17{height:16.000000pt;}
.h16{height:16.032000pt;}
.hf{height:28.687500pt;}
.he{height:30.982500pt;}
.h6{height:39.362500pt;}
.h14{height:42.632812pt;}
.h5{height:43.031250pt;}
.ha{height:43.242188pt;}
.h9{height:44.062500pt;}
.hd{height:47.180312pt;}
.hc{height:47.621250pt;}
.h2{height:47.854688pt;}
.hb{height:48.762500pt;}
.h8{height:56.843750pt;}
.h4{height:57.375000pt;}
.h3{height:57.656250pt;}
.h7{height:58.750000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w10{width:29.920000pt;}
.w1c{width:37.440000pt;}
.w13{width:37.760000pt;}
.w26{width:40.960000pt;}
.w2a{width:46.880000pt;}
.w4{width:47.040000pt;}
.wa{width:48.000000pt;}
.w18{width:56.960000pt;}
.we{width:66.080000pt;}
.w14{width:66.112000pt;}
.w28{width:66.240000pt;}
.wd{width:66.272000pt;}
.w2d{width:66.592000pt;}
.w32{width:75.200000pt;}
.w30{width:75.552000pt;}
.w8{width:75.712000pt;}
.w2e{width:84.640000pt;}
.w23{width:84.960000pt;}
.w1f{width:84.992000pt;}
.w1e{width:85.120000pt;}
.w31{width:85.440000pt;}
.wb{width:93.472000pt;}
.w5{width:94.432000pt;}
.w1a{width:94.560000pt;}
.w1d{width:94.592000pt;}
.w27{width:100.832000pt;}
.w7{width:103.840000pt;}
.w22{width:103.872000pt;}
.w2c{width:104.000000pt;}
.w6{width:104.032000pt;}
.wc{width:104.352000pt;}
.w19{width:113.312000pt;}
.w15{width:113.440000pt;}
.w16{width:113.472000pt;}
.w21{width:142.106667pt;}
.w11{width:149.306667pt;}
.w25{width:300.706667pt;}
.w12{width:302.466667pt;}
.w20{width:368.733333pt;}
.w9{width:378.013333pt;}
.w2b{width:406.813333pt;}
.w33{width:425.533333pt;}
.wf{width:434.013333pt;}
.w24{width:434.813333pt;}
.w2f{width:444.253333pt;}
.w1b{width:453.533333pt;}
.w29{width:460.093333pt;}
.w17{width:462.333333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x20{left:13.600000pt;}
.x23{left:22.880000pt;}
.x1b{left:23.840000pt;}
.x5{left:151.226655pt;}
.x13{left:155.226655pt;}
.x8{left:159.706655pt;}
.xd{left:177.466655pt;}
.x1c{left:181.146667pt;}
.x6{left:188.666655pt;}
.x9{left:192.026655pt;}
.x18{left:198.266667pt;}
.x11{left:199.226655pt;}
.x15{left:219.706643pt;}
.x16{left:224.066655pt;}
.xf{left:230.466643pt;}
.x10{left:234.786655pt;}
.x2d{left:263.426655pt;}
.x1e{left:264.706667pt;}
.x2{left:271.106655pt;}
.x31{left:273.826667pt;}
.xe{left:281.826655pt;}
.x24{left:283.266667pt;}
.x35{left:284.866655pt;}
.x7{left:293.186655pt;}
.x36{left:294.146655pt;}
.x2b{left:302.466667pt;}
.x1d{left:330.466667pt;}
.x21{left:349.666667pt;}
.x32{left:359.266667pt;}
.x25{left:368.386667pt;}
.x2e{left:377.693333pt;}
.x12{left:380.733322pt;}
.xc{left:396.893322pt;}
.x14{left:407.613322pt;}
.x3{left:411.613322pt;}
.x1{left:415.613322pt;}
.x33{left:444.253333pt;}
.x26{left:453.373333pt;}
.x29{left:463.293333pt;}
.x4{left:466.493322pt;}
.x27{left:472.253333pt;}
.x2f{left:481.693333pt;}
.x19{left:500.573333pt;}
.x1f{left:510.333333pt;}
.x2c{left:521.893322pt;}
.x22{left:529.253333pt;}
.x28{left:538.533333pt;}
.x30{left:548.293333pt;}
.x2a{left:557.733333pt;}
.x34{left:560.293322pt;}
.x1a{left:567.173333pt;}
.xa{left:596.453310pt;}
.xb{left:601.893322pt;}
}




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