
    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_d8c6498fed9029e8a4419c3e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_08c458b68787d6c4eb395eb9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c0391230d8480c02e2f52da1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_db614f077e4851321e1fcab1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172363;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_49f1fefe475444203932344e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.208200px;}
.ls6{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls9{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.lse{letter-spacing:16.506720px;}
.lsa{letter-spacing:16.920000px;}
.lsb{letter-spacing:46.026720px;}
.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:-24.300000px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.580000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1630.189440px;}
._4{margin-left:-1171.543680px;}
._20{margin-left:-779.405760px;}
._3b{margin-left:-778.402800px;}
._8{margin-left:-682.020000px;}
._22{margin-left:-649.033920px;}
._21{margin-left:-545.220000px;}
._5{margin-left:-435.119040px;}
._23{margin-left:-171.164160px;}
._6{margin-left:-123.206400px;}
._7{margin-left:-49.680000px;}
._14{margin-left:-3.138480px;}
._38{margin-left:-2.129040px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._a{width:2.205120px;}
._9{width:3.240480px;}
._d{width:4.363920px;}
._e{width:5.369040px;}
._b{width:6.574080px;}
._15{width:8.306640px;}
._c{width:10.247760px;}
._19{width:11.980800px;}
._1a{width:13.744800px;}
._3a{width:15.058800px;}
._17{width:16.553520px;}
._16{width:17.569440px;}
._26{width:19.182960px;}
._13{width:20.416320px;}
._27{width:22.230720px;}
._2f{width:23.483520px;}
._11{width:24.649920px;}
._12{width:25.758720px;}
._1d{width:26.801280px;}
._1c{width:28.615680px;}
._1b{width:30.358080px;}
._2c{width:31.914000px;}
._2b{width:33.076080px;}
._2d{width:34.689600px;}
._2e{width:35.884800px;}
._28{width:37.170720px;}
._10{width:38.963520px;}
._f{width:40.457520px;}
._32{width:42.279120px;}
._30{width:43.653600px;}
._36{width:45.339120px;}
._18{width:46.761120px;}
._34{width:48.016080px;}
._33{width:49.062960px;}
._25{width:50.616720px;}
._24{width:51.991200px;}
._1e{width:54.470160px;}
._1f{width:55.517040px;}
._29{width:57.398400px;}
._2a{width:58.626720px;}
._40{width:62.956080px;}
._31{width:64.481040px;}
._3d{width:76.939920px;}
._3f{width:78.493680px;}
._3e{width:79.569360px;}
._39{width:83.185920px;}
._42{width:88.146000px;}
._41{width:89.221680px;}
._3c{width:112.946400px;}
._37{width:168.582960px;}
._35{width:1663.080000px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.760000px;}
.y10f{bottom:5.790000px;}
.yd6{bottom:5.940000px;}
.y103{bottom:5.985000px;}
.y9{bottom:10.980000px;}
.yd8{bottom:11.160000px;}
.y8{bottom:11.700000px;}
.yd7{bottom:11.880000px;}
.yfd{bottom:25.740000px;}
.ye3{bottom:26.280000px;}
.y111{bottom:26.460000px;}
.ya{bottom:36.720000px;}
.yfc{bottom:45.540000px;}
.y12b{bottom:46.260000px;}
.yf1{bottom:46.980000px;}
.y114{bottom:51.120000px;}
.y6{bottom:52.380000px;}
.yd9{bottom:55.440000px;}
.y12a{bottom:66.060000px;}
.y113{bottom:66.780000px;}
.ye6{bottom:67.680000px;}
.yd5{bottom:70.920000px;}
.y74{bottom:81.720000px;}
.yba{bottom:81.900000px;}
.y119{bottom:88.020000px;}
.yeb{bottom:88.200000px;}
.y71{bottom:90.720000px;}
.y39{bottom:92.700000px;}
.y155{bottom:97.200000px;}
.y148{bottom:100.800000px;}
.y73{bottom:101.520000px;}
.yb9{bottom:101.700000px;}
.y110{bottom:107.640000px;}
.y70{bottom:110.520000px;}
.y38{bottom:112.500000px;}
.yd4{bottom:112.680000px;}
.y154{bottom:117.000000px;}
.y147{bottom:120.600000px;}
.y72{bottom:121.320000px;}
.yb8{bottom:121.680000px;}
.y112{bottom:128.340000px;}
.yff{bottom:129.285000px;}
.y6f{bottom:130.320000px;}
.y37{bottom:132.300000px;}
.yd3{bottom:132.480000px;}
.y153{bottom:136.800000px;}
.y146{bottom:140.400000px;}
.y75{bottom:141.300000px;}
.yb7{bottom:141.480000px;}
.y107{bottom:148.860000px;}
.y108{bottom:149.970000px;}
.y6e{bottom:150.300000px;}
.y36{bottom:152.310000px;}
.y152{bottom:156.630000px;}
.y145{bottom:160.410000px;}
.y93{bottom:161.130000px;}
.yb6{bottom:161.310000px;}
.y10e{bottom:169.410000px;}
.y6d{bottom:170.130000px;}
.y35{bottom:172.110000px;}
.y151{bottom:176.430000px;}
.y144{bottom:180.210000px;}
.y92{bottom:180.930000px;}
.y6c{bottom:189.930000px;}
.yb5{bottom:190.110000px;}
.y34{bottom:191.910000px;}
.y150{bottom:196.410000px;}
.y143{bottom:200.010000px;}
.y91{bottom:200.730000px;}
.y6b{bottom:209.730000px;}
.yb4{bottom:209.910000px;}
.y10d{bottom:210.630000px;}
.y33{bottom:211.710000px;}
.y14f{bottom:216.210000px;}
.y142{bottom:219.810000px;}
.y90{bottom:220.530000px;}
.yd2{bottom:220.890000px;}
.y6a{bottom:229.530000px;}
.yb3{bottom:229.890000px;}
.y10c{bottom:231.150000px;}
.y32{bottom:231.510000px;}
.y14e{bottom:236.010000px;}
.y141{bottom:239.610000px;}
.y8f{bottom:240.510000px;}
.yd1{bottom:240.690000px;}
.y69{bottom:249.510000px;}
.yb2{bottom:249.690000px;}
.y31{bottom:251.490000px;}
.y10b{bottom:251.850000px;}
.y14d{bottom:255.810000px;}
.y140{bottom:259.590000px;}
.y8e{bottom:260.310000px;}
.yd0{bottom:260.490000px;}
.y68{bottom:269.310000px;}
.yb1{bottom:269.490000px;}
.y30{bottom:271.290000px;}
.y10a{bottom:272.370000px;}
.y14c{bottom:275.610000px;}
.y13f{bottom:279.390000px;}
.y8d{bottom:280.110000px;}
.ycf{bottom:280.290000px;}
.y67{bottom:289.110000px;}
.yb0{bottom:289.290000px;}
.y2f{bottom:291.090000px;}
.y109{bottom:293.070000px;}
.y14b{bottom:296.310000px;}
.y13e{bottom:299.190000px;}
.y8c{bottom:299.910000px;}
.yce{bottom:300.090000px;}
.y66{bottom:308.910000px;}
.yaf{bottom:309.090000px;}
.y2e{bottom:310.890000px;}
.yfe{bottom:313.590000px;}
.y14a{bottom:317.370000px;}
.y13d{bottom:318.990000px;}
.y8b{bottom:319.710000px;}
.ycd{bottom:320.070000px;}
.y65{bottom:328.710000px;}
.yae{bottom:329.070000px;}
.y2d{bottom:330.690000px;}
.y106{bottom:334.110000px;}
.y149{bottom:338.430000px;}
.y13c{bottom:338.790000px;}
.y8a{bottom:339.690000px;}
.ycc{bottom:339.870000px;}
.y64{bottom:348.690000px;}
.yad{bottom:348.870000px;}
.y2c{bottom:350.670000px;}
.y105{bottom:354.810000px;}
.y13b{bottom:358.770000px;}
.y89{bottom:359.490000px;}
.ycb{bottom:359.670000px;}
.y63{bottom:368.490000px;}
.yac{bottom:368.670000px;}
.y2b{bottom:370.470000px;}
.y104{bottom:375.330000px;}
.y13a{bottom:378.570000px;}
.y88{bottom:379.290000px;}
.yca{bottom:379.470000px;}
.y62{bottom:388.290000px;}
.y2a{bottom:390.270000px;}
.y102{bottom:395.850000px;}
.yab{bottom:397.470000px;}
.y139{bottom:398.370000px;}
.y87{bottom:399.090000px;}
.yc9{bottom:399.270000px;}
.y61{bottom:408.135000px;}
.y29{bottom:410.115000px;}
.y101{bottom:416.595000px;}
.yaa{bottom:417.315000px;}
.y138{bottom:418.215000px;}
.y86{bottom:418.935000px;}
.yc8{bottom:419.295000px;}
.y60{bottom:427.935000px;}
.y28{bottom:429.915000px;}
.y100{bottom:437.115000px;}
.ya9{bottom:437.295000px;}
.y137{bottom:438.015000px;}
.y85{bottom:438.915000px;}
.yc7{bottom:439.095000px;}
.y5f{bottom:447.915000px;}
.y27{bottom:449.895000px;}
.ya8{bottom:457.095000px;}
.yfb{bottom:457.635000px;}
.y136{bottom:457.995000px;}
.y84{bottom:458.715000px;}
.y5e{bottom:467.715000px;}
.yc6{bottom:467.895000px;}
.y26{bottom:469.695000px;}
.ya7{bottom:476.895000px;}
.y135{bottom:477.795000px;}
.y83{bottom:478.515000px;}
.y5d{bottom:487.515000px;}
.yc5{bottom:487.695000px;}
.y25{bottom:489.495000px;}
.ya6{bottom:496.695000px;}
.y134{bottom:497.595000px;}
.y82{bottom:498.315000px;}
.y5c{bottom:507.315000px;}
.yc4{bottom:507.495000px;}
.y24{bottom:509.295000px;}
.ya5{bottom:516.495000px;}
.y133{bottom:517.395000px;}
.y81{bottom:518.115000px;}
.yfa{bottom:523.695000px;}
.y5b{bottom:527.115000px;}
.yc3{bottom:527.475000px;}
.y23{bottom:529.095000px;}
.ya4{bottom:536.475000px;}
.y132{bottom:537.195000px;}
.y80{bottom:538.095000px;}
.yf9{bottom:543.675000px;}
.y5a{bottom:547.095000px;}
.yc2{bottom:547.275000px;}
.y22{bottom:549.075000px;}
.ya3{bottom:556.275000px;}
.y131{bottom:557.175000px;}
.y7f{bottom:557.895000px;}
.yf8{bottom:563.475000px;}
.y59{bottom:566.895000px;}
.yc1{bottom:567.075000px;}
.y21{bottom:568.875000px;}
.ya2{bottom:576.075000px;}
.y130{bottom:576.975000px;}
.y7e{bottom:577.695000px;}
.yf7{bottom:583.275000px;}
.y58{bottom:586.695000px;}
.yc0{bottom:586.875000px;}
.y20{bottom:588.675000px;}
.ya1{bottom:595.875000px;}
.y12f{bottom:596.775000px;}
.y7d{bottom:597.495000px;}
.yf4{bottom:598.035000px;}
.y57{bottom:606.495000px;}
.ybf{bottom:606.675000px;}
.y1f{bottom:610.815000px;}
.ya0{bottom:615.675000px;}
.y12e{bottom:616.575000px;}
.y7c{bottom:617.295000px;}
.yf6{bottom:618.735000px;}
.y56{bottom:626.295000px;}
.ybe{bottom:626.475000px;}
.y1e{bottom:630.615000px;}
.y9f{bottom:635.475000px;}
.y12d{bottom:636.375000px;}
.y7b{bottom:637.275000px;}
.yf5{bottom:639.255000px;}
.y55{bottom:646.275000px;}
.ybd{bottom:646.455000px;}
.y1d{bottom:650.445000px;}
.y9e{bottom:655.485000px;}
.y12c{bottom:656.385000px;}
.y7a{bottom:657.105000px;}
.yf0{bottom:659.805000px;}
.y54{bottom:666.105000px;}
.ybc{bottom:666.285000px;}
.y1c{bottom:670.245000px;}
.y9d{bottom:675.285000px;}
.y79{bottom:676.905000px;}
.yf3{bottom:680.505000px;}
.y53{bottom:685.905000px;}
.ybb{bottom:686.085000px;}
.y1b{bottom:690.045000px;}
.y129{bottom:690.945000px;}
.y9c{bottom:695.085000px;}
.y78{bottom:696.705000px;}
.yf2{bottom:701.025000px;}
.y52{bottom:705.705000px;}
.y1a{bottom:710.025000px;}
.y128{bottom:711.465000px;}
.y9b{bottom:714.885000px;}
.y77{bottom:716.505000px;}
.yea{bottom:721.545000px;}
.y51{bottom:725.505000px;}
.y19{bottom:729.825000px;}
.y9a{bottom:734.685000px;}
.y76{bottom:736.485000px;}
.yef{bottom:742.245000px;}
.y50{bottom:745.485000px;}
.y18{bottom:749.625000px;}
.y99{bottom:754.665000px;}
.yee{bottom:762.765000px;}
.y4f{bottom:765.285000px;}
.y17{bottom:769.425000px;}
.y127{bottom:771.765000px;}
.y98{bottom:774.465000px;}
.yed{bottom:783.285000px;}
.y4e{bottom:785.085000px;}
.y16{bottom:789.225000px;}
.y97{bottom:794.265000px;}
.yec{bottom:803.985000px;}
.y4d{bottom:804.885000px;}
.y15{bottom:809.205000px;}
.y96{bottom:814.065000px;}
.y126{bottom:818.025000px;}
.ye5{bottom:824.505000px;}
.y4c{bottom:824.685000px;}
.y14{bottom:828.825000px;}
.y95{bottom:833.865000px;}
.y125{bottom:837.825000px;}
.y4b{bottom:844.665000px;}
.ye9{bottom:845.205000px;}
.y94{bottom:850.425000px;}
.y13{bottom:851.145000px;}
.y124{bottom:857.625000px;}
.y4a{bottom:864.465000px;}
.ye8{bottom:865.725000px;}
.y12{bottom:876.165000px;}
.y123{bottom:877.425000px;}
.y49{bottom:884.265000px;}
.ye7{bottom:886.245000px;}
.y11{bottom:895.965000px;}
.y122{bottom:897.405000px;}
.y48{bottom:904.110000px;}
.ye2{bottom:906.990000px;}
.y10{bottom:915.810000px;}
.y121{bottom:917.250000px;}
.y47{bottom:923.910000px;}
.ye4{bottom:927.510000px;}
.yf{bottom:935.610000px;}
.y120{bottom:937.050000px;}
.y46{bottom:943.890000px;}
.ye1{bottom:948.030000px;}
.ye{bottom:950.910000px;}
.y11f{bottom:956.850000px;}
.y45{bottom:963.690000px;}
.yd{bottom:972.150000px;}
.ye0{bottom:974.490000px;}
.y11e{bottom:976.650000px;}
.y44{bottom:983.490000px;}
.y118{bottom:991.590000px;}
.ydf{bottom:994.290000px;}
.yc{bottom:995.550000px;}
.y43{bottom:1003.290000px;}
.y11d{bottom:1012.110000px;}
.yde{bottom:1014.090000px;}
.y42{bottom:1023.090000px;}
.yb{bottom:1027.230000px;}
.y11c{bottom:1032.630000px;}
.ydd{bottom:1034.070000px;}
.y41{bottom:1043.070000px;}
.y11b{bottom:1053.330000px;}
.ydc{bottom:1053.870000px;}
.y5{bottom:1055.490000px;}
.y40{bottom:1062.870000px;}
.ydb{bottom:1073.670000px;}
.y11a{bottom:1073.850000px;}
.y3f{bottom:1082.670000px;}
.y4{bottom:1087.890000px;}
.yda{bottom:1093.470000px;}
.y117{bottom:1094.370000px;}
.y3e{bottom:1102.470000px;}
.y116{bottom:1115.070000px;}
.y3{bottom:1118.850000px;}
.y3d{bottom:1122.270000px;}
.y115{bottom:1135.590000px;}
.y3c{bottom:1142.250000px;}
.y2{bottom:1149.660000px;}
.y3b{bottom:1171.620000px;}
.y1{bottom:1181.700000px;}
.y3a{bottom:1193.400000px;}
.h11{height:19.800000px;}
.h17{height:19.836000px;}
.hf{height:19.980000px;}
.h13{height:20.016000px;}
.h5{height:21.240000px;}
.he{height:21.420000px;}
.h8{height:27.432422px;}
.h7{height:29.464453px;}
.hd{height:34.855313px;}
.h1d{height:39.780000px;}
.h10{height:40.320000px;}
.h1b{height:40.500000px;}
.hb{height:42.164648px;}
.h3{height:46.736719px;}
.hc{height:53.224453px;}
.h4{height:53.573906px;}
.h2{height:54.864844px;}
.h1f{height:55.735313px;}
.h6{height:59.383125px;}
.h20{height:59.439023px;}
.h18{height:59.580000px;}
.h15{height:61.020000px;}
.h16{height:61.056000px;}
.h9{height:65.884219px;}
.ha{height:67.565039px;}
.h1e{height:80.100000px;}
.h12{height:81.756000px;}
.h1c{height:102.060000px;}
.h14{height:102.240000px;}
.h19{height:143.316000px;}
.h1a{height:164.010000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:46.656000px;}
.w11{width:53.280000px;}
.w3{width:57.816000px;}
.w12{width:59.940000px;}
.w15{width:59.976000px;}
.w14{width:60.120000px;}
.wd{width:93.456000px;}
.w16{width:93.780000px;}
.w10{width:95.256000px;}
.w9{width:95.436000px;}
.wa{width:97.020000px;}
.we{width:99.180000px;}
.wb{width:99.576000px;}
.wc{width:99.720000px;}
.w8{width:112.320000px;}
.wf{width:120.780000px;}
.w7{width:232.950000px;}
.w5{width:233.310000px;}
.w6{width:233.670000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x26{left:12.240000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x9{left:73.439987px;}
.xa{left:81.719987px;}
.x1d{left:88.416000px;}
.x14{left:95.796000px;}
.xe{left:100.835987px;}
.x29{left:108.035987px;}
.x4{left:120.636000px;}
.x10{left:129.635987px;}
.xf{left:139.895987px;}
.xd{left:157.709987px;}
.xc{left:189.389987px;}
.x17{left:208.830000px;}
.x1e{left:209.910000px;}
.x18{left:304.995000px;}
.x8{left:307.119000px;}
.x7{left:312.159000px;}
.x15{left:329.835000px;}
.x12{left:352.514987px;}
.x1f{left:359.895000px;}
.x19{left:402.915000px;}
.x6{left:413.709000px;}
.x20{left:420.555000px;}
.xb{left:446.504987px;}
.x21{left:467.925000px;}
.x11{left:473.504987px;}
.x27{left:500.504987px;}
.x1a{left:503.205000px;}
.x28{left:527.504987px;}
.x22{left:528.585000px;}
.x16{left:564.225000px;}
.x23{left:589.425000px;}
.x1b{left:603.645000px;}
.x5{left:628.314000px;}
.x24{left:650.130000px;}
.x1c{left:698.010000px;}
.x25{left:710.970000px;}
.x13{left:797.549987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.185067pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls9{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.lse{letter-spacing:14.672640pt;}
.lsa{letter-spacing:15.040000pt;}
.lsb{letter-spacing:40.912640pt;}
.ws1{word-spacing:-21.600000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.960000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1449.057280pt;}
._4{margin-left:-1041.372160pt;}
._20{margin-left:-692.805120pt;}
._3b{margin-left:-691.913600pt;}
._8{margin-left:-606.240000pt;}
._22{margin-left:-576.919040pt;}
._21{margin-left:-484.640000pt;}
._5{margin-left:-386.772480pt;}
._23{margin-left:-152.145920pt;}
._6{margin-left:-109.516800pt;}
._7{margin-left:-44.160000pt;}
._14{margin-left:-2.789760pt;}
._38{margin-left:-1.892480pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._a{width:1.960107pt;}
._9{width:2.880427pt;}
._d{width:3.879040pt;}
._e{width:4.772480pt;}
._b{width:5.843627pt;}
._15{width:7.383680pt;}
._c{width:9.109120pt;}
._19{width:10.649600pt;}
._1a{width:12.217600pt;}
._3a{width:13.385600pt;}
._17{width:14.714240pt;}
._16{width:15.617280pt;}
._26{width:17.051520pt;}
._13{width:18.147840pt;}
._27{width:19.760640pt;}
._2f{width:20.874240pt;}
._11{width:21.911040pt;}
._12{width:22.896640pt;}
._1d{width:23.823360pt;}
._1c{width:25.436160pt;}
._1b{width:26.984960pt;}
._2c{width:28.368000pt;}
._2b{width:29.400960pt;}
._2d{width:30.835200pt;}
._2e{width:31.897600pt;}
._28{width:33.040640pt;}
._10{width:34.634240pt;}
._f{width:35.962240pt;}
._32{width:37.581440pt;}
._30{width:38.803200pt;}
._36{width:40.301440pt;}
._18{width:41.565440pt;}
._34{width:42.680960pt;}
._33{width:43.611520pt;}
._25{width:44.992640pt;}
._24{width:46.214400pt;}
._1e{width:48.417920pt;}
._1f{width:49.348480pt;}
._29{width:51.020800pt;}
._2a{width:52.112640pt;}
._40{width:55.960960pt;}
._31{width:57.316480pt;}
._3d{width:68.391040pt;}
._3f{width:69.772160pt;}
._3e{width:70.728320pt;}
._39{width:73.943040pt;}
._42{width:78.352000pt;}
._41{width:79.308160pt;}
._3c{width:100.396800pt;}
._37{width:149.851520pt;}
._35{width:1478.293333pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.120000pt;}
.y10f{bottom:5.146667pt;}
.yd6{bottom:5.280000pt;}
.y103{bottom:5.320000pt;}
.y9{bottom:9.760000pt;}
.yd8{bottom:9.920000pt;}
.y8{bottom:10.400000pt;}
.yd7{bottom:10.560000pt;}
.yfd{bottom:22.880000pt;}
.ye3{bottom:23.360000pt;}
.y111{bottom:23.520000pt;}
.ya{bottom:32.640000pt;}
.yfc{bottom:40.480000pt;}
.y12b{bottom:41.120000pt;}
.yf1{bottom:41.760000pt;}
.y114{bottom:45.440000pt;}
.y6{bottom:46.560000pt;}
.yd9{bottom:49.280000pt;}
.y12a{bottom:58.720000pt;}
.y113{bottom:59.360000pt;}
.ye6{bottom:60.160000pt;}
.yd5{bottom:63.040000pt;}
.y74{bottom:72.640000pt;}
.yba{bottom:72.800000pt;}
.y119{bottom:78.240000pt;}
.yeb{bottom:78.400000pt;}
.y71{bottom:80.640000pt;}
.y39{bottom:82.400000pt;}
.y155{bottom:86.400000pt;}
.y148{bottom:89.600000pt;}
.y73{bottom:90.240000pt;}
.yb9{bottom:90.400000pt;}
.y110{bottom:95.680000pt;}
.y70{bottom:98.240000pt;}
.y38{bottom:100.000000pt;}
.yd4{bottom:100.160000pt;}
.y154{bottom:104.000000pt;}
.y147{bottom:107.200000pt;}
.y72{bottom:107.840000pt;}
.yb8{bottom:108.160000pt;}
.y112{bottom:114.080000pt;}
.yff{bottom:114.920000pt;}
.y6f{bottom:115.840000pt;}
.y37{bottom:117.600000pt;}
.yd3{bottom:117.760000pt;}
.y153{bottom:121.600000pt;}
.y146{bottom:124.800000pt;}
.y75{bottom:125.600000pt;}
.yb7{bottom:125.760000pt;}
.y107{bottom:132.320000pt;}
.y108{bottom:133.306667pt;}
.y6e{bottom:133.600000pt;}
.y36{bottom:135.386667pt;}
.y152{bottom:139.226667pt;}
.y145{bottom:142.586667pt;}
.y93{bottom:143.226667pt;}
.yb6{bottom:143.386667pt;}
.y10e{bottom:150.586667pt;}
.y6d{bottom:151.226667pt;}
.y35{bottom:152.986667pt;}
.y151{bottom:156.826667pt;}
.y144{bottom:160.186667pt;}
.y92{bottom:160.826667pt;}
.y6c{bottom:168.826667pt;}
.yb5{bottom:168.986667pt;}
.y34{bottom:170.586667pt;}
.y150{bottom:174.586667pt;}
.y143{bottom:177.786667pt;}
.y91{bottom:178.426667pt;}
.y6b{bottom:186.426667pt;}
.yb4{bottom:186.586667pt;}
.y10d{bottom:187.226667pt;}
.y33{bottom:188.186667pt;}
.y14f{bottom:192.186667pt;}
.y142{bottom:195.386667pt;}
.y90{bottom:196.026667pt;}
.yd2{bottom:196.346667pt;}
.y6a{bottom:204.026667pt;}
.yb3{bottom:204.346667pt;}
.y10c{bottom:205.466667pt;}
.y32{bottom:205.786667pt;}
.y14e{bottom:209.786667pt;}
.y141{bottom:212.986667pt;}
.y8f{bottom:213.786667pt;}
.yd1{bottom:213.946667pt;}
.y69{bottom:221.786667pt;}
.yb2{bottom:221.946667pt;}
.y31{bottom:223.546667pt;}
.y10b{bottom:223.866667pt;}
.y14d{bottom:227.386667pt;}
.y140{bottom:230.746667pt;}
.y8e{bottom:231.386667pt;}
.yd0{bottom:231.546667pt;}
.y68{bottom:239.386667pt;}
.yb1{bottom:239.546667pt;}
.y30{bottom:241.146667pt;}
.y10a{bottom:242.106667pt;}
.y14c{bottom:244.986667pt;}
.y13f{bottom:248.346667pt;}
.y8d{bottom:248.986667pt;}
.ycf{bottom:249.146667pt;}
.y67{bottom:256.986667pt;}
.yb0{bottom:257.146667pt;}
.y2f{bottom:258.746667pt;}
.y109{bottom:260.506667pt;}
.y14b{bottom:263.386667pt;}
.y13e{bottom:265.946667pt;}
.y8c{bottom:266.586667pt;}
.yce{bottom:266.746667pt;}
.y66{bottom:274.586667pt;}
.yaf{bottom:274.746667pt;}
.y2e{bottom:276.346667pt;}
.yfe{bottom:278.746667pt;}
.y14a{bottom:282.106667pt;}
.y13d{bottom:283.546667pt;}
.y8b{bottom:284.186667pt;}
.ycd{bottom:284.506667pt;}
.y65{bottom:292.186667pt;}
.yae{bottom:292.506667pt;}
.y2d{bottom:293.946667pt;}
.y106{bottom:296.986667pt;}
.y149{bottom:300.826667pt;}
.y13c{bottom:301.146667pt;}
.y8a{bottom:301.946667pt;}
.ycc{bottom:302.106667pt;}
.y64{bottom:309.946667pt;}
.yad{bottom:310.106667pt;}
.y2c{bottom:311.706667pt;}
.y105{bottom:315.386667pt;}
.y13b{bottom:318.906667pt;}
.y89{bottom:319.546667pt;}
.ycb{bottom:319.706667pt;}
.y63{bottom:327.546667pt;}
.yac{bottom:327.706667pt;}
.y2b{bottom:329.306667pt;}
.y104{bottom:333.626667pt;}
.y13a{bottom:336.506667pt;}
.y88{bottom:337.146667pt;}
.yca{bottom:337.306667pt;}
.y62{bottom:345.146667pt;}
.y2a{bottom:346.906667pt;}
.y102{bottom:351.866667pt;}
.yab{bottom:353.306667pt;}
.y139{bottom:354.106667pt;}
.y87{bottom:354.746667pt;}
.yc9{bottom:354.906667pt;}
.y61{bottom:362.786667pt;}
.y29{bottom:364.546667pt;}
.y101{bottom:370.306667pt;}
.yaa{bottom:370.946667pt;}
.y138{bottom:371.746667pt;}
.y86{bottom:372.386667pt;}
.yc8{bottom:372.706667pt;}
.y60{bottom:380.386667pt;}
.y28{bottom:382.146667pt;}
.y100{bottom:388.546667pt;}
.ya9{bottom:388.706667pt;}
.y137{bottom:389.346667pt;}
.y85{bottom:390.146667pt;}
.yc7{bottom:390.306667pt;}
.y5f{bottom:398.146667pt;}
.y27{bottom:399.906667pt;}
.ya8{bottom:406.306667pt;}
.yfb{bottom:406.786667pt;}
.y136{bottom:407.106667pt;}
.y84{bottom:407.746667pt;}
.y5e{bottom:415.746667pt;}
.yc6{bottom:415.906667pt;}
.y26{bottom:417.506667pt;}
.ya7{bottom:423.906667pt;}
.y135{bottom:424.706667pt;}
.y83{bottom:425.346667pt;}
.y5d{bottom:433.346667pt;}
.yc5{bottom:433.506667pt;}
.y25{bottom:435.106667pt;}
.ya6{bottom:441.506667pt;}
.y134{bottom:442.306667pt;}
.y82{bottom:442.946667pt;}
.y5c{bottom:450.946667pt;}
.yc4{bottom:451.106667pt;}
.y24{bottom:452.706667pt;}
.ya5{bottom:459.106667pt;}
.y133{bottom:459.906667pt;}
.y81{bottom:460.546667pt;}
.yfa{bottom:465.506667pt;}
.y5b{bottom:468.546667pt;}
.yc3{bottom:468.866667pt;}
.y23{bottom:470.306667pt;}
.ya4{bottom:476.866667pt;}
.y132{bottom:477.506667pt;}
.y80{bottom:478.306667pt;}
.yf9{bottom:483.266667pt;}
.y5a{bottom:486.306667pt;}
.yc2{bottom:486.466667pt;}
.y22{bottom:488.066667pt;}
.ya3{bottom:494.466667pt;}
.y131{bottom:495.266667pt;}
.y7f{bottom:495.906667pt;}
.yf8{bottom:500.866667pt;}
.y59{bottom:503.906667pt;}
.yc1{bottom:504.066667pt;}
.y21{bottom:505.666667pt;}
.ya2{bottom:512.066667pt;}
.y130{bottom:512.866667pt;}
.y7e{bottom:513.506667pt;}
.yf7{bottom:518.466667pt;}
.y58{bottom:521.506667pt;}
.yc0{bottom:521.666667pt;}
.y20{bottom:523.266667pt;}
.ya1{bottom:529.666667pt;}
.y12f{bottom:530.466667pt;}
.y7d{bottom:531.106667pt;}
.yf4{bottom:531.586667pt;}
.y57{bottom:539.106667pt;}
.ybf{bottom:539.266667pt;}
.y1f{bottom:542.946667pt;}
.ya0{bottom:547.266667pt;}
.y12e{bottom:548.066667pt;}
.y7c{bottom:548.706667pt;}
.yf6{bottom:549.986667pt;}
.y56{bottom:556.706667pt;}
.ybe{bottom:556.866667pt;}
.y1e{bottom:560.546667pt;}
.y9f{bottom:564.866667pt;}
.y12d{bottom:565.666667pt;}
.y7b{bottom:566.466667pt;}
.yf5{bottom:568.226667pt;}
.y55{bottom:574.466667pt;}
.ybd{bottom:574.626667pt;}
.y1d{bottom:578.173333pt;}
.y9e{bottom:582.653333pt;}
.y12c{bottom:583.453333pt;}
.y7a{bottom:584.093333pt;}
.yf0{bottom:586.493333pt;}
.y54{bottom:592.093333pt;}
.ybc{bottom:592.253333pt;}
.y1c{bottom:595.773333pt;}
.y9d{bottom:600.253333pt;}
.y79{bottom:601.693333pt;}
.yf3{bottom:604.893333pt;}
.y53{bottom:609.693333pt;}
.ybb{bottom:609.853333pt;}
.y1b{bottom:613.373333pt;}
.y129{bottom:614.173333pt;}
.y9c{bottom:617.853333pt;}
.y78{bottom:619.293333pt;}
.yf2{bottom:623.133333pt;}
.y52{bottom:627.293333pt;}
.y1a{bottom:631.133333pt;}
.y128{bottom:632.413333pt;}
.y9b{bottom:635.453333pt;}
.y77{bottom:636.893333pt;}
.yea{bottom:641.373333pt;}
.y51{bottom:644.893333pt;}
.y19{bottom:648.733333pt;}
.y9a{bottom:653.053333pt;}
.y76{bottom:654.653333pt;}
.yef{bottom:659.773333pt;}
.y50{bottom:662.653333pt;}
.y18{bottom:666.333333pt;}
.y99{bottom:670.813333pt;}
.yee{bottom:678.013333pt;}
.y4f{bottom:680.253333pt;}
.y17{bottom:683.933333pt;}
.y127{bottom:686.013333pt;}
.y98{bottom:688.413333pt;}
.yed{bottom:696.253333pt;}
.y4e{bottom:697.853333pt;}
.y16{bottom:701.533333pt;}
.y97{bottom:706.013333pt;}
.yec{bottom:714.653333pt;}
.y4d{bottom:715.453333pt;}
.y15{bottom:719.293333pt;}
.y96{bottom:723.613333pt;}
.y126{bottom:727.133333pt;}
.ye5{bottom:732.893333pt;}
.y4c{bottom:733.053333pt;}
.y14{bottom:736.733333pt;}
.y95{bottom:741.213333pt;}
.y125{bottom:744.733333pt;}
.y4b{bottom:750.813333pt;}
.ye9{bottom:751.293333pt;}
.y94{bottom:755.933333pt;}
.y13{bottom:756.573333pt;}
.y124{bottom:762.333333pt;}
.y4a{bottom:768.413333pt;}
.ye8{bottom:769.533333pt;}
.y12{bottom:778.813333pt;}
.y123{bottom:779.933333pt;}
.y49{bottom:786.013333pt;}
.ye7{bottom:787.773333pt;}
.y11{bottom:796.413333pt;}
.y122{bottom:797.693333pt;}
.y48{bottom:803.653333pt;}
.ye2{bottom:806.213333pt;}
.y10{bottom:814.053333pt;}
.y121{bottom:815.333333pt;}
.y47{bottom:821.253333pt;}
.ye4{bottom:824.453333pt;}
.yf{bottom:831.653333pt;}
.y120{bottom:832.933333pt;}
.y46{bottom:839.013333pt;}
.ye1{bottom:842.693333pt;}
.ye{bottom:845.253333pt;}
.y11f{bottom:850.533333pt;}
.y45{bottom:856.613333pt;}
.yd{bottom:864.133333pt;}
.ye0{bottom:866.213333pt;}
.y11e{bottom:868.133333pt;}
.y44{bottom:874.213333pt;}
.y118{bottom:881.413333pt;}
.ydf{bottom:883.813333pt;}
.yc{bottom:884.933333pt;}
.y43{bottom:891.813333pt;}
.y11d{bottom:899.653333pt;}
.yde{bottom:901.413333pt;}
.y42{bottom:909.413333pt;}
.yb{bottom:913.093333pt;}
.y11c{bottom:917.893333pt;}
.ydd{bottom:919.173333pt;}
.y41{bottom:927.173333pt;}
.y11b{bottom:936.293333pt;}
.ydc{bottom:936.773333pt;}
.y5{bottom:938.213333pt;}
.y40{bottom:944.773333pt;}
.ydb{bottom:954.373333pt;}
.y11a{bottom:954.533333pt;}
.y3f{bottom:962.373333pt;}
.y4{bottom:967.013333pt;}
.yda{bottom:971.973333pt;}
.y117{bottom:972.773333pt;}
.y3e{bottom:979.973333pt;}
.y116{bottom:991.173333pt;}
.y3{bottom:994.533333pt;}
.y3d{bottom:997.573333pt;}
.y115{bottom:1009.413333pt;}
.y3c{bottom:1015.333333pt;}
.y2{bottom:1021.920000pt;}
.y3b{bottom:1041.440000pt;}
.y1{bottom:1050.400000pt;}
.y3a{bottom:1060.800000pt;}
.h11{height:17.600000pt;}
.h17{height:17.632000pt;}
.hf{height:17.760000pt;}
.h13{height:17.792000pt;}
.h5{height:18.880000pt;}
.he{height:19.040000pt;}
.h8{height:24.384375pt;}
.h7{height:26.190625pt;}
.hd{height:30.982500pt;}
.h1d{height:35.360000pt;}
.h10{height:35.840000pt;}
.h1b{height:36.000000pt;}
.hb{height:37.479688pt;}
.h3{height:41.543750pt;}
.hc{height:47.310625pt;}
.h4{height:47.621250pt;}
.h2{height:48.768750pt;}
.h1f{height:49.542500pt;}
.h6{height:52.785000pt;}
.h20{height:52.834688pt;}
.h18{height:52.960000pt;}
.h15{height:54.240000pt;}
.h16{height:54.272000pt;}
.h9{height:58.563750pt;}
.ha{height:60.057813pt;}
.h1e{height:71.200000pt;}
.h12{height:72.672000pt;}
.h1c{height:90.720000pt;}
.h14{height:90.880000pt;}
.h19{height:127.392000pt;}
.h1a{height:145.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:41.472000pt;}
.w11{width:47.360000pt;}
.w3{width:51.392000pt;}
.w12{width:53.280000pt;}
.w15{width:53.312000pt;}
.w14{width:53.440000pt;}
.wd{width:83.072000pt;}
.w16{width:83.360000pt;}
.w10{width:84.672000pt;}
.w9{width:84.832000pt;}
.wa{width:86.240000pt;}
.we{width:88.160000pt;}
.wb{width:88.512000pt;}
.wc{width:88.640000pt;}
.w8{width:99.840000pt;}
.wf{width:107.360000pt;}
.w7{width:207.066667pt;}
.w5{width:207.386667pt;}
.w6{width:207.706667pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x26{left:10.880000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x9{left:65.279988pt;}
.xa{left:72.639988pt;}
.x1d{left:78.592000pt;}
.x14{left:85.152000pt;}
.xe{left:89.631988pt;}
.x29{left:96.031988pt;}
.x4{left:107.232000pt;}
.x10{left:115.231988pt;}
.xf{left:124.351988pt;}
.xd{left:140.186655pt;}
.xc{left:168.346655pt;}
.x17{left:185.626667pt;}
.x1e{left:186.586667pt;}
.x18{left:271.106667pt;}
.x8{left:272.994667pt;}
.x7{left:277.474667pt;}
.x15{left:293.186667pt;}
.x12{left:313.346655pt;}
.x1f{left:319.906667pt;}
.x19{left:358.146667pt;}
.x6{left:367.741333pt;}
.x20{left:373.826667pt;}
.xb{left:396.893322pt;}
.x21{left:415.933333pt;}
.x11{left:420.893322pt;}
.x27{left:444.893322pt;}
.x1a{left:447.293333pt;}
.x28{left:468.893322pt;}
.x22{left:469.853333pt;}
.x16{left:501.533333pt;}
.x23{left:523.933333pt;}
.x1b{left:536.573333pt;}
.x5{left:558.501333pt;}
.x24{left:577.893333pt;}
.x1c{left:620.453333pt;}
.x25{left:631.973333pt;}
.x13{left:708.933322pt;}
}




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