
    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_edf618cbc0b3a8f4211d98b4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_20765b2c4806a45eece0a191.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6468d327c2652aef1829faaa.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_19506ba0c44c7f1c4cda8196.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9b0d84f28b024391061f5d92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d9f0e73d0f4f8e3e65d09ab6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982422;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_c07500fba5b1c018961f6af4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_635899b87089f9ca3b659519.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_abe527cd876538f33ab5d8b2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fca7fd875232dfa4707d5a47.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147728,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2c{letter-spacing:-1.800000px;}
.ls1a{letter-spacing:-1.698000px;}
.ls21{letter-spacing:-1.386000px;}
.ls23{letter-spacing:-1.332000px;}
.ls1d{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.774000px;}
.ls38{letter-spacing:-0.666000px;}
.ls10{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls35{letter-spacing:-0.513600px;}
.ls26{letter-spacing:-0.460200px;}
.ls13{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.253200px;}
.lsf{letter-spacing:-0.206400px;}
.ls1e{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.018720px;}
.lse{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.120000px;}
.ls27{letter-spacing:0.135600px;}
.ls1c{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.153360px;}
.ls31{letter-spacing:0.153600px;}
.ls15{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.206400px;}
.ls11{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.306600px;}
.ls17{letter-spacing:0.311760px;}
.ls2a{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.376548px;}
.ls33{letter-spacing:0.480000px;}
.ls25{letter-spacing:0.540000px;}
.ls2b{letter-spacing:0.666000px;}
.ls1f{letter-spacing:0.774000px;}
.ls37{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.080000px;}
.ls29{letter-spacing:1.620000px;}
.ls32{letter-spacing:2.340000px;}
.ls22{letter-spacing:3.060000px;}
.ls9{letter-spacing:3.780000px;}
.ls16{letter-spacing:4.644000px;}
.ls20{letter-spacing:5.184000px;}
.ls34{letter-spacing:5.220000px;}
.ls2f{letter-spacing:5.940000px;}
.lsd{letter-spacing:6.660000px;}
.ls1b{letter-spacing:7.380000px;}
.ls2e{letter-spacing:11.700000px;}
.ls36{letter-spacing:13.860000px;}
.lsa{letter-spacing:15.300000px;}
.ls30{letter-spacing:16.506720px;}
.ls28{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-19.440000px;}
.ws17{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.020000px;}
.ws16{word-spacing:-15.714000px;}
.ws1b{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws1d{word-spacing:-15.093600px;}
.ws1a{word-spacing:-15.075600px;}
.ws7{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.733600px;}
.ws5{word-spacing:-14.686800px;}
.ws12{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws19{word-spacing:-14.479800px;}
.ws1e{word-spacing:-14.426400px;}
.wsb{word-spacing:-14.328000px;}
.ws1f{word-spacing:-14.274000px;}
.wsd{word-spacing:-14.166000px;}
.ws14{word-spacing:-13.860000px;}
.ws18{word-spacing:-13.554000px;}
.ws13{word-spacing:-13.242000px;}
.ws1c{word-spacing:-13.140000px;}
.ws2{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._19{margin-left:-529.548480px;}
._3{margin-left:-496.428480px;}
._4{margin-left:-5.947920px;}
._12{margin-left:-4.835280px;}
._5{margin-left:-3.645360px;}
._6{margin-left:-2.248080px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._d{width:4.012560px;}
._b{width:5.079600px;}
._14{width:6.117120px;}
._e{width:7.298400px;}
._13{width:9.023760px;}
._18{width:10.025520px;}
._17{width:11.393280px;}
._16{width:12.503520px;}
._15{width:13.939920px;}
._7{width:16.259520px;}
._c{width:18.025200px;}
._11{width:19.072560px;}
._a{width:20.116800px;}
._1a{width:21.362880px;}
._1b{width:23.870160px;}
._24{width:25.995600px;}
._9{width:27.470880px;}
._8{width:28.684800px;}
._37{width:31.971600px;}
._1d{width:34.300800px;}
._1c{width:35.306400px;}
._1e{width:37.133400px;}
._f{width:39.673440px;}
._23{width:42.775200px;}
._29{width:43.983360px;}
._32{width:47.927520px;}
._2c{width:52.624080px;}
._2f{width:53.664480px;}
._2e{width:54.941760px;}
._26{width:56.510640px;}
._20{width:58.318080px;}
._2d{width:59.900160px;}
._22{width:67.968480px;}
._31{width:69.082320px;}
._2a{width:74.553120px;}
._38{width:78.823440px;}
._36{width:82.267200px;}
._21{width:84.604080px;}
._33{width:86.075280px;}
._27{width:93.643920px;}
._1f{width:96.533280px;}
._2b{width:109.381680px;}
._30{width:110.601840px;}
._25{width:120.746640px;}
._35{width:126.190800px;}
._34{width:176.882160px;}
._10{width:219.281760px;}
._28{width:254.175600px;}
._39{width:260.015760px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc5{color:rgb(66,66,66);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.fs9{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.220000px;}
.y18a{bottom:5.760000px;}
.y2b{bottom:5.940000px;}
.y1e{bottom:9.900000px;}
.y17a{bottom:10.440000px;}
.y46{bottom:10.800000px;}
.y175{bottom:11.160000px;}
.y185{bottom:11.880000px;}
.y6{bottom:14.220000px;}
.y8d{bottom:24.300000px;}
.y18c{bottom:25.560000px;}
.y2a{bottom:25.740000px;}
.y1d{bottom:29.700000px;}
.y179{bottom:30.420000px;}
.y174{bottom:30.960000px;}
.y184{bottom:31.680000px;}
.y8f{bottom:43.020000px;}
.y92{bottom:43.200000px;}
.y190{bottom:45.360000px;}
.y29{bottom:45.540000px;}
.y17d{bottom:45.570000px;}
.y189{bottom:45.585000px;}
.y5{bottom:45.720000px;}
.y1c{bottom:49.500000px;}
.y178{bottom:50.220000px;}
.y173{bottom:50.760000px;}
.y183{bottom:51.480000px;}
.y18f{bottom:65.160000px;}
.y28{bottom:65.340000px;}
.y17c{bottom:65.370000px;}
.y188{bottom:65.385000px;}
.y9{bottom:66.060000px;}
.y1b{bottom:69.300000px;}
.y17f{bottom:69.330000px;}
.y177{bottom:70.020000px;}
.y172{bottom:70.740000px;}
.y182{bottom:71.280000px;}
.y4{bottom:77.400000px;}
.y45{bottom:78.480000px;}
.y18e{bottom:85.140000px;}
.y27{bottom:85.170000px;}
.y187{bottom:85.185000px;}
.y1a{bottom:89.130000px;}
.y16f{bottom:89.820000px;}
.y171{bottom:90.585000px;}
.y181{bottom:91.080000px;}
.yd4{bottom:91.260000px;}
.y7c{bottom:91.620000px;}
.yab{bottom:93.240000px;}
.y127{bottom:93.780000px;}
.y43{bottom:95.040000px;}
.y94{bottom:99.540000px;}
.y134{bottom:100.620000px;}
.y164{bottom:101.160000px;}
.y154{bottom:102.420000px;}
.y26{bottom:104.610000px;}
.y1a3{bottom:106.020000px;}
.y17b{bottom:108.900000px;}
.y3{bottom:109.110000px;}
.y16e{bottom:109.620000px;}
.yd3{bottom:111.060000px;}
.y7b{bottom:111.420000px;}
.yaa{bottom:113.040000px;}
.yfd{bottom:113.220000px;}
.y93{bottom:113.580000px;}
.y42{bottom:114.840000px;}
.y133{bottom:120.420000px;}
.y163{bottom:120.960000px;}
.y153{bottom:122.220000px;}
.y25{bottom:122.430000px;}
.y1a2{bottom:128.880000px;}
.y19{bottom:128.910000px;}
.y16d{bottom:129.420000px;}
.yd2{bottom:130.860000px;}
.y7a{bottom:131.220000px;}
.ya9{bottom:133.020000px;}
.yfc{bottom:133.200000px;}
.y126{bottom:133.560000px;}
.y41{bottom:134.640000px;}
.y132{bottom:140.220000px;}
.y24{bottom:140.250000px;}
.y162{bottom:140.760000px;}
.y152{bottom:142.200000px;}
.y2{bottom:142.230000px;}
.y1a1{bottom:148.680000px;}
.y18{bottom:148.710000px;}
.y16c{bottom:149.220000px;}
.yd1{bottom:150.840000px;}
.y79{bottom:151.200000px;}
.y91{bottom:151.950000px;}
.ya8{bottom:152.850000px;}
.yfb{bottom:153.030000px;}
.y125{bottom:153.390000px;}
.y40{bottom:154.470000px;}
.y23{bottom:158.070000px;}
.y131{bottom:160.230000px;}
.y161{bottom:160.590000px;}
.y151{bottom:162.030000px;}
.y17{bottom:168.510000px;}
.y16b{bottom:169.230000px;}
.yd0{bottom:170.670000px;}
.y78{bottom:171.030000px;}
.yfa{bottom:172.830000px;}
.y124{bottom:173.190000px;}
.y3f{bottom:174.270000px;}
.y22{bottom:175.890000px;}
.y130{bottom:180.030000px;}
.y160{bottom:180.390000px;}
.ya7{bottom:181.650000px;}
.y150{bottom:181.830000px;}
.y16{bottom:188.310000px;}
.y16a{bottom:189.030000px;}
.ycf{bottom:190.470000px;}
.y77{bottom:190.830000px;}
.yf9{bottom:192.630000px;}
.y123{bottom:192.990000px;}
.y21{bottom:193.710000px;}
.y3e{bottom:194.250000px;}
.y12f{bottom:199.830000px;}
.y15f{bottom:200.370000px;}
.ya6{bottom:201.450000px;}
.y14f{bottom:201.630000px;}
.y1a0{bottom:208.110000px;}
.y15{bottom:208.290000px;}
.y169{bottom:208.830000px;}
.y90{bottom:209.190000px;}
.y176{bottom:209.730000px;}
.yce{bottom:210.270000px;}
.y76{bottom:210.630000px;}
.y20{bottom:211.710000px;}
.yf8{bottom:212.430000px;}
.y122{bottom:212.790000px;}
.y3d{bottom:214.050000px;}
.y12e{bottom:219.630000px;}
.ya5{bottom:221.250000px;}
.y14e{bottom:221.430000px;}
.y14{bottom:228.090000px;}
.y168{bottom:228.630000px;}
.y1f{bottom:229.530000px;}
.ycd{bottom:230.070000px;}
.y75{bottom:230.430000px;}
.yf7{bottom:232.410000px;}
.y121{bottom:232.770000px;}
.y3c{bottom:233.850000px;}
.y12d{bottom:239.430000px;}
.ya4{bottom:241.230000px;}
.y14d{bottom:241.410000px;}
.y13{bottom:247.890000px;}
.y167{bottom:248.430000px;}
.ycc{bottom:250.050000px;}
.y74{bottom:250.410000px;}
.yf6{bottom:252.210000px;}
.y120{bottom:252.570000px;}
.y3b{bottom:253.650000px;}
.y12c{bottom:259.410000px;}
.ya3{bottom:261.030000px;}
.y14c{bottom:261.210000px;}
.y8e{bottom:266.250000px;}
.y12{bottom:267.690000px;}
.y166{bottom:268.410000px;}
.ycb{bottom:269.850000px;}
.y73{bottom:270.210000px;}
.yf5{bottom:272.010000px;}
.y11f{bottom:272.370000px;}
.y3a{bottom:273.450000px;}
.y12b{bottom:279.210000px;}
.ya2{bottom:280.830000px;}
.y14b{bottom:281.010000px;}
.y11{bottom:287.490000px;}
.y165{bottom:288.210000px;}
.yca{bottom:289.650000px;}
.y72{bottom:290.010000px;}
.yf4{bottom:291.810000px;}
.y11e{bottom:292.170000px;}
.y39{bottom:293.430000px;}
.y15e{bottom:299.010000px;}
.ya1{bottom:300.630000px;}
.y14a{bottom:300.810000px;}
.y19f{bottom:307.290000px;}
.y12a{bottom:308.010000px;}
.y71{bottom:309.810000px;}
.yf3{bottom:311.610000px;}
.y11d{bottom:311.970000px;}
.y38{bottom:313.230000px;}
.y170{bottom:315.210000px;}
.yc9{bottom:318.450000px;}
.y15d{bottom:318.810000px;}
.y149{bottom:320.610000px;}
.y8c{bottom:323.310000px;}
.y19e{bottom:327.270000px;}
.y129{bottom:327.810000px;}
.ya0{bottom:329.430000px;}
.y70{bottom:329.610000px;}
.yf2{bottom:331.590000px;}
.y11c{bottom:331.950000px;}
.y37{bottom:333.030000px;}
.yc8{bottom:338.250000px;}
.y15c{bottom:338.610000px;}
.y148{bottom:340.590000px;}
.y19d{bottom:347.070000px;}
.y128{bottom:347.610000px;}
.y9f{bottom:349.410000px;}
.yf1{bottom:351.390000px;}
.y11b{bottom:351.750000px;}
.yc7{bottom:358.230000px;}
.y6f{bottom:358.590000px;}
.y147{bottom:360.390000px;}
.y36{bottom:361.830000px;}
.y19c{bottom:366.870000px;}
.y8b{bottom:367.590000px;}
.y9e{bottom:369.210000px;}
.yf0{bottom:371.190000px;}
.y11a{bottom:371.550000px;}
.yc6{bottom:378.030000px;}
.y6e{bottom:378.390000px;}
.y146{bottom:380.190000px;}
.y35{bottom:381.630000px;}
.y19b{bottom:386.670000px;}
.y8a{bottom:387.390000px;}
.y9d{bottom:389.010000px;}
.yef{bottom:390.990000px;}
.y119{bottom:391.350000px;}
.yc5{bottom:397.830000px;}
.y6d{bottom:398.190000px;}
.y145{bottom:399.990000px;}
.y34{bottom:401.655000px;}
.y19a{bottom:406.515000px;}
.y89{bottom:407.235000px;}
.y9c{bottom:408.855000px;}
.y118{bottom:411.195000px;}
.yc4{bottom:417.675000px;}
.y6c{bottom:418.035000px;}
.yee{bottom:419.835000px;}
.y33{bottom:421.455000px;}
.y199{bottom:426.495000px;}
.y88{bottom:427.035000px;}
.y9b{bottom:428.655000px;}
.y117{bottom:431.175000px;}
.yc3{bottom:437.475000px;}
.y6b{bottom:437.835000px;}
.yed{bottom:439.815000px;}
.y32{bottom:441.255000px;}
.y198{bottom:446.295000px;}
.y87{bottom:446.835000px;}
.y9a{bottom:448.635000px;}
.yc2{bottom:457.455000px;}
.y6a{bottom:457.815000px;}
.yec{bottom:459.615000px;}
.y116{bottom:459.975000px;}
.y31{bottom:461.055000px;}
.y197{bottom:466.095000px;}
.y86{bottom:466.815000px;}
.y99{bottom:468.435000px;}
.yc1{bottom:477.255000px;}
.y69{bottom:477.615000px;}
.yeb{bottom:479.415000px;}
.y115{bottom:479.775000px;}
.y30{bottom:480.855000px;}
.y196{bottom:485.895000px;}
.y85{bottom:486.615000px;}
.yc0{bottom:497.055000px;}
.y98{bottom:497.235000px;}
.y68{bottom:497.415000px;}
.yea{bottom:499.215000px;}
.y114{bottom:499.575000px;}
.y2f{bottom:500.835000px;}
.y195{bottom:505.695000px;}
.y84{bottom:506.415000px;}
.ybf{bottom:516.855000px;}
.y67{bottom:517.215000px;}
.ye9{bottom:519.015000px;}
.y113{bottom:519.375000px;}
.y2e{bottom:520.635000px;}
.y194{bottom:525.675000px;}
.y97{bottom:526.035000px;}
.y83{bottom:526.215000px;}
.ybe{bottom:536.655000px;}
.y66{bottom:537.015000px;}
.ye8{bottom:538.995000px;}
.y112{bottom:539.355000px;}
.y2d{bottom:540.435000px;}
.y193{bottom:545.475000px;}
.y96{bottom:545.835000px;}
.y82{bottom:546.015000px;}
.ybd{bottom:556.635000px;}
.y65{bottom:556.995000px;}
.ye7{bottom:558.795000px;}
.y111{bottom:559.155000px;}
.y2c{bottom:560.235000px;}
.y192{bottom:565.275000px;}
.y95{bottom:565.815000px;}
.y81{bottom:565.995000px;}
.y10{bottom:574.995000px;}
.ybc{bottom:576.435000px;}
.y64{bottom:576.795000px;}
.ye6{bottom:578.595000px;}
.y110{bottom:578.955000px;}
.y191{bottom:580.755000px;}
.y80{bottom:585.795000px;}
.ybb{bottom:596.235000px;}
.y63{bottom:596.595000px;}
.ye5{bottom:598.395000px;}
.y7f{bottom:605.595000px;}
.y10f{bottom:607.755000px;}
.yba{bottom:616.035000px;}
.y62{bottom:616.395000px;}
.ye4{bottom:618.195000px;}
.y7e{bottom:625.395000px;}
.y10e{bottom:627.555000px;}
.yb9{bottom:635.835000px;}
.y61{bottom:636.195000px;}
.y1ba{bottom:636.375000px;}
.y144{bottom:638.175000px;}
.y7d{bottom:645.195000px;}
.ye3{bottom:647.175000px;}
.y10d{bottom:647.535000px;}
.yb8{bottom:655.845000px;}
.y15b{bottom:656.205000px;}
.y143{bottom:658.005000px;}
.y60{bottom:665.205000px;}
.ye2{bottom:667.005000px;}
.y10c{bottom:667.365000px;}
.yb7{bottom:675.645000px;}
.y15a{bottom:676.005000px;}
.y142{bottom:677.805000px;}
.y18d{bottom:681.585000px;}
.y5f{bottom:685.005000px;}
.ye1{bottom:686.805000px;}
.y10b{bottom:687.165000px;}
.y159{bottom:695.805000px;}
.y141{bottom:697.605000px;}
.y1b9{bottom:698.685000px;}
.yb6{bottom:704.445000px;}
.y5e{bottom:704.805000px;}
.ye0{bottom:706.605000px;}
.y10a{bottom:706.965000px;}
.y158{bottom:715.605000px;}
.y140{bottom:717.405000px;}
.y1b8{bottom:718.485000px;}
.y5d{bottom:724.605000px;}
.ydf{bottom:726.405000px;}
.y109{bottom:726.765000px;}
.yb5{bottom:726.945000px;}
.y157{bottom:735.405000px;}
.y13f{bottom:737.385000px;}
.y1b7{bottom:738.465000px;}
.y5c{bottom:744.405000px;}
.yde{bottom:746.385000px;}
.y108{bottom:746.745000px;}
.yb4{bottom:749.625000px;}
.y156{bottom:755.385000px;}
.y13e{bottom:757.185000px;}
.y1b6{bottom:758.265000px;}
.y5b{bottom:764.385000px;}
.ydd{bottom:766.185000px;}
.y107{bottom:766.545000px;}
.yb3{bottom:772.305000px;}
.y155{bottom:775.185000px;}
.y13d{bottom:776.985000px;}
.y1b5{bottom:780.945000px;}
.y18b{bottom:782.205000px;}
.y5a{bottom:784.185000px;}
.ydc{bottom:785.985000px;}
.y106{bottom:786.345000px;}
.yb2{bottom:794.985000px;}
.y13c{bottom:796.785000px;}
.y1b4{bottom:800.745000px;}
.y59{bottom:803.985000px;}
.ydb{bottom:805.785000px;}
.y105{bottom:806.145000px;}
.yb1{bottom:814.785000px;}
.y1b3{bottom:823.425000px;}
.y58{bottom:823.785000px;}
.yda{bottom:825.585000px;}
.y104{bottom:825.945000px;}
.yb0{bottom:834.585000px;}
.y1b2{bottom:843.405000px;}
.y57{bottom:843.585000px;}
.y13b{bottom:845.565000px;}
.yaf{bottom:854.565000px;}
.y103{bottom:854.925000px;}
.y186{bottom:863.025000px;}
.y56{bottom:863.565000px;}
.y13a{bottom:865.365000px;}
.y1b1{bottom:866.085000px;}
.yae{bottom:874.365000px;}
.y102{bottom:874.725000px;}
.y55{bottom:883.365000px;}
.y139{bottom:885.165000px;}
.y1b0{bottom:885.885000px;}
.yf{bottom:886.065000px;}
.yad{bottom:894.165000px;}
.y101{bottom:897.405000px;}
.y54{bottom:903.210000px;}
.y138{bottom:905.010000px;}
.y1af{bottom:908.610000px;}
.ye{bottom:911.310000px;}
.yac{bottom:914.010000px;}
.y100{bottom:917.250000px;}
.y53{bottom:923.010000px;}
.yd{bottom:926.430000px;}
.y1ae{bottom:928.410000px;}
.yd9{bottom:933.810000px;}
.yff{bottom:939.930000px;}
.y52{bottom:942.810000px;}
.yc{bottom:947.670000px;}
.y1ad{bottom:951.270000px;}
.yd8{bottom:953.790000px;}
.yfe{bottom:959.910000px;}
.y51{bottom:962.790000px;}
.y180{bottom:963.690000px;}
.yb{bottom:971.070000px;}
.yd7{bottom:973.590000px;}
.y50{bottom:982.590000px;}
.y1ac{bottom:990.870000px;}
.yd6{bottom:993.390000px;}
.y4f{bottom:1002.390000px;}
.ya{bottom:1002.930000px;}
.y1ab{bottom:1010.670000px;}
.yd5{bottom:1013.190000px;}
.y4e{bottom:1022.190000px;}
.y8{bottom:1028.850000px;}
.y137{bottom:1032.990000px;}
.y1aa{bottom:1033.350000px;}
.y4d{bottom:1041.990000px;}
.y1{bottom:1044.870000px;}
.y136{bottom:1052.970000px;}
.y1a9{bottom:1053.330000px;}
.y4c{bottom:1061.970000px;}
.y135{bottom:1072.770000px;}
.y1a8{bottom:1076.010000px;}
.y4b{bottom:1081.770000px;}
.y17e{bottom:1090.230000px;}
.y1a7{bottom:1095.810000px;}
.y4a{bottom:1101.570000px;}
.y1a6{bottom:1115.610000px;}
.y49{bottom:1121.370000px;}
.y1a5{bottom:1138.290000px;}
.y48{bottom:1141.170000px;}
.y1a4{bottom:1158.300000px;}
.y47{bottom:1161.180000px;}
.y44{bottom:1191.060000px;}
.h5{height:2.010938px;}
.ha{height:27.147656px;}
.he{height:37.705078px;}
.hd{height:38.100586px;}
.h13{height:38.340000px;}
.h16{height:38.376000px;}
.hb{height:41.726953px;}
.h8{height:42.164648px;}
.h18{height:43.506914px;}
.h6{height:46.251562px;}
.hf{height:48.127500px;}
.h4{height:48.774375px;}
.h12{height:49.255313px;}
.h17{height:52.417969px;}
.h9{height:53.224453px;}
.h14{height:57.060000px;}
.h15{height:57.240000px;}
.h3{height:57.256875px;}
.h7{height:67.565039px;}
.h1e{height:79.380000px;}
.h1c{height:83.376000px;}
.h1f{height:99.180000px;}
.h1b{height:99.216000px;}
.h1a{height:103.860000px;}
.h19{height:104.616000px;}
.h11{height:111.043828px;}
.h1d{height:125.100000px;}
.h2{height:162.750000px;}
.h10{height:268.590000px;}
.hc{height:301.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:39.780000px;}
.w9{width:57.420000px;}
.wb{width:65.520000px;}
.wa{width:82.296000px;}
.wf{width:113.256000px;}
.w3{width:147.456000px;}
.we{width:149.076000px;}
.wc{width:156.810000px;}
.w10{width:164.550000px;}
.wd{width:166.170000px;}
.w6{width:217.875000px;}
.w8{width:386.715000px;}
.w5{width:563.685000px;}
.w2{width:633.930000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:6.840000px;}
.x2{left:8.100000px;}
.x1c{left:9.360000px;}
.x8{left:12.825000px;}
.xc{left:31.860000px;}
.x14{left:52.559987px;}
.x1{left:54.000000px;}
.x6{left:55.800000px;}
.x9{left:58.499987px;}
.x17{left:68.580000px;}
.x15{left:79.559987px;}
.x16{left:80.999987px;}
.x12{left:108.035987px;}
.xd{left:121.896000px;}
.x4{left:139.350000px;}
.x18{left:226.830000px;}
.xa{left:331.814987px;}
.x13{left:384.734987px;}
.x5{left:388.874987px;}
.x19{left:394.455000px;}
.xe{left:508.605000px;}
.x1a{left:545.145000px;}
.xf{left:566.025000px;}
.x7{left:619.485000px;}
.x10{left:623.445000px;}
.x1b{left:660.030000px;}
.x3{left:687.930000px;}
.x11{left:705.750000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2c{letter-spacing:-1.600000pt;}
.ls1a{letter-spacing:-1.509333pt;}
.ls21{letter-spacing:-1.232000pt;}
.ls23{letter-spacing:-1.184000pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls38{letter-spacing:-0.592000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls35{letter-spacing:-0.456533pt;}
.ls26{letter-spacing:-0.409067pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.225067pt;}
.lsf{letter-spacing:-0.183467pt;}
.ls1e{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.016640pt;}
.lse{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106667pt;}
.ls27{letter-spacing:0.120533pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.136320pt;}
.ls31{letter-spacing:0.136533pt;}
.ls15{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.183467pt;}
.ls11{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.272533pt;}
.ls17{letter-spacing:0.277120pt;}
.ls2a{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.334709pt;}
.ls33{letter-spacing:0.426667pt;}
.ls25{letter-spacing:0.480000pt;}
.ls2b{letter-spacing:0.592000pt;}
.ls1f{letter-spacing:0.688000pt;}
.ls37{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls29{letter-spacing:1.440000pt;}
.ls32{letter-spacing:2.080000pt;}
.ls22{letter-spacing:2.720000pt;}
.ls9{letter-spacing:3.360000pt;}
.ls16{letter-spacing:4.128000pt;}
.ls20{letter-spacing:4.608000pt;}
.ls34{letter-spacing:4.640000pt;}
.ls2f{letter-spacing:5.280000pt;}
.lsd{letter-spacing:5.920000pt;}
.ls1b{letter-spacing:6.560000pt;}
.ls2e{letter-spacing:10.400000pt;}
.ls36{letter-spacing:12.320000pt;}
.lsa{letter-spacing:13.600000pt;}
.ls30{letter-spacing:14.672640pt;}
.ls28{letter-spacing:40.912640pt;}
.ws0{word-spacing:-17.280000pt;}
.ws17{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.240000pt;}
.ws16{word-spacing:-13.968000pt;}
.ws1b{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws1d{word-spacing:-13.416533pt;}
.ws1a{word-spacing:-13.400533pt;}
.ws7{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws15{word-spacing:-13.185067pt;}
.wsa{word-spacing:-13.096533pt;}
.ws5{word-spacing:-13.054933pt;}
.ws12{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws19{word-spacing:-12.870933pt;}
.ws1e{word-spacing:-12.823467pt;}
.wsb{word-spacing:-12.736000pt;}
.ws1f{word-spacing:-12.688000pt;}
.wsd{word-spacing:-12.592000pt;}
.ws14{word-spacing:-12.320000pt;}
.ws18{word-spacing:-12.048000pt;}
.ws13{word-spacing:-11.770667pt;}
.ws1c{word-spacing:-11.680000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._19{margin-left:-470.709760pt;}
._3{margin-left:-441.269760pt;}
._4{margin-left:-5.287040pt;}
._12{margin-left:-4.298027pt;}
._5{margin-left:-3.240320pt;}
._6{margin-left:-1.998293pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._d{width:3.566720pt;}
._b{width:4.515200pt;}
._14{width:5.437440pt;}
._e{width:6.487467pt;}
._13{width:8.021120pt;}
._18{width:8.911573pt;}
._17{width:10.127360pt;}
._16{width:11.114240pt;}
._15{width:12.391040pt;}
._7{width:14.452907pt;}
._c{width:16.022400pt;}
._11{width:16.953387pt;}
._a{width:17.881600pt;}
._1a{width:18.989227pt;}
._1b{width:21.217920pt;}
._24{width:23.107200pt;}
._9{width:24.418560pt;}
._8{width:25.497600pt;}
._37{width:28.419200pt;}
._1d{width:30.489600pt;}
._1c{width:31.383467pt;}
._1e{width:33.007467pt;}
._f{width:35.265280pt;}
._23{width:38.022400pt;}
._29{width:39.096320pt;}
._32{width:42.602240pt;}
._2c{width:46.776960pt;}
._2f{width:47.701760pt;}
._2e{width:48.837120pt;}
._26{width:50.231680pt;}
._20{width:51.838293pt;}
._2d{width:53.244587pt;}
._22{width:60.416427pt;}
._31{width:61.406507pt;}
._2a{width:66.269440pt;}
._38{width:70.065280pt;}
._36{width:73.126400pt;}
._21{width:75.203627pt;}
._33{width:76.511360pt;}
._27{width:83.239040pt;}
._1f{width:85.807360pt;}
._2b{width:97.228160pt;}
._30{width:98.312747pt;}
._25{width:107.330347pt;}
._35{width:112.169600pt;}
._34{width:157.228587pt;}
._10{width:194.917120pt;}
._28{width:225.933867pt;}
._39{width:231.125120pt;}
.fs2{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.fs9{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.640000pt;}
.y18a{bottom:5.120000pt;}
.y2b{bottom:5.280000pt;}
.y1e{bottom:8.800000pt;}
.y17a{bottom:9.280000pt;}
.y46{bottom:9.600000pt;}
.y175{bottom:9.920000pt;}
.y185{bottom:10.560000pt;}
.y6{bottom:12.640000pt;}
.y8d{bottom:21.600000pt;}
.y18c{bottom:22.720000pt;}
.y2a{bottom:22.880000pt;}
.y1d{bottom:26.400000pt;}
.y179{bottom:27.040000pt;}
.y174{bottom:27.520000pt;}
.y184{bottom:28.160000pt;}
.y8f{bottom:38.240000pt;}
.y92{bottom:38.400000pt;}
.y190{bottom:40.320000pt;}
.y29{bottom:40.480000pt;}
.y17d{bottom:40.506667pt;}
.y189{bottom:40.520000pt;}
.y5{bottom:40.640000pt;}
.y1c{bottom:44.000000pt;}
.y178{bottom:44.640000pt;}
.y173{bottom:45.120000pt;}
.y183{bottom:45.760000pt;}
.y18f{bottom:57.920000pt;}
.y28{bottom:58.080000pt;}
.y17c{bottom:58.106667pt;}
.y188{bottom:58.120000pt;}
.y9{bottom:58.720000pt;}
.y1b{bottom:61.600000pt;}
.y17f{bottom:61.626667pt;}
.y177{bottom:62.240000pt;}
.y172{bottom:62.880000pt;}
.y182{bottom:63.360000pt;}
.y4{bottom:68.800000pt;}
.y45{bottom:69.760000pt;}
.y18e{bottom:75.680000pt;}
.y27{bottom:75.706667pt;}
.y187{bottom:75.720000pt;}
.y1a{bottom:79.226667pt;}
.y16f{bottom:79.840000pt;}
.y171{bottom:80.520000pt;}
.y181{bottom:80.960000pt;}
.yd4{bottom:81.120000pt;}
.y7c{bottom:81.440000pt;}
.yab{bottom:82.880000pt;}
.y127{bottom:83.360000pt;}
.y43{bottom:84.480000pt;}
.y94{bottom:88.480000pt;}
.y134{bottom:89.440000pt;}
.y164{bottom:89.920000pt;}
.y154{bottom:91.040000pt;}
.y26{bottom:92.986667pt;}
.y1a3{bottom:94.240000pt;}
.y17b{bottom:96.800000pt;}
.y3{bottom:96.986667pt;}
.y16e{bottom:97.440000pt;}
.yd3{bottom:98.720000pt;}
.y7b{bottom:99.040000pt;}
.yaa{bottom:100.480000pt;}
.yfd{bottom:100.640000pt;}
.y93{bottom:100.960000pt;}
.y42{bottom:102.080000pt;}
.y133{bottom:107.040000pt;}
.y163{bottom:107.520000pt;}
.y153{bottom:108.640000pt;}
.y25{bottom:108.826667pt;}
.y1a2{bottom:114.560000pt;}
.y19{bottom:114.586667pt;}
.y16d{bottom:115.040000pt;}
.yd2{bottom:116.320000pt;}
.y7a{bottom:116.640000pt;}
.ya9{bottom:118.240000pt;}
.yfc{bottom:118.400000pt;}
.y126{bottom:118.720000pt;}
.y41{bottom:119.680000pt;}
.y132{bottom:124.640000pt;}
.y24{bottom:124.666667pt;}
.y162{bottom:125.120000pt;}
.y152{bottom:126.400000pt;}
.y2{bottom:126.426667pt;}
.y1a1{bottom:132.160000pt;}
.y18{bottom:132.186667pt;}
.y16c{bottom:132.640000pt;}
.yd1{bottom:134.080000pt;}
.y79{bottom:134.400000pt;}
.y91{bottom:135.066667pt;}
.ya8{bottom:135.866667pt;}
.yfb{bottom:136.026667pt;}
.y125{bottom:136.346667pt;}
.y40{bottom:137.306667pt;}
.y23{bottom:140.506667pt;}
.y131{bottom:142.426667pt;}
.y161{bottom:142.746667pt;}
.y151{bottom:144.026667pt;}
.y17{bottom:149.786667pt;}
.y16b{bottom:150.426667pt;}
.yd0{bottom:151.706667pt;}
.y78{bottom:152.026667pt;}
.yfa{bottom:153.626667pt;}
.y124{bottom:153.946667pt;}
.y3f{bottom:154.906667pt;}
.y22{bottom:156.346667pt;}
.y130{bottom:160.026667pt;}
.y160{bottom:160.346667pt;}
.ya7{bottom:161.466667pt;}
.y150{bottom:161.626667pt;}
.y16{bottom:167.386667pt;}
.y16a{bottom:168.026667pt;}
.ycf{bottom:169.306667pt;}
.y77{bottom:169.626667pt;}
.yf9{bottom:171.226667pt;}
.y123{bottom:171.546667pt;}
.y21{bottom:172.186667pt;}
.y3e{bottom:172.666667pt;}
.y12f{bottom:177.626667pt;}
.y15f{bottom:178.106667pt;}
.ya6{bottom:179.066667pt;}
.y14f{bottom:179.226667pt;}
.y1a0{bottom:184.986667pt;}
.y15{bottom:185.146667pt;}
.y169{bottom:185.626667pt;}
.y90{bottom:185.946667pt;}
.y176{bottom:186.426667pt;}
.yce{bottom:186.906667pt;}
.y76{bottom:187.226667pt;}
.y20{bottom:188.186667pt;}
.yf8{bottom:188.826667pt;}
.y122{bottom:189.146667pt;}
.y3d{bottom:190.266667pt;}
.y12e{bottom:195.226667pt;}
.ya5{bottom:196.666667pt;}
.y14e{bottom:196.826667pt;}
.y14{bottom:202.746667pt;}
.y168{bottom:203.226667pt;}
.y1f{bottom:204.026667pt;}
.ycd{bottom:204.506667pt;}
.y75{bottom:204.826667pt;}
.yf7{bottom:206.586667pt;}
.y121{bottom:206.906667pt;}
.y3c{bottom:207.866667pt;}
.y12d{bottom:212.826667pt;}
.ya4{bottom:214.426667pt;}
.y14d{bottom:214.586667pt;}
.y13{bottom:220.346667pt;}
.y167{bottom:220.826667pt;}
.ycc{bottom:222.266667pt;}
.y74{bottom:222.586667pt;}
.yf6{bottom:224.186667pt;}
.y120{bottom:224.506667pt;}
.y3b{bottom:225.466667pt;}
.y12c{bottom:230.586667pt;}
.ya3{bottom:232.026667pt;}
.y14c{bottom:232.186667pt;}
.y8e{bottom:236.666667pt;}
.y12{bottom:237.946667pt;}
.y166{bottom:238.586667pt;}
.ycb{bottom:239.866667pt;}
.y73{bottom:240.186667pt;}
.yf5{bottom:241.786667pt;}
.y11f{bottom:242.106667pt;}
.y3a{bottom:243.066667pt;}
.y12b{bottom:248.186667pt;}
.ya2{bottom:249.626667pt;}
.y14b{bottom:249.786667pt;}
.y11{bottom:255.546667pt;}
.y165{bottom:256.186667pt;}
.yca{bottom:257.466667pt;}
.y72{bottom:257.786667pt;}
.yf4{bottom:259.386667pt;}
.y11e{bottom:259.706667pt;}
.y39{bottom:260.826667pt;}
.y15e{bottom:265.786667pt;}
.ya1{bottom:267.226667pt;}
.y14a{bottom:267.386667pt;}
.y19f{bottom:273.146667pt;}
.y12a{bottom:273.786667pt;}
.y71{bottom:275.386667pt;}
.yf3{bottom:276.986667pt;}
.y11d{bottom:277.306667pt;}
.y38{bottom:278.426667pt;}
.y170{bottom:280.186667pt;}
.yc9{bottom:283.066667pt;}
.y15d{bottom:283.386667pt;}
.y149{bottom:284.986667pt;}
.y8c{bottom:287.386667pt;}
.y19e{bottom:290.906667pt;}
.y129{bottom:291.386667pt;}
.ya0{bottom:292.826667pt;}
.y70{bottom:292.986667pt;}
.yf2{bottom:294.746667pt;}
.y11c{bottom:295.066667pt;}
.y37{bottom:296.026667pt;}
.yc8{bottom:300.666667pt;}
.y15c{bottom:300.986667pt;}
.y148{bottom:302.746667pt;}
.y19d{bottom:308.506667pt;}
.y128{bottom:308.986667pt;}
.y9f{bottom:310.586667pt;}
.yf1{bottom:312.346667pt;}
.y11b{bottom:312.666667pt;}
.yc7{bottom:318.426667pt;}
.y6f{bottom:318.746667pt;}
.y147{bottom:320.346667pt;}
.y36{bottom:321.626667pt;}
.y19c{bottom:326.106667pt;}
.y8b{bottom:326.746667pt;}
.y9e{bottom:328.186667pt;}
.yf0{bottom:329.946667pt;}
.y11a{bottom:330.266667pt;}
.yc6{bottom:336.026667pt;}
.y6e{bottom:336.346667pt;}
.y146{bottom:337.946667pt;}
.y35{bottom:339.226667pt;}
.y19b{bottom:343.706667pt;}
.y8a{bottom:344.346667pt;}
.y9d{bottom:345.786667pt;}
.yef{bottom:347.546667pt;}
.y119{bottom:347.866667pt;}
.yc5{bottom:353.626667pt;}
.y6d{bottom:353.946667pt;}
.y145{bottom:355.546667pt;}
.y34{bottom:357.026667pt;}
.y19a{bottom:361.346667pt;}
.y89{bottom:361.986667pt;}
.y9c{bottom:363.426667pt;}
.y118{bottom:365.506667pt;}
.yc4{bottom:371.266667pt;}
.y6c{bottom:371.586667pt;}
.yee{bottom:373.186667pt;}
.y33{bottom:374.626667pt;}
.y199{bottom:379.106667pt;}
.y88{bottom:379.586667pt;}
.y9b{bottom:381.026667pt;}
.y117{bottom:383.266667pt;}
.yc3{bottom:388.866667pt;}
.y6b{bottom:389.186667pt;}
.yed{bottom:390.946667pt;}
.y32{bottom:392.226667pt;}
.y198{bottom:396.706667pt;}
.y87{bottom:397.186667pt;}
.y9a{bottom:398.786667pt;}
.yc2{bottom:406.626667pt;}
.y6a{bottom:406.946667pt;}
.yec{bottom:408.546667pt;}
.y116{bottom:408.866667pt;}
.y31{bottom:409.826667pt;}
.y197{bottom:414.306667pt;}
.y86{bottom:414.946667pt;}
.y99{bottom:416.386667pt;}
.yc1{bottom:424.226667pt;}
.y69{bottom:424.546667pt;}
.yeb{bottom:426.146667pt;}
.y115{bottom:426.466667pt;}
.y30{bottom:427.426667pt;}
.y196{bottom:431.906667pt;}
.y85{bottom:432.546667pt;}
.yc0{bottom:441.826667pt;}
.y98{bottom:441.986667pt;}
.y68{bottom:442.146667pt;}
.yea{bottom:443.746667pt;}
.y114{bottom:444.066667pt;}
.y2f{bottom:445.186667pt;}
.y195{bottom:449.506667pt;}
.y84{bottom:450.146667pt;}
.ybf{bottom:459.426667pt;}
.y67{bottom:459.746667pt;}
.ye9{bottom:461.346667pt;}
.y113{bottom:461.666667pt;}
.y2e{bottom:462.786667pt;}
.y194{bottom:467.266667pt;}
.y97{bottom:467.586667pt;}
.y83{bottom:467.746667pt;}
.ybe{bottom:477.026667pt;}
.y66{bottom:477.346667pt;}
.ye8{bottom:479.106667pt;}
.y112{bottom:479.426667pt;}
.y2d{bottom:480.386667pt;}
.y193{bottom:484.866667pt;}
.y96{bottom:485.186667pt;}
.y82{bottom:485.346667pt;}
.ybd{bottom:494.786667pt;}
.y65{bottom:495.106667pt;}
.ye7{bottom:496.706667pt;}
.y111{bottom:497.026667pt;}
.y2c{bottom:497.986667pt;}
.y192{bottom:502.466667pt;}
.y95{bottom:502.946667pt;}
.y81{bottom:503.106667pt;}
.y10{bottom:511.106667pt;}
.ybc{bottom:512.386667pt;}
.y64{bottom:512.706667pt;}
.ye6{bottom:514.306667pt;}
.y110{bottom:514.626667pt;}
.y191{bottom:516.226667pt;}
.y80{bottom:520.706667pt;}
.ybb{bottom:529.986667pt;}
.y63{bottom:530.306667pt;}
.ye5{bottom:531.906667pt;}
.y7f{bottom:538.306667pt;}
.y10f{bottom:540.226667pt;}
.yba{bottom:547.586667pt;}
.y62{bottom:547.906667pt;}
.ye4{bottom:549.506667pt;}
.y7e{bottom:555.906667pt;}
.y10e{bottom:557.826667pt;}
.yb9{bottom:565.186667pt;}
.y61{bottom:565.506667pt;}
.y1ba{bottom:565.666667pt;}
.y144{bottom:567.266667pt;}
.y7d{bottom:573.506667pt;}
.ye3{bottom:575.266667pt;}
.y10d{bottom:575.586667pt;}
.yb8{bottom:582.973333pt;}
.y15b{bottom:583.293333pt;}
.y143{bottom:584.893333pt;}
.y60{bottom:591.293333pt;}
.ye2{bottom:592.893333pt;}
.y10c{bottom:593.213333pt;}
.yb7{bottom:600.573333pt;}
.y15a{bottom:600.893333pt;}
.y142{bottom:602.493333pt;}
.y18d{bottom:605.853333pt;}
.y5f{bottom:608.893333pt;}
.ye1{bottom:610.493333pt;}
.y10b{bottom:610.813333pt;}
.y159{bottom:618.493333pt;}
.y141{bottom:620.093333pt;}
.y1b9{bottom:621.053333pt;}
.yb6{bottom:626.173333pt;}
.y5e{bottom:626.493333pt;}
.ye0{bottom:628.093333pt;}
.y10a{bottom:628.413333pt;}
.y158{bottom:636.093333pt;}
.y140{bottom:637.693333pt;}
.y1b8{bottom:638.653333pt;}
.y5d{bottom:644.093333pt;}
.ydf{bottom:645.693333pt;}
.y109{bottom:646.013333pt;}
.yb5{bottom:646.173333pt;}
.y157{bottom:653.693333pt;}
.y13f{bottom:655.453333pt;}
.y1b7{bottom:656.413333pt;}
.y5c{bottom:661.693333pt;}
.yde{bottom:663.453333pt;}
.y108{bottom:663.773333pt;}
.yb4{bottom:666.333333pt;}
.y156{bottom:671.453333pt;}
.y13e{bottom:673.053333pt;}
.y1b6{bottom:674.013333pt;}
.y5b{bottom:679.453333pt;}
.ydd{bottom:681.053333pt;}
.y107{bottom:681.373333pt;}
.yb3{bottom:686.493333pt;}
.y155{bottom:689.053333pt;}
.y13d{bottom:690.653333pt;}
.y1b5{bottom:694.173333pt;}
.y18b{bottom:695.293333pt;}
.y5a{bottom:697.053333pt;}
.ydc{bottom:698.653333pt;}
.y106{bottom:698.973333pt;}
.yb2{bottom:706.653333pt;}
.y13c{bottom:708.253333pt;}
.y1b4{bottom:711.773333pt;}
.y59{bottom:714.653333pt;}
.ydb{bottom:716.253333pt;}
.y105{bottom:716.573333pt;}
.yb1{bottom:724.253333pt;}
.y1b3{bottom:731.933333pt;}
.y58{bottom:732.253333pt;}
.yda{bottom:733.853333pt;}
.y104{bottom:734.173333pt;}
.yb0{bottom:741.853333pt;}
.y1b2{bottom:749.693333pt;}
.y57{bottom:749.853333pt;}
.y13b{bottom:751.613333pt;}
.yaf{bottom:759.613333pt;}
.y103{bottom:759.933333pt;}
.y186{bottom:767.133333pt;}
.y56{bottom:767.613333pt;}
.y13a{bottom:769.213333pt;}
.y1b1{bottom:769.853333pt;}
.yae{bottom:777.213333pt;}
.y102{bottom:777.533333pt;}
.y55{bottom:785.213333pt;}
.y139{bottom:786.813333pt;}
.y1b0{bottom:787.453333pt;}
.yf{bottom:787.613333pt;}
.yad{bottom:794.813333pt;}
.y101{bottom:797.693333pt;}
.y54{bottom:802.853333pt;}
.y138{bottom:804.453333pt;}
.y1af{bottom:807.653333pt;}
.ye{bottom:810.053333pt;}
.yac{bottom:812.453333pt;}
.y100{bottom:815.333333pt;}
.y53{bottom:820.453333pt;}
.yd{bottom:823.493333pt;}
.y1ae{bottom:825.253333pt;}
.yd9{bottom:830.053333pt;}
.yff{bottom:835.493333pt;}
.y52{bottom:838.053333pt;}
.yc{bottom:842.373333pt;}
.y1ad{bottom:845.573333pt;}
.yd8{bottom:847.813333pt;}
.yfe{bottom:853.253333pt;}
.y51{bottom:855.813333pt;}
.y180{bottom:856.613333pt;}
.yb{bottom:863.173333pt;}
.yd7{bottom:865.413333pt;}
.y50{bottom:873.413333pt;}
.y1ac{bottom:880.773333pt;}
.yd6{bottom:883.013333pt;}
.y4f{bottom:891.013333pt;}
.ya{bottom:891.493333pt;}
.y1ab{bottom:898.373333pt;}
.yd5{bottom:900.613333pt;}
.y4e{bottom:908.613333pt;}
.y8{bottom:914.533333pt;}
.y137{bottom:918.213333pt;}
.y1aa{bottom:918.533333pt;}
.y4d{bottom:926.213333pt;}
.y1{bottom:928.773333pt;}
.y136{bottom:935.973333pt;}
.y1a9{bottom:936.293333pt;}
.y4c{bottom:943.973333pt;}
.y135{bottom:953.573333pt;}
.y1a8{bottom:956.453333pt;}
.y4b{bottom:961.573333pt;}
.y17e{bottom:969.093333pt;}
.y1a7{bottom:974.053333pt;}
.y4a{bottom:979.173333pt;}
.y1a6{bottom:991.653333pt;}
.y49{bottom:996.773333pt;}
.y1a5{bottom:1011.813333pt;}
.y48{bottom:1014.373333pt;}
.y1a4{bottom:1029.600000pt;}
.y47{bottom:1032.160000pt;}
.y44{bottom:1058.720000pt;}
.h5{height:1.787500pt;}
.ha{height:24.131250pt;}
.he{height:33.515625pt;}
.hd{height:33.867188pt;}
.h13{height:34.080000pt;}
.h16{height:34.112000pt;}
.hb{height:37.090625pt;}
.h8{height:37.479688pt;}
.h18{height:38.672812pt;}
.h6{height:41.112500pt;}
.hf{height:42.780000pt;}
.h4{height:43.355000pt;}
.h12{height:43.782500pt;}
.h17{height:46.593750pt;}
.h9{height:47.310625pt;}
.h14{height:50.720000pt;}
.h15{height:50.880000pt;}
.h3{height:50.895000pt;}
.h7{height:60.057813pt;}
.h1e{height:70.560000pt;}
.h1c{height:74.112000pt;}
.h1f{height:88.160000pt;}
.h1b{height:88.192000pt;}
.h1a{height:92.320000pt;}
.h19{height:92.992000pt;}
.h11{height:98.705625pt;}
.h1d{height:111.200000pt;}
.h2{height:144.666667pt;}
.h10{height:238.746667pt;}
.hc{height:268.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:35.360000pt;}
.w9{width:51.040000pt;}
.wb{width:58.240000pt;}
.wa{width:73.152000pt;}
.wf{width:100.672000pt;}
.w3{width:131.072000pt;}
.we{width:132.512000pt;}
.wc{width:139.386667pt;}
.w10{width:146.266667pt;}
.wd{width:147.706667pt;}
.w6{width:193.666667pt;}
.w8{width:343.746667pt;}
.w5{width:501.053333pt;}
.w2{width:563.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.080000pt;}
.x2{left:7.200000pt;}
.x1c{left:8.320000pt;}
.x8{left:11.400000pt;}
.xc{left:28.320000pt;}
.x14{left:46.719988pt;}
.x1{left:48.000000pt;}
.x6{left:49.600000pt;}
.x9{left:51.999988pt;}
.x17{left:60.960000pt;}
.x15{left:70.719988pt;}
.x16{left:71.999988pt;}
.x12{left:96.031988pt;}
.xd{left:108.352000pt;}
.x4{left:123.866667pt;}
.x18{left:201.626667pt;}
.xa{left:294.946655pt;}
.x13{left:341.986655pt;}
.x5{left:345.666655pt;}
.x19{left:350.626667pt;}
.xe{left:452.093333pt;}
.x1a{left:484.573333pt;}
.xf{left:503.133333pt;}
.x7{left:550.653333pt;}
.x10{left:554.173333pt;}
.x1b{left:586.693333pt;}
.x3{left:611.493333pt;}
.x11{left:627.333333pt;}
}




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