
    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_ca4a5267f450b791295497cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_fb206b9a1366a31dc471720d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_be00c74e721c955ccf1c48bf.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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_32de21713fa7bc6ac371cdf4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_45c8570a27eb6648ff8da79b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_8a389d4d0e3db8ff11837009.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_ea9dcddfed234f98b836b9ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024414;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_9cb9f8399883f28d106d93f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.024414;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_7ec0d273d10707a80a86852f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;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_9572f4d0f79f72f27168a190.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_ca0938845c0e8b71efe22b56.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939453;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0296c43257bcb90a5bf344f8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.270600px;}
.ls18{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.054000px;}
.ls14{letter-spacing:-0.000003px;}
.ls13{letter-spacing:-0.000001px;}
.lsd{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.036000px;}
.ls12{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.090000px;}
.ls5{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.126000px;}
.ls1a{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.198000px;}
.ls1d{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.252000px;}
.ls0{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.342000px;}
.ls4{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.396000px;}
.ls1b{letter-spacing:55.386720px;}
.ls19{letter-spacing:64.002720px;}
.lsc{letter-spacing:849.216000px;}
.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;}
}
.ws13{word-spacing:-59.760000px;}
.ws11{word-spacing:-54.000000px;}
.ws1{word-spacing:-48.240000px;}
.ws3{word-spacing:-15.840000px;}
.ws6{word-spacing:-13.896000px;}
.wsc{word-spacing:-13.878000px;}
.ws12{word-spacing:-13.860000px;}
.wse{word-spacing:-13.824000px;}
.wsd{word-spacing:-13.752000px;}
.ws14{word-spacing:-13.716000px;}
.ws7{word-spacing:-13.554000px;}
.wsb{word-spacing:-13.536000px;}
.ws5{word-spacing:-13.518000px;}
.ws4{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.499999px;}
.ws9{word-spacing:-13.499997px;}
.wsa{word-spacing:-13.446000px;}
.wsf{word-spacing:-13.284000px;}
.ws0{word-spacing:-10.612800px;}
.ws2{word-spacing:-10.342200px;}
.ws10{word-spacing:0.000000px;}
._23{margin-left:-3.510000px;}
._2{margin-left:-2.178000px;}
._0{margin-left:-1.022400px;}
._1{width:1.426080px;}
._4{width:2.844000px;}
._6{width:6.668400px;}
._5{width:8.478000px;}
._9{width:10.680720px;}
._8{width:11.772000px;}
._24{width:15.551948px;}
._3{width:16.590006px;}
._1f{width:17.802000px;}
._c{width:19.242000px;}
._b{width:20.932320px;}
._a{width:22.188000px;}
._21{width:23.214000px;}
._20{width:24.792000px;}
._22{width:31.266000px;}
._1a{width:33.006000px;}
._1e{width:34.290000px;}
._f{width:42.800400px;}
._1d{width:46.236000px;}
._d{width:47.876400px;}
._1b{width:55.146000px;}
._17{width:64.056000px;}
._18{width:77.934000px;}
._19{width:78.964320px;}
._1c{width:116.814000px;}
._10{width:142.160400px;}
._11{width:148.316400px;}
._e{width:149.396400px;}
._16{width:186.570000px;}
._7{width:850.656000px;}
._14{width:906.444000px;}
._12{width:928.044000px;}
._13{width:941.004000px;}
._15{width:1000.026000px;}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:33.120000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y82{bottom:3.960000px;}
.y108{bottom:4.140000px;}
.y26{bottom:5.220000px;}
.y41{bottom:5.400000px;}
.y17{bottom:12.780000px;}
.y19{bottom:12.960000px;}
.y46{bottom:14.220000px;}
.y33{bottom:23.040000px;}
.y40{bottom:23.220000px;}
.y12a{bottom:23.394000px;}
.y107{bottom:23.580000px;}
.y1c{bottom:30.060000px;}
.y1e{bottom:30.240000px;}
.y49{bottom:31.860000px;}
.y44{bottom:32.040000px;}
.y51{bottom:40.854000px;}
.y32{bottom:40.860000px;}
.y3f{bottom:41.040000px;}
.y106{bottom:43.014000px;}
.y134{bottom:43.020000px;}
.y31{bottom:58.725000px;}
.y50{bottom:58.854000px;}
.y3a{bottom:58.860000px;}
.y129{bottom:62.454000px;}
.y133{bottom:62.460000px;}
.y105{bottom:62.634000px;}
.y4b{bottom:67.674000px;}
.y35{bottom:67.680000px;}
.y42{bottom:67.860000px;}
.y30{bottom:76.545000px;}
.y4f{bottom:76.674000px;}
.y39{bottom:76.680000px;}
.y128{bottom:81.894000px;}
.y104{bottom:82.074000px;}
.y132{bottom:82.080000px;}
.y4e{bottom:94.494000px;}
.y38{bottom:94.500000px;}
.y3e{bottom:94.530000px;}
.y2f{bottom:94.545000px;}
.y78{bottom:94.680000px;}
.y103{bottom:101.514000px;}
.y131{bottom:101.520000px;}
.y4d{bottom:112.314000px;}
.y37{bottom:112.320000px;}
.yae{bottom:112.356000px;}
.y28{bottom:112.365000px;}
.y77{bottom:112.500000px;}
.y3d{bottom:112.530000px;}
.y4a{bottom:117.396000px;}
.y127{bottom:120.954000px;}
.y130{bottom:120.960000px;}
.y102{bottom:121.134000px;}
.yda{bottom:122.796000px;}
.y4c{bottom:130.134000px;}
.y36{bottom:130.140000px;}
.y2e{bottom:130.185000px;}
.y76{bottom:130.320000px;}
.y3c{bottom:130.350000px;}
.yad{bottom:132.696000px;}
.y126{bottom:140.394000px;}
.y101{bottom:140.574000px;}
.y12f{bottom:140.580000px;}
.y109{bottom:143.136000px;}
.y2d{bottom:148.005000px;}
.y75{bottom:148.185000px;}
.y7b{bottom:150.510000px;}
.yac{bottom:152.850000px;}
.y100{bottom:160.014000px;}
.y12e{bottom:160.020000px;}
.y2c{bottom:165.825000px;}
.y74{bottom:166.005000px;}
.y7a{bottom:168.690000px;}
.yab{bottom:173.190000px;}
.y21{bottom:178.590000px;}
.y12d{bottom:179.460000px;}
.y125{bottom:179.499000px;}
.yff{bottom:179.634000px;}
.y2b{bottom:183.825000px;}
.y54{bottom:184.890000px;}
.yd8{bottom:188.130000px;}
.yaa{bottom:193.350000px;}
.y20{bottom:196.950000px;}
.y124{bottom:198.939000px;}
.y12c{bottom:199.080000px;}
.yfe{bottom:199.119000px;}
.y2a{bottom:201.645000px;}
.y73{bottom:201.825000px;}
.yd7{bottom:206.310000px;}
.y1f{bottom:213.150000px;}
.ya9{bottom:213.690000px;}
.yfd{bottom:218.559000px;}
.y29{bottom:219.465000px;}
.y72{bottom:219.645000px;}
.yd6{bottom:225.930000px;}
.ya8{bottom:233.850000px;}
.y71{bottom:237.465000px;}
.y123{bottom:237.999000px;}
.yfc{bottom:238.179000px;}
.yd5{bottom:245.370000px;}
.ya7{bottom:254.010000px;}
.y70{bottom:255.285000px;}
.y122{bottom:257.439000px;}
.yfb{bottom:257.619000px;}
.y48{bottom:261.030000px;}
.yd4{bottom:264.810000px;}
.y6f{bottom:273.105000px;}
.ya6{bottom:274.350000px;}
.y1d{bottom:275.430000px;}
.yfa{bottom:277.059000px;}
.yd3{bottom:284.430000px;}
.y6e{bottom:291.105000px;}
.ya5{bottom:294.510000px;}
.y121{bottom:296.499000px;}
.yf9{bottom:296.679000px;}
.yd2{bottom:303.870000px;}
.y6d{bottom:308.925000px;}
.ya4{bottom:314.850000px;}
.y120{bottom:315.939000px;}
.yf8{bottom:316.119000px;}
.ya3{bottom:318.675000px;}
.yd1{bottom:323.355000px;}
.y6c{bottom:326.745000px;}
.y47{bottom:333.075000px;}
.ya2{bottom:335.055000px;}
.yf7{bottom:335.559000px;}
.y1b{bottom:337.935000px;}
.yd0{bottom:342.975000px;}
.y6b{bottom:344.565000px;}
.y11f{bottom:354.999000px;}
.yf6{bottom:355.179000px;}
.y56{bottom:362.385000px;}
.ycf{bottom:362.415000px;}
.y45{bottom:369.615000px;}
.y79{bottom:371.385000px;}
.ya1{bottom:372.135000px;}
.y11e{bottom:374.439000px;}
.yf5{bottom:374.619000px;}
.y55{bottom:380.205000px;}
.yce{bottom:381.855000px;}
.ya0{bottom:391.575000px;}
.yf4{bottom:394.059000px;}
.y6a{bottom:398.235000px;}
.y1a{bottom:400.215000px;}
.ycd{bottom:401.475000px;}
.y43{bottom:405.975000px;}
.y9f{bottom:411.195000px;}
.y11d{bottom:413.499000px;}
.yf3{bottom:413.679000px;}
.y69{bottom:416.055000px;}
.ycc{bottom:420.915000px;}
.y9e{bottom:430.635000px;}
.y11c{bottom:432.969000px;}
.yf2{bottom:433.119000px;}
.y68{bottom:433.875000px;}
.ycb{bottom:440.355000px;}
.y18{bottom:445.215000px;}
.y9d{bottom:450.075000px;}
.y67{bottom:451.695000px;}
.yf1{bottom:452.589000px;}
.yca{bottom:459.975000px;}
.y66{bottom:469.515000px;}
.y9c{bottom:469.695000px;}
.y11b{bottom:472.029000px;}
.yf0{bottom:472.209000px;}
.y3b{bottom:478.155000px;}
.yc9{bottom:479.415000px;}
.y65{bottom:487.515000px;}
.y9b{bottom:489.135000px;}
.y16{bottom:490.395000px;}
.y11a{bottom:491.469000px;}
.yef{bottom:491.649000px;}
.yc8{bottom:498.855000px;}
.y64{bottom:505.335000px;}
.y9a{bottom:508.575000px;}
.yee{bottom:511.089000px;}
.yc7{bottom:518.475000px;}
.y63{bottom:523.155000px;}
.y99{bottom:528.195000px;}
.y119{bottom:530.529000px;}
.yed{bottom:530.709000px;}
.yc6{bottom:537.915000px;}
.y62{bottom:540.975000px;}
.y98{bottom:547.635000px;}
.y15{bottom:548.175000px;}
.y118{bottom:549.969000px;}
.yec{bottom:550.149000px;}
.yc5{bottom:557.355000px;}
.y61{bottom:558.795000px;}
.y14{bottom:565.455000px;}
.y97{bottom:567.075000px;}
.yeb{bottom:569.589000px;}
.y60{bottom:576.615000px;}
.yc4{bottom:577.005000px;}
.y13{bottom:582.945000px;}
.y96{bottom:586.725000px;}
.y117{bottom:589.029000px;}
.yea{bottom:589.209000px;}
.y5f{bottom:594.615000px;}
.yc3{bottom:596.445000px;}
.y95{bottom:606.165000px;}
.y116{bottom:608.469000px;}
.ye9{bottom:608.649000px;}
.y5e{bottom:612.435000px;}
.yc2{bottom:615.885000px;}
.y12{bottom:617.325000px;}
.y34{bottom:621.825000px;}
.y94{bottom:625.605000px;}
.ye8{bottom:628.089000px;}
.y5d{bottom:630.255000px;}
.yc1{bottom:635.505000px;}
.y11{bottom:636.225000px;}
.y93{bottom:645.225000px;}
.y115{bottom:647.529000px;}
.ye7{bottom:647.709000px;}
.y5c{bottom:648.120000px;}
.yc0{bottom:654.945000px;}
.y10{bottom:656.025000px;}
.y92{bottom:664.665000px;}
.y5b{bottom:665.940000px;}
.y114{bottom:666.969000px;}
.ye6{bottom:667.149000px;}
.ybf{bottom:674.385000px;}
.yf{bottom:680.145000px;}
.y5a{bottom:683.940000px;}
.y91{bottom:684.105000px;}
.ye5{bottom:686.589000px;}
.y113{bottom:686.634000px;}
.ybe{bottom:694.005000px;}
.y59{bottom:701.760000px;}
.y90{bottom:703.725000px;}
.ye{bottom:704.265000px;}
.y112{bottom:706.074000px;}
.ye4{bottom:706.254000px;}
.ybd{bottom:713.445000px;}
.y58{bottom:719.580000px;}
.y8f{bottom:723.165000px;}
.y111{bottom:725.514000px;}
.ye3{bottom:725.694000px;}
.yd{bottom:728.205000px;}
.ybc{bottom:732.885000px;}
.y57{bottom:737.400000px;}
.y8e{bottom:742.605000px;}
.ye2{bottom:745.134000px;}
.yc{bottom:749.445000px;}
.ybb{bottom:752.505000px;}
.y8d{bottom:758.985000px;}
.y110{bottom:764.574000px;}
.ye1{bottom:764.754000px;}
.y27{bottom:765.465000px;}
.y139{bottom:770.505000px;}
.yba{bottom:771.945000px;}
.yb{bottom:778.065000px;}
.y8c{bottom:779.145000px;}
.y10f{bottom:784.014000px;}
.ye0{bottom:784.194000px;}
.y138{bottom:789.945000px;}
.yb9{bottom:791.385000px;}
.ya{bottom:797.685000px;}
.y8b{bottom:799.485000px;}
.ydf{bottom:803.634000px;}
.y137{bottom:809.385000px;}
.yb8{bottom:811.005000px;}
.y8a{bottom:819.690000px;}
.y9{bottom:821.670000px;}
.y10e{bottom:823.074000px;}
.yde{bottom:823.254000px;}
.y136{bottom:829.050000px;}
.yb7{bottom:830.490000px;}
.y89{bottom:840.030000px;}
.y10d{bottom:842.514000px;}
.ydd{bottom:842.694000px;}
.y135{bottom:848.490000px;}
.yb6{bottom:849.930000px;}
.y8{bottom:850.290000px;}
.y88{bottom:860.190000px;}
.ydc{bottom:862.134000px;}
.y12b{bottom:864.690000px;}
.yb5{bottom:869.550000px;}
.y7{bottom:869.910000px;}
.y87{bottom:880.530000px;}
.y10c{bottom:881.574000px;}
.ydb{bottom:881.754000px;}
.yb4{bottom:888.990000px;}
.y6{bottom:894.030000px;}
.y86{bottom:900.690000px;}
.y10b{bottom:901.014000px;}
.yb3{bottom:908.430000px;}
.y5{bottom:918.330000px;}
.y10a{bottom:920.634000px;}
.y85{bottom:921.030000px;}
.yb2{bottom:928.050000px;}
.y53{bottom:935.610000px;}
.y84{bottom:941.190000px;}
.yb1{bottom:947.490000px;}
.y4{bottom:949.110000px;}
.y83{bottom:961.530000px;}
.yb0{bottom:966.930000px;}
.y3{bottom:980.250000px;}
.y81{bottom:981.690000px;}
.yaf{bottom:986.550000px;}
.y25{bottom:998.250000px;}
.y80{bottom:1005.990000px;}
.y52{bottom:1007.790000px;}
.y2{bottom:1011.390000px;}
.yd9{bottom:1020.750000px;}
.y24{bottom:1020.930000px;}
.y7e{bottom:1025.430000px;}
.y7f{bottom:1029.210000px;}
.y7d{bottom:1045.050000px;}
.y1{bottom:1048.470000px;}
.y23{bottom:1049.190000px;}
.y7c{bottom:1064.490000px;}
.y22{bottom:1066.470000px;}
.hd{height:17.820000px;}
.h1a{height:19.440000px;}
.h19{height:24.273984px;}
.h1d{height:26.384766px;}
.h14{height:35.640000px;}
.h15{height:35.820000px;}
.he{height:36.597656px;}
.h10{height:39.049805px;}
.h7{height:39.577148px;}
.h1{height:39.761719px;}
.h5{height:42.960938px;}
.h1b{height:43.506914px;}
.h1c{height:43.798711px;}
.hc{height:44.002969px;}
.h8{height:44.280000px;}
.h9{height:44.460000px;}
.h6{height:45.720703px;}
.h4{height:60.960938px;}
.ha{height:61.560000px;}
.hb{height:61.776000px;}
.h16{height:71.316000px;}
.h13{height:71.460000px;}
.h17{height:71.496000px;}
.h3{height:86.414766px;}
.h2{height:101.690859px;}
.h11{height:142.740000px;}
.h12{height:142.956000px;}
.h20{height:214.590000px;}
.hf{height:232.050000px;}
.h18{height:749.985000px;}
.h1e{height:897.225000px;}
.h1f{height:936.150000px;}
.h0{height:1188.000000px;}
.w4{width:115.920000px;}
.w2{width:116.100000px;}
.w3{width:116.136000px;}
.w5{width:116.280000px;}
.w9{width:149.436000px;}
.w6{width:159.660000px;}
.w8{width:160.380000px;}
.wd{width:174.600000px;}
.we{width:174.630000px;}
.w7{width:213.915000px;}
.w10{width:343.155000px;}
.wb{width:349.770000px;}
.wc{width:349.995000px;}
.wf{width:356.610000px;}
.wa{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x24{left:10.800000px;}
.x29{left:13.320000px;}
.x27{left:15.300000px;}
.x26{left:18.540000px;}
.x22{left:21.060000px;}
.x21{left:22.140000px;}
.x14{left:23.760000px;}
.x18{left:26.280000px;}
.x1c{left:28.080000px;}
.x1e{left:30.960000px;}
.x28{left:48.240000px;}
.x1a{left:49.545000px;}
.x23{left:52.380000px;}
.x25{left:53.820000px;}
.x31{left:55.125000px;}
.x1f{left:57.954000px;}
.x20{left:59.220000px;}
.x1b{left:62.100000px;}
.x1d{left:64.440000px;}
.x2a{left:69.654000px;}
.x2c{left:74.745000px;}
.x2b{left:80.100000px;}
.x16{left:81.945000px;}
.x1{left:108.035986px;}
.x36{left:112.535986px;}
.x2f{left:115.230000px;}
.x13{left:116.316000px;}
.xb{left:134.315986px;}
.x7{left:141.335986px;}
.x8{left:143.675986px;}
.x6{left:146.015986px;}
.xa{left:164.189986px;}
.x2d{left:169.589973px;}
.x2e{left:173.729986px;}
.x2{left:177.329986px;}
.xd{left:178.949986px;}
.x3{left:183.629986px;}
.x33{left:189.029986px;}
.x34{left:216.029986px;}
.xf{left:225.570000px;}
.xc{left:228.809986px;}
.x15{left:276.690000px;}
.x30{left:284.070000px;}
.x35{left:324.074986px;}
.x4{left:338.654986px;}
.x10{left:342.615000px;}
.x9{left:371.954986px;}
.x5{left:459.074986px;}
.x37{left:466.275000px;}
.x17{left:491.325000px;}
.x11{left:576.285000px;}
.x32{left:634.785000px;}
.x19{left:652.425000px;}
.x12{left:693.150000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.240533pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls14{letter-spacing:-0.000003pt;}
.ls13{letter-spacing:-0.000001pt;}
.lsd{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.032000pt;}
.ls12{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.080000pt;}
.ls5{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.112000pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.176000pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.224000pt;}
.ls0{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.304000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.352000pt;}
.ls1b{letter-spacing:49.232640pt;}
.ls19{letter-spacing:56.891307pt;}
.lsc{letter-spacing:754.858667pt;}
.ws13{word-spacing:-53.120000pt;}
.ws11{word-spacing:-48.000000pt;}
.ws1{word-spacing:-42.880000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws6{word-spacing:-12.352000pt;}
.wsc{word-spacing:-12.336000pt;}
.ws12{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.288000pt;}
.wsd{word-spacing:-12.224000pt;}
.ws14{word-spacing:-12.192000pt;}
.ws7{word-spacing:-12.048000pt;}
.wsb{word-spacing:-12.032000pt;}
.ws5{word-spacing:-12.016000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.999999pt;}
.ws9{word-spacing:-11.999997pt;}
.wsa{word-spacing:-11.952000pt;}
.wsf{word-spacing:-11.808000pt;}
.ws0{word-spacing:-9.433600pt;}
.ws2{word-spacing:-9.193067pt;}
.ws10{word-spacing:0.000000pt;}
._23{margin-left:-3.120000pt;}
._2{margin-left:-1.936000pt;}
._0{margin-left:-0.908800pt;}
._1{width:1.267627pt;}
._4{width:2.528000pt;}
._6{width:5.927467pt;}
._5{width:7.536000pt;}
._9{width:9.493973pt;}
._8{width:10.464000pt;}
._24{width:13.823954pt;}
._3{width:14.746672pt;}
._1f{width:15.824000pt;}
._c{width:17.104000pt;}
._b{width:18.606507pt;}
._a{width:19.722667pt;}
._21{width:20.634667pt;}
._20{width:22.037333pt;}
._22{width:27.792000pt;}
._1a{width:29.338667pt;}
._1e{width:30.480000pt;}
._f{width:38.044800pt;}
._1d{width:41.098667pt;}
._d{width:42.556800pt;}
._1b{width:49.018667pt;}
._17{width:56.938667pt;}
._18{width:69.274667pt;}
._19{width:70.190507pt;}
._1c{width:103.834667pt;}
._10{width:126.364800pt;}
._11{width:131.836800pt;}
._e{width:132.796800pt;}
._16{width:165.840000pt;}
._7{width:756.138667pt;}
._14{width:805.728000pt;}
._12{width:824.928000pt;}
._13{width:836.448000pt;}
._15{width:888.912000pt;}
.fs5{font-size:29.440000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:3.520000pt;}
.y108{bottom:3.680000pt;}
.y26{bottom:4.640000pt;}
.y41{bottom:4.800000pt;}
.y17{bottom:11.360000pt;}
.y19{bottom:11.520000pt;}
.y46{bottom:12.640000pt;}
.y33{bottom:20.480000pt;}
.y40{bottom:20.640000pt;}
.y12a{bottom:20.794667pt;}
.y107{bottom:20.960000pt;}
.y1c{bottom:26.720000pt;}
.y1e{bottom:26.880000pt;}
.y49{bottom:28.320000pt;}
.y44{bottom:28.480000pt;}
.y51{bottom:36.314667pt;}
.y32{bottom:36.320000pt;}
.y3f{bottom:36.480000pt;}
.y106{bottom:38.234667pt;}
.y134{bottom:38.240000pt;}
.y31{bottom:52.200000pt;}
.y50{bottom:52.314667pt;}
.y3a{bottom:52.320000pt;}
.y129{bottom:55.514667pt;}
.y133{bottom:55.520000pt;}
.y105{bottom:55.674667pt;}
.y4b{bottom:60.154667pt;}
.y35{bottom:60.160000pt;}
.y42{bottom:60.320000pt;}
.y30{bottom:68.040000pt;}
.y4f{bottom:68.154667pt;}
.y39{bottom:68.160000pt;}
.y128{bottom:72.794667pt;}
.y104{bottom:72.954667pt;}
.y132{bottom:72.960000pt;}
.y4e{bottom:83.994667pt;}
.y38{bottom:84.000000pt;}
.y3e{bottom:84.026667pt;}
.y2f{bottom:84.040000pt;}
.y78{bottom:84.160000pt;}
.y103{bottom:90.234667pt;}
.y131{bottom:90.240000pt;}
.y4d{bottom:99.834667pt;}
.y37{bottom:99.840000pt;}
.yae{bottom:99.872000pt;}
.y28{bottom:99.880000pt;}
.y77{bottom:100.000000pt;}
.y3d{bottom:100.026667pt;}
.y4a{bottom:104.352000pt;}
.y127{bottom:107.514667pt;}
.y130{bottom:107.520000pt;}
.y102{bottom:107.674667pt;}
.yda{bottom:109.152000pt;}
.y4c{bottom:115.674667pt;}
.y36{bottom:115.680000pt;}
.y2e{bottom:115.720000pt;}
.y76{bottom:115.840000pt;}
.y3c{bottom:115.866667pt;}
.yad{bottom:117.952000pt;}
.y126{bottom:124.794667pt;}
.y101{bottom:124.954667pt;}
.y12f{bottom:124.960000pt;}
.y109{bottom:127.232000pt;}
.y2d{bottom:131.560000pt;}
.y75{bottom:131.720000pt;}
.y7b{bottom:133.786667pt;}
.yac{bottom:135.866667pt;}
.y100{bottom:142.234667pt;}
.y12e{bottom:142.240000pt;}
.y2c{bottom:147.400000pt;}
.y74{bottom:147.560000pt;}
.y7a{bottom:149.946667pt;}
.yab{bottom:153.946667pt;}
.y21{bottom:158.746667pt;}
.y12d{bottom:159.520000pt;}
.y125{bottom:159.554667pt;}
.yff{bottom:159.674667pt;}
.y2b{bottom:163.400000pt;}
.y54{bottom:164.346667pt;}
.yd8{bottom:167.226667pt;}
.yaa{bottom:171.866667pt;}
.y20{bottom:175.066667pt;}
.y124{bottom:176.834667pt;}
.y12c{bottom:176.960000pt;}
.yfe{bottom:176.994667pt;}
.y2a{bottom:179.240000pt;}
.y73{bottom:179.400000pt;}
.yd7{bottom:183.386667pt;}
.y1f{bottom:189.466667pt;}
.ya9{bottom:189.946667pt;}
.yfd{bottom:194.274667pt;}
.y29{bottom:195.080000pt;}
.y72{bottom:195.240000pt;}
.yd6{bottom:200.826667pt;}
.ya8{bottom:207.866667pt;}
.y71{bottom:211.080000pt;}
.y123{bottom:211.554667pt;}
.yfc{bottom:211.714667pt;}
.yd5{bottom:218.106667pt;}
.ya7{bottom:225.786667pt;}
.y70{bottom:226.920000pt;}
.y122{bottom:228.834667pt;}
.yfb{bottom:228.994667pt;}
.y48{bottom:232.026667pt;}
.yd4{bottom:235.386667pt;}
.y6f{bottom:242.760000pt;}
.ya6{bottom:243.866667pt;}
.y1d{bottom:244.826667pt;}
.yfa{bottom:246.274667pt;}
.yd3{bottom:252.826667pt;}
.y6e{bottom:258.760000pt;}
.ya5{bottom:261.786667pt;}
.y121{bottom:263.554667pt;}
.yf9{bottom:263.714667pt;}
.yd2{bottom:270.106667pt;}
.y6d{bottom:274.600000pt;}
.ya4{bottom:279.866667pt;}
.y120{bottom:280.834667pt;}
.yf8{bottom:280.994667pt;}
.ya3{bottom:283.266667pt;}
.yd1{bottom:287.426667pt;}
.y6c{bottom:290.440000pt;}
.y47{bottom:296.066667pt;}
.ya2{bottom:297.826667pt;}
.yf7{bottom:298.274667pt;}
.y1b{bottom:300.386667pt;}
.yd0{bottom:304.866667pt;}
.y6b{bottom:306.280000pt;}
.y11f{bottom:315.554667pt;}
.yf6{bottom:315.714667pt;}
.y56{bottom:322.120000pt;}
.ycf{bottom:322.146667pt;}
.y45{bottom:328.546667pt;}
.y79{bottom:330.120000pt;}
.ya1{bottom:330.786667pt;}
.y11e{bottom:332.834667pt;}
.yf5{bottom:332.994667pt;}
.y55{bottom:337.960000pt;}
.yce{bottom:339.426667pt;}
.ya0{bottom:348.066667pt;}
.yf4{bottom:350.274667pt;}
.y6a{bottom:353.986667pt;}
.y1a{bottom:355.746667pt;}
.ycd{bottom:356.866667pt;}
.y43{bottom:360.866667pt;}
.y9f{bottom:365.506667pt;}
.y11d{bottom:367.554667pt;}
.yf3{bottom:367.714667pt;}
.y69{bottom:369.826667pt;}
.ycc{bottom:374.146667pt;}
.y9e{bottom:382.786667pt;}
.y11c{bottom:384.861333pt;}
.yf2{bottom:384.994667pt;}
.y68{bottom:385.666667pt;}
.ycb{bottom:391.426667pt;}
.y18{bottom:395.746667pt;}
.y9d{bottom:400.066667pt;}
.y67{bottom:401.506667pt;}
.yf1{bottom:402.301333pt;}
.yca{bottom:408.866667pt;}
.y66{bottom:417.346667pt;}
.y9c{bottom:417.506667pt;}
.y11b{bottom:419.581333pt;}
.yf0{bottom:419.741333pt;}
.y3b{bottom:425.026667pt;}
.yc9{bottom:426.146667pt;}
.y65{bottom:433.346667pt;}
.y9b{bottom:434.786667pt;}
.y16{bottom:435.906667pt;}
.y11a{bottom:436.861333pt;}
.yef{bottom:437.021333pt;}
.yc8{bottom:443.426667pt;}
.y64{bottom:449.186667pt;}
.y9a{bottom:452.066667pt;}
.yee{bottom:454.301333pt;}
.yc7{bottom:460.866667pt;}
.y63{bottom:465.026667pt;}
.y99{bottom:469.506667pt;}
.y119{bottom:471.581333pt;}
.yed{bottom:471.741333pt;}
.yc6{bottom:478.146667pt;}
.y62{bottom:480.866667pt;}
.y98{bottom:486.786667pt;}
.y15{bottom:487.266667pt;}
.y118{bottom:488.861333pt;}
.yec{bottom:489.021333pt;}
.yc5{bottom:495.426667pt;}
.y61{bottom:496.706667pt;}
.y14{bottom:502.626667pt;}
.y97{bottom:504.066667pt;}
.yeb{bottom:506.301333pt;}
.y60{bottom:512.546667pt;}
.yc4{bottom:512.893333pt;}
.y13{bottom:518.173333pt;}
.y96{bottom:521.533333pt;}
.y117{bottom:523.581333pt;}
.yea{bottom:523.741333pt;}
.y5f{bottom:528.546667pt;}
.yc3{bottom:530.173333pt;}
.y95{bottom:538.813333pt;}
.y116{bottom:540.861333pt;}
.ye9{bottom:541.021333pt;}
.y5e{bottom:544.386667pt;}
.yc2{bottom:547.453333pt;}
.y12{bottom:548.733333pt;}
.y34{bottom:552.733333pt;}
.y94{bottom:556.093333pt;}
.ye8{bottom:558.301333pt;}
.y5d{bottom:560.226667pt;}
.yc1{bottom:564.893333pt;}
.y11{bottom:565.533333pt;}
.y93{bottom:573.533333pt;}
.y115{bottom:575.581333pt;}
.ye7{bottom:575.741333pt;}
.y5c{bottom:576.106667pt;}
.yc0{bottom:582.173333pt;}
.y10{bottom:583.133333pt;}
.y92{bottom:590.813333pt;}
.y5b{bottom:591.946667pt;}
.y114{bottom:592.861333pt;}
.ye6{bottom:593.021333pt;}
.ybf{bottom:599.453333pt;}
.yf{bottom:604.573333pt;}
.y5a{bottom:607.946667pt;}
.y91{bottom:608.093333pt;}
.ye5{bottom:610.301333pt;}
.y113{bottom:610.341333pt;}
.ybe{bottom:616.893333pt;}
.y59{bottom:623.786667pt;}
.y90{bottom:625.533333pt;}
.ye{bottom:626.013333pt;}
.y112{bottom:627.621333pt;}
.ye4{bottom:627.781333pt;}
.ybd{bottom:634.173333pt;}
.y58{bottom:639.626667pt;}
.y8f{bottom:642.813333pt;}
.y111{bottom:644.901333pt;}
.ye3{bottom:645.061333pt;}
.yd{bottom:647.293333pt;}
.ybc{bottom:651.453333pt;}
.y57{bottom:655.466667pt;}
.y8e{bottom:660.093333pt;}
.ye2{bottom:662.341333pt;}
.yc{bottom:666.173333pt;}
.ybb{bottom:668.893333pt;}
.y8d{bottom:674.653333pt;}
.y110{bottom:679.621333pt;}
.ye1{bottom:679.781333pt;}
.y27{bottom:680.413333pt;}
.y139{bottom:684.893333pt;}
.yba{bottom:686.173333pt;}
.yb{bottom:691.613333pt;}
.y8c{bottom:692.573333pt;}
.y10f{bottom:696.901333pt;}
.ye0{bottom:697.061333pt;}
.y138{bottom:702.173333pt;}
.yb9{bottom:703.453333pt;}
.ya{bottom:709.053333pt;}
.y8b{bottom:710.653333pt;}
.ydf{bottom:714.341333pt;}
.y137{bottom:719.453333pt;}
.yb8{bottom:720.893333pt;}
.y8a{bottom:728.613333pt;}
.y9{bottom:730.373333pt;}
.y10e{bottom:731.621333pt;}
.yde{bottom:731.781333pt;}
.y136{bottom:736.933333pt;}
.yb7{bottom:738.213333pt;}
.y89{bottom:746.693333pt;}
.y10d{bottom:748.901333pt;}
.ydd{bottom:749.061333pt;}
.y135{bottom:754.213333pt;}
.yb6{bottom:755.493333pt;}
.y8{bottom:755.813333pt;}
.y88{bottom:764.613333pt;}
.ydc{bottom:766.341333pt;}
.y12b{bottom:768.613333pt;}
.yb5{bottom:772.933333pt;}
.y7{bottom:773.253333pt;}
.y87{bottom:782.693333pt;}
.y10c{bottom:783.621333pt;}
.ydb{bottom:783.781333pt;}
.yb4{bottom:790.213333pt;}
.y6{bottom:794.693333pt;}
.y86{bottom:800.613333pt;}
.y10b{bottom:800.901333pt;}
.yb3{bottom:807.493333pt;}
.y5{bottom:816.293333pt;}
.y10a{bottom:818.341333pt;}
.y85{bottom:818.693333pt;}
.yb2{bottom:824.933333pt;}
.y53{bottom:831.653333pt;}
.y84{bottom:836.613333pt;}
.yb1{bottom:842.213333pt;}
.y4{bottom:843.653333pt;}
.y83{bottom:854.693333pt;}
.yb0{bottom:859.493333pt;}
.y3{bottom:871.333333pt;}
.y81{bottom:872.613333pt;}
.yaf{bottom:876.933333pt;}
.y25{bottom:887.333333pt;}
.y80{bottom:894.213333pt;}
.y52{bottom:895.813333pt;}
.y2{bottom:899.013333pt;}
.yd9{bottom:907.333333pt;}
.y24{bottom:907.493333pt;}
.y7e{bottom:911.493333pt;}
.y7f{bottom:914.853333pt;}
.y7d{bottom:928.933333pt;}
.y1{bottom:931.973333pt;}
.y23{bottom:932.613333pt;}
.y7c{bottom:946.213333pt;}
.y22{bottom:947.973333pt;}
.hd{height:15.840000pt;}
.h1a{height:17.280000pt;}
.h19{height:21.576875pt;}
.h1d{height:23.453125pt;}
.h14{height:31.680000pt;}
.h15{height:31.840000pt;}
.he{height:32.531250pt;}
.h10{height:34.710938pt;}
.h7{height:35.179688pt;}
.h1{height:35.343750pt;}
.h5{height:38.187500pt;}
.h1b{height:38.672812pt;}
.h1c{height:38.932188pt;}
.hc{height:39.113750pt;}
.h8{height:39.360000pt;}
.h9{height:39.520000pt;}
.h6{height:40.640625pt;}
.h4{height:54.187500pt;}
.ha{height:54.720000pt;}
.hb{height:54.912000pt;}
.h16{height:63.392000pt;}
.h13{height:63.520000pt;}
.h17{height:63.552000pt;}
.h3{height:76.813125pt;}
.h2{height:90.391875pt;}
.h11{height:126.880000pt;}
.h12{height:127.072000pt;}
.h20{height:190.746667pt;}
.hf{height:206.266667pt;}
.h18{height:666.653333pt;}
.h1e{height:797.533333pt;}
.h1f{height:832.133333pt;}
.h0{height:1056.000000pt;}
.w4{width:103.040000pt;}
.w2{width:103.200000pt;}
.w3{width:103.232000pt;}
.w5{width:103.360000pt;}
.w9{width:132.832000pt;}
.w6{width:141.920000pt;}
.w8{width:142.560000pt;}
.wd{width:155.200000pt;}
.we{width:155.226667pt;}
.w7{width:190.146667pt;}
.w10{width:305.026667pt;}
.wb{width:310.906667pt;}
.wc{width:311.106667pt;}
.wf{width:316.986667pt;}
.wa{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x24{left:9.600000pt;}
.x29{left:11.840000pt;}
.x27{left:13.600000pt;}
.x26{left:16.480000pt;}
.x22{left:18.720000pt;}
.x21{left:19.680000pt;}
.x14{left:21.120000pt;}
.x18{left:23.360000pt;}
.x1c{left:24.960000pt;}
.x1e{left:27.520000pt;}
.x28{left:42.880000pt;}
.x1a{left:44.040000pt;}
.x23{left:46.560000pt;}
.x25{left:47.840000pt;}
.x31{left:49.000000pt;}
.x1f{left:51.514667pt;}
.x20{left:52.640000pt;}
.x1b{left:55.200000pt;}
.x1d{left:57.280000pt;}
.x2a{left:61.914667pt;}
.x2c{left:66.440000pt;}
.x2b{left:71.200000pt;}
.x16{left:72.840000pt;}
.x1{left:96.031988pt;}
.x36{left:100.031988pt;}
.x2f{left:102.426667pt;}
.x13{left:103.392000pt;}
.xb{left:119.391988pt;}
.x7{left:125.631988pt;}
.x8{left:127.711988pt;}
.x6{left:129.791988pt;}
.xa{left:145.946655pt;}
.x2d{left:150.746642pt;}
.x2e{left:154.426655pt;}
.x2{left:157.626655pt;}
.xd{left:159.066655pt;}
.x3{left:163.226655pt;}
.x33{left:168.026655pt;}
.x34{left:192.026655pt;}
.xf{left:200.506667pt;}
.xc{left:203.386655pt;}
.x15{left:245.946667pt;}
.x30{left:252.506667pt;}
.x35{left:288.066655pt;}
.x4{left:301.026655pt;}
.x10{left:304.546667pt;}
.x9{left:330.626655pt;}
.x5{left:408.066655pt;}
.x37{left:414.466667pt;}
.x17{left:436.733333pt;}
.x11{left:512.253333pt;}
.x32{left:564.253333pt;}
.x19{left:579.933333pt;}
.x12{left:616.133333pt;}
}




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