
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_78b46d9701f69b1616a03206.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_d7841dd90e69bf52549833dd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_57f0705adf75922a7f813ba1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_a3a7bc66d0c5dc10ce7d9016.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d609ed68e86b3242c8ae1b29.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_02379ef8cfb511ecb2727291.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2400a4af002ca3163eadcc86.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_6a89c23b5cb92e0f811f61bc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933594;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls5{letter-spacing:-0.226200px;}
.ls9{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.089400px;}
.ls8{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.097800px;}
.lsc{letter-spacing:0.119520px;}
.lsd{letter-spacing:0.135360px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.493800px;}
.lse{letter-spacing:6.660000px;}
.lsa{letter-spacing:12.420000px;}
.ls12{letter-spacing:24.426720px;}
.ls11{letter-spacing:46.026720px;}
.lsb{letter-spacing:76.986720px;}
.ls0{letter-spacing:599.885760px;}
.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;}
}
.wsa{word-spacing:-54.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.037800px;}
.wsd{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.ws6{word-spacing:-10.933800px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.052640px;}
._2{width:2.053440px;}
._9{width:3.184560px;}
._4{width:4.320000px;}
._3{width:5.346000px;}
._7{width:6.534000px;}
._15{width:7.535520px;}
._6{width:8.545680px;}
._5{width:9.882000px;}
._b{width:11.870640px;}
._c{width:13.050720px;}
._8{width:15.174000px;}
._16{width:16.177680px;}
._f{width:17.210880px;}
._18{width:19.013040px;}
._e{width:20.019600px;}
._d{width:21.633120px;}
._17{width:22.911120px;}
._11{width:24.860160px;}
._10{width:26.115120px;}
._14{width:29.521440px;}
._13{width:30.895920px;}
._a{width:47.394000px;}
._12{width:127.072800px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y58{bottom:1.620000px;}
.y5{bottom:3.780000px;}
.y4e{bottom:4.500000px;}
.ye5{bottom:4.680000px;}
.y66{bottom:5.010000px;}
.y64{bottom:6.120000px;}
.y2{bottom:9.930000px;}
.y57{bottom:10.260000px;}
.y63{bottom:21.600000px;}
.y4{bottom:22.710000px;}
.yed{bottom:23.040000px;}
.y4d{bottom:23.220000px;}
.ye7{bottom:23.265000px;}
.y62{bottom:37.074000px;}
.ye4{bottom:41.760000px;}
.y4c{bottom:41.805000px;}
.ye9{bottom:41.940000px;}
.y3{bottom:47.910000px;}
.y56{bottom:53.274000px;}
.y61{bottom:54.894000px;}
.y4b{bottom:60.345000px;}
.y55{bottom:62.274000px;}
.y60{bottom:70.374000px;}
.ya{bottom:71.820000px;}
.y54{bottom:72.894000px;}
.y4a{bottom:79.065000px;}
.y53{bottom:84.954000px;}
.y5f{bottom:85.854000px;}
.y9{bottom:90.756000px;}
.y52{bottom:97.014000px;}
.y49{bottom:97.605000px;}
.y5e{bottom:103.674000px;}
.yde{bottom:113.796000px;}
.y4f{bottom:115.056000px;}
.y48{bottom:116.325000px;}
.y5d{bottom:119.154000px;}
.y135{bottom:121.356000px;}
.y8c{bottom:121.536000px;}
.y2c{bottom:127.845000px;}
.ydd{bottom:131.076000px;}
.y5c{bottom:134.814000px;}
.y47{bottom:134.865000px;}
.y8b{bottom:138.816000px;}
.y134{bottom:139.896000px;}
.y108{bottom:147.096000px;}
.ydc{bottom:148.356000px;}
.y2b{bottom:149.985000px;}
.y5b{bottom:150.294000px;}
.y46{bottom:153.405000px;}
.y8a{bottom:156.090000px;}
.yc1{bottom:156.450000px;}
.y51{bottom:158.034000px;}
.y133{bottom:158.610000px;}
.y2a{bottom:163.845000px;}
.ydb{bottom:165.450000px;}
.y107{bottom:165.630000px;}
.y5a{bottom:165.774000px;}
.y50{bottom:167.754000px;}
.y45{bottom:172.125000px;}
.y89{bottom:173.370000px;}
.yc0{bottom:173.730000px;}
.y132{bottom:177.150000px;}
.y29{bottom:177.705000px;}
.y59{bottom:181.254000px;}
.yda{bottom:182.730000px;}
.y106{bottom:184.170000px;}
.y88{bottom:190.650000px;}
.y44{bottom:190.665000px;}
.ybf{bottom:191.010000px;}
.y28{bottom:191.565000px;}
.y131{bottom:195.690000px;}
.yd9{bottom:200.010000px;}
.y105{bottom:202.890000px;}
.y27{bottom:205.425000px;}
.y87{bottom:207.750000px;}
.ybe{bottom:208.290000px;}
.y43{bottom:209.385000px;}
.y130{bottom:214.410000px;}
.yd8{bottom:217.290000px;}
.y26{bottom:219.285000px;}
.y104{bottom:221.430000px;}
.y86{bottom:225.030000px;}
.ybd{bottom:225.570000px;}
.y42{bottom:227.925000px;}
.y12f{bottom:232.950000px;}
.y25{bottom:233.145000px;}
.yd7{bottom:234.570000px;}
.y103{bottom:240.150000px;}
.y85{bottom:242.310000px;}
.ybc{bottom:242.670000px;}
.y41{bottom:246.645000px;}
.y24{bottom:247.005000px;}
.y12e{bottom:251.670000px;}
.yd6{bottom:251.850000px;}
.y102{bottom:258.690000px;}
.y84{bottom:259.590000px;}
.ybb{bottom:259.950000px;}
.y23{bottom:260.865000px;}
.y40{bottom:265.185000px;}
.yd5{bottom:268.950000px;}
.y12d{bottom:270.210000px;}
.y22{bottom:274.725000px;}
.y83{bottom:276.870000px;}
.yba{bottom:277.230000px;}
.y101{bottom:277.410000px;}
.y21{bottom:279.405000px;}
.y3f{bottom:283.725000px;}
.yd4{bottom:286.230000px;}
.y12c{bottom:288.930000px;}
.y82{bottom:293.970000px;}
.yb9{bottom:294.510000px;}
.y100{bottom:295.950000px;}
.y3e{bottom:302.475000px;}
.yd3{bottom:303.510000px;}
.y20{bottom:303.555000px;}
.y12b{bottom:307.470000px;}
.y81{bottom:311.250000px;}
.yb8{bottom:311.790000px;}
.y13{bottom:312.870000px;}
.yff{bottom:314.490000px;}
.yd2{bottom:320.790000px;}
.y3d{bottom:321.015000px;}
.y12a{bottom:326.010000px;}
.y1f{bottom:327.855000px;}
.y80{bottom:328.530000px;}
.yb7{bottom:329.070000px;}
.yfe{bottom:333.210000px;}
.yd1{bottom:338.070000px;}
.y3c{bottom:339.195000px;}
.y129{bottom:344.775000px;}
.y7f{bottom:345.855000px;}
.yb6{bottom:346.215000px;}
.yfd{bottom:351.795000px;}
.y1e{bottom:351.975000px;}
.yd0{bottom:355.395000px;}
.y3b{bottom:355.935000px;}
.y7e{bottom:363.135000px;}
.y128{bottom:363.315000px;}
.yb5{bottom:363.495000px;}
.yfc{bottom:370.515000px;}
.ycf{bottom:372.495000px;}
.y3a{bottom:372.675000px;}
.y1d{bottom:376.095000px;}
.y7d{bottom:380.415000px;}
.yb4{bottom:380.775000px;}
.y127{bottom:382.035000px;}
.yfb{bottom:389.055000px;}
.y39{bottom:389.415000px;}
.yce{bottom:389.775000px;}
.y148{bottom:391.035000px;}
.y7c{bottom:397.515000px;}
.yb3{bottom:398.055000px;}
.y1c{bottom:400.215000px;}
.y126{bottom:400.575000px;}
.y38{bottom:406.335000px;}
.ycd{bottom:407.055000px;}
.yfa{bottom:407.595000px;}
.y147{bottom:409.575000px;}
.yb2{bottom:415.335000px;}
.y125{bottom:419.115000px;}
.y37{bottom:423.075000px;}
.y1b{bottom:424.335000px;}
.y7b{bottom:425.055000px;}
.yf9{bottom:426.315000px;}
.y146{bottom:428.115000px;}
.yb1{bottom:432.435000px;}
.y124{bottom:437.835000px;}
.y36{bottom:439.815000px;}
.ycc{bottom:441.615000px;}
.yf8{bottom:444.855000px;}
.y145{bottom:446.835000px;}
.y1a{bottom:448.455000px;}
.yb0{bottom:449.715000px;}
.y123{bottom:456.375000px;}
.y35{bottom:456.555000px;}
.ycb{bottom:458.715000px;}
.yf7{bottom:463.575000px;}
.y144{bottom:465.375000px;}
.yaf{bottom:466.995000px;}
.y19{bottom:472.755000px;}
.y34{bottom:473.295000px;}
.y122{bottom:475.095000px;}
.yca{bottom:475.995000px;}
.yf6{bottom:482.115000px;}
.y143{bottom:484.095000px;}
.yae{bottom:484.275000px;}
.y33{bottom:490.035000px;}
.yc9{bottom:493.275000px;}
.y121{bottom:493.635000px;}
.y18{bottom:496.875000px;}
.yf5{bottom:500.655000px;}
.yad{bottom:501.555000px;}
.y142{bottom:502.635000px;}
.y32{bottom:506.775000px;}
.yc8{bottom:510.555000px;}
.y120{bottom:512.175000px;}
.yac{bottom:518.835000px;}
.yf4{bottom:519.375000px;}
.y17{bottom:520.995000px;}
.y141{bottom:521.175000px;}
.y31{bottom:523.515000px;}
.yc7{bottom:527.835000px;}
.y11f{bottom:530.895000px;}
.yab{bottom:535.935000px;}
.yf3{bottom:537.915000px;}
.y140{bottom:539.895000px;}
.y30{bottom:540.255000px;}
.y16{bottom:545.115000px;}
.yc6{bottom:546.375000px;}
.y11e{bottom:549.435000px;}
.yaa{bottom:553.215000px;}
.yf2{bottom:556.635000px;}
.y2f{bottom:557.040000px;}
.y13f{bottom:558.435000px;}
.yc5{bottom:564.915000px;}
.y11d{bottom:568.155000px;}
.y15{bottom:569.280000px;}
.ya9{bottom:570.495000px;}
.y2e{bottom:573.780000px;}
.yf1{bottom:575.175000px;}
.y13e{bottom:577.155000px;}
.yc4{bottom:583.635000px;}
.y11c{bottom:586.695000px;}
.ya8{bottom:587.775000px;}
.y2d{bottom:590.520000px;}
.y14{bottom:593.400000px;}
.yf0{bottom:593.895000px;}
.y13d{bottom:595.695000px;}
.yc3{bottom:598.935000px;}
.ya7{bottom:605.085000px;}
.y11b{bottom:605.445000px;}
.yef{bottom:612.465000px;}
.y13c{bottom:614.445000px;}
.ya6{bottom:622.365000px;}
.y11a{bottom:623.985000px;}
.yee{bottom:631.005000px;}
.y13b{bottom:632.985000px;}
.y15b{bottom:638.925000px;}
.ya5{bottom:639.465000px;}
.y119{bottom:642.525000px;}
.yec{bottom:645.945000px;}
.y13a{bottom:651.525000px;}
.y15a{bottom:656.205000px;}
.ya4{bottom:656.745000px;}
.y118{bottom:661.245000px;}
.y139{bottom:670.245000px;}
.y159{bottom:673.485000px;}
.ya3{bottom:674.025000px;}
.y117{bottom:679.785000px;}
.y138{bottom:688.785000px;}
.y158{bottom:690.765000px;}
.ya2{bottom:691.305000px;}
.y116{bottom:698.505000px;}
.yeb{bottom:702.465000px;}
.y137{bottom:707.505000px;}
.y157{bottom:708.045000px;}
.ya1{bottom:708.585000px;}
.y7a{bottom:713.985000px;}
.y115{bottom:717.045000px;}
.y156{bottom:725.145000px;}
.ya0{bottom:725.865000px;}
.y136{bottom:726.045000px;}
.y114{bottom:735.585000px;}
.y155{bottom:742.425000px;}
.y9f{bottom:742.965000px;}
.y79{bottom:744.585000px;}
.y113{bottom:754.305000px;}
.yea{bottom:758.985000px;}
.y154{bottom:759.705000px;}
.y9e{bottom:760.245000px;}
.y78{bottom:763.305000px;}
.y112{bottom:772.845000px;}
.y153{bottom:776.985000px;}
.y9d{bottom:777.525000px;}
.y77{bottom:781.845000px;}
.y111{bottom:791.565000px;}
.y9c{bottom:794.805000px;}
.y152{bottom:795.525000px;}
.ye8{bottom:796.965000px;}
.y76{bottom:800.565000px;}
.y110{bottom:810.105000px;}
.y9b{bottom:812.085000px;}
.y151{bottom:812.805000px;}
.y75{bottom:819.105000px;}
.y10f{bottom:828.645000px;}
.y9a{bottom:829.185000px;}
.y150{bottom:830.085000px;}
.y74{bottom:837.645000px;}
.y10e{bottom:847.365000px;}
.ye6{bottom:853.665000px;}
.y99{bottom:855.465000px;}
.y73{bottom:856.365000px;}
.y14f{bottom:864.645000px;}
.y10d{bottom:865.905000px;}
.yc2{bottom:871.350000px;}
.y98{bottom:872.790000px;}
.y72{bottom:874.950000px;}
.y14e{bottom:881.790000px;}
.y10c{bottom:884.670000px;}
.y97{bottom:890.070000px;}
.y71{bottom:893.670000px;}
.y14d{bottom:899.070000px;}
.y10b{bottom:903.210000px;}
.y96{bottom:907.350000px;}
.ye3{bottom:910.230000px;}
.y70{bottom:912.210000px;}
.y14c{bottom:916.350000px;}
.y12{bottom:921.570000px;}
.y10a{bottom:921.930000px;}
.y95{bottom:924.630000px;}
.y6f{bottom:930.930000px;}
.y14b{bottom:933.630000px;}
.y11{bottom:938.850000px;}
.y109{bottom:940.470000px;}
.y94{bottom:941.730000px;}
.y6e{bottom:949.470000px;}
.y14a{bottom:950.910000px;}
.y10{bottom:955.950000px;}
.y93{bottom:959.010000px;}
.ye2{bottom:966.930000px;}
.y6d{bottom:968.010000px;}
.y149{bottom:968.190000px;}
.yf{bottom:973.230000px;}
.y92{bottom:976.290000px;}
.y6c{bottom:986.730000px;}
.ye{bottom:990.510000px;}
.ye1{bottom:990.870000px;}
.y91{bottom:993.570000px;}
.y6b{bottom:1005.270000px;}
.yd{bottom:1009.230000px;}
.ye0{bottom:1009.410000px;}
.y90{bottom:1010.850000px;}
.y6a{bottom:1023.990000px;}
.ydf{bottom:1027.950000px;}
.y8f{bottom:1028.130000px;}
.yc{bottom:1033.710000px;}
.y69{bottom:1042.530000px;}
.y8e{bottom:1045.230000px;}
.y68{bottom:1061.070000px;}
.yb{bottom:1062.330000px;}
.y8d{bottom:1062.510000px;}
.y65{bottom:1065.600000px;}
.y67{bottom:1079.790000px;}
.y8{bottom:1106.070000px;}
.y7{bottom:1120.110000px;}
.y6{bottom:1122.090000px;}
.y1{bottom:1123.530000px;}
.he{height:4.134375px;}
.h6{height:5.729063px;}
.h1a{height:18.540000px;}
.h15{height:21.705469px;}
.h14{height:25.839844px;}
.h16{height:27.720000px;}
.h13{height:29.464453px;}
.hd{height:29.974219px;}
.h1e{height:37.260000px;}
.h8{height:40.132617px;}
.hb{height:42.164648px;}
.h7{height:42.894141px;}
.h19{height:43.506914px;}
.hf{height:43.822266px;}
.h10{height:44.507812px;}
.h5{height:47.545312px;}
.ha{height:48.312422px;}
.h11{height:48.496641px;}
.h18{height:49.255313px;}
.h1b{height:55.800000px;}
.h1c{height:55.836000px;}
.h1d{height:55.980000px;}
.h17{height:64.002656px;}
.h9{height:64.126055px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h12{height:197.100000px;}
.hc{height:603.105000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:131.940000px;}
.w9{width:135.036000px;}
.w8{width:162.900000px;}
.wa{width:484.455000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.056000px;}
.x18{left:8.100000px;}
.x4{left:12.780000px;}
.x16{left:18.180000px;}
.x6{left:19.260000px;}
.x10{left:25.560000px;}
.x11{left:28.980000px;}
.xf{left:31.140000px;}
.x15{left:37.260000px;}
.x14{left:40.320000px;}
.x13{left:42.480000px;}
.x1b{left:47.340000px;}
.x1c{left:56.700000px;}
.x19{left:62.145000px;}
.x12{left:65.874000px;}
.x1{left:78.300000px;}
.x7{left:86.435987px;}
.x2{left:95.790000px;}
.x1a{left:106.374000px;}
.x1e{left:108.035987px;}
.x24{left:113.435987px;}
.xb{left:119.735987px;}
.x22{left:136.476000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x17{left:218.370000px;}
.x23{left:272.415000px;}
.x21{left:446.684987px;}
.xc{left:541.004987px;}
.xd{left:613.949987px;}
.xa{left:617.189987px;}
.x1f{left:620.969987px;}
.x20{left:637.889987px;}
.x9{left:766.049987px;}
.x8{left:784.439987px;}
.xe{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls5{letter-spacing:-0.201067pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.086933pt;}
.lsc{letter-spacing:0.106240pt;}
.lsd{letter-spacing:0.120320pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.438933pt;}
.lse{letter-spacing:5.920000pt;}
.lsa{letter-spacing:11.040000pt;}
.ls12{letter-spacing:21.712640pt;}
.ls11{letter-spacing:40.912640pt;}
.lsb{letter-spacing:68.432640pt;}
.ls0{letter-spacing:533.231787pt;}
.wsa{word-spacing:-48.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.366933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws6{word-spacing:-9.718933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.935680pt;}
._2{width:1.825280pt;}
._9{width:2.830720pt;}
._4{width:3.840000pt;}
._3{width:4.752000pt;}
._7{width:5.808000pt;}
._15{width:6.698240pt;}
._6{width:7.596160pt;}
._5{width:8.784000pt;}
._b{width:10.551680pt;}
._c{width:11.600640pt;}
._8{width:13.488000pt;}
._16{width:14.380160pt;}
._f{width:15.298560pt;}
._18{width:16.900480pt;}
._e{width:17.795200pt;}
._d{width:19.229440pt;}
._17{width:20.365440pt;}
._11{width:22.097920pt;}
._10{width:23.213440pt;}
._14{width:26.241280pt;}
._13{width:27.463040pt;}
._a{width:42.128000pt;}
._12{width:112.953600pt;}
.fs2{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:1.440000pt;}
.y5{bottom:3.360000pt;}
.y4e{bottom:4.000000pt;}
.ye5{bottom:4.160000pt;}
.y66{bottom:4.453333pt;}
.y64{bottom:5.440000pt;}
.y2{bottom:8.826667pt;}
.y57{bottom:9.120000pt;}
.y63{bottom:19.200000pt;}
.y4{bottom:20.186667pt;}
.yed{bottom:20.480000pt;}
.y4d{bottom:20.640000pt;}
.ye7{bottom:20.680000pt;}
.y62{bottom:32.954667pt;}
.ye4{bottom:37.120000pt;}
.y4c{bottom:37.160000pt;}
.ye9{bottom:37.280000pt;}
.y3{bottom:42.586667pt;}
.y56{bottom:47.354667pt;}
.y61{bottom:48.794667pt;}
.y4b{bottom:53.640000pt;}
.y55{bottom:55.354667pt;}
.y60{bottom:62.554667pt;}
.ya{bottom:63.840000pt;}
.y54{bottom:64.794667pt;}
.y4a{bottom:70.280000pt;}
.y53{bottom:75.514667pt;}
.y5f{bottom:76.314667pt;}
.y9{bottom:80.672000pt;}
.y52{bottom:86.234667pt;}
.y49{bottom:86.760000pt;}
.y5e{bottom:92.154667pt;}
.yde{bottom:101.152000pt;}
.y4f{bottom:102.272000pt;}
.y48{bottom:103.400000pt;}
.y5d{bottom:105.914667pt;}
.y135{bottom:107.872000pt;}
.y8c{bottom:108.032000pt;}
.y2c{bottom:113.640000pt;}
.ydd{bottom:116.512000pt;}
.y5c{bottom:119.834667pt;}
.y47{bottom:119.880000pt;}
.y8b{bottom:123.392000pt;}
.y134{bottom:124.352000pt;}
.y108{bottom:130.752000pt;}
.ydc{bottom:131.872000pt;}
.y2b{bottom:133.320000pt;}
.y5b{bottom:133.594667pt;}
.y46{bottom:136.360000pt;}
.y8a{bottom:138.746667pt;}
.yc1{bottom:139.066667pt;}
.y51{bottom:140.474667pt;}
.y133{bottom:140.986667pt;}
.y2a{bottom:145.640000pt;}
.ydb{bottom:147.066667pt;}
.y107{bottom:147.226667pt;}
.y5a{bottom:147.354667pt;}
.y50{bottom:149.114667pt;}
.y45{bottom:153.000000pt;}
.y89{bottom:154.106667pt;}
.yc0{bottom:154.426667pt;}
.y132{bottom:157.466667pt;}
.y29{bottom:157.960000pt;}
.y59{bottom:161.114667pt;}
.yda{bottom:162.426667pt;}
.y106{bottom:163.706667pt;}
.y88{bottom:169.466667pt;}
.y44{bottom:169.480000pt;}
.ybf{bottom:169.786667pt;}
.y28{bottom:170.280000pt;}
.y131{bottom:173.946667pt;}
.yd9{bottom:177.786667pt;}
.y105{bottom:180.346667pt;}
.y27{bottom:182.600000pt;}
.y87{bottom:184.666667pt;}
.ybe{bottom:185.146667pt;}
.y43{bottom:186.120000pt;}
.y130{bottom:190.586667pt;}
.yd8{bottom:193.146667pt;}
.y26{bottom:194.920000pt;}
.y104{bottom:196.826667pt;}
.y86{bottom:200.026667pt;}
.ybd{bottom:200.506667pt;}
.y42{bottom:202.600000pt;}
.y12f{bottom:207.066667pt;}
.y25{bottom:207.240000pt;}
.yd7{bottom:208.506667pt;}
.y103{bottom:213.466667pt;}
.y85{bottom:215.386667pt;}
.ybc{bottom:215.706667pt;}
.y41{bottom:219.240000pt;}
.y24{bottom:219.560000pt;}
.y12e{bottom:223.706667pt;}
.yd6{bottom:223.866667pt;}
.y102{bottom:229.946667pt;}
.y84{bottom:230.746667pt;}
.ybb{bottom:231.066667pt;}
.y23{bottom:231.880000pt;}
.y40{bottom:235.720000pt;}
.yd5{bottom:239.066667pt;}
.y12d{bottom:240.186667pt;}
.y22{bottom:244.200000pt;}
.y83{bottom:246.106667pt;}
.yba{bottom:246.426667pt;}
.y101{bottom:246.586667pt;}
.y21{bottom:248.360000pt;}
.y3f{bottom:252.200000pt;}
.yd4{bottom:254.426667pt;}
.y12c{bottom:256.826667pt;}
.y82{bottom:261.306667pt;}
.yb9{bottom:261.786667pt;}
.y100{bottom:263.066667pt;}
.y3e{bottom:268.866667pt;}
.yd3{bottom:269.786667pt;}
.y20{bottom:269.826667pt;}
.y12b{bottom:273.306667pt;}
.y81{bottom:276.666667pt;}
.yb8{bottom:277.146667pt;}
.y13{bottom:278.106667pt;}
.yff{bottom:279.546667pt;}
.yd2{bottom:285.146667pt;}
.y3d{bottom:285.346667pt;}
.y12a{bottom:289.786667pt;}
.y1f{bottom:291.426667pt;}
.y80{bottom:292.026667pt;}
.yb7{bottom:292.506667pt;}
.yfe{bottom:296.186667pt;}
.yd1{bottom:300.506667pt;}
.y3c{bottom:301.506667pt;}
.y129{bottom:306.466667pt;}
.y7f{bottom:307.426667pt;}
.yb6{bottom:307.746667pt;}
.yfd{bottom:312.706667pt;}
.y1e{bottom:312.866667pt;}
.yd0{bottom:315.906667pt;}
.y3b{bottom:316.386667pt;}
.y7e{bottom:322.786667pt;}
.y128{bottom:322.946667pt;}
.yb5{bottom:323.106667pt;}
.yfc{bottom:329.346667pt;}
.ycf{bottom:331.106667pt;}
.y3a{bottom:331.266667pt;}
.y1d{bottom:334.306667pt;}
.y7d{bottom:338.146667pt;}
.yb4{bottom:338.466667pt;}
.y127{bottom:339.586667pt;}
.yfb{bottom:345.826667pt;}
.y39{bottom:346.146667pt;}
.yce{bottom:346.466667pt;}
.y148{bottom:347.586667pt;}
.y7c{bottom:353.346667pt;}
.yb3{bottom:353.826667pt;}
.y1c{bottom:355.746667pt;}
.y126{bottom:356.066667pt;}
.y38{bottom:361.186667pt;}
.ycd{bottom:361.826667pt;}
.yfa{bottom:362.306667pt;}
.y147{bottom:364.066667pt;}
.yb2{bottom:369.186667pt;}
.y125{bottom:372.546667pt;}
.y37{bottom:376.066667pt;}
.y1b{bottom:377.186667pt;}
.y7b{bottom:377.826667pt;}
.yf9{bottom:378.946667pt;}
.y146{bottom:380.546667pt;}
.yb1{bottom:384.386667pt;}
.y124{bottom:389.186667pt;}
.y36{bottom:390.946667pt;}
.ycc{bottom:392.546667pt;}
.yf8{bottom:395.426667pt;}
.y145{bottom:397.186667pt;}
.y1a{bottom:398.626667pt;}
.yb0{bottom:399.746667pt;}
.y123{bottom:405.666667pt;}
.y35{bottom:405.826667pt;}
.ycb{bottom:407.746667pt;}
.yf7{bottom:412.066667pt;}
.y144{bottom:413.666667pt;}
.yaf{bottom:415.106667pt;}
.y19{bottom:420.226667pt;}
.y34{bottom:420.706667pt;}
.y122{bottom:422.306667pt;}
.yca{bottom:423.106667pt;}
.yf6{bottom:428.546667pt;}
.y143{bottom:430.306667pt;}
.yae{bottom:430.466667pt;}
.y33{bottom:435.586667pt;}
.yc9{bottom:438.466667pt;}
.y121{bottom:438.786667pt;}
.y18{bottom:441.666667pt;}
.yf5{bottom:445.026667pt;}
.yad{bottom:445.826667pt;}
.y142{bottom:446.786667pt;}
.y32{bottom:450.466667pt;}
.yc8{bottom:453.826667pt;}
.y120{bottom:455.266667pt;}
.yac{bottom:461.186667pt;}
.yf4{bottom:461.666667pt;}
.y17{bottom:463.106667pt;}
.y141{bottom:463.266667pt;}
.y31{bottom:465.346667pt;}
.yc7{bottom:469.186667pt;}
.y11f{bottom:471.906667pt;}
.yab{bottom:476.386667pt;}
.yf3{bottom:478.146667pt;}
.y140{bottom:479.906667pt;}
.y30{bottom:480.226667pt;}
.y16{bottom:484.546667pt;}
.yc6{bottom:485.666667pt;}
.y11e{bottom:488.386667pt;}
.yaa{bottom:491.746667pt;}
.yf2{bottom:494.786667pt;}
.y2f{bottom:495.146667pt;}
.y13f{bottom:496.386667pt;}
.yc5{bottom:502.146667pt;}
.y11d{bottom:505.026667pt;}
.y15{bottom:506.026667pt;}
.ya9{bottom:507.106667pt;}
.y2e{bottom:510.026667pt;}
.yf1{bottom:511.266667pt;}
.y13e{bottom:513.026667pt;}
.yc4{bottom:518.786667pt;}
.y11c{bottom:521.506667pt;}
.ya8{bottom:522.466667pt;}
.y2d{bottom:524.906667pt;}
.y14{bottom:527.466667pt;}
.yf0{bottom:527.906667pt;}
.y13d{bottom:529.506667pt;}
.yc3{bottom:532.386667pt;}
.ya7{bottom:537.853333pt;}
.y11b{bottom:538.173333pt;}
.yef{bottom:544.413333pt;}
.y13c{bottom:546.173333pt;}
.ya6{bottom:553.213333pt;}
.y11a{bottom:554.653333pt;}
.yee{bottom:560.893333pt;}
.y13b{bottom:562.653333pt;}
.y15b{bottom:567.933333pt;}
.ya5{bottom:568.413333pt;}
.y119{bottom:571.133333pt;}
.yec{bottom:574.173333pt;}
.y13a{bottom:579.133333pt;}
.y15a{bottom:583.293333pt;}
.ya4{bottom:583.773333pt;}
.y118{bottom:587.773333pt;}
.y139{bottom:595.773333pt;}
.y159{bottom:598.653333pt;}
.ya3{bottom:599.133333pt;}
.y117{bottom:604.253333pt;}
.y138{bottom:612.253333pt;}
.y158{bottom:614.013333pt;}
.ya2{bottom:614.493333pt;}
.y116{bottom:620.893333pt;}
.yeb{bottom:624.413333pt;}
.y137{bottom:628.893333pt;}
.y157{bottom:629.373333pt;}
.ya1{bottom:629.853333pt;}
.y7a{bottom:634.653333pt;}
.y115{bottom:637.373333pt;}
.y156{bottom:644.573333pt;}
.ya0{bottom:645.213333pt;}
.y136{bottom:645.373333pt;}
.y114{bottom:653.853333pt;}
.y155{bottom:659.933333pt;}
.y9f{bottom:660.413333pt;}
.y79{bottom:661.853333pt;}
.y113{bottom:670.493333pt;}
.yea{bottom:674.653333pt;}
.y154{bottom:675.293333pt;}
.y9e{bottom:675.773333pt;}
.y78{bottom:678.493333pt;}
.y112{bottom:686.973333pt;}
.y153{bottom:690.653333pt;}
.y9d{bottom:691.133333pt;}
.y77{bottom:694.973333pt;}
.y111{bottom:703.613333pt;}
.y9c{bottom:706.493333pt;}
.y152{bottom:707.133333pt;}
.ye8{bottom:708.413333pt;}
.y76{bottom:711.613333pt;}
.y110{bottom:720.093333pt;}
.y9b{bottom:721.853333pt;}
.y151{bottom:722.493333pt;}
.y75{bottom:728.093333pt;}
.y10f{bottom:736.573333pt;}
.y9a{bottom:737.053333pt;}
.y150{bottom:737.853333pt;}
.y74{bottom:744.573333pt;}
.y10e{bottom:753.213333pt;}
.ye6{bottom:758.813333pt;}
.y99{bottom:760.413333pt;}
.y73{bottom:761.213333pt;}
.y14f{bottom:768.573333pt;}
.y10d{bottom:769.693333pt;}
.yc2{bottom:774.533333pt;}
.y98{bottom:775.813333pt;}
.y72{bottom:777.733333pt;}
.y14e{bottom:783.813333pt;}
.y10c{bottom:786.373333pt;}
.y97{bottom:791.173333pt;}
.y71{bottom:794.373333pt;}
.y14d{bottom:799.173333pt;}
.y10b{bottom:802.853333pt;}
.y96{bottom:806.533333pt;}
.ye3{bottom:809.093333pt;}
.y70{bottom:810.853333pt;}
.y14c{bottom:814.533333pt;}
.y12{bottom:819.173333pt;}
.y10a{bottom:819.493333pt;}
.y95{bottom:821.893333pt;}
.y6f{bottom:827.493333pt;}
.y14b{bottom:829.893333pt;}
.y11{bottom:834.533333pt;}
.y109{bottom:835.973333pt;}
.y94{bottom:837.093333pt;}
.y6e{bottom:843.973333pt;}
.y14a{bottom:845.253333pt;}
.y10{bottom:849.733333pt;}
.y93{bottom:852.453333pt;}
.ye2{bottom:859.493333pt;}
.y6d{bottom:860.453333pt;}
.y149{bottom:860.613333pt;}
.yf{bottom:865.093333pt;}
.y92{bottom:867.813333pt;}
.y6c{bottom:877.093333pt;}
.ye{bottom:880.453333pt;}
.ye1{bottom:880.773333pt;}
.y91{bottom:883.173333pt;}
.y6b{bottom:893.573333pt;}
.yd{bottom:897.093333pt;}
.ye0{bottom:897.253333pt;}
.y90{bottom:898.533333pt;}
.y6a{bottom:910.213333pt;}
.ydf{bottom:913.733333pt;}
.y8f{bottom:913.893333pt;}
.yc{bottom:918.853333pt;}
.y69{bottom:926.693333pt;}
.y8e{bottom:929.093333pt;}
.y68{bottom:943.173333pt;}
.yb{bottom:944.293333pt;}
.y8d{bottom:944.453333pt;}
.y65{bottom:947.200000pt;}
.y67{bottom:959.813333pt;}
.y8{bottom:983.173333pt;}
.y7{bottom:995.653333pt;}
.y6{bottom:997.413333pt;}
.y1{bottom:998.693333pt;}
.he{height:3.675000pt;}
.h6{height:5.092500pt;}
.h1a{height:16.480000pt;}
.h15{height:19.293750pt;}
.h14{height:22.968750pt;}
.h16{height:24.640000pt;}
.h13{height:26.190625pt;}
.hd{height:26.643750pt;}
.h1e{height:33.120000pt;}
.h8{height:35.673437pt;}
.hb{height:37.479688pt;}
.h7{height:38.128125pt;}
.h19{height:38.672812pt;}
.hf{height:38.953125pt;}
.h10{height:39.562500pt;}
.h5{height:42.262500pt;}
.ha{height:42.944375pt;}
.h11{height:43.108125pt;}
.h18{height:43.782500pt;}
.h1b{height:49.600000pt;}
.h1c{height:49.632000pt;}
.h1d{height:49.760000pt;}
.h17{height:56.891250pt;}
.h9{height:57.000937pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h12{height:175.200000pt;}
.hc{height:536.093333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.280000pt;}
.w9{width:120.032000pt;}
.w8{width:144.800000pt;}
.wa{width:430.626667pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.272000pt;}
.x18{left:7.200000pt;}
.x4{left:11.360000pt;}
.x16{left:16.160000pt;}
.x6{left:17.120000pt;}
.x10{left:22.720000pt;}
.x11{left:25.760000pt;}
.xf{left:27.680000pt;}
.x15{left:33.120000pt;}
.x14{left:35.840000pt;}
.x13{left:37.760000pt;}
.x1b{left:42.080000pt;}
.x1c{left:50.400000pt;}
.x19{left:55.240000pt;}
.x12{left:58.554667pt;}
.x1{left:69.600000pt;}
.x7{left:76.831988pt;}
.x2{left:85.146667pt;}
.x1a{left:94.554667pt;}
.x1e{left:96.031988pt;}
.x24{left:100.831988pt;}
.xb{left:106.431988pt;}
.x22{left:121.312000pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x17{left:194.106667pt;}
.x23{left:242.146667pt;}
.x21{left:397.053322pt;}
.xc{left:480.893322pt;}
.xd{left:545.733322pt;}
.xa{left:548.613322pt;}
.x1f{left:551.973322pt;}
.x20{left:567.013322pt;}
.x9{left:680.933322pt;}
.x8{left:697.279988pt;}
.xe{left:717.279988pt;}
}




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