
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_b754ea780d84161481b32f5e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_f583cbba57920b8e1889fd09.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_675274849787467a2c7caac0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_01f54b20a9c5297d2e149a60.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_c1393f51ba127a19874c9690.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959473;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_b6ceae5a57c141a733500a92.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.729412;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_be41b9cb1e81715254576af7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899902;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;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.205800px;}
.ls7{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.180000px;}
.lse{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.239040px;}
.lsd{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.624000px;}
.ls0{letter-spacing:10.080000px;}
.ls8{letter-spacing:1431.096000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws8{word-spacing:-16.527000px;}
.ws7{word-spacing:0.000000px;}
._1d{margin-left:-4.998000px;}
._12{margin-left:-3.570000px;}
._10{margin-left:-2.142000px;}
._0{margin-left:-1.026000px;}
._3{width:1.020000px;}
._1{width:2.436000px;}
._2{width:3.672000px;}
._8{width:4.824000px;}
._7{width:5.832000px;}
._f{width:7.344000px;}
._c{width:8.352000px;}
._a{width:9.504000px;}
._9{width:10.656000px;}
._11{width:12.384000px;}
._b{width:13.968000px;}
._17{width:15.120000px;}
._19{width:16.188000px;}
._18{width:19.296000px;}
._1a{width:20.322000px;}
._15{width:21.444000px;}
._13{width:23.112000px;}
._1e{width:24.228000px;}
._16{width:25.344000px;}
._2c{width:27.012000px;}
._1f{width:28.152000px;}
._3c{width:29.232000px;}
._41{width:30.300000px;}
._39{width:32.544000px;}
._1b{width:34.368000px;}
._1c{width:35.472000px;}
._e{width:36.696000px;}
._d{width:37.728000px;}
._29{width:38.760000px;}
._28{width:40.224000px;}
._2a{width:41.832000px;}
._3b{width:53.580000px;}
._3a{width:54.792000px;}
._2b{width:62.352000px;}
._6{width:72.048000px;}
._23{width:85.464000px;}
._42{width:88.488000px;}
._43{width:89.910000px;}
._24{width:93.600000px;}
._36{width:97.344000px;}
._37{width:99.114000px;}
._20{width:105.048000px;}
._2f{width:112.464000px;}
._30{width:114.120000px;}
._2d{width:116.496000px;}
._2e{width:117.588000px;}
._35{width:118.974000px;}
._34{width:120.096000px;}
._27{width:124.344000px;}
._25{width:125.568000px;}
._26{width:126.786000px;}
._38{width:127.812000px;}
._44{width:128.952000px;}
._3e{width:133.710000px;}
._3d{width:134.832000px;}
._32{width:152.208000px;}
._33{width:153.444000px;}
._22{width:184.104000px;}
._21{width:185.664000px;}
._31{width:192.864000px;}
._40{width:209.448000px;}
._3f{width:210.528000px;}
._5{width:470.916000px;}
._14{width:1261.794240px;}
._4{width:1433.832000px;}
.fc6{color:rgb(70,120,134);}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc1{color:rgb(118,113,113);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:1.800000px;}
.y36{bottom:8.100000px;}
.y32{bottom:51.840000px;}
.y8{bottom:57.600000px;}
.y35{bottom:67.680000px;}
.y33{bottom:74.700000px;}
.y7{bottom:76.860000px;}
.y6{bottom:91.980000px;}
.y5{bottom:107.280000px;}
.y4{bottom:122.400000px;}
.y31{bottom:122.580000px;}
.y101{bottom:137.160000px;}
.y3{bottom:137.520000px;}
.y95{bottom:140.580000px;}
.yd0{bottom:151.380000px;}
.ye3{bottom:151.950000px;}
.y124{bottom:155.190000px;}
.yc1{bottom:156.810000px;}
.y100{bottom:157.530000px;}
.y94{bottom:160.950000px;}
.y65{bottom:164.190000px;}
.y148{bottom:166.530000px;}
.yb5{bottom:172.110000px;}
.y2e{bottom:173.730000px;}
.y123{bottom:175.530000px;}
.yff{bottom:177.870000px;}
.ycf{bottom:180.570000px;}
.yc0{bottom:181.470000px;}
.y147{bottom:186.870000px;}
.y93{bottom:190.110000px;}
.yb4{bottom:192.450000px;}
.y64{bottom:193.530000px;}
.y2d{bottom:194.070000px;}
.y122{bottom:195.870000px;}
.yce{bottom:205.230000px;}
.yfe{bottom:207.030000px;}
.y92{bottom:210.450000px;}
.yb3{bottom:212.610000px;}
.y63{bottom:222.690000px;}
.y2c{bottom:223.950000px;}
.y121{bottom:225.030000px;}
.yfd{bottom:227.370000px;}
.y91{bottom:230.610000px;}
.yb2{bottom:232.950000px;}
.y146{bottom:236.190000px;}
.y62{bottom:243.030000px;}
.y120{bottom:245.370000px;}
.y13a{bottom:247.530000px;}
.y90{bottom:250.950000px;}
.yb1{bottom:253.110000px;}
.y2b{bottom:255.810000px;}
.yfc{bottom:256.530000px;}
.ye2{bottom:262.110000px;}
.y61{bottom:263.370000px;}
.y8f{bottom:271.110000px;}
.yb0{bottom:273.450000px;}
.y11f{bottom:274.530000px;}
.y139{bottom:276.690000px;}
.yfb{bottom:276.870000px;}
.y14b{bottom:281.190000px;}
.ye1{bottom:282.450000px;}
.y60{bottom:283.530000px;}
.y2a{bottom:284.970000px;}
.y145{bottom:285.690000px;}
.y8e{bottom:291.450000px;}
.yaf{bottom:293.610000px;}
.y11e{bottom:294.870000px;}
.yfa{bottom:297.030000px;}
.ye0{bottom:302.610000px;}
.y5f{bottom:303.870000px;}
.y29{bottom:305.310000px;}
.y144{bottom:306.030000px;}
.y8d{bottom:311.610000px;}
.y11d{bottom:315.030000px;}
.y138{bottom:317.370000px;}
.yae{bottom:322.770000px;}
.ydf{bottom:322.950000px;}
.y5e{bottom:324.030000px;}
.y28{bottom:325.650000px;}
.yf9{bottom:326.190000px;}
.y8c{bottom:331.950000px;}
.y143{bottom:335.190000px;}
.yad{bottom:343.110000px;}
.y11c{bottom:344.190000px;}
.y5d{bottom:344.370000px;}
.yf8{bottom:346.530000px;}
.y8b{bottom:352.110000px;}
.y27{bottom:354.810000px;}
.y142{bottom:355.530000px;}
.yac{bottom:363.450000px;}
.y5c{bottom:364.530000px;}
.yf7{bottom:366.870000px;}
.ycd{bottom:368.310000px;}
.y8a{bottom:372.450000px;}
.yab{bottom:383.610000px;}
.y26{bottom:383.970000px;}
.y141{bottom:384.690000px;}
.y5b{bottom:384.870000px;}
.ycc{bottom:388.650000px;}
.y89{bottom:392.610000px;}
.yf6{bottom:396.030000px;}
.yaa{bottom:403.995000px;}
.y25{bottom:404.355000px;}
.y5a{bottom:405.075000px;}
.ycb{bottom:408.855000px;}
.y88{bottom:412.995000px;}
.y11b{bottom:414.075000px;}
.yf5{bottom:416.415000px;}
.ya9{bottom:424.155000px;}
.y137{bottom:425.235000px;}
.y59{bottom:425.415000px;}
.yca{bottom:429.195000px;}
.y24{bottom:433.515000px;}
.y140{bottom:434.235000px;}
.y11a{bottom:434.415000px;}
.y87{bottom:442.155000px;}
.ya8{bottom:444.495000px;}
.y58{bottom:445.575000px;}
.yc9{bottom:449.355000px;}
.ybf{bottom:454.575000px;}
.y86{bottom:462.495000px;}
.y23{bottom:462.855000px;}
.y14a{bottom:463.575000px;}
.ya7{bottom:464.655000px;}
.yf4{bottom:465.915000px;}
.yc8{bottom:469.695000px;}
.y57{bottom:474.735000px;}
.ybe{bottom:474.915000px;}
.y85{bottom:482.655000px;}
.y22{bottom:483.195000px;}
.y119{bottom:483.735000px;}
.y149{bottom:483.915000px;}
.ya6{bottom:484.995000px;}
.yf3{bottom:486.075000px;}
.yc7{bottom:489.855000px;}
.yde{bottom:493.815000px;}
.y56{bottom:495.075000px;}
.y84{bottom:502.995000px;}
.y21{bottom:503.355000px;}
.y118{bottom:504.075000px;}
.ya5{bottom:505.155000px;}
.yc6{bottom:510.195000px;}
.ydd{bottom:514.155000px;}
.yf2{bottom:515.235000px;}
.y55{bottom:515.415000px;}
.y83{bottom:523.155000px;}
.y20{bottom:523.695000px;}
.y136{bottom:524.415000px;}
.yc5{bottom:530.355000px;}
.y117{bottom:533.235000px;}
.ya4{bottom:534.315000px;}
.ydc{bottom:534.495000px;}
.y54{bottom:535.575000px;}
.y82{bottom:543.495000px;}
.y1f{bottom:543.855000px;}
.y135{bottom:544.575000px;}
.y116{bottom:553.575000px;}
.ya3{bottom:554.655000px;}
.y53{bottom:555.915000px;}
.yc4{bottom:559.515000px;}
.y81{bottom:563.655000px;}
.y1e{bottom:564.195000px;}
.y134{bottom:573.735000px;}
.y13f{bottom:573.915000px;}
.ya2{bottom:574.995000px;}
.y52{bottom:576.075000px;}
.y115{bottom:582.735000px;}
.y80{bottom:583.995000px;}
.y1d{bottom:584.355000px;}
.yc3{bottom:588.855000px;}
.y133{bottom:594.075000px;}
.ya1{bottom:595.155000px;}
.y51{bottom:596.415000px;}
.y114{bottom:603.075000px;}
.y7f{bottom:604.155000px;}
.y1c{bottom:604.695000px;}
.yc2{bottom:613.515000px;}
.ya0{bottom:615.495000px;}
.y50{bottom:616.575000px;}
.y132{bottom:623.235000px;}
.y113{bottom:623.415000px;}
.y7e{bottom:624.495000px;}
.y1b{bottom:624.855000px;}
.ybd{bottom:625.575000px;}
.y9f{bottom:635.655000px;}
.y4f{bottom:636.915000px;}
.y131{bottom:643.575000px;}
.y7d{bottom:644.655000px;}
.y1a{bottom:645.195000px;}
.yf1{bottom:645.915000px;}
.y112{bottom:652.605000px;}
.ybc{bottom:654.765000px;}
.y9e{bottom:656.025000px;}
.y4e{bottom:657.105000px;}
.y130{bottom:663.945000px;}
.y19{bottom:665.385000px;}
.yf0{bottom:666.105000px;}
.y13e{bottom:672.765000px;}
.y111{bottom:672.945000px;}
.y7c{bottom:673.845000px;}
.y9d{bottom:676.185000px;}
.y4d{bottom:677.445000px;}
.ybb{bottom:679.425000px;}
.y18{bottom:685.725000px;}
.y110{bottom:693.105000px;}
.y7b{bottom:694.185000px;}
.yef{bottom:695.265000px;}
.y9c{bottom:696.525000px;}
.y4c{bottom:697.605000px;}
.y17{bottom:705.885000px;}
.y12f{bottom:713.445000px;}
.y7a{bottom:714.525000px;}
.yee{bottom:715.605000px;}
.y9b{bottom:716.685000px;}
.y10f{bottom:722.265000px;}
.y16{bottom:726.225000px;}
.y4b{bottom:726.765000px;}
.y12e{bottom:733.605000px;}
.y79{bottom:734.685000px;}
.yed{bottom:735.945000px;}
.y10e{bottom:742.605000px;}
.ydb{bottom:745.845000px;}
.y15{bottom:746.385000px;}
.y9a{bottom:746.745000px;}
.y4a{bottom:747.105000px;}
.y78{bottom:755.025000px;}
.y12d{bottom:762.765000px;}
.y13d{bottom:762.945000px;}
.yec{bottom:765.825000px;}
.yda{bottom:766.185000px;}
.y14{bottom:766.725000px;}
.y49{bottom:767.445000px;}
.y10d{bottom:771.765000px;}
.y77{bottom:775.185000px;}
.y99{bottom:778.605000px;}
.y12c{bottom:783.105000px;}
.yd9{bottom:786.525000px;}
.y48{bottom:787.605000px;}
.y10c{bottom:792.105000px;}
.y76{bottom:795.525000px;}
.y13{bottom:796.785000px;}
.yeb{bottom:797.685000px;}
.yd8{bottom:806.685000px;}
.y98{bottom:807.765000px;}
.y47{bottom:807.945000px;}
.y12b{bottom:812.265000px;}
.y10b{bottom:812.445000px;}
.y75{bottom:815.685000px;}
.yea{bottom:826.845000px;}
.yd7{bottom:827.025000px;}
.y46{bottom:828.105000px;}
.y12{bottom:828.465000px;}
.y12a{bottom:832.605000px;}
.y74{bottom:836.025000px;}
.y10a{bottom:841.605000px;}
.yd6{bottom:847.185000px;}
.y45{bottom:848.445000px;}
.y73{bottom:856.185000px;}
.y11{bottom:857.805000px;}
.y129{bottom:861.765000px;}
.y109{bottom:861.945000px;}
.yd5{bottom:867.525000px;}
.y44{bottom:868.605000px;}
.y72{bottom:876.525000px;}
.y10{bottom:878.145000px;}
.y128{bottom:882.105000px;}
.yd4{bottom:887.685000px;}
.y43{bottom:888.945000px;}
.y108{bottom:891.105000px;}
.y71{bottom:896.685000px;}
.y127{bottom:902.490000px;}
.yd3{bottom:908.070000px;}
.y42{bottom:909.150000px;}
.yf{bottom:909.690000px;}
.y107{bottom:911.490000px;}
.y70{bottom:917.070000px;}
.ye9{bottom:928.230000px;}
.y41{bottom:929.490000px;}
.ye{bottom:930.210000px;}
.y106{bottom:931.650000px;}
.yd2{bottom:938.130000px;}
.y6f{bottom:946.230000px;}
.ye8{bottom:948.570000px;}
.y40{bottom:949.650000px;}
.y126{bottom:951.990000px;}
.y97{bottom:958.650000px;}
.y105{bottom:960.810000px;}
.yd{bottom:961.710000px;}
.y6e{bottom:966.570000px;}
.ye7{bottom:968.730000px;}
.yd1{bottom:969.810000px;}
.y13c{bottom:972.150000px;}
.y3f{bottom:978.810000px;}
.y96{bottom:978.990000px;}
.y104{bottom:981.150000px;}
.yc{bottom:982.230000px;}
.y6d{bottom:986.730000px;}
.ye6{bottom:989.070000px;}
.y3e{bottom:999.150000px;}
.y13b{bottom:1001.310000px;}
.y103{bottom:1001.490000px;}
.y6c{bottom:1007.070000px;}
.yba{bottom:1010.310000px;}
.ye5{bottom:1019.130000px;}
.y3d{bottom:1019.490000px;}
.y125{bottom:1021.650000px;}
.yb{bottom:1024.530000px;}
.y6b{bottom:1027.230000px;}
.yb9{bottom:1030.650000px;}
.y3c{bottom:1039.650000px;}
.y6a{bottom:1047.570000px;}
.ye4{bottom:1050.810000px;}
.yb8{bottom:1050.990000px;}
.ya{bottom:1051.530000px;}
.y3b{bottom:1059.990000px;}
.y69{bottom:1067.730000px;}
.yb7{bottom:1071.150000px;}
.y3a{bottom:1080.150000px;}
.y9{bottom:1085.730000px;}
.y68{bottom:1088.070000px;}
.yb6{bottom:1091.490000px;}
.y102{bottom:1100.310000px;}
.y39{bottom:1100.490000px;}
.y2{bottom:1101.390000px;}
.y67{bottom:1108.230000px;}
.y38{bottom:1120.650000px;}
.y66{bottom:1138.290000px;}
.y37{bottom:1140.990000px;}
.y30{bottom:1178.820000px;}
.y1{bottom:1194.120000px;}
.y2f{bottom:1196.280000px;}
.hd{height:22.500000px;}
.hf{height:24.120000px;}
.h3{height:36.571289px;}
.hb{height:41.610234px;}
.hc{height:47.796328px;}
.h7{height:48.761719px;}
.h4{height:50.132812px;}
.h8{height:56.437031px;}
.h9{height:57.051211px;}
.ha{height:59.439023px;}
.h5{height:64.853086px;}
.h2{height:65.884219px;}
.h6{height:66.676641px;}
.he{height:67.375547px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.536000px;}
.w4{width:677.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:10.800000px;}
.x1a{left:14.580000px;}
.x3{left:106.415987px;}
.x4{left:111.455987px;}
.x17{left:139.715987px;}
.x1b{left:148.895987px;}
.xc{left:180.209987px;}
.x7{left:204.689987px;}
.x12{left:232.049987px;}
.x5{left:290.774987px;}
.x14{left:300.674987px;}
.x10{left:351.974987px;}
.xf{left:367.454987px;}
.x8{left:368.714987px;}
.x6{left:381.314987px;}
.xb{left:390.134987px;}
.x18{left:396.074987px;}
.x19{left:397.694987px;}
.x9{left:399.674987px;}
.xa{left:409.394987px;}
.x1{left:446.504987px;}
.x13{left:739.229987px;}
.x16{left:743.549987px;}
.x11{left:745.889987px;}
.x15{left:747.329987px;}
.x2{left:786.749987px;}
.xd{left:789.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.182933pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.212480pt;}
.lsd{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.554667pt;}
.ls0{letter-spacing:8.960000pt;}
.ls8{letter-spacing:1272.085333pt;}
.ws0{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws8{word-spacing:-14.690667pt;}
.ws7{word-spacing:0.000000pt;}
._1d{margin-left:-4.442667pt;}
._12{margin-left:-3.173333pt;}
._10{margin-left:-1.904000pt;}
._0{margin-left:-0.912000pt;}
._3{width:0.906667pt;}
._1{width:2.165333pt;}
._2{width:3.264000pt;}
._8{width:4.288000pt;}
._7{width:5.184000pt;}
._f{width:6.528000pt;}
._c{width:7.424000pt;}
._a{width:8.448000pt;}
._9{width:9.472000pt;}
._11{width:11.008000pt;}
._b{width:12.416000pt;}
._17{width:13.440000pt;}
._19{width:14.389333pt;}
._18{width:17.152000pt;}
._1a{width:18.064000pt;}
._15{width:19.061333pt;}
._13{width:20.544000pt;}
._1e{width:21.536000pt;}
._16{width:22.528000pt;}
._2c{width:24.010667pt;}
._1f{width:25.024000pt;}
._3c{width:25.984000pt;}
._41{width:26.933333pt;}
._39{width:28.928000pt;}
._1b{width:30.549333pt;}
._1c{width:31.530667pt;}
._e{width:32.618667pt;}
._d{width:33.536000pt;}
._29{width:34.453333pt;}
._28{width:35.754667pt;}
._2a{width:37.184000pt;}
._3b{width:47.626667pt;}
._3a{width:48.704000pt;}
._2b{width:55.424000pt;}
._6{width:64.042667pt;}
._23{width:75.968000pt;}
._42{width:78.656000pt;}
._43{width:79.920000pt;}
._24{width:83.200000pt;}
._36{width:86.528000pt;}
._37{width:88.101333pt;}
._20{width:93.376000pt;}
._2f{width:99.968000pt;}
._30{width:101.440000pt;}
._2d{width:103.552000pt;}
._2e{width:104.522667pt;}
._35{width:105.754667pt;}
._34{width:106.752000pt;}
._27{width:110.528000pt;}
._25{width:111.616000pt;}
._26{width:112.698667pt;}
._38{width:113.610667pt;}
._44{width:114.624000pt;}
._3e{width:118.853333pt;}
._3d{width:119.850667pt;}
._32{width:135.296000pt;}
._33{width:136.394667pt;}
._22{width:163.648000pt;}
._21{width:165.034667pt;}
._31{width:171.434667pt;}
._40{width:186.176000pt;}
._3f{width:187.136000pt;}
._5{width:418.592000pt;}
._14{width:1121.594880pt;}
._4{width:1274.517333pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:1.600000pt;}
.y36{bottom:7.200000pt;}
.y32{bottom:46.080000pt;}
.y8{bottom:51.200000pt;}
.y35{bottom:60.160000pt;}
.y33{bottom:66.400000pt;}
.y7{bottom:68.320000pt;}
.y6{bottom:81.760000pt;}
.y5{bottom:95.360000pt;}
.y4{bottom:108.800000pt;}
.y31{bottom:108.960000pt;}
.y101{bottom:121.920000pt;}
.y3{bottom:122.240000pt;}
.y95{bottom:124.960000pt;}
.yd0{bottom:134.560000pt;}
.ye3{bottom:135.066667pt;}
.y124{bottom:137.946667pt;}
.yc1{bottom:139.386667pt;}
.y100{bottom:140.026667pt;}
.y94{bottom:143.066667pt;}
.y65{bottom:145.946667pt;}
.y148{bottom:148.026667pt;}
.yb5{bottom:152.986667pt;}
.y2e{bottom:154.426667pt;}
.y123{bottom:156.026667pt;}
.yff{bottom:158.106667pt;}
.ycf{bottom:160.506667pt;}
.yc0{bottom:161.306667pt;}
.y147{bottom:166.106667pt;}
.y93{bottom:168.986667pt;}
.yb4{bottom:171.066667pt;}
.y64{bottom:172.026667pt;}
.y2d{bottom:172.506667pt;}
.y122{bottom:174.106667pt;}
.yce{bottom:182.426667pt;}
.yfe{bottom:184.026667pt;}
.y92{bottom:187.066667pt;}
.yb3{bottom:188.986667pt;}
.y63{bottom:197.946667pt;}
.y2c{bottom:199.066667pt;}
.y121{bottom:200.026667pt;}
.yfd{bottom:202.106667pt;}
.y91{bottom:204.986667pt;}
.yb2{bottom:207.066667pt;}
.y146{bottom:209.946667pt;}
.y62{bottom:216.026667pt;}
.y120{bottom:218.106667pt;}
.y13a{bottom:220.026667pt;}
.y90{bottom:223.066667pt;}
.yb1{bottom:224.986667pt;}
.y2b{bottom:227.386667pt;}
.yfc{bottom:228.026667pt;}
.ye2{bottom:232.986667pt;}
.y61{bottom:234.106667pt;}
.y8f{bottom:240.986667pt;}
.yb0{bottom:243.066667pt;}
.y11f{bottom:244.026667pt;}
.y139{bottom:245.946667pt;}
.yfb{bottom:246.106667pt;}
.y14b{bottom:249.946667pt;}
.ye1{bottom:251.066667pt;}
.y60{bottom:252.026667pt;}
.y2a{bottom:253.306667pt;}
.y145{bottom:253.946667pt;}
.y8e{bottom:259.066667pt;}
.yaf{bottom:260.986667pt;}
.y11e{bottom:262.106667pt;}
.yfa{bottom:264.026667pt;}
.ye0{bottom:268.986667pt;}
.y5f{bottom:270.106667pt;}
.y29{bottom:271.386667pt;}
.y144{bottom:272.026667pt;}
.y8d{bottom:276.986667pt;}
.y11d{bottom:280.026667pt;}
.y138{bottom:282.106667pt;}
.yae{bottom:286.906667pt;}
.ydf{bottom:287.066667pt;}
.y5e{bottom:288.026667pt;}
.y28{bottom:289.466667pt;}
.yf9{bottom:289.946667pt;}
.y8c{bottom:295.066667pt;}
.y143{bottom:297.946667pt;}
.yad{bottom:304.986667pt;}
.y11c{bottom:305.946667pt;}
.y5d{bottom:306.106667pt;}
.yf8{bottom:308.026667pt;}
.y8b{bottom:312.986667pt;}
.y27{bottom:315.386667pt;}
.y142{bottom:316.026667pt;}
.yac{bottom:323.066667pt;}
.y5c{bottom:324.026667pt;}
.yf7{bottom:326.106667pt;}
.ycd{bottom:327.386667pt;}
.y8a{bottom:331.066667pt;}
.yab{bottom:340.986667pt;}
.y26{bottom:341.306667pt;}
.y141{bottom:341.946667pt;}
.y5b{bottom:342.106667pt;}
.ycc{bottom:345.466667pt;}
.y89{bottom:348.986667pt;}
.yf6{bottom:352.026667pt;}
.yaa{bottom:359.106667pt;}
.y25{bottom:359.426667pt;}
.y5a{bottom:360.066667pt;}
.ycb{bottom:363.426667pt;}
.y88{bottom:367.106667pt;}
.y11b{bottom:368.066667pt;}
.yf5{bottom:370.146667pt;}
.ya9{bottom:377.026667pt;}
.y137{bottom:377.986667pt;}
.y59{bottom:378.146667pt;}
.yca{bottom:381.506667pt;}
.y24{bottom:385.346667pt;}
.y140{bottom:385.986667pt;}
.y11a{bottom:386.146667pt;}
.y87{bottom:393.026667pt;}
.ya8{bottom:395.106667pt;}
.y58{bottom:396.066667pt;}
.yc9{bottom:399.426667pt;}
.ybf{bottom:404.066667pt;}
.y86{bottom:411.106667pt;}
.y23{bottom:411.426667pt;}
.y14a{bottom:412.066667pt;}
.ya7{bottom:413.026667pt;}
.yf4{bottom:414.146667pt;}
.yc8{bottom:417.506667pt;}
.y57{bottom:421.986667pt;}
.ybe{bottom:422.146667pt;}
.y85{bottom:429.026667pt;}
.y22{bottom:429.506667pt;}
.y119{bottom:429.986667pt;}
.y149{bottom:430.146667pt;}
.ya6{bottom:431.106667pt;}
.yf3{bottom:432.066667pt;}
.yc7{bottom:435.426667pt;}
.yde{bottom:438.946667pt;}
.y56{bottom:440.066667pt;}
.y84{bottom:447.106667pt;}
.y21{bottom:447.426667pt;}
.y118{bottom:448.066667pt;}
.ya5{bottom:449.026667pt;}
.yc6{bottom:453.506667pt;}
.ydd{bottom:457.026667pt;}
.yf2{bottom:457.986667pt;}
.y55{bottom:458.146667pt;}
.y83{bottom:465.026667pt;}
.y20{bottom:465.506667pt;}
.y136{bottom:466.146667pt;}
.yc5{bottom:471.426667pt;}
.y117{bottom:473.986667pt;}
.ya4{bottom:474.946667pt;}
.ydc{bottom:475.106667pt;}
.y54{bottom:476.066667pt;}
.y82{bottom:483.106667pt;}
.y1f{bottom:483.426667pt;}
.y135{bottom:484.066667pt;}
.y116{bottom:492.066667pt;}
.ya3{bottom:493.026667pt;}
.y53{bottom:494.146667pt;}
.yc4{bottom:497.346667pt;}
.y81{bottom:501.026667pt;}
.y1e{bottom:501.506667pt;}
.y134{bottom:509.986667pt;}
.y13f{bottom:510.146667pt;}
.ya2{bottom:511.106667pt;}
.y52{bottom:512.066667pt;}
.y115{bottom:517.986667pt;}
.y80{bottom:519.106667pt;}
.y1d{bottom:519.426667pt;}
.yc3{bottom:523.426667pt;}
.y133{bottom:528.066667pt;}
.ya1{bottom:529.026667pt;}
.y51{bottom:530.146667pt;}
.y114{bottom:536.066667pt;}
.y7f{bottom:537.026667pt;}
.y1c{bottom:537.506667pt;}
.yc2{bottom:545.346667pt;}
.ya0{bottom:547.106667pt;}
.y50{bottom:548.066667pt;}
.y132{bottom:553.986667pt;}
.y113{bottom:554.146667pt;}
.y7e{bottom:555.106667pt;}
.y1b{bottom:555.426667pt;}
.ybd{bottom:556.066667pt;}
.y9f{bottom:565.026667pt;}
.y4f{bottom:566.146667pt;}
.y131{bottom:572.066667pt;}
.y7d{bottom:573.026667pt;}
.y1a{bottom:573.506667pt;}
.yf1{bottom:574.146667pt;}
.y112{bottom:580.093333pt;}
.ybc{bottom:582.013333pt;}
.y9e{bottom:583.133333pt;}
.y4e{bottom:584.093333pt;}
.y130{bottom:590.173333pt;}
.y19{bottom:591.453333pt;}
.yf0{bottom:592.093333pt;}
.y13e{bottom:598.013333pt;}
.y111{bottom:598.173333pt;}
.y7c{bottom:598.973333pt;}
.y9d{bottom:601.053333pt;}
.y4d{bottom:602.173333pt;}
.ybb{bottom:603.933333pt;}
.y18{bottom:609.533333pt;}
.y110{bottom:616.093333pt;}
.y7b{bottom:617.053333pt;}
.yef{bottom:618.013333pt;}
.y9c{bottom:619.133333pt;}
.y4c{bottom:620.093333pt;}
.y17{bottom:627.453333pt;}
.y12f{bottom:634.173333pt;}
.y7a{bottom:635.133333pt;}
.yee{bottom:636.093333pt;}
.y9b{bottom:637.053333pt;}
.y10f{bottom:642.013333pt;}
.y16{bottom:645.533333pt;}
.y4b{bottom:646.013333pt;}
.y12e{bottom:652.093333pt;}
.y79{bottom:653.053333pt;}
.yed{bottom:654.173333pt;}
.y10e{bottom:660.093333pt;}
.ydb{bottom:662.973333pt;}
.y15{bottom:663.453333pt;}
.y9a{bottom:663.773333pt;}
.y4a{bottom:664.093333pt;}
.y78{bottom:671.133333pt;}
.y12d{bottom:678.013333pt;}
.y13d{bottom:678.173333pt;}
.yec{bottom:680.733333pt;}
.yda{bottom:681.053333pt;}
.y14{bottom:681.533333pt;}
.y49{bottom:682.173333pt;}
.y10d{bottom:686.013333pt;}
.y77{bottom:689.053333pt;}
.y99{bottom:692.093333pt;}
.y12c{bottom:696.093333pt;}
.yd9{bottom:699.133333pt;}
.y48{bottom:700.093333pt;}
.y10c{bottom:704.093333pt;}
.y76{bottom:707.133333pt;}
.y13{bottom:708.253333pt;}
.yeb{bottom:709.053333pt;}
.yd8{bottom:717.053333pt;}
.y98{bottom:718.013333pt;}
.y47{bottom:718.173333pt;}
.y12b{bottom:722.013333pt;}
.y10b{bottom:722.173333pt;}
.y75{bottom:725.053333pt;}
.yea{bottom:734.973333pt;}
.yd7{bottom:735.133333pt;}
.y46{bottom:736.093333pt;}
.y12{bottom:736.413333pt;}
.y12a{bottom:740.093333pt;}
.y74{bottom:743.133333pt;}
.y10a{bottom:748.093333pt;}
.yd6{bottom:753.053333pt;}
.y45{bottom:754.173333pt;}
.y73{bottom:761.053333pt;}
.y11{bottom:762.493333pt;}
.y129{bottom:766.013333pt;}
.y109{bottom:766.173333pt;}
.yd5{bottom:771.133333pt;}
.y44{bottom:772.093333pt;}
.y72{bottom:779.133333pt;}
.y10{bottom:780.573333pt;}
.y128{bottom:784.093333pt;}
.yd4{bottom:789.053333pt;}
.y43{bottom:790.173333pt;}
.y108{bottom:792.093333pt;}
.y71{bottom:797.053333pt;}
.y127{bottom:802.213333pt;}
.yd3{bottom:807.173333pt;}
.y42{bottom:808.133333pt;}
.yf{bottom:808.613333pt;}
.y107{bottom:810.213333pt;}
.y70{bottom:815.173333pt;}
.ye9{bottom:825.093333pt;}
.y41{bottom:826.213333pt;}
.ye{bottom:826.853333pt;}
.y106{bottom:828.133333pt;}
.yd2{bottom:833.893333pt;}
.y6f{bottom:841.093333pt;}
.ye8{bottom:843.173333pt;}
.y40{bottom:844.133333pt;}
.y126{bottom:846.213333pt;}
.y97{bottom:852.133333pt;}
.y105{bottom:854.053333pt;}
.yd{bottom:854.853333pt;}
.y6e{bottom:859.173333pt;}
.ye7{bottom:861.093333pt;}
.yd1{bottom:862.053333pt;}
.y13c{bottom:864.133333pt;}
.y3f{bottom:870.053333pt;}
.y96{bottom:870.213333pt;}
.y104{bottom:872.133333pt;}
.yc{bottom:873.093333pt;}
.y6d{bottom:877.093333pt;}
.ye6{bottom:879.173333pt;}
.y3e{bottom:888.133333pt;}
.y13b{bottom:890.053333pt;}
.y103{bottom:890.213333pt;}
.y6c{bottom:895.173333pt;}
.yba{bottom:898.053333pt;}
.ye5{bottom:905.893333pt;}
.y3d{bottom:906.213333pt;}
.y125{bottom:908.133333pt;}
.yb{bottom:910.693333pt;}
.y6b{bottom:913.093333pt;}
.yb9{bottom:916.133333pt;}
.y3c{bottom:924.133333pt;}
.y6a{bottom:931.173333pt;}
.ye4{bottom:934.053333pt;}
.yb8{bottom:934.213333pt;}
.ya{bottom:934.693333pt;}
.y3b{bottom:942.213333pt;}
.y69{bottom:949.093333pt;}
.yb7{bottom:952.133333pt;}
.y3a{bottom:960.133333pt;}
.y9{bottom:965.093333pt;}
.y68{bottom:967.173333pt;}
.yb6{bottom:970.213333pt;}
.y102{bottom:978.053333pt;}
.y39{bottom:978.213333pt;}
.y2{bottom:979.013333pt;}
.y67{bottom:985.093333pt;}
.y38{bottom:996.133333pt;}
.y66{bottom:1011.813333pt;}
.y37{bottom:1014.213333pt;}
.y30{bottom:1047.840000pt;}
.y1{bottom:1061.440000pt;}
.y2f{bottom:1063.360000pt;}
.hd{height:20.000000pt;}
.hf{height:21.440000pt;}
.h3{height:32.507812pt;}
.hb{height:36.986875pt;}
.hc{height:42.485625pt;}
.h7{height:43.343750pt;}
.h4{height:44.562500pt;}
.h8{height:50.166250pt;}
.h9{height:50.712187pt;}
.ha{height:52.834688pt;}
.h5{height:57.647187pt;}
.h2{height:58.563750pt;}
.h6{height:59.268125pt;}
.he{height:59.889375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.032000pt;}
.w4{width:602.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.600000pt;}
.x1a{left:12.960000pt;}
.x3{left:94.591988pt;}
.x4{left:99.071988pt;}
.x17{left:124.191988pt;}
.x1b{left:132.351988pt;}
.xc{left:160.186655pt;}
.x7{left:181.946655pt;}
.x12{left:206.266655pt;}
.x5{left:258.466655pt;}
.x14{left:267.266655pt;}
.x10{left:312.866655pt;}
.xf{left:326.626655pt;}
.x8{left:327.746655pt;}
.x6{left:338.946655pt;}
.xb{left:346.786655pt;}
.x18{left:352.066655pt;}
.x19{left:353.506655pt;}
.x9{left:355.266655pt;}
.xa{left:363.906655pt;}
.x1{left:396.893322pt;}
.x13{left:657.093322pt;}
.x16{left:660.933322pt;}
.x11{left:663.013322pt;}
.x15{left:664.293322pt;}
.x2{left:699.333322pt;}
.xd{left:701.413333pt;}
}




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