
    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_82c73fc8fee1cd6251e35a86.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_6131296599d4d7744d5c7279.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_076e9137c0f6a03d27465341.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a222387248ec1740b3888e72.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_5f47deb207993537f9262cb6.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_9130dd4c0f048841d0aa644b.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_b4d2a02b1c5293932b241a25.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_beb34f947294ef2aac9c2f5f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ec766e0cd39277fdd42348f1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_205c0993fdda0f3efe0a156a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_bf4d6297eb0882127081d5b5.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0e64b426c563217e7342009a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.929688;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_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b5edbf67e3cb8e0e3eca0a05.woff')format("woff");}.ff10{font-family:ff10;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsd{letter-spacing:-2.724000px;}
.ls1d{letter-spacing:-1.128000px;}
.lse{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.378000px;}
.lsa{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.180000px;}
.ls0{letter-spacing:1.476000px;}
.ls16{letter-spacing:1.740000px;}
.ls1b{letter-spacing:1.842000px;}
.ls4{letter-spacing:1.906500px;}
.ls1{letter-spacing:1.966500px;}
.ls3{letter-spacing:2.026500px;}
.ls2{letter-spacing:2.146500px;}
.ls12{letter-spacing:2.164500px;}
.ls1a{letter-spacing:2.190000px;}
.ls5{letter-spacing:2.250000px;}
.ls11{letter-spacing:2.310000px;}
.ls17{letter-spacing:2.370000px;}
.lsf{letter-spacing:2.382000px;}
.ls15{letter-spacing:2.400000px;}
.ls6{letter-spacing:2.430000px;}
.ls19{letter-spacing:4.440000px;}
.ls7{letter-spacing:4.470000px;}
.ls10{letter-spacing:4.500000px;}
.ls1c{letter-spacing:4.560000px;}
.ls9{letter-spacing:4.620000px;}
.ls13{letter-spacing:4.650000px;}
.ls8{letter-spacing:4.680000px;}
.ls1e{letter-spacing:15.387000px;}
.ls14{letter-spacing:46.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;}
}
.ws7{word-spacing:-16.875000px;}
.wsa{word-spacing:-16.789500px;}
.wsb{word-spacing:-16.365000px;}
.ws4{word-spacing:-16.146000px;}
.ws3{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws8{word-spacing:-13.221000px;}
.ws2{word-spacing:-12.531000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-11.826000px;}
.ws5{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:200.661000px;}
._1b{margin-left:-11.541000px;}
._1c{margin-left:-10.447500px;}
._15{margin-left:-7.555500px;}
._9{margin-left:-6.132000px;}
._18{margin-left:-5.101500px;}
._a{margin-left:-4.099500px;}
._2{margin-left:-2.970000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._6{width:2.988000px;}
._5{width:4.074000px;}
._4{width:5.724000px;}
._3{width:6.930000px;}
._12{width:7.936500px;}
._8{width:8.946000px;}
._7{width:9.966000px;}
._c{width:12.060000px;}
._d{width:13.077000px;}
._11{width:15.903000px;}
._b{width:17.278500px;}
._16{width:18.307500px;}
._13{width:20.991000px;}
._14{width:22.177500px;}
._f{width:25.503000px;}
._10{width:26.694000px;}
._19{width:29.547000px;}
._e{width:30.598500px;}
._17{width:32.316000px;}
._1a{width:35.208000px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.fs8{font-size:108.150000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y1d{bottom:3.390000px;}
.yc2{bottom:4.500000px;}
.ye{bottom:11.250000px;}
.y102{bottom:11.820000px;}
.y1f{bottom:12.390000px;}
.yc{bottom:13.545000px;}
.y45{bottom:14.625000px;}
.y4{bottom:16.875000px;}
.y44{bottom:18.000000px;}
.y2{bottom:19.125000px;}
.yd2{bottom:20.250000px;}
.yc7{bottom:20.295000px;}
.y42{bottom:21.375000px;}
.yc1{bottom:21.420000px;}
.y1c{bottom:23.670000px;}
.yb{bottom:30.420000px;}
.yfa{bottom:31.320000px;}
.yd1{bottom:38.280000px;}
.y41{bottom:38.295000px;}
.y1b{bottom:40.545000px;}
.yba{bottom:41.655000px;}
.yb8{bottom:41.662500px;}
.yb4{bottom:41.670000px;}
.ya{bottom:46.200000px;}
.yd0{bottom:55.155000px;}
.y40{bottom:55.170000px;}
.yc6{bottom:55.200000px;}
.y1a{bottom:56.325000px;}
.y5{bottom:57.412500px;}
.yfb{bottom:68.445000px;}
.ycf{bottom:72.060000px;}
.yc5{bottom:72.075000px;}
.ye6{bottom:72.090000px;}
.y3f{bottom:73.170000px;}
.y9{bottom:73.200000px;}
.ybc{bottom:79.950000px;}
.yb7{bottom:79.957500px;}
.y1{bottom:81.075000px;}
.y19{bottom:86.700000px;}
.yce{bottom:90.060000px;}
.y3e{bottom:90.090000px;}
.y8{bottom:93.480000px;}
.yfc{bottom:105.570000px;}
.y18{bottom:105.870000px;}
.ycd{bottom:106.935000px;}
.y3d{bottom:106.965000px;}
.ydb{bottom:109.845000px;}
.y7{bottom:110.355000px;}
.y17{bottom:119.370000px;}
.y3c{bottom:124.995000px;}
.yd7{bottom:133.987500px;}
.y84{bottom:135.112500px;}
.yf8{bottom:136.237500px;}
.yda{bottom:136.980000px;}
.y16{bottom:138.540000px;}
.yb6{bottom:140.737500px;}
.y4c{bottom:141.862500px;}
.y3b{bottom:141.870000px;}
.yfd{bottom:142.695000px;}
.y103{bottom:150.795000px;}
.yd6{bottom:150.870000px;}
.y15{bottom:152.040000px;}
.y83{bottom:153.105000px;}
.yf7{bottom:155.370000px;}
.y3a{bottom:158.775000px;}
.y4b{bottom:161.025000px;}
.yd5{bottom:167.775000px;}
.y14{bottom:168.915000px;}
.y82{bottom:170.025000px;}
.yf6{bottom:173.400000px;}
.y39{bottom:176.790000px;}
.yfe{bottom:179.820000px;}
.y4a{bottom:180.150000px;}
.yd4{bottom:185.775000px;}
.y81{bottom:186.900000px;}
.y13{bottom:186.945000px;}
.yf5{bottom:191.400000px;}
.y38{bottom:193.665000px;}
.y49{bottom:197.025000px;}
.yd3{bottom:202.695000px;}
.y2b{bottom:204.945000px;}
.y12{bottom:206.070000px;}
.yf4{bottom:209.445000px;}
.y37{bottom:210.570000px;}
.y48{bottom:213.945000px;}
.yff{bottom:216.945000px;}
.ycc{bottom:217.320000px;}
.y12d{bottom:219.570000px;}
.y2a{bottom:221.820000px;}
.yf3{bottom:226.320000px;}
.y36{bottom:228.570000px;}
.y47{bottom:231.945000px;}
.y11{bottom:231.990000px;}
.yb5{bottom:235.320000px;}
.y12c{bottom:237.570000px;}
.y80{bottom:238.695000px;}
.y29{bottom:239.820000px;}
.yf2{bottom:244.350000px;}
.y35{bottom:245.475000px;}
.y46{bottom:248.850000px;}
.yb3{bottom:253.350000px;}
.y100{bottom:254.070000px;}
.y12b{bottom:254.475000px;}
.y7f{bottom:256.725000px;}
.y10{bottom:256.740000px;}
.y34{bottom:262.350000px;}
.y43{bottom:263.475000px;}
.yd9{bottom:266.880000px;}
.y12a{bottom:271.350000px;}
.y7e{bottom:273.600000px;}
.y28{bottom:274.740000px;}
.y33{bottom:280.365000px;}
.yf1{bottom:281.475000px;}
.y129{bottom:289.380000px;}
.y7d{bottom:290.505000px;}
.y101{bottom:291.195000px;}
.y27{bottom:291.645000px;}
.y20{bottom:292.755000px;}
.y32{bottom:297.270000px;}
.yf0{bottom:299.505000px;}
.y128{bottom:306.255000px;}
.y26{bottom:307.395000px;}
.y7c{bottom:308.520000px;}
.yb2{bottom:313.005000px;}
.y31{bottom:314.145000px;}
.yef{bottom:316.380000px;}
.y127{bottom:323.130000px;}
.y25{bottom:324.270000px;}
.y7b{bottom:325.395000px;}
.yb1{bottom:329.925000px;}
.y30{bottom:332.190000px;}
.yee{bottom:334.425000px;}
.ycb{bottom:338.925000px;}
.y126{bottom:341.175000px;}
.y24{bottom:341.190000px;}
.y7a{bottom:342.300000px;}
.yb0{bottom:347.925000px;}
.y2f{bottom:349.065000px;}
.yed{bottom:351.300000px;}
.y125{bottom:358.050000px;}
.y23{bottom:358.065000px;}
.y79{bottom:360.300000px;}
.yaf{bottom:364.800000px;}
.y2e{bottom:365.940000px;}
.yec{bottom:369.345000px;}
.y124{bottom:374.955000px;}
.y78{bottom:377.205000px;}
.yae{bottom:381.705000px;}
.y2d{bottom:383.970000px;}
.y22{bottom:385.095000px;}
.yeb{bottom:389.595000px;}
.y123{bottom:391.830000px;}
.y77{bottom:394.080000px;}
.yca{bottom:395.205000px;}
.yad{bottom:399.720000px;}
.y2c{bottom:400.845000px;}
.y21{bottom:403.095000px;}
.yea{bottom:407.580000px;}
.yc9{bottom:408.705000px;}
.y122{bottom:409.875000px;}
.y76{bottom:412.125000px;}
.yd8{bottom:412.875000px;}
.yac{bottom:416.625000px;}
.ye9{bottom:424.500000px;}
.y121{bottom:426.750000px;}
.y75{bottom:429.000000px;}
.yab{bottom:433.500000px;}
.ye8{bottom:442.500000px;}
.y120{bottom:443.625000px;}
.y74{bottom:445.875000px;}
.yaa{bottom:451.530000px;}
.ye7{bottom:459.420000px;}
.y11f{bottom:462.795000px;}
.y73{bottom:463.920000px;}
.ya9{bottom:468.405000px;}
.ye5{bottom:474.030000px;}
.y72{bottom:480.795000px;}
.ya8{bottom:485.280000px;}
.y71{bottom:497.700000px;}
.ya7{bottom:503.325000px;}
.y70{bottom:515.700000px;}
.ya6{bottom:520.200000px;}
.y6f{bottom:532.575000px;}
.y11e{bottom:533.700000px;}
.ya5{bottom:537.120000px;}
.y6e{bottom:549.495000px;}
.y11d{bottom:551.730000px;}
.ya4{bottom:555.105000px;}
.y6d{bottom:567.495000px;}
.y11c{bottom:570.870000px;}
.ya3{bottom:571.980000px;}
.ye4{bottom:577.650000px;}
.y6c{bottom:585.525000px;}
.ya2{bottom:588.900000px;}
.ye3{bottom:600.150000px;}
.y6b{bottom:603.525000px;}
.ya1{bottom:606.900000px;}
.ye2{bottom:617.025000px;}
.y6a{bottom:621.570000px;}
.ya0{bottom:623.820000px;}
.y11b{bottom:626.070000px;}
.ye1{bottom:633.945000px;}
.y69{bottom:638.445000px;}
.y9f{bottom:640.695000px;}
.y11a{bottom:642.945000px;}
.ye0{bottom:651.945000px;}
.y68{bottom:655.320000px;}
.y9e{bottom:658.695000px;}
.y119{bottom:659.820000px;}
.ydf{bottom:668.850000px;}
.y67{bottom:674.475000px;}
.y9d{bottom:675.600000px;}
.y118{bottom:677.850000px;}
.yde{bottom:682.350000px;}
.yf9{bottom:685.125000px;}
.y66{bottom:692.475000px;}
.y117{bottom:695.850000px;}
.y1e{bottom:707.130000px;}
.y65{bottom:710.505000px;}
.y116{bottom:713.880000px;}
.yc8{bottom:720.630000px;}
.y9c{bottom:727.380000px;}
.y64{bottom:729.645000px;}
.y115{bottom:731.880000px;}
.yc4{bottom:735.255000px;}
.yf{bottom:736.380000px;}
.y9b{bottom:744.300000px;}
.y63{bottom:747.675000px;}
.y114{bottom:748.800000px;}
.y9a{bottom:762.300000px;}
.y62{bottom:765.675000px;}
.y99{bottom:779.175000px;}
.y61{bottom:783.675000px;}
.y98{bottom:796.080000px;}
.y113{bottom:800.580000px;}
.y60{bottom:801.705000px;}
.y97{bottom:814.080000px;}
.y112{bottom:817.455000px;}
.y5f{bottom:820.830000px;}
.yc3{bottom:821.955000px;}
.y96{bottom:831.000000px;}
.y111{bottom:835.500000px;}
.y5e{bottom:840.000000px;}
.y95{bottom:847.875000px;}
.y110{bottom:853.500000px;}
.yc0{bottom:856.875000px;}
.y5d{bottom:858.000000px;}
.y94{bottom:865.875000px;}
.y10f{bottom:871.545000px;}
.y5c{bottom:876.045000px;}
.y93{bottom:882.795000px;}
.y10e{bottom:889.545000px;}
.y5b{bottom:892.920000px;}
.ybf{bottom:896.295000px;}
.y92{bottom:899.670000px;}
.y10d{bottom:906.420000px;}
.y5a{bottom:912.075000px;}
.ybe{bottom:913.200000px;}
.y91{bottom:917.700000px;}
.y10c{bottom:923.325000px;}
.y59{bottom:930.075000px;}
.ybd{bottom:931.200000px;}
.y90{bottom:934.575000px;}
.y10b{bottom:942.450000px;}
.ybb{bottom:944.700000px;}
.y58{bottom:948.075000px;}
.y8f{bottom:951.450000px;}
.y10a{bottom:961.620000px;}
.y57{bottom:967.245000px;}
.y8e{bottom:969.495000px;}
.y109{bottom:980.745000px;}
.y56{bottom:984.120000px;}
.y8d{bottom:986.370000px;}
.y108{bottom:998.775000px;}
.y55{bottom:1001.025000px;}
.y8c{bottom:1003.275000px;}
.yd{bottom:1007.775000px;}
.ydd{bottom:1015.650000px;}
.y107{bottom:1016.775000px;}
.y54{bottom:1019.025000px;}
.y8b{bottom:1021.275000px;}
.y6{bottom:1033.650000px;}
.y53{bottom:1035.945000px;}
.y8a{bottom:1038.195000px;}
.y106{bottom:1050.570000px;}
.y52{bottom:1052.820000px;}
.y89{bottom:1055.070000px;}
.y105{bottom:1069.695000px;}
.y51{bottom:1070.820000px;}
.y88{bottom:1073.070000px;}
.yb9{bottom:1077.600000px;}
.y50{bottom:1087.725000px;}
.y104{bottom:1088.850000px;}
.y87{bottom:1089.975000px;}
.ydc{bottom:1102.350000px;}
.y4f{bottom:1104.600000px;}
.y86{bottom:1106.850000px;}
.y4e{bottom:1123.755000px;}
.y85{bottom:1124.880000px;}
.y4d{bottom:1141.755000px;}
.h26{height:16.875000px;}
.h20{height:16.912500px;}
.h2c{height:18.000000px;}
.h2a{height:18.037500px;}
.hb{height:25.875000px;}
.h13{height:29.250000px;}
.h1b{height:29.287500px;}
.h12{height:29.953125px;}
.h2{height:32.625000px;}
.h24{height:34.912500px;}
.h8{height:37.125000px;}
.h1c{height:39.832031px;}
.h1a{height:40.847168px;}
.h19{height:41.275635px;}
.h1d{height:42.589600px;}
.hd{height:43.075195px;}
.h11{height:43.453125px;}
.ha{height:43.875000px;}
.h17{height:47.074219px;}
.h1e{height:47.474121px;}
.h18{height:48.216797px;}
.h16{height:49.234131px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h1f{height:55.162500px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h22{height:76.537500px;}
.h25{height:85.575000px;}
.h2b{height:86.700000px;}
.h21{height:93.450000px;}
.h2d{height:103.612500px;}
.h29{height:110.737573px;}
.h27{height:120.487500px;}
.h7{height:121.612500px;}
.h23{height:132.900000px;}
.hc{height:271.380000px;}
.h28{height:304.875000px;}
.h2e{height:312.750000px;}
.h15{height:414.375000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.wc{width:109.237500px;}
.w13{width:112.612500px;}
.w17{width:140.812500px;}
.w4{width:145.275000px;}
.wd{width:156.600000px;}
.wa{width:180.225000px;}
.w10{width:181.395000px;}
.w14{width:188.130000px;}
.w9{width:208.395000px;}
.w7{width:214.020000px;}
.wf{width:229.770000px;}
.w16{width:239.925000px;}
.w11{width:335.655000px;}
.wb{width:358.200000px;}
.w18{width:364.950000px;}
.w15{width:444.945000px;}
.we{width:480.975000px;}
.w12{width:517.500000px;}
.w8{width:533.925000px;}
.w19{width:550.125000px;}
.w5{width:602.670000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.750000px;}
.x8{left:7.905000px;}
.x2{left:9.037500px;}
.x11{left:10.125000px;}
.xf{left:12.375000px;}
.x37{left:14.625000px;}
.x14{left:15.750000px;}
.x3c{left:18.555000px;}
.x1b{left:20.250000px;}
.x12{left:21.375000px;}
.x16{left:31.537500px;}
.x3a{left:33.780000px;}
.x10{left:36.037500px;}
.x38{left:37.155000px;}
.x22{left:40.537500px;}
.x34{left:41.662500px;}
.x39{left:45.030000px;}
.x18{left:49.537500px;}
.x28{left:50.662500px;}
.x15{left:59.700000px;}
.x17{left:61.950000px;}
.x3d{left:63.255000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x21{left:78.817500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x1c{left:108.149987px;}
.x1d{left:135.187487px;}
.x3b{left:169.875000px;}
.x23{left:183.600000px;}
.x2b{left:185.625000px;}
.x2e{left:186.975000px;}
.x2c{left:192.705000px;}
.x26{left:193.769987px;}
.x19{left:214.012500px;}
.x7{left:218.520000px;}
.x33{left:232.049987px;}
.x2d{left:248.924987px;}
.x27{left:253.454987px;}
.x1e{left:282.750000px;}
.x1a{left:287.250000px;}
.x32{left:292.874987px;}
.xb{left:296.280000px;}
.x29{left:303.000000px;}
.x35{left:314.295000px;}
.x24{left:340.200000px;}
.x9{left:351.450000px;}
.x13{left:358.207500px;}
.xa{left:370.605000px;}
.xe{left:373.957500px;}
.x2f{left:376.245000px;}
.xd{left:437.055000px;}
.x30{left:447.194987px;}
.x36{left:456.225000px;}
.xc{left:459.600000px;}
.x3e{left:461.700000px;}
.x20{left:462.975000px;}
.x2a{left:485.520000px;}
.x25{left:707.399987px;}
.x31{left:723.194987px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsd{letter-spacing:-2.421333pt;}
.ls1d{letter-spacing:-1.002667pt;}
.lse{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls0{letter-spacing:1.312000pt;}
.ls16{letter-spacing:1.546667pt;}
.ls1b{letter-spacing:1.637333pt;}
.ls4{letter-spacing:1.694667pt;}
.ls1{letter-spacing:1.748000pt;}
.ls3{letter-spacing:1.801333pt;}
.ls2{letter-spacing:1.908000pt;}
.ls12{letter-spacing:1.924000pt;}
.ls1a{letter-spacing:1.946667pt;}
.ls5{letter-spacing:2.000000pt;}
.ls11{letter-spacing:2.053333pt;}
.ls17{letter-spacing:2.106667pt;}
.lsf{letter-spacing:2.117333pt;}
.ls15{letter-spacing:2.133333pt;}
.ls6{letter-spacing:2.160000pt;}
.ls19{letter-spacing:3.946667pt;}
.ls7{letter-spacing:3.973333pt;}
.ls10{letter-spacing:4.000000pt;}
.ls1c{letter-spacing:4.053333pt;}
.ls9{letter-spacing:4.106667pt;}
.ls13{letter-spacing:4.133333pt;}
.ls8{letter-spacing:4.160000pt;}
.ls1e{letter-spacing:13.677333pt;}
.ls14{letter-spacing:41.677333pt;}
.ws7{word-spacing:-15.000000pt;}
.wsa{word-spacing:-14.924000pt;}
.wsb{word-spacing:-14.546667pt;}
.ws4{word-spacing:-14.352000pt;}
.ws3{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws8{word-spacing:-11.752000pt;}
.ws2{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.512000pt;}
.ws5{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:178.365333pt;}
._1b{margin-left:-10.258667pt;}
._1c{margin-left:-9.286667pt;}
._15{margin-left:-6.716000pt;}
._9{margin-left:-5.450667pt;}
._18{margin-left:-4.534667pt;}
._a{margin-left:-3.644000pt;}
._2{margin-left:-2.640000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._6{width:2.656000pt;}
._5{width:3.621333pt;}
._4{width:5.088000pt;}
._3{width:6.160000pt;}
._12{width:7.054667pt;}
._8{width:7.952000pt;}
._7{width:8.858667pt;}
._c{width:10.720000pt;}
._d{width:11.624000pt;}
._11{width:14.136000pt;}
._b{width:15.358667pt;}
._16{width:16.273333pt;}
._13{width:18.658667pt;}
._14{width:19.713333pt;}
._f{width:22.669333pt;}
._10{width:23.728000pt;}
._19{width:26.264000pt;}
._e{width:27.198667pt;}
._17{width:28.725333pt;}
._1a{width:31.296000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.fs8{font-size:96.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y1d{bottom:3.013333pt;}
.yc2{bottom:4.000000pt;}
.ye{bottom:10.000000pt;}
.y102{bottom:10.506667pt;}
.y1f{bottom:11.013333pt;}
.yc{bottom:12.040000pt;}
.y45{bottom:13.000000pt;}
.y4{bottom:15.000000pt;}
.y44{bottom:16.000000pt;}
.y2{bottom:17.000000pt;}
.yd2{bottom:18.000000pt;}
.yc7{bottom:18.040000pt;}
.y42{bottom:19.000000pt;}
.yc1{bottom:19.040000pt;}
.y1c{bottom:21.040000pt;}
.yb{bottom:27.040000pt;}
.yfa{bottom:27.840000pt;}
.yd1{bottom:34.026667pt;}
.y41{bottom:34.040000pt;}
.y1b{bottom:36.040000pt;}
.yba{bottom:37.026667pt;}
.yb8{bottom:37.033333pt;}
.yb4{bottom:37.040000pt;}
.ya{bottom:41.066667pt;}
.yd0{bottom:49.026667pt;}
.y40{bottom:49.040000pt;}
.yc6{bottom:49.066667pt;}
.y1a{bottom:50.066667pt;}
.y5{bottom:51.033333pt;}
.yfb{bottom:60.840000pt;}
.ycf{bottom:64.053333pt;}
.yc5{bottom:64.066667pt;}
.ye6{bottom:64.080000pt;}
.y3f{bottom:65.040000pt;}
.y9{bottom:65.066667pt;}
.ybc{bottom:71.066667pt;}
.yb7{bottom:71.073333pt;}
.y1{bottom:72.066667pt;}
.y19{bottom:77.066667pt;}
.yce{bottom:80.053333pt;}
.y3e{bottom:80.080000pt;}
.y8{bottom:83.093333pt;}
.yfc{bottom:93.840000pt;}
.y18{bottom:94.106667pt;}
.ycd{bottom:95.053333pt;}
.y3d{bottom:95.080000pt;}
.ydb{bottom:97.640000pt;}
.y7{bottom:98.093333pt;}
.y17{bottom:106.106667pt;}
.y3c{bottom:111.106667pt;}
.yd7{bottom:119.100000pt;}
.y84{bottom:120.100000pt;}
.yf8{bottom:121.100000pt;}
.yda{bottom:121.760000pt;}
.y16{bottom:123.146667pt;}
.yb6{bottom:125.100000pt;}
.y4c{bottom:126.100000pt;}
.y3b{bottom:126.106667pt;}
.yfd{bottom:126.840000pt;}
.y103{bottom:134.040000pt;}
.yd6{bottom:134.106667pt;}
.y15{bottom:135.146667pt;}
.y83{bottom:136.093333pt;}
.yf7{bottom:138.106667pt;}
.y3a{bottom:141.133333pt;}
.y4b{bottom:143.133333pt;}
.yd5{bottom:149.133333pt;}
.y14{bottom:150.146667pt;}
.y82{bottom:151.133333pt;}
.yf6{bottom:154.133333pt;}
.y39{bottom:157.146667pt;}
.yfe{bottom:159.840000pt;}
.y4a{bottom:160.133333pt;}
.yd4{bottom:165.133333pt;}
.y81{bottom:166.133333pt;}
.y13{bottom:166.173333pt;}
.yf5{bottom:170.133333pt;}
.y38{bottom:172.146667pt;}
.y49{bottom:175.133333pt;}
.yd3{bottom:180.173333pt;}
.y2b{bottom:182.173333pt;}
.y12{bottom:183.173333pt;}
.yf4{bottom:186.173333pt;}
.y37{bottom:187.173333pt;}
.y48{bottom:190.173333pt;}
.yff{bottom:192.840000pt;}
.ycc{bottom:193.173333pt;}
.y12d{bottom:195.173333pt;}
.y2a{bottom:197.173333pt;}
.yf3{bottom:201.173333pt;}
.y36{bottom:203.173333pt;}
.y47{bottom:206.173333pt;}
.y11{bottom:206.213333pt;}
.yb5{bottom:209.173333pt;}
.y12c{bottom:211.173333pt;}
.y80{bottom:212.173333pt;}
.y29{bottom:213.173333pt;}
.yf2{bottom:217.200000pt;}
.y35{bottom:218.200000pt;}
.y46{bottom:221.200000pt;}
.yb3{bottom:225.200000pt;}
.y100{bottom:225.840000pt;}
.y12b{bottom:226.200000pt;}
.y7f{bottom:228.200000pt;}
.y10{bottom:228.213333pt;}
.y34{bottom:233.200000pt;}
.y43{bottom:234.200000pt;}
.yd9{bottom:237.226667pt;}
.y12a{bottom:241.200000pt;}
.y7e{bottom:243.200000pt;}
.y28{bottom:244.213333pt;}
.y33{bottom:249.213333pt;}
.yf1{bottom:250.200000pt;}
.y129{bottom:257.226667pt;}
.y7d{bottom:258.226667pt;}
.y101{bottom:258.840000pt;}
.y27{bottom:259.240000pt;}
.y20{bottom:260.226667pt;}
.y32{bottom:264.240000pt;}
.yf0{bottom:266.226667pt;}
.y128{bottom:272.226667pt;}
.y26{bottom:273.240000pt;}
.y7c{bottom:274.240000pt;}
.yb2{bottom:278.226667pt;}
.y31{bottom:279.240000pt;}
.yef{bottom:281.226667pt;}
.y127{bottom:287.226667pt;}
.y25{bottom:288.240000pt;}
.y7b{bottom:289.240000pt;}
.yb1{bottom:293.266667pt;}
.y30{bottom:295.280000pt;}
.yee{bottom:297.266667pt;}
.ycb{bottom:301.266667pt;}
.y126{bottom:303.266667pt;}
.y24{bottom:303.280000pt;}
.y7a{bottom:304.266667pt;}
.yb0{bottom:309.266667pt;}
.y2f{bottom:310.280000pt;}
.yed{bottom:312.266667pt;}
.y125{bottom:318.266667pt;}
.y23{bottom:318.280000pt;}
.y79{bottom:320.266667pt;}
.yaf{bottom:324.266667pt;}
.y2e{bottom:325.280000pt;}
.yec{bottom:328.306667pt;}
.y124{bottom:333.293333pt;}
.y78{bottom:335.293333pt;}
.yae{bottom:339.293333pt;}
.y2d{bottom:341.306667pt;}
.y22{bottom:342.306667pt;}
.yeb{bottom:346.306667pt;}
.y123{bottom:348.293333pt;}
.y77{bottom:350.293333pt;}
.yca{bottom:351.293333pt;}
.yad{bottom:355.306667pt;}
.y2c{bottom:356.306667pt;}
.y21{bottom:358.306667pt;}
.yea{bottom:362.293333pt;}
.yc9{bottom:363.293333pt;}
.y122{bottom:364.333333pt;}
.y76{bottom:366.333333pt;}
.yd8{bottom:367.000000pt;}
.yac{bottom:370.333333pt;}
.ye9{bottom:377.333333pt;}
.y121{bottom:379.333333pt;}
.y75{bottom:381.333333pt;}
.yab{bottom:385.333333pt;}
.ye8{bottom:393.333333pt;}
.y120{bottom:394.333333pt;}
.y74{bottom:396.333333pt;}
.yaa{bottom:401.360000pt;}
.ye7{bottom:408.373333pt;}
.y11f{bottom:411.373333pt;}
.y73{bottom:412.373333pt;}
.ya9{bottom:416.360000pt;}
.ye5{bottom:421.360000pt;}
.y72{bottom:427.373333pt;}
.ya8{bottom:431.360000pt;}
.y71{bottom:442.400000pt;}
.ya7{bottom:447.400000pt;}
.y70{bottom:458.400000pt;}
.ya6{bottom:462.400000pt;}
.y6f{bottom:473.400000pt;}
.y11e{bottom:474.400000pt;}
.ya5{bottom:477.440000pt;}
.y6e{bottom:488.440000pt;}
.y11d{bottom:490.426667pt;}
.ya4{bottom:493.426667pt;}
.y6d{bottom:504.440000pt;}
.y11c{bottom:507.440000pt;}
.ya3{bottom:508.426667pt;}
.ye4{bottom:513.466667pt;}
.y6c{bottom:520.466667pt;}
.ya2{bottom:523.466667pt;}
.ye3{bottom:533.466667pt;}
.y6b{bottom:536.466667pt;}
.ya1{bottom:539.466667pt;}
.ye2{bottom:548.466667pt;}
.y6a{bottom:552.506667pt;}
.ya0{bottom:554.506667pt;}
.y11b{bottom:556.506667pt;}
.ye1{bottom:563.506667pt;}
.y69{bottom:567.506667pt;}
.y9f{bottom:569.506667pt;}
.y11a{bottom:571.506667pt;}
.ye0{bottom:579.506667pt;}
.y68{bottom:582.506667pt;}
.y9e{bottom:585.506667pt;}
.y119{bottom:586.506667pt;}
.ydf{bottom:594.533333pt;}
.y67{bottom:599.533333pt;}
.y9d{bottom:600.533333pt;}
.y118{bottom:602.533333pt;}
.yde{bottom:606.533333pt;}
.yf9{bottom:609.000000pt;}
.y66{bottom:615.533333pt;}
.y117{bottom:618.533333pt;}
.y1e{bottom:628.560000pt;}
.y65{bottom:631.560000pt;}
.y116{bottom:634.560000pt;}
.yc8{bottom:640.560000pt;}
.y9c{bottom:646.560000pt;}
.y64{bottom:648.573333pt;}
.y115{bottom:650.560000pt;}
.yc4{bottom:653.560000pt;}
.yf{bottom:654.560000pt;}
.y9b{bottom:661.600000pt;}
.y63{bottom:664.600000pt;}
.y114{bottom:665.600000pt;}
.y9a{bottom:677.600000pt;}
.y62{bottom:680.600000pt;}
.y99{bottom:692.600000pt;}
.y61{bottom:696.600000pt;}
.y98{bottom:707.626667pt;}
.y113{bottom:711.626667pt;}
.y60{bottom:712.626667pt;}
.y97{bottom:723.626667pt;}
.y112{bottom:726.626667pt;}
.y5f{bottom:729.626667pt;}
.yc3{bottom:730.626667pt;}
.y96{bottom:738.666667pt;}
.y111{bottom:742.666667pt;}
.y5e{bottom:746.666667pt;}
.y95{bottom:753.666667pt;}
.y110{bottom:758.666667pt;}
.yc0{bottom:761.666667pt;}
.y5d{bottom:762.666667pt;}
.y94{bottom:769.666667pt;}
.y10f{bottom:774.706667pt;}
.y5c{bottom:778.706667pt;}
.y93{bottom:784.706667pt;}
.y10e{bottom:790.706667pt;}
.y5b{bottom:793.706667pt;}
.ybf{bottom:796.706667pt;}
.y92{bottom:799.706667pt;}
.y10d{bottom:805.706667pt;}
.y5a{bottom:810.733333pt;}
.ybe{bottom:811.733333pt;}
.y91{bottom:815.733333pt;}
.y10c{bottom:820.733333pt;}
.y59{bottom:826.733333pt;}
.ybd{bottom:827.733333pt;}
.y90{bottom:830.733333pt;}
.y10b{bottom:837.733333pt;}
.ybb{bottom:839.733333pt;}
.y58{bottom:842.733333pt;}
.y8f{bottom:845.733333pt;}
.y10a{bottom:854.773333pt;}
.y57{bottom:859.773333pt;}
.y8e{bottom:861.773333pt;}
.y109{bottom:871.773333pt;}
.y56{bottom:874.773333pt;}
.y8d{bottom:876.773333pt;}
.y108{bottom:887.800000pt;}
.y55{bottom:889.800000pt;}
.y8c{bottom:891.800000pt;}
.yd{bottom:895.800000pt;}
.ydd{bottom:902.800000pt;}
.y107{bottom:903.800000pt;}
.y54{bottom:905.800000pt;}
.y8b{bottom:907.800000pt;}
.y6{bottom:918.800000pt;}
.y53{bottom:920.840000pt;}
.y8a{bottom:922.840000pt;}
.y106{bottom:933.840000pt;}
.y52{bottom:935.840000pt;}
.y89{bottom:937.840000pt;}
.y105{bottom:950.840000pt;}
.y51{bottom:951.840000pt;}
.y88{bottom:953.840000pt;}
.yb9{bottom:957.866667pt;}
.y50{bottom:966.866667pt;}
.y104{bottom:967.866667pt;}
.y87{bottom:968.866667pt;}
.ydc{bottom:979.866667pt;}
.y4f{bottom:981.866667pt;}
.y86{bottom:983.866667pt;}
.y4e{bottom:998.893333pt;}
.y85{bottom:999.893333pt;}
.y4d{bottom:1014.893333pt;}
.h26{height:15.000000pt;}
.h20{height:15.033333pt;}
.h2c{height:16.000000pt;}
.h2a{height:16.033333pt;}
.hb{height:23.000000pt;}
.h13{height:26.000000pt;}
.h1b{height:26.033333pt;}
.h12{height:26.625000pt;}
.h2{height:29.000000pt;}
.h24{height:31.033333pt;}
.h8{height:33.000000pt;}
.h1c{height:35.406250pt;}
.h1a{height:36.308594pt;}
.h19{height:36.689453pt;}
.h1d{height:37.857422pt;}
.hd{height:38.289062pt;}
.h11{height:38.625000pt;}
.ha{height:39.000000pt;}
.h17{height:41.843750pt;}
.h1e{height:42.199219pt;}
.h18{height:42.859375pt;}
.h16{height:43.763672pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h1f{height:49.033333pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h22{height:68.033333pt;}
.h25{height:76.066667pt;}
.h2b{height:77.066667pt;}
.h21{height:83.066667pt;}
.h2d{height:92.100000pt;}
.h29{height:98.433398pt;}
.h27{height:107.100000pt;}
.h7{height:108.100000pt;}
.h23{height:118.133333pt;}
.hc{height:241.226667pt;}
.h28{height:271.000000pt;}
.h2e{height:278.000000pt;}
.h15{height:368.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.wc{width:97.100000pt;}
.w13{width:100.100000pt;}
.w17{width:125.166667pt;}
.w4{width:129.133333pt;}
.wd{width:139.200000pt;}
.wa{width:160.200000pt;}
.w10{width:161.240000pt;}
.w14{width:167.226667pt;}
.w9{width:185.240000pt;}
.w7{width:190.240000pt;}
.wf{width:204.240000pt;}
.w16{width:213.266667pt;}
.w11{width:298.360000pt;}
.wb{width:318.400000pt;}
.w18{width:324.400000pt;}
.w15{width:395.506667pt;}
.we{width:427.533333pt;}
.w12{width:460.000000pt;}
.w8{width:474.600000pt;}
.w19{width:489.000000pt;}
.w5{width:535.706667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.000000pt;}
.x8{left:7.026667pt;}
.x2{left:8.033333pt;}
.x11{left:9.000000pt;}
.xf{left:11.000000pt;}
.x37{left:13.000000pt;}
.x14{left:14.000000pt;}
.x3c{left:16.493333pt;}
.x1b{left:18.000000pt;}
.x12{left:19.000000pt;}
.x16{left:28.033333pt;}
.x3a{left:30.026667pt;}
.x10{left:32.033333pt;}
.x38{left:33.026667pt;}
.x22{left:36.033333pt;}
.x34{left:37.033333pt;}
.x39{left:40.026667pt;}
.x18{left:44.033333pt;}
.x28{left:45.033333pt;}
.x15{left:53.066667pt;}
.x17{left:55.066667pt;}
.x3d{left:56.226667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x21{left:70.060000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x1c{left:96.133322pt;}
.x1d{left:120.166655pt;}
.x3b{left:151.000000pt;}
.x23{left:163.200000pt;}
.x2b{left:165.000000pt;}
.x2e{left:166.200000pt;}
.x2c{left:171.293333pt;}
.x26{left:172.239988pt;}
.x19{left:190.233333pt;}
.x7{left:194.240000pt;}
.x33{left:206.266655pt;}
.x2d{left:221.266655pt;}
.x27{left:225.293322pt;}
.x1e{left:251.333333pt;}
.x1a{left:255.333333pt;}
.x32{left:260.333322pt;}
.xb{left:263.360000pt;}
.x29{left:269.333333pt;}
.x35{left:279.373333pt;}
.x24{left:302.400000pt;}
.x9{left:312.400000pt;}
.x13{left:318.406667pt;}
.xa{left:329.426667pt;}
.xe{left:332.406667pt;}
.x2f{left:334.440000pt;}
.xd{left:388.493333pt;}
.x30{left:397.506655pt;}
.x36{left:405.533333pt;}
.xc{left:408.533333pt;}
.x3e{left:410.400000pt;}
.x20{left:411.533333pt;}
.x2a{left:431.573333pt;}
.x25{left:628.799988pt;}
.x31{left:642.839988pt;}
.x3{left:663.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; }
  