
    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_214a80fae3e4518df94d3040.woff')format("woff");}.ff1{font-family:ff1;line-height:0.927734;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_34473deafc6f82fba324944a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.927734;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_ee090bf17b4f607f240dde26.woff')format("woff");}.ff3{font-family:ff3;line-height:1.213379;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_cd707425f22fee069f943ad0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.213379;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_f50cec5bb909f47788ef41a4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.952637;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_56622d4ee80742062bd252cd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.952637;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_679564b9df3c5dd152277875.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_425be20fce0a714ec39a71e0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.747559;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.173610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173610,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);}
.v3{vertical-align:-74.160000px;}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-1.860000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-1.704000px;}
.ls5{letter-spacing:-0.828000px;}
.ls6{letter-spacing:-0.630000px;}
.ls11{letter-spacing:-0.253200px;}
.lsf{letter-spacing:-0.241800px;}
.ls13{letter-spacing:-0.235200px;}
.ls19{letter-spacing:-0.234600px;}
.ls18{letter-spacing:-0.145200px;}
.ls12{letter-spacing:-0.127200px;}
.ls4{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.057600px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.028906px;}
.lsc{letter-spacing:0.052560px;}
.ls1{letter-spacing:0.057600px;}
.ls10{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.091200px;}
.ls1d{letter-spacing:0.097800px;}
.lsb{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.271200px;}
.ls2{letter-spacing:0.272880px;}
.lse{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.324000px;}
.lsd{letter-spacing:0.592560px;}
.lsa{letter-spacing:0.613440px;}
.ls0{letter-spacing:6.480000px;}
.ls14{letter-spacing:111.240000px;}
.ls1c{letter-spacing:111.744000px;}
.ls15{letter-spacing:141.300000px;}
.ls16{letter-spacing:149.940000px;}
.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;}
}
.ws11{word-spacing:-66.240000px;}
.ws3{word-spacing:-21.151200px;}
.ws2{word-spacing:-20.430000px;}
.ws4{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.000000px;}
.wse{word-spacing:-16.657800px;}
.ws12{word-spacing:-16.617600px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.453200px;}
.ws7{word-spacing:-16.306800px;}
.ws13{word-spacing:-15.732000px;}
.wsa{word-spacing:-14.992560px;}
.wsd{word-spacing:-14.970240px;}
.ws8{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.882400px;}
.ws10{word-spacing:-13.824000px;}
.wsf{word-spacing:-13.806000px;}
.ws9{word-spacing:-11.824800px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:475.538880px;}
._21{margin-left:-5.215680px;}
._2{margin-left:-3.974400px;}
._3{margin-left:-2.439360px;}
._0{margin-left:-1.010880px;}
._6{width:1.114560px;}
._1{width:2.252160px;}
._5{width:4.057920px;}
._4{width:5.431680px;}
._8{width:7.251840px;}
._d{width:8.297280px;}
._9{width:9.339840px;}
._f{width:10.946880px;}
._c{width:12.453120px;}
._7{width:13.844160px;}
._b{width:14.921280px;}
._13{width:16.218240px;}
._e{width:18.414720px;}
._a{width:19.474560px;}
._1e{width:20.683920px;}
._1f{width:21.872160px;}
._19{width:23.179920px;}
._15{width:24.807360px;}
._14{width:25.876080px;}
._1d{width:30.092400px;}
._22{width:35.040960px;}
._23{width:36.261600px;}
._1b{width:37.620000px;}
._1c{width:38.720400px;}
._10{width:41.234400px;}
._11{width:42.510240px;}
._12{width:43.608720px;}
._17{width:48.957120px;}
._20{width:52.395840px;}
._24{width:89.092800px;}
._16{width:91.373040px;}
._18{width:201.060000px;}
._1a{width:304.557600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs6{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y160{bottom:3.960000px;}
.yc{bottom:4.320000px;}
.y15e{bottom:12.780000px;}
.y3b{bottom:18.540000px;}
.y169{bottom:20.700000px;}
.y162{bottom:20.925000px;}
.y168{bottom:37.620000px;}
.y3a{bottom:40.860000px;}
.y167{bottom:54.540000px;}
.y39{bottom:64.650000px;}
.y166{bottom:71.460000px;}
.y165{bottom:88.200000px;}
.y89{bottom:88.920000px;}
.y38{bottom:90.570000px;}
.y18c{bottom:90.720000px;}
.y37{bottom:100.830000px;}
.y88{bottom:105.840000px;}
.y122{bottom:106.920000px;}
.y35{bottom:107.640000px;}
.y18b{bottom:109.260000px;}
.ycb{bottom:109.620000px;}
.y1bc{bottom:110.520000px;}
.y121{bottom:110.700000px;}
.yca{bottom:122.580000px;}
.y87{bottom:123.660000px;}
.y100{bottom:126.360000px;}
.y86{bottom:127.440000px;}
.y18a{bottom:129.060000px;}
.yc9{bottom:139.536000px;}
.y85{bottom:140.616000px;}
.yc8{bottom:143.316000px;}
.y120{bottom:144.396000px;}
.y34{bottom:146.196000px;}
.y189{bottom:147.636000px;}
.yc7{bottom:156.450000px;}
.y84{bottom:157.530000px;}
.yff{bottom:160.230000px;}
.y11f{bottom:161.310000px;}
.y33{bottom:163.470000px;}
.y188{bottom:166.170000px;}
.yc6{bottom:173.370000px;}
.y83{bottom:174.450000px;}
.y15c{bottom:177.150000px;}
.y82{bottom:178.230000px;}
.y32{bottom:182.010000px;}
.y187{bottom:184.710000px;}
.yfe{bottom:190.110000px;}
.y81{bottom:191.190000px;}
.yfd{bottom:193.890000px;}
.y80{bottom:194.970000px;}
.y31{bottom:200.550000px;}
.y186{bottom:203.250000px;}
.y1bb{bottom:203.430000px;}
.yfc{bottom:207.030000px;}
.y7f{bottom:208.110000px;}
.y30{bottom:219.090000px;}
.y1ba{bottom:221.970000px;}
.y185{bottom:223.050000px;}
.yfb{bottom:223.950000px;}
.y7e{bottom:225.030000px;}
.y11e{bottom:226.110000px;}
.yfa{bottom:227.730000px;}
.yc5{bottom:228.810000px;}
.y11d{bottom:229.890000px;}
.y2f{bottom:237.630000px;}
.y1b9{bottom:240.510000px;}
.yf9{bottom:240.870000px;}
.y184{bottom:241.590000px;}
.y7d{bottom:241.950000px;}
.y11c{bottom:243.030000px;}
.y7c{bottom:245.730000px;}
.y2e{bottom:256.170000px;}
.yf8{bottom:257.610000px;}
.y7b{bottom:258.690000px;}
.y1b8{bottom:259.050000px;}
.y11b{bottom:259.770000px;}
.y183{bottom:260.130000px;}
.yf7{bottom:261.390000px;}
.yc4{bottom:262.470000px;}
.y15b{bottom:274.530000px;}
.y2d{bottom:274.890000px;}
.yf6{bottom:275.070000px;}
.y7a{bottom:275.610000px;}
.y11a{bottom:276.690000px;}
.y1b7{bottom:277.590000px;}
.y182{bottom:278.850000px;}
.y119{bottom:280.470000px;}
.y15a{bottom:291.450000px;}
.y79{bottom:292.530000px;}
.y2c{bottom:293.430000px;}
.y118{bottom:294.150000px;}
.y159{bottom:295.230000px;}
.y1b6{bottom:296.130000px;}
.y78{bottom:296.310000px;}
.y181{bottom:297.390000px;}
.y77{bottom:309.450000px;}
.yc3{bottom:310.530000px;}
.y2b{bottom:311.970000px;}
.y76{bottom:313.230000px;}
.yc2{bottom:314.310000px;}
.y1b5{bottom:314.670000px;}
.y180{bottom:315.930000px;}
.y124{bottom:320.610000px;}
.y75{bottom:326.190000px;}
.y158{bottom:326.730000px;}
.yc1{bottom:327.270000px;}
.y74{bottom:329.970000px;}
.y117{bottom:330.150000px;}
.y2a{bottom:330.510000px;}
.y1b4{bottom:333.210000px;}
.y17f{bottom:334.470000px;}
.yf5{bottom:334.650000px;}
.y73{bottom:343.110000px;}
.yc0{bottom:344.190000px;}
.ybf{bottom:347.970000px;}
.y116{bottom:348.690000px;}
.y29{bottom:349.050000px;}
.y1b3{bottom:351.750000px;}
.y17e{bottom:353.010000px;}
.yf4{bottom:353.190000px;}
.y157{bottom:356.610000px;}
.y72{bottom:360.030000px;}
.ybe{bottom:361.110000px;}
.y71{bottom:363.810000px;}
.ybd{bottom:364.890000px;}
.y115{bottom:367.230000px;}
.y28{bottom:367.590000px;}
.y17d{bottom:371.550000px;}
.yf3{bottom:371.730000px;}
.y156{bottom:375.150000px;}
.y70{bottom:376.950000px;}
.ybc{bottom:378.570000px;}
.y6f{bottom:380.730000px;}
.y114{bottom:385.770000px;}
.y27{bottom:386.130000px;}
.y17c{bottom:390.135000px;}
.yf2{bottom:390.315000px;}
.y155{bottom:393.735000px;}
.y6e{bottom:394.275000px;}
.y113{bottom:404.535000px;}
.y26{bottom:404.715000px;}
.y1b2{bottom:408.675000px;}
.yf0{bottom:408.855000px;}
.y17b{bottom:409.035000px;}
.y154{bottom:412.275000px;}
.yf1{bottom:412.635000px;}
.ybb{bottom:413.535000px;}
.y111{bottom:423.075000px;}
.y25{bottom:423.435000px;}
.y112{bottom:426.855000px;}
.y1b1{bottom:427.395000px;}
.yef{bottom:427.575000px;}
.y17a{bottom:429.015000px;}
.y6d{bottom:429.195000px;}
.y153{bottom:430.815000px;}
.yba{bottom:432.075000px;}
.y110{bottom:441.615000px;}
.y24{bottom:441.975000px;}
.y1b0{bottom:445.935000px;}
.yee{bottom:446.115000px;}
.y179{bottom:447.555000px;}
.y6c{bottom:447.735000px;}
.y151{bottom:449.355000px;}
.yb8{bottom:450.615000px;}
.y152{bottom:453.135000px;}
.yb9{bottom:454.395000px;}
.y10e{bottom:460.155000px;}
.y23{bottom:460.515000px;}
.y10f{bottom:463.935000px;}
.y1af{bottom:464.475000px;}
.yed{bottom:464.655000px;}
.y178{bottom:466.095000px;}
.y6b{bottom:466.275000px;}
.y150{bottom:468.075000px;}
.yb7{bottom:469.155000px;}
.y10d{bottom:478.695000px;}
.y22{bottom:479.055000px;}
.y1ae{bottom:483.015000px;}
.yec{bottom:483.195000px;}
.y177{bottom:484.635000px;}
.y69{bottom:484.815000px;}
.y14f{bottom:486.615000px;}
.yb6{bottom:487.695000px;}
.y6a{bottom:488.595000px;}
.y10c{bottom:497.235000px;}
.y21{bottom:497.595000px;}
.y1ad{bottom:501.555000px;}
.yeb{bottom:501.735000px;}
.y176{bottom:503.175000px;}
.y68{bottom:503.355000px;}
.y14e{bottom:505.155000px;}
.yb5{bottom:506.235000px;}
.y10a{bottom:515.775000px;}
.y20{bottom:516.135000px;}
.y10b{bottom:519.555000px;}
.y1ac{bottom:520.095000px;}
.yea{bottom:520.275000px;}
.y175{bottom:521.895000px;}
.y66{bottom:522.075000px;}
.y14c{bottom:523.695000px;}
.yb4{bottom:524.775000px;}
.y67{bottom:525.855000px;}
.y14d{bottom:527.475000px;}
.y109{bottom:534.315000px;}
.y1f{bottom:534.675000px;}
.y1ab{bottom:538.635000px;}
.ye8{bottom:538.815000px;}
.y174{bottom:540.435000px;}
.y65{bottom:540.615000px;}
.y14b{bottom:542.235000px;}
.ye9{bottom:542.595000px;}
.yb3{bottom:543.315000px;}
.y107{bottom:553.035000px;}
.y1e{bottom:553.215000px;}
.y108{bottom:556.815000px;}
.y1aa{bottom:557.175000px;}
.ye7{bottom:557.355000px;}
.y173{bottom:558.975000px;}
.y64{bottom:559.155000px;}
.y14a{bottom:560.775000px;}
.yb2{bottom:562.035000px;}
.y106{bottom:571.575000px;}
.y1d{bottom:571.935000px;}
.y1a9{bottom:575.895000px;}
.ye6{bottom:576.075000px;}
.y63{bottom:577.695000px;}
.y172{bottom:577.875000px;}
.y149{bottom:579.315000px;}
.yb1{bottom:580.575000px;}
.y105{bottom:590.115000px;}
.y1c{bottom:590.475000px;}
.y1a8{bottom:594.435000px;}
.ye4{bottom:594.615000px;}
.y62{bottom:596.235000px;}
.y171{bottom:597.675000px;}
.y148{bottom:597.855000px;}
.ye5{bottom:598.395000px;}
.yb0{bottom:599.115000px;}
.y104{bottom:608.655000px;}
.y1b{bottom:609.015000px;}
.y1a7{bottom:612.975000px;}
.ye3{bottom:613.155000px;}
.y61{bottom:614.775000px;}
.y170{bottom:616.395000px;}
.y146{bottom:616.575000px;}
.yae{bottom:617.655000px;}
.y147{bottom:620.355000px;}
.yaf{bottom:621.435000px;}
.y103{bottom:622.875000px;}
.y123{bottom:622.980000px;}
.y1a{bottom:627.555000px;}
.y1a6{bottom:631.515000px;}
.ye2{bottom:631.695000px;}
.y60{bottom:633.315000px;}
.y16f{bottom:634.935000px;}
.y145{bottom:635.115000px;}
.yad{bottom:636.195000px;}
.y19{bottom:646.125000px;}
.y1a5{bottom:650.085000px;}
.ye1{bottom:650.265000px;}
.y5f{bottom:651.885000px;}
.y16e{bottom:653.505000px;}
.y144{bottom:653.685000px;}
.yac{bottom:654.765000px;}
.y18{bottom:664.665000px;}
.ye0{bottom:668.805000px;}
.y1a4{bottom:669.885000px;}
.y5e{bottom:670.605000px;}
.y16d{bottom:672.045000px;}
.y143{bottom:672.225000px;}
.yab{bottom:673.305000px;}
.y17{bottom:683.205000px;}
.ydf{bottom:687.345000px;}
.y1a3{bottom:688.425000px;}
.y5d{bottom:689.145000px;}
.y16c{bottom:690.585000px;}
.y142{bottom:690.765000px;}
.yaa{bottom:691.845000px;}
.y16{bottom:701.745000px;}
.ydd{bottom:705.885000px;}
.y1a2{bottom:706.965000px;}
.y5b{bottom:707.685000px;}
.y16b{bottom:709.125000px;}
.y141{bottom:709.305000px;}
.yde{bottom:709.665000px;}
.ya8{bottom:710.565000px;}
.y5c{bottom:711.465000px;}
.ya9{bottom:714.345000px;}
.y15{bottom:720.465000px;}
.ydb{bottom:724.605000px;}
.y1a1{bottom:725.505000px;}
.y5a{bottom:726.225000px;}
.y140{bottom:727.845000px;}
.ydc{bottom:728.385000px;}
.ya7{bottom:729.105000px;}
.y14{bottom:739.005000px;}
.yda{bottom:743.145000px;}
.y59{bottom:744.765000px;}
.y1a0{bottom:745.305000px;}
.y16a{bottom:746.205000px;}
.y13f{bottom:746.385000px;}
.ya5{bottom:747.645000px;}
.ya6{bottom:751.425000px;}
.y13{bottom:757.545000px;}
.y164{bottom:761.325000px;}
.yd9{bottom:761.685000px;}
.y58{bottom:763.305000px;}
.y19f{bottom:763.845000px;}
.y13e{bottom:765.105000px;}
.ya4{bottom:766.185000px;}
.y12{bottom:776.085000px;}
.yd8{bottom:780.225000px;}
.y57{bottom:781.845000px;}
.y19e{bottom:782.385000px;}
.y13d{bottom:783.645000px;}
.ya3{bottom:784.725000px;}
.y11{bottom:794.625000px;}
.yd7{bottom:798.765000px;}
.y55{bottom:800.385000px;}
.y19d{bottom:800.925000px;}
.y13c{bottom:802.185000px;}
.ya2{bottom:803.265000px;}
.y56{bottom:804.165000px;}
.y10{bottom:813.165000px;}
.yd6{bottom:817.305000px;}
.y54{bottom:819.105000px;}
.y19c{bottom:819.465000px;}
.y13a{bottom:820.725000px;}
.ya1{bottom:822.165000px;}
.y13b{bottom:824.505000px;}
.yf{bottom:831.705000px;}
.yd5{bottom:835.845000px;}
.y53{bottom:837.645000px;}
.y19b{bottom:838.005000px;}
.y139{bottom:839.265000px;}
.ya0{bottom:842.145000px;}
.ye{bottom:850.245000px;}
.yd4{bottom:854.385000px;}
.y52{bottom:856.185000px;}
.y19a{bottom:856.725000px;}
.y137{bottom:857.805000px;}
.y9f{bottom:860.685000px;}
.y138{bottom:861.585000px;}
.y163{bottom:862.485000px;}
.yd{bottom:868.965000px;}
.yd3{bottom:873.105000px;}
.y51{bottom:874.725000px;}
.y199{bottom:875.265000px;}
.y136{bottom:876.345000px;}
.y9e{bottom:879.225000px;}
.y161{bottom:879.405000px;}
.yb{bottom:883.185000px;}
.yd2{bottom:891.645000px;}
.y50{bottom:893.310000px;}
.y198{bottom:893.850000px;}
.y135{bottom:894.930000px;}
.y9d{bottom:897.810000px;}
.ya{bottom:906.090000px;}
.yd1{bottom:910.230000px;}
.y4f{bottom:911.850000px;}
.y197{bottom:912.390000px;}
.y133{bottom:913.650000px;}
.y15d{bottom:914.010000px;}
.y9c{bottom:916.350000px;}
.y134{bottom:917.430000px;}
.y9{bottom:924.630000px;}
.yd0{bottom:928.770000px;}
.y4d{bottom:930.390000px;}
.y196{bottom:930.930000px;}
.y15f{bottom:931.470000px;}
.y132{bottom:932.190000px;}
.y4e{bottom:934.170000px;}
.y9a{bottom:934.890000px;}
.y9b{bottom:938.670000px;}
.y8{bottom:943.170000px;}
.ycf{bottom:947.310000px;}
.y4b{bottom:948.930000px;}
.y195{bottom:949.470000px;}
.y131{bottom:950.730000px;}
.y4c{bottom:952.710000px;}
.y99{bottom:953.610000px;}
.y7{bottom:961.710000px;}
.yce{bottom:965.850000px;}
.y4a{bottom:967.650000px;}
.y194{bottom:968.010000px;}
.y12f{bottom:969.270000px;}
.y98{bottom:972.150000px;}
.y130{bottom:973.050000px;}
.y6{bottom:984.030000px;}
.ycd{bottom:984.750000px;}
.y49{bottom:986.190000px;}
.y193{bottom:986.550000px;}
.y12e{bottom:987.810000px;}
.y97{bottom:990.690000px;}
.y102{bottom:993.570000px;}
.y5{bottom:998.790000px;}
.y47{bottom:1004.730000px;}
.y192{bottom:1005.270000px;}
.y12c{bottom:1006.350000px;}
.y48{bottom:1008.510000px;}
.y95{bottom:1009.230000px;}
.y12d{bottom:1010.130000px;}
.y96{bottom:1013.010000px;}
.y4{bottom:1017.510000px;}
.y46{bottom:1023.270000px;}
.y191{bottom:1023.810000px;}
.y12b{bottom:1024.890000px;}
.ycc{bottom:1027.050000px;}
.y94{bottom:1027.770000px;}
.y3{bottom:1037.310000px;}
.y45{bottom:1041.810000px;}
.y190{bottom:1042.350000px;}
.y12a{bottom:1043.430000px;}
.y92{bottom:1046.310000px;}
.y93{bottom:1050.090000px;}
.y43{bottom:1060.350000px;}
.y2{bottom:1060.890000px;}
.y129{bottom:1062.150000px;}
.y44{bottom:1064.130000px;}
.y91{bottom:1064.850000px;}
.y101{bottom:1068.630000px;}
.y42{bottom:1078.890000px;}
.y18f{bottom:1079.430000px;}
.y128{bottom:1080.690000px;}
.y90{bottom:1083.390000px;}
.y1{bottom:1084.470000px;}
.y40{bottom:1097.430000px;}
.y18e{bottom:1097.970000px;}
.y127{bottom:1099.230000px;}
.y41{bottom:1101.210000px;}
.y8f{bottom:1102.110000px;}
.y36{bottom:1102.470000px;}
.y3f{bottom:1116.150000px;}
.y18d{bottom:1116.510000px;}
.y126{bottom:1117.770000px;}
.y8d{bottom:1120.650000px;}
.y8e{bottom:1124.430000px;}
.y3e{bottom:1135.050000px;}
.y125{bottom:1136.310000px;}
.y8c{bottom:1138.830000px;}
.y3d{bottom:1150.560000px;}
.y8b{bottom:1157.040000px;}
.y3c{bottom:1173.060000px;}
.y8a{bottom:1174.320000px;}
.h16{height:16.740000px;}
.h15{height:16.920000px;}
.h6{height:18.576000px;}
.h17{height:33.696000px;}
.h14{height:34.380000px;}
.h10{height:35.386875px;}
.h5{height:38.008125px;}
.h3{height:44.860781px;}
.h7{height:46.122187px;}
.ha{height:48.761719px;}
.h8{height:54.390938px;}
.h2{height:57.051211px;}
.h11{height:59.439023px;}
.h4{height:60.288750px;}
.h13{height:64.024219px;}
.he{height:65.531250px;}
.hf{height:65.884219px;}
.hd{height:70.773750px;}
.hc{height:76.671562px;}
.hb{height:81.432070px;}
.h18{height:101.160000px;}
.h9{height:116.316000px;}
.h12{height:366.660000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wa{width:38.916000px;}
.wb{width:149.760000px;}
.w4{width:166.170000px;}
.w3{width:166.710000px;}
.w6{width:187.770000px;}
.w5{width:194.790000px;}
.w7{width:233.715000px;}
.wd{width:236.775000px;}
.we{width:297.750000px;}
.w8{width:513.435000px;}
.wc{width:534.525000px;}
.w9{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.056000px;}
.x10{left:8.136000px;}
.xf{left:82.080000px;}
.xd{left:84.959987px;}
.x8{left:87.300000px;}
.x16{left:117.035987px;}
.x29{left:121.535987px;}
.x5e{left:123.876000px;}
.x38{left:126.035987px;}
.x2{left:129.815987px;}
.x47{left:133.235987px;}
.x5d{left:167.069987px;}
.x51{left:171.749973px;}
.x52{left:181.469987px;}
.xe{left:184.349987px;}
.x3{left:186.329987px;}
.x23{left:226.469973px;}
.x24{left:231.329987px;}
.x1b{left:232.409973px;}
.x1c{left:237.269987px;}
.x60{left:238.575000px;}
.x21{left:248.609973px;}
.x22{left:253.469987px;}
.xa{left:256.170000px;}
.x5f{left:273.630000px;}
.x5{left:275.069987px;}
.x5b{left:282.134973px;}
.x5c{left:291.854987px;}
.x3b{left:298.154973px;}
.x19{left:301.934973px;}
.x1a{left:306.794987px;}
.x3c{left:307.874987px;}
.x6{left:309.314987px;}
.x4f{left:313.094973px;}
.x11{left:315.795000px;}
.x57{left:318.314973px;}
.x59{left:319.934987px;}
.x50{left:322.814987px;}
.x58{left:328.034987px;}
.x1d{left:332.894973px;}
.x1e{left:337.754987px;}
.x2c{left:347.294973px;}
.x2e{left:350.534973px;}
.x2d{left:357.014987px;}
.x2f{left:360.254987px;}
.x7{left:369.614987px;}
.x45{left:377.354973px;}
.x3f{left:384.734973px;}
.x30{left:386.174973px;}
.x40{left:394.454987px;}
.x31{left:395.894987px;}
.x32{left:403.634973px;}
.x4{left:413.714987px;}
.x46{left:419.294973px;}
.x3d{left:421.634973px;}
.xb{left:424.515000px;}
.x33{left:428.654973px;}
.x3e{left:431.354987px;}
.x34{left:438.374987px;}
.x5a{left:443.234973px;}
.x1{left:446.474987px;}
.x4b{left:452.774973px;}
.x4c{left:462.494987px;}
.x53{left:490.604973px;}
.x54{left:500.324987px;}
.x39{left:510.404973px;}
.x3a{left:520.124987px;}
.x25{left:557.204973px;}
.x26{left:562.064987px;}
.x17{left:563.684973px;}
.x49{left:565.484973px;}
.x18{left:568.544987px;}
.x4a{left:575.204987px;}
.x12{left:578.264987px;}
.x1f{left:589.424973px;}
.x20{left:594.284987px;}
.x43{left:612.464973px;}
.xc{left:620.385000px;}
.x44{left:622.184987px;}
.x27{left:656.249973px;}
.x28{left:661.109987px;}
.x4d{left:662.729973px;}
.x4e{left:672.449987px;}
.x35{left:682.349973px;}
.x55{left:687.209973px;}
.x36{left:692.069987px;}
.x56{left:696.929987px;}
.x37{left:701.249987px;}
.x41{left:712.949973px;}
.x42{left:722.669987px;}
.x48{left:765.149987px;}
.x13{left:777.209987px;}
.x14{left:791.069987px;}
.x2a{left:794.669973px;}
.x2b{left:804.389987px;}
.x15{left:807.989987px;}
@media print{
.v3{vertical-align:-65.920000pt;}
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-1.653333pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-1.514667pt;}
.ls5{letter-spacing:-0.736000pt;}
.ls6{letter-spacing:-0.560000pt;}
.ls11{letter-spacing:-0.225067pt;}
.lsf{letter-spacing:-0.214933pt;}
.ls13{letter-spacing:-0.209067pt;}
.ls19{letter-spacing:-0.208533pt;}
.ls18{letter-spacing:-0.129067pt;}
.ls12{letter-spacing:-0.113067pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.051200pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.025694pt;}
.lsc{letter-spacing:0.046720pt;}
.ls1{letter-spacing:0.051200pt;}
.ls10{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.081067pt;}
.ls1d{letter-spacing:0.086933pt;}
.lsb{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.241067pt;}
.ls2{letter-spacing:0.242560pt;}
.lse{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.288000pt;}
.lsd{letter-spacing:0.526720pt;}
.lsa{letter-spacing:0.545280pt;}
.ls0{letter-spacing:5.760000pt;}
.ls14{letter-spacing:98.880000pt;}
.ls1c{letter-spacing:99.328000pt;}
.ls15{letter-spacing:125.600000pt;}
.ls16{letter-spacing:133.280000pt;}
.ws11{word-spacing:-58.880000pt;}
.ws3{word-spacing:-18.801067pt;}
.ws2{word-spacing:-18.160000pt;}
.ws4{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.806933pt;}
.ws12{word-spacing:-14.771200pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.625067pt;}
.ws7{word-spacing:-14.494933pt;}
.ws13{word-spacing:-13.984000pt;}
.wsa{word-spacing:-13.326720pt;}
.wsd{word-spacing:-13.306880pt;}
.ws8{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.228800pt;}
.ws10{word-spacing:-12.288000pt;}
.wsf{word-spacing:-12.272000pt;}
.ws9{word-spacing:-10.510933pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:422.701227pt;}
._21{margin-left:-4.636160pt;}
._2{margin-left:-3.532800pt;}
._3{margin-left:-2.168320pt;}
._0{margin-left:-0.898560pt;}
._6{width:0.990720pt;}
._1{width:2.001920pt;}
._5{width:3.607040pt;}
._4{width:4.828160pt;}
._8{width:6.446080pt;}
._d{width:7.375360pt;}
._9{width:8.302080pt;}
._f{width:9.730560pt;}
._c{width:11.069440pt;}
._7{width:12.305920pt;}
._b{width:13.263360pt;}
._13{width:14.416213pt;}
._e{width:16.368640pt;}
._a{width:17.310720pt;}
._1e{width:18.385707pt;}
._1f{width:19.441920pt;}
._19{width:20.604373pt;}
._15{width:22.050987pt;}
._14{width:23.000960pt;}
._1d{width:26.748800pt;}
._22{width:31.147520pt;}
._23{width:32.232533pt;}
._1b{width:33.440000pt;}
._1c{width:34.418133pt;}
._10{width:36.652800pt;}
._11{width:37.786880pt;}
._12{width:38.763307pt;}
._17{width:43.517440pt;}
._20{width:46.574080pt;}
._24{width:79.193600pt;}
._16{width:81.220480pt;}
._18{width:178.720000pt;}
._1a{width:270.717867pt;}
.fs8{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs6{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y160{bottom:3.520000pt;}
.yc{bottom:3.840000pt;}
.y15e{bottom:11.360000pt;}
.y3b{bottom:16.480000pt;}
.y169{bottom:18.400000pt;}
.y162{bottom:18.600000pt;}
.y168{bottom:33.440000pt;}
.y3a{bottom:36.320000pt;}
.y167{bottom:48.480000pt;}
.y39{bottom:57.466667pt;}
.y166{bottom:63.520000pt;}
.y165{bottom:78.400000pt;}
.y89{bottom:79.040000pt;}
.y38{bottom:80.506667pt;}
.y18c{bottom:80.640000pt;}
.y37{bottom:89.626667pt;}
.y88{bottom:94.080000pt;}
.y122{bottom:95.040000pt;}
.y35{bottom:95.680000pt;}
.y18b{bottom:97.120000pt;}
.ycb{bottom:97.440000pt;}
.y1bc{bottom:98.240000pt;}
.y121{bottom:98.400000pt;}
.yca{bottom:108.960000pt;}
.y87{bottom:109.920000pt;}
.y100{bottom:112.320000pt;}
.y86{bottom:113.280000pt;}
.y18a{bottom:114.720000pt;}
.yc9{bottom:124.032000pt;}
.y85{bottom:124.992000pt;}
.yc8{bottom:127.392000pt;}
.y120{bottom:128.352000pt;}
.y34{bottom:129.952000pt;}
.y189{bottom:131.232000pt;}
.yc7{bottom:139.066667pt;}
.y84{bottom:140.026667pt;}
.yff{bottom:142.426667pt;}
.y11f{bottom:143.386667pt;}
.y33{bottom:145.306667pt;}
.y188{bottom:147.706667pt;}
.yc6{bottom:154.106667pt;}
.y83{bottom:155.066667pt;}
.y15c{bottom:157.466667pt;}
.y82{bottom:158.426667pt;}
.y32{bottom:161.786667pt;}
.y187{bottom:164.186667pt;}
.yfe{bottom:168.986667pt;}
.y81{bottom:169.946667pt;}
.yfd{bottom:172.346667pt;}
.y80{bottom:173.306667pt;}
.y31{bottom:178.266667pt;}
.y186{bottom:180.666667pt;}
.y1bb{bottom:180.826667pt;}
.yfc{bottom:184.026667pt;}
.y7f{bottom:184.986667pt;}
.y30{bottom:194.746667pt;}
.y1ba{bottom:197.306667pt;}
.y185{bottom:198.266667pt;}
.yfb{bottom:199.066667pt;}
.y7e{bottom:200.026667pt;}
.y11e{bottom:200.986667pt;}
.yfa{bottom:202.426667pt;}
.yc5{bottom:203.386667pt;}
.y11d{bottom:204.346667pt;}
.y2f{bottom:211.226667pt;}
.y1b9{bottom:213.786667pt;}
.yf9{bottom:214.106667pt;}
.y184{bottom:214.746667pt;}
.y7d{bottom:215.066667pt;}
.y11c{bottom:216.026667pt;}
.y7c{bottom:218.426667pt;}
.y2e{bottom:227.706667pt;}
.yf8{bottom:228.986667pt;}
.y7b{bottom:229.946667pt;}
.y1b8{bottom:230.266667pt;}
.y11b{bottom:230.906667pt;}
.y183{bottom:231.226667pt;}
.yf7{bottom:232.346667pt;}
.yc4{bottom:233.306667pt;}
.y15b{bottom:244.026667pt;}
.y2d{bottom:244.346667pt;}
.yf6{bottom:244.506667pt;}
.y7a{bottom:244.986667pt;}
.y11a{bottom:245.946667pt;}
.y1b7{bottom:246.746667pt;}
.y182{bottom:247.866667pt;}
.y119{bottom:249.306667pt;}
.y15a{bottom:259.066667pt;}
.y79{bottom:260.026667pt;}
.y2c{bottom:260.826667pt;}
.y118{bottom:261.466667pt;}
.y159{bottom:262.426667pt;}
.y1b6{bottom:263.226667pt;}
.y78{bottom:263.386667pt;}
.y181{bottom:264.346667pt;}
.y77{bottom:275.066667pt;}
.yc3{bottom:276.026667pt;}
.y2b{bottom:277.306667pt;}
.y76{bottom:278.426667pt;}
.yc2{bottom:279.386667pt;}
.y1b5{bottom:279.706667pt;}
.y180{bottom:280.826667pt;}
.y124{bottom:284.986667pt;}
.y75{bottom:289.946667pt;}
.y158{bottom:290.426667pt;}
.yc1{bottom:290.906667pt;}
.y74{bottom:293.306667pt;}
.y117{bottom:293.466667pt;}
.y2a{bottom:293.786667pt;}
.y1b4{bottom:296.186667pt;}
.y17f{bottom:297.306667pt;}
.yf5{bottom:297.466667pt;}
.y73{bottom:304.986667pt;}
.yc0{bottom:305.946667pt;}
.ybf{bottom:309.306667pt;}
.y116{bottom:309.946667pt;}
.y29{bottom:310.266667pt;}
.y1b3{bottom:312.666667pt;}
.y17e{bottom:313.786667pt;}
.yf4{bottom:313.946667pt;}
.y157{bottom:316.986667pt;}
.y72{bottom:320.026667pt;}
.ybe{bottom:320.986667pt;}
.y71{bottom:323.386667pt;}
.ybd{bottom:324.346667pt;}
.y115{bottom:326.426667pt;}
.y28{bottom:326.746667pt;}
.y17d{bottom:330.266667pt;}
.yf3{bottom:330.426667pt;}
.y156{bottom:333.466667pt;}
.y70{bottom:335.066667pt;}
.ybc{bottom:336.506667pt;}
.y6f{bottom:338.426667pt;}
.y114{bottom:342.906667pt;}
.y27{bottom:343.226667pt;}
.y17c{bottom:346.786667pt;}
.yf2{bottom:346.946667pt;}
.y155{bottom:349.986667pt;}
.y6e{bottom:350.466667pt;}
.y113{bottom:359.586667pt;}
.y26{bottom:359.746667pt;}
.y1b2{bottom:363.266667pt;}
.yf0{bottom:363.426667pt;}
.y17b{bottom:363.586667pt;}
.y154{bottom:366.466667pt;}
.yf1{bottom:366.786667pt;}
.ybb{bottom:367.586667pt;}
.y111{bottom:376.066667pt;}
.y25{bottom:376.386667pt;}
.y112{bottom:379.426667pt;}
.y1b1{bottom:379.906667pt;}
.yef{bottom:380.066667pt;}
.y17a{bottom:381.346667pt;}
.y6d{bottom:381.506667pt;}
.y153{bottom:382.946667pt;}
.yba{bottom:384.066667pt;}
.y110{bottom:392.546667pt;}
.y24{bottom:392.866667pt;}
.y1b0{bottom:396.386667pt;}
.yee{bottom:396.546667pt;}
.y179{bottom:397.826667pt;}
.y6c{bottom:397.986667pt;}
.y151{bottom:399.426667pt;}
.yb8{bottom:400.546667pt;}
.y152{bottom:402.786667pt;}
.yb9{bottom:403.906667pt;}
.y10e{bottom:409.026667pt;}
.y23{bottom:409.346667pt;}
.y10f{bottom:412.386667pt;}
.y1af{bottom:412.866667pt;}
.yed{bottom:413.026667pt;}
.y178{bottom:414.306667pt;}
.y6b{bottom:414.466667pt;}
.y150{bottom:416.066667pt;}
.yb7{bottom:417.026667pt;}
.y10d{bottom:425.506667pt;}
.y22{bottom:425.826667pt;}
.y1ae{bottom:429.346667pt;}
.yec{bottom:429.506667pt;}
.y177{bottom:430.786667pt;}
.y69{bottom:430.946667pt;}
.y14f{bottom:432.546667pt;}
.yb6{bottom:433.506667pt;}
.y6a{bottom:434.306667pt;}
.y10c{bottom:441.986667pt;}
.y21{bottom:442.306667pt;}
.y1ad{bottom:445.826667pt;}
.yeb{bottom:445.986667pt;}
.y176{bottom:447.266667pt;}
.y68{bottom:447.426667pt;}
.y14e{bottom:449.026667pt;}
.yb5{bottom:449.986667pt;}
.y10a{bottom:458.466667pt;}
.y20{bottom:458.786667pt;}
.y10b{bottom:461.826667pt;}
.y1ac{bottom:462.306667pt;}
.yea{bottom:462.466667pt;}
.y175{bottom:463.906667pt;}
.y66{bottom:464.066667pt;}
.y14c{bottom:465.506667pt;}
.yb4{bottom:466.466667pt;}
.y67{bottom:467.426667pt;}
.y14d{bottom:468.866667pt;}
.y109{bottom:474.946667pt;}
.y1f{bottom:475.266667pt;}
.y1ab{bottom:478.786667pt;}
.ye8{bottom:478.946667pt;}
.y174{bottom:480.386667pt;}
.y65{bottom:480.546667pt;}
.y14b{bottom:481.986667pt;}
.ye9{bottom:482.306667pt;}
.yb3{bottom:482.946667pt;}
.y107{bottom:491.586667pt;}
.y1e{bottom:491.746667pt;}
.y108{bottom:494.946667pt;}
.y1aa{bottom:495.266667pt;}
.ye7{bottom:495.426667pt;}
.y173{bottom:496.866667pt;}
.y64{bottom:497.026667pt;}
.y14a{bottom:498.466667pt;}
.yb2{bottom:499.586667pt;}
.y106{bottom:508.066667pt;}
.y1d{bottom:508.386667pt;}
.y1a9{bottom:511.906667pt;}
.ye6{bottom:512.066667pt;}
.y63{bottom:513.506667pt;}
.y172{bottom:513.666667pt;}
.y149{bottom:514.946667pt;}
.yb1{bottom:516.066667pt;}
.y105{bottom:524.546667pt;}
.y1c{bottom:524.866667pt;}
.y1a8{bottom:528.386667pt;}
.ye4{bottom:528.546667pt;}
.y62{bottom:529.986667pt;}
.y171{bottom:531.266667pt;}
.y148{bottom:531.426667pt;}
.ye5{bottom:531.906667pt;}
.yb0{bottom:532.546667pt;}
.y104{bottom:541.026667pt;}
.y1b{bottom:541.346667pt;}
.y1a7{bottom:544.866667pt;}
.ye3{bottom:545.026667pt;}
.y61{bottom:546.466667pt;}
.y170{bottom:547.906667pt;}
.y146{bottom:548.066667pt;}
.yae{bottom:549.026667pt;}
.y147{bottom:551.426667pt;}
.yaf{bottom:552.386667pt;}
.y103{bottom:553.666667pt;}
.y123{bottom:553.760000pt;}
.y1a{bottom:557.826667pt;}
.y1a6{bottom:561.346667pt;}
.ye2{bottom:561.506667pt;}
.y60{bottom:562.946667pt;}
.y16f{bottom:564.386667pt;}
.y145{bottom:564.546667pt;}
.yad{bottom:565.506667pt;}
.y19{bottom:574.333333pt;}
.y1a5{bottom:577.853333pt;}
.ye1{bottom:578.013333pt;}
.y5f{bottom:579.453333pt;}
.y16e{bottom:580.893333pt;}
.y144{bottom:581.053333pt;}
.yac{bottom:582.013333pt;}
.y18{bottom:590.813333pt;}
.ye0{bottom:594.493333pt;}
.y1a4{bottom:595.453333pt;}
.y5e{bottom:596.093333pt;}
.y16d{bottom:597.373333pt;}
.y143{bottom:597.533333pt;}
.yab{bottom:598.493333pt;}
.y17{bottom:607.293333pt;}
.ydf{bottom:610.973333pt;}
.y1a3{bottom:611.933333pt;}
.y5d{bottom:612.573333pt;}
.y16c{bottom:613.853333pt;}
.y142{bottom:614.013333pt;}
.yaa{bottom:614.973333pt;}
.y16{bottom:623.773333pt;}
.ydd{bottom:627.453333pt;}
.y1a2{bottom:628.413333pt;}
.y5b{bottom:629.053333pt;}
.y16b{bottom:630.333333pt;}
.y141{bottom:630.493333pt;}
.yde{bottom:630.813333pt;}
.ya8{bottom:631.613333pt;}
.y5c{bottom:632.413333pt;}
.ya9{bottom:634.973333pt;}
.y15{bottom:640.413333pt;}
.ydb{bottom:644.093333pt;}
.y1a1{bottom:644.893333pt;}
.y5a{bottom:645.533333pt;}
.y140{bottom:646.973333pt;}
.ydc{bottom:647.453333pt;}
.ya7{bottom:648.093333pt;}
.y14{bottom:656.893333pt;}
.yda{bottom:660.573333pt;}
.y59{bottom:662.013333pt;}
.y1a0{bottom:662.493333pt;}
.y16a{bottom:663.293333pt;}
.y13f{bottom:663.453333pt;}
.ya5{bottom:664.573333pt;}
.ya6{bottom:667.933333pt;}
.y13{bottom:673.373333pt;}
.y164{bottom:676.733333pt;}
.yd9{bottom:677.053333pt;}
.y58{bottom:678.493333pt;}
.y19f{bottom:678.973333pt;}
.y13e{bottom:680.093333pt;}
.ya4{bottom:681.053333pt;}
.y12{bottom:689.853333pt;}
.yd8{bottom:693.533333pt;}
.y57{bottom:694.973333pt;}
.y19e{bottom:695.453333pt;}
.y13d{bottom:696.573333pt;}
.ya3{bottom:697.533333pt;}
.y11{bottom:706.333333pt;}
.yd7{bottom:710.013333pt;}
.y55{bottom:711.453333pt;}
.y19d{bottom:711.933333pt;}
.y13c{bottom:713.053333pt;}
.ya2{bottom:714.013333pt;}
.y56{bottom:714.813333pt;}
.y10{bottom:722.813333pt;}
.yd6{bottom:726.493333pt;}
.y54{bottom:728.093333pt;}
.y19c{bottom:728.413333pt;}
.y13a{bottom:729.533333pt;}
.ya1{bottom:730.813333pt;}
.y13b{bottom:732.893333pt;}
.yf{bottom:739.293333pt;}
.yd5{bottom:742.973333pt;}
.y53{bottom:744.573333pt;}
.y19b{bottom:744.893333pt;}
.y139{bottom:746.013333pt;}
.ya0{bottom:748.573333pt;}
.ye{bottom:755.773333pt;}
.yd4{bottom:759.453333pt;}
.y52{bottom:761.053333pt;}
.y19a{bottom:761.533333pt;}
.y137{bottom:762.493333pt;}
.y9f{bottom:765.053333pt;}
.y138{bottom:765.853333pt;}
.y163{bottom:766.653333pt;}
.yd{bottom:772.413333pt;}
.yd3{bottom:776.093333pt;}
.y51{bottom:777.533333pt;}
.y199{bottom:778.013333pt;}
.y136{bottom:778.973333pt;}
.y9e{bottom:781.533333pt;}
.y161{bottom:781.693333pt;}
.yb{bottom:785.053333pt;}
.yd2{bottom:792.573333pt;}
.y50{bottom:794.053333pt;}
.y198{bottom:794.533333pt;}
.y135{bottom:795.493333pt;}
.y9d{bottom:798.053333pt;}
.ya{bottom:805.413333pt;}
.yd1{bottom:809.093333pt;}
.y4f{bottom:810.533333pt;}
.y197{bottom:811.013333pt;}
.y133{bottom:812.133333pt;}
.y15d{bottom:812.453333pt;}
.y9c{bottom:814.533333pt;}
.y134{bottom:815.493333pt;}
.y9{bottom:821.893333pt;}
.yd0{bottom:825.573333pt;}
.y4d{bottom:827.013333pt;}
.y196{bottom:827.493333pt;}
.y15f{bottom:827.973333pt;}
.y132{bottom:828.613333pt;}
.y4e{bottom:830.373333pt;}
.y9a{bottom:831.013333pt;}
.y9b{bottom:834.373333pt;}
.y8{bottom:838.373333pt;}
.ycf{bottom:842.053333pt;}
.y4b{bottom:843.493333pt;}
.y195{bottom:843.973333pt;}
.y131{bottom:845.093333pt;}
.y4c{bottom:846.853333pt;}
.y99{bottom:847.653333pt;}
.y7{bottom:854.853333pt;}
.yce{bottom:858.533333pt;}
.y4a{bottom:860.133333pt;}
.y194{bottom:860.453333pt;}
.y12f{bottom:861.573333pt;}
.y98{bottom:864.133333pt;}
.y130{bottom:864.933333pt;}
.y6{bottom:874.693333pt;}
.ycd{bottom:875.333333pt;}
.y49{bottom:876.613333pt;}
.y193{bottom:876.933333pt;}
.y12e{bottom:878.053333pt;}
.y97{bottom:880.613333pt;}
.y102{bottom:883.173333pt;}
.y5{bottom:887.813333pt;}
.y47{bottom:893.093333pt;}
.y192{bottom:893.573333pt;}
.y12c{bottom:894.533333pt;}
.y48{bottom:896.453333pt;}
.y95{bottom:897.093333pt;}
.y12d{bottom:897.893333pt;}
.y96{bottom:900.453333pt;}
.y4{bottom:904.453333pt;}
.y46{bottom:909.573333pt;}
.y191{bottom:910.053333pt;}
.y12b{bottom:911.013333pt;}
.ycc{bottom:912.933333pt;}
.y94{bottom:913.573333pt;}
.y3{bottom:922.053333pt;}
.y45{bottom:926.053333pt;}
.y190{bottom:926.533333pt;}
.y12a{bottom:927.493333pt;}
.y92{bottom:930.053333pt;}
.y93{bottom:933.413333pt;}
.y43{bottom:942.533333pt;}
.y2{bottom:943.013333pt;}
.y129{bottom:944.133333pt;}
.y44{bottom:945.893333pt;}
.y91{bottom:946.533333pt;}
.y101{bottom:949.893333pt;}
.y42{bottom:959.013333pt;}
.y18f{bottom:959.493333pt;}
.y128{bottom:960.613333pt;}
.y90{bottom:963.013333pt;}
.y1{bottom:963.973333pt;}
.y40{bottom:975.493333pt;}
.y18e{bottom:975.973333pt;}
.y127{bottom:977.093333pt;}
.y41{bottom:978.853333pt;}
.y8f{bottom:979.653333pt;}
.y36{bottom:979.973333pt;}
.y3f{bottom:992.133333pt;}
.y18d{bottom:992.453333pt;}
.y126{bottom:993.573333pt;}
.y8d{bottom:996.133333pt;}
.y8e{bottom:999.493333pt;}
.y3e{bottom:1008.933333pt;}
.y125{bottom:1010.053333pt;}
.y8c{bottom:1012.293333pt;}
.y3d{bottom:1022.720000pt;}
.y8b{bottom:1028.480000pt;}
.y3c{bottom:1042.720000pt;}
.y8a{bottom:1043.840000pt;}
.h16{height:14.880000pt;}
.h15{height:15.040000pt;}
.h6{height:16.512000pt;}
.h17{height:29.952000pt;}
.h14{height:30.560000pt;}
.h10{height:31.455000pt;}
.h5{height:33.785000pt;}
.h3{height:39.876250pt;}
.h7{height:40.997500pt;}
.ha{height:43.343750pt;}
.h8{height:48.347500pt;}
.h2{height:50.712187pt;}
.h11{height:52.834688pt;}
.h4{height:53.590000pt;}
.h13{height:56.910417pt;}
.he{height:58.250000pt;}
.hf{height:58.563750pt;}
.hd{height:62.910000pt;}
.hc{height:68.152500pt;}
.hb{height:72.384062pt;}
.h18{height:89.920000pt;}
.h9{height:103.392000pt;}
.h12{height:325.920000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wa{width:34.592000pt;}
.wb{width:133.120000pt;}
.w4{width:147.706667pt;}
.w3{width:148.186667pt;}
.w6{width:166.906667pt;}
.w5{width:173.146667pt;}
.w7{width:207.746667pt;}
.wd{width:210.466667pt;}
.we{width:264.666667pt;}
.w8{width:456.386667pt;}
.wc{width:475.133333pt;}
.w9{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.272000pt;}
.x10{left:7.232000pt;}
.xf{left:72.960000pt;}
.xd{left:75.519988pt;}
.x8{left:77.600000pt;}
.x16{left:104.031988pt;}
.x29{left:108.031988pt;}
.x5e{left:110.112000pt;}
.x38{left:112.031988pt;}
.x2{left:115.391988pt;}
.x47{left:118.431988pt;}
.x5d{left:148.506655pt;}
.x51{left:152.666643pt;}
.x52{left:161.306655pt;}
.xe{left:163.866655pt;}
.x3{left:165.626655pt;}
.x23{left:201.306643pt;}
.x24{left:205.626655pt;}
.x1b{left:206.586643pt;}
.x1c{left:210.906655pt;}
.x60{left:212.066667pt;}
.x21{left:220.986643pt;}
.x22{left:225.306655pt;}
.xa{left:227.706667pt;}
.x5f{left:243.226667pt;}
.x5{left:244.506655pt;}
.x5b{left:250.786643pt;}
.x5c{left:259.426655pt;}
.x3b{left:265.026643pt;}
.x19{left:268.386643pt;}
.x1a{left:272.706655pt;}
.x3c{left:273.666655pt;}
.x6{left:274.946655pt;}
.x4f{left:278.306643pt;}
.x11{left:280.706667pt;}
.x57{left:282.946643pt;}
.x59{left:284.386655pt;}
.x50{left:286.946655pt;}
.x58{left:291.586655pt;}
.x1d{left:295.906643pt;}
.x1e{left:300.226655pt;}
.x2c{left:308.706643pt;}
.x2e{left:311.586643pt;}
.x2d{left:317.346655pt;}
.x2f{left:320.226655pt;}
.x7{left:328.546655pt;}
.x45{left:335.426643pt;}
.x3f{left:341.986643pt;}
.x30{left:343.266643pt;}
.x40{left:350.626655pt;}
.x31{left:351.906655pt;}
.x32{left:358.786643pt;}
.x4{left:367.746655pt;}
.x46{left:372.706643pt;}
.x3d{left:374.786643pt;}
.xb{left:377.346667pt;}
.x33{left:381.026643pt;}
.x3e{left:383.426655pt;}
.x34{left:389.666655pt;}
.x5a{left:393.986643pt;}
.x1{left:396.866655pt;}
.x4b{left:402.466643pt;}
.x4c{left:411.106655pt;}
.x53{left:436.093310pt;}
.x54{left:444.733322pt;}
.x39{left:453.693310pt;}
.x3a{left:462.333322pt;}
.x25{left:495.293310pt;}
.x26{left:499.613322pt;}
.x17{left:501.053310pt;}
.x49{left:502.653310pt;}
.x18{left:505.373322pt;}
.x4a{left:511.293322pt;}
.x12{left:514.013322pt;}
.x1f{left:523.933310pt;}
.x20{left:528.253322pt;}
.x43{left:544.413310pt;}
.xc{left:551.453333pt;}
.x44{left:553.053322pt;}
.x27{left:583.333310pt;}
.x28{left:587.653322pt;}
.x4d{left:589.093310pt;}
.x4e{left:597.733322pt;}
.x35{left:606.533310pt;}
.x55{left:610.853310pt;}
.x36{left:615.173322pt;}
.x56{left:619.493322pt;}
.x37{left:623.333322pt;}
.x41{left:633.733310pt;}
.x42{left:642.373322pt;}
.x48{left:680.133322pt;}
.x13{left:690.853322pt;}
.x14{left:703.173322pt;}
.x2a{left:706.373310pt;}
.x2b{left:715.013322pt;}
.x15{left:718.213322pt;}
}




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