
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5916eb425800835f1eafbc1c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_556897a47f908042cc88f5bf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_5d50c7e21107b7f6d4e70c66.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_a54b770bbd675a897f783526.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_df77a70622a49a933ac613d8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_0996a9cbde30e48455f97a3f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_cebfebc55e7c9b6863023599.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.427200px;}
.ls10{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.160800px;}
.ls17{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls16{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.066000px;}
.ls11{letter-spacing:-0.063600px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lse{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.ls14{letter-spacing:0.068400px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.115800px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wse{word-spacing:-13.342200px;}
.wsf{word-spacing:-13.294800px;}
.ws6{word-spacing:-13.275600px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.162800px;}
.ws10{word-spacing:-13.134000px;}
.ws11{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.065600px;}
.ws9{word-spacing:-13.039800px;}
.ws3{word-spacing:-12.799200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._f{margin-left:-3.971398px;}
._e{margin-left:-2.886000px;}
._0{margin-left:-1.110000px;}
._1{width:1.177644px;}
._c{width:2.549556px;}
._d{width:3.643045px;}
._11{width:4.727999px;}
._3{width:6.252600px;}
._a{width:7.481915px;}
._9{width:8.657400px;}
._10{width:9.979800px;}
._4{width:11.904000px;}
._2{width:14.729400px;}
._b{width:16.593000px;}
._7{width:18.517200px;}
._8{width:19.779956px;}
._13{width:20.861640px;}
._12{width:22.027724px;}
._14{width:23.470164px;}
._17{width:25.278240px;}
._19{width:26.785680px;}
._1a{width:28.470720px;}
._15{width:29.518920px;}
._16{width:30.532800px;}
._18{width:31.704000px;}
._5{width:43.045800px;}
._6{width:44.627281px;}
._1d{width:87.895440px;}
._1c{width:108.396360px;}
._1f{width:119.819160px;}
._1e{width:129.799080px;}
._1b{width:135.690840px;}
._20{width:142.604640px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:7.830000px;}
.y49{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yaa{bottom:113.880000px;}
.yf1{bottom:114.600000px;}
.y5a{bottom:117.660000px;}
.y8a{bottom:125.940000px;}
.y120{bottom:126.120000px;}
.y162{bottom:126.570000px;}
.y13f{bottom:128.820000px;}
.ya9{bottom:131.430000px;}
.yf0{bottom:132.240000px;}
.yd1{bottom:134.580000px;}
.y59{bottom:135.210000px;}
.y28{bottom:138.630000px;}
.y89{bottom:143.580000px;}
.y11f{bottom:143.670000px;}
.y161{bottom:144.120000px;}
.ya8{bottom:149.070000px;}
.yef{bottom:149.790000px;}
.yd0{bottom:152.130000px;}
.y58{bottom:152.850000px;}
.y13e{bottom:156.180000px;}
.y27{bottom:156.270000px;}
.y88{bottom:161.130000px;}
.y11e{bottom:161.310000px;}
.y160{bottom:161.670000px;}
.ya7{bottom:166.620000px;}
.yee{bottom:167.430000px;}
.ycf{bottom:169.680000px;}
.y26{bottom:173.820000px;}
.y11d{bottom:178.860000px;}
.y15f{bottom:179.310000px;}
.y13d{bottom:183.540000px;}
.ya6{bottom:184.260000px;}
.yed{bottom:184.980000px;}
.yce{bottom:187.320000px;}
.y57{bottom:188.400000px;}
.y25{bottom:191.370000px;}
.y87{bottom:196.680000px;}
.y15e{bottom:196.860000px;}
.ya5{bottom:201.810000px;}
.yec{bottom:202.530000px;}
.ycd{bottom:204.870000px;}
.y56{bottom:205.950000px;}
.y24{bottom:209.010000px;}
.y13c{bottom:210.900000px;}
.y86{bottom:214.320000px;}
.y11c{bottom:214.500000px;}
.ycc{bottom:222.510000px;}
.y55{bottom:223.590000px;}
.y23{bottom:226.560000px;}
.ya4{bottom:228.360000px;}
.y85{bottom:231.870000px;}
.y11b{bottom:232.050000px;}
.yeb{bottom:235.560000px;}
.y13b{bottom:238.170000px;}
.ycb{bottom:240.060000px;}
.y54{bottom:241.140000px;}
.y15d{bottom:241.410000px;}
.y84{bottom:249.510000px;}
.y11a{bottom:249.600000px;}
.y22{bottom:253.200000px;}
.y53{bottom:258.690000px;}
.yea{bottom:262.830000px;}
.ya3{bottom:264.000000px;}
.y13a{bottom:265.530000px;}
.y83{bottom:267.060000px;}
.y119{bottom:267.240000px;}
.yca{bottom:275.610000px;}
.y52{bottom:276.330000px;}
.ya2{bottom:281.550000px;}
.y82{bottom:284.610000px;}
.y118{bottom:284.790000px;}
.y21{bottom:288.750000px;}
.y15c{bottom:289.650000px;}
.ye9{bottom:290.190000px;}
.y139{bottom:292.890000px;}
.yc9{bottom:293.250000px;}
.y51{bottom:293.880000px;}
.ya1{bottom:299.190000px;}
.y81{bottom:302.250000px;}
.y20{bottom:306.300000px;}
.y15b{bottom:307.200000px;}
.yc8{bottom:310.800000px;}
.y117{bottom:311.700000px;}
.y183{bottom:316.200000px;}
.ya0{bottom:316.740000px;}
.ye8{bottom:317.550000px;}
.y80{bottom:319.800000px;}
.y50{bottom:320.790000px;}
.y1f{bottom:323.940000px;}
.y15a{bottom:324.840000px;}
.yc7{bottom:328.440000px;}
.y182{bottom:333.840000px;}
.y9f{bottom:334.290000px;}
.y7f{bottom:337.440000px;}
.y1e{bottom:341.490000px;}
.y138{bottom:341.580000px;}
.y159{bottom:342.390000px;}
.ye7{bottom:344.910000px;}
.yc6{bottom:345.990000px;}
.y181{bottom:351.390000px;}
.y9e{bottom:351.930000px;}
.y1d{bottom:359.130000px;}
.y116{bottom:359.940000px;}
.yc5{bottom:363.540000px;}
.y7e{bottom:363.990000px;}
.y4f{bottom:366.510000px;}
.y180{bottom:368.940000px;}
.y9d{bottom:369.480000px;}
.ye6{bottom:372.180000px;}
.y1c{bottom:376.680000px;}
.y137{bottom:377.130000px;}
.y115{bottom:377.580000px;}
.y9c{bottom:387.120000px;}
.yc4{bottom:390.180000px;}
.y4e{bottom:393.780000px;}
.y1b{bottom:394.230000px;}
.y136{bottom:394.770000px;}
.y114{bottom:395.130000px;}
.y17f{bottom:395.580000px;}
.y7d{bottom:399.540000px;}
.y1a{bottom:411.870000px;}
.y135{bottom:412.320000px;}
.y113{bottom:412.770000px;}
.y17e{bottom:413.130000px;}
.y9b{bottom:413.670000px;}
.y7c{bottom:417.180000px;}
.ye5{bottom:420.870000px;}
.y4d{bottom:421.140000px;}
.yc3{bottom:425.730000px;}
.y19{bottom:429.420000px;}
.y134{bottom:429.870000px;}
.y112{bottom:430.320000px;}
.y158{bottom:430.770000px;}
.y7b{bottom:434.730000px;}
.yc2{bottom:443.370000px;}
.y133{bottom:447.510000px;}
.y111{bottom:447.870000px;}
.y157{bottom:448.320000px;}
.y4b{bottom:448.500000px;}
.y9a{bottom:449.580000px;}
.y7a{bottom:452.370000px;}
.y18{bottom:456.330000px;}
.ye4{bottom:456.510000px;}
.y17d{bottom:457.320000px;}
.yc1{bottom:460.920000px;}
.y132{bottom:465.060000px;}
.y110{bottom:465.510000px;}
.y156{bottom:465.870000px;}
.y79{bottom:469.950000px;}
.ye3{bottom:474.090000px;}
.y17c{bottom:474.900000px;}
.y4a{bottom:475.800000px;}
.yc0{bottom:478.500000px;}
.y131{bottom:482.730000px;}
.y155{bottom:483.540000px;}
.y78{bottom:487.500000px;}
.ye2{bottom:491.730000px;}
.ybf{bottom:496.140000px;}
.y99{bottom:497.850000px;}
.y130{bottom:500.280000px;}
.y10f{bottom:501.090000px;}
.y17b{bottom:501.540000px;}
.y48{bottom:503.160000px;}
.y17{bottom:504.960000px;}
.y77{bottom:505.140000px;}
.ye1{bottom:509.280000px;}
.ybe{bottom:513.690000px;}
.y98{bottom:515.490000px;}
.y10e{bottom:518.730000px;}
.y17a{bottom:519.090000px;}
.ye0{bottom:526.830000px;}
.ybd{bottom:531.330000px;}
.y97{bottom:533.040000px;}
.y12f{bottom:535.830000px;}
.y10d{bottom:536.280000px;}
.y179{bottom:536.730000px;}
.y76{bottom:540.690000px;}
.y16{bottom:541.950000px;}
.ydf{bottom:544.470000px;}
.ybc{bottom:548.880000px;}
.y96{bottom:550.590000px;}
.y47{bottom:551.850000px;}
.y12e{bottom:553.470000px;}
.y10c{bottom:553.830000px;}
.y154{bottom:554.280000px;}
.y75{bottom:558.330000px;}
.y15{bottom:559.590000px;}
.y178{bottom:563.280000px;}
.ybb{bottom:566.430000px;}
.y95{bottom:568.230000px;}
.y12d{bottom:571.020000px;}
.y10b{bottom:571.470000px;}
.y153{bottom:571.830000px;}
.y74{bottom:575.880000px;}
.y14{bottom:577.140000px;}
.yde{bottom:580.020000px;}
.y177{bottom:580.830000px;}
.y94{bottom:585.780000px;}
.y46{bottom:587.490000px;}
.y12c{bottom:588.660000px;}
.y10a{bottom:589.020000px;}
.y152{bottom:589.470000px;}
.y73{bottom:593.430000px;}
.y13{bottom:594.780000px;}
.ydd{bottom:597.660000px;}
.y176{bottom:598.470000px;}
.yba{bottom:602.070000px;}
.y93{bottom:603.420000px;}
.y45{bottom:605.040000px;}
.y12b{bottom:606.210000px;}
.y109{bottom:606.660000px;}
.y151{bottom:607.020000px;}
.y72{bottom:611.070000px;}
.y12{bottom:612.330000px;}
.ydc{bottom:615.210000px;}
.y175{bottom:616.020000px;}
.yb9{bottom:619.620000px;}
.y44{bottom:622.590000px;}
.y108{bottom:624.210000px;}
.y150{bottom:624.660000px;}
.y71{bottom:628.620000px;}
.y11{bottom:629.880000px;}
.ydb{bottom:632.760000px;}
.y92{bottom:636.360000px;}
.yb8{bottom:637.260000px;}
.y43{bottom:640.230000px;}
.y107{bottom:641.760000px;}
.y14f{bottom:642.210000px;}
.y174{bottom:642.660000px;}
.y70{bottom:646.260000px;}
.y10{bottom:647.520000px;}
.yda{bottom:650.400000px;}
.yb7{bottom:654.810000px;}
.y42{bottom:657.780000px;}
.y14e{bottom:659.760000px;}
.y173{bottom:660.210000px;}
.y91{bottom:663.720000px;}
.y6f{bottom:663.810000px;}
.yf{bottom:665.070000px;}
.yd9{bottom:667.950000px;}
.y12a{bottom:668.670000px;}
.yb6{bottom:672.360000px;}
.y41{bottom:675.420000px;}
.y106{bottom:677.400000px;}
.y172{bottom:677.760000px;}
.y6e{bottom:681.360000px;}
.ye{bottom:682.710000px;}
.yb5{bottom:690.000000px;}
.y90{bottom:690.990000px;}
.y40{bottom:692.970000px;}
.yd8{bottom:694.590000px;}
.y105{bottom:694.950000px;}
.yd{bottom:700.260000px;}
.y171{bottom:704.400000px;}
.yb4{bottom:707.550000px;}
.y6d{bottom:708.000000px;}
.y3f{bottom:710.520000px;}
.y104{bottom:712.590000px;}
.y14d{bottom:712.950000px;}
.y129{bottom:717.000000px;}
.yc{bottom:717.810000px;}
.y8f{bottom:718.350000px;}
.y170{bottom:721.950000px;}
.y103{bottom:730.140000px;}
.yd7{bottom:730.500000px;}
.y14c{bottom:730.590000px;}
.yb3{bottom:734.190000px;}
.y128{bottom:734.550000px;}
.yb{bottom:735.450000px;}
.y16f{bottom:739.590000px;}
.y6c{bottom:743.550000px;}
.y8e{bottom:745.710000px;}
.y3e{bottom:746.160000px;}
.y102{bottom:747.690000px;}
.y14b{bottom:748.140000px;}
.y127{bottom:752.190000px;}
.ya{bottom:753.000000px;}
.y16e{bottom:757.140000px;}
.y6b{bottom:761.190000px;}
.y3d{bottom:763.710000px;}
.y101{bottom:765.330000px;}
.y14a{bottom:765.690000px;}
.yb2{bottom:769.740000px;}
.y8d{bottom:773.070000px;}
.y6a{bottom:778.740000px;}
.y9{bottom:779.910000px;}
.y3c{bottom:781.350000px;}
.y100{bottom:782.880000px;}
.y149{bottom:783.330000px;}
.y16d{bottom:783.690000px;}
.yb1{bottom:787.290000px;}
.y69{bottom:796.290000px;}
.y3b{bottom:798.900000px;}
.y8c{bottom:800.340000px;}
.yff{bottom:800.520000px;}
.y16c{bottom:801.330000px;}
.yb0{bottom:804.930000px;}
.y148{bottom:810.240000px;}
.y68{bottom:813.930000px;}
.y3a{bottom:816.450000px;}
.y16b{bottom:818.880000px;}
.yaf{bottom:822.480000px;}
.y8{bottom:828.240000px;}
.y67{bottom:831.480000px;}
.y39{bottom:834.090000px;}
.yfe{bottom:836.070000px;}
.yae{bottom:840.030000px;}
.y126{bottom:840.480000px;}
.y16a{bottom:845.790000px;}
.y66{bottom:849.030000px;}
.y38{bottom:851.640000px;}
.yfd{bottom:853.620000px;}
.y125{bottom:858.030000px;}
.y147{bottom:858.480000px;}
.y7{bottom:863.790000px;}
.yad{bottom:866.670000px;}
.y37{bottom:869.280000px;}
.yfc{bottom:871.260000px;}
.y124{bottom:875.670000px;}
.y146{bottom:876.030000px;}
.yd6{bottom:884.220000px;}
.y65{bottom:884.670000px;}
.yfb{bottom:888.810000px;}
.y123{bottom:893.220000px;}
.y145{bottom:893.670000px;}
.y169{bottom:894.030000px;}
.y36{bottom:895.830000px;}
.y6{bottom:899.610000px;}
.yd5{bottom:901.860000px;}
.y64{bottom:902.220000px;}
.yfa{bottom:906.450000px;}
.y122{bottom:910.860000px;}
.y144{bottom:911.220000px;}
.y168{bottom:911.670000px;}
.yd4{bottom:919.410000px;}
.y63{bottom:919.860000px;}
.yf9{bottom:924.000000px;}
.y35{bottom:928.410000px;}
.y143{bottom:928.860000px;}
.y167{bottom:929.220000px;}
.y5{bottom:935.610000px;}
.yd3{bottom:936.960000px;}
.y62{bottom:937.410000px;}
.yf8{bottom:941.550000px;}
.y121{bottom:945.960000px;}
.y142{bottom:946.410000px;}
.y166{bottom:946.860000px;}
.y61{bottom:954.960000px;}
.yf7{bottom:959.190000px;}
.y34{bottom:963.960000px;}
.y165{bottom:964.410000px;}
.y4{bottom:971.700000px;}
.y60{bottom:972.600000px;}
.y33{bottom:981.600000px;}
.y164{bottom:981.960000px;}
.y5f{bottom:990.150000px;}
.yf6{bottom:994.740000px;}
.y32{bottom:999.150000px;}
.y163{bottom:999.600000px;}
.y5e{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.yf5{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.y141{bottom:1017.180000px;}
.yac{bottom:1025.370000px;}
.yf4{bottom:1029.960000px;}
.y30{bottom:1034.370000px;}
.y140{bottom:1034.820000px;}
.yab{bottom:1042.920000px;}
.yf3{bottom:1047.510000px;}
.y2f{bottom:1051.920000px;}
.y8b{bottom:1052.370000px;}
.yd2{bottom:1060.560000px;}
.y2e{bottom:1069.560000px;}
.y5d{bottom:1069.920000px;}
.yf2{bottom:1074.420000px;}
.y2d{bottom:1087.110000px;}
.y5c{bottom:1087.560000px;}
.y5b{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hf{height:26.550000px;}
.he{height:26.580000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:50.667539px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hb{height:59.973223px;}
.h9{height:60.960938px;}
.h11{height:61.793886px;}
.ha{height:62.585859px;}
.h10{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:116.490000px;}
.w3{width:124.320000px;}
.we{width:133.500000px;}
.wb{width:141.030000px;}
.w8{width:148.050000px;}
.wd{width:152.640000px;}
.w4{width:154.800000px;}
.wa{width:162.540000px;}
.w7{width:167.430000px;}
.w5{width:176.610000px;}
.w6{width:181.620000px;}
.wf{width:234.000000px;}
.wc{width:236.460000px;}
.w10{width:260.220000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x13{left:111.239987px;}
.x4{left:126.720000px;}
.x10{left:132.030000px;}
.x9{left:148.320000px;}
.xd{left:180.840000px;}
.x2{left:211.079987px;}
.x6{left:251.850000px;}
.x11{left:266.250000px;}
.xa{left:316.470000px;}
.xe{left:322.590000px;}
.x7{left:407.460000px;}
.xb{left:465.240000px;}
.x12{left:500.970000px;}
.xf{left:559.770000px;}
.xc{left:582.450000px;}
.x8{left:584.880000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.379733pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.142933pt;}
.ls17{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls16{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.058667pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lse{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.ls14{letter-spacing:0.060800pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.102933pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.859733pt;}
.wsf{word-spacing:-11.817600pt;}
.ws6{word-spacing:-11.800533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.700267pt;}
.ws10{word-spacing:-11.674667pt;}
.ws11{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.613867pt;}
.ws9{word-spacing:-11.590933pt;}
.ws3{word-spacing:-11.377067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._f{margin-left:-3.530132pt;}
._e{margin-left:-2.565334pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.046795pt;}
._c{width:2.266272pt;}
._d{width:3.238262pt;}
._11{width:4.202665pt;}
._3{width:5.557867pt;}
._a{width:6.650591pt;}
._9{width:7.695467pt;}
._10{width:8.870933pt;}
._4{width:10.581334pt;}
._2{width:13.092800pt;}
._b{width:14.749333pt;}
._7{width:16.459734pt;}
._8{width:17.582183pt;}
._13{width:18.543680pt;}
._12{width:19.580199pt;}
._14{width:20.862368pt;}
._17{width:22.469547pt;}
._19{width:23.809493pt;}
._1a{width:25.307307pt;}
._15{width:26.239040pt;}
._16{width:27.140267pt;}
._18{width:28.181333pt;}
._5{width:38.262933pt;}
._6{width:39.668694pt;}
._1d{width:78.129280pt;}
._1c{width:96.352320pt;}
._1f{width:106.505920pt;}
._1e{width:115.376960pt;}
._1b{width:120.614080pt;}
._20{width:126.759680pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:6.960000pt;}
.y49{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yaa{bottom:101.226667pt;}
.yf1{bottom:101.866667pt;}
.y5a{bottom:104.586667pt;}
.y8a{bottom:111.946667pt;}
.y120{bottom:112.106667pt;}
.y162{bottom:112.506667pt;}
.y13f{bottom:114.506667pt;}
.ya9{bottom:116.826667pt;}
.yf0{bottom:117.546667pt;}
.yd1{bottom:119.626667pt;}
.y59{bottom:120.186667pt;}
.y28{bottom:123.226667pt;}
.y89{bottom:127.626667pt;}
.y11f{bottom:127.706667pt;}
.y161{bottom:128.106667pt;}
.ya8{bottom:132.506667pt;}
.yef{bottom:133.146667pt;}
.yd0{bottom:135.226667pt;}
.y58{bottom:135.866667pt;}
.y13e{bottom:138.826667pt;}
.y27{bottom:138.906667pt;}
.y88{bottom:143.226667pt;}
.y11e{bottom:143.386667pt;}
.y160{bottom:143.706667pt;}
.ya7{bottom:148.106667pt;}
.yee{bottom:148.826667pt;}
.ycf{bottom:150.826667pt;}
.y26{bottom:154.506667pt;}
.y11d{bottom:158.986667pt;}
.y15f{bottom:159.386667pt;}
.y13d{bottom:163.146667pt;}
.ya6{bottom:163.786667pt;}
.yed{bottom:164.426667pt;}
.yce{bottom:166.506667pt;}
.y57{bottom:167.466667pt;}
.y25{bottom:170.106667pt;}
.y87{bottom:174.826667pt;}
.y15e{bottom:174.986667pt;}
.ya5{bottom:179.386667pt;}
.yec{bottom:180.026667pt;}
.ycd{bottom:182.106667pt;}
.y56{bottom:183.066667pt;}
.y24{bottom:185.786667pt;}
.y13c{bottom:187.466667pt;}
.y86{bottom:190.506667pt;}
.y11c{bottom:190.666667pt;}
.ycc{bottom:197.786667pt;}
.y55{bottom:198.746667pt;}
.y23{bottom:201.386667pt;}
.ya4{bottom:202.986667pt;}
.y85{bottom:206.106667pt;}
.y11b{bottom:206.266667pt;}
.yeb{bottom:209.386667pt;}
.y13b{bottom:211.706667pt;}
.ycb{bottom:213.386667pt;}
.y54{bottom:214.346667pt;}
.y15d{bottom:214.586667pt;}
.y84{bottom:221.786667pt;}
.y11a{bottom:221.866667pt;}
.y22{bottom:225.066667pt;}
.y53{bottom:229.946667pt;}
.yea{bottom:233.626667pt;}
.ya3{bottom:234.666667pt;}
.y13a{bottom:236.026667pt;}
.y83{bottom:237.386667pt;}
.y119{bottom:237.546667pt;}
.yca{bottom:244.986667pt;}
.y52{bottom:245.626667pt;}
.ya2{bottom:250.266667pt;}
.y82{bottom:252.986667pt;}
.y118{bottom:253.146667pt;}
.y21{bottom:256.666667pt;}
.y15c{bottom:257.466667pt;}
.ye9{bottom:257.946667pt;}
.y139{bottom:260.346667pt;}
.yc9{bottom:260.666667pt;}
.y51{bottom:261.226667pt;}
.ya1{bottom:265.946667pt;}
.y81{bottom:268.666667pt;}
.y20{bottom:272.266667pt;}
.y15b{bottom:273.066667pt;}
.yc8{bottom:276.266667pt;}
.y117{bottom:277.066667pt;}
.y183{bottom:281.066667pt;}
.ya0{bottom:281.546667pt;}
.ye8{bottom:282.266667pt;}
.y80{bottom:284.266667pt;}
.y50{bottom:285.146667pt;}
.y1f{bottom:287.946667pt;}
.y15a{bottom:288.746667pt;}
.yc7{bottom:291.946667pt;}
.y182{bottom:296.746667pt;}
.y9f{bottom:297.146667pt;}
.y7f{bottom:299.946667pt;}
.y1e{bottom:303.546667pt;}
.y138{bottom:303.626667pt;}
.y159{bottom:304.346667pt;}
.ye7{bottom:306.586667pt;}
.yc6{bottom:307.546667pt;}
.y181{bottom:312.346667pt;}
.y9e{bottom:312.826667pt;}
.y1d{bottom:319.226667pt;}
.y116{bottom:319.946667pt;}
.yc5{bottom:323.146667pt;}
.y7e{bottom:323.546667pt;}
.y4f{bottom:325.786667pt;}
.y180{bottom:327.946667pt;}
.y9d{bottom:328.426667pt;}
.ye6{bottom:330.826667pt;}
.y1c{bottom:334.826667pt;}
.y137{bottom:335.226667pt;}
.y115{bottom:335.626667pt;}
.y9c{bottom:344.106667pt;}
.yc4{bottom:346.826667pt;}
.y4e{bottom:350.026667pt;}
.y1b{bottom:350.426667pt;}
.y136{bottom:350.906667pt;}
.y114{bottom:351.226667pt;}
.y17f{bottom:351.626667pt;}
.y7d{bottom:355.146667pt;}
.y1a{bottom:366.106667pt;}
.y135{bottom:366.506667pt;}
.y113{bottom:366.906667pt;}
.y17e{bottom:367.226667pt;}
.y9b{bottom:367.706667pt;}
.y7c{bottom:370.826667pt;}
.ye5{bottom:374.106667pt;}
.y4d{bottom:374.346667pt;}
.yc3{bottom:378.426667pt;}
.y19{bottom:381.706667pt;}
.y134{bottom:382.106667pt;}
.y112{bottom:382.506667pt;}
.y158{bottom:382.906667pt;}
.y7b{bottom:386.426667pt;}
.yc2{bottom:394.106667pt;}
.y133{bottom:397.786667pt;}
.y111{bottom:398.106667pt;}
.y157{bottom:398.506667pt;}
.y4b{bottom:398.666667pt;}
.y9a{bottom:399.626667pt;}
.y7a{bottom:402.106667pt;}
.y18{bottom:405.626667pt;}
.ye4{bottom:405.786667pt;}
.y17d{bottom:406.506667pt;}
.yc1{bottom:409.706667pt;}
.y132{bottom:413.386667pt;}
.y110{bottom:413.786667pt;}
.y156{bottom:414.106667pt;}
.y79{bottom:417.733333pt;}
.ye3{bottom:421.413333pt;}
.y17c{bottom:422.133333pt;}
.y4a{bottom:422.933333pt;}
.yc0{bottom:425.333333pt;}
.y131{bottom:429.093333pt;}
.y155{bottom:429.813333pt;}
.y78{bottom:433.333333pt;}
.ye2{bottom:437.093333pt;}
.ybf{bottom:441.013333pt;}
.y99{bottom:442.533333pt;}
.y130{bottom:444.693333pt;}
.y10f{bottom:445.413333pt;}
.y17b{bottom:445.813333pt;}
.y48{bottom:447.253333pt;}
.y17{bottom:448.853333pt;}
.y77{bottom:449.013333pt;}
.ye1{bottom:452.693333pt;}
.ybe{bottom:456.613333pt;}
.y98{bottom:458.213333pt;}
.y10e{bottom:461.093333pt;}
.y17a{bottom:461.413333pt;}
.ye0{bottom:468.293333pt;}
.ybd{bottom:472.293333pt;}
.y97{bottom:473.813333pt;}
.y12f{bottom:476.293333pt;}
.y10d{bottom:476.693333pt;}
.y179{bottom:477.093333pt;}
.y76{bottom:480.613333pt;}
.y16{bottom:481.733333pt;}
.ydf{bottom:483.973333pt;}
.ybc{bottom:487.893333pt;}
.y96{bottom:489.413333pt;}
.y47{bottom:490.533333pt;}
.y12e{bottom:491.973333pt;}
.y10c{bottom:492.293333pt;}
.y154{bottom:492.693333pt;}
.y75{bottom:496.293333pt;}
.y15{bottom:497.413333pt;}
.y178{bottom:500.693333pt;}
.ybb{bottom:503.493333pt;}
.y95{bottom:505.093333pt;}
.y12d{bottom:507.573333pt;}
.y10b{bottom:507.973333pt;}
.y153{bottom:508.293333pt;}
.y74{bottom:511.893333pt;}
.y14{bottom:513.013333pt;}
.yde{bottom:515.573333pt;}
.y177{bottom:516.293333pt;}
.y94{bottom:520.693333pt;}
.y46{bottom:522.213333pt;}
.y12c{bottom:523.253333pt;}
.y10a{bottom:523.573333pt;}
.y152{bottom:523.973333pt;}
.y73{bottom:527.493333pt;}
.y13{bottom:528.693333pt;}
.ydd{bottom:531.253333pt;}
.y176{bottom:531.973333pt;}
.yba{bottom:535.173333pt;}
.y93{bottom:536.373333pt;}
.y45{bottom:537.813333pt;}
.y12b{bottom:538.853333pt;}
.y109{bottom:539.253333pt;}
.y151{bottom:539.573333pt;}
.y72{bottom:543.173333pt;}
.y12{bottom:544.293333pt;}
.ydc{bottom:546.853333pt;}
.y175{bottom:547.573333pt;}
.yb9{bottom:550.773333pt;}
.y44{bottom:553.413333pt;}
.y108{bottom:554.853333pt;}
.y150{bottom:555.253333pt;}
.y71{bottom:558.773333pt;}
.y11{bottom:559.893333pt;}
.ydb{bottom:562.453333pt;}
.y92{bottom:565.653333pt;}
.yb8{bottom:566.453333pt;}
.y43{bottom:569.093333pt;}
.y107{bottom:570.453333pt;}
.y14f{bottom:570.853333pt;}
.y174{bottom:571.253333pt;}
.y70{bottom:574.453333pt;}
.y10{bottom:575.573333pt;}
.yda{bottom:578.133333pt;}
.yb7{bottom:582.053333pt;}
.y42{bottom:584.693333pt;}
.y14e{bottom:586.453333pt;}
.y173{bottom:586.853333pt;}
.y91{bottom:589.973333pt;}
.y6f{bottom:590.053333pt;}
.yf{bottom:591.173333pt;}
.yd9{bottom:593.733333pt;}
.y12a{bottom:594.373333pt;}
.yb6{bottom:597.653333pt;}
.y41{bottom:600.373333pt;}
.y106{bottom:602.133333pt;}
.y172{bottom:602.453333pt;}
.y6e{bottom:605.653333pt;}
.ye{bottom:606.853333pt;}
.yb5{bottom:613.333333pt;}
.y90{bottom:614.213333pt;}
.y40{bottom:615.973333pt;}
.yd8{bottom:617.413333pt;}
.y105{bottom:617.733333pt;}
.yd{bottom:622.453333pt;}
.y171{bottom:626.133333pt;}
.yb4{bottom:628.933333pt;}
.y6d{bottom:629.333333pt;}
.y3f{bottom:631.573333pt;}
.y104{bottom:633.413333pt;}
.y14d{bottom:633.733333pt;}
.y129{bottom:637.333333pt;}
.yc{bottom:638.053333pt;}
.y8f{bottom:638.533333pt;}
.y170{bottom:641.733333pt;}
.y103{bottom:649.013333pt;}
.yd7{bottom:649.333333pt;}
.y14c{bottom:649.413333pt;}
.yb3{bottom:652.613333pt;}
.y128{bottom:652.933333pt;}
.yb{bottom:653.733333pt;}
.y16f{bottom:657.413333pt;}
.y6c{bottom:660.933333pt;}
.y8e{bottom:662.853333pt;}
.y3e{bottom:663.253333pt;}
.y102{bottom:664.613333pt;}
.y14b{bottom:665.013333pt;}
.y127{bottom:668.613333pt;}
.ya{bottom:669.333333pt;}
.y16e{bottom:673.013333pt;}
.y6b{bottom:676.613333pt;}
.y3d{bottom:678.853333pt;}
.y101{bottom:680.293333pt;}
.y14a{bottom:680.613333pt;}
.yb2{bottom:684.213333pt;}
.y8d{bottom:687.173333pt;}
.y6a{bottom:692.213333pt;}
.y9{bottom:693.253333pt;}
.y3c{bottom:694.533333pt;}
.y100{bottom:695.893333pt;}
.y149{bottom:696.293333pt;}
.y16d{bottom:696.613333pt;}
.yb1{bottom:699.813333pt;}
.y69{bottom:707.813333pt;}
.y3b{bottom:710.133333pt;}
.y8c{bottom:711.413333pt;}
.yff{bottom:711.573333pt;}
.y16c{bottom:712.293333pt;}
.yb0{bottom:715.493333pt;}
.y148{bottom:720.213333pt;}
.y68{bottom:723.493333pt;}
.y3a{bottom:725.733333pt;}
.y16b{bottom:727.893333pt;}
.yaf{bottom:731.093333pt;}
.y8{bottom:736.213333pt;}
.y67{bottom:739.093333pt;}
.y39{bottom:741.413333pt;}
.yfe{bottom:743.173333pt;}
.yae{bottom:746.693333pt;}
.y126{bottom:747.093333pt;}
.y16a{bottom:751.813333pt;}
.y66{bottom:754.693333pt;}
.y38{bottom:757.013333pt;}
.yfd{bottom:758.773333pt;}
.y125{bottom:762.693333pt;}
.y147{bottom:763.093333pt;}
.y7{bottom:767.813333pt;}
.yad{bottom:770.373333pt;}
.y37{bottom:772.693333pt;}
.yfc{bottom:774.453333pt;}
.y124{bottom:778.373333pt;}
.y146{bottom:778.693333pt;}
.yd6{bottom:785.973333pt;}
.y65{bottom:786.373333pt;}
.yfb{bottom:790.053333pt;}
.y123{bottom:793.973333pt;}
.y145{bottom:794.373333pt;}
.y169{bottom:794.693333pt;}
.y36{bottom:796.293333pt;}
.y6{bottom:799.653333pt;}
.yd5{bottom:801.653333pt;}
.y64{bottom:801.973333pt;}
.yfa{bottom:805.733333pt;}
.y122{bottom:809.653333pt;}
.y144{bottom:809.973333pt;}
.y168{bottom:810.373333pt;}
.yd4{bottom:817.253333pt;}
.y63{bottom:817.653333pt;}
.yf9{bottom:821.333333pt;}
.y35{bottom:825.253333pt;}
.y143{bottom:825.653333pt;}
.y167{bottom:825.973333pt;}
.y5{bottom:831.653333pt;}
.yd3{bottom:832.853333pt;}
.y62{bottom:833.253333pt;}
.yf8{bottom:836.933333pt;}
.y121{bottom:840.853333pt;}
.y142{bottom:841.253333pt;}
.y166{bottom:841.653333pt;}
.y61{bottom:848.853333pt;}
.yf7{bottom:852.613333pt;}
.y34{bottom:856.853333pt;}
.y165{bottom:857.253333pt;}
.y4{bottom:863.733333pt;}
.y60{bottom:864.533333pt;}
.y33{bottom:872.533333pt;}
.y164{bottom:872.853333pt;}
.y5f{bottom:880.133333pt;}
.yf6{bottom:884.213333pt;}
.y32{bottom:888.133333pt;}
.y163{bottom:888.533333pt;}
.y5e{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.yf5{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.y141{bottom:904.160000pt;}
.yac{bottom:911.440000pt;}
.yf4{bottom:915.520000pt;}
.y30{bottom:919.440000pt;}
.y140{bottom:919.840000pt;}
.yab{bottom:927.040000pt;}
.yf3{bottom:931.120000pt;}
.y2f{bottom:935.040000pt;}
.y8b{bottom:935.440000pt;}
.yd2{bottom:942.720000pt;}
.y2e{bottom:950.720000pt;}
.y5d{bottom:951.040000pt;}
.yf2{bottom:955.040000pt;}
.y2d{bottom:966.320000pt;}
.y5c{bottom:966.720000pt;}
.y5b{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.he{height:23.626667pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:45.037812pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hb{height:53.309531pt;}
.h9{height:54.187500pt;}
.h11{height:54.927899pt;}
.ha{height:55.631875pt;}
.h10{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:103.546667pt;}
.w3{width:110.506667pt;}
.we{width:118.666667pt;}
.wb{width:125.360000pt;}
.w8{width:131.600000pt;}
.wd{width:135.680000pt;}
.w4{width:137.600000pt;}
.wa{width:144.480000pt;}
.w7{width:148.826667pt;}
.w5{width:156.986667pt;}
.w6{width:161.440000pt;}
.wf{width:208.000000pt;}
.wc{width:210.186667pt;}
.w10{width:231.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x13{left:98.879988pt;}
.x4{left:112.640000pt;}
.x10{left:117.360000pt;}
.x9{left:131.840000pt;}
.xd{left:160.746667pt;}
.x2{left:187.626655pt;}
.x6{left:223.866667pt;}
.x11{left:236.666667pt;}
.xa{left:281.306667pt;}
.xe{left:286.746667pt;}
.x7{left:362.186667pt;}
.xb{left:413.546667pt;}
.x12{left:445.306667pt;}
.xf{left:497.573333pt;}
.xc{left:517.733333pt;}
.x8{left:519.893333pt;}
.x3{left:711.413322pt;}
}




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