
    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_be38496406892eb28a55bd14.woff')format("woff");}.ff1{font-family:ff1;line-height:1.138000;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_9641609ef86ccb052d4c41dc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_9ff2b5419043967db18f4711.woff')format("woff");}.ff3{font-family:ff3;line-height:0.973000;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_be38496406892eb28a55bd14.woff')format("woff");}.ff4{font-family:ff4;line-height:1.138000;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_6bb500bdaeed262f5a33e267.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000048;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_0c9661f5829574d3f4994c0e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.122000;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_90838f36e96374bb6dbc874b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.106000px;}
.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;}
}
.ws25{word-spacing:-17.400000px;}
.ws61{word-spacing:-15.840000px;}
.wsf{word-spacing:-13.500000px;}
.ws42{word-spacing:-4.454400px;}
.ws43{word-spacing:-4.176000px;}
.ws15{word-spacing:-3.758400px;}
.ws53{word-spacing:-3.410400px;}
.ws5e{word-spacing:-3.132000px;}
.ws39{word-spacing:-2.644800px;}
.ws56{word-spacing:-2.505600px;}
.ws23{word-spacing:-2.436000px;}
.ws6{word-spacing:-2.376000px;}
.ws4a{word-spacing:-2.296800px;}
.ws21{word-spacing:-2.157600px;}
.ws19{word-spacing:-1.879200px;}
.ws36{word-spacing:-1.670400px;}
.ws30{word-spacing:-1.531200px;}
.ws5{word-spacing:-1.512000px;}
.ws28{word-spacing:-1.252800px;}
.ws29{word-spacing:-1.183200px;}
.ws54{word-spacing:-1.113600px;}
.ws2b{word-spacing:-0.974400px;}
.ws3{word-spacing:-0.972000px;}
.ws2a{word-spacing:-0.904800px;}
.ws48{word-spacing:-0.765600px;}
.ws3b{word-spacing:-0.696000px;}
.ws57{word-spacing:-0.556800px;}
.ws2c{word-spacing:-0.487200px;}
.ws27{word-spacing:-0.208800px;}
.ws3f{word-spacing:-0.139200px;}
.ws1a{word-spacing:-0.069600px;}
.ws0{word-spacing:0.000000px;}
.ws4f{word-spacing:0.139200px;}
.ws55{word-spacing:0.417600px;}
.ws17{word-spacing:0.556800px;}
.ws16{word-spacing:0.904800px;}
.ws32{word-spacing:1.113600px;}
.ws26{word-spacing:1.183200px;}
.ws1b{word-spacing:1.322400px;}
.ws5f{word-spacing:1.392000px;}
.ws3e{word-spacing:1.461600px;}
.ws13{word-spacing:1.531200px;}
.ws11{word-spacing:1.872000px;}
.ws12{word-spacing:1.879200px;}
.ws34{word-spacing:1.948800px;}
.wsa{word-spacing:1.998000px;}
.ws60{word-spacing:2.157600px;}
.wsb{word-spacing:2.214000px;}
.ws44{word-spacing:2.227200px;}
.ws4d{word-spacing:2.296800px;}
.ws10{word-spacing:2.304000px;}
.ws4e{word-spacing:2.366400px;}
.ws5a{word-spacing:2.436000px;}
.ws24{word-spacing:2.784000px;}
.ws52{word-spacing:2.853600px;}
.ws9{word-spacing:2.916000px;}
.ws45{word-spacing:3.201600px;}
.ws46{word-spacing:3.271200px;}
.ws4c{word-spacing:3.480000px;}
.ws2e{word-spacing:3.688800px;}
.ws31{word-spacing:3.897600px;}
.ws8{word-spacing:3.996000px;}
.ws5b{word-spacing:4.176000px;}
.ws18{word-spacing:4.454400px;}
.ws4b{word-spacing:4.593600px;}
.ws49{word-spacing:4.802400px;}
.ws51{word-spacing:4.872000px;}
.ws2d{word-spacing:4.941600px;}
.ws35{word-spacing:5.011200px;}
.ws38{word-spacing:5.080800px;}
.ws1e{word-spacing:5.359200px;}
.ws41{word-spacing:5.428800px;}
.ws50{word-spacing:5.498400px;}
.wsc{word-spacing:5.616000px;}
.ws1d{word-spacing:5.637600px;}
.ws5d{word-spacing:5.776800px;}
.ws1{word-spacing:5.886000px;}
.ws3c{word-spacing:6.403200px;}
.ws7{word-spacing:6.426000px;}
.ws14{word-spacing:6.751200px;}
.ws59{word-spacing:6.820800px;}
.ws1f{word-spacing:6.890400px;}
.wse{word-spacing:6.966000px;}
.ws2{word-spacing:7.020000px;}
.ws20{word-spacing:7.099200px;}
.ws3d{word-spacing:7.308000px;}
.ws5c{word-spacing:7.725600px;}
.ws47{word-spacing:7.795200px;}
.ws40{word-spacing:7.934400px;}
.ws33{word-spacing:8.073600px;}
.ws22{word-spacing:8.212800px;}
.ws2f{word-spacing:8.352000px;}
.ws37{word-spacing:9.326400px;}
.ws4{word-spacing:9.990000px;}
.ws58{word-spacing:10.161600px;}
.ws3a{word-spacing:10.788000px;}
.wsd{word-spacing:12.744000px;}
.ws1c{word-spacing:13.154400px;}
._9{margin-left:-130.560000px;}
._8{margin-left:-99.360000px;}
._5{margin-left:-8.315520px;}
._0{margin-left:-7.200000px;}
._2{margin-left:-6.002400px;}
._6{margin-left:-4.593600px;}
._3{margin-left:-3.528000px;}
._1{margin-left:-1.742400px;}
._4{width:1.200600px;}
._7{width:3.872160px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:transparent;}
.fc0{color:rgb(52,80,98);}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs7{font-size:69.600000px;}
.fs6{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fs1{font-size:144.000000px;}
.fs0{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:45.251100px;}
.y106{bottom:58.854300px;}
.ye8{bottom:59.884800px;}
.y30{bottom:60.463800px;}
.y12{bottom:62.763150px;}
.y105{bottom:75.054300px;}
.y112{bottom:75.432300px;}
.ye7{bottom:76.084800px;}
.yf4{bottom:76.462800px;}
.y2f{bottom:76.663800px;}
.y3c{bottom:77.041800px;}
.y11{bottom:78.963150px;}
.y1e{bottom:79.341150px;}
.yd1{bottom:84.330750px;}
.y93{bottom:84.855600px;}
.yab{bottom:85.039350px;}
.yd3{bottom:85.039500px;}
.yd6{bottom:85.039650px;}
.y73{bottom:85.046400px;}
.y42{bottom:87.133050px;}
.ycd{bottom:88.857600px;}
.y104{bottom:91.254300px;}
.y111{bottom:91.632300px;}
.ye6{bottom:92.284800px;}
.yf3{bottom:92.662800px;}
.y2e{bottom:92.863800px;}
.yf9{bottom:92.958300px;}
.y3b{bottom:93.241800px;}
.yf6{bottom:93.980250px;}
.ydb{bottom:93.988800px;}
.y23{bottom:94.567800px;}
.yd8{bottom:95.010750px;}
.y10{bottom:95.163150px;}
.y1d{bottom:95.541150px;}
.y20{bottom:95.589750px;}
.y5{bottom:96.867150px;}
.y2{bottom:97.889100px;}
.yce{bottom:102.845550px;}
.yd0{bottom:104.130750px;}
.ycf{bottom:104.839350px;}
.yd2{bottom:104.839500px;}
.yd5{bottom:104.839650px;}
.y72{bottom:105.926400px;}
.yaa{bottom:105.938700px;}
.yd4{bottom:106.039350px;}
.y92{bottom:106.675200px;}
.y103{bottom:107.454300px;}
.y110{bottom:107.832300px;}
.ye5{bottom:108.484800px;}
.yf2{bottom:108.862800px;}
.y2d{bottom:109.063800px;}
.y3a{bottom:109.441800px;}
.ycc{bottom:109.737600px;}
.yf{bottom:111.363150px;}
.y1c{bottom:111.741150px;}
.yf8{bottom:118.158300px;}
.yda{bottom:119.188800px;}
.y22{bottom:119.767800px;}
.y4{bottom:122.067150px;}
.y102{bottom:123.654300px;}
.y10f{bottom:124.032300px;}
.ye4{bottom:124.684800px;}
.yf1{bottom:125.062800px;}
.y2c{bottom:125.263800px;}
.y39{bottom:125.641800px;}
.y40{bottom:126.277500px;}
.y71{bottom:126.806400px;}
.ya9{bottom:126.818700px;}
.ye{bottom:127.563150px;}
.y1b{bottom:127.941150px;}
.y91{bottom:128.494800px;}
.ycb{bottom:130.617600px;}
.y10e{bottom:140.232300px;}
.yf0{bottom:141.262800px;}
.y38{bottom:141.841800px;}
.y3f{bottom:142.774500px;}
.y1a{bottom:144.141150px;}
.y70{bottom:147.686400px;}
.ya8{bottom:147.698700px;}
.y101{bottom:148.359300px;}
.ye3{bottom:149.389800px;}
.y2b{bottom:149.968800px;}
.y90{bottom:150.314400px;}
.yca{bottom:151.497600px;}
.yd{bottom:152.268150px;}
.y10d{bottom:156.432300px;}
.yef{bottom:157.462800px;}
.y37{bottom:158.041800px;}
.y3e{bottom:159.271500px;}
.yf5{bottom:159.664800px;}
.y19{bottom:160.341150px;}
.yd7{bottom:160.695300px;}
.y1f{bottom:161.274300px;}
.y1{bottom:163.573650px;}
.y100{bottom:164.559300px;}
.ye2{bottom:165.589800px;}
.y2a{bottom:166.168800px;}
.yc{bottom:168.468150px;}
.y6f{bottom:168.566400px;}
.ya7{bottom:168.578700px;}
.y8f{bottom:172.134000px;}
.yc9{bottom:172.377600px;}
.y10c{bottom:172.632300px;}
.yee{bottom:173.662800px;}
.y36{bottom:174.241800px;}
.y18{bottom:176.541150px;}
.yff{bottom:180.759300px;}
.ye1{bottom:181.789800px;}
.y29{bottom:182.368800px;}
.yb{bottom:184.668150px;}
.y10b{bottom:188.832300px;}
.y6e{bottom:189.446400px;}
.ya6{bottom:189.458700px;}
.yed{bottom:189.862800px;}
.y35{bottom:190.441800px;}
.y17{bottom:192.741150px;}
.yc8{bottom:193.257600px;}
.yfe{bottom:196.959300px;}
.ye0{bottom:197.989800px;}
.y8e{bottom:198.199200px;}
.y28{bottom:198.568800px;}
.ya{bottom:200.868150px;}
.y6d{bottom:210.326400px;}
.ya5{bottom:210.338700px;}
.yfd{bottom:213.159300px;}
.yc7{bottom:214.137600px;}
.ydf{bottom:214.189800px;}
.y5a{bottom:214.761000px;}
.y27{bottom:214.768800px;}
.y9{bottom:217.068150px;}
.y8d{bottom:220.018800px;}
.y10a{bottom:221.232300px;}
.yec{bottom:222.262800px;}
.y34{bottom:222.841800px;}
.y16{bottom:225.141150px;}
.yfc{bottom:229.359300px;}
.yde{bottom:230.389800px;}
.y26{bottom:230.968800px;}
.y6c{bottom:231.206400px;}
.ya4{bottom:231.218700px;}
.y59{bottom:232.756500px;}
.y8{bottom:233.268150px;}
.y109{bottom:237.432300px;}
.yeb{bottom:238.462800px;}
.y33{bottom:239.041800px;}
.yc6{bottom:239.263200px;}
.y15{bottom:241.341150px;}
.y8c{bottom:241.838400px;}
.yfb{bottom:245.559300px;}
.ydd{bottom:246.589800px;}
.y25{bottom:247.168800px;}
.y7{bottom:249.468150px;}
.y58{bottom:250.752000px;}
.y6b{bottom:252.086400px;}
.ya3{bottom:252.098700px;}
.y108{bottom:253.632300px;}
.yea{bottom:254.662800px;}
.y32{bottom:255.241800px;}
.y14{bottom:257.541150px;}
.yc5{bottom:260.143200px;}
.yfa{bottom:261.759300px;}
.ydc{bottom:262.789800px;}
.y24{bottom:263.368800px;}
.y8b{bottom:263.658000px;}
.y6{bottom:265.668150px;}
.y57{bottom:268.747500px;}
.y107{bottom:269.832300px;}
.ye9{bottom:270.862800px;}
.y31{bottom:271.441800px;}
.y6a{bottom:272.966400px;}
.ya2{bottom:272.978700px;}
.y13{bottom:273.741150px;}
.yc4{bottom:281.023200px;}
.y8a{bottom:285.477600px;}
.yf7{bottom:287.607300px;}
.yd9{bottom:288.637800px;}
.y21{bottom:289.216800px;}
.y3{bottom:291.516150px;}
.y69{bottom:293.846400px;}
.ya1{bottom:293.858700px;}
.yc3{bottom:301.903200px;}
.y56{bottom:304.794000px;}
.y89{bottom:307.297200px;}
.ya0{bottom:314.738700px;}
.y68{bottom:318.972000px;}
.y55{bottom:322.870500px;}
.yc2{bottom:327.028800px;}
.y88{bottom:333.362400px;}
.y9f{bottom:335.618700px;}
.y67{bottom:339.852000px;}
.yc1{bottom:347.908800px;}
.y87{bottom:355.182000px;}
.y54{bottom:359.023500px;}
.y66{bottom:360.732000px;}
.y9e{bottom:360.744300px;}
.yc0{bottom:368.788800px;}
.y86{bottom:377.001600px;}
.y53{bottom:377.100000px;}
.y65{bottom:381.612000px;}
.y9d{bottom:381.624300px;}
.ybf{bottom:389.668800px;}
.y52{bottom:395.176500px;}
.y85{bottom:398.821200px;}
.y64{bottom:402.492000px;}
.y9c{bottom:402.504300px;}
.ybe{bottom:410.548800px;}
.y84{bottom:420.640800px;}
.y63{bottom:423.372000px;}
.y9b{bottom:423.384300px;}
.y51{bottom:429.453000px;}
.ybd{bottom:431.428800px;}
.y83{bottom:442.460400px;}
.y62{bottom:444.252000px;}
.y9a{bottom:444.264300px;}
.y50{bottom:445.653000px;}
.ybc{bottom:452.308800px;}
.y41{bottom:456.498000px;}
.y82{bottom:464.280000px;}
.y61{bottom:465.132000px;}
.y99{bottom:469.389900px;}
.ybb{bottom:473.188800px;}
.y4f{bottom:479.929500px;}
.y60{bottom:486.012000px;}
.y81{bottom:486.099600px;}
.y98{bottom:490.269900px;}
.y4e{bottom:498.006000px;}
.yba{bottom:498.314400px;}
.y5f{bottom:506.892000px;}
.y80{bottom:507.919200px;}
.y97{bottom:511.149900px;}
.y4d{bottom:516.082500px;}
.yb9{bottom:519.194400px;}
.y7f{bottom:529.738800px;}
.y96{bottom:532.029900px;}
.y4c{bottom:534.159000px;}
.yb8{bottom:540.074400px;}
.y7e{bottom:551.558400px;}
.y4b{bottom:552.235500px;}
.y95{bottom:557.155500px;}
.yb7{bottom:560.954400px;}
.y7d{bottom:577.623600px;}
.y94{bottom:578.035500px;}
.yb6{bottom:581.834400px;}
.y4a{bottom:586.512000px;}
.y7c{bottom:599.443200px;}
.yb5{bottom:602.714400px;}
.y49{bottom:604.588500px;}
.y7b{bottom:621.262800px;}
.y48{bottom:622.665000px;}
.yb4{bottom:623.594400px;}
.y5e{bottom:625.174500px;}
.y47{bottom:640.741500px;}
.y7a{bottom:643.082400px;}
.yb3{bottom:644.474400px;}
.y5d{bottom:649.179000px;}
.y46{bottom:658.818000px;}
.y79{bottom:664.902000px;}
.yb2{bottom:665.354400px;}
.yad{bottom:665.631000px;}
.y45{bottom:676.894500px;}
.y3d{bottom:679.335000px;}
.yb1{bottom:686.234400px;}
.y78{bottom:686.721600px;}
.y44{bottom:694.971000px;}
.y5c{bottom:705.435000px;}
.yb0{bottom:707.114400px;}
.y77{bottom:708.541200px;}
.y43{bottom:713.047500px;}
.yac{bottom:724.143000px;}
.yaf{bottom:727.994400px;}
.y76{bottom:730.360800px;}
.y75{bottom:752.180400px;}
.yae{bottom:753.120000px;}
.y74{bottom:774.000000px;}
.hb{height:46.062000px;}
.hc{height:46.176000px;}
.h6{height:46.926000px;}
.h10{height:47.190000px;}
.h4{height:52.140000px;}
.he{height:55.770000px;}
.h11{height:57.354000px;}
.hf{height:59.368800px;}
.h5{height:72.996000px;}
.hd{height:83.424000px;}
.h3{height:125.136000px;}
.h2{height:208.560000px;}
.h15{height:846.750000px;}
.h14{height:846.985800px;}
.h12{height:848.181300px;}
.h13{height:848.250000px;}
.h9{height:850.393500px;}
.ha{height:850.500000px;}
.h7{height:851.808300px;}
.h8{height:852.000000px;}
.h1{height:852.750000px;}
.h0{height:852.958650px;}
.w3{width:639.000000px;}
.w2{width:639.150000px;}
.w7{width:647.250000px;}
.w6{width:647.504100px;}
.w8{width:835.210500px;}
.w9{width:835.500000px;}
.w1{width:846.000000px;}
.w0{width:846.060000px;}
.w4{width:850.393500px;}
.w5{width:850.500000px;}
.xe{left:-2326.303500px;}
.xb{left:-1540.213500px;}
.x7{left:-1479.103500px;}
.xc{left:-1401.025500px;}
.xa{left:-860.310000px;}
.x4{left:-693.013500px;}
.x8{left:-672.900000px;}
.x62{left:-605.148000px;}
.x9{left:-557.070000px;}
.x5{left:-553.825500px;}
.x3{left:-13.110000px;}
.x0{left:0.000000px;}
.x5b{left:42.431100px;}
.xd{left:44.985000px;}
.x1a{left:64.626900px;}
.x19{left:85.889700px;}
.x14{left:127.559100px;}
.x13{left:132.859200px;}
.x2c{left:159.427500px;}
.x4c{left:165.648000px;}
.x1{left:174.300000px;}
.xf{left:177.970500px;}
.x5f{left:180.942000px;}
.x4e{left:224.386500px;}
.x36{left:225.913500px;}
.x30{left:229.558500px;}
.x3f{left:231.919500px;}
.x37{left:233.217000px;}
.x4b{left:234.543000px;}
.x27{left:236.308500px;}
.x41{left:238.065000px;}
.x24{left:239.863500px;}
.x1d{left:240.987000px;}
.x50{left:242.793000px;}
.x22{left:244.153500px;}
.x45{left:246.297000px;}
.x3b{left:250.201500px;}
.x1f{left:251.439000px;}
.x54{left:253.179000px;}
.x28{left:255.390000px;}
.x33{left:258.624000px;}
.x29{left:263.385000px;}
.x2d{left:265.455000px;}
.x34{left:267.526500px;}
.x47{left:269.134500px;}
.x39{left:271.609500px;}
.x10{left:274.924500px;}
.x2e{left:275.949000px;}
.x2f{left:278.176500px;}
.x3d{left:280.189500px;}
.x16{left:281.652000px;}
.x11{left:283.929000px;}
.x44{left:285.502500px;}
.x2{left:290.130000px;}
.x12{left:293.799000px;}
.x25{left:295.228500px;}
.x2a{left:297.555000px;}
.x2b{left:298.999500px;}
.x53{left:309.436500px;}
.x48{left:312.480000px;}
.x51{left:314.361000px;}
.x1b{left:318.375000px;}
.x60{left:320.130000px;}
.x31{left:321.619500px;}
.x4d{left:324.589500px;}
.x35{left:326.760000px;}
.x17{left:329.194500px;}
.x3a{left:332.700000px;}
.x49{left:334.053000px;}
.x42{left:336.180000px;}
.x38{left:338.680500px;}
.x43{left:342.822000px;}
.x26{left:345.676500px;}
.x18{left:347.953500px;}
.x1c{left:352.521000px;}
.x21{left:353.811000px;}
.x4f{left:358.027500px;}
.x1e{left:359.628000px;}
.x3c{left:364.329000px;}
.x40{left:365.344500px;}
.x32{left:368.305500px;}
.x46{left:370.047000px;}
.x4a{left:371.242500px;}
.x3e{left:373.272000px;}
.x52{left:391.917000px;}
.x23{left:395.719500px;}
.x20{left:408.877500px;}
.x15{left:412.777500px;}
.x58{left:828.521100px;}
.x5e{left:860.845500px;}
.x6{left:892.185000px;}
.x59{left:967.709100px;}
.x5c{left:1048.255500px;}
.x5d{left:1164.085500px;}
.x57{left:1508.424600px;}
.x55{left:1695.834600px;}
.x61{left:1766.140500px;}
.x56{left:1811.664600px;}
.x5a{left:2413.719600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.872000pt;}
.ws25{word-spacing:-15.466667pt;}
.ws61{word-spacing:-14.080000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws42{word-spacing:-3.959467pt;}
.ws43{word-spacing:-3.712000pt;}
.ws15{word-spacing:-3.340800pt;}
.ws53{word-spacing:-3.031467pt;}
.ws5e{word-spacing:-2.784000pt;}
.ws39{word-spacing:-2.350933pt;}
.ws56{word-spacing:-2.227200pt;}
.ws23{word-spacing:-2.165333pt;}
.ws6{word-spacing:-2.112000pt;}
.ws4a{word-spacing:-2.041600pt;}
.ws21{word-spacing:-1.917867pt;}
.ws19{word-spacing:-1.670400pt;}
.ws36{word-spacing:-1.484800pt;}
.ws30{word-spacing:-1.361067pt;}
.ws5{word-spacing:-1.344000pt;}
.ws28{word-spacing:-1.113600pt;}
.ws29{word-spacing:-1.051733pt;}
.ws54{word-spacing:-0.989867pt;}
.ws2b{word-spacing:-0.866133pt;}
.ws3{word-spacing:-0.864000pt;}
.ws2a{word-spacing:-0.804267pt;}
.ws48{word-spacing:-0.680533pt;}
.ws3b{word-spacing:-0.618667pt;}
.ws57{word-spacing:-0.494933pt;}
.ws2c{word-spacing:-0.433067pt;}
.ws27{word-spacing:-0.185600pt;}
.ws3f{word-spacing:-0.123733pt;}
.ws1a{word-spacing:-0.061867pt;}
.ws0{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.123733pt;}
.ws55{word-spacing:0.371200pt;}
.ws17{word-spacing:0.494933pt;}
.ws16{word-spacing:0.804267pt;}
.ws32{word-spacing:0.989867pt;}
.ws26{word-spacing:1.051733pt;}
.ws1b{word-spacing:1.175467pt;}
.ws5f{word-spacing:1.237333pt;}
.ws3e{word-spacing:1.299200pt;}
.ws13{word-spacing:1.361067pt;}
.ws11{word-spacing:1.664000pt;}
.ws12{word-spacing:1.670400pt;}
.ws34{word-spacing:1.732267pt;}
.wsa{word-spacing:1.776000pt;}
.ws60{word-spacing:1.917867pt;}
.wsb{word-spacing:1.968000pt;}
.ws44{word-spacing:1.979733pt;}
.ws4d{word-spacing:2.041600pt;}
.ws10{word-spacing:2.048000pt;}
.ws4e{word-spacing:2.103467pt;}
.ws5a{word-spacing:2.165333pt;}
.ws24{word-spacing:2.474667pt;}
.ws52{word-spacing:2.536533pt;}
.ws9{word-spacing:2.592000pt;}
.ws45{word-spacing:2.845867pt;}
.ws46{word-spacing:2.907733pt;}
.ws4c{word-spacing:3.093333pt;}
.ws2e{word-spacing:3.278933pt;}
.ws31{word-spacing:3.464533pt;}
.ws8{word-spacing:3.552000pt;}
.ws5b{word-spacing:3.712000pt;}
.ws18{word-spacing:3.959467pt;}
.ws4b{word-spacing:4.083200pt;}
.ws49{word-spacing:4.268800pt;}
.ws51{word-spacing:4.330667pt;}
.ws2d{word-spacing:4.392533pt;}
.ws35{word-spacing:4.454400pt;}
.ws38{word-spacing:4.516267pt;}
.ws1e{word-spacing:4.763733pt;}
.ws41{word-spacing:4.825600pt;}
.ws50{word-spacing:4.887467pt;}
.wsc{word-spacing:4.992000pt;}
.ws1d{word-spacing:5.011200pt;}
.ws5d{word-spacing:5.134933pt;}
.ws1{word-spacing:5.232000pt;}
.ws3c{word-spacing:5.691733pt;}
.ws7{word-spacing:5.712000pt;}
.ws14{word-spacing:6.001067pt;}
.ws59{word-spacing:6.062933pt;}
.ws1f{word-spacing:6.124800pt;}
.wse{word-spacing:6.192000pt;}
.ws2{word-spacing:6.240000pt;}
.ws20{word-spacing:6.310400pt;}
.ws3d{word-spacing:6.496000pt;}
.ws5c{word-spacing:6.867200pt;}
.ws47{word-spacing:6.929067pt;}
.ws40{word-spacing:7.052800pt;}
.ws33{word-spacing:7.176533pt;}
.ws22{word-spacing:7.300267pt;}
.ws2f{word-spacing:7.424000pt;}
.ws37{word-spacing:8.290133pt;}
.ws4{word-spacing:8.880000pt;}
.ws58{word-spacing:9.032533pt;}
.ws3a{word-spacing:9.589333pt;}
.wsd{word-spacing:11.328000pt;}
.ws1c{word-spacing:11.692800pt;}
._9{margin-left:-116.053333pt;}
._8{margin-left:-88.320000pt;}
._5{margin-left:-7.391573pt;}
._0{margin-left:-6.400000pt;}
._2{margin-left:-5.335467pt;}
._6{margin-left:-4.083200pt;}
._3{margin-left:-3.136000pt;}
._1{margin-left:-1.548800pt;}
._4{width:1.067200pt;}
._7{width:3.441920pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs7{font-size:61.866667pt;}
.fs6{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fs1{font-size:128.000000pt;}
.fs0{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:40.223200pt;}
.y106{bottom:52.314933pt;}
.ye8{bottom:53.230933pt;}
.y30{bottom:53.745600pt;}
.y12{bottom:55.789467pt;}
.y105{bottom:66.714933pt;}
.y112{bottom:67.050933pt;}
.ye7{bottom:67.630933pt;}
.yf4{bottom:67.966933pt;}
.y2f{bottom:68.145600pt;}
.y3c{bottom:68.481600pt;}
.y11{bottom:70.189467pt;}
.y1e{bottom:70.525467pt;}
.yd1{bottom:74.960667pt;}
.y93{bottom:75.427200pt;}
.yab{bottom:75.590533pt;}
.yd3{bottom:75.590667pt;}
.yd6{bottom:75.590800pt;}
.y73{bottom:75.596800pt;}
.y42{bottom:77.451600pt;}
.ycd{bottom:78.984533pt;}
.y104{bottom:81.114933pt;}
.y111{bottom:81.450933pt;}
.ye6{bottom:82.030933pt;}
.yf3{bottom:82.366933pt;}
.y2e{bottom:82.545600pt;}
.yf9{bottom:82.629600pt;}
.y3b{bottom:82.881600pt;}
.yf6{bottom:83.538000pt;}
.ydb{bottom:83.545600pt;}
.y23{bottom:84.060267pt;}
.yd8{bottom:84.454000pt;}
.y10{bottom:84.589467pt;}
.y1d{bottom:84.925467pt;}
.y20{bottom:84.968667pt;}
.y5{bottom:86.104133pt;}
.y2{bottom:87.012533pt;}
.yce{bottom:91.418267pt;}
.yd0{bottom:92.560667pt;}
.ycf{bottom:93.190533pt;}
.yd2{bottom:93.190667pt;}
.yd5{bottom:93.190800pt;}
.y72{bottom:94.156800pt;}
.yaa{bottom:94.167733pt;}
.yd4{bottom:94.257200pt;}
.y92{bottom:94.822400pt;}
.y103{bottom:95.514933pt;}
.y110{bottom:95.850933pt;}
.ye5{bottom:96.430933pt;}
.yf2{bottom:96.766933pt;}
.y2d{bottom:96.945600pt;}
.y3a{bottom:97.281600pt;}
.ycc{bottom:97.544533pt;}
.yf{bottom:98.989467pt;}
.y1c{bottom:99.325467pt;}
.yf8{bottom:105.029600pt;}
.yda{bottom:105.945600pt;}
.y22{bottom:106.460267pt;}
.y4{bottom:108.504133pt;}
.y102{bottom:109.914933pt;}
.y10f{bottom:110.250933pt;}
.ye4{bottom:110.830933pt;}
.yf1{bottom:111.166933pt;}
.y2c{bottom:111.345600pt;}
.y39{bottom:111.681600pt;}
.y40{bottom:112.246667pt;}
.y71{bottom:112.716800pt;}
.ya9{bottom:112.727733pt;}
.ye{bottom:113.389467pt;}
.y1b{bottom:113.725467pt;}
.y91{bottom:114.217600pt;}
.ycb{bottom:116.104533pt;}
.y10e{bottom:124.650933pt;}
.yf0{bottom:125.566933pt;}
.y38{bottom:126.081600pt;}
.y3f{bottom:126.910667pt;}
.y1a{bottom:128.125467pt;}
.y70{bottom:131.276800pt;}
.ya8{bottom:131.287733pt;}
.y101{bottom:131.874933pt;}
.ye3{bottom:132.790933pt;}
.y2b{bottom:133.305600pt;}
.y90{bottom:133.612800pt;}
.yca{bottom:134.664533pt;}
.yd{bottom:135.349467pt;}
.y10d{bottom:139.050933pt;}
.yef{bottom:139.966933pt;}
.y37{bottom:140.481600pt;}
.y3e{bottom:141.574667pt;}
.yf5{bottom:141.924267pt;}
.y19{bottom:142.525467pt;}
.yd7{bottom:142.840267pt;}
.y1f{bottom:143.354933pt;}
.y1{bottom:145.398800pt;}
.y100{bottom:146.274933pt;}
.ye2{bottom:147.190933pt;}
.y2a{bottom:147.705600pt;}
.yc{bottom:149.749467pt;}
.y6f{bottom:149.836800pt;}
.ya7{bottom:149.847733pt;}
.y8f{bottom:153.008000pt;}
.yc9{bottom:153.224533pt;}
.y10c{bottom:153.450933pt;}
.yee{bottom:154.366933pt;}
.y36{bottom:154.881600pt;}
.y18{bottom:156.925467pt;}
.yff{bottom:160.674933pt;}
.ye1{bottom:161.590933pt;}
.y29{bottom:162.105600pt;}
.yb{bottom:164.149467pt;}
.y10b{bottom:167.850933pt;}
.y6e{bottom:168.396800pt;}
.ya6{bottom:168.407733pt;}
.yed{bottom:168.766933pt;}
.y35{bottom:169.281600pt;}
.y17{bottom:171.325467pt;}
.yc8{bottom:171.784533pt;}
.yfe{bottom:175.074933pt;}
.ye0{bottom:175.990933pt;}
.y8e{bottom:176.177067pt;}
.y28{bottom:176.505600pt;}
.ya{bottom:178.549467pt;}
.y6d{bottom:186.956800pt;}
.ya5{bottom:186.967733pt;}
.yfd{bottom:189.474933pt;}
.yc7{bottom:190.344533pt;}
.ydf{bottom:190.390933pt;}
.y5a{bottom:190.898667pt;}
.y27{bottom:190.905600pt;}
.y9{bottom:192.949467pt;}
.y8d{bottom:195.572267pt;}
.y10a{bottom:196.650933pt;}
.yec{bottom:197.566933pt;}
.y34{bottom:198.081600pt;}
.y16{bottom:200.125467pt;}
.yfc{bottom:203.874933pt;}
.yde{bottom:204.790933pt;}
.y26{bottom:205.305600pt;}
.y6c{bottom:205.516800pt;}
.ya4{bottom:205.527733pt;}
.y59{bottom:206.894667pt;}
.y8{bottom:207.349467pt;}
.y109{bottom:211.050933pt;}
.yeb{bottom:211.966933pt;}
.y33{bottom:212.481600pt;}
.yc6{bottom:212.678400pt;}
.y15{bottom:214.525467pt;}
.y8c{bottom:214.967467pt;}
.yfb{bottom:218.274933pt;}
.ydd{bottom:219.190933pt;}
.y25{bottom:219.705600pt;}
.y7{bottom:221.749467pt;}
.y58{bottom:222.890667pt;}
.y6b{bottom:224.076800pt;}
.ya3{bottom:224.087733pt;}
.y108{bottom:225.450933pt;}
.yea{bottom:226.366933pt;}
.y32{bottom:226.881600pt;}
.y14{bottom:228.925467pt;}
.yc5{bottom:231.238400pt;}
.yfa{bottom:232.674933pt;}
.ydc{bottom:233.590933pt;}
.y24{bottom:234.105600pt;}
.y8b{bottom:234.362667pt;}
.y6{bottom:236.149467pt;}
.y57{bottom:238.886667pt;}
.y107{bottom:239.850933pt;}
.ye9{bottom:240.766933pt;}
.y31{bottom:241.281600pt;}
.y6a{bottom:242.636800pt;}
.ya2{bottom:242.647733pt;}
.y13{bottom:243.325467pt;}
.yc4{bottom:249.798400pt;}
.y8a{bottom:253.757867pt;}
.yf7{bottom:255.650933pt;}
.yd9{bottom:256.566933pt;}
.y21{bottom:257.081600pt;}
.y3{bottom:259.125467pt;}
.y69{bottom:261.196800pt;}
.ya1{bottom:261.207733pt;}
.yc3{bottom:268.358400pt;}
.y56{bottom:270.928000pt;}
.y89{bottom:273.153067pt;}
.ya0{bottom:279.767733pt;}
.y68{bottom:283.530667pt;}
.y55{bottom:286.996000pt;}
.yc2{bottom:290.692267pt;}
.y88{bottom:296.322133pt;}
.y9f{bottom:298.327733pt;}
.y67{bottom:302.090667pt;}
.yc1{bottom:309.252267pt;}
.y87{bottom:315.717333pt;}
.y54{bottom:319.132000pt;}
.y66{bottom:320.650667pt;}
.y9e{bottom:320.661600pt;}
.yc0{bottom:327.812267pt;}
.y86{bottom:335.112533pt;}
.y53{bottom:335.200000pt;}
.y65{bottom:339.210667pt;}
.y9d{bottom:339.221600pt;}
.ybf{bottom:346.372267pt;}
.y52{bottom:351.268000pt;}
.y85{bottom:354.507733pt;}
.y64{bottom:357.770667pt;}
.y9c{bottom:357.781600pt;}
.ybe{bottom:364.932267pt;}
.y84{bottom:373.902933pt;}
.y63{bottom:376.330667pt;}
.y9b{bottom:376.341600pt;}
.y51{bottom:381.736000pt;}
.ybd{bottom:383.492267pt;}
.y83{bottom:393.298133pt;}
.y62{bottom:394.890667pt;}
.y9a{bottom:394.901600pt;}
.y50{bottom:396.136000pt;}
.ybc{bottom:402.052267pt;}
.y41{bottom:405.776000pt;}
.y82{bottom:412.693333pt;}
.y61{bottom:413.450667pt;}
.y99{bottom:417.235467pt;}
.ybb{bottom:420.612267pt;}
.y4f{bottom:426.604000pt;}
.y60{bottom:432.010667pt;}
.y81{bottom:432.088533pt;}
.y98{bottom:435.795467pt;}
.y4e{bottom:442.672000pt;}
.yba{bottom:442.946133pt;}
.y5f{bottom:450.570667pt;}
.y80{bottom:451.483733pt;}
.y97{bottom:454.355467pt;}
.y4d{bottom:458.740000pt;}
.yb9{bottom:461.506133pt;}
.y7f{bottom:470.878933pt;}
.y96{bottom:472.915467pt;}
.y4c{bottom:474.808000pt;}
.yb8{bottom:480.066133pt;}
.y7e{bottom:490.274133pt;}
.y4b{bottom:490.876000pt;}
.y95{bottom:495.249333pt;}
.yb7{bottom:498.626133pt;}
.y7d{bottom:513.443200pt;}
.y94{bottom:513.809333pt;}
.yb6{bottom:517.186133pt;}
.y4a{bottom:521.344000pt;}
.y7c{bottom:532.838400pt;}
.yb5{bottom:535.746133pt;}
.y49{bottom:537.412000pt;}
.y7b{bottom:552.233600pt;}
.y48{bottom:553.480000pt;}
.yb4{bottom:554.306133pt;}
.y5e{bottom:555.710667pt;}
.y47{bottom:569.548000pt;}
.y7a{bottom:571.628800pt;}
.yb3{bottom:572.866133pt;}
.y5d{bottom:577.048000pt;}
.y46{bottom:585.616000pt;}
.y79{bottom:591.024000pt;}
.yb2{bottom:591.426133pt;}
.yad{bottom:591.672000pt;}
.y45{bottom:601.684000pt;}
.y3d{bottom:603.853333pt;}
.yb1{bottom:609.986133pt;}
.y78{bottom:610.419200pt;}
.y44{bottom:617.752000pt;}
.y5c{bottom:627.053333pt;}
.yb0{bottom:628.546133pt;}
.y77{bottom:629.814400pt;}
.y43{bottom:633.820000pt;}
.yac{bottom:643.682667pt;}
.yaf{bottom:647.106133pt;}
.y76{bottom:649.209600pt;}
.y75{bottom:668.604800pt;}
.yae{bottom:669.440000pt;}
.y74{bottom:688.000000pt;}
.hb{height:40.944000pt;}
.hc{height:41.045333pt;}
.h6{height:41.712000pt;}
.h10{height:41.946667pt;}
.h4{height:46.346667pt;}
.he{height:49.573333pt;}
.h11{height:50.981333pt;}
.hf{height:52.772267pt;}
.h5{height:64.885333pt;}
.hd{height:74.154667pt;}
.h3{height:111.232000pt;}
.h2{height:185.386667pt;}
.h15{height:752.666667pt;}
.h14{height:752.876267pt;}
.h12{height:753.938933pt;}
.h13{height:754.000000pt;}
.h9{height:755.905333pt;}
.ha{height:756.000000pt;}
.h7{height:757.162933pt;}
.h8{height:757.333333pt;}
.h1{height:758.000000pt;}
.h0{height:758.185467pt;}
.w3{width:568.000000pt;}
.w2{width:568.133333pt;}
.w7{width:575.333333pt;}
.w6{width:575.559200pt;}
.w8{width:742.409333pt;}
.w9{width:742.666667pt;}
.w1{width:752.000000pt;}
.w0{width:752.053333pt;}
.w4{width:755.905333pt;}
.w5{width:756.000000pt;}
.xe{left:-2067.825333pt;}
.xb{left:-1369.078667pt;}
.x7{left:-1314.758667pt;}
.xc{left:-1245.356000pt;}
.xa{left:-764.720000pt;}
.x4{left:-616.012000pt;}
.x8{left:-598.133333pt;}
.x62{left:-537.909333pt;}
.x9{left:-495.173333pt;}
.x5{left:-492.289333pt;}
.x3{left:-11.653333pt;}
.x0{left:0.000000pt;}
.x5b{left:37.716533pt;}
.xd{left:39.986667pt;}
.x1a{left:57.446133pt;}
.x19{left:76.346400pt;}
.x14{left:113.385867pt;}
.x13{left:118.097067pt;}
.x2c{left:141.713333pt;}
.x4c{left:147.242667pt;}
.x1{left:154.933333pt;}
.xf{left:158.196000pt;}
.x5f{left:160.837333pt;}
.x4e{left:199.454667pt;}
.x36{left:200.812000pt;}
.x30{left:204.052000pt;}
.x3f{left:206.150667pt;}
.x37{left:207.304000pt;}
.x4b{left:208.482667pt;}
.x27{left:210.052000pt;}
.x41{left:211.613333pt;}
.x24{left:213.212000pt;}
.x1d{left:214.210667pt;}
.x50{left:215.816000pt;}
.x22{left:217.025333pt;}
.x45{left:218.930667pt;}
.x3b{left:222.401333pt;}
.x1f{left:223.501333pt;}
.x54{left:225.048000pt;}
.x28{left:227.013333pt;}
.x33{left:229.888000pt;}
.x29{left:234.120000pt;}
.x2d{left:235.960000pt;}
.x34{left:237.801333pt;}
.x47{left:239.230667pt;}
.x39{left:241.430667pt;}
.x10{left:244.377333pt;}
.x2e{left:245.288000pt;}
.x2f{left:247.268000pt;}
.x3d{left:249.057333pt;}
.x16{left:250.357333pt;}
.x11{left:252.381333pt;}
.x44{left:253.780000pt;}
.x2{left:257.893333pt;}
.x12{left:261.154667pt;}
.x25{left:262.425333pt;}
.x2a{left:264.493333pt;}
.x2b{left:265.777333pt;}
.x53{left:275.054667pt;}
.x48{left:277.760000pt;}
.x51{left:279.432000pt;}
.x1b{left:283.000000pt;}
.x60{left:284.560000pt;}
.x31{left:285.884000pt;}
.x4d{left:288.524000pt;}
.x35{left:290.453333pt;}
.x17{left:292.617333pt;}
.x3a{left:295.733333pt;}
.x49{left:296.936000pt;}
.x42{left:298.826667pt;}
.x38{left:301.049333pt;}
.x43{left:304.730667pt;}
.x26{left:307.268000pt;}
.x18{left:309.292000pt;}
.x1c{left:313.352000pt;}
.x21{left:314.498667pt;}
.x4f{left:318.246667pt;}
.x1e{left:319.669333pt;}
.x3c{left:323.848000pt;}
.x40{left:324.750667pt;}
.x32{left:327.382667pt;}
.x46{left:328.930667pt;}
.x4a{left:329.993333pt;}
.x3e{left:331.797333pt;}
.x52{left:348.370667pt;}
.x23{left:351.750667pt;}
.x20{left:363.446667pt;}
.x15{left:366.913333pt;}
.x58{left:736.463200pt;}
.x5e{left:765.196000pt;}
.x6{left:793.053333pt;}
.x59{left:860.185867pt;}
.x5c{left:931.782667pt;}
.x5d{left:1034.742667pt;}
.x57{left:1340.821867pt;}
.x55{left:1507.408533pt;}
.x61{left:1569.902667pt;}
.x56{left:1610.368533pt;}
.x5a{left:2145.528533pt;}
}




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