
    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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_91c84f1d7e28b083da6bf612.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.160156;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_a2fd1cb4b2b0f6c44ffaedff.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f8e882cdfde8d09e99cfdf48.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_9a1101837e8b72bf8e762f0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.158691;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_5438fb36627a0409e54e7cc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_b2f8b7798575bf76378ac130.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160156;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_21b0e999d6433df7cb09d7d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_c37cb3cf482894ad2f1e89ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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;}
.m2{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);}
.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;}
.ls3{letter-spacing:-1.416000px;}
.lsb{letter-spacing:-1.224000px;}
.ls11{letter-spacing:-0.960000px;}
.ls10{letter-spacing:-0.598800px;}
.ls14{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.025920px;}
.ls5{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.296400px;}
.lsf{letter-spacing:0.328200px;}
.ls6{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.363000px;}
.ls12{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.576000px;}
.lsc{letter-spacing:1.152000px;}
.lse{letter-spacing:1.512000px;}
.ls8{letter-spacing:1.656000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws7{word-spacing:-20.880000px;}
.ws9{word-spacing:-20.794930px;}
.ws5{word-spacing:-19.800000px;}
.wsd{word-spacing:-19.728000px;}
.ws6{word-spacing:-19.512000px;}
.ws8{word-spacing:-19.296000px;}
.wsf{word-spacing:-19.152000px;}
.ws3{word-spacing:-18.512760px;}
.ws0{word-spacing:-18.446160px;}
.ws2{word-spacing:-18.149760px;}
.wsb{word-spacing:-17.467741px;}
.wsa{word-spacing:-16.899720px;}
.ws1{word-spacing:-16.571520px;}
.wsc{word-spacing:-15.972720px;}
.ws4{word-spacing:0.000000px;}
._4b{margin-left:-11.071680px;}
._1{margin-left:-7.085760px;}
._35{margin-left:-5.812320px;}
._2{margin-left:-4.768320px;}
._5{margin-left:-3.574080px;}
._8{margin-left:-2.369280px;}
._0{margin-left:-1.259520px;}
._3{width:1.229280px;}
._6{width:2.418720px;}
._7{width:3.839040px;}
._d{width:5.320320px;}
._15{width:6.338400px;}
._e{width:7.499520px;}
._f{width:8.942400px;}
._11{width:10.053120px;}
._10{width:11.574720px;}
._13{width:12.908160px;}
._12{width:14.315040px;}
._c{width:15.976800px;}
._1f{width:17.198880px;}
._21{width:18.257280px;}
._14{width:19.334880px;}
._45{width:20.431680px;}
._b{width:21.594240px;}
._9{width:22.852800px;}
._a{width:23.896320px;}
._22{width:25.305120px;}
._1c{width:27.000000px;}
._19{width:28.229760px;}
._18{width:29.376000px;}
._16{width:30.995520px;}
._17{width:32.256000px;}
._1a{width:34.223520px;}
._1b{width:35.700960px;}
._48{width:37.512000px;}
._49{width:40.042560px;}
._27{width:41.419680px;}
._26{width:42.446400px;}
._4a{width:44.136000px;}
._39{width:45.432960px;}
._20{width:46.433280px;}
._34{width:47.708160px;}
._2f{width:48.931200px;}
._33{width:49.965600px;}
._30{width:51.096480px;}
._1e{width:57.240000px;}
._1d{width:58.510080px;}
._2e{width:63.745920px;}
._2d{width:64.955520px;}
._2c{width:66.175680px;}
._44{width:70.185600px;}
._28{width:71.416320px;}
._23{width:73.422720px;}
._40{width:82.496160px;}
._41{width:83.533440px;}
._38{width:86.304960px;}
._31{width:89.499840px;}
._32{width:90.780480px;}
._2a{width:94.288320px;}
._46{width:104.946720px;}
._3e{width:106.081920px;}
._3f{width:108.013920px;}
._24{width:115.164480px;}
._25{width:116.797440px;}
._43{width:138.202560px;}
._42{width:139.395840px;}
._3d{width:149.568480px;}
._3c{width:153.266880px;}
._36{width:159.112320px;}
._3b{width:162.385440px;}
._3a{width:164.092800px;}
._47{width:273.483840px;}
._29{width:329.836800px;}
._4{width:331.890240px;}
._2b{width:334.888320px;}
._37{width:417.251520px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc2{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.480000px;}
.fs4{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:75.893905px;}
.y0{bottom:0.000000px;}
.y92{bottom:3.960000px;}
.yd8{bottom:12.960000px;}
.ya3{bottom:13.320000px;}
.yde{bottom:15.480000px;}
.yb6{bottom:15.840000px;}
.yac{bottom:15.870000px;}
.y81{bottom:17.280000px;}
.ye8{bottom:20.160000px;}
.y98{bottom:23.040000px;}
.yd3{bottom:23.043000px;}
.y84{bottom:23.400000px;}
.y91{bottom:24.150000px;}
.ye9{bottom:29.880000px;}
.yb9{bottom:30.240000px;}
.yd6{bottom:32.763000px;}
.ya2{bottom:33.120000px;}
.y82{bottom:34.200000px;}
.yd0{bottom:35.640000px;}
.yea{bottom:35.670000px;}
.yb5{bottom:36.000000px;}
.yab{bottom:36.030000px;}
.yc3{bottom:39.960000px;}
.yb2{bottom:39.990000px;}
.yaf{bottom:40.350000px;}
.yd5{bottom:41.763000px;}
.y9d{bottom:42.120000px;}
.yd2{bottom:42.843000px;}
.y97{bottom:43.200000px;}
.y88{bottom:43.950000px;}
.y83{bottom:44.640000px;}
.ycc{bottom:47.550000px;}
.ybc{bottom:50.040000px;}
.ya6{bottom:50.070000px;}
.y80{bottom:50.760000px;}
.yd7{bottom:52.923000px;}
.ya1{bottom:53.280000px;}
.y8e{bottom:54.030000px;}
.y8c{bottom:55.110000px;}
.ye3{bottom:55.440000px;}
.yc4{bottom:55.800000px;}
.yb0{bottom:55.830000px;}
.yc0{bottom:56.160000px;}
.yaa{bottom:56.190000px;}
.y7c{bottom:56.916000px;}
.y4{bottom:57.240000px;}
.ye1{bottom:59.760000px;}
.ye7{bottom:59.790000px;}
.yc2{bottom:60.120000px;}
.yae{bottom:60.150000px;}
.yd4{bottom:61.953000px;}
.y9c{bottom:62.280000px;}
.y96{bottom:63.000000px;}
.y87{bottom:64.110000px;}
.yc6{bottom:65.910000px;}
.ycb{bottom:68.070000px;}
.ybb{bottom:69.840000px;}
.yb8{bottom:69.870000px;}
.yce{bottom:69.885000px;}
.ya5{bottom:70.230000px;}
.ya0{bottom:73.110000px;}
.y8d{bottom:73.830000px;}
.y8b{bottom:74.910000px;}
.ye5{bottom:75.630000px;}
.ye2{bottom:75.960000px;}
.ya9{bottom:75.990000px;}
.ybf{bottom:76.005000px;}
.y7b{bottom:78.876000px;}
.y3{bottom:79.236000px;}
.ye0{bottom:79.920000px;}
.yad{bottom:79.950000px;}
.yc1{bottom:79.965000px;}
.y9b{bottom:82.110000px;}
.y95{bottom:83.190000px;}
.y86{bottom:83.910000px;}
.yca{bottom:87.870000px;}
.yb7{bottom:90.030000px;}
.y9f{bottom:92.910000px;}
.y8a{bottom:94.710000px;}
.yb4{bottom:95.790000px;}
.ycf{bottom:95.805000px;}
.ya8{bottom:96.150000px;}
.ybe{bottom:96.165000px;}
.y9a{bottom:101.910000px;}
.y94{bottom:102.990000px;}
.y90{bottom:103.710000px;}
.yc8{bottom:107.670000px;}
.yc9{bottom:108.030000px;}
.y7a{bottom:112.392000px;}
.y2{bottom:112.716000px;}
.y9e{bottom:113.070000px;}
.y89{bottom:114.870000px;}
.yb3{bottom:115.950000px;}
.ybd{bottom:115.965000px;}
.ya7{bottom:115.995000px;}
.y99{bottom:122.070000px;}
.y8f{bottom:123.915000px;}
.yc7{bottom:127.860000px;}
.yd1{bottom:133.632000px;}
.y6b{bottom:135.036000px;}
.y2f{bottom:140.796000px;}
.y129{bottom:146.916000px;}
.y52{bottom:149.796000px;}
.y109{bottom:159.150000px;}
.y12e{bottom:162.030000px;}
.y2e{bottom:164.190000px;}
.y6a{bottom:170.670000px;}
.y128{bottom:171.030000px;}
.ya4{bottom:177.555000px;}
.y75{bottom:182.550000px;}
.y108{bottom:182.910000px;}
.y51{bottom:185.790000px;}
.y2d{bottom:186.150000px;}
.y127{bottom:194.835000px;}
.y69{bottom:206.715000px;}
.y107{bottom:207.075000px;}
.y2c{bottom:208.155000px;}
.ycd{bottom:212.145000px;}
.ydc{bottom:215.745000px;}
.y74{bottom:218.595000px;}
.y126{bottom:218.955000px;}
.y50{bottom:221.835000px;}
.y2b{bottom:230.115000px;}
.y106{bottom:230.835000px;}
.y68{bottom:242.715000px;}
.ydb{bottom:251.745000px;}
.y2a{bottom:252.075000px;}
.y12d{bottom:254.595000px;}
.y105{bottom:254.955000px;}
.y4f{bottom:257.475000px;}
.y73{bottom:266.475000px;}
.y125{bottom:266.835000px;}
.y29{bottom:274.035000px;}
.y67{bottom:278.715000px;}
.yda{bottom:287.790000px;}
.y124{bottom:290.595000px;}
.y4e{bottom:293.475000px;}
.y28{bottom:295.995000px;}
.y72{bottom:302.475000px;}
.y104{bottom:302.835000px;}
.y93{bottom:310.110000px;}
.y66{bottom:314.355000px;}
.y123{bottom:314.715000px;}
.y27{bottom:317.955000px;}
.yd9{bottom:323.790000px;}
.y103{bottom:326.625000px;}
.y4d{bottom:329.505000px;}
.y71{bottom:338.505000px;}
.y26{bottom:339.945000px;}
.ye6{bottom:343.950000px;}
.yc5{bottom:344.670000px;}
.y65{bottom:350.385000px;}
.y102{bottom:350.745000px;}
.y25{bottom:361.905000px;}
.y12c{bottom:362.265000px;}
.y122{bottom:362.625000px;}
.y4c{bottom:365.505000px;}
.y70{bottom:374.505000px;}
.y24{bottom:383.865000px;}
.y64{bottom:386.385000px;}
.y12b{bottom:398.265000px;}
.y101{bottom:398.625000px;}
.y4b{bottom:401.145000px;}
.y23{bottom:405.825000px;}
.y6f{bottom:410.145000px;}
.y121{bottom:410.505000px;}
.y63{bottom:422.385000px;}
.y22{bottom:427.785000px;}
.y120{bottom:434.265000px;}
.ye4{bottom:436.500000px;}
.y4a{bottom:437.145000px;}
.y6e{bottom:446.190000px;}
.y100{bottom:446.550000px;}
.y85{bottom:448.740000px;}
.y21{bottom:449.790000px;}
.y62{bottom:458.070000px;}
.y11f{bottom:458.430000px;}
.yff{bottom:470.310000px;}
.y20{bottom:471.750000px;}
.y49{bottom:473.190000px;}
.y6d{bottom:482.190000px;}
.yba{bottom:489.090000px;}
.y1f{bottom:493.710000px;}
.y61{bottom:494.070000px;}
.yfe{bottom:494.430000px;}
.y12a{bottom:505.950000px;}
.y11e{bottom:506.310000px;}
.y48{bottom:509.190000px;}
.y1e{bottom:515.670000px;}
.y6c{bottom:518.190000px;}
.y60{bottom:530.070000px;}
.y1d{bottom:537.630000px;}
.yfd{bottom:542.310000px;}
.y47{bottom:544.830000px;}
.y11d{bottom:554.190000px;}
.y78{bottom:558.510000px;}
.y1c{bottom:559.950000px;}
.y5f{bottom:566.070000px;}
.ydf{bottom:569.055000px;}
.y11c{bottom:577.980000px;}
.y46{bottom:580.860000px;}
.y1b{bottom:583.380000px;}
.y77{bottom:585.540000px;}
.y7f{bottom:589.215000px;}
.yfc{bottom:590.220000px;}
.y5e{bottom:601.740000px;}
.y11b{bottom:602.100000px;}
.y1a{bottom:603.900000px;}
.yfb{bottom:613.980000px;}
.y45{bottom:616.860000px;}
.yb1{bottom:621.615000px;}
.y19{bottom:623.700000px;}
.y11a{bottom:625.860000px;}
.y5d{bottom:637.740000px;}
.yfa{bottom:638.100000px;}
.y18{bottom:643.860000px;}
.y119{bottom:649.980000px;}
.y44{bottom:652.860000px;}
.yf9{bottom:661.860000px;}
.y17{bottom:671.940000px;}
.y5c{bottom:673.740000px;}
.yf8{bottom:685.980000px;}
.y43{bottom:687.420000px;}
.y118{bottom:697.860000px;}
.y16{bottom:699.690000px;}
.ydd{bottom:701.565000px;}
.y7e{bottom:702.285000px;}
.y42{bottom:709.410000px;}
.y5b{bottom:709.770000px;}
.y117{bottom:721.650000px;}
.y15{bottom:727.770000px;}
.y41{bottom:731.370000px;}
.yf7{bottom:733.890000px;}
.y7d{bottom:734.685000px;}
.y14{bottom:745.410000px;}
.y116{bottom:745.770000px;}
.y40{bottom:753.330000px;}
.y79{bottom:754.170000px;}
.yf6{bottom:757.650000px;}
.y13{bottom:765.210000px;}
.y115{bottom:769.530000px;}
.y3f{bottom:775.290000px;}
.y5a{bottom:781.410000px;}
.yf5{bottom:781.770000px;}
.y12{bottom:785.370000px;}
.y114{bottom:793.650000px;}
.y3e{bottom:797.250000px;}
.y11{bottom:805.170000px;}
.yf4{bottom:805.530000px;}
.y59{bottom:817.410000px;}
.y3d{bottom:819.210000px;}
.y10{bottom:825.375000px;}
.yf3{bottom:829.695000px;}
.y3c{bottom:841.215000px;}
.y113{bottom:841.575000px;}
.yf{bottom:853.455000px;}
.y3b{bottom:863.175000px;}
.y112{bottom:865.335000px;}
.yf2{bottom:877.575000px;}
.ye{bottom:881.175000px;}
.y3a{bottom:885.135000px;}
.y58{bottom:889.095000px;}
.y111{bottom:889.455000px;}
.yf1{bottom:901.335000px;}
.y39{bottom:907.095000px;}
.yd{bottom:911.055000px;}
.y110{bottom:913.215000px;}
.y57{bottom:925.095000px;}
.yf0{bottom:925.455000px;}
.y38{bottom:929.055000px;}
.yc{bottom:931.215000px;}
.y10f{bottom:937.335000px;}
.yef{bottom:949.215000px;}
.y37{bottom:951.015000px;}
.yb{bottom:952.125000px;}
.y56{bottom:961.125000px;}
.y36{bottom:973.005000px;}
.yee{bottom:973.365000px;}
.ya{bottom:976.245000px;}
.y10e{bottom:985.245000px;}
.y35{bottom:994.965000px;}
.y55{bottom:997.125000px;}
.y9{bottom:1000.005000px;}
.y10d{bottom:1009.005000px;}
.y34{bottom:1016.925000px;}
.yed{bottom:1021.245000px;}
.y8{bottom:1024.125000px;}
.y76{bottom:1024.485000px;}
.y54{bottom:1032.765000px;}
.y10c{bottom:1033.125000px;}
.y33{bottom:1038.885000px;}
.yec{bottom:1045.005000px;}
.y7{bottom:1047.885000px;}
.y10b{bottom:1056.885000px;}
.y32{bottom:1060.845000px;}
.y53{bottom:1068.765000px;}
.yeb{bottom:1069.125000px;}
.y6{bottom:1080.330000px;}
.y10a{bottom:1081.050000px;}
.y31{bottom:1082.850000px;}
.y30{bottom:1104.810000px;}
.y5{bottom:1108.770000px;}
.y1{bottom:1124.250000px;}
.h2{height:50.229844px;}
.h18{height:51.840000px;}
.ha{height:55.873125px;}
.h8{height:55.932188px;}
.h12{height:58.957113px;}
.hc{height:61.194375px;}
.h3{height:61.259062px;}
.h9{height:62.163910px;}
.h5{height:66.515625px;}
.h6{height:66.585938px;}
.h4{height:68.956875px;}
.hd{height:70.187039px;}
.h7{height:74.004654px;}
.hb{height:74.953125px;}
.h10{height:75.996000px;}
.h17{height:77.796000px;}
.h19{height:91.836000px;}
.h15{height:131.796000px;}
.h14{height:131.832000px;}
.h13{height:137.916000px;}
.h11{height:139.752000px;}
.h16{height:143.712000px;}
.hf{height:892.500000px;}
.he{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:95.040000px;}
.w6{width:126.756000px;}
.w7{width:233.355000px;}
.w9{width:337.065000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w5{width:1262.879981px;}
.w3{width:1262.880000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x42{left:7.920000px;}
.x47{left:9.000000px;}
.x4f{left:10.080000px;}
.x43{left:11.520000px;}
.x4a{left:12.600000px;}
.x3e{left:14.400000px;}
.x37{left:15.840000px;}
.x4c{left:17.280000px;}
.x46{left:19.080000px;}
.x57{left:20.160000px;}
.x39{left:21.270000px;}
.x44{left:23.400000px;}
.x4d{left:24.510000px;}
.x31{left:25.920000px;}
.x52{left:27.030000px;}
.x3d{left:28.440000px;}
.x32{left:29.880000px;}
.x53{left:32.040000px;}
.x45{left:33.840000px;}
.x5b{left:36.000000px;}
.x3a{left:38.910000px;}
.x4b{left:40.350000px;}
.x48{left:41.400000px;}
.x58{left:43.560000px;}
.x51{left:46.830000px;}
.x40{left:55.800000px;}
.x34{left:60.840000px;}
.x49{left:63.000000px;}
.x56{left:68.754000px;}
.x41{left:70.194000px;}
.x5c{left:77.034000px;}
.x59{left:78.834000px;}
.x54{left:83.514000px;}
.x30{left:84.995981px;}
.x3c{left:88.965000px;}
.x3f{left:98.634000px;}
.x4e{left:99.759000px;}
.x50{left:101.559000px;}
.x5e{left:102.639000px;}
.x5d{left:108.399000px;}
.x55{left:114.519000px;}
.x2c{left:126.035987px;}
.xc{left:127.475987px;}
.x8{left:128.555987px;}
.x28{left:134.315987px;}
.x6{left:136.115987px;}
.x5a{left:137.915981px;}
.x76{left:143.351987px;}
.x1b{left:169.274987px;}
.x10{left:172.514987px;}
.x7{left:178.994987px;}
.x20{left:180.434987px;}
.x3{left:181.514987px;}
.xd{left:191.234987px;}
.x6e{left:192.674987px;}
.x92{left:193.754987px;}
.x87{left:198.074987px;}
.x6f{left:199.154987px;}
.x88{left:206.354987px;}
.x81{left:210.674987px;}
.x33{left:213.195000px;}
.x66{left:220.034987px;}
.x29{left:222.194987px;}
.x86{left:223.634987px;}
.x7f{left:230.114987px;}
.x77{left:232.274987px;}
.x8c{left:235.184987px;}
.x70{left:236.984987px;}
.x82{left:244.544987px;}
.x2a{left:251.024987px;}
.x9{left:254.624987px;}
.x8e{left:255.704987px;}
.x67{left:257.864987px;}
.x80{left:263.984987px;}
.x78{left:270.104987px;}
.x8d{left:272.984987px;}
.x68{left:274.784987px;}
.x8a{left:278.384987px;}
.x89{left:279.824987px;}
.x91{left:283.064987px;}
.x90{left:285.224987px;}
.x6a{left:287.744987px;}
.x85{left:288.824987px;}
.x84{left:291.704987px;}
.x8f{left:293.504987px;}
.xa{left:300.704987px;}
.x83{left:301.784987px;}
.x8b{left:312.224987px;}
.x69{left:314.384987px;}
.x2e{left:323.744981px;}
.x6b{left:325.544987px;}
.x2b{left:354.749987px;}
.x21{left:357.989987px;}
.x1e{left:372.389987px;}
.x64{left:379.229987px;}
.x7e{left:409.829987px;}
.x1f{left:414.869987px;}
.x61{left:419.189987px;}
.x65{left:423.539987px;}
.x17{left:444.059987px;}
.x35{left:447.270000px;}
.x62{left:456.299987px;}
.x22{left:465.659987px;}
.x4{left:467.819987px;}
.x19{left:473.219987px;}
.x18{left:481.499987px;}
.x15{left:492.659987px;}
.x1a{left:517.889987px;}
.x16{left:530.489987px;}
.x71{left:533.729987px;}
.x5{left:558.209987px;}
.x63{left:567.569987px;}
.x72{left:571.169987px;}
.x36{left:574.740000px;}
.x6c{left:584.489987px;}
.x13{left:588.809987px;}
.x7a{left:592.049987px;}
.x24{left:593.489987px;}
.x6d{left:608.969987px;}
.x2f{left:610.019981px;}
.x73{left:611.894987px;}
.x7c{left:613.694987px;}
.x5f{left:619.814987px;}
.xb{left:622.694987px;}
.x14{left:626.654987px;}
.x7b{left:629.894987px;}
.x1c{left:647.174987px;}
.x74{left:649.694987px;}
.x7d{left:651.494987px;}
.x60{left:657.614987px;}
.x38{left:670.500000px;}
.x1d{left:684.974987px;}
.x25{left:692.534987px;}
.x11{left:712.364987px;}
.x26{left:713.804987px;}
.x23{left:739.724987px;}
.x12{left:750.524987px;}
.xe{left:765.284987px;}
.xf{left:766.364987px;}
.x79{left:781.484987px;}
.x2{left:790.484987px;}
.x75{left:793.724987px;}
.x3b{left:797.970000px;}
.x27{left:800.969987px;}
.x1{left:808.529987px;}
.x2d{left:1117.769981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.258667pt;}
.lsb{letter-spacing:-1.088000pt;}
.ls11{letter-spacing:-0.853333pt;}
.ls10{letter-spacing:-0.532267pt;}
.ls14{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.023040pt;}
.ls5{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.263467pt;}
.lsf{letter-spacing:0.291733pt;}
.ls6{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.322667pt;}
.ls12{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.512000pt;}
.lsc{letter-spacing:1.024000pt;}
.lse{letter-spacing:1.344000pt;}
.ls8{letter-spacing:1.472000pt;}
.wse{word-spacing:-64.000000pt;}
.ws7{word-spacing:-18.560000pt;}
.ws9{word-spacing:-18.484382pt;}
.ws5{word-spacing:-17.600000pt;}
.wsd{word-spacing:-17.536000pt;}
.ws6{word-spacing:-17.344000pt;}
.ws8{word-spacing:-17.152000pt;}
.wsf{word-spacing:-17.024000pt;}
.ws3{word-spacing:-16.455787pt;}
.ws0{word-spacing:-16.396587pt;}
.ws2{word-spacing:-16.133120pt;}
.wsb{word-spacing:-15.526881pt;}
.wsa{word-spacing:-15.021973pt;}
.ws1{word-spacing:-14.730240pt;}
.wsc{word-spacing:-14.197973pt;}
.ws4{word-spacing:0.000000pt;}
._4b{margin-left:-9.841493pt;}
._1{margin-left:-6.298453pt;}
._35{margin-left:-5.166507pt;}
._2{margin-left:-4.238507pt;}
._5{margin-left:-3.176960pt;}
._8{margin-left:-2.106027pt;}
._0{margin-left:-1.119573pt;}
._3{width:1.092693pt;}
._6{width:2.149973pt;}
._7{width:3.412480pt;}
._d{width:4.729173pt;}
._15{width:5.634133pt;}
._e{width:6.666240pt;}
._f{width:7.948800pt;}
._11{width:8.936107pt;}
._10{width:10.288640pt;}
._13{width:11.473920pt;}
._12{width:12.724480pt;}
._c{width:14.201600pt;}
._1f{width:15.287893pt;}
._21{width:16.228693pt;}
._14{width:17.186560pt;}
._45{width:18.161493pt;}
._b{width:19.194880pt;}
._9{width:20.313600pt;}
._a{width:21.241173pt;}
._22{width:22.493440pt;}
._1c{width:24.000000pt;}
._19{width:25.093120pt;}
._18{width:26.112000pt;}
._16{width:27.551573pt;}
._17{width:28.672000pt;}
._1a{width:30.420907pt;}
._1b{width:31.734187pt;}
._48{width:33.344000pt;}
._49{width:35.593387pt;}
._27{width:36.817493pt;}
._26{width:37.730133pt;}
._4a{width:39.232000pt;}
._39{width:40.384853pt;}
._20{width:41.274027pt;}
._34{width:42.407253pt;}
._2f{width:43.494400pt;}
._33{width:44.413867pt;}
._30{width:45.419093pt;}
._1e{width:50.880000pt;}
._1d{width:52.008960pt;}
._2e{width:56.663040pt;}
._2d{width:57.738240pt;}
._2c{width:58.822827pt;}
._44{width:62.387200pt;}
._28{width:63.481173pt;}
._23{width:65.264640pt;}
._40{width:73.329920pt;}
._41{width:74.251947pt;}
._38{width:76.715520pt;}
._31{width:79.555413pt;}
._32{width:80.693760pt;}
._2a{width:83.811840pt;}
._46{width:93.285973pt;}
._3e{width:94.295040pt;}
._3f{width:96.012373pt;}
._24{width:102.368427pt;}
._25{width:103.819947pt;}
._43{width:122.846720pt;}
._42{width:123.907413pt;}
._3d{width:132.949760pt;}
._3c{width:136.237227pt;}
._36{width:141.433173pt;}
._3b{width:144.342613pt;}
._3a{width:145.860267pt;}
._47{width:243.096747pt;}
._29{width:293.188267pt;}
._4{width:295.013547pt;}
._2b{width:297.678507pt;}
._37{width:370.890240pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:67.461249pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:3.520000pt;}
.yd8{bottom:11.520000pt;}
.ya3{bottom:11.840000pt;}
.yde{bottom:13.760000pt;}
.yb6{bottom:14.080000pt;}
.yac{bottom:14.106667pt;}
.y81{bottom:15.360000pt;}
.ye8{bottom:17.920000pt;}
.y98{bottom:20.480000pt;}
.yd3{bottom:20.482667pt;}
.y84{bottom:20.800000pt;}
.y91{bottom:21.466667pt;}
.ye9{bottom:26.560000pt;}
.yb9{bottom:26.880000pt;}
.yd6{bottom:29.122667pt;}
.ya2{bottom:29.440000pt;}
.y82{bottom:30.400000pt;}
.yd0{bottom:31.680000pt;}
.yea{bottom:31.706667pt;}
.yb5{bottom:32.000000pt;}
.yab{bottom:32.026667pt;}
.yc3{bottom:35.520000pt;}
.yb2{bottom:35.546667pt;}
.yaf{bottom:35.866667pt;}
.yd5{bottom:37.122667pt;}
.y9d{bottom:37.440000pt;}
.yd2{bottom:38.082667pt;}
.y97{bottom:38.400000pt;}
.y88{bottom:39.066667pt;}
.y83{bottom:39.680000pt;}
.ycc{bottom:42.266667pt;}
.ybc{bottom:44.480000pt;}
.ya6{bottom:44.506667pt;}
.y80{bottom:45.120000pt;}
.yd7{bottom:47.042667pt;}
.ya1{bottom:47.360000pt;}
.y8e{bottom:48.026667pt;}
.y8c{bottom:48.986667pt;}
.ye3{bottom:49.280000pt;}
.yc4{bottom:49.600000pt;}
.yb0{bottom:49.626667pt;}
.yc0{bottom:49.920000pt;}
.yaa{bottom:49.946667pt;}
.y7c{bottom:50.592000pt;}
.y4{bottom:50.880000pt;}
.ye1{bottom:53.120000pt;}
.ye7{bottom:53.146667pt;}
.yc2{bottom:53.440000pt;}
.yae{bottom:53.466667pt;}
.yd4{bottom:55.069333pt;}
.y9c{bottom:55.360000pt;}
.y96{bottom:56.000000pt;}
.y87{bottom:56.986667pt;}
.yc6{bottom:58.586667pt;}
.ycb{bottom:60.506667pt;}
.ybb{bottom:62.080000pt;}
.yb8{bottom:62.106667pt;}
.yce{bottom:62.120000pt;}
.ya5{bottom:62.426667pt;}
.ya0{bottom:64.986667pt;}
.y8d{bottom:65.626667pt;}
.y8b{bottom:66.586667pt;}
.ye5{bottom:67.226667pt;}
.ye2{bottom:67.520000pt;}
.ya9{bottom:67.546667pt;}
.ybf{bottom:67.560000pt;}
.y7b{bottom:70.112000pt;}
.y3{bottom:70.432000pt;}
.ye0{bottom:71.040000pt;}
.yad{bottom:71.066667pt;}
.yc1{bottom:71.080000pt;}
.y9b{bottom:72.986667pt;}
.y95{bottom:73.946667pt;}
.y86{bottom:74.586667pt;}
.yca{bottom:78.106667pt;}
.yb7{bottom:80.026667pt;}
.y9f{bottom:82.586667pt;}
.y8a{bottom:84.186667pt;}
.yb4{bottom:85.146667pt;}
.ycf{bottom:85.160000pt;}
.ya8{bottom:85.466667pt;}
.ybe{bottom:85.480000pt;}
.y9a{bottom:90.586667pt;}
.y94{bottom:91.546667pt;}
.y90{bottom:92.186667pt;}
.yc8{bottom:95.706667pt;}
.yc9{bottom:96.026667pt;}
.y7a{bottom:99.904000pt;}
.y2{bottom:100.192000pt;}
.y9e{bottom:100.506667pt;}
.y89{bottom:102.106667pt;}
.yb3{bottom:103.066667pt;}
.ybd{bottom:103.080000pt;}
.ya7{bottom:103.106667pt;}
.y99{bottom:108.506667pt;}
.y8f{bottom:110.146667pt;}
.yc7{bottom:113.653333pt;}
.yd1{bottom:118.784000pt;}
.y6b{bottom:120.032000pt;}
.y2f{bottom:125.152000pt;}
.y129{bottom:130.592000pt;}
.y52{bottom:133.152000pt;}
.y109{bottom:141.466667pt;}
.y12e{bottom:144.026667pt;}
.y2e{bottom:145.946667pt;}
.y6a{bottom:151.706667pt;}
.y128{bottom:152.026667pt;}
.ya4{bottom:157.826667pt;}
.y75{bottom:162.266667pt;}
.y108{bottom:162.586667pt;}
.y51{bottom:165.146667pt;}
.y2d{bottom:165.466667pt;}
.y127{bottom:173.186667pt;}
.y69{bottom:183.746667pt;}
.y107{bottom:184.066667pt;}
.y2c{bottom:185.026667pt;}
.ycd{bottom:188.573333pt;}
.ydc{bottom:191.773333pt;}
.y74{bottom:194.306667pt;}
.y126{bottom:194.626667pt;}
.y50{bottom:197.186667pt;}
.y2b{bottom:204.546667pt;}
.y106{bottom:205.186667pt;}
.y68{bottom:215.746667pt;}
.ydb{bottom:223.773333pt;}
.y2a{bottom:224.066667pt;}
.y12d{bottom:226.306667pt;}
.y105{bottom:226.626667pt;}
.y4f{bottom:228.866667pt;}
.y73{bottom:236.866667pt;}
.y125{bottom:237.186667pt;}
.y29{bottom:243.586667pt;}
.y67{bottom:247.746667pt;}
.yda{bottom:255.813333pt;}
.y124{bottom:258.306667pt;}
.y4e{bottom:260.866667pt;}
.y28{bottom:263.106667pt;}
.y72{bottom:268.866667pt;}
.y104{bottom:269.186667pt;}
.y93{bottom:275.653333pt;}
.y66{bottom:279.426667pt;}
.y123{bottom:279.746667pt;}
.y27{bottom:282.626667pt;}
.yd9{bottom:287.813333pt;}
.y103{bottom:290.333333pt;}
.y4d{bottom:292.893333pt;}
.y71{bottom:300.893333pt;}
.y26{bottom:302.173333pt;}
.ye6{bottom:305.733333pt;}
.yc5{bottom:306.373333pt;}
.y65{bottom:311.453333pt;}
.y102{bottom:311.773333pt;}
.y25{bottom:321.693333pt;}
.y12c{bottom:322.013333pt;}
.y122{bottom:322.333333pt;}
.y4c{bottom:324.893333pt;}
.y70{bottom:332.893333pt;}
.y24{bottom:341.213333pt;}
.y64{bottom:343.453333pt;}
.y12b{bottom:354.013333pt;}
.y101{bottom:354.333333pt;}
.y4b{bottom:356.573333pt;}
.y23{bottom:360.733333pt;}
.y6f{bottom:364.573333pt;}
.y121{bottom:364.893333pt;}
.y63{bottom:375.453333pt;}
.y22{bottom:380.253333pt;}
.y120{bottom:386.013333pt;}
.ye4{bottom:388.000000pt;}
.y4a{bottom:388.573333pt;}
.y6e{bottom:396.613333pt;}
.y100{bottom:396.933333pt;}
.y85{bottom:398.880000pt;}
.y21{bottom:399.813333pt;}
.y62{bottom:407.173333pt;}
.y11f{bottom:407.493333pt;}
.yff{bottom:418.053333pt;}
.y20{bottom:419.333333pt;}
.y49{bottom:420.613333pt;}
.y6d{bottom:428.613333pt;}
.yba{bottom:434.746667pt;}
.y1f{bottom:438.853333pt;}
.y61{bottom:439.173333pt;}
.yfe{bottom:439.493333pt;}
.y12a{bottom:449.733333pt;}
.y11e{bottom:450.053333pt;}
.y48{bottom:452.613333pt;}
.y1e{bottom:458.373333pt;}
.y6c{bottom:460.613333pt;}
.y60{bottom:471.173333pt;}
.y1d{bottom:477.893333pt;}
.yfd{bottom:482.053333pt;}
.y47{bottom:484.293333pt;}
.y11d{bottom:492.613333pt;}
.y78{bottom:496.453333pt;}
.y1c{bottom:497.733333pt;}
.y5f{bottom:503.173333pt;}
.ydf{bottom:505.826667pt;}
.y11c{bottom:513.760000pt;}
.y46{bottom:516.320000pt;}
.y1b{bottom:518.560000pt;}
.y77{bottom:520.480000pt;}
.y7f{bottom:523.746667pt;}
.yfc{bottom:524.640000pt;}
.y5e{bottom:534.880000pt;}
.y11b{bottom:535.200000pt;}
.y1a{bottom:536.800000pt;}
.yfb{bottom:545.760000pt;}
.y45{bottom:548.320000pt;}
.yb1{bottom:552.546667pt;}
.y19{bottom:554.400000pt;}
.y11a{bottom:556.320000pt;}
.y5d{bottom:566.880000pt;}
.yfa{bottom:567.200000pt;}
.y18{bottom:572.320000pt;}
.y119{bottom:577.760000pt;}
.y44{bottom:580.320000pt;}
.yf9{bottom:588.320000pt;}
.y17{bottom:597.280000pt;}
.y5c{bottom:598.880000pt;}
.yf8{bottom:609.760000pt;}
.y43{bottom:611.040000pt;}
.y118{bottom:620.320000pt;}
.y16{bottom:621.946667pt;}
.ydd{bottom:623.613333pt;}
.y7e{bottom:624.253333pt;}
.y42{bottom:630.586667pt;}
.y5b{bottom:630.906667pt;}
.y117{bottom:641.466667pt;}
.y15{bottom:646.906667pt;}
.y41{bottom:650.106667pt;}
.yf7{bottom:652.346667pt;}
.y7d{bottom:653.053333pt;}
.y14{bottom:662.586667pt;}
.y116{bottom:662.906667pt;}
.y40{bottom:669.626667pt;}
.y79{bottom:670.373333pt;}
.yf6{bottom:673.466667pt;}
.y13{bottom:680.186667pt;}
.y115{bottom:684.026667pt;}
.y3f{bottom:689.146667pt;}
.y5a{bottom:694.586667pt;}
.yf5{bottom:694.906667pt;}
.y12{bottom:698.106667pt;}
.y114{bottom:705.466667pt;}
.y3e{bottom:708.666667pt;}
.y11{bottom:715.706667pt;}
.yf4{bottom:716.026667pt;}
.y59{bottom:726.586667pt;}
.y3d{bottom:728.186667pt;}
.y10{bottom:733.666667pt;}
.yf3{bottom:737.506667pt;}
.y3c{bottom:747.746667pt;}
.y113{bottom:748.066667pt;}
.yf{bottom:758.626667pt;}
.y3b{bottom:767.266667pt;}
.y112{bottom:769.186667pt;}
.yf2{bottom:780.066667pt;}
.ye{bottom:783.266667pt;}
.y3a{bottom:786.786667pt;}
.y58{bottom:790.306667pt;}
.y111{bottom:790.626667pt;}
.yf1{bottom:801.186667pt;}
.y39{bottom:806.306667pt;}
.yd{bottom:809.826667pt;}
.y110{bottom:811.746667pt;}
.y57{bottom:822.306667pt;}
.yf0{bottom:822.626667pt;}
.y38{bottom:825.826667pt;}
.yc{bottom:827.746667pt;}
.y10f{bottom:833.186667pt;}
.yef{bottom:843.746667pt;}
.y37{bottom:845.346667pt;}
.yb{bottom:846.333333pt;}
.y56{bottom:854.333333pt;}
.y36{bottom:864.893333pt;}
.yee{bottom:865.213333pt;}
.ya{bottom:867.773333pt;}
.y10e{bottom:875.773333pt;}
.y35{bottom:884.413333pt;}
.y55{bottom:886.333333pt;}
.y9{bottom:888.893333pt;}
.y10d{bottom:896.893333pt;}
.y34{bottom:903.933333pt;}
.yed{bottom:907.773333pt;}
.y8{bottom:910.333333pt;}
.y76{bottom:910.653333pt;}
.y54{bottom:918.013333pt;}
.y10c{bottom:918.333333pt;}
.y33{bottom:923.453333pt;}
.yec{bottom:928.893333pt;}
.y7{bottom:931.453333pt;}
.y10b{bottom:939.453333pt;}
.y32{bottom:942.973333pt;}
.y53{bottom:950.013333pt;}
.yeb{bottom:950.333333pt;}
.y6{bottom:960.293333pt;}
.y10a{bottom:960.933333pt;}
.y31{bottom:962.533333pt;}
.y30{bottom:982.053333pt;}
.y5{bottom:985.573333pt;}
.y1{bottom:999.333333pt;}
.h2{height:44.648750pt;}
.h18{height:46.080000pt;}
.ha{height:49.665000pt;}
.h8{height:49.717500pt;}
.h12{height:52.406322pt;}
.hc{height:54.395000pt;}
.h3{height:54.452500pt;}
.h9{height:55.256809pt;}
.h5{height:59.125000pt;}
.h6{height:59.187500pt;}
.h4{height:61.295000pt;}
.hd{height:62.388479pt;}
.h7{height:65.781915pt;}
.hb{height:66.625000pt;}
.h10{height:67.552000pt;}
.h17{height:69.152000pt;}
.h19{height:81.632000pt;}
.h15{height:117.152000pt;}
.h14{height:117.184000pt;}
.h13{height:122.592000pt;}
.h11{height:124.224000pt;}
.h16{height:127.744000pt;}
.hf{height:793.333333pt;}
.he{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:84.480000pt;}
.w6{width:112.672000pt;}
.w7{width:207.426667pt;}
.w9{width:299.613333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w5{width:1122.559983pt;}
.w3{width:1122.560000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x42{left:7.040000pt;}
.x47{left:8.000000pt;}
.x4f{left:8.960000pt;}
.x43{left:10.240000pt;}
.x4a{left:11.200000pt;}
.x3e{left:12.800000pt;}
.x37{left:14.080000pt;}
.x4c{left:15.360000pt;}
.x46{left:16.960000pt;}
.x57{left:17.920000pt;}
.x39{left:18.906667pt;}
.x44{left:20.800000pt;}
.x4d{left:21.786667pt;}
.x31{left:23.040000pt;}
.x52{left:24.026667pt;}
.x3d{left:25.280000pt;}
.x32{left:26.560000pt;}
.x53{left:28.480000pt;}
.x45{left:30.080000pt;}
.x5b{left:32.000000pt;}
.x3a{left:34.586667pt;}
.x4b{left:35.866667pt;}
.x48{left:36.800000pt;}
.x58{left:38.720000pt;}
.x51{left:41.626667pt;}
.x40{left:49.600000pt;}
.x34{left:54.080000pt;}
.x49{left:56.000000pt;}
.x56{left:61.114667pt;}
.x41{left:62.394667pt;}
.x5c{left:68.474667pt;}
.x59{left:70.074667pt;}
.x54{left:74.234667pt;}
.x30{left:75.551983pt;}
.x3c{left:79.080000pt;}
.x3f{left:87.674667pt;}
.x4e{left:88.674667pt;}
.x50{left:90.274667pt;}
.x5e{left:91.234667pt;}
.x5d{left:96.354667pt;}
.x55{left:101.794667pt;}
.x2c{left:112.031988pt;}
.xc{left:113.311988pt;}
.x8{left:114.271988pt;}
.x28{left:119.391988pt;}
.x6{left:120.991988pt;}
.x5a{left:122.591983pt;}
.x76{left:127.423988pt;}
.x1b{left:150.466655pt;}
.x10{left:153.346655pt;}
.x7{left:159.106655pt;}
.x20{left:160.386655pt;}
.x3{left:161.346655pt;}
.xd{left:169.986655pt;}
.x6e{left:171.266655pt;}
.x92{left:172.226655pt;}
.x87{left:176.066655pt;}
.x6f{left:177.026655pt;}
.x88{left:183.426655pt;}
.x81{left:187.266655pt;}
.x33{left:189.506667pt;}
.x66{left:195.586655pt;}
.x29{left:197.506655pt;}
.x86{left:198.786655pt;}
.x7f{left:204.546655pt;}
.x77{left:206.466655pt;}
.x8c{left:209.053322pt;}
.x70{left:210.653322pt;}
.x82{left:217.373322pt;}
.x2a{left:223.133322pt;}
.x9{left:226.333322pt;}
.x8e{left:227.293322pt;}
.x67{left:229.213322pt;}
.x80{left:234.653322pt;}
.x78{left:240.093322pt;}
.x8d{left:242.653322pt;}
.x68{left:244.253322pt;}
.x8a{left:247.453322pt;}
.x89{left:248.733322pt;}
.x91{left:251.613322pt;}
.x90{left:253.533322pt;}
.x6a{left:255.773322pt;}
.x85{left:256.733322pt;}
.x84{left:259.293322pt;}
.x8f{left:260.893322pt;}
.xa{left:267.293322pt;}
.x83{left:268.253322pt;}
.x8b{left:277.533322pt;}
.x69{left:279.453322pt;}
.x2e{left:287.773317pt;}
.x6b{left:289.373322pt;}
.x2b{left:315.333322pt;}
.x21{left:318.213322pt;}
.x1e{left:331.013322pt;}
.x64{left:337.093322pt;}
.x7e{left:364.293322pt;}
.x1f{left:368.773322pt;}
.x61{left:372.613322pt;}
.x65{left:376.479988pt;}
.x17{left:394.719988pt;}
.x35{left:397.573333pt;}
.x62{left:405.599988pt;}
.x22{left:413.919988pt;}
.x4{left:415.839988pt;}
.x19{left:420.639988pt;}
.x18{left:427.999988pt;}
.x15{left:437.919988pt;}
.x1a{left:460.346655pt;}
.x16{left:471.546655pt;}
.x71{left:474.426655pt;}
.x5{left:496.186655pt;}
.x63{left:504.506655pt;}
.x72{left:507.706655pt;}
.x36{left:510.880000pt;}
.x6c{left:519.546655pt;}
.x13{left:523.386655pt;}
.x7a{left:526.266655pt;}
.x24{left:527.546655pt;}
.x6d{left:541.306655pt;}
.x2f{left:542.239983pt;}
.x73{left:543.906655pt;}
.x7c{left:545.506655pt;}
.x5f{left:550.946655pt;}
.xb{left:553.506655pt;}
.x14{left:557.026655pt;}
.x7b{left:559.906655pt;}
.x1c{left:575.266655pt;}
.x74{left:577.506655pt;}
.x7d{left:579.106655pt;}
.x60{left:584.546655pt;}
.x38{left:596.000000pt;}
.x1d{left:608.866655pt;}
.x25{left:615.586655pt;}
.x11{left:633.213322pt;}
.x26{left:634.493322pt;}
.x23{left:657.533322pt;}
.x12{left:667.133322pt;}
.xe{left:680.253322pt;}
.xf{left:681.213322pt;}
.x79{left:694.653322pt;}
.x2{left:702.653322pt;}
.x75{left:705.533322pt;}
.x3b{left:709.306667pt;}
.x27{left:711.973322pt;}
.x1{left:718.693322pt;}
.x2d{left:993.573317pt;}
}




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