
    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_a1e3bfac46a18cde665f748d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.134277;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_e29d30f5e1d2ae8b364f6898.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_c841ce44961e7245fad80434.woff')format("woff");}.ff3{font-family:ff3;line-height:1.456055;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_4e898230000575434f46184a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105957;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_9e842d742807a9d8788398ed.woff')format("woff");}.ff5{font-family:ff5;line-height:1.134277;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);}
.v3{vertical-align:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.979400px;}
.ls8{letter-spacing:-4.761000px;}
.ls6{letter-spacing:-4.536000px;}
.ls18{letter-spacing:-4.275000px;}
.ls1f{letter-spacing:-2.175000px;}
.ls7{letter-spacing:-1.800000px;}
.ls24{letter-spacing:-1.638000px;}
.lsc{letter-spacing:-1.350000px;}
.lsf{letter-spacing:-0.966000px;}
.ls5{letter-spacing:-0.240000px;}
.ls19{letter-spacing:-0.069000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000300px;}
.ls14{letter-spacing:1.200600px;}
.ls4{letter-spacing:1.260000px;}
.lsa{letter-spacing:2.100000px;}
.ls11{letter-spacing:2.339100px;}
.lsb{letter-spacing:2.400000px;}
.ls1b{letter-spacing:2.553000px;}
.ls17{letter-spacing:2.967000px;}
.ls16{letter-spacing:3.036000px;}
.ls1{letter-spacing:5.161200px;}
.ls12{letter-spacing:5.188800px;}
.ls3{letter-spacing:6.000000px;}
.ls21{letter-spacing:6.300000px;}
.ls1c{letter-spacing:8.160156px;}
.ls22{letter-spacing:8.820000px;}
.ls1e{letter-spacing:9.867000px;}
.ls10{letter-spacing:470.257200px;}
.ls23{letter-spacing:470.369400px;}
.ls9{letter-spacing:470.392200px;}
.ls1d{letter-spacing:471.487200px;}
.ls15{letter-spacing:473.527200px;}
.ls0{letter-spacing:936.351000px;}
.ls13{letter-spacing:936.846000px;}
.ls1a{letter-spacing:939.471000px;}
.ls20{letter-spacing:943.521000px;}
.lsd{letter-spacing:945.501000px;}
.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;}
}
.ws15{word-spacing:-26.523000px;}
.ws0{word-spacing:-25.812000px;}
.ws8{word-spacing:-19.725000px;}
.wsa{word-spacing:-19.389000px;}
.ws13{word-spacing:-18.900000px;}
.ws16{word-spacing:-17.703000px;}
.ws2{word-spacing:-17.043000px;}
.wsf{word-spacing:-16.800000px;}
.ws19{word-spacing:-15.561000px;}
.wse{word-spacing:-15.174000px;}
.ws1a{word-spacing:-14.820000px;}
.ws18{word-spacing:-13.923000px;}
.ws9{word-spacing:-13.902000px;}
.ws10{word-spacing:-13.338000px;}
.ws1{word-spacing:-12.282000px;}
.wsb{word-spacing:-11.303787px;}
.ws17{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.wsc{word-spacing:-2.400000px;}
.ws5{word-spacing:-1.260000px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:0.069000px;}
.ws6{word-spacing:0.240000px;}
.ws11{word-spacing:0.414000px;}
.wsd{word-spacing:0.966000px;}
.ws7{word-spacing:1.800000px;}
.ws14{word-spacing:4.347000px;}
._f{margin-left:-18.663000px;}
._c{margin-left:-7.753200px;}
._9{margin-left:-6.618000px;}
._a{margin-left:-4.644000px;}
._10{margin-left:-3.604200px;}
._8{margin-left:-2.574000px;}
._1{margin-left:-1.494000px;}
._2{width:1.122000px;}
._3{width:2.379000px;}
._b{width:3.639000px;}
._4{width:5.553000px;}
._6{width:6.612000px;}
._5{width:8.136000px;}
._7{width:9.234000px;}
._e{width:10.665000px;}
._11{width:11.676000px;}
._d{width:13.492200px;}
._16{width:15.042300px;}
._13{width:16.146000px;}
._15{width:18.370500px;}
._17{width:23.348700px;}
._14{width:27.704160px;}
._12{width:43.445160px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fsa{font-size:40.227000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y13f{bottom:106.274400px;}
.y6f{bottom:106.293300px;}
.y49{bottom:106.296300px;}
.y21{bottom:106.310100px;}
.yb7{bottom:109.294800px;}
.y6e{bottom:123.546300px;}
.y48{bottom:126.544800px;}
.y13e{bottom:126.906900px;}
.y20{bottom:126.941100px;}
.yb6{bottom:127.795200px;}
.y6d{bottom:143.794800px;}
.yb5{bottom:145.048200px;}
.y1f{bottom:147.572100px;}
.ydb{bottom:148.046700px;}
.y13d{bottom:156.044400px;}
.y6c{bottom:162.298200px;}
.yb4{bottom:165.296700px;}
.yda{bottom:166.550250px;}
.y1e{bottom:168.203100px;}
.y92{bottom:170.370600px;}
.y47{bottom:170.542950px;}
.yfd{bottom:170.617800px;}
.y13c{bottom:176.676900px;}
.y6b{bottom:182.546700px;}
.yd9{bottom:186.798750px;}
.y1d{bottom:188.834100px;}
.y46{bottom:190.880700px;}
.y91{bottom:191.294850px;}
.yfc{bottom:192.145800px;}
.y13b{bottom:205.814400px;}
.yb3{bottom:209.347650px;}
.y11f{bottom:209.352900px;}
.y1c{bottom:209.465100px;}
.y45{bottom:211.218450px;}
.y90{bottom:212.219100px;}
.yfb{bottom:213.673800px;}
.y13a{bottom:226.446900px;}
.y6a{bottom:226.504650px;}
.y11e{bottom:229.742400px;}
.y1b{bottom:230.096100px;}
.yb2{bottom:230.358150px;}
.yd8{bottom:230.950500px;}
.y44{bottom:231.556200px;}
.y8f{bottom:233.143350px;}
.yfa{bottom:235.201800px;}
.y69{bottom:246.997650px;}
.y11d{bottom:250.131900px;}
.y1a{bottom:250.727100px;}
.yd7{bottom:251.305500px;}
.yb1{bottom:251.368650px;}
.y43{bottom:251.893950px;}
.y8e{bottom:254.067600px;}
.y139{bottom:255.584400px;}
.yf9{bottom:256.729800px;}
.y159{bottom:266.653650px;}
.y68{bottom:267.490650px;}
.y11c{bottom:270.521400px;}
.y19{bottom:271.358100px;}
.yd6{bottom:271.660500px;}
.y42{bottom:272.231700px;}
.yb0{bottom:272.379150px;}
.y8d{bottom:274.991850px;}
.y138{bottom:276.216900px;}
.yf8{bottom:278.257800px;}
.y158{bottom:286.903650px;}
.y67{bottom:287.983650px;}
.y11b{bottom:290.910900px;}
.y18{bottom:291.989100px;}
.yd5{bottom:292.015500px;}
.y41{bottom:292.569450px;}
.yaf{bottom:293.389650px;}
.y8c{bottom:295.916100px;}
.yf7{bottom:299.785800px;}
.y137{bottom:305.354400px;}
.y157{bottom:307.153650px;}
.y66{bottom:308.476650px;}
.y11a{bottom:311.300400px;}
.yd4{bottom:312.370500px;}
.y17{bottom:312.620100px;}
.y40{bottom:312.907200px;}
.yae{bottom:314.400150px;}
.y8b{bottom:316.840350px;}
.yf6{bottom:321.313800px;}
.y136{bottom:325.986900px;}
.y156{bottom:327.403650px;}
.y65{bottom:328.969650px;}
.y119{bottom:331.689900px;}
.yd3{bottom:332.725500px;}
.y3f{bottom:333.244950px;}
.y16{bottom:333.251100px;}
.yad{bottom:335.410650px;}
.y8a{bottom:337.764600px;}
.yf5{bottom:342.841800px;}
.y64{bottom:349.462650px;}
.y118{bottom:352.079400px;}
.yd2{bottom:353.080500px;}
.y3e{bottom:353.582700px;}
.y15{bottom:353.882100px;}
.y135{bottom:355.124400px;}
.yac{bottom:356.421150px;}
.y89{bottom:358.688850px;}
.y155{bottom:360.403650px;}
.yf4{bottom:364.369800px;}
.y63{bottom:369.955650px;}
.y117{bottom:372.468900px;}
.yd1{bottom:373.435500px;}
.y3d{bottom:373.920450px;}
.y14{bottom:374.513100px;}
.y134{bottom:375.756900px;}
.yab{bottom:377.431650px;}
.y88{bottom:379.613100px;}
.yf3{bottom:386.029350px;}
.y62{bottom:390.448650px;}
.y116{bottom:392.963850px;}
.yd0{bottom:393.790500px;}
.y3c{bottom:394.258200px;}
.y13{bottom:395.144100px;}
.yaa{bottom:398.442150px;}
.y87{bottom:400.537350px;}
.y154{bottom:401.809350px;}
.y133{bottom:404.894400px;}
.yf2{bottom:407.557350px;}
.y61{bottom:410.941650px;}
.y115{bottom:413.353350px;}
.ycf{bottom:414.145500px;}
.y3b{bottom:414.595950px;}
.y12{bottom:415.775100px;}
.ya9{bottom:419.452650px;}
.y86{bottom:421.461600px;}
.y132{bottom:425.526900px;}
.yf1{bottom:429.085350px;}
.y153{bottom:430.568850px;}
.y60{bottom:431.434650px;}
.y114{bottom:433.742850px;}
.yce{bottom:434.500500px;}
.y3a{bottom:434.933700px;}
.y11{bottom:436.406100px;}
.ya8{bottom:440.463150px;}
.y85{bottom:442.385850px;}
.yf0{bottom:450.613350px;}
.y152{bottom:450.823350px;}
.y5f{bottom:451.927650px;}
.y113{bottom:454.132350px;}
.y131{bottom:454.664400px;}
.ycd{bottom:454.855500px;}
.y39{bottom:455.271450px;}
.y10{bottom:457.037100px;}
.ya7{bottom:461.473650px;}
.y84{bottom:463.310100px;}
.yef{bottom:472.141350px;}
.y5e{bottom:472.420650px;}
.y112{bottom:474.521850px;}
.ycc{bottom:475.210500px;}
.y130{bottom:475.296900px;}
.y38{bottom:475.609200px;}
.yf{bottom:477.668100px;}
.yd{bottom:477.669600px;}
.y151{bottom:479.582850px;}
.ya6{bottom:482.484150px;}
.y83{bottom:484.234350px;}
.y5d{bottom:492.913650px;}
.yee{bottom:493.669350px;}
.y111{bottom:494.911350px;}
.ycb{bottom:495.565500px;}
.y37{bottom:495.946950px;}
.ye{bottom:497.919600px;}
.y150{bottom:499.837350px;}
.ya5{bottom:503.494650px;}
.y12f{bottom:504.434400px;}
.y82{bottom:505.158600px;}
.y5c{bottom:513.406650px;}
.yed{bottom:515.197350px;}
.y110{bottom:515.300850px;}
.yca{bottom:515.920500px;}
.y36{bottom:516.284700px;}
.ya4{bottom:524.505150px;}
.y12e{bottom:525.066900px;}
.y81{bottom:526.082850px;}
.y14f{bottom:528.596850px;}
.y5b{bottom:533.847450px;}
.y10f{bottom:535.690350px;}
.yc9{bottom:536.275500px;}
.y35{bottom:536.622450px;}
.yec{bottom:536.725350px;}
.ya3{bottom:545.515650px;}
.y80{bottom:547.007100px;}
.y14e{bottom:548.851350px;}
.y12d{bottom:554.204400px;}
.y5a{bottom:554.340450px;}
.y10e{bottom:556.079850px;}
.yc8{bottom:556.630500px;}
.y34{bottom:556.960200px;}
.yeb{bottom:558.253350px;}
.ya2{bottom:566.526150px;}
.y7f{bottom:567.931350px;}
.y59{bottom:574.833450px;}
.y12c{bottom:574.836900px;}
.y10d{bottom:576.469350px;}
.yc7{bottom:576.985500px;}
.y33{bottom:577.297950px;}
.y14d{bottom:577.610850px;}
.yea{bottom:579.781350px;}
.yc{bottom:581.860050px;}
.ya1{bottom:587.536650px;}
.y7e{bottom:588.855600px;}
.y58{bottom:595.326450px;}
.y10c{bottom:596.858850px;}
.yc6{bottom:597.340500px;}
.y32{bottom:597.635700px;}
.y14c{bottom:597.865350px;}
.ye9{bottom:601.309350px;}
.yb{bottom:603.235050px;}
.y12b{bottom:603.974400px;}
.ya0{bottom:608.547150px;}
.y7d{bottom:609.779850px;}
.y57{bottom:615.819450px;}
.y10b{bottom:617.248350px;}
.yc5{bottom:617.695500px;}
.y31{bottom:617.973450px;}
.ye8{bottom:622.837350px;}
.ya{bottom:624.610050px;}
.y14b{bottom:626.624850px;}
.y9f{bottom:629.557650px;}
.y7c{bottom:630.704100px;}
.y56{bottom:636.312450px;}
.y10a{bottom:637.637850px;}
.yc4{bottom:638.050500px;}
.y30{bottom:638.311200px;}
.ye7{bottom:644.365350px;}
.y14a{bottom:646.879350px;}
.y9e{bottom:650.568150px;}
.y7b{bottom:651.628350px;}
.y55{bottom:656.805450px;}
.y109{bottom:658.027350px;}
.yc3{bottom:658.405500px;}
.y2f{bottom:658.648950px;}
.ye6{bottom:665.893350px;}
.y9d{bottom:671.578650px;}
.y7a{bottom:672.552600px;}
.y149{bottom:675.638850px;}
.y9{bottom:675.750150px;}
.y12a{bottom:675.760350px;}
.y54{bottom:677.298450px;}
.y108{bottom:678.416850px;}
.yc2{bottom:678.760500px;}
.y2e{bottom:678.986700px;}
.ye5{bottom:687.421350px;}
.y9c{bottom:692.589150px;}
.y79{bottom:693.476850px;}
.y148{bottom:695.893350px;}
.y129{bottom:696.391350px;}
.y53{bottom:697.791450px;}
.y107{bottom:698.806350px;}
.yc1{bottom:699.115500px;}
.y2d{bottom:699.324450px;}
.y8{bottom:707.637150px;}
.ye4{bottom:708.949350px;}
.y9b{bottom:713.599650px;}
.y78{bottom:714.401100px;}
.y147{bottom:716.147850px;}
.y128{bottom:717.022350px;}
.y52{bottom:718.284450px;}
.y106{bottom:719.195850px;}
.yc0{bottom:719.470500px;}
.y2c{bottom:719.662200px;}
.ye3{bottom:730.477350px;}
.y9a{bottom:734.610150px;}
.y77{bottom:735.325350px;}
.y127{bottom:737.653350px;}
.y51{bottom:738.777450px;}
.y7{bottom:739.518900px;}
.y105{bottom:739.585350px;}
.ybf{bottom:739.825500px;}
.y2b{bottom:739.999950px;}
.y146{bottom:744.907350px;}
.ye2{bottom:752.005350px;}
.y99{bottom:755.620650px;}
.y76{bottom:756.249600px;}
.y126{bottom:758.284350px;}
.y50{bottom:759.270450px;}
.y104{bottom:759.974850px;}
.ybe{bottom:760.216350px;}
.y2a{bottom:760.337700px;}
.y145{bottom:765.161850px;}
.ye1{bottom:773.533350px;}
.y98{bottom:776.638350px;}
.y75{bottom:777.173850px;}
.y125{bottom:778.915350px;}
.y4f{bottom:779.763450px;}
.y103{bottom:780.364350px;}
.ybd{bottom:780.571350px;}
.y29{bottom:780.675450px;}
.y144{bottom:793.921350px;}
.ye0{bottom:795.061350px;}
.y97{bottom:797.648850px;}
.y74{bottom:798.098100px;}
.y124{bottom:799.546350px;}
.y4e{bottom:800.236350px;}
.y102{bottom:800.753850px;}
.ybc{bottom:800.926350px;}
.y28{bottom:801.013200px;}
.y6{bottom:801.182250px;}
.y143{bottom:814.175850px;}
.ydf{bottom:816.589350px;}
.y96{bottom:818.659350px;}
.y73{bottom:819.022350px;}
.y123{bottom:820.177350px;}
.y4d{bottom:820.729350px;}
.y101{bottom:821.143350px;}
.ybb{bottom:821.281350px;}
.y27{bottom:821.350950px;}
.y5{bottom:831.062250px;}
.yde{bottom:838.117350px;}
.y95{bottom:839.669850px;}
.y72{bottom:839.928600px;}
.y122{bottom:840.808350px;}
.y4c{bottom:841.222350px;}
.y100{bottom:841.532850px;}
.yba{bottom:841.636350px;}
.y26{bottom:841.688700px;}
.y142{bottom:842.935350px;}
.y4{bottom:852.437250px;}
.ydd{bottom:859.645350px;}
.y94{bottom:860.680350px;}
.y71{bottom:860.852850px;}
.y121{bottom:861.439350px;}
.y4b{bottom:861.715350px;}
.yff{bottom:861.922350px;}
.yb9{bottom:861.991350px;}
.y25{bottom:862.026450px;}
.y141{bottom:863.189850px;}
.ydc{bottom:881.173350px;}
.y93{bottom:881.690850px;}
.y70{bottom:881.777100px;}
.y120{bottom:882.070350px;}
.y4a{bottom:882.208350px;}
.yfe{bottom:882.311850px;}
.y3{bottom:882.317250px;}
.yb8{bottom:882.346350px;}
.y24{bottom:882.363600px;}
.y140{bottom:883.444350px;}
.y23{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:948.189000px;}
.hd{height:34.872492px;}
.hb{height:41.648438px;}
.h11{height:42.228938px;}
.he{height:46.854492px;}
.h4{height:52.060547px;}
.h13{height:54.210938px;}
.h3{height:54.663574px;}
.h9{height:59.869629px;}
.hc{height:59.872029px;}
.h12{height:59.941629px;}
.h15{height:60.234375px;}
.h14{height:63.246094px;}
.h2{height:65.075684px;}
.ha{height:69.269531px;}
.h10{height:69.349931px;}
.h5{height:72.884766px;}
.h7{height:74.513672px;}
.h6{height:93.708984px;}
.h8{height:172.849866px;}
.hf{height:1020.472500px;}
.h0{height:1020.472503px;}
.h1{height:1020.750000px;}
.w2{width:722.835000px;}
.w0{width:722.835022px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:82.096650px;}
.x8{left:83.686650px;}
.x1{left:85.039350px;}
.xa{left:104.236950px;}
.x7{left:105.706350px;}
.x9{left:106.785300px;}
.x4{left:230.594700px;}
.x2{left:232.076250px;}
.x3{left:233.523450px;}
.x6{left:248.519100px;}
@media print{
.v3{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.092800pt;}
.ls8{letter-spacing:-4.232000pt;}
.ls6{letter-spacing:-4.032000pt;}
.ls18{letter-spacing:-3.800000pt;}
.ls1f{letter-spacing:-1.933333pt;}
.ls7{letter-spacing:-1.600000pt;}
.ls24{letter-spacing:-1.456000pt;}
.lsc{letter-spacing:-1.200000pt;}
.lsf{letter-spacing:-0.858667pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls19{letter-spacing:-0.061333pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000267pt;}
.ls14{letter-spacing:1.067200pt;}
.ls4{letter-spacing:1.120000pt;}
.lsa{letter-spacing:1.866667pt;}
.ls11{letter-spacing:2.079200pt;}
.lsb{letter-spacing:2.133333pt;}
.ls1b{letter-spacing:2.269333pt;}
.ls17{letter-spacing:2.637333pt;}
.ls16{letter-spacing:2.698667pt;}
.ls1{letter-spacing:4.587733pt;}
.ls12{letter-spacing:4.612267pt;}
.ls3{letter-spacing:5.333333pt;}
.ls21{letter-spacing:5.600000pt;}
.ls1c{letter-spacing:7.253472pt;}
.ls22{letter-spacing:7.840000pt;}
.ls1e{letter-spacing:8.770667pt;}
.ls10{letter-spacing:418.006400pt;}
.ls23{letter-spacing:418.106133pt;}
.ls9{letter-spacing:418.126400pt;}
.ls1d{letter-spacing:419.099733pt;}
.ls15{letter-spacing:420.913067pt;}
.ls0{letter-spacing:832.312000pt;}
.ls13{letter-spacing:832.752000pt;}
.ls1a{letter-spacing:835.085333pt;}
.ls20{letter-spacing:838.685333pt;}
.lsd{letter-spacing:840.445333pt;}
.ws15{word-spacing:-23.576000pt;}
.ws0{word-spacing:-22.944000pt;}
.ws8{word-spacing:-17.533333pt;}
.wsa{word-spacing:-17.234667pt;}
.ws13{word-spacing:-16.800000pt;}
.ws16{word-spacing:-15.736000pt;}
.ws2{word-spacing:-15.149333pt;}
.wsf{word-spacing:-14.933333pt;}
.ws19{word-spacing:-13.832000pt;}
.wse{word-spacing:-13.488000pt;}
.ws1a{word-spacing:-13.173333pt;}
.ws18{word-spacing:-12.376000pt;}
.ws9{word-spacing:-12.357333pt;}
.ws10{word-spacing:-11.856000pt;}
.ws1{word-spacing:-10.917333pt;}
.wsb{word-spacing:-10.047811pt;}
.ws17{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.wsc{word-spacing:-2.133333pt;}
.ws5{word-spacing:-1.120000pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:0.061333pt;}
.ws6{word-spacing:0.213333pt;}
.ws11{word-spacing:0.368000pt;}
.wsd{word-spacing:0.858667pt;}
.ws7{word-spacing:1.600000pt;}
.ws14{word-spacing:3.864000pt;}
._f{margin-left:-16.589333pt;}
._c{margin-left:-6.891733pt;}
._9{margin-left:-5.882667pt;}
._a{margin-left:-4.128000pt;}
._10{margin-left:-3.203733pt;}
._8{margin-left:-2.288000pt;}
._1{margin-left:-1.328000pt;}
._2{width:0.997333pt;}
._3{width:2.114667pt;}
._b{width:3.234667pt;}
._4{width:4.936000pt;}
._6{width:5.877333pt;}
._5{width:7.232000pt;}
._7{width:8.208000pt;}
._e{width:9.480000pt;}
._11{width:10.378667pt;}
._d{width:11.993067pt;}
._16{width:13.370933pt;}
._13{width:14.352000pt;}
._15{width:16.329333pt;}
._17{width:20.754400pt;}
._14{width:24.625920pt;}
._12{width:38.617920pt;}
._0{width:514.133333pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:35.757333pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y13f{bottom:94.466133pt;}
.y6f{bottom:94.482933pt;}
.y49{bottom:94.485600pt;}
.y21{bottom:94.497867pt;}
.yb7{bottom:97.150933pt;}
.y6e{bottom:109.818933pt;}
.y48{bottom:112.484267pt;}
.y13e{bottom:112.806133pt;}
.y20{bottom:112.836533pt;}
.yb6{bottom:113.595733pt;}
.y6d{bottom:127.817600pt;}
.yb5{bottom:128.931733pt;}
.y1f{bottom:131.175200pt;}
.ydb{bottom:131.597067pt;}
.y13d{bottom:138.706133pt;}
.y6c{bottom:144.265067pt;}
.yb4{bottom:146.930400pt;}
.yda{bottom:148.044667pt;}
.y1e{bottom:149.513867pt;}
.y92{bottom:151.440533pt;}
.y47{bottom:151.593733pt;}
.yfd{bottom:151.660267pt;}
.y13c{bottom:157.046133pt;}
.y6b{bottom:162.263733pt;}
.yd9{bottom:166.043333pt;}
.y1d{bottom:167.852533pt;}
.y46{bottom:169.671733pt;}
.y91{bottom:170.039867pt;}
.yfc{bottom:170.796267pt;}
.y13b{bottom:182.946133pt;}
.yb3{bottom:186.086800pt;}
.y11f{bottom:186.091467pt;}
.y1c{bottom:186.191200pt;}
.y45{bottom:187.749733pt;}
.y90{bottom:188.639200pt;}
.yfb{bottom:189.932267pt;}
.y13a{bottom:201.286133pt;}
.y6a{bottom:201.337467pt;}
.y11e{bottom:204.215467pt;}
.y1b{bottom:204.529867pt;}
.yb2{bottom:204.762800pt;}
.yd8{bottom:205.289333pt;}
.y44{bottom:205.827733pt;}
.y8f{bottom:207.238533pt;}
.yfa{bottom:209.068267pt;}
.y69{bottom:219.553467pt;}
.y11d{bottom:222.339467pt;}
.y1a{bottom:222.868533pt;}
.yd7{bottom:223.382667pt;}
.yb1{bottom:223.438800pt;}
.y43{bottom:223.905733pt;}
.y8e{bottom:225.837867pt;}
.y139{bottom:227.186133pt;}
.yf9{bottom:228.204267pt;}
.y159{bottom:237.025467pt;}
.y68{bottom:237.769467pt;}
.y11c{bottom:240.463467pt;}
.y19{bottom:241.207200pt;}
.yd6{bottom:241.476000pt;}
.y42{bottom:241.983733pt;}
.yb0{bottom:242.114800pt;}
.y8d{bottom:244.437200pt;}
.y138{bottom:245.526133pt;}
.yf8{bottom:247.340267pt;}
.y158{bottom:255.025467pt;}
.y67{bottom:255.985467pt;}
.y11b{bottom:258.587467pt;}
.y18{bottom:259.545867pt;}
.yd5{bottom:259.569333pt;}
.y41{bottom:260.061733pt;}
.yaf{bottom:260.790800pt;}
.y8c{bottom:263.036533pt;}
.yf7{bottom:266.476267pt;}
.y137{bottom:271.426133pt;}
.y157{bottom:273.025467pt;}
.y66{bottom:274.201467pt;}
.y11a{bottom:276.711467pt;}
.yd4{bottom:277.662667pt;}
.y17{bottom:277.884533pt;}
.y40{bottom:278.139733pt;}
.yae{bottom:279.466800pt;}
.y8b{bottom:281.635867pt;}
.yf6{bottom:285.612267pt;}
.y136{bottom:289.766133pt;}
.y156{bottom:291.025467pt;}
.y65{bottom:292.417467pt;}
.y119{bottom:294.835467pt;}
.yd3{bottom:295.756000pt;}
.y3f{bottom:296.217733pt;}
.y16{bottom:296.223200pt;}
.yad{bottom:298.142800pt;}
.y8a{bottom:300.235200pt;}
.yf5{bottom:304.748267pt;}
.y64{bottom:310.633467pt;}
.y118{bottom:312.959467pt;}
.yd2{bottom:313.849333pt;}
.y3e{bottom:314.295733pt;}
.y15{bottom:314.561867pt;}
.y135{bottom:315.666133pt;}
.yac{bottom:316.818800pt;}
.y89{bottom:318.834533pt;}
.y155{bottom:320.358800pt;}
.yf4{bottom:323.884267pt;}
.y63{bottom:328.849467pt;}
.y117{bottom:331.083467pt;}
.yd1{bottom:331.942667pt;}
.y3d{bottom:332.373733pt;}
.y14{bottom:332.900533pt;}
.y134{bottom:334.006133pt;}
.yab{bottom:335.494800pt;}
.y88{bottom:337.433867pt;}
.yf3{bottom:343.137200pt;}
.y62{bottom:347.065467pt;}
.y116{bottom:349.301200pt;}
.yd0{bottom:350.036000pt;}
.y3c{bottom:350.451733pt;}
.y13{bottom:351.239200pt;}
.yaa{bottom:354.170800pt;}
.y87{bottom:356.033200pt;}
.y154{bottom:357.163867pt;}
.y133{bottom:359.906133pt;}
.yf2{bottom:362.273200pt;}
.y61{bottom:365.281467pt;}
.y115{bottom:367.425200pt;}
.ycf{bottom:368.129333pt;}
.y3b{bottom:368.529733pt;}
.y12{bottom:369.577867pt;}
.ya9{bottom:372.846800pt;}
.y86{bottom:374.632533pt;}
.y132{bottom:378.246133pt;}
.yf1{bottom:381.409200pt;}
.y153{bottom:382.727867pt;}
.y60{bottom:383.497467pt;}
.y114{bottom:385.549200pt;}
.yce{bottom:386.222667pt;}
.y3a{bottom:386.607733pt;}
.y11{bottom:387.916533pt;}
.ya8{bottom:391.522800pt;}
.y85{bottom:393.231867pt;}
.yf0{bottom:400.545200pt;}
.y152{bottom:400.731867pt;}
.y5f{bottom:401.713467pt;}
.y113{bottom:403.673200pt;}
.y131{bottom:404.146133pt;}
.ycd{bottom:404.316000pt;}
.y39{bottom:404.685733pt;}
.y10{bottom:406.255200pt;}
.ya7{bottom:410.198800pt;}
.y84{bottom:411.831200pt;}
.yef{bottom:419.681200pt;}
.y5e{bottom:419.929467pt;}
.y112{bottom:421.797200pt;}
.ycc{bottom:422.409333pt;}
.y130{bottom:422.486133pt;}
.y38{bottom:422.763733pt;}
.yf{bottom:424.593867pt;}
.yd{bottom:424.595200pt;}
.y151{bottom:426.295867pt;}
.ya6{bottom:428.874800pt;}
.y83{bottom:430.430533pt;}
.y5d{bottom:438.145467pt;}
.yee{bottom:438.817200pt;}
.y111{bottom:439.921200pt;}
.ycb{bottom:440.502667pt;}
.y37{bottom:440.841733pt;}
.ye{bottom:442.595200pt;}
.y150{bottom:444.299867pt;}
.ya5{bottom:447.550800pt;}
.y12f{bottom:448.386133pt;}
.y82{bottom:449.029867pt;}
.y5c{bottom:456.361467pt;}
.yed{bottom:457.953200pt;}
.y110{bottom:458.045200pt;}
.yca{bottom:458.596000pt;}
.y36{bottom:458.919733pt;}
.ya4{bottom:466.226800pt;}
.y12e{bottom:466.726133pt;}
.y81{bottom:467.629200pt;}
.y14f{bottom:469.863867pt;}
.y5b{bottom:474.531067pt;}
.y10f{bottom:476.169200pt;}
.yc9{bottom:476.689333pt;}
.y35{bottom:476.997733pt;}
.yec{bottom:477.089200pt;}
.ya3{bottom:484.902800pt;}
.y80{bottom:486.228533pt;}
.y14e{bottom:487.867867pt;}
.y12d{bottom:492.626133pt;}
.y5a{bottom:492.747067pt;}
.y10e{bottom:494.293200pt;}
.yc8{bottom:494.782667pt;}
.y34{bottom:495.075733pt;}
.yeb{bottom:496.225200pt;}
.ya2{bottom:503.578800pt;}
.y7f{bottom:504.827867pt;}
.y59{bottom:510.963067pt;}
.y12c{bottom:510.966133pt;}
.y10d{bottom:512.417200pt;}
.yc7{bottom:512.876000pt;}
.y33{bottom:513.153733pt;}
.y14d{bottom:513.431867pt;}
.yea{bottom:515.361200pt;}
.yc{bottom:517.208933pt;}
.ya1{bottom:522.254800pt;}
.y7e{bottom:523.427200pt;}
.y58{bottom:529.179067pt;}
.y10c{bottom:530.541200pt;}
.yc6{bottom:530.969333pt;}
.y32{bottom:531.231733pt;}
.y14c{bottom:531.435867pt;}
.ye9{bottom:534.497200pt;}
.yb{bottom:536.208933pt;}
.y12b{bottom:536.866133pt;}
.ya0{bottom:540.930800pt;}
.y7d{bottom:542.026533pt;}
.y57{bottom:547.395067pt;}
.y10b{bottom:548.665200pt;}
.yc5{bottom:549.062667pt;}
.y31{bottom:549.309733pt;}
.ye8{bottom:553.633200pt;}
.ya{bottom:555.208933pt;}
.y14b{bottom:556.999867pt;}
.y9f{bottom:559.606800pt;}
.y7c{bottom:560.625867pt;}
.y56{bottom:565.611067pt;}
.y10a{bottom:566.789200pt;}
.yc4{bottom:567.156000pt;}
.y30{bottom:567.387733pt;}
.ye7{bottom:572.769200pt;}
.y14a{bottom:575.003867pt;}
.y9e{bottom:578.282800pt;}
.y7b{bottom:579.225200pt;}
.y55{bottom:583.827067pt;}
.y109{bottom:584.913200pt;}
.yc3{bottom:585.249333pt;}
.y2f{bottom:585.465733pt;}
.ye6{bottom:591.905200pt;}
.y9d{bottom:596.958800pt;}
.y7a{bottom:597.824533pt;}
.y149{bottom:600.567867pt;}
.y9{bottom:600.666800pt;}
.y12a{bottom:600.675867pt;}
.y54{bottom:602.043067pt;}
.y108{bottom:603.037200pt;}
.yc2{bottom:603.342667pt;}
.y2e{bottom:603.543733pt;}
.ye5{bottom:611.041200pt;}
.y9c{bottom:615.634800pt;}
.y79{bottom:616.423867pt;}
.y148{bottom:618.571867pt;}
.y129{bottom:619.014533pt;}
.y53{bottom:620.259067pt;}
.y107{bottom:621.161200pt;}
.yc1{bottom:621.436000pt;}
.y2d{bottom:621.621733pt;}
.y8{bottom:629.010800pt;}
.ye4{bottom:630.177200pt;}
.y9b{bottom:634.310800pt;}
.y78{bottom:635.023200pt;}
.y147{bottom:636.575867pt;}
.y128{bottom:637.353200pt;}
.y52{bottom:638.475067pt;}
.y106{bottom:639.285200pt;}
.yc0{bottom:639.529333pt;}
.y2c{bottom:639.699733pt;}
.ye3{bottom:649.313200pt;}
.y9a{bottom:652.986800pt;}
.y77{bottom:653.622533pt;}
.y127{bottom:655.691867pt;}
.y51{bottom:656.691067pt;}
.y7{bottom:657.350133pt;}
.y105{bottom:657.409200pt;}
.ybf{bottom:657.622667pt;}
.y2b{bottom:657.777733pt;}
.y146{bottom:662.139867pt;}
.ye2{bottom:668.449200pt;}
.y99{bottom:671.662800pt;}
.y76{bottom:672.221867pt;}
.y126{bottom:674.030533pt;}
.y50{bottom:674.907067pt;}
.y104{bottom:675.533200pt;}
.ybe{bottom:675.747867pt;}
.y2a{bottom:675.855733pt;}
.y145{bottom:680.143867pt;}
.ye1{bottom:687.585200pt;}
.y98{bottom:690.345200pt;}
.y75{bottom:690.821200pt;}
.y125{bottom:692.369200pt;}
.y4f{bottom:693.123067pt;}
.y103{bottom:693.657200pt;}
.ybd{bottom:693.841200pt;}
.y29{bottom:693.933733pt;}
.y144{bottom:705.707867pt;}
.ye0{bottom:706.721200pt;}
.y97{bottom:709.021200pt;}
.y74{bottom:709.420533pt;}
.y124{bottom:710.707867pt;}
.y4e{bottom:711.321200pt;}
.y102{bottom:711.781200pt;}
.ybc{bottom:711.934533pt;}
.y28{bottom:712.011733pt;}
.y6{bottom:712.162000pt;}
.y143{bottom:723.711867pt;}
.ydf{bottom:725.857200pt;}
.y96{bottom:727.697200pt;}
.y73{bottom:728.019867pt;}
.y123{bottom:729.046533pt;}
.y4d{bottom:729.537200pt;}
.y101{bottom:729.905200pt;}
.ybb{bottom:730.027867pt;}
.y27{bottom:730.089733pt;}
.y5{bottom:738.722000pt;}
.yde{bottom:744.993200pt;}
.y95{bottom:746.373200pt;}
.y72{bottom:746.603200pt;}
.y122{bottom:747.385200pt;}
.y4c{bottom:747.753200pt;}
.y100{bottom:748.029200pt;}
.yba{bottom:748.121200pt;}
.y26{bottom:748.167733pt;}
.y142{bottom:749.275867pt;}
.y4{bottom:757.722000pt;}
.ydd{bottom:764.129200pt;}
.y94{bottom:765.049200pt;}
.y71{bottom:765.202533pt;}
.y121{bottom:765.723867pt;}
.y4b{bottom:765.969200pt;}
.yff{bottom:766.153200pt;}
.yb9{bottom:766.214533pt;}
.y25{bottom:766.245733pt;}
.y141{bottom:767.279867pt;}
.ydc{bottom:783.265200pt;}
.y93{bottom:783.725200pt;}
.y70{bottom:783.801867pt;}
.y120{bottom:784.062533pt;}
.y4a{bottom:784.185200pt;}
.yfe{bottom:784.277200pt;}
.y3{bottom:784.282000pt;}
.yb8{bottom:784.307867pt;}
.y24{bottom:784.323200pt;}
.y140{bottom:785.283867pt;}
.y23{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:842.834667pt;}
.hd{height:30.997771pt;}
.hb{height:37.020833pt;}
.h11{height:37.536833pt;}
.he{height:41.648438pt;}
.h4{height:46.276042pt;}
.h13{height:48.187500pt;}
.h3{height:48.589844pt;}
.h9{height:53.217448pt;}
.hc{height:53.219581pt;}
.h12{height:53.281448pt;}
.h15{height:53.541667pt;}
.h14{height:56.218750pt;}
.h2{height:57.845052pt;}
.ha{height:61.572917pt;}
.h10{height:61.644383pt;}
.h5{height:64.786458pt;}
.h7{height:66.234375pt;}
.h6{height:83.296875pt;}
.h8{height:153.644325pt;}
.hf{height:907.086667pt;}
.h0{height:907.086669pt;}
.h1{height:907.333333pt;}
.w2{width:642.520000pt;}
.w0{width:642.520020pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:72.974800pt;}
.x8{left:74.388133pt;}
.x1{left:75.590533pt;}
.xa{left:92.655067pt;}
.x7{left:93.961200pt;}
.x9{left:94.920267pt;}
.x4{left:204.973067pt;}
.x2{left:206.290000pt;}
.x3{left:207.576400pt;}
.x6{left:220.905867pt;}
}




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