
    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_ea6645ed02abb483044527aa.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_55fc209762960e4c550e33af.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_f2bdcd5f9199f62d649599b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_448be76b582578cb16503f74.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_bd80a290a6c41cb1033bb52d.woff')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_88884a00b6e9b12c5460506e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_b2ca68568117a716059f7392.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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.540000px;}
.ls6{letter-spacing:-0.017280px;}
.ls7{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.ls8{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.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:-19.457280px;}
.ws4{word-spacing:-19.431360px;}
.ws3{word-spacing:-19.422720px;}
.ws5{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-12.329400px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-4.320000px;}
._d{margin-left:-3.024000px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._6{width:4.144800px;}
._5{width:5.529120px;}
._7{width:6.624000px;}
._1a{width:7.641360px;}
._b{width:8.784000px;}
._c{width:10.152000px;}
._19{width:11.152080px;}
._14{width:12.744000px;}
._e{width:14.616000px;}
._f{width:15.768000px;}
._8{width:16.992000px;}
._10{width:19.512000px;}
._9{width:20.880000px;}
._a{width:21.888000px;}
._20{width:22.944240px;}
._21{width:24.024000px;}
._1e{width:26.064000px;}
._17{width:27.936000px;}
._18{width:28.938480px;}
._1b{width:30.018480px;}
._12{width:31.248000px;}
._13{width:32.255280px;}
._1f{width:33.877440px;}
._1d{width:35.341680px;}
._1c{width:36.434400px;}
._27{width:38.349600px;}
._28{width:56.160000px;}
._29{width:57.306480px;}
._24{width:60.696000px;}
._25{width:61.848000px;}
._15{width:72.000000px;}
._16{width:73.218480px;}
._26{width:77.953680px;}
._23{width:87.816000px;}
._2{width:532.260000px;}
._22{width:846.156000px;}
._3{width:1523.177520px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:40.982709px;}
.fs8{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y95{bottom:4.320000px;}
.y89{bottom:4.485000px;}
.yd8{bottom:4.491000px;}
.y81{bottom:4.500000px;}
.ya8{bottom:4.530000px;}
.y7f{bottom:14.760000px;}
.ya9{bottom:14.790000px;}
.y90{bottom:14.940000px;}
.y87{bottom:14.985000px;}
.ye2{bottom:25.020000px;}
.yd7{bottom:25.185000px;}
.y80{bottom:25.200000px;}
.ya7{bottom:25.230000px;}
.y86{bottom:25.245000px;}
.ybc{bottom:35.460000px;}
.y7{bottom:39.276000px;}
.ybb{bottom:45.900000px;}
.y6{bottom:58.536000px;}
.yd6{bottom:129.825000px;}
.y2f{bottom:131.076000px;}
.y2e{bottom:136.296000px;}
.yb8{bottom:139.536000px;}
.yfc{bottom:144.576000px;}
.y55{bottom:145.836000px;}
.y7d{bottom:147.996000px;}
.y2d{bottom:149.256000px;}
.y123{bottom:154.110000px;}
.yb7{bottom:160.230000px;}
.yfb{bottom:165.270000px;}
.y54{bottom:166.530000px;}
.y7c{bottom:168.690000px;}
.yd5{bottom:171.945000px;}
.y9f{bottom:173.190000px;}
.y122{bottom:174.810000px;}
.y2c{bottom:180.750000px;}
.yb6{bottom:180.930000px;}
.yfa{bottom:185.970000px;}
.y53{bottom:187.230000px;}
.y7b{bottom:189.390000px;}
.y13e{bottom:190.290000px;}
.yd4{bottom:193.545000px;}
.y9e{bottom:193.890000px;}
.y121{bottom:195.510000px;}
.y2b{bottom:201.450000px;}
.yb5{bottom:201.630000px;}
.yf9{bottom:206.670000px;}
.y52{bottom:207.930000px;}
.y7a{bottom:210.090000px;}
.y13d{bottom:210.990000px;}
.y9d{bottom:214.590000px;}
.yd3{bottom:214.965000px;}
.y120{bottom:216.210000px;}
.y2a{bottom:222.150000px;}
.yb4{bottom:222.330000px;}
.yf8{bottom:227.370000px;}
.y51{bottom:228.630000px;}
.y79{bottom:230.790000px;}
.y9c{bottom:235.290000px;}
.yd2{bottom:236.385000px;}
.y11f{bottom:236.910000px;}
.y29{bottom:242.850000px;}
.yb3{bottom:243.030000px;}
.y50{bottom:249.330000px;}
.y13c{bottom:249.690000px;}
.y78{bottom:251.490000px;}
.y11e{bottom:257.610000px;}
.yd1{bottom:257.805000px;}
.y28{bottom:263.550000px;}
.yb2{bottom:263.730000px;}
.yf7{bottom:266.070000px;}
.y13b{bottom:270.390000px;}
.y77{bottom:272.190000px;}
.y9b{bottom:274.035000px;}
.y11d{bottom:278.355000px;}
.yd0{bottom:279.255000px;}
.y27{bottom:284.295000px;}
.yb1{bottom:284.475000px;}
.y4f{bottom:288.075000px;}
.y76{bottom:292.935000px;}
.y9a{bottom:294.735000px;}
.y11c{bottom:299.055000px;}
.yf6{bottom:304.815000px;}
.y26{bottom:304.995000px;}
.y4e{bottom:308.775000px;}
.y13a{bottom:309.135000px;}
.y75{bottom:313.635000px;}
.yb0{bottom:319.395000px;}
.ycf{bottom:321.375000px;}
.yf5{bottom:325.515000px;}
.y25{bottom:325.695000px;}
.y4d{bottom:329.475000px;}
.y139{bottom:329.835000px;}
.y99{bottom:333.435000px;}
.y11b{bottom:337.755000px;}
.yce{bottom:342.975000px;}
.yf4{bottom:346.215000px;}
.y24{bottom:346.395000px;}
.y4c{bottom:350.175000px;}
.y74{bottom:352.335000px;}
.y98{bottom:354.135000px;}
.y11a{bottom:358.455000px;}
.yaf{bottom:361.515000px;}
.y23{bottom:367.095000px;}
.y138{bottom:368.535000px;}
.y4b{bottom:370.875000px;}
.y73{bottom:373.035000px;}
.y97{bottom:374.835000px;}
.y119{bottom:379.155000px;}
.yf3{bottom:384.915000px;}
.ycd{bottom:385.095000px;}
.y22{bottom:387.795000px;}
.y137{bottom:389.235000px;}
.y72{bottom:393.735000px;}
.y118{bottom:399.855000px;}
.yae{bottom:403.635000px;}
.yf2{bottom:405.615000px;}
.y21{bottom:408.495000px;}
.y4a{bottom:409.395000px;}
.y96{bottom:413.175000px;}
.y71{bottom:414.435000px;}
.y117{bottom:420.555000px;}
.ycc{bottom:427.215000px;}
.y136{bottom:427.935000px;}
.y20{bottom:429.195000px;}
.y70{bottom:435.135000px;}
.y116{bottom:441.255000px;}
.yf1{bottom:444.315000px;}
.yad{bottom:445.755000px;}
.ycb{bottom:448.635000px;}
.y1f{bottom:449.895000px;}
.y49{bottom:450.075000px;}
.y6f{bottom:455.835000px;}
.y115{bottom:461.955000px;}
.yf0{bottom:465.015000px;}
.yac{bottom:467.175000px;}
.y135{bottom:469.335000px;}
.yca{bottom:470.055000px;}
.y1e{bottom:470.595000px;}
.y48{bottom:470.775000px;}
.y94{bottom:471.675000px;}
.y6e{bottom:476.535000px;}
.y114{bottom:482.655000px;}
.yef{bottom:485.715000px;}
.y1d{bottom:491.295000px;}
.y93{bottom:493.095000px;}
.y6d{bottom:497.235000px;}
.yee{bottom:506.415000px;}
.y134{bottom:507.855000px;}
.yab{bottom:509.295000px;}
.y47{bottom:509.475000px;}
.y1c{bottom:511.995000px;}
.yc9{bottom:512.175000px;}
.y113{bottom:520.995000px;}
.y133{bottom:528.555000px;}
.y46{bottom:530.175000px;}
.yaa{bottom:530.895000px;}
.y1b{bottom:532.695000px;}
.yc8{bottom:533.595000px;}
.y92{bottom:535.215000px;}
.y6c{bottom:535.575000px;}
.yed{bottom:545.115000px;}
.ya6{bottom:552.315000px;}
.y1a{bottom:553.395000px;}
.yc7{bottom:555.195000px;}
.y91{bottom:556.665000px;}
.y112{bottom:561.705000px;}
.yec{bottom:565.845000px;}
.y132{bottom:567.285000px;}
.y45{bottom:568.905000px;}
.y19{bottom:574.125000px;}
.y6b{bottom:576.285000px;}
.yc6{bottom:576.645000px;}
.y111{bottom:582.405000px;}
.yeb{bottom:586.545000px;}
.y131{bottom:587.985000px;}
.ya5{bottom:594.465000px;}
.y18{bottom:594.825000px;}
.y6a{bottom:596.985000px;}
.y8f{bottom:598.785000px;}
.y110{bottom:603.105000px;}
.y44{bottom:607.245000px;}
.y17{bottom:615.525000px;}
.y69{bottom:617.685000px;}
.yc5{bottom:618.765000px;}
.y10f{bottom:623.805000px;}
.yea{bottom:625.245000px;}
.y130{bottom:626.685000px;}
.y16{bottom:636.225000px;}
.y68{bottom:638.385000px;}
.ya4{bottom:640.725000px;}
.y8e{bottom:640.905000px;}
.y10e{bottom:644.505000px;}
.ye9{bottom:645.945000px;}
.y12f{bottom:647.385000px;}
.y43{bottom:647.925000px;}
.y67{bottom:659.085000px;}
.yc4{bottom:660.885000px;}
.ya3{bottom:661.785000px;}
.y8d{bottom:662.325000px;}
.ye8{bottom:666.645000px;}
.y42{bottom:668.625000px;}
.y15{bottom:674.565000px;}
.y10d{bottom:679.425000px;}
.y66{bottom:679.785000px;}
.yc3{bottom:682.305000px;}
.ya2{bottom:682.485000px;}
.y8c{bottom:683.925000px;}
.y12e{bottom:686.085000px;}
.ye7{bottom:687.345000px;}
.y41{bottom:689.325000px;}
.y10c{bottom:701.025000px;}
.yc2{bottom:703.725000px;}
.y12d{bottom:706.785000px;}
.y40{bottom:710.025000px;}
.y14{bottom:715.065000px;}
.y65{bottom:718.485000px;}
.ya1{bottom:721.185000px;}
.y10b{bottom:722.445000px;}
.yc1{bottom:725.325000px;}
.y8b{bottom:726.045000px;}
.y12c{bottom:727.485000px;}
.y3f{bottom:730.725000px;}
.y64{bottom:739.185000px;}
.ya0{bottom:741.885000px;}
.y10a{bottom:743.865000px;}
.yc0{bottom:746.745000px;}
.y3e{bottom:751.425000px;}
.y13{bottom:756.285000px;}
.y63{bottom:759.885000px;}
.ye6{bottom:760.980000px;}
.y109{bottom:765.300000px;}
.y12b{bottom:766.185000px;}
.y8a{bottom:768.165000px;}
.y3d{bottom:772.125000px;}
.y12{bottom:780.405000px;}
.y62{bottom:780.585000px;}
.ye5{bottom:782.385000px;}
.y108{bottom:786.705000px;}
.y12a{bottom:786.885000px;}
.ybf{bottom:788.865000px;}
.y3c{bottom:792.825000px;}
.y61{bottom:801.285000px;}
.ye4{bottom:803.805000px;}
.y11{bottom:804.165000px;}
.y107{bottom:808.125000px;}
.ybe{bottom:810.285000px;}
.y88{bottom:810.300000px;}
.y3b{bottom:813.525000px;}
.y60{bottom:821.985000px;}
.ye3{bottom:825.225000px;}
.y129{bottom:825.585000px;}
.y10{bottom:828.645000px;}
.y106{bottom:829.545000px;}
.y85{bottom:831.705000px;}
.y3a{bottom:834.225000px;}
.y5f{bottom:842.730000px;}
.y128{bottom:846.330000px;}
.ye1{bottom:846.870000px;}
.y105{bottom:851.190000px;}
.ybd{bottom:852.450000px;}
.yf{bottom:852.810000px;}
.y39{bottom:854.970000px;}
.y104{bottom:872.610000px;}
.y84{bottom:873.870000px;}
.y38{bottom:875.670000px;}
.yd{bottom:877.110000px;}
.y5e{bottom:881.430000px;}
.ye{bottom:884.670000px;}
.y127{bottom:885.030000px;}
.ye0{bottom:888.990000px;}
.y103{bottom:894.030000px;}
.y83{bottom:895.290000px;}
.y37{bottom:896.370000px;}
.y5d{bottom:902.130000px;}
.yc{bottom:902.670000px;}
.y126{bottom:905.730000px;}
.y102{bottom:915.450000px;}
.y82{bottom:916.890000px;}
.y5c{bottom:922.830000px;}
.y125{bottom:926.430000px;}
.ydf{bottom:931.110000px;}
.y36{bottom:934.890000px;}
.y101{bottom:936.870000px;}
.y5b{bottom:943.530000px;}
.yb{bottom:955.230000px;}
.y7e{bottom:959.010000px;}
.y100{bottom:962.790000px;}
.y5a{bottom:964.230000px;}
.y124{bottom:964.950000px;}
.yde{bottom:973.230000px;}
.y35{bottom:974.850000px;}
.yff{bottom:983.490000px;}
.y59{bottom:984.930000px;}
.ya{bottom:989.790000px;}
.y34{bottom:991.950000px;}
.ydd{bottom:994.650000px;}
.yfe{bottom:1004.190000px;}
.y58{bottom:1005.630000px;}
.y33{bottom:1009.230000px;}
.ydc{bottom:1016.070000px;}
.y9{bottom:1024.170000px;}
.yfd{bottom:1024.890000px;}
.yba{bottom:1025.970000px;}
.y57{bottom:1026.330000px;}
.ydb{bottom:1037.490000px;}
.y32{bottom:1045.590000px;}
.y56{bottom:1047.030000px;}
.yda{bottom:1059.090000px;}
.yb9{bottom:1067.730000px;}
.y8{bottom:1076.730000px;}
.yd9{bottom:1080.510000px;}
.y31{bottom:1085.730000px;}
.y30{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h17{height:20.505000px;}
.h12{height:20.685000px;}
.h15{height:20.700000px;}
.h1c{height:20.721000px;}
.h1f{height:20.722500px;}
.h16{height:20.730000px;}
.hf{height:28.455767px;}
.ha{height:37.494141px;}
.h1e{height:41.205000px;}
.h11{height:41.385000px;}
.h1d{height:41.391000px;}
.h14{height:41.400000px;}
.h13{height:41.422500px;}
.h1a{height:41.430000px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.he{height:50.027344px;}
.h5{height:53.640000px;}
.h10{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h1b{height:62.085000px;}
.h18{height:70.628906px;}
.hd{height:70.664062px;}
.h19{height:72.562500px;}
.h21{height:74.704922px;}
.h20{height:74.884922px;}
.hc{height:78.367500px;}
.h8{height:82.676953px;}
.hb{height:84.898125px;}
.h7{height:121.179375px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:47.325000px;}
.wc{width:65.325000px;}
.w8{width:65.505000px;}
.w12{width:73.605000px;}
.we{width:73.656000px;}
.w14{width:73.785000px;}
.w13{width:84.261000px;}
.wf{width:105.645000px;}
.w10{width:105.681000px;}
.w2{width:125.460000px;}
.w5{width:133.221000px;}
.wa{width:134.121000px;}
.wd{width:350.115000px;}
.wb{width:378.966000px;}
.w7{width:379.866000px;}
.w11{width:403.266000px;}
.w9{width:445.026000px;}
.w4{width:446.106000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.740000px;}
.x1d{left:12.225000px;}
.x22{left:14.025000px;}
.x2b{left:16.230000px;}
.x29{left:19.785000px;}
.x23{left:20.865000px;}
.x2a{left:22.350000px;}
.x18{left:25.725000px;}
.x25{left:36.750000px;}
.x19{left:40.125000px;}
.x2{left:50.399998px;}
.x28{left:67.485000px;}
.x2e{left:73.065000px;}
.x2d{left:74.505000px;}
.x2c{left:88.545000px;}
.x30{left:98.085000px;}
.x1{left:127.656000px;}
.x11{left:132.516000px;}
.x15{left:136.485000px;}
.x20{left:144.576000px;}
.x12{left:148.896000px;}
.xa{left:153.030000px;}
.x5{left:156.990000px;}
.xf{left:159.510000px;}
.x1e{left:161.130000px;}
.xe{left:180.750000px;}
.x16{left:183.450000px;}
.x4{left:210.270000px;}
.x6{left:225.930000px;}
.xd{left:303.015000px;}
.x1f{left:326.955000px;}
.x21{left:338.835000px;}
.x10{left:343.695000px;}
.x7{left:384.195000px;}
.xb{left:388.335000px;}
.xc{left:393.375000px;}
.x13{left:402.555000px;}
.x2f{left:435.135000px;}
.x14{left:446.655000px;}
.x3{left:457.275000px;}
.x24{left:487.335000px;}
.x1c{left:517.080000px;}
.x8{left:523.522500px;}
.x9{left:530.385000px;}
.x31{left:540.660000px;}
.x26{left:561.720000px;}
.x17{left:583.320000px;}
.x32{left:615.000000px;}
.x27{left:668.100000px;}
.x33{left:699.990000px;}
.x1a{left:717.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.480000pt;}
.ls6{letter-spacing:-0.015360pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.ls8{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.272320pt;}
.ws3{word-spacing:-17.264640pt;}
.ws5{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-10.959467pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-3.840000pt;}
._d{margin-left:-2.688000pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._6{width:3.684267pt;}
._5{width:4.914773pt;}
._7{width:5.888000pt;}
._1a{width:6.792320pt;}
._b{width:7.808000pt;}
._c{width:9.024000pt;}
._19{width:9.912960pt;}
._14{width:11.328000pt;}
._e{width:12.992000pt;}
._f{width:14.016000pt;}
._8{width:15.104000pt;}
._10{width:17.344000pt;}
._9{width:18.560000pt;}
._a{width:19.456000pt;}
._20{width:20.394880pt;}
._21{width:21.354667pt;}
._1e{width:23.168000pt;}
._17{width:24.832000pt;}
._18{width:25.723093pt;}
._1b{width:26.683093pt;}
._12{width:27.776000pt;}
._13{width:28.671360pt;}
._1f{width:30.113280pt;}
._1d{width:31.414827pt;}
._1c{width:32.386133pt;}
._27{width:34.088533pt;}
._28{width:49.920000pt;}
._29{width:50.939093pt;}
._24{width:53.952000pt;}
._25{width:54.976000pt;}
._15{width:64.000000pt;}
._16{width:65.083093pt;}
._26{width:69.292160pt;}
._23{width:78.058667pt;}
._2{width:473.120000pt;}
._22{width:752.138667pt;}
._3{width:1353.935573pt;}
.fs7{font-size:36.429074pt;}
.fs8{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:3.840000pt;}
.y89{bottom:3.986667pt;}
.yd8{bottom:3.992000pt;}
.y81{bottom:4.000000pt;}
.ya8{bottom:4.026667pt;}
.y7f{bottom:13.120000pt;}
.ya9{bottom:13.146667pt;}
.y90{bottom:13.280000pt;}
.y87{bottom:13.320000pt;}
.ye2{bottom:22.240000pt;}
.yd7{bottom:22.386667pt;}
.y80{bottom:22.400000pt;}
.ya7{bottom:22.426667pt;}
.y86{bottom:22.440000pt;}
.ybc{bottom:31.520000pt;}
.y7{bottom:34.912000pt;}
.ybb{bottom:40.800000pt;}
.y6{bottom:52.032000pt;}
.yd6{bottom:115.400000pt;}
.y2f{bottom:116.512000pt;}
.y2e{bottom:121.152000pt;}
.yb8{bottom:124.032000pt;}
.yfc{bottom:128.512000pt;}
.y55{bottom:129.632000pt;}
.y7d{bottom:131.552000pt;}
.y2d{bottom:132.672000pt;}
.y123{bottom:136.986667pt;}
.yb7{bottom:142.426667pt;}
.yfb{bottom:146.906667pt;}
.y54{bottom:148.026667pt;}
.y7c{bottom:149.946667pt;}
.yd5{bottom:152.840000pt;}
.y9f{bottom:153.946667pt;}
.y122{bottom:155.386667pt;}
.y2c{bottom:160.666667pt;}
.yb6{bottom:160.826667pt;}
.yfa{bottom:165.306667pt;}
.y53{bottom:166.426667pt;}
.y7b{bottom:168.346667pt;}
.y13e{bottom:169.146667pt;}
.yd4{bottom:172.040000pt;}
.y9e{bottom:172.346667pt;}
.y121{bottom:173.786667pt;}
.y2b{bottom:179.066667pt;}
.yb5{bottom:179.226667pt;}
.yf9{bottom:183.706667pt;}
.y52{bottom:184.826667pt;}
.y7a{bottom:186.746667pt;}
.y13d{bottom:187.546667pt;}
.y9d{bottom:190.746667pt;}
.yd3{bottom:191.080000pt;}
.y120{bottom:192.186667pt;}
.y2a{bottom:197.466667pt;}
.yb4{bottom:197.626667pt;}
.yf8{bottom:202.106667pt;}
.y51{bottom:203.226667pt;}
.y79{bottom:205.146667pt;}
.y9c{bottom:209.146667pt;}
.yd2{bottom:210.120000pt;}
.y11f{bottom:210.586667pt;}
.y29{bottom:215.866667pt;}
.yb3{bottom:216.026667pt;}
.y50{bottom:221.626667pt;}
.y13c{bottom:221.946667pt;}
.y78{bottom:223.546667pt;}
.y11e{bottom:228.986667pt;}
.yd1{bottom:229.160000pt;}
.y28{bottom:234.266667pt;}
.yb2{bottom:234.426667pt;}
.yf7{bottom:236.506667pt;}
.y13b{bottom:240.346667pt;}
.y77{bottom:241.946667pt;}
.y9b{bottom:243.586667pt;}
.y11d{bottom:247.426667pt;}
.yd0{bottom:248.226667pt;}
.y27{bottom:252.706667pt;}
.yb1{bottom:252.866667pt;}
.y4f{bottom:256.066667pt;}
.y76{bottom:260.386667pt;}
.y9a{bottom:261.986667pt;}
.y11c{bottom:265.826667pt;}
.yf6{bottom:270.946667pt;}
.y26{bottom:271.106667pt;}
.y4e{bottom:274.466667pt;}
.y13a{bottom:274.786667pt;}
.y75{bottom:278.786667pt;}
.yb0{bottom:283.906667pt;}
.ycf{bottom:285.666667pt;}
.yf5{bottom:289.346667pt;}
.y25{bottom:289.506667pt;}
.y4d{bottom:292.866667pt;}
.y139{bottom:293.186667pt;}
.y99{bottom:296.386667pt;}
.y11b{bottom:300.226667pt;}
.yce{bottom:304.866667pt;}
.yf4{bottom:307.746667pt;}
.y24{bottom:307.906667pt;}
.y4c{bottom:311.266667pt;}
.y74{bottom:313.186667pt;}
.y98{bottom:314.786667pt;}
.y11a{bottom:318.626667pt;}
.yaf{bottom:321.346667pt;}
.y23{bottom:326.306667pt;}
.y138{bottom:327.586667pt;}
.y4b{bottom:329.666667pt;}
.y73{bottom:331.586667pt;}
.y97{bottom:333.186667pt;}
.y119{bottom:337.026667pt;}
.yf3{bottom:342.146667pt;}
.ycd{bottom:342.306667pt;}
.y22{bottom:344.706667pt;}
.y137{bottom:345.986667pt;}
.y72{bottom:349.986667pt;}
.y118{bottom:355.426667pt;}
.yae{bottom:358.786667pt;}
.yf2{bottom:360.546667pt;}
.y21{bottom:363.106667pt;}
.y4a{bottom:363.906667pt;}
.y96{bottom:367.266667pt;}
.y71{bottom:368.386667pt;}
.y117{bottom:373.826667pt;}
.ycc{bottom:379.746667pt;}
.y136{bottom:380.386667pt;}
.y20{bottom:381.506667pt;}
.y70{bottom:386.786667pt;}
.y116{bottom:392.226667pt;}
.yf1{bottom:394.946667pt;}
.yad{bottom:396.226667pt;}
.ycb{bottom:398.786667pt;}
.y1f{bottom:399.906667pt;}
.y49{bottom:400.066667pt;}
.y6f{bottom:405.186667pt;}
.y115{bottom:410.626667pt;}
.yf0{bottom:413.346667pt;}
.yac{bottom:415.266667pt;}
.y135{bottom:417.186667pt;}
.yca{bottom:417.826667pt;}
.y1e{bottom:418.306667pt;}
.y48{bottom:418.466667pt;}
.y94{bottom:419.266667pt;}
.y6e{bottom:423.586667pt;}
.y114{bottom:429.026667pt;}
.yef{bottom:431.746667pt;}
.y1d{bottom:436.706667pt;}
.y93{bottom:438.306667pt;}
.y6d{bottom:441.986667pt;}
.yee{bottom:450.146667pt;}
.y134{bottom:451.426667pt;}
.yab{bottom:452.706667pt;}
.y47{bottom:452.866667pt;}
.y1c{bottom:455.106667pt;}
.yc9{bottom:455.266667pt;}
.y113{bottom:463.106667pt;}
.y133{bottom:469.826667pt;}
.y46{bottom:471.266667pt;}
.yaa{bottom:471.906667pt;}
.y1b{bottom:473.506667pt;}
.yc8{bottom:474.306667pt;}
.y92{bottom:475.746667pt;}
.y6c{bottom:476.066667pt;}
.yed{bottom:484.546667pt;}
.ya6{bottom:490.946667pt;}
.y1a{bottom:491.906667pt;}
.yc7{bottom:493.506667pt;}
.y91{bottom:494.813333pt;}
.y112{bottom:499.293333pt;}
.yec{bottom:502.973333pt;}
.y132{bottom:504.253333pt;}
.y45{bottom:505.693333pt;}
.y19{bottom:510.333333pt;}
.y6b{bottom:512.253333pt;}
.yc6{bottom:512.573333pt;}
.y111{bottom:517.693333pt;}
.yeb{bottom:521.373333pt;}
.y131{bottom:522.653333pt;}
.ya5{bottom:528.413333pt;}
.y18{bottom:528.733333pt;}
.y6a{bottom:530.653333pt;}
.y8f{bottom:532.253333pt;}
.y110{bottom:536.093333pt;}
.y44{bottom:539.773333pt;}
.y17{bottom:547.133333pt;}
.y69{bottom:549.053333pt;}
.yc5{bottom:550.013333pt;}
.y10f{bottom:554.493333pt;}
.yea{bottom:555.773333pt;}
.y130{bottom:557.053333pt;}
.y16{bottom:565.533333pt;}
.y68{bottom:567.453333pt;}
.ya4{bottom:569.533333pt;}
.y8e{bottom:569.693333pt;}
.y10e{bottom:572.893333pt;}
.ye9{bottom:574.173333pt;}
.y12f{bottom:575.453333pt;}
.y43{bottom:575.933333pt;}
.y67{bottom:585.853333pt;}
.yc4{bottom:587.453333pt;}
.ya3{bottom:588.253333pt;}
.y8d{bottom:588.733333pt;}
.ye8{bottom:592.573333pt;}
.y42{bottom:594.333333pt;}
.y15{bottom:599.613333pt;}
.y10d{bottom:603.933333pt;}
.y66{bottom:604.253333pt;}
.yc3{bottom:606.493333pt;}
.ya2{bottom:606.653333pt;}
.y8c{bottom:607.933333pt;}
.y12e{bottom:609.853333pt;}
.ye7{bottom:610.973333pt;}
.y41{bottom:612.733333pt;}
.y10c{bottom:623.133333pt;}
.yc2{bottom:625.533333pt;}
.y12d{bottom:628.253333pt;}
.y40{bottom:631.133333pt;}
.y14{bottom:635.613333pt;}
.y65{bottom:638.653333pt;}
.ya1{bottom:641.053333pt;}
.y10b{bottom:642.173333pt;}
.yc1{bottom:644.733333pt;}
.y8b{bottom:645.373333pt;}
.y12c{bottom:646.653333pt;}
.y3f{bottom:649.533333pt;}
.y64{bottom:657.053333pt;}
.ya0{bottom:659.453333pt;}
.y10a{bottom:661.213333pt;}
.yc0{bottom:663.773333pt;}
.y3e{bottom:667.933333pt;}
.y13{bottom:672.253333pt;}
.y63{bottom:675.453333pt;}
.ye6{bottom:676.426667pt;}
.y109{bottom:680.266667pt;}
.y12b{bottom:681.053333pt;}
.y8a{bottom:682.813333pt;}
.y3d{bottom:686.333333pt;}
.y12{bottom:693.693333pt;}
.y62{bottom:693.853333pt;}
.ye5{bottom:695.453333pt;}
.y108{bottom:699.293333pt;}
.y12a{bottom:699.453333pt;}
.ybf{bottom:701.213333pt;}
.y3c{bottom:704.733333pt;}
.y61{bottom:712.253333pt;}
.ye4{bottom:714.493333pt;}
.y11{bottom:714.813333pt;}
.y107{bottom:718.333333pt;}
.ybe{bottom:720.253333pt;}
.y88{bottom:720.266667pt;}
.y3b{bottom:723.133333pt;}
.y60{bottom:730.653333pt;}
.ye3{bottom:733.533333pt;}
.y129{bottom:733.853333pt;}
.y10{bottom:736.573333pt;}
.y106{bottom:737.373333pt;}
.y85{bottom:739.293333pt;}
.y3a{bottom:741.533333pt;}
.y5f{bottom:749.093333pt;}
.y128{bottom:752.293333pt;}
.ye1{bottom:752.773333pt;}
.y105{bottom:756.613333pt;}
.ybd{bottom:757.733333pt;}
.yf{bottom:758.053333pt;}
.y39{bottom:759.973333pt;}
.y104{bottom:775.653333pt;}
.y84{bottom:776.773333pt;}
.y38{bottom:778.373333pt;}
.yd{bottom:779.653333pt;}
.y5e{bottom:783.493333pt;}
.ye{bottom:786.373333pt;}
.y127{bottom:786.693333pt;}
.ye0{bottom:790.213333pt;}
.y103{bottom:794.693333pt;}
.y83{bottom:795.813333pt;}
.y37{bottom:796.773333pt;}
.y5d{bottom:801.893333pt;}
.yc{bottom:802.373333pt;}
.y126{bottom:805.093333pt;}
.y102{bottom:813.733333pt;}
.y82{bottom:815.013333pt;}
.y5c{bottom:820.293333pt;}
.y125{bottom:823.493333pt;}
.ydf{bottom:827.653333pt;}
.y36{bottom:831.013333pt;}
.y101{bottom:832.773333pt;}
.y5b{bottom:838.693333pt;}
.yb{bottom:849.093333pt;}
.y7e{bottom:852.453333pt;}
.y100{bottom:855.813333pt;}
.y5a{bottom:857.093333pt;}
.y124{bottom:857.733333pt;}
.yde{bottom:865.093333pt;}
.y35{bottom:866.533333pt;}
.yff{bottom:874.213333pt;}
.y59{bottom:875.493333pt;}
.ya{bottom:879.813333pt;}
.y34{bottom:881.733333pt;}
.ydd{bottom:884.133333pt;}
.yfe{bottom:892.613333pt;}
.y58{bottom:893.893333pt;}
.y33{bottom:897.093333pt;}
.ydc{bottom:903.173333pt;}
.y9{bottom:910.373333pt;}
.yfd{bottom:911.013333pt;}
.yba{bottom:911.973333pt;}
.y57{bottom:912.293333pt;}
.ydb{bottom:922.213333pt;}
.y32{bottom:929.413333pt;}
.y56{bottom:930.693333pt;}
.yda{bottom:941.413333pt;}
.yb9{bottom:949.093333pt;}
.y8{bottom:957.093333pt;}
.yd9{bottom:960.453333pt;}
.y31{bottom:965.093333pt;}
.y30{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h17{height:18.226667pt;}
.h12{height:18.386667pt;}
.h15{height:18.400000pt;}
.h1c{height:18.418667pt;}
.h1f{height:18.420000pt;}
.h16{height:18.426667pt;}
.hf{height:25.294016pt;}
.ha{height:33.328125pt;}
.h1e{height:36.626667pt;}
.h11{height:36.786667pt;}
.h1d{height:36.792000pt;}
.h14{height:36.800000pt;}
.h13{height:36.820000pt;}
.h1a{height:36.826667pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.he{height:44.468750pt;}
.h5{height:47.680000pt;}
.h10{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h1b{height:55.186667pt;}
.h18{height:62.781250pt;}
.hd{height:62.812500pt;}
.h19{height:64.500000pt;}
.h21{height:66.404375pt;}
.h20{height:66.564375pt;}
.hc{height:69.660000pt;}
.h8{height:73.490625pt;}
.hb{height:75.465000pt;}
.h7{height:107.715000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:42.066667pt;}
.wc{width:58.066667pt;}
.w8{width:58.226667pt;}
.w12{width:65.426667pt;}
.we{width:65.472000pt;}
.w14{width:65.586667pt;}
.w13{width:74.898667pt;}
.wf{width:93.906667pt;}
.w10{width:93.938667pt;}
.w2{width:111.520000pt;}
.w5{width:118.418667pt;}
.wa{width:119.218667pt;}
.wd{width:311.213333pt;}
.wb{width:336.858667pt;}
.w7{width:337.658667pt;}
.w11{width:358.458667pt;}
.w9{width:395.578667pt;}
.w4{width:396.538667pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.880000pt;}
.x1d{left:10.866667pt;}
.x22{left:12.466667pt;}
.x2b{left:14.426667pt;}
.x29{left:17.586667pt;}
.x23{left:18.546667pt;}
.x2a{left:19.866667pt;}
.x18{left:22.866667pt;}
.x25{left:32.666667pt;}
.x19{left:35.666667pt;}
.x2{left:44.799998pt;}
.x28{left:59.986667pt;}
.x2e{left:64.946667pt;}
.x2d{left:66.226667pt;}
.x2c{left:78.706667pt;}
.x30{left:87.186667pt;}
.x1{left:113.472000pt;}
.x11{left:117.792000pt;}
.x15{left:121.320000pt;}
.x20{left:128.512000pt;}
.x12{left:132.352000pt;}
.xa{left:136.026667pt;}
.x5{left:139.546667pt;}
.xf{left:141.786667pt;}
.x1e{left:143.226667pt;}
.xe{left:160.666667pt;}
.x16{left:163.066667pt;}
.x4{left:186.906667pt;}
.x6{left:200.826667pt;}
.xd{left:269.346667pt;}
.x1f{left:290.626667pt;}
.x21{left:301.186667pt;}
.x10{left:305.506667pt;}
.x7{left:341.506667pt;}
.xb{left:345.186667pt;}
.xc{left:349.666667pt;}
.x13{left:357.826667pt;}
.x2f{left:386.786667pt;}
.x14{left:397.026667pt;}
.x3{left:406.466667pt;}
.x24{left:433.186667pt;}
.x1c{left:459.626667pt;}
.x8{left:465.353333pt;}
.x9{left:471.453333pt;}
.x31{left:480.586667pt;}
.x26{left:499.306667pt;}
.x17{left:518.506667pt;}
.x32{left:546.666667pt;}
.x27{left:593.866667pt;}
.x33{left:622.213333pt;}
.x1a{left:637.733333pt;}
}




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