
    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_961509bfacef0ffbf44ea26b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5d621c1073f27cebe7956a37.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.201172;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_d4e2299403c6b4a891fc3058.woff2')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_2d4615cbcd61036cdadb56d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_bec7b19ed8256fa61036e034.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4dd892d9ba1c7d6501861edd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_6c180b36e1554d0bcceeae6b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_881826290309d2952e673739.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_f95ae6d46567171d12adabbc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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_a7511bcf91aaa7abe0da4577.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f913903bc2da187528cb884a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.976562;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_242c06ab63ffc42edbc801af.woff2')format("woff");}.fff{font-family:fff;line-height:0.976562;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:-27.360000px;}
.v3{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v5{vertical-align:54.840000px;}
.v4{vertical-align:63.360000px;}
.ls9{letter-spacing:-1.902000px;}
.ls20{letter-spacing:-1.896000px;}
.ls5{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.206000px;}
.ls11{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-1.068000px;}
.lsd{letter-spacing:-0.966000px;}
.lsb{letter-spacing:-0.768000px;}
.lse{letter-spacing:-0.732000px;}
.ls10{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.463800px;}
.ls1e{letter-spacing:-0.457800px;}
.ls15{letter-spacing:-0.454800px;}
.ls7{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.305400px;}
.ls4{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000003px;}
.ls23{letter-spacing:0.152400px;}
.ls27{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.429000px;}
.ls1{letter-spacing:0.535680px;}
.ls0{letter-spacing:0.593280px;}
.lsf{letter-spacing:0.708000px;}
.ls2{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.984000px;}
.ls12{letter-spacing:2.160000px;}
.ls1f{letter-spacing:7.920000px;}
.ls1b{letter-spacing:9.360000px;}
.ls13{letter-spacing:13.680000px;}
.ls22{letter-spacing:16.560000px;}
.ls1d{letter-spacing:18.000000px;}
.ls17{letter-spacing:26.173440px;}
.ls25{letter-spacing:40.625280px;}
.ls3{letter-spacing:40.637280px;}
.ls21{letter-spacing:49.277280px;}
.ls18{letter-spacing:63.838560px;}
.ls24{letter-spacing:94.061280px;}
.ls1c{letter-spacing:144.461280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-77.760000px;}
.ws14{word-spacing:-60.480000px;}
.ws18{word-spacing:-17.544000px;}
.ws17{word-spacing:-16.712400px;}
.wsd{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.488000px;}
.ws15{word-spacing:-16.254600px;}
.ws16{word-spacing:-16.102200px;}
.ws3{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.768000px;}
.ws10{word-spacing:-15.399240px;}
.ws19{word-spacing:-15.120000px;}
.ws11{word-spacing:-14.515440px;}
.ws12{word-spacing:-14.506440px;}
.ws0{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.074720px;}
.ws5{word-spacing:-13.068240px;}
.wsb{word-spacing:-12.366720px;}
.ws1{word-spacing:-12.240000px;}
.wsa{word-spacing:-11.634720px;}
.ws7{word-spacing:-11.598720px;}
.ws9{word-spacing:-11.400720px;}
.ws6{word-spacing:-11.298720px;}
.ws8{word-spacing:-11.160720px;}
.wse{word-spacing:-10.440000px;}
.wsf{word-spacing:0.000000px;}
._37{margin-left:-9.774720px;}
._18{margin-left:-4.506240px;}
._1{margin-left:-3.120000px;}
._0{margin-left:-1.422720px;}
._2{width:1.134720px;}
._5{width:2.145120px;}
._e{width:3.378240px;}
._f{width:4.447680px;}
._11{width:5.643840px;}
._a{width:7.163520px;}
._1a{width:8.207040px;}
._9{width:9.239040px;}
._b{width:10.246080px;}
._10{width:11.466240px;}
._8{width:13.510080px;}
._7{width:15.200640px;}
._6{width:17.686080px;}
._1d{width:18.752160px;}
._19{width:20.027520px;}
._14{width:21.726720px;}
._15{width:22.912800px;}
._d{width:24.313440px;}
._c{width:25.865280px;}
._38{width:27.178560px;}
._35{width:28.912320px;}
._12{width:30.470400px;}
._13{width:31.587840px;}
._36{width:33.482880px;}
._17{width:34.940160px;}
._16{width:35.942880px;}
._20{width:38.283840px;}
._4{width:39.372480px;}
._21{width:48.320640px;}
._24{width:52.096320px;}
._30{width:53.323200px;}
._3{width:58.714560px;}
._1f{width:65.741760px;}
._2f{width:69.022080px;}
._2d{width:77.964480px;}
._2c{width:79.519680px;}
._26{width:96.909120px;}
._28{width:100.186560px;}
._1b{width:119.430720px;}
._22{width:129.631680px;}
._23{width:167.883840px;}
._1c{width:171.028800px;}
._2a{width:196.764480px;}
._25{width:198.288000px;}
._34{width:200.473920px;}
._31{width:234.345600px;}
._27{width:236.309760px;}
._33{width:259.824960px;}
._2e{width:264.098880px;}
._29{width:279.201600px;}
._2b{width:304.404480px;}
._32{width:312.287040px;}
._1e{width:410.423040px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs4{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs5{font-size:83.520000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:3.600000px;}
.yba{bottom:3.645000px;}
.y2{bottom:4.320000px;}
.y30{bottom:5.040000px;}
.ya9{bottom:22.320000px;}
.ydf{bottom:22.365000px;}
.yab{bottom:22.680000px;}
.ye3{bottom:22.710000px;}
.yb9{bottom:22.725000px;}
.y1{bottom:82.116000px;}
.y3{bottom:97.596000px;}
.y171{bottom:144.756000px;}
.y11d{bottom:146.556000px;}
.y59{bottom:147.636000px;}
.y154{bottom:150.870000px;}
.y80{bottom:157.350000px;}
.yc4{bottom:162.390000px;}
.y101{bottom:162.750000px;}
.y170{bottom:163.830000px;}
.y139{bottom:164.190000px;}
.y58{bottom:166.710000px;}
.y2e{bottom:167.430000px;}
.y7f{bottom:176.430000px;}
.y188{bottom:178.590000px;}
.ya5{bottom:179.670000px;}
.yc3{bottom:181.470000px;}
.y100{bottom:182.550000px;}
.y16f{bottom:182.910000px;}
.y138{bottom:183.270000px;}
.y2d{bottom:186.510000px;}
.y11c{bottom:186.870000px;}
.y153{bottom:190.830000px;}
.y7e{bottom:195.510000px;}
.ydd{bottom:197.310000px;}
.y187{bottom:197.715000px;}
.ya4{bottom:198.795000px;}
.yc2{bottom:200.235000px;}
.yff{bottom:202.395000px;}
.y2c{bottom:205.635000px;}
.y11b{bottom:205.995000px;}
.y57{bottom:206.715000px;}
.y152{bottom:209.955000px;}
.y7d{bottom:214.635000px;}
.ydc{bottom:216.435000px;}
.ya3{bottom:217.875000px;}
.yc1{bottom:219.315000px;}
.yfe{bottom:222.195000px;}
.y16e{bottom:222.915000px;}
.y2b{bottom:224.355000px;}
.y151{bottom:229.035000px;}
.ydb{bottom:235.515000px;}
.ya2{bottom:236.595000px;}
.y186{bottom:237.675000px;}
.yc0{bottom:238.395000px;}
.y137{bottom:239.475000px;}
.y11a{bottom:243.075000px;}
.y2a{bottom:243.435000px;}
.y56{bottom:247.395000px;}
.ybf{bottom:257.115000px;}
.y136{bottom:259.275000px;}
.y29{bottom:262.515000px;}
.y16d{bottom:262.875000px;}
.y7c{bottom:263.955000px;}
.y150{bottom:268.635000px;}
.yda{bottom:272.595000px;}
.ya1{bottom:276.555000px;}
.y185{bottom:277.635000px;}
.y135{bottom:278.715000px;}
.y28{bottom:281.235000px;}
.y16c{bottom:281.955000px;}
.y119{bottom:282.315000px;}
.yfd{bottom:285.195000px;}
.y55{bottom:287.715000px;}
.ybe{bottom:294.195000px;}
.ya0{bottom:295.635000px;}
.y134{bottom:298.515000px;}
.y27{bottom:300.315000px;}
.y16b{bottom:300.675000px;}
.y118{bottom:302.115000px;}
.yfc{bottom:304.275000px;}
.y54{bottom:306.795000px;}
.yd9{bottom:311.115000px;}
.y9f{bottom:314.715000px;}
.y7b{bottom:316.155000px;}
.y184{bottom:317.595000px;}
.y26{bottom:319.395000px;}
.y16a{bottom:319.755000px;}
.y53{bottom:325.905000px;}
.y14f{bottom:327.705000px;}
.y7a{bottom:329.865000px;}
.yd8{bottom:330.945000px;}
.ybd{bottom:333.105000px;}
.y9e{bottom:333.465000px;}
.y183{bottom:336.705000px;}
.y133{bottom:342.825000px;}
.yfb{bottom:344.265000px;}
.y117{bottom:346.425000px;}
.y14e{bottom:346.785000px;}
.y182{bottom:355.785000px;}
.y25{bottom:359.385000px;}
.y169{bottom:359.745000px;}
.y52{bottom:365.865000px;}
.ybc{bottom:371.625000px;}
.y9d{bottom:374.145000px;}
.y24{bottom:378.465000px;}
.y132{bottom:382.785000px;}
.yfa{bottom:384.225000px;}
.y51{bottom:384.945000px;}
.y116{bottom:386.385000px;}
.y79{bottom:387.105000px;}
.yd7{bottom:394.305000px;}
.y181{bottom:395.385000px;}
.y168{bottom:399.705000px;}
.y50{bottom:403.665000px;}
.y14d{bottom:405.825000px;}
.ybb{bottom:410.505000px;}
.y9c{bottom:414.465000px;}
.y23{bottom:418.065000px;}
.y167{bottom:418.785000px;}
.y4f{bottom:422.745000px;}
.yf9{bottom:424.185000px;}
.y14c{bottom:424.905000px;}
.y115{bottom:426.345000px;}
.y78{bottom:427.065000px;}
.y9b{bottom:433.545000px;}
.yd6{bottom:434.265000px;}
.y22{bottom:437.145000px;}
.y166{bottom:437.505000px;}
.y4e{bottom:441.825000px;}
.yf8{bottom:443.265000px;}
.y14b{bottom:443.625000px;}
.y77{bottom:446.145000px;}
.yb8{bottom:449.025000px;}
.y9a{bottom:452.670000px;}
.y180{bottom:454.470000px;}
.y21{bottom:456.270000px;}
.y165{bottom:456.630000px;}
.y4d{bottom:460.590000px;}
.yf7{bottom:462.390000px;}
.y114{bottom:463.470000px;}
.y76{bottom:465.270000px;}
.y99{bottom:471.750000px;}
.y17f{bottom:473.550000px;}
.yd5{bottom:474.270000px;}
.y20{bottom:475.350000px;}
.y131{bottom:478.950000px;}
.yf6{bottom:481.470000px;}
.y113{bottom:483.270000px;}
.y14a{bottom:483.630000px;}
.y75{bottom:483.990000px;}
.y98{bottom:490.830000px;}
.yd4{bottom:493.350000px;}
.y1f{bottom:494.070000px;}
.y164{bottom:496.590000px;}
.y130{bottom:498.750000px;}
.yf5{bottom:500.190000px;}
.y4c{bottom:500.550000px;}
.y149{bottom:502.710000px;}
.y74{bottom:503.070000px;}
.yd3{bottom:512.070000px;}
.yb7{bottom:512.430000px;}
.y1e{bottom:513.150000px;}
.y17e{bottom:513.510000px;}
.y12f{bottom:518.550000px;}
.yf4{bottom:519.270000px;}
.y148{bottom:521.790000px;}
.y73{bottom:522.150000px;}
.y112{bottom:522.870000px;}
.y97{bottom:530.430000px;}
.yb6{bottom:531.510000px;}
.y1d{bottom:532.230000px;}
.y163{bottom:536.550000px;}
.yf3{bottom:538.350000px;}
.y4b{bottom:540.510000px;}
.yd2{bottom:549.150000px;}
.y96{bottom:549.510000px;}
.y1c{bottom:551.310000px;}
.y17d{bottom:553.470000px;}
.y162{bottom:555.630000px;}
.yf2{bottom:557.070000px;}
.y4a{bottom:559.590000px;}
.y72{bottom:561.750000px;}
.y111{bottom:567.150000px;}
.y95{bottom:568.590000px;}
.y1b{bottom:570.030000px;}
.yb5{bottom:571.470000px;}
.y17c{bottom:572.550000px;}
.y161{bottom:574.710000px;}
.y49{bottom:578.700000px;}
.y147{bottom:580.860000px;}
.y12e{bottom:582.300000px;}
.y193{bottom:587.340000px;}
.y94{bottom:587.700000px;}
.yd1{bottom:588.060000px;}
.y1a{bottom:589.140000px;}
.y17b{bottom:591.660000px;}
.y160{bottom:593.460000px;}
.yf1{bottom:597.060000px;}
.y48{bottom:597.780000px;}
.y146{bottom:599.580000px;}
.y71{bottom:601.740000px;}
.y93{bottom:606.420000px;}
.y110{bottom:607.140000px;}
.y17a{bottom:610.380000px;}
.yb4{bottom:611.460000px;}
.yf0{bottom:616.140000px;}
.y70{bottom:620.820000px;}
.y12d{bottom:622.260000px;}
.y92{bottom:625.500000px;}
.y10f{bottom:626.220000px;}
.yd0{bottom:626.580000px;}
.y19{bottom:629.100000px;}
.yb3{bottom:630.540000px;}
.y15f{bottom:633.420000px;}
.yef{bottom:635.220000px;}
.y47{bottom:637.380000px;}
.y145{bottom:639.540000px;}
.y6f{bottom:639.900000px;}
.y91{bottom:644.580000px;}
.y192{bottom:646.380000px;}
.yb2{bottom:649.260000px;}
.y179{bottom:650.340000px;}
.yee{bottom:653.940000px;}
.y46{bottom:656.460000px;}
.y6e{bottom:658.980000px;}
.y12c{bottom:662.220000px;}
.y10e{bottom:663.300000px;}
.yb1{bottom:668.340000px;}
.y18{bottom:669.060000px;}
.yed{bottom:673.020000px;}
.y15e{bottom:673.380000px;}
.y45{bottom:675.540000px;}
.y6d{bottom:678.060000px;}
.y144{bottom:679.500000px;}
.y12b{bottom:681.660000px;}
.y10d{bottom:682.740000px;}
.y90{bottom:684.540000px;}
.y191{bottom:686.340000px;}
.yb0{bottom:687.420000px;}
.ycf{bottom:689.940000px;}
.y178{bottom:690.300000px;}
.yec{bottom:692.100000px;}
.y15d{bottom:692.460000px;}
.y44{bottom:694.620000px;}
.y6c{bottom:696.780000px;}
.y143{bottom:698.580000px;}
.y17{bottom:701.490000px;}
.y10c{bottom:702.570000px;}
.y177{bottom:709.410000px;}
.y15c{bottom:711.570000px;}
.y6b{bottom:715.890000px;}
.y142{bottom:717.690000px;}
.y12a{bottom:718.770000px;}
.y16{bottom:722.010000px;}
.y10b{bottom:722.370000px;}
.y8f{bottom:724.530000px;}
.y190{bottom:726.330000px;}
.y176{bottom:728.490000px;}
.yce{bottom:729.930000px;}
.y15b{bottom:730.650000px;}
.yeb{bottom:732.090000px;}
.y43{bottom:734.250000px;}
.y6a{bottom:734.970000px;}
.y141{bottom:736.410000px;}
.y129{bottom:738.210000px;}
.y15{bottom:742.530000px;}
.y42{bottom:753.330000px;}
.y69{bottom:753.690000px;}
.y140{bottom:755.490000px;}
.y128{bottom:758.010000px;}
.y14{bottom:761.610000px;}
.yaf{bottom:763.050000px;}
.y8e{bottom:764.490000px;}
.y18f{bottom:766.290000px;}
.y10a{bottom:766.650000px;}
.y175{bottom:768.450000px;}
.ycd{bottom:769.890000px;}
.y15a{bottom:770.250000px;}
.yea{bottom:772.050000px;}
.y41{bottom:772.410000px;}
.y13f{bottom:774.570000px;}
.y127{bottom:777.810000px;}
.y13{bottom:780.330000px;}
.yae{bottom:782.850000px;}
.y8d{bottom:783.570000px;}
.y18e{bottom:785.370000px;}
.ycc{bottom:788.970000px;}
.ye9{bottom:791.130000px;}
.y40{bottom:791.490000px;}
.y68{bottom:793.650000px;}
.y126{bottom:797.610000px;}
.y12{bottom:801.570000px;}
.yad{bottom:802.650000px;}
.y109{bottom:806.610000px;}
.ycb{bottom:808.050000px;}
.y174{bottom:808.410000px;}
.ye8{bottom:809.850000px;}
.y159{bottom:810.210000px;}
.y13e{bottom:812.370000px;}
.y8c{bottom:823.170000px;}
.y18d{bottom:825.330000px;}
.yca{bottom:826.815000px;}
.y11{bottom:827.535000px;}
.ye7{bottom:828.975000px;}
.y158{bottom:829.335000px;}
.y3f{bottom:831.495000px;}
.y67{bottom:834.015000px;}
.yac{bottom:841.575000px;}
.y125{bottom:841.935000px;}
.y8b{bottom:842.295000px;}
.yc9{bottom:845.895000px;}
.y173{bottom:846.255000px;}
.y108{bottom:846.615000px;}
.ye6{bottom:848.055000px;}
.y157{bottom:848.415000px;}
.y3e{bottom:850.575000px;}
.y10{bottom:853.095000px;}
.y66{bottom:854.535000px;}
.yaa{bottom:861.015000px;}
.y18c{bottom:865.335000px;}
.y107{bottom:865.695000px;}
.y156{bottom:867.495000px;}
.y3d{bottom:869.295000px;}
.y65{bottom:873.615000px;}
.y124{bottom:881.895000px;}
.y8a{bottom:882.255000px;}
.yc8{bottom:882.975000px;}
.y106{bottom:884.775000px;}
.y172{bottom:886.215000px;}
.ye5{bottom:888.015000px;}
.y3c{bottom:888.375000px;}
.yf{bottom:891.255000px;}
.y64{bottom:892.335000px;}
.ya8{bottom:899.895000px;}
.ye4{bottom:904.215000px;}
.y18b{bottom:905.295000px;}
.y155{bottom:907.095000px;}
.y3b{bottom:907.455000px;}
.y63{bottom:911.415000px;}
.y89{bottom:919.695000px;}
.yc7{bottom:921.855000px;}
.y13d{bottom:926.175000px;}
.y62{bottom:930.495000px;}
.y88{bottom:939.135000px;}
.y123{bottom:940.935000px;}
.y105{bottom:941.655000px;}
.ye2{bottom:942.735000px;}
.y13c{bottom:945.255000px;}
.y3a{bottom:947.055000px;}
.y61{bottom:949.215000px;}
.ye{bottom:951.735000px;}
.y87{bottom:958.965000px;}
.yc6{bottom:960.405000px;}
.y104{bottom:961.125000px;}
.yd{bottom:962.925000px;}
.y18a{bottom:964.365000px;}
.y39{bottom:966.165000px;}
.y60{bottom:968.325000px;}
.y122{bottom:978.045000px;}
.y86{bottom:978.765000px;}
.y103{bottom:980.925000px;}
.ye1{bottom:981.645000px;}
.y38{bottom:985.245000px;}
.yc{bottom:989.205000px;}
.y121{bottom:997.845000px;}
.y85{bottom:998.565000px;}
.yc5{bottom:999.285000px;}
.ya7{bottom:1003.245000px;}
.y37{bottom:1004.325000px;}
.y5f{bottom:1008.285000px;}
.yb{bottom:1012.245000px;}
.y120{bottom:1017.285000px;}
.y84{bottom:1018.005000px;}
.ye0{bottom:1020.165000px;}
.y36{bottom:1023.405000px;}
.y102{bottom:1025.205000px;}
.y5e{bottom:1027.365000px;}
.ya{bottom:1034.205000px;}
.y11f{bottom:1037.085000px;}
.y82{bottom:1037.805000px;}
.y35{bottom:1042.125000px;}
.ya6{bottom:1043.925000px;}
.y13b{bottom:1044.285000px;}
.y5d{bottom:1046.445000px;}
.y9{bottom:1056.165000px;}
.y11e{bottom:1056.885000px;}
.yde{bottom:1059.045000px;}
.y189{bottom:1063.005000px;}
.y13a{bottom:1063.365000px;}
.y5c{bottom:1065.165000px;}
.y8{bottom:1073.445000px;}
.y34{bottom:1082.130000px;}
.y5b{bottom:1084.290000px;}
.y7{bottom:1090.770000px;}
.y81{bottom:1101.210000px;}
.y5a{bottom:1103.370000px;}
.y6{bottom:1108.050000px;}
.y33{bottom:1122.090000px;}
.y5{bottom:1125.330000px;}
.y32{bottom:1141.170000px;}
.y4{bottom:1142.610000px;}
.y2f{bottom:1188.330000px;}
.y31{bottom:1206.000000px;}
.h2{height:18.000000px;}
.h15{height:18.720000px;}
.h1b{height:18.756000px;}
.h14{height:19.080000px;}
.h16{height:19.116000px;}
.he{height:19.836000px;}
.h8{height:22.960547px;}
.h17{height:37.800000px;}
.h19{height:37.836000px;}
.h18{height:38.160000px;}
.h1a{height:38.196000px;}
.h7{height:41.547656px;}
.h9{height:45.921094px;}
.h3{height:48.013594px;}
.h4{height:53.067656px;}
.hc{height:58.121719px;}
.hd{height:58.833281px;}
.h10{height:63.070312px;}
.h11{height:63.175781px;}
.hb{height:64.001953px;}
.h6{height:65.884219px;}
.hf{height:67.824844px;}
.h5{height:73.722656px;}
.ha{height:85.518281px;}
.h13{height:118.015781px;}
.h12{height:128.894062px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:37.800000px;}
.w26{width:42.120000px;}
.w29{width:42.156000px;}
.w28{width:44.640000px;}
.w27{width:44.676000px;}
.w2d{width:52.956000px;}
.w25{width:53.280000px;}
.w2a{width:65.880000px;}
.w2b{width:72.396000px;}
.w2c{width:80.676000px;}
.w7{width:88.236000px;}
.w24{width:91.476000px;}
.w34{width:99.396000px;}
.w6{width:105.516000px;}
.w2f{width:108.396000px;}
.w31{width:114.156000px;}
.wc{width:120.276000px;}
.w10{width:122.076000px;}
.w14{width:123.516000px;}
.w1c{width:124.596000px;}
.w18{width:127.476000px;}
.wb{width:132.192000px;}
.w13{width:139.392000px;}
.w21{width:142.272000px;}
.w2{width:142.632000px;}
.wf{width:144.072000px;}
.w17{width:149.112000px;}
.w1f{width:151.995000px;}
.w8{width:163.875000px;}
.w33{width:168.195000px;}
.w1b{width:172.515000px;}
.w1d{width:174.270000px;}
.w30{width:182.955000px;}
.w2e{width:185.835000px;}
.w16{width:187.995000px;}
.w12{width:188.355000px;}
.w1e{width:189.075000px;}
.w32{width:189.435000px;}
.w23{width:191.955000px;}
.w22{width:197.355000px;}
.w11{width:203.475000px;}
.w1a{width:205.995000px;}
.wd{width:207.075000px;}
.we{width:207.795000px;}
.w19{width:212.835000px;}
.w20{width:215.715000px;}
.wa{width:217.875000px;}
.w15{width:226.155000px;}
.w9{width:231.915000px;}
.w5{width:558.930000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x4{left:4.680000px;}
.xe{left:7.920000px;}
.x1{left:104.796000px;}
.x5{left:106.235987px;}
.xa{left:133.235987px;}
.xc{left:160.274987px;}
.xb{left:167.115000px;}
.xd{left:187.994987px;}
.xf{left:213.195000px;}
.x6{left:218.954987px;}
.x22{left:249.945000px;}
.x9{left:283.784987px;}
.x26{left:292.785000px;}
.x18{left:296.025000px;}
.x2e{left:297.105000px;}
.x10{left:302.145000px;}
.x1d{left:313.665000px;}
.x15{left:315.465000px;}
.x28{left:316.545000px;}
.x12{left:325.545000px;}
.x27{left:338.190000px;}
.x8{left:362.309987px;}
.x7{left:386.069987px;}
.x29{left:389.670000px;}
.x2b{left:402.630000px;}
.x19{left:436.140000px;}
.x1b{left:445.500000px;}
.x30{left:446.579987px;}
.x23{left:448.380000px;}
.x20{left:449.820000px;}
.x13{left:458.460000px;}
.x16{left:460.260000px;}
.x11{left:466.740000px;}
.x2a{left:471.060000px;}
.x1e{left:486.900000px;}
.x1a{left:560.370000px;}
.x2f{left:566.130000px;}
.x21{left:570.810000px;}
.x1c{left:573.690000px;}
.x14{left:579.450000px;}
.x17{left:583.050000px;}
.x2c{left:586.290000px;}
.x1f{left:612.255000px;}
.x24{left:641.055000px;}
.x2d{left:701.175000px;}
.x25{left:733.245000px;}
.x3{left:755.565000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v5{vertical-align:48.746667pt;}
.v4{vertical-align:56.320000pt;}
.ls9{letter-spacing:-1.690667pt;}
.ls20{letter-spacing:-1.685333pt;}
.ls5{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.072000pt;}
.ls11{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.949333pt;}
.lsd{letter-spacing:-0.858667pt;}
.lsb{letter-spacing:-0.682667pt;}
.lse{letter-spacing:-0.650667pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.412267pt;}
.ls1e{letter-spacing:-0.406933pt;}
.ls15{letter-spacing:-0.404267pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000003pt;}
.ls23{letter-spacing:0.135467pt;}
.ls27{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.381333pt;}
.ls1{letter-spacing:0.476160pt;}
.ls0{letter-spacing:0.527360pt;}
.lsf{letter-spacing:0.629333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.874667pt;}
.ls12{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:8.320000pt;}
.ls13{letter-spacing:12.160000pt;}
.ls22{letter-spacing:14.720000pt;}
.ls1d{letter-spacing:16.000000pt;}
.ls17{letter-spacing:23.265280pt;}
.ls25{letter-spacing:36.111360pt;}
.ls3{letter-spacing:36.122027pt;}
.ls21{letter-spacing:43.802027pt;}
.ls18{letter-spacing:56.745387pt;}
.ls24{letter-spacing:83.610027pt;}
.ls1c{letter-spacing:128.410027pt;}
.ws13{word-spacing:-69.120000pt;}
.ws14{word-spacing:-53.760000pt;}
.ws18{word-spacing:-15.594667pt;}
.ws17{word-spacing:-14.855467pt;}
.wsd{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws15{word-spacing:-14.448533pt;}
.ws16{word-spacing:-14.313067pt;}
.ws3{word-spacing:-14.080000pt;}
.ws4{word-spacing:-14.016000pt;}
.ws10{word-spacing:-13.688213pt;}
.ws19{word-spacing:-13.440000pt;}
.ws11{word-spacing:-12.902613pt;}
.ws12{word-spacing:-12.894613pt;}
.ws0{word-spacing:-12.160000pt;}
.wsc{word-spacing:-11.621973pt;}
.ws5{word-spacing:-11.616213pt;}
.wsb{word-spacing:-10.992640pt;}
.ws1{word-spacing:-10.880000pt;}
.wsa{word-spacing:-10.341973pt;}
.ws7{word-spacing:-10.309973pt;}
.ws9{word-spacing:-10.133973pt;}
.ws6{word-spacing:-10.043307pt;}
.ws8{word-spacing:-9.920640pt;}
.wse{word-spacing:-9.280000pt;}
.wsf{word-spacing:0.000000pt;}
._37{margin-left:-8.688640pt;}
._18{margin-left:-4.005547pt;}
._1{margin-left:-2.773333pt;}
._0{margin-left:-1.264640pt;}
._2{width:1.008640pt;}
._5{width:1.906773pt;}
._e{width:3.002880pt;}
._f{width:3.953493pt;}
._11{width:5.016747pt;}
._a{width:6.367573pt;}
._1a{width:7.295147pt;}
._9{width:8.212480pt;}
._b{width:9.107627pt;}
._10{width:10.192213pt;}
._8{width:12.008960pt;}
._7{width:13.511680pt;}
._6{width:15.720960pt;}
._1d{width:16.668587pt;}
._19{width:17.802240pt;}
._14{width:19.312640pt;}
._15{width:20.366933pt;}
._d{width:21.611947pt;}
._c{width:22.991360pt;}
._38{width:24.158720pt;}
._35{width:25.699840pt;}
._12{width:27.084800pt;}
._13{width:28.078080pt;}
._36{width:29.762560pt;}
._17{width:31.057920pt;}
._16{width:31.949227pt;}
._20{width:34.030080pt;}
._4{width:34.997760pt;}
._21{width:42.951680pt;}
._24{width:46.307840pt;}
._30{width:47.398400pt;}
._3{width:52.190720pt;}
._1f{width:58.437120pt;}
._2f{width:61.352960pt;}
._2d{width:69.301760pt;}
._2c{width:70.684160pt;}
._26{width:86.141440pt;}
._28{width:89.054720pt;}
._1b{width:106.160640pt;}
._22{width:115.228160pt;}
._23{width:149.230080pt;}
._1c{width:152.025600pt;}
._2a{width:174.901760pt;}
._25{width:176.256000pt;}
._34{width:178.199040pt;}
._31{width:208.307200pt;}
._27{width:210.053120pt;}
._33{width:230.955520pt;}
._2e{width:234.754560pt;}
._29{width:248.179200pt;}
._2b{width:270.581760pt;}
._32{width:277.588480pt;}
._1e{width:364.820480pt;}
.fs4{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs5{font-size:74.240000pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:3.200000pt;}
.yba{bottom:3.240000pt;}
.y2{bottom:3.840000pt;}
.y30{bottom:4.480000pt;}
.ya9{bottom:19.840000pt;}
.ydf{bottom:19.880000pt;}
.yab{bottom:20.160000pt;}
.ye3{bottom:20.186667pt;}
.yb9{bottom:20.200000pt;}
.y1{bottom:72.992000pt;}
.y3{bottom:86.752000pt;}
.y171{bottom:128.672000pt;}
.y11d{bottom:130.272000pt;}
.y59{bottom:131.232000pt;}
.y154{bottom:134.106667pt;}
.y80{bottom:139.866667pt;}
.yc4{bottom:144.346667pt;}
.y101{bottom:144.666667pt;}
.y170{bottom:145.626667pt;}
.y139{bottom:145.946667pt;}
.y58{bottom:148.186667pt;}
.y2e{bottom:148.826667pt;}
.y7f{bottom:156.826667pt;}
.y188{bottom:158.746667pt;}
.ya5{bottom:159.706667pt;}
.yc3{bottom:161.306667pt;}
.y100{bottom:162.266667pt;}
.y16f{bottom:162.586667pt;}
.y138{bottom:162.906667pt;}
.y2d{bottom:165.786667pt;}
.y11c{bottom:166.106667pt;}
.y153{bottom:169.626667pt;}
.y7e{bottom:173.786667pt;}
.ydd{bottom:175.386667pt;}
.y187{bottom:175.746667pt;}
.ya4{bottom:176.706667pt;}
.yc2{bottom:177.986667pt;}
.yff{bottom:179.906667pt;}
.y2c{bottom:182.786667pt;}
.y11b{bottom:183.106667pt;}
.y57{bottom:183.746667pt;}
.y152{bottom:186.626667pt;}
.y7d{bottom:190.786667pt;}
.ydc{bottom:192.386667pt;}
.ya3{bottom:193.666667pt;}
.yc1{bottom:194.946667pt;}
.yfe{bottom:197.506667pt;}
.y16e{bottom:198.146667pt;}
.y2b{bottom:199.426667pt;}
.y151{bottom:203.586667pt;}
.ydb{bottom:209.346667pt;}
.ya2{bottom:210.306667pt;}
.y186{bottom:211.266667pt;}
.yc0{bottom:211.906667pt;}
.y137{bottom:212.866667pt;}
.y11a{bottom:216.066667pt;}
.y2a{bottom:216.386667pt;}
.y56{bottom:219.906667pt;}
.ybf{bottom:228.546667pt;}
.y136{bottom:230.466667pt;}
.y29{bottom:233.346667pt;}
.y16d{bottom:233.666667pt;}
.y7c{bottom:234.626667pt;}
.y150{bottom:238.786667pt;}
.yda{bottom:242.306667pt;}
.ya1{bottom:245.826667pt;}
.y185{bottom:246.786667pt;}
.y135{bottom:247.746667pt;}
.y28{bottom:249.986667pt;}
.y16c{bottom:250.626667pt;}
.y119{bottom:250.946667pt;}
.yfd{bottom:253.506667pt;}
.y55{bottom:255.746667pt;}
.ybe{bottom:261.506667pt;}
.ya0{bottom:262.786667pt;}
.y134{bottom:265.346667pt;}
.y27{bottom:266.946667pt;}
.y16b{bottom:267.266667pt;}
.y118{bottom:268.546667pt;}
.yfc{bottom:270.466667pt;}
.y54{bottom:272.706667pt;}
.yd9{bottom:276.546667pt;}
.y9f{bottom:279.746667pt;}
.y7b{bottom:281.026667pt;}
.y184{bottom:282.306667pt;}
.y26{bottom:283.906667pt;}
.y16a{bottom:284.226667pt;}
.y53{bottom:289.693333pt;}
.y14f{bottom:291.293333pt;}
.y7a{bottom:293.213333pt;}
.yd8{bottom:294.173333pt;}
.ybd{bottom:296.093333pt;}
.y9e{bottom:296.413333pt;}
.y183{bottom:299.293333pt;}
.y133{bottom:304.733333pt;}
.yfb{bottom:306.013333pt;}
.y117{bottom:307.933333pt;}
.y14e{bottom:308.253333pt;}
.y182{bottom:316.253333pt;}
.y25{bottom:319.453333pt;}
.y169{bottom:319.773333pt;}
.y52{bottom:325.213333pt;}
.ybc{bottom:330.333333pt;}
.y9d{bottom:332.573333pt;}
.y24{bottom:336.413333pt;}
.y132{bottom:340.253333pt;}
.yfa{bottom:341.533333pt;}
.y51{bottom:342.173333pt;}
.y116{bottom:343.453333pt;}
.y79{bottom:344.093333pt;}
.yd7{bottom:350.493333pt;}
.y181{bottom:351.453333pt;}
.y168{bottom:355.293333pt;}
.y50{bottom:358.813333pt;}
.y14d{bottom:360.733333pt;}
.ybb{bottom:364.893333pt;}
.y9c{bottom:368.413333pt;}
.y23{bottom:371.613333pt;}
.y167{bottom:372.253333pt;}
.y4f{bottom:375.773333pt;}
.yf9{bottom:377.053333pt;}
.y14c{bottom:377.693333pt;}
.y115{bottom:378.973333pt;}
.y78{bottom:379.613333pt;}
.y9b{bottom:385.373333pt;}
.yd6{bottom:386.013333pt;}
.y22{bottom:388.573333pt;}
.y166{bottom:388.893333pt;}
.y4e{bottom:392.733333pt;}
.yf8{bottom:394.013333pt;}
.y14b{bottom:394.333333pt;}
.y77{bottom:396.573333pt;}
.yb8{bottom:399.133333pt;}
.y9a{bottom:402.373333pt;}
.y180{bottom:403.973333pt;}
.y21{bottom:405.573333pt;}
.y165{bottom:405.893333pt;}
.y4d{bottom:409.413333pt;}
.yf7{bottom:411.013333pt;}
.y114{bottom:411.973333pt;}
.y76{bottom:413.573333pt;}
.y99{bottom:419.333333pt;}
.y17f{bottom:420.933333pt;}
.yd5{bottom:421.573333pt;}
.y20{bottom:422.533333pt;}
.y131{bottom:425.733333pt;}
.yf6{bottom:427.973333pt;}
.y113{bottom:429.573333pt;}
.y14a{bottom:429.893333pt;}
.y75{bottom:430.213333pt;}
.y98{bottom:436.293333pt;}
.yd4{bottom:438.533333pt;}
.y1f{bottom:439.173333pt;}
.y164{bottom:441.413333pt;}
.y130{bottom:443.333333pt;}
.yf5{bottom:444.613333pt;}
.y4c{bottom:444.933333pt;}
.y149{bottom:446.853333pt;}
.y74{bottom:447.173333pt;}
.yd3{bottom:455.173333pt;}
.yb7{bottom:455.493333pt;}
.y1e{bottom:456.133333pt;}
.y17e{bottom:456.453333pt;}
.y12f{bottom:460.933333pt;}
.yf4{bottom:461.573333pt;}
.y148{bottom:463.813333pt;}
.y73{bottom:464.133333pt;}
.y112{bottom:464.773333pt;}
.y97{bottom:471.493333pt;}
.yb6{bottom:472.453333pt;}
.y1d{bottom:473.093333pt;}
.y163{bottom:476.933333pt;}
.yf3{bottom:478.533333pt;}
.y4b{bottom:480.453333pt;}
.yd2{bottom:488.133333pt;}
.y96{bottom:488.453333pt;}
.y1c{bottom:490.053333pt;}
.y17d{bottom:491.973333pt;}
.y162{bottom:493.893333pt;}
.yf2{bottom:495.173333pt;}
.y4a{bottom:497.413333pt;}
.y72{bottom:499.333333pt;}
.y111{bottom:504.133333pt;}
.y95{bottom:505.413333pt;}
.y1b{bottom:506.693333pt;}
.yb5{bottom:507.973333pt;}
.y17c{bottom:508.933333pt;}
.y161{bottom:510.853333pt;}
.y49{bottom:514.400000pt;}
.y147{bottom:516.320000pt;}
.y12e{bottom:517.600000pt;}
.y193{bottom:522.080000pt;}
.y94{bottom:522.400000pt;}
.yd1{bottom:522.720000pt;}
.y1a{bottom:523.680000pt;}
.y17b{bottom:525.920000pt;}
.y160{bottom:527.520000pt;}
.yf1{bottom:530.720000pt;}
.y48{bottom:531.360000pt;}
.y146{bottom:532.960000pt;}
.y71{bottom:534.880000pt;}
.y93{bottom:539.040000pt;}
.y110{bottom:539.680000pt;}
.y17a{bottom:542.560000pt;}
.yb4{bottom:543.520000pt;}
.yf0{bottom:547.680000pt;}
.y70{bottom:551.840000pt;}
.y12d{bottom:553.120000pt;}
.y92{bottom:556.000000pt;}
.y10f{bottom:556.640000pt;}
.yd0{bottom:556.960000pt;}
.y19{bottom:559.200000pt;}
.yb3{bottom:560.480000pt;}
.y15f{bottom:563.040000pt;}
.yef{bottom:564.640000pt;}
.y47{bottom:566.560000pt;}
.y145{bottom:568.480000pt;}
.y6f{bottom:568.800000pt;}
.y91{bottom:572.960000pt;}
.y192{bottom:574.560000pt;}
.yb2{bottom:577.120000pt;}
.y179{bottom:578.080000pt;}
.yee{bottom:581.280000pt;}
.y46{bottom:583.520000pt;}
.y6e{bottom:585.760000pt;}
.y12c{bottom:588.640000pt;}
.y10e{bottom:589.600000pt;}
.yb1{bottom:594.080000pt;}
.y18{bottom:594.720000pt;}
.yed{bottom:598.240000pt;}
.y15e{bottom:598.560000pt;}
.y45{bottom:600.480000pt;}
.y6d{bottom:602.720000pt;}
.y144{bottom:604.000000pt;}
.y12b{bottom:605.920000pt;}
.y10d{bottom:606.880000pt;}
.y90{bottom:608.480000pt;}
.y191{bottom:610.080000pt;}
.yb0{bottom:611.040000pt;}
.ycf{bottom:613.280000pt;}
.y178{bottom:613.600000pt;}
.yec{bottom:615.200000pt;}
.y15d{bottom:615.520000pt;}
.y44{bottom:617.440000pt;}
.y6c{bottom:619.360000pt;}
.y143{bottom:620.960000pt;}
.y17{bottom:623.546667pt;}
.y10c{bottom:624.506667pt;}
.y177{bottom:630.586667pt;}
.y15c{bottom:632.506667pt;}
.y6b{bottom:636.346667pt;}
.y142{bottom:637.946667pt;}
.y12a{bottom:638.906667pt;}
.y16{bottom:641.786667pt;}
.y10b{bottom:642.106667pt;}
.y8f{bottom:644.026667pt;}
.y190{bottom:645.626667pt;}
.y176{bottom:647.546667pt;}
.yce{bottom:648.826667pt;}
.y15b{bottom:649.466667pt;}
.yeb{bottom:650.746667pt;}
.y43{bottom:652.666667pt;}
.y6a{bottom:653.306667pt;}
.y141{bottom:654.586667pt;}
.y129{bottom:656.186667pt;}
.y15{bottom:660.026667pt;}
.y42{bottom:669.626667pt;}
.y69{bottom:669.946667pt;}
.y140{bottom:671.546667pt;}
.y128{bottom:673.786667pt;}
.y14{bottom:676.986667pt;}
.yaf{bottom:678.266667pt;}
.y8e{bottom:679.546667pt;}
.y18f{bottom:681.146667pt;}
.y10a{bottom:681.466667pt;}
.y175{bottom:683.066667pt;}
.ycd{bottom:684.346667pt;}
.y15a{bottom:684.666667pt;}
.yea{bottom:686.266667pt;}
.y41{bottom:686.586667pt;}
.y13f{bottom:688.506667pt;}
.y127{bottom:691.386667pt;}
.y13{bottom:693.626667pt;}
.yae{bottom:695.866667pt;}
.y8d{bottom:696.506667pt;}
.y18e{bottom:698.106667pt;}
.ycc{bottom:701.306667pt;}
.ye9{bottom:703.226667pt;}
.y40{bottom:703.546667pt;}
.y68{bottom:705.466667pt;}
.y126{bottom:708.986667pt;}
.y12{bottom:712.506667pt;}
.yad{bottom:713.466667pt;}
.y109{bottom:716.986667pt;}
.ycb{bottom:718.266667pt;}
.y174{bottom:718.586667pt;}
.ye8{bottom:719.866667pt;}
.y159{bottom:720.186667pt;}
.y13e{bottom:722.106667pt;}
.y8c{bottom:731.706667pt;}
.y18d{bottom:733.626667pt;}
.yca{bottom:734.946667pt;}
.y11{bottom:735.586667pt;}
.ye7{bottom:736.866667pt;}
.y158{bottom:737.186667pt;}
.y3f{bottom:739.106667pt;}
.y67{bottom:741.346667pt;}
.yac{bottom:748.066667pt;}
.y125{bottom:748.386667pt;}
.y8b{bottom:748.706667pt;}
.yc9{bottom:751.906667pt;}
.y173{bottom:752.226667pt;}
.y108{bottom:752.546667pt;}
.ye6{bottom:753.826667pt;}
.y157{bottom:754.146667pt;}
.y3e{bottom:756.066667pt;}
.y10{bottom:758.306667pt;}
.y66{bottom:759.586667pt;}
.yaa{bottom:765.346667pt;}
.y18c{bottom:769.186667pt;}
.y107{bottom:769.506667pt;}
.y156{bottom:771.106667pt;}
.y3d{bottom:772.706667pt;}
.y65{bottom:776.546667pt;}
.y124{bottom:783.906667pt;}
.y8a{bottom:784.226667pt;}
.yc8{bottom:784.866667pt;}
.y106{bottom:786.466667pt;}
.y172{bottom:787.746667pt;}
.ye5{bottom:789.346667pt;}
.y3c{bottom:789.666667pt;}
.yf{bottom:792.226667pt;}
.y64{bottom:793.186667pt;}
.ya8{bottom:799.906667pt;}
.ye4{bottom:803.746667pt;}
.y18b{bottom:804.706667pt;}
.y155{bottom:806.306667pt;}
.y3b{bottom:806.626667pt;}
.y63{bottom:810.146667pt;}
.y89{bottom:817.506667pt;}
.yc7{bottom:819.426667pt;}
.y13d{bottom:823.266667pt;}
.y62{bottom:827.106667pt;}
.y88{bottom:834.786667pt;}
.y123{bottom:836.386667pt;}
.y105{bottom:837.026667pt;}
.ye2{bottom:837.986667pt;}
.y13c{bottom:840.226667pt;}
.y3a{bottom:841.826667pt;}
.y61{bottom:843.746667pt;}
.ye{bottom:845.986667pt;}
.y87{bottom:852.413333pt;}
.yc6{bottom:853.693333pt;}
.y104{bottom:854.333333pt;}
.yd{bottom:855.933333pt;}
.y18a{bottom:857.213333pt;}
.y39{bottom:858.813333pt;}
.y60{bottom:860.733333pt;}
.y122{bottom:869.373333pt;}
.y86{bottom:870.013333pt;}
.y103{bottom:871.933333pt;}
.ye1{bottom:872.573333pt;}
.y38{bottom:875.773333pt;}
.yc{bottom:879.293333pt;}
.y121{bottom:886.973333pt;}
.y85{bottom:887.613333pt;}
.yc5{bottom:888.253333pt;}
.ya7{bottom:891.773333pt;}
.y37{bottom:892.733333pt;}
.y5f{bottom:896.253333pt;}
.yb{bottom:899.773333pt;}
.y120{bottom:904.253333pt;}
.y84{bottom:904.893333pt;}
.ye0{bottom:906.813333pt;}
.y36{bottom:909.693333pt;}
.y102{bottom:911.293333pt;}
.y5e{bottom:913.213333pt;}
.ya{bottom:919.293333pt;}
.y11f{bottom:921.853333pt;}
.y82{bottom:922.493333pt;}
.y35{bottom:926.333333pt;}
.ya6{bottom:927.933333pt;}
.y13b{bottom:928.253333pt;}
.y5d{bottom:930.173333pt;}
.y9{bottom:938.813333pt;}
.y11e{bottom:939.453333pt;}
.yde{bottom:941.373333pt;}
.y189{bottom:944.893333pt;}
.y13a{bottom:945.213333pt;}
.y5c{bottom:946.813333pt;}
.y8{bottom:954.173333pt;}
.y34{bottom:961.893333pt;}
.y5b{bottom:963.813333pt;}
.y7{bottom:969.573333pt;}
.y81{bottom:978.853333pt;}
.y5a{bottom:980.773333pt;}
.y6{bottom:984.933333pt;}
.y33{bottom:997.413333pt;}
.y5{bottom:1000.293333pt;}
.y32{bottom:1014.373333pt;}
.y4{bottom:1015.653333pt;}
.y2f{bottom:1056.293333pt;}
.y31{bottom:1072.000000pt;}
.h2{height:16.000000pt;}
.h15{height:16.640000pt;}
.h1b{height:16.672000pt;}
.h14{height:16.960000pt;}
.h16{height:16.992000pt;}
.he{height:17.632000pt;}
.h8{height:20.409375pt;}
.h17{height:33.600000pt;}
.h19{height:33.632000pt;}
.h18{height:33.920000pt;}
.h1a{height:33.952000pt;}
.h7{height:36.931250pt;}
.h9{height:40.818750pt;}
.h3{height:42.678750pt;}
.h4{height:47.171250pt;}
.hc{height:51.663750pt;}
.hd{height:52.296250pt;}
.h10{height:56.062500pt;}
.h11{height:56.156250pt;}
.hb{height:56.890625pt;}
.h6{height:58.563750pt;}
.hf{height:60.288750pt;}
.h5{height:65.531250pt;}
.ha{height:76.016250pt;}
.h13{height:104.902917pt;}
.h12{height:114.572500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:33.600000pt;}
.w26{width:37.440000pt;}
.w29{width:37.472000pt;}
.w28{width:39.680000pt;}
.w27{width:39.712000pt;}
.w2d{width:47.072000pt;}
.w25{width:47.360000pt;}
.w2a{width:58.560000pt;}
.w2b{width:64.352000pt;}
.w2c{width:71.712000pt;}
.w7{width:78.432000pt;}
.w24{width:81.312000pt;}
.w34{width:88.352000pt;}
.w6{width:93.792000pt;}
.w2f{width:96.352000pt;}
.w31{width:101.472000pt;}
.wc{width:106.912000pt;}
.w10{width:108.512000pt;}
.w14{width:109.792000pt;}
.w1c{width:110.752000pt;}
.w18{width:113.312000pt;}
.wb{width:117.504000pt;}
.w13{width:123.904000pt;}
.w21{width:126.464000pt;}
.w2{width:126.784000pt;}
.wf{width:128.064000pt;}
.w17{width:132.544000pt;}
.w1f{width:135.106667pt;}
.w8{width:145.666667pt;}
.w33{width:149.506667pt;}
.w1b{width:153.346667pt;}
.w1d{width:154.906667pt;}
.w30{width:162.626667pt;}
.w2e{width:165.186667pt;}
.w16{width:167.106667pt;}
.w12{width:167.426667pt;}
.w1e{width:168.066667pt;}
.w32{width:168.386667pt;}
.w23{width:170.626667pt;}
.w22{width:175.426667pt;}
.w11{width:180.866667pt;}
.w1a{width:183.106667pt;}
.wd{width:184.066667pt;}
.we{width:184.706667pt;}
.w19{width:189.186667pt;}
.w20{width:191.746667pt;}
.wa{width:193.666667pt;}
.w15{width:201.026667pt;}
.w9{width:206.146667pt;}
.w5{width:496.826667pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x4{left:4.160000pt;}
.xe{left:7.040000pt;}
.x1{left:93.152000pt;}
.x5{left:94.431988pt;}
.xa{left:118.431988pt;}
.xc{left:142.466655pt;}
.xb{left:148.546667pt;}
.xd{left:167.106655pt;}
.xf{left:189.506667pt;}
.x6{left:194.626655pt;}
.x22{left:222.173333pt;}
.x9{left:252.253322pt;}
.x26{left:260.253333pt;}
.x18{left:263.133333pt;}
.x2e{left:264.093333pt;}
.x10{left:268.573333pt;}
.x1d{left:278.813333pt;}
.x15{left:280.413333pt;}
.x28{left:281.373333pt;}
.x12{left:289.373333pt;}
.x27{left:300.613333pt;}
.x8{left:322.053322pt;}
.x7{left:343.173322pt;}
.x29{left:346.373333pt;}
.x2b{left:357.893333pt;}
.x19{left:387.680000pt;}
.x1b{left:396.000000pt;}
.x30{left:396.959988pt;}
.x23{left:398.560000pt;}
.x20{left:399.840000pt;}
.x13{left:407.520000pt;}
.x16{left:409.120000pt;}
.x11{left:414.880000pt;}
.x2a{left:418.720000pt;}
.x1e{left:432.800000pt;}
.x1a{left:498.106667pt;}
.x2f{left:503.226667pt;}
.x21{left:507.386667pt;}
.x1c{left:509.946667pt;}
.x14{left:515.066667pt;}
.x17{left:518.266667pt;}
.x2c{left:521.146667pt;}
.x1f{left:544.226667pt;}
.x24{left:569.826667pt;}
.x2d{left:623.266667pt;}
.x25{left:651.773333pt;}
.x3{left:671.613333pt;}
}




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