
    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_532525ef0d30e20c2094dd39.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922363;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_528129daffcc6e293ab67003.woff')format("woff");}.ff2{font-family:ff2;line-height:0.929199;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_d425cb761347687df229a14d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_76be918b918ba410db942159.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4e55e1b363f51ed4343e1777.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708984;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_5d7799bb630f7d4bf33fbf86.woff')format("woff");}.ff6{font-family:ff6;line-height:0.919434;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_bccfc21215517f9e03484721.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_afc4779acf077e6420c6222a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0ee6c5bc7fe72361cee06472.woff')format("woff");}.ff9{font-family:ff9;line-height:0.913086;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_3cf40e45ea29b27e4b4c4733.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682129;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:-131.040000px;}
.v2{vertical-align:-51.840000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.403200px;}
.ls13{letter-spacing:-0.252000px;}
.lsa{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.054000px;}
.ls0{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.198000px;}
.ls5{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.252000px;}
.ls10{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.360000px;}
.ls11{letter-spacing:10.908000px;}
.lsf{letter-spacing:41.148000px;}
.ls4{letter-spacing:420.660000px;}
.ls2{letter-spacing:1518.960000px;}
.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;}
}
.wsc{word-spacing:-66.240000px;}
.ws4{word-spacing:-19.710000px;}
.ws7{word-spacing:-15.228000px;}
.ws6{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.012000px;}
.ws3{word-spacing:-14.572800px;}
.wsb{word-spacing:-13.780800px;}
.ws1{word-spacing:-12.204000px;}
.ws8{word-spacing:-12.168000px;}
.wsd{word-spacing:-12.150000px;}
.wsf{word-spacing:-12.078000px;}
.wsa{word-spacing:-11.952000px;}
.ws0{word-spacing:-11.880000px;}
.ws2{word-spacing:-11.808000px;}
.wse{word-spacing:-11.628000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-1.080000px;}
._0{width:1.038000px;}
._12{width:2.042880px;}
._2{width:3.047040px;}
._c{width:4.106880px;}
._4{width:6.094080px;}
._e{width:7.816320px;}
._f{width:9.671040px;}
._d{width:11.459520px;}
._5{width:12.519360px;}
._1d{width:13.559040px;}
._2f{width:14.569920px;}
._3{width:15.632640px;}
._15{width:16.735680px;}
._10{width:17.818560px;}
._11{width:18.832320px;}
._b{width:20.376000px;}
._a{width:21.528000px;}
._7{width:22.608000px;}
._6{width:23.713920px;}
._14{width:25.436160px;}
._2c{width:26.516160px;}
._19{width:27.555840px;}
._17{width:28.681920px;}
._13{width:30.510000px;}
._1c{width:31.993920px;}
._1e{width:33.053760px;}
._27{width:34.597440px;}
._26{width:35.902080px;}
._1b{width:37.690560px;}
._8{width:38.816640px;}
._9{width:40.294080px;}
._22{width:41.814720px;}
._25{width:43.652160px;}
._2e{width:44.937840px;}
._21{width:46.077120px;}
._1f{width:47.626560px;}
._24{width:48.706560px;}
._28{width:49.944960px;}
._23{width:51.448320px;}
._16{width:53.455680px;}
._1a{width:55.244160px;}
._20{width:58.423680px;}
._2a{width:60.344640px;}
._29{width:61.536960px;}
._2b{width:62.788320px;}
._2d{width:65.908800px;}
._18{width:68.293440px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(64,64,64);}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fs8{font-size:5.760000px;}
.fs5{font-size:30.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs4{font-size:102.240000px;}
.fs3{font-size:108.000000px;}
.y47{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:3.060000px;}
.y46{bottom:16.020000px;}
.y45{bottom:17.820000px;}
.y69{bottom:18.900000px;}
.y55{bottom:19.110000px;}
.y44{bottom:19.440000px;}
.y43{bottom:22.860000px;}
.y42{bottom:34.380000px;}
.y68{bottom:34.740000px;}
.y54{bottom:35.130000px;}
.y67{bottom:50.580000px;}
.y53{bottom:50.970000px;}
.ya{bottom:55.980000px;}
.y6c{bottom:56.520000px;}
.y41{bottom:60.840000px;}
.y66{bottom:66.420000px;}
.y52{bottom:66.810000px;}
.y9{bottom:71.856000px;}
.y51{bottom:79.590000px;}
.y65{bottom:82.260000px;}
.y40{bottom:85.680000px;}
.yd6{bottom:87.156000px;}
.y8{bottom:87.696000px;}
.y9d{bottom:88.596000px;}
.y64{bottom:98.100000px;}
.y50{bottom:98.490000px;}
.y7{bottom:103.536000px;}
.y3f{bottom:104.610000px;}
.yd5{bottom:106.596000px;}
.y9c{bottom:107.856000px;}
.y102{bottom:109.296000px;}
.y63{bottom:113.970000px;}
.y4f{bottom:114.330000px;}
.y6{bottom:119.376000px;}
.yd4{bottom:125.856000px;}
.y9b{bottom:127.296000px;}
.y101{bottom:128.556000px;}
.y62{bottom:129.810000px;}
.y4e{bottom:129.990000px;}
.y5{bottom:135.216000px;}
.yd3{bottom:145.296000px;}
.y61{bottom:145.650000px;}
.y4d{bottom:145.830000px;}
.y9a{bottom:146.556000px;}
.y100{bottom:147.996000px;}
.y4{bottom:151.050000px;}
.y4c{bottom:158.610000px;}
.y60{bottom:161.490000px;}
.ye6{bottom:164.550000px;}
.y99{bottom:165.990000px;}
.y3{bottom:166.890000px;}
.yff{bottom:167.250000px;}
.y4b{bottom:169.050000px;}
.y5f{bottom:177.330000px;}
.y4a{bottom:179.490000px;}
.yd2{bottom:182.550000px;}
.ye5{bottom:183.990000px;}
.y98{bottom:185.250000px;}
.yfe{bottom:186.690000px;}
.y5e{bottom:192.990000px;}
.y49{bottom:196.950000px;}
.y3d{bottom:200.730000px;}
.yd1{bottom:201.990000px;}
.ye4{bottom:203.250000px;}
.y97{bottom:204.690000px;}
.yfd{bottom:205.950000px;}
.y5d{bottom:208.830000px;}
.y3c{bottom:219.990000px;}
.yd0{bottom:221.250000px;}
.ye3{bottom:222.690000px;}
.y96{bottom:223.950000px;}
.y5c{bottom:224.670000px;}
.yfc{bottom:225.390000px;}
.y3b{bottom:239.430000px;}
.y5b{bottom:240.510000px;}
.ycf{bottom:240.690000px;}
.ye2{bottom:241.950000px;}
.y95{bottom:243.390000px;}
.yfb{bottom:244.650000px;}
.y5a{bottom:253.290000px;}
.y3a{bottom:258.690000px;}
.yce{bottom:259.950000px;}
.ye1{bottom:261.390000px;}
.y94{bottom:262.650000px;}
.y59{bottom:263.730000px;}
.yfa{bottom:264.090000px;}
.y58{bottom:274.170000px;}
.y39{bottom:278.130000px;}
.ycd{bottom:279.390000px;}
.ye0{bottom:280.650000px;}
.y93{bottom:282.090000px;}
.yf9{bottom:283.350000px;}
.y57{bottom:291.630000px;}
.y38{bottom:297.390000px;}
.ycc{bottom:298.650000px;}
.ydf{bottom:300.090000px;}
.y92{bottom:301.350000px;}
.yf8{bottom:302.790000px;}
.y37{bottom:316.830000px;}
.ycb{bottom:318.135000px;}
.yde{bottom:319.395000px;}
.y91{bottom:320.835000px;}
.yf7{bottom:322.095000px;}
.y36{bottom:336.135000px;}
.yca{bottom:337.395000px;}
.ydd{bottom:338.835000px;}
.y90{bottom:340.095000px;}
.yf6{bottom:341.355000px;}
.y35{bottom:355.575000px;}
.yc9{bottom:356.835000px;}
.ydc{bottom:358.095000px;}
.y8f{bottom:359.355000px;}
.yf5{bottom:360.795000px;}
.y34{bottom:374.835000px;}
.yc8{bottom:376.095000px;}
.yea{bottom:377.355000px;}
.y8e{bottom:378.795000px;}
.y33{bottom:394.275000px;}
.yc7{bottom:395.355000px;}
.ye9{bottom:396.795000px;}
.yaa{bottom:398.055000px;}
.y32{bottom:413.535000px;}
.yc6{bottom:414.795000px;}
.y8d{bottom:416.055000px;}
.ya9{bottom:417.495000px;}
.y31{bottom:432.975000px;}
.yc5{bottom:434.055000px;}
.y8c{bottom:435.495000px;}
.ya8{bottom:436.755000px;}
.y30{bottom:448.635000px;}
.yc4{bottom:453.495000px;}
.y8b{bottom:454.755000px;}
.ya7{bottom:456.195000px;}
.y56{bottom:458.715000px;}
.y2f{bottom:469.695000px;}
.yc3{bottom:472.755000px;}
.y8a{bottom:474.195000px;}
.ya6{bottom:475.455000px;}
.y2e{bottom:478.515000px;}
.y141{bottom:483.735000px;}
.y2d{bottom:487.335000px;}
.yc2{bottom:492.195000px;}
.y89{bottom:493.455000px;}
.ya5{bottom:494.895000px;}
.y2c{bottom:495.975000px;}
.y2b{bottom:504.795000px;}
.y120{bottom:508.755000px;}
.y140{bottom:509.835000px;}
.yc1{bottom:511.455000px;}
.y88{bottom:512.895000px;}
.y2a{bottom:513.615000px;}
.ya4{bottom:514.155000px;}
.y29{bottom:522.435000px;}
.y11f{bottom:527.115000px;}
.y13f{bottom:528.015000px;}
.yc0{bottom:530.895000px;}
.y28{bottom:531.255000px;}
.y87{bottom:532.155000px;}
.yf4{bottom:533.595000px;}
.y27{bottom:540.075000px;}
.y11e{bottom:545.295000px;}
.y13e{bottom:546.195000px;}
.y26{bottom:548.895000px;}
.ybf{bottom:550.155000px;}
.y86{bottom:551.595000px;}
.yf3{bottom:552.855000px;}
.y48{bottom:553.215000px;}
.y25{bottom:557.535000px;}
.y11d{bottom:563.475000px;}
.y13d{bottom:564.375000px;}
.y24{bottom:568.725000px;}
.ybe{bottom:569.625000px;}
.y85{bottom:570.885000px;}
.yf2{bottom:572.325000px;}
.y11c{bottom:581.685000px;}
.y13c{bottom:582.585000px;}
.ybd{bottom:588.885000px;}
.y1f{bottom:589.065000px;}
.y84{bottom:590.325000px;}
.yf1{bottom:591.585000px;}
.y23{bottom:593.205000px;}
.y11b{bottom:599.865000px;}
.y13b{bottom:600.765000px;}
.y1e{bottom:606.705000px;}
.ybc{bottom:608.325000px;}
.y83{bottom:609.585000px;}
.yf0{bottom:611.025000px;}
.y22{bottom:614.445000px;}
.y11a{bottom:618.045000px;}
.y13a{bottom:618.945000px;}
.y1d{bottom:624.345000px;}
.ybb{bottom:627.585000px;}
.y82{bottom:629.025000px;}
.yef{bottom:630.285000px;}
.y21{bottom:635.505000px;}
.y119{bottom:636.225000px;}
.y139{bottom:637.305000px;}
.y1c{bottom:641.805000px;}
.ye8{bottom:645.585000px;}
.yba{bottom:647.025000px;}
.y81{bottom:648.285000px;}
.yee{bottom:649.545000px;}
.y118{bottom:654.405000px;}
.y138{bottom:655.485000px;}
.y20{bottom:656.565000px;}
.y1b{bottom:659.445000px;}
.ye7{bottom:665.025000px;}
.ydb{bottom:666.285000px;}
.y80{bottom:667.545000px;}
.yed{bottom:668.985000px;}
.y117{bottom:672.765000px;}
.y137{bottom:673.665000px;}
.y1a{bottom:677.085000px;}
.yb9{bottom:684.285000px;}
.yda{bottom:685.545000px;}
.y7f{bottom:686.985000px;}
.yec{bottom:688.245000px;}
.y116{bottom:690.945000px;}
.y136{bottom:691.845000px;}
.y19{bottom:694.725000px;}
.yb8{bottom:703.545000px;}
.yd9{bottom:704.985000px;}
.y7e{bottom:706.245000px;}
.yeb{bottom:707.685000px;}
.y115{bottom:709.125000px;}
.y135{bottom:710.025000px;}
.y18{bottom:712.185000px;}
.yb7{bottom:722.985000px;}
.yd8{bottom:724.245000px;}
.y7d{bottom:725.685000px;}
.y114{bottom:727.305000px;}
.y134{bottom:728.205000px;}
.y17{bottom:729.825000px;}
.yb6{bottom:742.245000px;}
.yd7{bottom:743.685000px;}
.ya3{bottom:744.945000px;}
.y113{bottom:745.485000px;}
.y133{bottom:746.385000px;}
.yb5{bottom:761.685000px;}
.y16{bottom:762.225000px;}
.y7c{bottom:762.945000px;}
.y112{bottom:763.665000px;}
.ya2{bottom:764.385000px;}
.y132{bottom:764.565000px;}
.yb4{bottom:780.945000px;}
.y111{bottom:781.845000px;}
.y7b{bottom:782.385000px;}
.y131{bottom:782.745000px;}
.y15{bottom:782.925000px;}
.ya1{bottom:783.645000px;}
.y110{bottom:800.025000px;}
.yb3{bottom:800.385000px;}
.y130{bottom:801.105000px;}
.y7a{bottom:801.645000px;}
.y14{bottom:817.665000px;}
.y10f{bottom:818.205000px;}
.y12f{bottom:819.330000px;}
.yb2{bottom:819.690000px;}
.y79{bottom:821.130000px;}
.y10e{bottom:836.610000px;}
.y12e{bottom:837.510000px;}
.yb1{bottom:839.130000px;}
.y78{bottom:840.390000px;}
.y10d{bottom:854.790000px;}
.y12d{bottom:855.690000px;}
.y13{bottom:858.030000px;}
.yb0{bottom:858.390000px;}
.y77{bottom:859.830000px;}
.y10c{bottom:872.970000px;}
.y12c{bottom:873.870000px;}
.yaf{bottom:877.830000px;}
.y76{bottom:879.090000px;}
.y12{bottom:887.910000px;}
.y10b{bottom:891.150000px;}
.y12b{bottom:892.050000px;}
.yae{bottom:897.090000px;}
.y75{bottom:898.530000px;}
.y10a{bottom:909.330000px;}
.y12a{bottom:910.230000px;}
.yad{bottom:916.530000px;}
.y74{bottom:917.790000px;}
.y11{bottom:918.510000px;}
.y109{bottom:927.510000px;}
.y129{bottom:928.410000px;}
.yac{bottom:935.790000px;}
.y73{bottom:937.230000px;}
.y108{bottom:945.690000px;}
.y128{bottom:946.770000px;}
.yab{bottom:955.230000px;}
.ya0{bottom:956.490000px;}
.y107{bottom:963.870000px;}
.y127{bottom:964.950000px;}
.y3e{bottom:973.050000px;}
.y72{bottom:974.490000px;}
.y9f{bottom:975.750000px;}
.y106{bottom:982.230000px;}
.y10{bottom:982.410000px;}
.y126{bottom:983.130000px;}
.y71{bottom:993.750000px;}
.y9e{bottom:995.190000px;}
.y105{bottom:1000.410000px;}
.y125{bottom:1001.310000px;}
.yf{bottom:1004.010000px;}
.y70{bottom:1013.190000px;}
.y104{bottom:1018.590000px;}
.y124{bottom:1019.490000px;}
.ye{bottom:1025.790000px;}
.y6f{bottom:1032.450000px;}
.y103{bottom:1036.770000px;}
.y123{bottom:1037.670000px;}
.yd{bottom:1047.570000px;}
.y6e{bottom:1051.890000px;}
.y122{bottom:1055.850000px;}
.yc{bottom:1069.350000px;}
.y6d{bottom:1071.180000px;}
.y121{bottom:1074.060000px;}
.yb{bottom:1091.160000px;}
.y6b{bottom:1112.220000px;}
.y2{bottom:1112.400000px;}
.y1{bottom:1128.060000px;}
.h12{height:3.839063px;}
.h13{height:4.480313px;}
.h11{height:20.155078px;}
.hb{height:21.292031px;}
.h8{height:37.863281px;}
.h1{height:38.021484px;}
.h3{height:38.390625px;}
.h9{height:42.077109px;}
.hc{height:46.445625px;}
.hd{height:46.639687px;}
.he{height:47.092500px;}
.ha{height:50.695312px;}
.h16{height:55.503491px;}
.h17{height:56.320312px;}
.h4{height:61.423863px;}
.h10{height:63.369141px;}
.h6{height:71.987344px;}
.h7{height:72.562500px;}
.h2{height:74.004654px;}
.h5{height:111.006981px;}
.hf{height:117.210000px;}
.h14{height:211.170000px;}
.h15{height:305.850000px;}
.h0{height:1188.000000px;}
.w2{width:230.115000px;}
.w3{width:526.200000px;}
.w1{width:544.230000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:10.785000px;}
.xc{left:65.704500px;}
.x1{left:75.600000px;}
.x10{left:95.976000px;}
.x9{left:98.985000px;}
.x7{left:122.970000px;}
.x2{left:128.736000px;}
.xa{left:139.170000px;}
.x6{left:180.225000px;}
.xd{left:219.445500px;}
.x8{left:272.010000px;}
.xe{left:328.395000px;}
.x4{left:340.815000px;}
.x5{left:485.565000px;}
.x12{left:505.905000px;}
.xf{left:515.415000px;}
.x11{left:539.565000px;}
.x3{left:842.550000px;}
@media print{
.v1{vertical-align:-116.480000pt;}
.v2{vertical-align:-46.080000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.358400pt;}
.ls13{letter-spacing:-0.224000pt;}
.lsa{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.048000pt;}
.ls0{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.176000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.224000pt;}
.ls10{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls11{letter-spacing:9.696000pt;}
.lsf{letter-spacing:36.576000pt;}
.ls4{letter-spacing:373.920000pt;}
.ls2{letter-spacing:1350.186667pt;}
.wsc{word-spacing:-58.880000pt;}
.ws4{word-spacing:-17.520000pt;}
.ws7{word-spacing:-13.536000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.344000pt;}
.ws3{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.249600pt;}
.ws1{word-spacing:-10.848000pt;}
.ws8{word-spacing:-10.816000pt;}
.wsd{word-spacing:-10.800000pt;}
.wsf{word-spacing:-10.736000pt;}
.wsa{word-spacing:-10.624000pt;}
.ws0{word-spacing:-10.560000pt;}
.ws2{word-spacing:-10.496000pt;}
.wse{word-spacing:-10.336000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.922667pt;}
._12{width:1.815893pt;}
._2{width:2.708480pt;}
._c{width:3.650560pt;}
._4{width:5.416960pt;}
._e{width:6.947840pt;}
._f{width:8.596480pt;}
._d{width:10.186240pt;}
._5{width:11.128320pt;}
._1d{width:12.052480pt;}
._2f{width:12.951040pt;}
._3{width:13.895680pt;}
._15{width:14.876160pt;}
._10{width:15.838720pt;}
._11{width:16.739840pt;}
._b{width:18.112000pt;}
._a{width:19.136000pt;}
._7{width:20.096000pt;}
._6{width:21.079040pt;}
._14{width:22.609920pt;}
._2c{width:23.569920pt;}
._19{width:24.494080pt;}
._17{width:25.495040pt;}
._13{width:27.120000pt;}
._1c{width:28.439040pt;}
._1e{width:29.381120pt;}
._27{width:30.753280pt;}
._26{width:31.912960pt;}
._1b{width:33.502720pt;}
._8{width:34.503680pt;}
._9{width:35.816960pt;}
._22{width:37.168640pt;}
._25{width:38.801920pt;}
._2e{width:39.944747pt;}
._21{width:40.957440pt;}
._1f{width:42.334720pt;}
._24{width:43.294720pt;}
._28{width:44.395520pt;}
._23{width:45.731840pt;}
._16{width:47.516160pt;}
._1a{width:49.105920pt;}
._20{width:51.932160pt;}
._2a{width:53.639680pt;}
._29{width:54.699520pt;}
._2b{width:55.811840pt;}
._2d{width:58.585600pt;}
._18{width:60.705280pt;}
.fs8{font-size:5.120000pt;}
.fs5{font-size:26.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs4{font-size:90.880000pt;}
.fs3{font-size:96.000000pt;}
.y47{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:2.720000pt;}
.y46{bottom:14.240000pt;}
.y45{bottom:15.840000pt;}
.y69{bottom:16.800000pt;}
.y55{bottom:16.986667pt;}
.y44{bottom:17.280000pt;}
.y43{bottom:20.320000pt;}
.y42{bottom:30.560000pt;}
.y68{bottom:30.880000pt;}
.y54{bottom:31.226667pt;}
.y67{bottom:44.960000pt;}
.y53{bottom:45.306667pt;}
.ya{bottom:49.760000pt;}
.y6c{bottom:50.240000pt;}
.y41{bottom:54.080000pt;}
.y66{bottom:59.040000pt;}
.y52{bottom:59.386667pt;}
.y9{bottom:63.872000pt;}
.y51{bottom:70.746667pt;}
.y65{bottom:73.120000pt;}
.y40{bottom:76.160000pt;}
.yd6{bottom:77.472000pt;}
.y8{bottom:77.952000pt;}
.y9d{bottom:78.752000pt;}
.y64{bottom:87.200000pt;}
.y50{bottom:87.546667pt;}
.y7{bottom:92.032000pt;}
.y3f{bottom:92.986667pt;}
.yd5{bottom:94.752000pt;}
.y9c{bottom:95.872000pt;}
.y102{bottom:97.152000pt;}
.y63{bottom:101.306667pt;}
.y4f{bottom:101.626667pt;}
.y6{bottom:106.112000pt;}
.yd4{bottom:111.872000pt;}
.y9b{bottom:113.152000pt;}
.y101{bottom:114.272000pt;}
.y62{bottom:115.386667pt;}
.y4e{bottom:115.546667pt;}
.y5{bottom:120.192000pt;}
.yd3{bottom:129.152000pt;}
.y61{bottom:129.466667pt;}
.y4d{bottom:129.626667pt;}
.y9a{bottom:130.272000pt;}
.y100{bottom:131.552000pt;}
.y4{bottom:134.266667pt;}
.y4c{bottom:140.986667pt;}
.y60{bottom:143.546667pt;}
.ye6{bottom:146.266667pt;}
.y99{bottom:147.546667pt;}
.y3{bottom:148.346667pt;}
.yff{bottom:148.666667pt;}
.y4b{bottom:150.266667pt;}
.y5f{bottom:157.626667pt;}
.y4a{bottom:159.546667pt;}
.yd2{bottom:162.266667pt;}
.ye5{bottom:163.546667pt;}
.y98{bottom:164.666667pt;}
.yfe{bottom:165.946667pt;}
.y5e{bottom:171.546667pt;}
.y49{bottom:175.066667pt;}
.y3d{bottom:178.426667pt;}
.yd1{bottom:179.546667pt;}
.ye4{bottom:180.666667pt;}
.y97{bottom:181.946667pt;}
.yfd{bottom:183.066667pt;}
.y5d{bottom:185.626667pt;}
.y3c{bottom:195.546667pt;}
.yd0{bottom:196.666667pt;}
.ye3{bottom:197.946667pt;}
.y96{bottom:199.066667pt;}
.y5c{bottom:199.706667pt;}
.yfc{bottom:200.346667pt;}
.y3b{bottom:212.826667pt;}
.y5b{bottom:213.786667pt;}
.ycf{bottom:213.946667pt;}
.ye2{bottom:215.066667pt;}
.y95{bottom:216.346667pt;}
.yfb{bottom:217.466667pt;}
.y5a{bottom:225.146667pt;}
.y3a{bottom:229.946667pt;}
.yce{bottom:231.066667pt;}
.ye1{bottom:232.346667pt;}
.y94{bottom:233.466667pt;}
.y59{bottom:234.426667pt;}
.yfa{bottom:234.746667pt;}
.y58{bottom:243.706667pt;}
.y39{bottom:247.226667pt;}
.ycd{bottom:248.346667pt;}
.ye0{bottom:249.466667pt;}
.y93{bottom:250.746667pt;}
.yf9{bottom:251.866667pt;}
.y57{bottom:259.226667pt;}
.y38{bottom:264.346667pt;}
.ycc{bottom:265.466667pt;}
.ydf{bottom:266.746667pt;}
.y92{bottom:267.866667pt;}
.yf8{bottom:269.146667pt;}
.y37{bottom:281.626667pt;}
.ycb{bottom:282.786667pt;}
.yde{bottom:283.906667pt;}
.y91{bottom:285.186667pt;}
.yf7{bottom:286.306667pt;}
.y36{bottom:298.786667pt;}
.yca{bottom:299.906667pt;}
.ydd{bottom:301.186667pt;}
.y90{bottom:302.306667pt;}
.yf6{bottom:303.426667pt;}
.y35{bottom:316.066667pt;}
.yc9{bottom:317.186667pt;}
.ydc{bottom:318.306667pt;}
.y8f{bottom:319.426667pt;}
.yf5{bottom:320.706667pt;}
.y34{bottom:333.186667pt;}
.yc8{bottom:334.306667pt;}
.yea{bottom:335.426667pt;}
.y8e{bottom:336.706667pt;}
.y33{bottom:350.466667pt;}
.yc7{bottom:351.426667pt;}
.ye9{bottom:352.706667pt;}
.yaa{bottom:353.826667pt;}
.y32{bottom:367.586667pt;}
.yc6{bottom:368.706667pt;}
.y8d{bottom:369.826667pt;}
.ya9{bottom:371.106667pt;}
.y31{bottom:384.866667pt;}
.yc5{bottom:385.826667pt;}
.y8c{bottom:387.106667pt;}
.ya8{bottom:388.226667pt;}
.y30{bottom:398.786667pt;}
.yc4{bottom:403.106667pt;}
.y8b{bottom:404.226667pt;}
.ya7{bottom:405.506667pt;}
.y56{bottom:407.746667pt;}
.y2f{bottom:417.506667pt;}
.yc3{bottom:420.226667pt;}
.y8a{bottom:421.506667pt;}
.ya6{bottom:422.626667pt;}
.y2e{bottom:425.346667pt;}
.y141{bottom:429.986667pt;}
.y2d{bottom:433.186667pt;}
.yc2{bottom:437.506667pt;}
.y89{bottom:438.626667pt;}
.ya5{bottom:439.906667pt;}
.y2c{bottom:440.866667pt;}
.y2b{bottom:448.706667pt;}
.y120{bottom:452.226667pt;}
.y140{bottom:453.186667pt;}
.yc1{bottom:454.626667pt;}
.y88{bottom:455.906667pt;}
.y2a{bottom:456.546667pt;}
.ya4{bottom:457.026667pt;}
.y29{bottom:464.386667pt;}
.y11f{bottom:468.546667pt;}
.y13f{bottom:469.346667pt;}
.yc0{bottom:471.906667pt;}
.y28{bottom:472.226667pt;}
.y87{bottom:473.026667pt;}
.yf4{bottom:474.306667pt;}
.y27{bottom:480.066667pt;}
.y11e{bottom:484.706667pt;}
.y13e{bottom:485.506667pt;}
.y26{bottom:487.906667pt;}
.ybf{bottom:489.026667pt;}
.y86{bottom:490.306667pt;}
.yf3{bottom:491.426667pt;}
.y48{bottom:491.746667pt;}
.y25{bottom:495.586667pt;}
.y11d{bottom:500.866667pt;}
.y13d{bottom:501.666667pt;}
.y24{bottom:505.533333pt;}
.ybe{bottom:506.333333pt;}
.y85{bottom:507.453333pt;}
.yf2{bottom:508.733333pt;}
.y11c{bottom:517.053333pt;}
.y13c{bottom:517.853333pt;}
.ybd{bottom:523.453333pt;}
.y1f{bottom:523.613333pt;}
.y84{bottom:524.733333pt;}
.yf1{bottom:525.853333pt;}
.y23{bottom:527.293333pt;}
.y11b{bottom:533.213333pt;}
.y13b{bottom:534.013333pt;}
.y1e{bottom:539.293333pt;}
.ybc{bottom:540.733333pt;}
.y83{bottom:541.853333pt;}
.yf0{bottom:543.133333pt;}
.y22{bottom:546.173333pt;}
.y11a{bottom:549.373333pt;}
.y13a{bottom:550.173333pt;}
.y1d{bottom:554.973333pt;}
.ybb{bottom:557.853333pt;}
.y82{bottom:559.133333pt;}
.yef{bottom:560.253333pt;}
.y21{bottom:564.893333pt;}
.y119{bottom:565.533333pt;}
.y139{bottom:566.493333pt;}
.y1c{bottom:570.493333pt;}
.ye8{bottom:573.853333pt;}
.yba{bottom:575.133333pt;}
.y81{bottom:576.253333pt;}
.yee{bottom:577.373333pt;}
.y118{bottom:581.693333pt;}
.y138{bottom:582.653333pt;}
.y20{bottom:583.613333pt;}
.y1b{bottom:586.173333pt;}
.ye7{bottom:591.133333pt;}
.ydb{bottom:592.253333pt;}
.y80{bottom:593.373333pt;}
.yed{bottom:594.653333pt;}
.y117{bottom:598.013333pt;}
.y137{bottom:598.813333pt;}
.y1a{bottom:601.853333pt;}
.yb9{bottom:608.253333pt;}
.yda{bottom:609.373333pt;}
.y7f{bottom:610.653333pt;}
.yec{bottom:611.773333pt;}
.y116{bottom:614.173333pt;}
.y136{bottom:614.973333pt;}
.y19{bottom:617.533333pt;}
.yb8{bottom:625.373333pt;}
.yd9{bottom:626.653333pt;}
.y7e{bottom:627.773333pt;}
.yeb{bottom:629.053333pt;}
.y115{bottom:630.333333pt;}
.y135{bottom:631.133333pt;}
.y18{bottom:633.053333pt;}
.yb7{bottom:642.653333pt;}
.yd8{bottom:643.773333pt;}
.y7d{bottom:645.053333pt;}
.y114{bottom:646.493333pt;}
.y134{bottom:647.293333pt;}
.y17{bottom:648.733333pt;}
.yb6{bottom:659.773333pt;}
.yd7{bottom:661.053333pt;}
.ya3{bottom:662.173333pt;}
.y113{bottom:662.653333pt;}
.y133{bottom:663.453333pt;}
.yb5{bottom:677.053333pt;}
.y16{bottom:677.533333pt;}
.y7c{bottom:678.173333pt;}
.y112{bottom:678.813333pt;}
.ya2{bottom:679.453333pt;}
.y132{bottom:679.613333pt;}
.yb4{bottom:694.173333pt;}
.y111{bottom:694.973333pt;}
.y7b{bottom:695.453333pt;}
.y131{bottom:695.773333pt;}
.y15{bottom:695.933333pt;}
.ya1{bottom:696.573333pt;}
.y110{bottom:711.133333pt;}
.yb3{bottom:711.453333pt;}
.y130{bottom:712.093333pt;}
.y7a{bottom:712.573333pt;}
.y14{bottom:726.813333pt;}
.y10f{bottom:727.293333pt;}
.y12f{bottom:728.293333pt;}
.yb2{bottom:728.613333pt;}
.y79{bottom:729.893333pt;}
.y10e{bottom:743.653333pt;}
.y12e{bottom:744.453333pt;}
.yb1{bottom:745.893333pt;}
.y78{bottom:747.013333pt;}
.y10d{bottom:759.813333pt;}
.y12d{bottom:760.613333pt;}
.y13{bottom:762.693333pt;}
.yb0{bottom:763.013333pt;}
.y77{bottom:764.293333pt;}
.y10c{bottom:775.973333pt;}
.y12c{bottom:776.773333pt;}
.yaf{bottom:780.293333pt;}
.y76{bottom:781.413333pt;}
.y12{bottom:789.253333pt;}
.y10b{bottom:792.133333pt;}
.y12b{bottom:792.933333pt;}
.yae{bottom:797.413333pt;}
.y75{bottom:798.693333pt;}
.y10a{bottom:808.293333pt;}
.y12a{bottom:809.093333pt;}
.yad{bottom:814.693333pt;}
.y74{bottom:815.813333pt;}
.y11{bottom:816.453333pt;}
.y109{bottom:824.453333pt;}
.y129{bottom:825.253333pt;}
.yac{bottom:831.813333pt;}
.y73{bottom:833.093333pt;}
.y108{bottom:840.613333pt;}
.y128{bottom:841.573333pt;}
.yab{bottom:849.093333pt;}
.ya0{bottom:850.213333pt;}
.y107{bottom:856.773333pt;}
.y127{bottom:857.733333pt;}
.y3e{bottom:864.933333pt;}
.y72{bottom:866.213333pt;}
.y9f{bottom:867.333333pt;}
.y106{bottom:873.093333pt;}
.y10{bottom:873.253333pt;}
.y126{bottom:873.893333pt;}
.y71{bottom:883.333333pt;}
.y9e{bottom:884.613333pt;}
.y105{bottom:889.253333pt;}
.y125{bottom:890.053333pt;}
.yf{bottom:892.453333pt;}
.y70{bottom:900.613333pt;}
.y104{bottom:905.413333pt;}
.y124{bottom:906.213333pt;}
.ye{bottom:911.813333pt;}
.y6f{bottom:917.733333pt;}
.y103{bottom:921.573333pt;}
.y123{bottom:922.373333pt;}
.yd{bottom:931.173333pt;}
.y6e{bottom:935.013333pt;}
.y122{bottom:938.533333pt;}
.yc{bottom:950.533333pt;}
.y6d{bottom:952.160000pt;}
.y121{bottom:954.720000pt;}
.yb{bottom:969.920000pt;}
.y6b{bottom:988.640000pt;}
.y2{bottom:988.800000pt;}
.y1{bottom:1002.720000pt;}
.h12{height:3.412500pt;}
.h13{height:3.982500pt;}
.h11{height:17.915625pt;}
.hb{height:18.926250pt;}
.h8{height:33.656250pt;}
.h1{height:33.796875pt;}
.h3{height:34.125000pt;}
.h9{height:37.401875pt;}
.hc{height:41.285000pt;}
.hd{height:41.457500pt;}
.he{height:41.860000pt;}
.ha{height:45.062500pt;}
.h16{height:49.336436pt;}
.h17{height:50.062500pt;}
.h4{height:54.598989pt;}
.h10{height:56.328125pt;}
.h6{height:63.988750pt;}
.h7{height:64.500000pt;}
.h2{height:65.781915pt;}
.h5{height:98.672872pt;}
.hf{height:104.186667pt;}
.h14{height:187.706667pt;}
.h15{height:271.866667pt;}
.h0{height:1056.000000pt;}
.w2{width:204.546667pt;}
.w3{width:467.733333pt;}
.w1{width:483.760000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:9.586667pt;}
.xc{left:58.404000pt;}
.x1{left:67.200000pt;}
.x10{left:85.312000pt;}
.x9{left:87.986667pt;}
.x7{left:109.306667pt;}
.x2{left:114.432000pt;}
.xa{left:123.706667pt;}
.x6{left:160.200000pt;}
.xd{left:195.062667pt;}
.x8{left:241.786667pt;}
.xe{left:291.906667pt;}
.x4{left:302.946667pt;}
.x5{left:431.613333pt;}
.x12{left:449.693333pt;}
.xf{left:458.146667pt;}
.x11{left:479.613333pt;}
.x3{left:748.933333pt;}
}




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