
    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_9c6ff4631bed2b780667348a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.908203;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_4a339300c7765dcf4564fc29.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_6830953aab9f9c443a791143.woff')format("woff");}.ff3{font-family:ff3;line-height:0.759766;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;}
.m3{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);}
.m2{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m4{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m1{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);}
.m0{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v2{vertical-align:-27.971400px;}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.000000px;}
.v6{vertical-align:24.000000px;}
.v1{vertical-align:27.972000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.019800px;}
.ls6{letter-spacing:0.020400px;}
.ls1{letter-spacing:1.440000px;}
.ls5{letter-spacing:2.181600px;}
.ls0{letter-spacing:2.727000px;}
.ls8{letter-spacing:3.090012px;}
.ls9{letter-spacing:4.907953px;}
.ls4{letter-spacing:198.000000px;}
.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;}
}
.ws2{word-spacing:-30.000000px;}
.ws7{word-spacing:-25.500000px;}
.ws5{word-spacing:-22.725000px;}
.ws3{word-spacing:-19.440000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.243000px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-20.662200px;}
._1f{margin-left:-18.644400px;}
._1c{margin-left:-17.546400px;}
._15{margin-left:-13.560000px;}
._17{margin-left:-11.649000px;}
._16{margin-left:-10.200000px;}
._12{margin-left:-8.064000px;}
._b{margin-left:-6.768000px;}
._5{margin-left:-5.760000px;}
._c{margin-left:-4.680000px;}
._0{margin-left:-2.727000px;}
._4{margin-left:-1.440000px;}
._a{width:1.656000px;}
._e{width:2.664000px;}
._11{width:3.672000px;}
._f{width:5.616000px;}
._18{width:6.624000px;}
._10{width:7.704000px;}
._d{width:8.856000px;}
._1a{width:10.512000px;}
._1{width:11.669400px;}
._1b{width:13.314600px;}
._1d{width:15.262800px;}
._3{width:16.560000px;}
._13{width:17.734800px;}
._8{width:33.894000px;}
._9{width:35.108293px;}
._7{width:47.763600px;}
._2{width:50.961000px;}
._6{width:132.236400px;}
._1e{width:186.000000px;}
._19{width:198.000000px;}
.fc1{color:rgb(5,3,1);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.972000px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:72.000000px;}
.fsc{font-size:72.720000px;}
.fs6{font-size:74.539900px;}
.fsf{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs7{font-size:90.000000px;}
.fs0{font-size:90.900000px;}
.fs9{font-size:96.000000px;}
.fsa{font-size:99.386533px;}
.fs2{font-size:102.000000px;}
.fsd{font-size:103.020000px;}
.fs5{font-size:120.000000px;}
.fs8{font-size:124.233167px;}
.fse{font-size:163.620000px;}
.y0{bottom:0.000000px;}
.y1{bottom:21.450600px;}
.yab{bottom:21.452700px;}
.y65{bottom:21.452850px;}
.ycc{bottom:21.453000px;}
.y11f{bottom:25.372650px;}
.y85{bottom:27.452700px;}
.y36{bottom:27.452850px;}
.yba{bottom:27.453000px;}
.y2{bottom:30.570750px;}
.y84{bottom:30.572850px;}
.y35{bottom:30.573000px;}
.yb9{bottom:30.573150px;}
.y11d{bottom:58.672500px;}
.y63{bottom:65.745750px;}
.y1c{bottom:66.936150px;}
.y82{bottom:69.979500px;}
.ycb{bottom:70.291500px;}
.yfd{bottom:73.469250px;}
.y11c{bottom:80.272500px;}
.y62{bottom:87.345750px;}
.y1b{bottom:88.536150px;}
.y81{bottom:91.579500px;}
.yca{bottom:91.891500px;}
.y13e{bottom:93.949950px;}
.yfc{bottom:95.069250px;}
.y11b{bottom:101.872350px;}
.y61{bottom:108.945750px;}
.y80{bottom:113.179500px;}
.yc9{bottom:113.491500px;}
.y13d{bottom:115.549950px;}
.yfb{bottom:116.669250px;}
.y11a{bottom:123.472500px;}
.y19{bottom:126.722700px;}
.y60{bottom:130.545750px;}
.y7f{bottom:134.779500px;}
.yc8{bottom:135.091500px;}
.yfa{bottom:138.269250px;}
.y119{bottom:145.072500px;}
.y18{bottom:148.322700px;}
.y5f{bottom:152.145750px;}
.y7e{bottom:156.379500px;}
.yc7{bottom:156.691500px;}
.y13c{bottom:158.749950px;}
.yf9{bottom:159.869250px;}
.y118{bottom:166.672500px;}
.y17{bottom:169.922700px;}
.y5e{bottom:173.745750px;}
.y7d{bottom:177.979500px;}
.yc6{bottom:178.291500px;}
.y13b{bottom:180.349950px;}
.yf8{bottom:181.469250px;}
.y117{bottom:188.272500px;}
.y16{bottom:191.522700px;}
.y5d{bottom:195.345750px;}
.y7c{bottom:199.579500px;}
.yc5{bottom:199.891500px;}
.yf7{bottom:203.069250px;}
.y15{bottom:213.122700px;}
.y5c{bottom:216.945750px;}
.y7b{bottom:221.179500px;}
.yc4{bottom:221.491500px;}
.y13a{bottom:223.549950px;}
.yf6{bottom:224.669250px;}
.y14{bottom:234.722700px;}
.y11e{bottom:235.896600px;}
.y5b{bottom:238.545750px;}
.y7a{bottom:242.779500px;}
.yc3{bottom:243.091500px;}
.y1a{bottom:243.568200px;}
.y139{bottom:245.149950px;}
.yf5{bottom:246.269250px;}
.y13{bottom:256.322700px;}
.yc2{bottom:264.691500px;}
.yf4{bottom:267.869250px;}
.y5a{bottom:274.545750px;}
.y12{bottom:277.922700px;}
.y79{bottom:278.779500px;}
.yc1{bottom:286.291500px;}
.y138{bottom:288.349800px;}
.y116{bottom:289.153800px;}
.yf3{bottom:289.469250px;}
.y11{bottom:299.522700px;}
.yc0{bottom:307.891500px;}
.y137{bottom:309.949950px;}
.y115{bottom:310.753800px;}
.yf2{bottom:311.069250px;}
.y64{bottom:313.849500px;}
.y10{bottom:321.122700px;}
.ybf{bottom:329.491500px;}
.y136{bottom:331.549950px;}
.y114{bottom:332.353800px;}
.yf1{bottom:332.669250px;}
.yf{bottom:342.722700px;}
.ybe{bottom:351.091500px;}
.y113{bottom:353.953800px;}
.yf0{bottom:354.269250px;}
.ye{bottom:364.322700px;}
.y58{bottom:364.417500px;}
.yaa{bottom:368.448600px;}
.ybd{bottom:372.691500px;}
.y135{bottom:374.749950px;}
.y112{bottom:375.553800px;}
.yef{bottom:375.869250px;}
.yd{bottom:385.922700px;}
.y57{bottom:386.017500px;}
.ybc{bottom:394.291500px;}
.y134{bottom:396.349800px;}
.y111{bottom:397.153800px;}
.yee{bottom:397.469250px;}
.ya9{bottom:404.353800px;}
.yc{bottom:407.522700px;}
.y56{bottom:407.617500px;}
.y110{bottom:418.753800px;}
.yed{bottom:419.069250px;}
.ya8{bottom:425.953800px;}
.yb{bottom:429.122700px;}
.y55{bottom:429.217500px;}
.y133{bottom:439.549950px;}
.y10f{bottom:440.353800px;}
.yec{bottom:440.669250px;}
.ya7{bottom:447.553800px;}
.ya{bottom:450.722700px;}
.y132{bottom:461.149950px;}
.y10e{bottom:461.953800px;}
.yeb{bottom:462.269250px;}
.ya6{bottom:469.153800px;}
.y9{bottom:472.322700px;}
.y59{bottom:476.841600px;}
.y10d{bottom:483.553800px;}
.yea{bottom:483.869250px;}
.ya5{bottom:490.753800px;}
.y131{bottom:504.349800px;}
.y10c{bottom:505.153800px;}
.ye9{bottom:505.469250px;}
.ya4{bottom:512.353800px;}
.y2e{bottom:517.966350px;}
.y130{bottom:525.949800px;}
.y10b{bottom:526.753800px;}
.yb7{bottom:526.834500px;}
.ye8{bottom:527.069250px;}
.ya3{bottom:533.953800px;}
.y12f{bottom:547.549950px;}
.y10a{bottom:548.353800px;}
.ye7{bottom:548.669250px;}
.y53{bottom:548.867550px;}
.y2c{bottom:553.114500px;}
.ya2{bottom:555.553800px;}
.yb6{bottom:565.404450px;}
.y109{bottom:569.953800px;}
.ye6{bottom:570.269250px;}
.y52{bottom:570.467550px;}
.y2b{bottom:574.714500px;}
.y78{bottom:576.795300px;}
.ya1{bottom:577.153800px;}
.yb5{bottom:587.004450px;}
.y12e{bottom:590.749950px;}
.y108{bottom:591.553800px;}
.ye5{bottom:591.869250px;}
.y51{bottom:592.067550px;}
.y2a{bottom:596.314500px;}
.ya0{bottom:598.753800px;}
.yb4{bottom:608.604450px;}
.y12d{bottom:612.349800px;}
.y107{bottom:613.153800px;}
.ye4{bottom:613.469250px;}
.y50{bottom:613.667550px;}
.y77{bottom:615.676950px;}
.y29{bottom:617.914500px;}
.y9f{bottom:620.353800px;}
.yb3{bottom:630.204450px;}
.y106{bottom:634.753800px;}
.y4f{bottom:635.267550px;}
.y76{bottom:637.276950px;}
.y28{bottom:639.514500px;}
.y9e{bottom:641.953800px;}
.yb2{bottom:651.804450px;}
.y12c{bottom:655.549950px;}
.y105{bottom:656.353800px;}
.y4e{bottom:656.867550px;}
.y75{bottom:658.876950px;}
.yfe{bottom:661.093350px;}
.y27{bottom:661.114500px;}
.y9d{bottom:663.553800px;}
.yb1{bottom:673.404450px;}
.y12b{bottom:677.149950px;}
.y2d{bottom:677.928000px;}
.y104{bottom:677.953800px;}
.y4d{bottom:678.467550px;}
.y26{bottom:682.714500px;}
.y9c{bottom:685.153800px;}
.y74{bottom:694.876950px;}
.yb0{bottom:695.004450px;}
.y103{bottom:699.553800px;}
.y4c{bottom:700.067550px;}
.y25{bottom:704.314500px;}
.y9b{bottom:706.753800px;}
.ydd{bottom:710.141400px;}
.yaf{bottom:716.604450px;}
.y12a{bottom:720.349950px;}
.y102{bottom:721.153800px;}
.y4b{bottom:721.667550px;}
.y24{bottom:725.914500px;}
.y9a{bottom:728.353800px;}
.ydc{bottom:731.741250px;}
.y73{bottom:738.076950px;}
.yae{bottom:738.204450px;}
.y129{bottom:741.949800px;}
.y101{bottom:742.753800px;}
.y4a{bottom:743.267550px;}
.y23{bottom:747.514500px;}
.y99{bottom:749.953800px;}
.ydb{bottom:753.341400px;}
.y72{bottom:759.676950px;}
.y143{bottom:763.329900px;}
.y100{bottom:764.353800px;}
.y49{bottom:764.867550px;}
.y22{bottom:769.114500px;}
.yda{bottom:774.941400px;}
.yad{bottom:775.220250px;}
.y71{bottom:781.276950px;}
.y128{bottom:785.149800px;}
.y98{bottom:785.953800px;}
.y48{bottom:786.467400px;}
.y142{bottom:786.729900px;}
.y21{bottom:790.714500px;}
.yd9{bottom:796.541400px;}
.y70{bottom:802.876950px;}
.y140{bottom:804.129750px;}
.y127{bottom:806.749950px;}
.yff{bottom:807.553650px;}
.y47{bottom:808.067400px;}
.y141{bottom:810.129750px;}
.y20{bottom:812.314500px;}
.yd8{bottom:818.141400px;}
.yd2{bottom:819.157650px;}
.y6f{bottom:824.477100px;}
.y126{bottom:828.349950px;}
.y97{bottom:829.153800px;}
.y46{bottom:829.667400px;}
.y1f{bottom:833.914500px;}
.yd7{bottom:839.741400px;}
.y6e{bottom:846.077100px;}
.y96{bottom:850.753800px;}
.y45{bottom:851.267400px;}
.y1e{bottom:855.514500px;}
.yd1{bottom:856.362300px;}
.yd6{bottom:861.341550px;}
.y6d{bottom:867.677100px;}
.y125{bottom:871.549950px;}
.y95{bottom:872.353800px;}
.y44{bottom:872.867400px;}
.y1d{bottom:877.114500px;}
.yd5{bottom:882.941550px;}
.y124{bottom:893.149950px;}
.y94{bottom:893.953800px;}
.y43{bottom:894.467400px;}
.yd4{bottom:904.541550px;}
.y6c{bottom:915.209250px;}
.y93{bottom:915.553650px;}
.y42{bottom:916.067550px;}
.y33{bottom:916.171200px;}
.y69{bottom:916.272450px;}
.yd3{bottom:926.141550px;}
.y123{bottom:936.350100px;}
.y6b{bottom:936.809400px;}
.y92{bottom:937.153800px;}
.y41{bottom:937.667550px;}
.y68{bottom:937.872300px;}
.y32{bottom:952.171200px;}
.y122{bottom:957.950100px;}
.y6a{bottom:958.409400px;}
.y91{bottom:958.753800px;}
.y40{bottom:959.267550px;}
.y67{bottom:959.472450px;}
.ye3{bottom:967.295850px;}
.ye0{bottom:968.358750px;}
.y90{bottom:980.353800px;}
.y3f{bottom:980.867550px;}
.y31{bottom:980.971200px;}
.ye2{bottom:988.895850px;}
.ydf{bottom:989.958750px;}
.y121{bottom:1001.150250px;}
.y8f{bottom:1001.953800px;}
.y3e{bottom:1002.467700px;}
.ye1{bottom:1010.495850px;}
.yde{bottom:1011.558900px;}
.y30{bottom:1016.971200px;}
.y120{bottom:1022.750250px;}
.y8e{bottom:1023.553950px;}
.y3d{bottom:1024.067700px;}
.y8d{bottom:1045.153950px;}
.y3c{bottom:1045.667700px;}
.y2f{bottom:1052.971200px;}
.y13f{bottom:1062.054150px;}
.y8c{bottom:1066.753950px;}
.y3b{bottom:1067.267700px;}
.y8b{bottom:1088.353950px;}
.y3a{bottom:1088.867850px;}
.y8{bottom:1100.674050px;}
.y8a{bottom:1109.954100px;}
.y39{bottom:1110.467850px;}
.y7{bottom:1129.267050px;}
.y89{bottom:1131.554100px;}
.yd0{bottom:1131.554400px;}
.y38{bottom:1132.067850px;}
.y6{bottom:1147.474050px;}
.y88{bottom:1153.154100px;}
.ycf{bottom:1153.154550px;}
.y87{bottom:1174.754100px;}
.yce{bottom:1174.754550px;}
.y5{bottom:1176.067050px;}
.y54{bottom:1179.692100px;}
.y4{bottom:1194.274050px;}
.y86{bottom:1196.354100px;}
.ycd{bottom:1196.354400px;}
.yac{bottom:1227.714300px;}
.y66{bottom:1227.714450px;}
.y37{bottom:1227.714600px;}
.ybb{bottom:1227.714750px;}
.y3{bottom:1228.524150px;}
.y83{bottom:1228.526100px;}
.y34{bottom:1228.526250px;}
.yb8{bottom:1228.526400px;}
.h7{height:35.203781px;}
.h6{height:35.204381px;}
.h10{height:47.381836px;}
.h11{height:49.992188px;}
.h2{height:63.115137px;}
.h3{height:63.175781px;}
.h12{height:63.807539px;}
.h9{height:65.404395px;}
.h15{height:68.440430px;}
.h5{height:73.705078px;}
.hf{height:75.115137px;}
.ha{height:78.969727px;}
.h13{height:79.759424px;}
.hb{height:83.320312px;}
.hd{height:84.234375px;}
.he{height:87.205860px;}
.h4{height:89.499023px;}
.h8{height:105.292969px;}
.hc{height:109.007325px;}
.h14{height:122.715000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:7.960500px;}
.x3{left:54.000000px;}
.x11{left:65.954700px;}
.x1e{left:76.535400px;}
.x4{left:85.747950px;}
.x20{left:87.655350px;}
.x27{left:89.808000px;}
.xc{left:92.184300px;}
.x29{left:97.930800px;}
.x9{left:102.897600px;}
.x35{left:113.967750px;}
.x8{left:116.225550px;}
.x7{left:123.307050px;}
.xe{left:125.062650px;}
.xf{left:135.052950px;}
.x1f{left:152.615250px;}
.xd{left:158.241300px;}
.x36{left:164.460450px;}
.x28{left:172.463550px;}
.x26{left:179.116800px;}
.x38{left:187.461900px;}
.x12{left:197.978100px;}
.x13{left:205.970400px;}
.x17{left:275.698350px;}
.x37{left:279.170550px;}
.x39{left:292.913100px;}
.x5{left:317.962200px;}
.x21{left:339.307050px;}
.x10{left:341.185650px;}
.x1c{left:345.104100px;}
.xa{left:349.486500px;}
.x2c{left:368.143500px;}
.x14{left:370.876650px;}
.x2a{left:374.203200px;}
.x3c{left:385.327650px;}
.x22{left:386.655750px;}
.x18{left:390.890700px;}
.x30{left:396.390600px;}
.x31{left:401.414550px;}
.x1b{left:412.066650px;}
.x2b{left:417.597300px;}
.x15{left:433.700850px;}
.x6{left:439.906650px;}
.x2{left:446.456700px;}
.xb{left:464.194500px;}
.x3f{left:497.613150px;}
.x40{left:527.086950px;}
.x3d{left:528.546150px;}
.x32{left:539.995200px;}
.x42{left:568.391850px;}
.x23{left:596.338650px;}
.x41{left:601.190400px;}
.x25{left:607.458450px;}
.x33{left:619.975650px;}
.x2f{left:625.174950px;}
.x3e{left:634.696650px;}
.x2d{left:638.019150px;}
.x24{left:644.743950px;}
.x3a{left:662.200800px;}
.x2e{left:681.058200px;}
.x1d{left:717.558450px;}
.x16{left:755.787450px;}
.x19{left:771.949500px;}
.x3b{left:778.163550px;}
.x34{left:789.914400px;}
.x1a{left:832.919250px;}
@media print{
.v2{vertical-align:-24.863467pt;}
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.666667pt;}
.v6{vertical-align:21.333333pt;}
.v1{vertical-align:24.864000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.017600pt;}
.ls6{letter-spacing:0.018133pt;}
.ls1{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.939200pt;}
.ls0{letter-spacing:2.424000pt;}
.ls8{letter-spacing:2.746677pt;}
.ls9{letter-spacing:4.362625pt;}
.ls4{letter-spacing:176.000000pt;}
.ws2{word-spacing:-26.666667pt;}
.ws7{word-spacing:-22.666667pt;}
.ws5{word-spacing:-20.200000pt;}
.ws3{word-spacing:-17.280000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.882667pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-18.366400pt;}
._1f{margin-left:-16.572800pt;}
._1c{margin-left:-15.596800pt;}
._15{margin-left:-12.053333pt;}
._17{margin-left:-10.354667pt;}
._16{margin-left:-9.066667pt;}
._12{margin-left:-7.168000pt;}
._b{margin-left:-6.016000pt;}
._5{margin-left:-5.120000pt;}
._c{margin-left:-4.160000pt;}
._0{margin-left:-2.424000pt;}
._4{margin-left:-1.280000pt;}
._a{width:1.472000pt;}
._e{width:2.368000pt;}
._11{width:3.264000pt;}
._f{width:4.992000pt;}
._18{width:5.888000pt;}
._10{width:6.848000pt;}
._d{width:7.872000pt;}
._1a{width:9.344000pt;}
._1{width:10.372800pt;}
._1b{width:11.835200pt;}
._1d{width:13.566933pt;}
._3{width:14.720000pt;}
._13{width:15.764267pt;}
._8{width:30.128000pt;}
._9{width:31.207371pt;}
._7{width:42.456533pt;}
._2{width:45.298667pt;}
._6{width:117.543467pt;}
._1e{width:165.333333pt;}
._19{width:176.000000pt;}
.fs4{font-size:43.530667pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:64.000000pt;}
.fsc{font-size:64.640000pt;}
.fs6{font-size:66.257689pt;}
.fsf{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs7{font-size:80.000000pt;}
.fs0{font-size:80.800000pt;}
.fs9{font-size:85.333333pt;}
.fsa{font-size:88.343585pt;}
.fs2{font-size:90.666667pt;}
.fsd{font-size:91.573333pt;}
.fs5{font-size:106.666667pt;}
.fs8{font-size:110.429482pt;}
.fse{font-size:145.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:19.067200pt;}
.yab{bottom:19.069067pt;}
.y65{bottom:19.069200pt;}
.ycc{bottom:19.069333pt;}
.y11f{bottom:22.553467pt;}
.y85{bottom:24.402400pt;}
.y36{bottom:24.402533pt;}
.yba{bottom:24.402667pt;}
.y2{bottom:27.174000pt;}
.y84{bottom:27.175867pt;}
.y35{bottom:27.176000pt;}
.yb9{bottom:27.176133pt;}
.y11d{bottom:52.153333pt;}
.y63{bottom:58.440667pt;}
.y1c{bottom:59.498800pt;}
.y82{bottom:62.204000pt;}
.ycb{bottom:62.481333pt;}
.yfd{bottom:65.306000pt;}
.y11c{bottom:71.353333pt;}
.y62{bottom:77.640667pt;}
.y1b{bottom:78.698800pt;}
.y81{bottom:81.404000pt;}
.yca{bottom:81.681333pt;}
.y13e{bottom:83.511067pt;}
.yfc{bottom:84.506000pt;}
.y11b{bottom:90.553200pt;}
.y61{bottom:96.840667pt;}
.y80{bottom:100.604000pt;}
.yc9{bottom:100.881333pt;}
.y13d{bottom:102.711067pt;}
.yfb{bottom:103.706000pt;}
.y11a{bottom:109.753333pt;}
.y19{bottom:112.642400pt;}
.y60{bottom:116.040667pt;}
.y7f{bottom:119.804000pt;}
.yc8{bottom:120.081333pt;}
.yfa{bottom:122.906000pt;}
.y119{bottom:128.953333pt;}
.y18{bottom:131.842400pt;}
.y5f{bottom:135.240667pt;}
.y7e{bottom:139.004000pt;}
.yc7{bottom:139.281333pt;}
.y13c{bottom:141.111067pt;}
.yf9{bottom:142.106000pt;}
.y118{bottom:148.153333pt;}
.y17{bottom:151.042400pt;}
.y5e{bottom:154.440667pt;}
.y7d{bottom:158.204000pt;}
.yc6{bottom:158.481333pt;}
.y13b{bottom:160.311067pt;}
.yf8{bottom:161.306000pt;}
.y117{bottom:167.353333pt;}
.y16{bottom:170.242400pt;}
.y5d{bottom:173.640667pt;}
.y7c{bottom:177.404000pt;}
.yc5{bottom:177.681333pt;}
.yf7{bottom:180.506000pt;}
.y15{bottom:189.442400pt;}
.y5c{bottom:192.840667pt;}
.y7b{bottom:196.604000pt;}
.yc4{bottom:196.881333pt;}
.y13a{bottom:198.711067pt;}
.yf6{bottom:199.706000pt;}
.y14{bottom:208.642400pt;}
.y11e{bottom:209.685867pt;}
.y5b{bottom:212.040667pt;}
.y7a{bottom:215.804000pt;}
.yc3{bottom:216.081333pt;}
.y1a{bottom:216.505067pt;}
.y139{bottom:217.911067pt;}
.yf5{bottom:218.906000pt;}
.y13{bottom:227.842400pt;}
.yc2{bottom:235.281333pt;}
.yf4{bottom:238.106000pt;}
.y5a{bottom:244.040667pt;}
.y12{bottom:247.042400pt;}
.y79{bottom:247.804000pt;}
.yc1{bottom:254.481333pt;}
.y138{bottom:256.310933pt;}
.y116{bottom:257.025600pt;}
.yf3{bottom:257.306000pt;}
.y11{bottom:266.242400pt;}
.yc0{bottom:273.681333pt;}
.y137{bottom:275.511067pt;}
.y115{bottom:276.225600pt;}
.yf2{bottom:276.506000pt;}
.y64{bottom:278.977333pt;}
.y10{bottom:285.442400pt;}
.ybf{bottom:292.881333pt;}
.y136{bottom:294.711067pt;}
.y114{bottom:295.425600pt;}
.yf1{bottom:295.706000pt;}
.yf{bottom:304.642400pt;}
.ybe{bottom:312.081333pt;}
.y113{bottom:314.625600pt;}
.yf0{bottom:314.906000pt;}
.ye{bottom:323.842400pt;}
.y58{bottom:323.926667pt;}
.yaa{bottom:327.509867pt;}
.ybd{bottom:331.281333pt;}
.y135{bottom:333.111067pt;}
.y112{bottom:333.825600pt;}
.yef{bottom:334.106000pt;}
.yd{bottom:343.042400pt;}
.y57{bottom:343.126667pt;}
.ybc{bottom:350.481333pt;}
.y134{bottom:352.310933pt;}
.y111{bottom:353.025600pt;}
.yee{bottom:353.306000pt;}
.ya9{bottom:359.425600pt;}
.yc{bottom:362.242400pt;}
.y56{bottom:362.326667pt;}
.y110{bottom:372.225600pt;}
.yed{bottom:372.506000pt;}
.ya8{bottom:378.625600pt;}
.yb{bottom:381.442400pt;}
.y55{bottom:381.526667pt;}
.y133{bottom:390.711067pt;}
.y10f{bottom:391.425600pt;}
.yec{bottom:391.706000pt;}
.ya7{bottom:397.825600pt;}
.ya{bottom:400.642400pt;}
.y132{bottom:409.911067pt;}
.y10e{bottom:410.625600pt;}
.yeb{bottom:410.906000pt;}
.ya6{bottom:417.025600pt;}
.y9{bottom:419.842400pt;}
.y59{bottom:423.859200pt;}
.y10d{bottom:429.825600pt;}
.yea{bottom:430.106000pt;}
.ya5{bottom:436.225600pt;}
.y131{bottom:448.310933pt;}
.y10c{bottom:449.025600pt;}
.ye9{bottom:449.306000pt;}
.ya4{bottom:455.425600pt;}
.y2e{bottom:460.414533pt;}
.y130{bottom:467.510933pt;}
.y10b{bottom:468.225600pt;}
.yb7{bottom:468.297333pt;}
.ye8{bottom:468.506000pt;}
.ya3{bottom:474.625600pt;}
.y12f{bottom:486.711067pt;}
.y10a{bottom:487.425600pt;}
.ye7{bottom:487.706000pt;}
.y53{bottom:487.882267pt;}
.y2c{bottom:491.657333pt;}
.ya2{bottom:493.825600pt;}
.yb6{bottom:502.581733pt;}
.y109{bottom:506.625600pt;}
.ye6{bottom:506.906000pt;}
.y52{bottom:507.082267pt;}
.y2b{bottom:510.857333pt;}
.y78{bottom:512.706933pt;}
.ya1{bottom:513.025600pt;}
.yb5{bottom:521.781733pt;}
.y12e{bottom:525.111067pt;}
.y108{bottom:525.825600pt;}
.ye5{bottom:526.106000pt;}
.y51{bottom:526.282267pt;}
.y2a{bottom:530.057333pt;}
.ya0{bottom:532.225600pt;}
.yb4{bottom:540.981733pt;}
.y12d{bottom:544.310933pt;}
.y107{bottom:545.025600pt;}
.ye4{bottom:545.306000pt;}
.y50{bottom:545.482267pt;}
.y77{bottom:547.268400pt;}
.y29{bottom:549.257333pt;}
.y9f{bottom:551.425600pt;}
.yb3{bottom:560.181733pt;}
.y106{bottom:564.225600pt;}
.y4f{bottom:564.682267pt;}
.y76{bottom:566.468400pt;}
.y28{bottom:568.457333pt;}
.y9e{bottom:570.625600pt;}
.yb2{bottom:579.381733pt;}
.y12c{bottom:582.711067pt;}
.y105{bottom:583.425600pt;}
.y4e{bottom:583.882267pt;}
.y75{bottom:585.668400pt;}
.yfe{bottom:587.638533pt;}
.y27{bottom:587.657333pt;}
.y9d{bottom:589.825600pt;}
.yb1{bottom:598.581733pt;}
.y12b{bottom:601.911067pt;}
.y2d{bottom:602.602667pt;}
.y104{bottom:602.625600pt;}
.y4d{bottom:603.082267pt;}
.y26{bottom:606.857333pt;}
.y9c{bottom:609.025600pt;}
.y74{bottom:617.668400pt;}
.yb0{bottom:617.781733pt;}
.y103{bottom:621.825600pt;}
.y4c{bottom:622.282267pt;}
.y25{bottom:626.057333pt;}
.y9b{bottom:628.225600pt;}
.ydd{bottom:631.236800pt;}
.yaf{bottom:636.981733pt;}
.y12a{bottom:640.311067pt;}
.y102{bottom:641.025600pt;}
.y4b{bottom:641.482267pt;}
.y24{bottom:645.257333pt;}
.y9a{bottom:647.425600pt;}
.ydc{bottom:650.436667pt;}
.y73{bottom:656.068400pt;}
.yae{bottom:656.181733pt;}
.y129{bottom:659.510933pt;}
.y101{bottom:660.225600pt;}
.y4a{bottom:660.682267pt;}
.y23{bottom:664.457333pt;}
.y99{bottom:666.625600pt;}
.ydb{bottom:669.636800pt;}
.y72{bottom:675.268400pt;}
.y143{bottom:678.515467pt;}
.y100{bottom:679.425600pt;}
.y49{bottom:679.882267pt;}
.y22{bottom:683.657333pt;}
.yda{bottom:688.836800pt;}
.yad{bottom:689.084667pt;}
.y71{bottom:694.468400pt;}
.y128{bottom:697.910933pt;}
.y98{bottom:698.625600pt;}
.y48{bottom:699.082133pt;}
.y142{bottom:699.315467pt;}
.y21{bottom:702.857333pt;}
.yd9{bottom:708.036800pt;}
.y70{bottom:713.668400pt;}
.y140{bottom:714.782000pt;}
.y127{bottom:717.111067pt;}
.yff{bottom:717.825467pt;}
.y47{bottom:718.282133pt;}
.y141{bottom:720.115333pt;}
.y20{bottom:722.057333pt;}
.yd8{bottom:727.236800pt;}
.yd2{bottom:728.140133pt;}
.y6f{bottom:732.868533pt;}
.y126{bottom:736.311067pt;}
.y97{bottom:737.025600pt;}
.y46{bottom:737.482133pt;}
.y1f{bottom:741.257333pt;}
.yd7{bottom:746.436800pt;}
.y6e{bottom:752.068533pt;}
.y96{bottom:756.225600pt;}
.y45{bottom:756.682133pt;}
.y1e{bottom:760.457333pt;}
.yd1{bottom:761.210933pt;}
.yd6{bottom:765.636933pt;}
.y6d{bottom:771.268533pt;}
.y125{bottom:774.711067pt;}
.y95{bottom:775.425600pt;}
.y44{bottom:775.882133pt;}
.y1d{bottom:779.657333pt;}
.yd5{bottom:784.836933pt;}
.y124{bottom:793.911067pt;}
.y94{bottom:794.625600pt;}
.y43{bottom:795.082133pt;}
.yd4{bottom:804.036933pt;}
.y6c{bottom:813.519333pt;}
.y93{bottom:813.825467pt;}
.y42{bottom:814.282267pt;}
.y33{bottom:814.374400pt;}
.y69{bottom:814.464400pt;}
.yd3{bottom:823.236933pt;}
.y123{bottom:832.311200pt;}
.y6b{bottom:832.719467pt;}
.y92{bottom:833.025600pt;}
.y41{bottom:833.482267pt;}
.y68{bottom:833.664267pt;}
.y32{bottom:846.374400pt;}
.y122{bottom:851.511200pt;}
.y6a{bottom:851.919467pt;}
.y91{bottom:852.225600pt;}
.y40{bottom:852.682267pt;}
.y67{bottom:852.864400pt;}
.ye3{bottom:859.818533pt;}
.ye0{bottom:860.763333pt;}
.y90{bottom:871.425600pt;}
.y3f{bottom:871.882267pt;}
.y31{bottom:871.974400pt;}
.ye2{bottom:879.018533pt;}
.ydf{bottom:879.963333pt;}
.y121{bottom:889.911333pt;}
.y8f{bottom:890.625600pt;}
.y3e{bottom:891.082400pt;}
.ye1{bottom:898.218533pt;}
.yde{bottom:899.163467pt;}
.y30{bottom:903.974400pt;}
.y120{bottom:909.111333pt;}
.y8e{bottom:909.825733pt;}
.y3d{bottom:910.282400pt;}
.y8d{bottom:929.025733pt;}
.y3c{bottom:929.482400pt;}
.y2f{bottom:935.974400pt;}
.y13f{bottom:944.048133pt;}
.y8c{bottom:948.225733pt;}
.y3b{bottom:948.682400pt;}
.y8b{bottom:967.425733pt;}
.y3a{bottom:967.882533pt;}
.y8{bottom:978.376933pt;}
.y8a{bottom:986.625867pt;}
.y39{bottom:987.082533pt;}
.y7{bottom:1003.792933pt;}
.y89{bottom:1005.825867pt;}
.yd0{bottom:1005.826133pt;}
.y38{bottom:1006.282533pt;}
.y6{bottom:1019.976933pt;}
.y88{bottom:1025.025867pt;}
.ycf{bottom:1025.026267pt;}
.y87{bottom:1044.225867pt;}
.yce{bottom:1044.226267pt;}
.y5{bottom:1045.392933pt;}
.y54{bottom:1048.615200pt;}
.y4{bottom:1061.576933pt;}
.y86{bottom:1063.425867pt;}
.ycd{bottom:1063.426133pt;}
.yac{bottom:1091.301600pt;}
.y66{bottom:1091.301733pt;}
.y37{bottom:1091.301867pt;}
.ybb{bottom:1091.302000pt;}
.y3{bottom:1092.021467pt;}
.y83{bottom:1092.023200pt;}
.y34{bottom:1092.023333pt;}
.yb8{bottom:1092.023467pt;}
.h7{height:31.292250pt;}
.h6{height:31.292783pt;}
.h10{height:42.117188pt;}
.h11{height:44.437500pt;}
.h2{height:56.102344pt;}
.h3{height:56.156250pt;}
.h12{height:56.717812pt;}
.h9{height:58.137240pt;}
.h15{height:60.835938pt;}
.h5{height:65.515625pt;}
.hf{height:66.769010pt;}
.ha{height:70.195312pt;}
.h13{height:70.897266pt;}
.hb{height:74.062500pt;}
.hd{height:74.875000pt;}
.he{height:77.516320pt;}
.h4{height:79.554688pt;}
.h8{height:93.593750pt;}
.hc{height:96.895400pt;}
.h14{height:109.080000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:7.076000pt;}
.x3{left:48.000000pt;}
.x11{left:58.626400pt;}
.x1e{left:68.031467pt;}
.x4{left:76.220400pt;}
.x20{left:77.915867pt;}
.x27{left:79.829333pt;}
.xc{left:81.941600pt;}
.x29{left:87.049600pt;}
.x9{left:91.464533pt;}
.x35{left:101.304667pt;}
.x8{left:103.311600pt;}
.x7{left:109.606267pt;}
.xe{left:111.166800pt;}
.xf{left:120.047067pt;}
.x1f{left:135.658000pt;}
.xd{left:140.658933pt;}
.x36{left:146.187067pt;}
.x28{left:153.300933pt;}
.x26{left:159.214933pt;}
.x38{left:166.632800pt;}
.x12{left:175.980533pt;}
.x13{left:183.084800pt;}
.x17{left:245.065200pt;}
.x37{left:248.151600pt;}
.x39{left:260.367200pt;}
.x5{left:282.633067pt;}
.x21{left:301.606267pt;}
.x10{left:303.276133pt;}
.x1c{left:306.759200pt;}
.xa{left:310.654667pt;}
.x2c{left:327.238667pt;}
.x14{left:329.668133pt;}
.x2a{left:332.625067pt;}
.x3c{left:342.513467pt;}
.x22{left:343.694000pt;}
.x18{left:347.458400pt;}
.x30{left:352.347200pt;}
.x31{left:356.812933pt;}
.x1b{left:366.281467pt;}
.x2b{left:371.197600pt;}
.x15{left:385.511867pt;}
.x6{left:391.028133pt;}
.x2{left:396.850400pt;}
.xb{left:412.617333pt;}
.x3f{left:442.322800pt;}
.x40{left:468.521733pt;}
.x3d{left:469.818800pt;}
.x32{left:479.995733pt;}
.x42{left:505.237200pt;}
.x23{left:530.078800pt;}
.x41{left:534.391467pt;}
.x25{left:539.963067pt;}
.x33{left:551.089467pt;}
.x2f{left:555.711067pt;}
.x3e{left:564.174800pt;}
.x2d{left:567.128133pt;}
.x24{left:573.105733pt;}
.x3a{left:588.622933pt;}
.x2e{left:605.385067pt;}
.x1d{left:637.829733pt;}
.x16{left:671.811067pt;}
.x19{left:686.177333pt;}
.x3b{left:691.700933pt;}
.x34{left:702.146133pt;}
.x1a{left:740.372667pt;}
}




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