
    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_5cd6d36e8f5eca17daffdb7d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_623d9a6752d22db612da3987.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_97a063f4b4da28b81a0e8603.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_a06c51c75968a7c423062def.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_08e4815959f7f59c3ca83a38.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d94fa2f2be2253fc451ce115.woff')format("woff");}.ff9{font-family:ff9;line-height:1.378906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4cef2f8fbb84658a73a2415f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.378906;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:ffb;src:url('chunks/assets/font_882c304b016370f757ee1cc2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.923340;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:ffc;src:url('chunks/assets/font_bd4be3620e46a6718da3bcc3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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:ffd;src:url('chunks/assets/font_75692c205b2609bdc315cfae.woff')format("woff");}.ffd{font-family:ffd;line-height:1.112305;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:ffe;src:url('chunks/assets/font_360da2f5884eb1b730382214.woff')format("woff");}.ffe{font-family:ffe;line-height:1.112305;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:fff;src:url('chunks/assets/font_6a0140e843c10c3ecd5c0f45.woff')format("woff");}.fff{font-family:fff;line-height:0.934082;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:ff10;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.739746;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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:-13.620000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsa{letter-spacing:-2.724000px;}
.lse{letter-spacing:-2.250000px;}
.lsd{letter-spacing:-1.596000px;}
.ls13{letter-spacing:-1.482000px;}
.lsb{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.378000px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.690000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls2{letter-spacing:2.034000px;}
.ls4{letter-spacing:2.086500px;}
.ls3{letter-spacing:2.146500px;}
.ls14{letter-spacing:2.164500px;}
.ls5{letter-spacing:2.250000px;}
.ls12{letter-spacing:2.310000px;}
.ls6{letter-spacing:2.322000px;}
.ls7{letter-spacing:4.779000px;}
.ls15{letter-spacing:6.387000px;}
.ls17{letter-spacing:15.387000px;}
.ls16{letter-spacing:46.887000px;}
.ls11{letter-spacing:64.887000px;}
.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;}
}
.ws5{word-spacing:-56.920429px;}
.ws7{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws9{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.ws8{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._15{margin-left:-7.614000px;}
._9{margin-left:-6.323860px;}
._a{margin-left:-4.984500px;}
._3{margin-left:-3.960000px;}
._2{margin-left:-2.430000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._7{width:3.096000px;}
._5{width:4.224000px;}
._4{width:5.286000px;}
._6{width:6.750000px;}
._b{width:8.214000px;}
._8{width:10.086000px;}
._19{width:11.281500px;}
._c{width:12.316500px;}
._d{width:16.096500px;}
._12{width:17.164500px;}
._16{width:19.903500px;}
._e{width:21.105000px;}
._11{width:22.186500px;}
._f{width:24.799500px;}
._10{width:25.834500px;}
._18{width:29.335500px;}
._14{width:30.550500px;}
._1c{width:34.137000px;}
._13{width:35.377500px;}
._1a{width:38.520000px;}
._17{width:40.273500px;}
._1b{width:43.993500px;}
._1d{width:47.542500px;}
._1e{width:52.770000px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs9{font-size:37.946952px;}
.fs6{font-size:40.500000px;}
.fs2{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.920429px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y4a{bottom:3.390000px;}
.yd1{bottom:3.405000px;}
.ye1{bottom:3.420000px;}
.y19{bottom:4.500000px;}
.yd6{bottom:4.515000px;}
.yd9{bottom:4.545000px;}
.ye{bottom:5.625000px;}
.yc5{bottom:10.125000px;}
.yc3{bottom:10.155000px;}
.y4d{bottom:11.295000px;}
.yc{bottom:13.500000px;}
.y1b{bottom:13.545000px;}
.y4{bottom:18.000000px;}
.y2{bottom:20.250000px;}
.y49{bottom:20.295000px;}
.y4e{bottom:22.545000px;}
.y4c{bottom:25.920000px;}
.y18{bottom:27.045000px;}
.yb{bottom:30.405000px;}
.y5{bottom:33.750000px;}
.y48{bottom:38.295000px;}
.y17{bottom:40.545000px;}
.ya{bottom:46.155000px;}
.y1{bottom:55.162500px;}
.y47{bottom:55.215000px;}
.y16{bottom:61.950000px;}
.y46{bottom:72.090000px;}
.y9{bottom:73.185000px;}
.y15{bottom:78.825000px;}
.y14{bottom:88.950000px;}
.y45{bottom:90.075000px;}
.y8{bottom:93.435000px;}
.yee{bottom:103.575000px;}
.ycb{bottom:104.700000px;}
.y13{bottom:106.995000px;}
.y7{bottom:110.355000px;}
.y91{bottom:111.450000px;}
.y53{bottom:113.700000px;}
.yfe{bottom:115.950000px;}
.yed{bottom:117.075000px;}
.yca{bottom:122.737500px;}
.y44{bottom:123.870000px;}
.y12{bottom:126.120000px;}
.y90{bottom:128.362500px;}
.y52{bottom:130.612500px;}
.yfd{bottom:132.862500px;}
.yc9{bottom:136.237500px;}
.y43{bottom:141.900000px;}
.y8f{bottom:146.362500px;}
.y51{bottom:147.487500px;}
.yfc{bottom:149.737500px;}
.y11{bottom:152.025000px;}
.y42{bottom:158.775000px;}
.yc8{bottom:161.025000px;}
.y8e{bottom:163.275000px;}
.y50{bottom:165.525000px;}
.yfb{bottom:167.775000px;}
.y41{bottom:175.650000px;}
.y10{bottom:176.775000px;}
.y8d{bottom:180.150000px;}
.y4f{bottom:182.400000px;}
.yfa{bottom:184.650000px;}
.yc7{bottom:185.775000px;}
.y40{bottom:193.695000px;}
.y4b{bottom:195.900000px;}
.y8c{bottom:198.150000px;}
.yf9{bottom:201.570000px;}
.y3f{bottom:210.570000px;}
.y8b{bottom:215.070000px;}
.yf8{bottom:219.570000px;}
.y3e{bottom:227.490000px;}
.y8a{bottom:231.945000px;}
.y1c{bottom:233.055000px;}
.yc6{bottom:235.320000px;}
.yf7{bottom:236.445000px;}
.y3d{bottom:245.475000px;}
.y89{bottom:249.975000px;}
.yf6{bottom:253.350000px;}
.yc4{bottom:258.975000px;}
.y3c{bottom:262.395000px;}
.y88{bottom:266.850000px;}
.yf5{bottom:271.350000px;}
.y3b{bottom:279.270000px;}
.y87{bottom:283.725000px;}
.yf4{bottom:288.270000px;}
.y3a{bottom:297.270000px;}
.y86{bottom:301.770000px;}
.yf3{bottom:305.145000px;}
.yc2{bottom:311.895000px;}
.y39{bottom:314.190000px;}
.y85{bottom:319.755000px;}
.yf2{bottom:323.130000px;}
.yc1{bottom:329.925000px;}
.y38{bottom:331.065000px;}
.y84{bottom:336.675000px;}
.yf1{bottom:340.050000px;}
.yc0{bottom:343.425000px;}
.y37{bottom:349.095000px;}
.y83{bottom:354.675000px;}
.y29{bottom:354.720000px;}
.yf0{bottom:356.925000px;}
.ybf{bottom:361.425000px;}
.y36{bottom:365.970000px;}
.y28{bottom:370.470000px;}
.y82{bottom:373.830000px;}
.yef{bottom:374.955000px;}
.ybe{bottom:379.455000px;}
.y35{bottom:382.845000px;}
.y27{bottom:388.515000px;}
.y81{bottom:391.830000px;}
.ybd{bottom:397.455000px;}
.y34{bottom:400.890000px;}
.y26{bottom:405.390000px;}
.y80{bottom:408.705000px;}
.ybc{bottom:415.500000px;}
.y33{bottom:417.765000px;}
.y25{bottom:423.390000px;}
.y7f{bottom:426.750000px;}
.ybb{bottom:433.500000px;}
.y32{bottom:434.670000px;}
.y24{bottom:440.295000px;}
.y7e{bottom:443.625000px;}
.y31{bottom:452.670000px;}
.yba{bottom:456.045000px;}
.y23{bottom:457.170000px;}
.y7d{bottom:460.545000px;}
.y30{bottom:469.590000px;}
.yb9{bottom:472.920000px;}
.y22{bottom:475.200000px;}
.y7c{bottom:478.530000px;}
.y2f{bottom:486.465000px;}
.yb8{bottom:489.795000px;}
.y21{bottom:492.075000px;}
.y7b{bottom:495.450000px;}
.y2e{bottom:504.450000px;}
.yb7{bottom:507.825000px;}
.y20{bottom:510.090000px;}
.y7a{bottom:512.325000px;}
.y2d{bottom:521.370000px;}
.yb6{bottom:524.700000px;}
.y79{bottom:530.325000px;}
.y1f{bottom:530.370000px;}
.y2c{bottom:538.245000px;}
.yb5{bottom:541.605000px;}
.y78{bottom:547.245000px;}
.y2b{bottom:556.275000px;}
.y1e{bottom:557.400000px;}
.yb4{bottom:559.620000px;}
.y77{bottom:564.120000px;}
.y2a{bottom:573.150000px;}
.y1d{bottom:575.400000px;}
.yb3{bottom:576.495000px;}
.yec{bottom:581.025000px;}
.y76{bottom:582.150000px;}
.yb2{bottom:593.400000px;}
.yeb{bottom:597.900000px;}
.y75{bottom:599.025000px;}
.yb1{bottom:611.400000px;}
.y74{bottom:615.900000px;}
.yb0{bottom:628.320000px;}
.yea{bottom:632.820000px;}
.y73{bottom:633.945000px;}
.yaf{bottom:645.195000px;}
.ye9{bottom:649.695000px;}
.y72{bottom:650.820000px;}
.yae{bottom:663.225000px;}
.y71{bottom:667.725000px;}
.yad{bottom:680.100000px;}
.ye8{bottom:684.600000px;}
.y70{bottom:685.725000px;}
.yac{bottom:696.975000px;}
.ye7{bottom:699.225000px;}
.y6f{bottom:702.645000px;}
.yab{bottom:715.005000px;}
.ye6{bottom:717.255000px;}
.y6e{bottom:719.520000px;}
.yaa{bottom:731.880000px;}
.ye5{bottom:735.255000px;}
.y6d{bottom:737.505000px;}
.ya9{bottom:748.800000px;}
.ye4{bottom:753.300000px;}
.y6c{bottom:754.425000px;}
.ya8{bottom:766.800000px;}
.y6b{bottom:771.300000px;}
.ye3{bottom:774.675000px;}
.ya7{bottom:783.675000px;}
.y6a{bottom:789.330000px;}
.ye2{bottom:791.580000px;}
.ya6{bottom:800.580000px;}
.y69{bottom:806.205000px;}
.ya5{bottom:818.580000px;}
.y1a{bottom:819.705000px;}
.y68{bottom:823.080000px;}
.ye0{bottom:824.205000px;}
.ya4{bottom:835.500000px;}
.y67{bottom:841.125000px;}
.ydf{bottom:842.250000px;}
.yf{bottom:849.000000px;}
.ya3{bottom:852.375000px;}
.y66{bottom:858.000000px;}
.yde{bottom:860.250000px;}
.ya2{bottom:870.420000px;}
.y65{bottom:874.920000px;}
.ydd{bottom:881.670000px;}
.ya1{bottom:887.295000px;}
.y64{bottom:892.920000px;}
.ydc{bottom:899.670000px;}
.ya0{bottom:904.170000px;}
.y63{bottom:909.795000px;}
.ydb{bottom:913.200000px;}
.y9f{bottom:922.200000px;}
.y62{bottom:926.700000px;}
.yda{bottom:931.200000px;}
.y9e{bottom:939.075000px;}
.y61{bottom:944.700000px;}
.yd8{bottom:949.200000px;}
.y9d{bottom:955.995000px;}
.y60{bottom:961.620000px;}
.yd7{bottom:967.245000px;}
.y9c{bottom:973.995000px;}
.y5f{bottom:978.495000px;}
.yd5{bottom:985.230000px;}
.y9b{bottom:990.870000px;}
.y5e{bottom:996.525000px;}
.yd4{bottom:1003.275000px;}
.y9a{bottom:1007.775000px;}
.y5d{bottom:1013.400000px;}
.y99{bottom:1025.775000px;}
.y5c{bottom:1030.275000px;}
.yd{bottom:1040.445000px;}
.yd3{bottom:1042.695000px;}
.y98{bottom:1043.820000px;}
.y5b{bottom:1048.320000px;}
.yd2{bottom:1057.320000px;}
.y6{bottom:1060.695000px;}
.y97{bottom:1061.820000px;}
.y5a{bottom:1065.195000px;}
.yd0{bottom:1075.320000px;}
.y96{bottom:1078.725000px;}
.y59{bottom:1082.100000px;}
.ycf{bottom:1093.350000px;}
.y95{bottom:1097.850000px;}
.y58{bottom:1100.100000px;}
.yce{bottom:1111.350000px;}
.y94{bottom:1114.725000px;}
.y57{bottom:1116.975000px;}
.ycd{bottom:1129.380000px;}
.y93{bottom:1132.755000px;}
.y56{bottom:1133.880000px;}
.ycc{bottom:1147.380000px;}
.y92{bottom:1150.755000px;}
.y55{bottom:1151.880000px;}
.y54{bottom:1168.800000px;}
.h26{height:16.875000px;}
.h25{height:16.912500px;}
.h27{height:17.985000px;}
.h22{height:18.000000px;}
.h21{height:18.037500px;}
.hc{height:20.250000px;}
.h24{height:23.625000px;}
.h23{height:23.662500px;}
.h18{height:29.287500px;}
.h14{height:29.833125px;}
.h17{height:29.953125px;}
.h2{height:32.662500px;}
.h13{height:35.806641px;}
.h8{height:37.125000px;}
.h1f{height:37.162500px;}
.h1d{height:39.832031px;}
.h20{height:41.275635px;}
.h1c{height:41.389893px;}
.hf{height:43.075195px;}
.h16{height:43.453125px;}
.ha{height:43.875000px;}
.h1b{height:47.074219px;}
.h1a{height:49.234131px;}
.hd{height:50.625000px;}
.h1e{height:52.444336px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h11{height:58.185791px;}
.h12{height:59.899658px;}
.h15{height:62.812582px;}
.h10{height:64.237500px;}
.h6{height:67.137451px;}
.h5{height:69.114990px;}
.hb{height:71.613281px;}
.h7{height:121.612500px;}
.he{height:191.430000px;}
.h19{height:586.650000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:73.237500px;}
.w18{width:139.687500px;}
.w13{width:147.562500px;}
.w17{width:150.930000px;}
.w4{width:152.055000px;}
.w11{width:176.850000px;}
.w1b{width:179.100000px;}
.w14{width:184.725000px;}
.w15{width:188.145000px;}
.w1a{width:196.020000px;}
.wb{width:205.020000px;}
.w12{width:208.395000px;}
.we{width:214.050000px;}
.w7{width:216.270000px;}
.w10{width:217.425000px;}
.wa{width:224.175000px;}
.wd{width:233.145000px;}
.wc{width:283.845000px;}
.w9{width:298.500000px;}
.wf{width:334.530000px;}
.w19{width:353.700000px;}
.w16{width:438.195000px;}
.w8{width:515.925000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x15{left:12.405000px;}
.x43{left:20.250000px;}
.x12{left:22.537500px;}
.xf{left:29.287500px;}
.x37{left:36.030000px;}
.x30{left:39.420000px;}
.x49{left:40.530000px;}
.x10{left:42.787500px;}
.x39{left:43.905000px;}
.x2e{left:46.200000px;}
.x11{left:47.287500px;}
.xb{left:51.825000px;}
.x1e{left:54.090000px;}
.x1c{left:57.450000px;}
.x35{left:58.575000px;}
.x45{left:59.700000px;}
.x25{left:61.950000px;}
.x3b{left:65.325000px;}
.x3e{left:69.825000px;}
.x33{left:70.950000px;}
.x4b{left:72.075000px;}
.x31{left:75.450000px;}
.x3d{left:79.995000px;}
.x1{left:81.112500px;}
.x19{left:82.237500px;}
.x3c{left:84.480000px;}
.x20{left:85.620000px;}
.x3f{left:87.855000px;}
.x1f{left:88.995000px;}
.x4a{left:90.105000px;}
.x28{left:93.525000px;}
.x2a{left:96.900000px;}
.x5{left:97.987500px;}
.x32{left:100.275000px;}
.xc{left:103.612500px;}
.x1a{left:104.737500px;}
.x16{left:108.149987px;}
.x27{left:109.230000px;}
.x29{left:112.605000px;}
.x23{left:113.782500px;}
.x47{left:116.032500px;}
.x2c{left:132.907500px;}
.x17{left:135.187487px;}
.x41{left:175.732500px;}
.xe{left:176.857500px;}
.x13{left:214.012500px;}
.x6{left:233.175000px;}
.x40{left:266.954987px;}
.x9{left:273.705000px;}
.x34{left:284.999987px;}
.x36{left:290.625000px;}
.x14{left:297.375000px;}
.x18{left:298.499987px;}
.x46{left:314.279987px;}
.x22{left:325.544987px;}
.x7{left:328.920000px;}
.x2b{left:333.404987px;}
.x8{left:348.075000px;}
.xd{left:364.957500px;}
.x24{left:367.245000px;}
.x4d{left:373.994987px;}
.x1b{left:381.870000px;}
.x2d{left:416.775000px;}
.xa{left:437.055000px;}
.x38{left:438.195000px;}
.x21{left:447.194987px;}
.x42{left:521.550000px;}
.x4c{left:594.749987px;}
.x26{left:601.500000px;}
.x1d{left:607.155000px;}
.x3a{left:624.030000px;}
.x48{left:633.075000px;}
.x2f{left:635.325000px;}
.x44{left:672.495000px;}
.x3{left:740.070000px;}
@media print{
.v2{vertical-align:-12.106667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-2.421333pt;}
.lse{letter-spacing:-2.000000pt;}
.lsd{letter-spacing:-1.418667pt;}
.ls13{letter-spacing:-1.317333pt;}
.lsb{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.613333pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls2{letter-spacing:1.808000pt;}
.ls4{letter-spacing:1.854667pt;}
.ls3{letter-spacing:1.908000pt;}
.ls14{letter-spacing:1.924000pt;}
.ls5{letter-spacing:2.000000pt;}
.ls12{letter-spacing:2.053333pt;}
.ls6{letter-spacing:2.064000pt;}
.ls7{letter-spacing:4.248000pt;}
.ls15{letter-spacing:5.677333pt;}
.ls17{letter-spacing:13.677333pt;}
.ls16{letter-spacing:41.677333pt;}
.ls11{letter-spacing:57.677333pt;}
.ws5{word-spacing:-50.595937pt;}
.ws7{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws9{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.ws8{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._15{margin-left:-6.768000pt;}
._9{margin-left:-5.621209pt;}
._a{margin-left:-4.430667pt;}
._3{margin-left:-3.520000pt;}
._2{margin-left:-2.160000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._7{width:2.752000pt;}
._5{width:3.754667pt;}
._4{width:4.698667pt;}
._6{width:6.000000pt;}
._b{width:7.301333pt;}
._8{width:8.965333pt;}
._19{width:10.028000pt;}
._c{width:10.948000pt;}
._d{width:14.308000pt;}
._12{width:15.257333pt;}
._16{width:17.692000pt;}
._e{width:18.760000pt;}
._11{width:19.721333pt;}
._f{width:22.044000pt;}
._10{width:22.964000pt;}
._18{width:26.076000pt;}
._14{width:27.156000pt;}
._1c{width:30.344000pt;}
._13{width:31.446667pt;}
._1a{width:34.240000pt;}
._17{width:35.798667pt;}
._1b{width:39.105333pt;}
._1d{width:42.260000pt;}
._1e{width:46.906667pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:33.730624pt;}
.fs6{font-size:36.000000pt;}
.fs2{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.595937pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y4a{bottom:3.013333pt;}
.yd1{bottom:3.026667pt;}
.ye1{bottom:3.040000pt;}
.y19{bottom:4.000000pt;}
.yd6{bottom:4.013333pt;}
.yd9{bottom:4.040000pt;}
.ye{bottom:5.000000pt;}
.yc5{bottom:9.000000pt;}
.yc3{bottom:9.026667pt;}
.y4d{bottom:10.040000pt;}
.yc{bottom:12.000000pt;}
.y1b{bottom:12.040000pt;}
.y4{bottom:16.000000pt;}
.y2{bottom:18.000000pt;}
.y49{bottom:18.040000pt;}
.y4e{bottom:20.040000pt;}
.y4c{bottom:23.040000pt;}
.y18{bottom:24.040000pt;}
.yb{bottom:27.026667pt;}
.y5{bottom:30.000000pt;}
.y48{bottom:34.040000pt;}
.y17{bottom:36.040000pt;}
.ya{bottom:41.026667pt;}
.y1{bottom:49.033333pt;}
.y47{bottom:49.080000pt;}
.y16{bottom:55.066667pt;}
.y46{bottom:64.080000pt;}
.y9{bottom:65.053333pt;}
.y15{bottom:70.066667pt;}
.y14{bottom:79.066667pt;}
.y45{bottom:80.066667pt;}
.y8{bottom:83.053333pt;}
.yee{bottom:92.066667pt;}
.ycb{bottom:93.066667pt;}
.y13{bottom:95.106667pt;}
.y7{bottom:98.093333pt;}
.y91{bottom:99.066667pt;}
.y53{bottom:101.066667pt;}
.yfe{bottom:103.066667pt;}
.yed{bottom:104.066667pt;}
.yca{bottom:109.100000pt;}
.y44{bottom:110.106667pt;}
.y12{bottom:112.106667pt;}
.y90{bottom:114.100000pt;}
.y52{bottom:116.100000pt;}
.yfd{bottom:118.100000pt;}
.yc9{bottom:121.100000pt;}
.y43{bottom:126.133333pt;}
.y8f{bottom:130.100000pt;}
.y51{bottom:131.100000pt;}
.yfc{bottom:133.100000pt;}
.y11{bottom:135.133333pt;}
.y42{bottom:141.133333pt;}
.yc8{bottom:143.133333pt;}
.y8e{bottom:145.133333pt;}
.y50{bottom:147.133333pt;}
.yfb{bottom:149.133333pt;}
.y41{bottom:156.133333pt;}
.y10{bottom:157.133333pt;}
.y8d{bottom:160.133333pt;}
.y4f{bottom:162.133333pt;}
.yfa{bottom:164.133333pt;}
.yc7{bottom:165.133333pt;}
.y40{bottom:172.173333pt;}
.y4b{bottom:174.133333pt;}
.y8c{bottom:176.133333pt;}
.yf9{bottom:179.173333pt;}
.y3f{bottom:187.173333pt;}
.y8b{bottom:191.173333pt;}
.yf8{bottom:195.173333pt;}
.y3e{bottom:202.213333pt;}
.y8a{bottom:206.173333pt;}
.y1c{bottom:207.160000pt;}
.yc6{bottom:209.173333pt;}
.yf7{bottom:210.173333pt;}
.y3d{bottom:218.200000pt;}
.y89{bottom:222.200000pt;}
.yf6{bottom:225.200000pt;}
.yc4{bottom:230.200000pt;}
.y3c{bottom:233.240000pt;}
.y88{bottom:237.200000pt;}
.yf5{bottom:241.200000pt;}
.y3b{bottom:248.240000pt;}
.y87{bottom:252.200000pt;}
.yf4{bottom:256.240000pt;}
.y3a{bottom:264.240000pt;}
.y86{bottom:268.240000pt;}
.yf3{bottom:271.240000pt;}
.yc2{bottom:277.240000pt;}
.y39{bottom:279.280000pt;}
.y85{bottom:284.226667pt;}
.yf2{bottom:287.226667pt;}
.yc1{bottom:293.266667pt;}
.y38{bottom:294.280000pt;}
.y84{bottom:299.266667pt;}
.yf1{bottom:302.266667pt;}
.yc0{bottom:305.266667pt;}
.y37{bottom:310.306667pt;}
.y83{bottom:315.266667pt;}
.y29{bottom:315.306667pt;}
.yf0{bottom:317.266667pt;}
.ybf{bottom:321.266667pt;}
.y36{bottom:325.306667pt;}
.y28{bottom:329.306667pt;}
.y82{bottom:332.293333pt;}
.yef{bottom:333.293333pt;}
.ybe{bottom:337.293333pt;}
.y35{bottom:340.306667pt;}
.y27{bottom:345.346667pt;}
.y81{bottom:348.293333pt;}
.ybd{bottom:353.293333pt;}
.y34{bottom:356.346667pt;}
.y26{bottom:360.346667pt;}
.y80{bottom:363.293333pt;}
.ybc{bottom:369.333333pt;}
.y33{bottom:371.346667pt;}
.y25{bottom:376.346667pt;}
.y7f{bottom:379.333333pt;}
.ybb{bottom:385.333333pt;}
.y32{bottom:386.373333pt;}
.y24{bottom:391.373333pt;}
.y7e{bottom:394.333333pt;}
.y31{bottom:402.373333pt;}
.yba{bottom:405.373333pt;}
.y23{bottom:406.373333pt;}
.y7d{bottom:409.373333pt;}
.y30{bottom:417.413333pt;}
.yb9{bottom:420.373333pt;}
.y22{bottom:422.400000pt;}
.y7c{bottom:425.360000pt;}
.y2f{bottom:432.413333pt;}
.yb8{bottom:435.373333pt;}
.y21{bottom:437.400000pt;}
.y7b{bottom:440.400000pt;}
.y2e{bottom:448.400000pt;}
.yb7{bottom:451.400000pt;}
.y20{bottom:453.413333pt;}
.y7a{bottom:455.400000pt;}
.y2d{bottom:463.440000pt;}
.yb6{bottom:466.400000pt;}
.y79{bottom:471.400000pt;}
.y1f{bottom:471.440000pt;}
.y2c{bottom:478.440000pt;}
.yb5{bottom:481.426667pt;}
.y78{bottom:486.440000pt;}
.y2b{bottom:494.466667pt;}
.y1e{bottom:495.466667pt;}
.yb4{bottom:497.440000pt;}
.y77{bottom:501.440000pt;}
.y2a{bottom:509.466667pt;}
.y1d{bottom:511.466667pt;}
.yb3{bottom:512.440000pt;}
.yec{bottom:516.466667pt;}
.y76{bottom:517.466667pt;}
.yb2{bottom:527.466667pt;}
.yeb{bottom:531.466667pt;}
.y75{bottom:532.466667pt;}
.yb1{bottom:543.466667pt;}
.y74{bottom:547.466667pt;}
.yb0{bottom:558.506667pt;}
.yea{bottom:562.506667pt;}
.y73{bottom:563.506667pt;}
.yaf{bottom:573.506667pt;}
.ye9{bottom:577.506667pt;}
.y72{bottom:578.506667pt;}
.yae{bottom:589.533333pt;}
.y71{bottom:593.533333pt;}
.yad{bottom:604.533333pt;}
.ye8{bottom:608.533333pt;}
.y70{bottom:609.533333pt;}
.yac{bottom:619.533333pt;}
.ye7{bottom:621.533333pt;}
.y6f{bottom:624.573333pt;}
.yab{bottom:635.560000pt;}
.ye6{bottom:637.560000pt;}
.y6e{bottom:639.573333pt;}
.yaa{bottom:650.560000pt;}
.ye5{bottom:653.560000pt;}
.y6d{bottom:655.560000pt;}
.ya9{bottom:665.600000pt;}
.ye4{bottom:669.600000pt;}
.y6c{bottom:670.600000pt;}
.ya8{bottom:681.600000pt;}
.y6b{bottom:685.600000pt;}
.ye3{bottom:688.600000pt;}
.ya7{bottom:696.600000pt;}
.y6a{bottom:701.626667pt;}
.ye2{bottom:703.626667pt;}
.ya6{bottom:711.626667pt;}
.y69{bottom:716.626667pt;}
.ya5{bottom:727.626667pt;}
.y1a{bottom:728.626667pt;}
.y68{bottom:731.626667pt;}
.ye0{bottom:732.626667pt;}
.ya4{bottom:742.666667pt;}
.y67{bottom:747.666667pt;}
.ydf{bottom:748.666667pt;}
.yf{bottom:754.666667pt;}
.ya3{bottom:757.666667pt;}
.y66{bottom:762.666667pt;}
.yde{bottom:764.666667pt;}
.ya2{bottom:773.706667pt;}
.y65{bottom:777.706667pt;}
.ydd{bottom:783.706667pt;}
.ya1{bottom:788.706667pt;}
.y64{bottom:793.706667pt;}
.ydc{bottom:799.706667pt;}
.ya0{bottom:803.706667pt;}
.y63{bottom:808.706667pt;}
.ydb{bottom:811.733333pt;}
.y9f{bottom:819.733333pt;}
.y62{bottom:823.733333pt;}
.yda{bottom:827.733333pt;}
.y9e{bottom:834.733333pt;}
.y61{bottom:839.733333pt;}
.yd8{bottom:843.733333pt;}
.y9d{bottom:849.773333pt;}
.y60{bottom:854.773333pt;}
.yd7{bottom:859.773333pt;}
.y9c{bottom:865.773333pt;}
.y5f{bottom:869.773333pt;}
.yd5{bottom:875.760000pt;}
.y9b{bottom:880.773333pt;}
.y5e{bottom:885.800000pt;}
.yd4{bottom:891.800000pt;}
.y9a{bottom:895.800000pt;}
.y5d{bottom:900.800000pt;}
.y99{bottom:911.800000pt;}
.y5c{bottom:915.800000pt;}
.yd{bottom:924.840000pt;}
.yd3{bottom:926.840000pt;}
.y98{bottom:927.840000pt;}
.y5b{bottom:931.840000pt;}
.yd2{bottom:939.840000pt;}
.y6{bottom:942.840000pt;}
.y97{bottom:943.840000pt;}
.y5a{bottom:946.840000pt;}
.yd0{bottom:955.840000pt;}
.y96{bottom:958.866667pt;}
.y59{bottom:961.866667pt;}
.ycf{bottom:971.866667pt;}
.y95{bottom:975.866667pt;}
.y58{bottom:977.866667pt;}
.yce{bottom:987.866667pt;}
.y94{bottom:990.866667pt;}
.y57{bottom:992.866667pt;}
.ycd{bottom:1003.893333pt;}
.y93{bottom:1006.893333pt;}
.y56{bottom:1007.893333pt;}
.ycc{bottom:1019.893333pt;}
.y92{bottom:1022.893333pt;}
.y55{bottom:1023.893333pt;}
.y54{bottom:1038.933333pt;}
.h26{height:15.000000pt;}
.h25{height:15.033333pt;}
.h27{height:15.986667pt;}
.h22{height:16.000000pt;}
.h21{height:16.033333pt;}
.hc{height:18.000000pt;}
.h24{height:21.000000pt;}
.h23{height:21.033333pt;}
.h18{height:26.033333pt;}
.h14{height:26.518333pt;}
.h17{height:26.625000pt;}
.h2{height:29.033333pt;}
.h13{height:31.828125pt;}
.h8{height:33.000000pt;}
.h1f{height:33.033333pt;}
.h1d{height:35.406250pt;}
.h20{height:36.689453pt;}
.h1c{height:36.791016pt;}
.hf{height:38.289062pt;}
.h16{height:38.625000pt;}
.ha{height:39.000000pt;}
.h1b{height:41.843750pt;}
.h1a{height:43.763672pt;}
.hd{height:45.000000pt;}
.h1e{height:46.617188pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h11{height:51.720703pt;}
.h12{height:53.244141pt;}
.h15{height:55.833407pt;}
.h10{height:57.100000pt;}
.h6{height:59.677734pt;}
.h5{height:61.435547pt;}
.hb{height:63.656250pt;}
.h7{height:108.100000pt;}
.he{height:170.160000pt;}
.h19{height:521.466667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:65.100000pt;}
.w18{width:124.166667pt;}
.w13{width:131.166667pt;}
.w17{width:134.160000pt;}
.w4{width:135.160000pt;}
.w11{width:157.200000pt;}
.w1b{width:159.200000pt;}
.w14{width:164.200000pt;}
.w15{width:167.240000pt;}
.w1a{width:174.240000pt;}
.wb{width:182.240000pt;}
.w12{width:185.240000pt;}
.we{width:190.266667pt;}
.w7{width:192.240000pt;}
.w10{width:193.266667pt;}
.wa{width:199.266667pt;}
.wd{width:207.240000pt;}
.wc{width:252.306667pt;}
.w9{width:265.333333pt;}
.wf{width:297.360000pt;}
.w19{width:314.400000pt;}
.w16{width:389.506667pt;}
.w8{width:458.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x15{left:11.026667pt;}
.x43{left:18.000000pt;}
.x12{left:20.033333pt;}
.xf{left:26.033333pt;}
.x37{left:32.026667pt;}
.x30{left:35.040000pt;}
.x49{left:36.026667pt;}
.x10{left:38.033333pt;}
.x39{left:39.026667pt;}
.x2e{left:41.066667pt;}
.x11{left:42.033333pt;}
.xb{left:46.066667pt;}
.x1e{left:48.080000pt;}
.x1c{left:51.066667pt;}
.x35{left:52.066667pt;}
.x45{left:53.066667pt;}
.x25{left:55.066667pt;}
.x3b{left:58.066667pt;}
.x3e{left:62.066667pt;}
.x33{left:63.066667pt;}
.x4b{left:64.066667pt;}
.x31{left:67.066667pt;}
.x3d{left:71.106667pt;}
.x1{left:72.100000pt;}
.x19{left:73.100000pt;}
.x3c{left:75.093333pt;}
.x20{left:76.106667pt;}
.x3f{left:78.093333pt;}
.x1f{left:79.106667pt;}
.x4a{left:80.093333pt;}
.x28{left:83.133333pt;}
.x2a{left:86.133333pt;}
.x5{left:87.100000pt;}
.x32{left:89.133333pt;}
.xc{left:92.100000pt;}
.x1a{left:93.100000pt;}
.x16{left:96.133322pt;}
.x27{left:97.093333pt;}
.x29{left:100.093333pt;}
.x23{left:101.140000pt;}
.x47{left:103.140000pt;}
.x2c{left:118.140000pt;}
.x17{left:120.166655pt;}
.x41{left:156.206667pt;}
.xe{left:157.206667pt;}
.x13{left:190.233333pt;}
.x6{left:207.266667pt;}
.x40{left:237.293322pt;}
.x9{left:243.293333pt;}
.x34{left:253.333322pt;}
.x36{left:258.333333pt;}
.x14{left:264.333333pt;}
.x18{left:265.333322pt;}
.x46{left:279.359988pt;}
.x22{left:289.373322pt;}
.x7{left:292.373333pt;}
.x2b{left:296.359988pt;}
.x8{left:309.400000pt;}
.xd{left:324.406667pt;}
.x24{left:326.440000pt;}
.x4d{left:332.439988pt;}
.x1b{left:339.440000pt;}
.x2d{left:370.466667pt;}
.xa{left:388.493333pt;}
.x38{left:389.506667pt;}
.x21{left:397.506655pt;}
.x42{left:463.600000pt;}
.x4c{left:528.666655pt;}
.x26{left:534.666667pt;}
.x1d{left:539.693333pt;}
.x3a{left:554.693333pt;}
.x48{left:562.733333pt;}
.x2f{left:564.733333pt;}
.x44{left:597.773333pt;}
.x3{left:657.840000pt;}
}




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