
    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_d9de64c4d3d3139b501d7826.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_eabad7a847373915d4f5a3fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e457605c00f690c7dba6368a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_085fc7a66c9c06ec13100229.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.220215;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_3f2b5133be0c4c613cadbb20.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_656e542f022143a00fc60671.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4e397835e014c2b76e5db2c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2cabf77952d8fa0cf7115af0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_1125c7644c8d31747ad90741.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7885a9927e04d151d97f5f8c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937012;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);}
.v1{vertical-align:-77.760000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-1.008000px;}
.ls15{letter-spacing:-0.852000px;}
.ls18{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.230400px;}
.lsd{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.132600px;}
.ls8{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.149760px;}
.ls11{letter-spacing:0.256200px;}
.ls14{letter-spacing:0.371400px;}
.ls17{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.720000px;}
.lsf{letter-spacing:3.600000px;}
.ls12{letter-spacing:39.185280px;}
.ls10{letter-spacing:142.865280px;}
.ls3{letter-spacing:1457.556000px;}
.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:-21.617280px;}
.wsd{word-spacing:-18.648000px;}
.wse{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.wsc{word-spacing:-15.341640px;}
.ws9{word-spacing:-15.226440px;}
.wsa{word-spacing:-15.102840px;}
.wsb{word-spacing:-14.970240px;}
.ws0{word-spacing:-12.186000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-2.313600px;}
._1{margin-left:-1.026000px;}
._2{width:1.056000px;}
._5{width:2.649840px;}
._6{width:4.478160px;}
._7{width:5.544000px;}
._8{width:6.633840px;}
._9{width:8.486160px;}
._a{width:9.864000px;}
._b{width:10.977600px;}
._10{width:12.690000px;}
._d{width:13.752000px;}
._e{width:14.808000px;}
._f{width:15.816000px;}
._13{width:16.920000px;}
._11{width:19.656000px;}
._12{width:20.796000px;}
._19{width:27.048000px;}
._1a{width:28.242000px;}
._28{width:54.504000px;}
._14{width:69.192000px;}
._15{width:70.536000px;}
._22{width:75.864000px;}
._23{width:77.082000px;}
._24{width:96.696000px;}
._18{width:109.632000px;}
._25{width:126.594000px;}
._1d{width:134.544000px;}
._1e{width:135.864000px;}
._21{width:140.976000px;}
._26{width:202.176000px;}
._27{width:203.508000px;}
._16{width:288.720000px;}
._17{width:289.728000px;}
._1f{width:291.936000px;}
._20{width:293.172000px;}
._3{width:356.240160px;}
._1b{width:499.392000px;}
._1c{width:500.532000px;}
._0{width:731.712000px;}
._c{width:847.083600px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:15.840000px;}
.y6{bottom:80.100000px;}
.y5{bottom:112.896000px;}
.y7{bottom:113.616000px;}
.y4{bottom:145.656000px;}
.y91{bottom:168.690000px;}
.y6b{bottom:172.110000px;}
.y15e{bottom:177.150000px;}
.y95{bottom:178.050000px;}
.y142{bottom:178.590000px;}
.y11e{bottom:178.770000px;}
.ydb{bottom:180.930000px;}
.y4c{bottom:181.110000px;}
.ya6{bottom:183.630000px;}
.ybe{bottom:186.870000px;}
.y90{bottom:192.450000px;}
.y6a{bottom:195.870000px;}
.y11d{bottom:198.930000px;}
.y15d{bottom:200.910000px;}
.y141{bottom:202.350000px;}
.y4b{bottom:204.870000px;}
.ya5{bottom:207.390000px;}
.y94{bottom:210.630000px;}
.yf7{bottom:215.670000px;}
.y8f{bottom:216.210000px;}
.y11c{bottom:218.910000px;}
.y69{bottom:219.630000px;}
.y140{bottom:226.110000px;}
.y4a{bottom:228.630000px;}
.ya4{bottom:231.150000px;}
.y15c{bottom:233.670000px;}
.y93{bottom:234.570000px;}
.yf6{bottom:236.550000px;}
.y11b{bottom:238.890000px;}
.y8e{bottom:240.150000px;}
.y68{bottom:243.570000px;}
.y172{bottom:246.090000px;}
.y13f{bottom:249.870000px;}
.yd1{bottom:252.390000px;}
.y49{bottom:252.570000px;}
.ya3{bottom:254.910000px;}
.yf5{bottom:256.710000px;}
.y15b{bottom:257.430000px;}
.y92{bottom:258.330000px;}
.y11a{bottom:259.770000px;}
.y8d{bottom:263.910000px;}
.y67{bottom:267.330000px;}
.y171{bottom:269.850000px;}
.y13e{bottom:273.810000px;}
.yd0{bottom:276.150000px;}
.y48{bottom:276.330000px;}
.yf4{bottom:276.870000px;}
.ya2{bottom:278.850000px;}
.y119{bottom:279.930000px;}
.y15a{bottom:281.370000px;}
.ybd{bottom:282.090000px;}
.y8c{bottom:287.670000px;}
.y66{bottom:291.090000px;}
.yf3{bottom:297.030000px;}
.y13d{bottom:297.570000px;}
.y47{bottom:300.090000px;}
.ya1{bottom:302.610000px;}
.y159{bottom:305.130000px;}
.ybc{bottom:305.850000px;}
.y65{bottom:314.850000px;}
.yf2{bottom:317.010000px;}
.y118{bottom:320.250000px;}
.y8b{bottom:320.430000px;}
.y13c{bottom:321.330000px;}
.y46{bottom:323.850000px;}
.y25{bottom:325.470000px;}
.ya0{bottom:326.370000px;}
.y158{bottom:328.890000px;}
.ybb{bottom:329.790000px;}
.yda{bottom:332.850000px;}
.y64{bottom:338.790000px;}
.yf1{bottom:340.230000px;}
.y117{bottom:340.410000px;}
.y8a{bottom:344.370000px;}
.y13b{bottom:345.090000px;}
.ycf{bottom:347.610000px;}
.y45{bottom:347.790000px;}
.y9f{bottom:350.130000px;}
.y170{bottom:350.310000px;}
.yba{bottom:353.550000px;}
.yd9{bottom:356.610000px;}
.y24{bottom:358.275000px;}
.yf0{bottom:360.435000px;}
.y116{bottom:360.615000px;}
.y157{bottom:361.695000px;}
.y63{bottom:362.595000px;}
.y89{bottom:368.175000px;}
.y13a{bottom:369.075000px;}
.yce{bottom:371.415000px;}
.y44{bottom:371.595000px;}
.y9e{bottom:374.115000px;}
.yb9{bottom:377.355000px;}
.yd8{bottom:380.415000px;}
.yef{bottom:380.595000px;}
.y115{bottom:380.775000px;}
.y23{bottom:382.215000px;}
.y156{bottom:385.635000px;}
.y62{bottom:386.355000px;}
.y139{bottom:389.955000px;}
.y88{bottom:391.935000px;}
.y43{bottom:395.355000px;}
.y9d{bottom:397.875000px;}
.yee{bottom:400.755000px;}
.y114{bottom:400.935000px;}
.yb8{bottom:401.115000px;}
.yd7{bottom:404.355000px;}
.y22{bottom:405.975000px;}
.y16f{bottom:406.875000px;}
.y155{bottom:409.395000px;}
.y61{bottom:410.115000px;}
.y138{bottom:410.835000px;}
.y87{bottom:415.695000px;}
.y42{bottom:419.115000px;}
.yed{bottom:420.915000px;}
.y113{bottom:421.095000px;}
.y9c{bottom:421.635000px;}
.yb7{bottom:425.055000px;}
.yd6{bottom:428.115000px;}
.y21{bottom:429.735000px;}
.y16e{bottom:430.635000px;}
.y137{bottom:430.815000px;}
.y154{bottom:433.155000px;}
.y60{bottom:434.055000px;}
.y86{bottom:439.635000px;}
.yec{bottom:441.075000px;}
.ycd{bottom:442.875000px;}
.y41{bottom:443.055000px;}
.y9b{bottom:445.395000px;}
.yb6{bottom:448.815000px;}
.y136{bottom:450.975000px;}
.yd5{bottom:451.875000px;}
.y20{bottom:453.495000px;}
.y16d{bottom:454.575000px;}
.y5f{bottom:457.815000px;}
.yeb{bottom:461.235000px;}
.y85{bottom:463.395000px;}
.y153{bottom:465.915000px;}
.y40{bottom:466.815000px;}
.y9a{bottom:469.335000px;}
.y135{bottom:471.135000px;}
.yb5{bottom:472.575000px;}
.ycc{bottom:475.635000px;}
.y1f{bottom:477.435000px;}
.y112{bottom:481.395000px;}
.y5e{bottom:481.575000px;}
.y84{bottom:487.155000px;}
.y16c{bottom:487.335000px;}
.y152{bottom:489.675000px;}
.y3f{bottom:490.575000px;}
.y134{bottom:491.295000px;}
.y99{bottom:493.095000px;}
.yb4{bottom:496.335000px;}
.ycb{bottom:499.575000px;}
.y1e{bottom:501.195000px;}
.y111{bottom:501.555000px;}
.y5d{bottom:505.335000px;}
.y83{bottom:510.915000px;}
.y16b{bottom:511.095000px;}
.y133{bottom:511.455000px;}
.y3e{bottom:514.335000px;}
.y98{bottom:516.855000px;}
.yb3{bottom:520.275000px;}
.y110{bottom:521.715000px;}
.y151{bottom:522.615000px;}
.yca{bottom:523.335000px;}
.y132{bottom:531.615000px;}
.y1d{bottom:533.595000px;}
.y82{bottom:534.675000px;}
.y16a{bottom:534.855000px;}
.y3d{bottom:538.275000px;}
.y97{bottom:540.615000px;}
.y10f{bottom:541.875000px;}
.yb2{bottom:544.035000px;}
.y150{bottom:546.375000px;}
.yc9{bottom:547.095000px;}
.y131{bottom:551.775000px;}
.y1c{bottom:554.835000px;}
.y81{bottom:558.615000px;}
.y17a{bottom:558.795000px;}
.y3c{bottom:562.035000px;}
.yea{bottom:564.375000px;}
.y169{bottom:567.795000px;}
.y14f{bottom:570.135000px;}
.y96{bottom:570.855000px;}
.y130{bottom:571.935000px;}
.yb1{bottom:576.795000px;}
.y10e{bottom:582.195000px;}
.y80{bottom:582.375000px;}
.y5c{bottom:585.795000px;}
.y1b{bottom:587.415000px;}
.ye9{bottom:588.315000px;}
.y168{bottom:591.555000px;}
.y12f{bottom:592.095000px;}
.y3b{bottom:594.795000px;}
.yb0{bottom:600.555000px;}
.y10d{bottom:602.355000px;}
.y14e{bottom:602.895000px;}
.yd4{bottom:603.795000px;}
.y7f{bottom:606.135000px;}
.y5b{bottom:609.555000px;}
.ye8{bottom:612.075000px;}
.y12e{bottom:612.255000px;}
.y167{bottom:615.315000px;}
.y3a{bottom:618.585000px;}
.y1a{bottom:620.385000px;}
.y10c{bottom:622.365000px;}
.yaf{bottom:624.525000px;}
.y14d{bottom:626.865000px;}
.yd3{bottom:627.585000px;}
.y7e{bottom:629.925000px;}
.y12d{bottom:632.265000px;}
.y5a{bottom:633.525000px;}
.ye7{bottom:635.865000px;}
.y166{bottom:639.105000px;}
.y39{bottom:642.525000px;}
.y19{bottom:644.145000px;}
.yae{bottom:648.285000px;}
.yc8{bottom:651.345000px;}
.y12c{bottom:652.425000px;}
.y7d{bottom:653.865000px;}
.y10b{bottom:654.945000px;}
.y59{bottom:657.285000px;}
.ye6{bottom:659.625000px;}
.y38{bottom:666.285000px;}
.y18{bottom:667.905000px;}
.y165{bottom:671.865000px;}
.yad{bottom:672.045000px;}
.y12b{bottom:672.585000px;}
.yc7{bottom:675.105000px;}
.y7c{bottom:677.625000px;}
.y10a{bottom:678.705000px;}
.y58{bottom:681.045000px;}
.y14c{bottom:683.385000px;}
.ye5{bottom:683.565000px;}
.y37{bottom:690.045000px;}
.y17{bottom:691.665000px;}
.y12a{bottom:692.745000px;}
.yac{bottom:695.805000px;}
.yc6{bottom:698.865000px;}
.y7b{bottom:701.385000px;}
.y109{bottom:702.465000px;}
.y57{bottom:704.805000px;}
.y14b{bottom:707.145000px;}
.ye4{bottom:707.325000px;}
.y129{bottom:712.905000px;}
.y36{bottom:713.805000px;}
.y16{bottom:715.425000px;}
.yab{bottom:719.565000px;}
.yc5{bottom:722.805000px;}
.y7a{bottom:725.145000px;}
.y108{bottom:726.405000px;}
.y56{bottom:728.565000px;}
.ye3{bottom:731.085000px;}
.y128{bottom:733.065000px;}
.y35{bottom:737.565000px;}
.y15{bottom:739.365000px;}
.yaa{bottom:743.505000px;}
.yc4{bottom:746.565000px;}
.y79{bottom:749.085000px;}
.y107{bottom:750.165000px;}
.y179{bottom:752.325000px;}
.y55{bottom:752.505000px;}
.y127{bottom:753.225000px;}
.ye2{bottom:754.845000px;}
.y164{bottom:761.325000px;}
.y34{bottom:761.505000px;}
.y14{bottom:763.125000px;}
.y14a{bottom:763.845000px;}
.yc3{bottom:770.325000px;}
.y78{bottom:772.845000px;}
.y126{bottom:773.385000px;}
.y106{bottom:773.925000px;}
.y178{bottom:776.085000px;}
.y54{bottom:776.265000px;}
.ye1{bottom:778.785000px;}
.y163{bottom:785.085000px;}
.y33{bottom:785.265000px;}
.y149{bottom:787.605000px;}
.y125{bottom:793.545000px;}
.yc2{bottom:794.085000px;}
.y13{bottom:795.525000px;}
.y77{bottom:796.605000px;}
.y105{bottom:797.685000px;}
.y53{bottom:800.025000px;}
.ye0{bottom:802.545000px;}
.y32{bottom:809.025000px;}
.y148{bottom:811.365000px;}
.y124{bottom:813.525000px;}
.y12{bottom:816.405000px;}
.yc1{bottom:818.025000px;}
.y52{bottom:823.785000px;}
.ydf{bottom:826.305000px;}
.y76{bottom:826.845000px;}
.y104{bottom:827.925000px;}
.y31{bottom:832.785000px;}
.y123{bottom:833.685000px;}
.y11{bottom:837.105000px;}
.yc0{bottom:841.785000px;}
.y147{bottom:844.305000px;}
.y51{bottom:847.725000px;}
.yde{bottom:850.065000px;}
.y122{bottom:853.845000px;}
.y177{bottom:856.545000px;}
.y30{bottom:856.725000px;}
.ybf{bottom:865.545000px;}
.y146{bottom:868.065000px;}
.y10{bottom:869.505000px;}
.y50{bottom:871.485000px;}
.y103{bottom:872.745000px;}
.ydd{bottom:874.005000px;}
.y75{bottom:874.545000px;}
.y176{bottom:877.470000px;}
.y2f{bottom:880.530000px;}
.y162{bottom:889.350000px;}
.y145{bottom:891.870000px;}
.yd2{bottom:892.410000px;}
.y102{bottom:893.670000px;}
.y121{bottom:894.210000px;}
.y4f{bottom:895.290000px;}
.ydc{bottom:897.810000px;}
.y74{bottom:898.350000px;}
.y2e{bottom:904.290000px;}
.yf{bottom:908.070000px;}
.y175{bottom:910.050000px;}
.y161{bottom:913.290000px;}
.y101{bottom:913.830000px;}
.y120{bottom:914.370000px;}
.y4e{bottom:919.050000px;}
.y144{bottom:922.110000px;}
.y73{bottom:922.290000px;}
.y2d{bottom:928.050000px;}
.ye{bottom:930.030000px;}
.y100{bottom:933.810000px;}
.y174{bottom:933.990000px;}
.y11f{bottom:934.530000px;}
.y160{bottom:937.050000px;}
.y4d{bottom:942.990000px;}
.y72{bottom:946.050000px;}
.y2c{bottom:951.990000px;}
.yd{bottom:952.170000px;}
.yff{bottom:954.690000px;}
.y173{bottom:957.750000px;}
.ya9{bottom:966.750000px;}
.y143{bottom:966.930000px;}
.y71{bottom:969.810000px;}
.yfe{bottom:974.850000px;}
.y2b{bottom:975.750000px;}
.ya8{bottom:990.510000px;}
.y70{bottom:993.570000px;}
.yfd{bottom:995.010000px;}
.yc{bottom:995.370000px;}
.y2a{bottom:999.510000px;}
.ya7{bottom:1014.270000px;}
.y15f{bottom:1014.450000px;}
.yfc{bottom:1014.990000px;}
.y6f{bottom:1017.510000px;}
.yb{bottom:1017.870000px;}
.y29{bottom:1023.270000px;}
.yfb{bottom:1035.150000px;}
.y6e{bottom:1041.270000px;}
.y28{bottom:1047.210000px;}
.yfa{bottom:1055.310000px;}
.y6d{bottom:1065.030000px;}
.ya{bottom:1067.550000px;}
.y27{bottom:1070.970000px;}
.yf9{bottom:1075.470000px;}
.y9{bottom:1091.670000px;}
.y26{bottom:1094.730000px;}
.y6c{bottom:1094.910000px;}
.yf8{bottom:1095.630000px;}
.y3{bottom:1127.490000px;}
.y2{bottom:1148.580000px;}
.y1{bottom:1199.520000px;}
.h4{height:32.760000px;}
.h2{height:53.302500px;}
.h8{height:60.577031px;}
.hb{height:64.546875px;}
.h9{height:65.010937px;}
.hd{height:68.084282px;}
.hc{height:70.628906px;}
.h3{height:70.664062px;}
.ha{height:72.562500px;}
.h7{height:72.984375px;}
.h6{height:81.101250px;}
.h5{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:29.880000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x4{left:133.595987px;}
.x6{left:139.175987px;}
.xd{left:154.649987px;}
.xb{left:180.749987px;}
.xc{left:207.569987px;}
.x9{left:319.934987px;}
.x5{left:446.294987px;}
.x3{left:466.845000px;}
.x2{left:478.364987px;}
.x7{left:492.404987px;}
.xa{left:575.204987px;}
.x8{left:612.104987px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.896000pt;}
.ls15{letter-spacing:-0.757333pt;}
.ls18{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.204800pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.117867pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls11{letter-spacing:0.227733pt;}
.ls14{letter-spacing:0.330133pt;}
.ls17{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.640000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls12{letter-spacing:34.831360pt;}
.ls10{letter-spacing:126.991360pt;}
.ls3{letter-spacing:1295.605333pt;}
.ws1{word-spacing:-19.215360pt;}
.wsd{word-spacing:-16.576000pt;}
.wse{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.wsc{word-spacing:-13.637013pt;}
.ws9{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.424747pt;}
.wsb{word-spacing:-13.306880pt;}
.ws0{word-spacing:-10.832000pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-2.056533pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.938667pt;}
._5{width:2.355413pt;}
._6{width:3.980587pt;}
._7{width:4.928000pt;}
._8{width:5.896747pt;}
._9{width:7.543253pt;}
._a{width:8.768000pt;}
._b{width:9.757867pt;}
._10{width:11.280000pt;}
._d{width:12.224000pt;}
._e{width:13.162667pt;}
._f{width:14.058667pt;}
._13{width:15.040000pt;}
._11{width:17.472000pt;}
._12{width:18.485333pt;}
._19{width:24.042667pt;}
._1a{width:25.104000pt;}
._28{width:48.448000pt;}
._14{width:61.504000pt;}
._15{width:62.698667pt;}
._22{width:67.434667pt;}
._23{width:68.517333pt;}
._24{width:85.952000pt;}
._18{width:97.450667pt;}
._25{width:112.528000pt;}
._1d{width:119.594667pt;}
._1e{width:120.768000pt;}
._21{width:125.312000pt;}
._26{width:179.712000pt;}
._27{width:180.896000pt;}
._16{width:256.640000pt;}
._17{width:257.536000pt;}
._1f{width:259.498667pt;}
._20{width:260.597333pt;}
._3{width:316.657920pt;}
._1b{width:443.904000pt;}
._1c{width:444.917333pt;}
._0{width:650.410667pt;}
._c{width:752.963200pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:14.080000pt;}
.y6{bottom:71.200000pt;}
.y5{bottom:100.352000pt;}
.y7{bottom:100.992000pt;}
.y4{bottom:129.472000pt;}
.y91{bottom:149.946667pt;}
.y6b{bottom:152.986667pt;}
.y15e{bottom:157.466667pt;}
.y95{bottom:158.266667pt;}
.y142{bottom:158.746667pt;}
.y11e{bottom:158.906667pt;}
.ydb{bottom:160.826667pt;}
.y4c{bottom:160.986667pt;}
.ya6{bottom:163.226667pt;}
.ybe{bottom:166.106667pt;}
.y90{bottom:171.066667pt;}
.y6a{bottom:174.106667pt;}
.y11d{bottom:176.826667pt;}
.y15d{bottom:178.586667pt;}
.y141{bottom:179.866667pt;}
.y4b{bottom:182.106667pt;}
.ya5{bottom:184.346667pt;}
.y94{bottom:187.226667pt;}
.yf7{bottom:191.706667pt;}
.y8f{bottom:192.186667pt;}
.y11c{bottom:194.586667pt;}
.y69{bottom:195.226667pt;}
.y140{bottom:200.986667pt;}
.y4a{bottom:203.226667pt;}
.ya4{bottom:205.466667pt;}
.y15c{bottom:207.706667pt;}
.y93{bottom:208.506667pt;}
.yf6{bottom:210.266667pt;}
.y11b{bottom:212.346667pt;}
.y8e{bottom:213.466667pt;}
.y68{bottom:216.506667pt;}
.y172{bottom:218.746667pt;}
.y13f{bottom:222.106667pt;}
.yd1{bottom:224.346667pt;}
.y49{bottom:224.506667pt;}
.ya3{bottom:226.586667pt;}
.yf5{bottom:228.186667pt;}
.y15b{bottom:228.826667pt;}
.y92{bottom:229.626667pt;}
.y11a{bottom:230.906667pt;}
.y8d{bottom:234.586667pt;}
.y67{bottom:237.626667pt;}
.y171{bottom:239.866667pt;}
.y13e{bottom:243.386667pt;}
.yd0{bottom:245.466667pt;}
.y48{bottom:245.626667pt;}
.yf4{bottom:246.106667pt;}
.ya2{bottom:247.866667pt;}
.y119{bottom:248.826667pt;}
.y15a{bottom:250.106667pt;}
.ybd{bottom:250.746667pt;}
.y8c{bottom:255.706667pt;}
.y66{bottom:258.746667pt;}
.yf3{bottom:264.026667pt;}
.y13d{bottom:264.506667pt;}
.y47{bottom:266.746667pt;}
.ya1{bottom:268.986667pt;}
.y159{bottom:271.226667pt;}
.ybc{bottom:271.866667pt;}
.y65{bottom:279.866667pt;}
.yf2{bottom:281.786667pt;}
.y118{bottom:284.666667pt;}
.y8b{bottom:284.826667pt;}
.y13c{bottom:285.626667pt;}
.y46{bottom:287.866667pt;}
.y25{bottom:289.306667pt;}
.ya0{bottom:290.106667pt;}
.y158{bottom:292.346667pt;}
.ybb{bottom:293.146667pt;}
.yda{bottom:295.866667pt;}
.y64{bottom:301.146667pt;}
.yf1{bottom:302.426667pt;}
.y117{bottom:302.586667pt;}
.y8a{bottom:306.106667pt;}
.y13b{bottom:306.746667pt;}
.ycf{bottom:308.986667pt;}
.y45{bottom:309.146667pt;}
.y9f{bottom:311.226667pt;}
.y170{bottom:311.386667pt;}
.yba{bottom:314.266667pt;}
.yd9{bottom:316.986667pt;}
.y24{bottom:318.466667pt;}
.yf0{bottom:320.386667pt;}
.y116{bottom:320.546667pt;}
.y157{bottom:321.506667pt;}
.y63{bottom:322.306667pt;}
.y89{bottom:327.266667pt;}
.y13a{bottom:328.066667pt;}
.yce{bottom:330.146667pt;}
.y44{bottom:330.306667pt;}
.y9e{bottom:332.546667pt;}
.yb9{bottom:335.426667pt;}
.yd8{bottom:338.146667pt;}
.yef{bottom:338.306667pt;}
.y115{bottom:338.466667pt;}
.y23{bottom:339.746667pt;}
.y156{bottom:342.786667pt;}
.y62{bottom:343.426667pt;}
.y139{bottom:346.626667pt;}
.y88{bottom:348.386667pt;}
.y43{bottom:351.426667pt;}
.y9d{bottom:353.666667pt;}
.yee{bottom:356.226667pt;}
.y114{bottom:356.386667pt;}
.yb8{bottom:356.546667pt;}
.yd7{bottom:359.426667pt;}
.y22{bottom:360.866667pt;}
.y16f{bottom:361.666667pt;}
.y155{bottom:363.906667pt;}
.y61{bottom:364.546667pt;}
.y138{bottom:365.186667pt;}
.y87{bottom:369.506667pt;}
.y42{bottom:372.546667pt;}
.yed{bottom:374.146667pt;}
.y113{bottom:374.306667pt;}
.y9c{bottom:374.786667pt;}
.yb7{bottom:377.826667pt;}
.yd6{bottom:380.546667pt;}
.y21{bottom:381.986667pt;}
.y16e{bottom:382.786667pt;}
.y137{bottom:382.946667pt;}
.y154{bottom:385.026667pt;}
.y60{bottom:385.826667pt;}
.y86{bottom:390.786667pt;}
.yec{bottom:392.066667pt;}
.ycd{bottom:393.666667pt;}
.y41{bottom:393.826667pt;}
.y9b{bottom:395.906667pt;}
.yb6{bottom:398.946667pt;}
.y136{bottom:400.866667pt;}
.yd5{bottom:401.666667pt;}
.y20{bottom:403.106667pt;}
.y16d{bottom:404.066667pt;}
.y5f{bottom:406.946667pt;}
.yeb{bottom:409.986667pt;}
.y85{bottom:411.906667pt;}
.y153{bottom:414.146667pt;}
.y40{bottom:414.946667pt;}
.y9a{bottom:417.186667pt;}
.y135{bottom:418.786667pt;}
.yb5{bottom:420.066667pt;}
.ycc{bottom:422.786667pt;}
.y1f{bottom:424.386667pt;}
.y112{bottom:427.906667pt;}
.y5e{bottom:428.066667pt;}
.y84{bottom:433.026667pt;}
.y16c{bottom:433.186667pt;}
.y152{bottom:435.266667pt;}
.y3f{bottom:436.066667pt;}
.y134{bottom:436.706667pt;}
.y99{bottom:438.306667pt;}
.yb4{bottom:441.186667pt;}
.ycb{bottom:444.066667pt;}
.y1e{bottom:445.506667pt;}
.y111{bottom:445.826667pt;}
.y5d{bottom:449.186667pt;}
.y83{bottom:454.146667pt;}
.y16b{bottom:454.306667pt;}
.y133{bottom:454.626667pt;}
.y3e{bottom:457.186667pt;}
.y98{bottom:459.426667pt;}
.yb3{bottom:462.466667pt;}
.y110{bottom:463.746667pt;}
.y151{bottom:464.546667pt;}
.yca{bottom:465.186667pt;}
.y132{bottom:472.546667pt;}
.y1d{bottom:474.306667pt;}
.y82{bottom:475.266667pt;}
.y16a{bottom:475.426667pt;}
.y3d{bottom:478.466667pt;}
.y97{bottom:480.546667pt;}
.y10f{bottom:481.666667pt;}
.yb2{bottom:483.586667pt;}
.y150{bottom:485.666667pt;}
.yc9{bottom:486.306667pt;}
.y131{bottom:490.466667pt;}
.y1c{bottom:493.186667pt;}
.y81{bottom:496.546667pt;}
.y17a{bottom:496.706667pt;}
.y3c{bottom:499.586667pt;}
.yea{bottom:501.666667pt;}
.y169{bottom:504.706667pt;}
.y14f{bottom:506.786667pt;}
.y96{bottom:507.426667pt;}
.y130{bottom:508.386667pt;}
.yb1{bottom:512.706667pt;}
.y10e{bottom:517.506667pt;}
.y80{bottom:517.666667pt;}
.y5c{bottom:520.706667pt;}
.y1b{bottom:522.146667pt;}
.ye9{bottom:522.946667pt;}
.y168{bottom:525.826667pt;}
.y12f{bottom:526.306667pt;}
.y3b{bottom:528.706667pt;}
.yb0{bottom:533.826667pt;}
.y10d{bottom:535.426667pt;}
.y14e{bottom:535.906667pt;}
.yd4{bottom:536.706667pt;}
.y7f{bottom:538.786667pt;}
.y5b{bottom:541.826667pt;}
.ye8{bottom:544.066667pt;}
.y12e{bottom:544.226667pt;}
.y167{bottom:546.946667pt;}
.y3a{bottom:549.853333pt;}
.y1a{bottom:551.453333pt;}
.y10c{bottom:553.213333pt;}
.yaf{bottom:555.133333pt;}
.y14d{bottom:557.213333pt;}
.yd3{bottom:557.853333pt;}
.y7e{bottom:559.933333pt;}
.y12d{bottom:562.013333pt;}
.y5a{bottom:563.133333pt;}
.ye7{bottom:565.213333pt;}
.y166{bottom:568.093333pt;}
.y39{bottom:571.133333pt;}
.y19{bottom:572.573333pt;}
.yae{bottom:576.253333pt;}
.yc8{bottom:578.973333pt;}
.y12c{bottom:579.933333pt;}
.y7d{bottom:581.213333pt;}
.y10b{bottom:582.173333pt;}
.y59{bottom:584.253333pt;}
.ye6{bottom:586.333333pt;}
.y38{bottom:592.253333pt;}
.y18{bottom:593.693333pt;}
.y165{bottom:597.213333pt;}
.yad{bottom:597.373333pt;}
.y12b{bottom:597.853333pt;}
.yc7{bottom:600.093333pt;}
.y7c{bottom:602.333333pt;}
.y10a{bottom:603.293333pt;}
.y58{bottom:605.373333pt;}
.y14c{bottom:607.453333pt;}
.ye5{bottom:607.613333pt;}
.y37{bottom:613.373333pt;}
.y17{bottom:614.813333pt;}
.y12a{bottom:615.773333pt;}
.yac{bottom:618.493333pt;}
.yc6{bottom:621.213333pt;}
.y7b{bottom:623.453333pt;}
.y109{bottom:624.413333pt;}
.y57{bottom:626.493333pt;}
.y14b{bottom:628.573333pt;}
.ye4{bottom:628.733333pt;}
.y129{bottom:633.693333pt;}
.y36{bottom:634.493333pt;}
.y16{bottom:635.933333pt;}
.yab{bottom:639.613333pt;}
.yc5{bottom:642.493333pt;}
.y7a{bottom:644.573333pt;}
.y108{bottom:645.693333pt;}
.y56{bottom:647.613333pt;}
.ye3{bottom:649.853333pt;}
.y128{bottom:651.613333pt;}
.y35{bottom:655.613333pt;}
.y15{bottom:657.213333pt;}
.yaa{bottom:660.893333pt;}
.yc4{bottom:663.613333pt;}
.y79{bottom:665.853333pt;}
.y107{bottom:666.813333pt;}
.y179{bottom:668.733333pt;}
.y55{bottom:668.893333pt;}
.y127{bottom:669.533333pt;}
.ye2{bottom:670.973333pt;}
.y164{bottom:676.733333pt;}
.y34{bottom:676.893333pt;}
.y14{bottom:678.333333pt;}
.y14a{bottom:678.973333pt;}
.yc3{bottom:684.733333pt;}
.y78{bottom:686.973333pt;}
.y126{bottom:687.453333pt;}
.y106{bottom:687.933333pt;}
.y178{bottom:689.853333pt;}
.y54{bottom:690.013333pt;}
.ye1{bottom:692.253333pt;}
.y163{bottom:697.853333pt;}
.y33{bottom:698.013333pt;}
.y149{bottom:700.093333pt;}
.y125{bottom:705.373333pt;}
.yc2{bottom:705.853333pt;}
.y13{bottom:707.133333pt;}
.y77{bottom:708.093333pt;}
.y105{bottom:709.053333pt;}
.y53{bottom:711.133333pt;}
.ye0{bottom:713.373333pt;}
.y32{bottom:719.133333pt;}
.y148{bottom:721.213333pt;}
.y124{bottom:723.133333pt;}
.y12{bottom:725.693333pt;}
.yc1{bottom:727.133333pt;}
.y52{bottom:732.253333pt;}
.ydf{bottom:734.493333pt;}
.y76{bottom:734.973333pt;}
.y104{bottom:735.933333pt;}
.y31{bottom:740.253333pt;}
.y123{bottom:741.053333pt;}
.y11{bottom:744.093333pt;}
.yc0{bottom:748.253333pt;}
.y147{bottom:750.493333pt;}
.y51{bottom:753.533333pt;}
.yde{bottom:755.613333pt;}
.y122{bottom:758.973333pt;}
.y177{bottom:761.373333pt;}
.y30{bottom:761.533333pt;}
.ybf{bottom:769.373333pt;}
.y146{bottom:771.613333pt;}
.y10{bottom:772.893333pt;}
.y50{bottom:774.653333pt;}
.y103{bottom:775.773333pt;}
.ydd{bottom:776.893333pt;}
.y75{bottom:777.373333pt;}
.y176{bottom:779.973333pt;}
.y2f{bottom:782.693333pt;}
.y162{bottom:790.533333pt;}
.y145{bottom:792.773333pt;}
.yd2{bottom:793.253333pt;}
.y102{bottom:794.373333pt;}
.y121{bottom:794.853333pt;}
.y4f{bottom:795.813333pt;}
.ydc{bottom:798.053333pt;}
.y74{bottom:798.533333pt;}
.y2e{bottom:803.813333pt;}
.yf{bottom:807.173333pt;}
.y175{bottom:808.933333pt;}
.y161{bottom:811.813333pt;}
.y101{bottom:812.293333pt;}
.y120{bottom:812.773333pt;}
.y4e{bottom:816.933333pt;}
.y144{bottom:819.653333pt;}
.y73{bottom:819.813333pt;}
.y2d{bottom:824.933333pt;}
.ye{bottom:826.693333pt;}
.y100{bottom:830.053333pt;}
.y174{bottom:830.213333pt;}
.y11f{bottom:830.693333pt;}
.y160{bottom:832.933333pt;}
.y4d{bottom:838.213333pt;}
.y72{bottom:840.933333pt;}
.y2c{bottom:846.213333pt;}
.yd{bottom:846.373333pt;}
.yff{bottom:848.613333pt;}
.y173{bottom:851.333333pt;}
.ya9{bottom:859.333333pt;}
.y143{bottom:859.493333pt;}
.y71{bottom:862.053333pt;}
.yfe{bottom:866.533333pt;}
.y2b{bottom:867.333333pt;}
.ya8{bottom:880.453333pt;}
.y70{bottom:883.173333pt;}
.yfd{bottom:884.453333pt;}
.yc{bottom:884.773333pt;}
.y2a{bottom:888.453333pt;}
.ya7{bottom:901.573333pt;}
.y15f{bottom:901.733333pt;}
.yfc{bottom:902.213333pt;}
.y6f{bottom:904.453333pt;}
.yb{bottom:904.773333pt;}
.y29{bottom:909.573333pt;}
.yfb{bottom:920.133333pt;}
.y6e{bottom:925.573333pt;}
.y28{bottom:930.853333pt;}
.yfa{bottom:938.053333pt;}
.y6d{bottom:946.693333pt;}
.ya{bottom:948.933333pt;}
.y27{bottom:951.973333pt;}
.yf9{bottom:955.973333pt;}
.y9{bottom:970.373333pt;}
.y26{bottom:973.093333pt;}
.y6c{bottom:973.253333pt;}
.yf8{bottom:973.893333pt;}
.y3{bottom:1002.213333pt;}
.y2{bottom:1020.960000pt;}
.y1{bottom:1066.240000pt;}
.h4{height:29.120000pt;}
.h2{height:47.380000pt;}
.h8{height:53.846250pt;}
.hb{height:57.375000pt;}
.h9{height:57.787500pt;}
.hd{height:60.519362pt;}
.hc{height:62.781250pt;}
.h3{height:62.812500pt;}
.ha{height:64.500000pt;}
.h7{height:64.875000pt;}
.h6{height:72.090000pt;}
.h5{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:26.560000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x4{left:118.751988pt;}
.x6{left:123.711988pt;}
.xd{left:137.466655pt;}
.xb{left:160.666655pt;}
.xc{left:184.506655pt;}
.x9{left:284.386655pt;}
.x5{left:396.706655pt;}
.x3{left:414.973333pt;}
.x2{left:425.213322pt;}
.x7{left:437.693322pt;}
.xa{left:511.293322pt;}
.x8{left:544.093322pt;}
}




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