
    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_24438e07fe2ae5bc58886b6e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3aef6fe24ce202d116740596.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e402184323ed8b57ca8dbaf9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_88a8119c2e85e33013fefb3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_394736713ac9b7ac24ad7ccd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_704866ad2c3f82c8dc255395.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.955078;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_b6b8af95d893350615d98130.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_84a2cfe4c3e2a42fcba8fb04.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-21.600000px;}
.v3{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.000000px;}
.v1{vertical-align:21.600000px;}
.lse{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.876000px;}
.ls8{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.384000px;}
.ls13{letter-spacing:-0.300000px;}
.ls2{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.lsf{letter-spacing:0.195600px;}
.lsd{letter-spacing:0.208800px;}
.ls5{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.384000px;}
.ls9{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.600000px;}
.ls11{letter-spacing:0.780000px;}
.ls16{letter-spacing:1.620000px;}
.ls17{letter-spacing:15.720000px;}
.lsa{letter-spacing:45.720000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws7{word-spacing:-15.900000px;}
.ws8{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.054000px;}
.ws3{word-spacing:-15.000000px;}
.ws9{word-spacing:-10.824000px;}
.wsc{word-spacing:-10.800000px;}
.wsb{word-spacing:-10.500000px;}
.ws5{word-spacing:-10.108800px;}
.ws6{word-spacing:-10.095600px;}
.ws2{word-spacing:-9.900000px;}
.wsa{word-spacing:-9.624000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-3.330000px;}
._d{margin-left:-2.172000px;}
._1{margin-left:-1.152000px;}
._0{width:1.182000px;}
._7{width:3.180000px;}
._c{width:4.644000px;}
._8{width:6.300000px;}
._10{width:7.518000px;}
._a{width:8.700000px;}
._9{width:9.900000px;}
._f{width:11.760000px;}
._e{width:12.828000px;}
._b{width:13.968000px;}
._13{width:16.908000px;}
._12{width:18.072000px;}
._6{width:19.122000px;}
._14{width:20.568000px;}
._15{width:22.038000px;}
._16{width:23.262000px;}
._19{width:25.032000px;}
._18{width:28.416000px;}
._17{width:29.460000px;}
._1a{width:31.140000px;}
._1b{width:32.700000px;}
._4{width:336.180000px;}
._2{width:559.950000px;}
._3{width:642.780000px;}
._5{width:1180.080000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fsb{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:57.600000px;}
.fs2{font-size:60.000000px;}
.fsa{font-size:63.600000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y120{bottom:0.015000px;}
.yaf{bottom:0.450000px;}
.yac{bottom:0.480000px;}
.yaa{bottom:0.495000px;}
.y3d{bottom:1.800000px;}
.y124{bottom:3.300000px;}
.y11b{bottom:3.315000px;}
.y12b{bottom:3.585000px;}
.y125{bottom:3.600000px;}
.y11e{bottom:3.900000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y12c{bottom:6.585000px;}
.y122{bottom:6.600000px;}
.y11c{bottom:6.615000px;}
.y139{bottom:7.200000px;}
.y119{bottom:7.215000px;}
.yb7{bottom:11.685000px;}
.yb4{bottom:11.700000px;}
.yef{bottom:11.715000px;}
.yfd{bottom:11.730000px;}
.yc4{bottom:11.745000px;}
.ycb{bottom:12.000000px;}
.yc8{bottom:12.015000px;}
.y5{bottom:12.337500px;}
.yc1{bottom:12.900000px;}
.y135{bottom:17.100000px;}
.y136{bottom:20.700000px;}
.yb8{bottom:24.600000px;}
.yc2{bottom:24.645000px;}
.yfe{bottom:25.830000px;}
.y3c{bottom:27.045000px;}
.yb6{bottom:37.485000px;}
.ybe{bottom:37.500000px;}
.yc3{bottom:37.545000px;}
.yc7{bottom:37.800000px;}
.yca{bottom:37.815000px;}
.y4{bottom:46.800000px;}
.y3b{bottom:47.745000px;}
.ybd{bottom:50.400000px;}
.y1{bottom:57.037500px;}
.ybf{bottom:63.300000px;}
.yc6{bottom:63.600000px;}
.y3a{bottom:67.245000px;}
.y3f{bottom:74.137500px;}
.ybb{bottom:77.145000px;}
.y3{bottom:81.337500px;}
.y39{bottom:81.945000px;}
.y38{bottom:99.045000px;}
.yba{bottom:102.945000px;}
.ya6{bottom:115.237500px;}
.y78{bottom:116.437500px;}
.y37{bottom:116.445000px;}
.y140{bottom:117.037500px;}
.ye9{bottom:121.837500px;}
.y2a{bottom:131.737500px;}
.y77{bottom:133.537500px;}
.y36{bottom:133.545000px;}
.y13f{bottom:134.137500px;}
.ya5{bottom:135.937500px;}
.ye8{bottom:138.937500px;}
.y187{bottom:140.437500px;}
.y29{bottom:148.837500px;}
.y76{bottom:150.930000px;}
.y35{bottom:150.945000px;}
.y13e{bottom:151.530000px;}
.ye7{bottom:156.345000px;}
.ya4{bottom:156.645000px;}
.y186{bottom:157.830000px;}
.y28{bottom:166.230000px;}
.y34{bottom:168.045000px;}
.y13d{bottom:168.630000px;}
.ye6{bottom:173.430000px;}
.y185{bottom:174.930000px;}
.ya3{bottom:177.345000px;}
.y27{bottom:183.375000px;}
.y33{bottom:185.445000px;}
.y75{bottom:185.475000px;}
.y13c{bottom:186.075000px;}
.ye5{bottom:190.875000px;}
.y184{bottom:192.375000px;}
.ya2{bottom:198.075000px;}
.y26{bottom:200.775000px;}
.y16a{bottom:202.575000px;}
.y32{bottom:202.590000px;}
.y74{bottom:203.175000px;}
.ye4{bottom:207.975000px;}
.y183{bottom:209.475000px;}
.y25{bottom:217.875000px;}
.ya1{bottom:218.175000px;}
.y169{bottom:219.975000px;}
.y31{bottom:219.990000px;}
.y13b{bottom:220.575000px;}
.y73{bottom:222.675000px;}
.ye3{bottom:225.375000px;}
.y182{bottom:226.875000px;}
.y24{bottom:235.275000px;}
.ya0{bottom:235.575000px;}
.y30{bottom:237.075000px;}
.y10a{bottom:240.675000px;}
.ye2{bottom:242.475000px;}
.y181{bottom:243.975000px;}
.y13a{bottom:248.175000px;}
.y23{bottom:252.375000px;}
.y9f{bottom:252.675000px;}
.y72{bottom:254.475000px;}
.y2f{bottom:254.490000px;}
.ye1{bottom:259.575000px;}
.y180{bottom:261.375000px;}
.y109{bottom:266.475000px;}
.y22{bottom:269.775000px;}
.y9e{bottom:270.075000px;}
.y71{bottom:271.575000px;}
.y2e{bottom:271.590000px;}
.y168{bottom:272.175000px;}
.y138{bottom:273.075000px;}
.ye0{bottom:276.975000px;}
.y17f{bottom:278.475000px;}
.ya8{bottom:283.080000px;}
.y21{bottom:286.875000px;}
.y9d{bottom:287.175000px;}
.y70{bottom:288.975000px;}
.y2d{bottom:288.990000px;}
.y167{bottom:291.675000px;}
.y108{bottom:293.775000px;}
.ydf{bottom:294.075000px;}
.y17e{bottom:295.875000px;}
.y137{bottom:297.975000px;}
.y20{bottom:304.275000px;}
.y9c{bottom:304.575000px;}
.y6f{bottom:306.075000px;}
.y2c{bottom:306.675000px;}
.yde{bottom:311.475000px;}
.y17d{bottom:312.975000px;}
.y1f{bottom:321.375000px;}
.y9b{bottom:322.275000px;}
.y134{bottom:323.175000px;}
.y6e{bottom:323.475000px;}
.ydd{bottom:328.575000px;}
.y17c{bottom:330.375000px;}
.y107{bottom:332.475000px;}
.y1e{bottom:338.775000px;}
.y6d{bottom:340.575000px;}
.y9a{bottom:342.375000px;}
.ydc{bottom:346.005000px;}
.y17b{bottom:347.505000px;}
.y106{bottom:352.020000px;}
.y1d{bottom:355.920000px;}
.y133{bottom:357.705000px;}
.y6c{bottom:358.005000px;}
.y99{bottom:359.820000px;}
.ydb{bottom:361.320000px;}
.y17a{bottom:364.905000px;}
.y105{bottom:366.705000px;}
.y1c{bottom:373.320000px;}
.y6b{bottom:375.105000px;}
.y98{bottom:376.920000px;}
.y132{bottom:381.120000px;}
.y179{bottom:382.020000px;}
.y104{bottom:383.820000px;}
.yda{bottom:387.120000px;}
.y1b{bottom:390.420000px;}
.y6a{bottom:392.520000px;}
.y97{bottom:394.320000px;}
.y131{bottom:398.505000px;}
.y178{bottom:399.420000px;}
.y103{bottom:401.205000px;}
.y1a{bottom:408.120000px;}
.y69{bottom:409.620000px;}
.y96{bottom:411.420000px;}
.yd9{bottom:412.905000px;}
.y130{bottom:415.620000px;}
.y177{bottom:416.505000px;}
.y102{bottom:418.320000px;}
.y68{bottom:427.005000px;}
.y95{bottom:428.820000px;}
.y101{bottom:433.620000px;}
.y176{bottom:433.920000px;}
.yd8{bottom:439.005000px;}
.y12f{bottom:439.320000px;}
.y166{bottom:444.120000px;}
.y67{bottom:444.720000px;}
.y94{bottom:445.905000px;}
.y175{bottom:451.005000px;}
.y100{bottom:459.705000px;}
.y165{bottom:461.505000px;}
.y12e{bottom:463.005000px;}
.y66{bottom:464.820000px;}
.y174{bottom:468.420000px;}
.y164{bottom:478.620000px;}
.y12d{bottom:480.120000px;}
.y93{bottom:481.920000px;}
.y65{bottom:482.205000px;}
.yff{bottom:485.505000px;}
.yd7{bottom:492.120000px;}
.y2b{bottom:492.705000px;}
.y163{bottom:496.005000px;}
.y64{bottom:499.320000px;}
.y173{bottom:502.920000px;}
.y12a{bottom:503.820000px;}
.yfc{bottom:512.820000px;}
.y162{bottom:513.120000px;}
.y92{bottom:516.450000px;}
.y63{bottom:516.750000px;}
.y172{bottom:520.050000px;}
.y129{bottom:527.550000px;}
.y161{bottom:530.550000px;}
.yd6{bottom:530.850000px;}
.y62{bottom:533.850000px;}
.ya7{bottom:534.900000px;}
.y171{bottom:537.450000px;}
.y128{bottom:544.650000px;}
.y91{bottom:546.150000px;}
.y160{bottom:547.050000px;}
.y61{bottom:551.250000px;}
.yd5{bottom:551.550000px;}
.y170{bottom:554.550000px;}
.y15f{bottom:561.450000px;}
.yb0{bottom:567.600000px;}
.y60{bottom:568.350000px;}
.yfb{bottom:571.050000px;}
.yd4{bottom:571.950000px;}
.y15e{bottom:578.850000px;}
.y90{bottom:584.250000px;}
.yfa{bottom:585.750000px;}
.y5f{bottom:586.050000px;}
.y16f{bottom:589.050000px;}
.yd3{bottom:589.950000px;}
.y127{bottom:592.050000px;}
.y15d{bottom:595.950000px;}
.yf9{bottom:602.850000px;}
.yd2{bottom:606.150000px;}
.y16e{bottom:606.450000px;}
.y5e{bottom:606.750000px;}
.y126{bottom:609.150000px;}
.y15c{bottom:613.350000px;}
.yd1{bottom:616.650000px;}
.yf8{bottom:620.250000px;}
.y8f{bottom:622.350000px;}
.y16d{bottom:623.550000px;}
.y5d{bottom:626.250000px;}
.y15b{bottom:630.450000px;}
.yd0{bottom:632.850000px;}
.yf7{bottom:637.350000px;}
.y5c{bottom:640.950000px;}
.ycf{bottom:643.350000px;}
.yae{bottom:643.500000px;}
.y15a{bottom:647.850000px;}
.yf6{bottom:654.750000px;}
.y123{bottom:656.550000px;}
.y5b{bottom:658.050000px;}
.y8e{bottom:660.750000px;}
.yce{bottom:661.650000px;}
.y159{bottom:664.950000px;}
.yf5{bottom:671.850000px;}
.y121{bottom:673.650000px;}
.y5a{bottom:675.450000px;}
.ycd{bottom:679.350000px;}
.y158{bottom:682.380000px;}
.yf4{bottom:689.280000px;}
.y59{bottom:692.595000px;}
.y11f{bottom:697.380000px;}
.y8d{bottom:698.895000px;}
.ycc{bottom:699.495000px;}
.yf3{bottom:704.595000px;}
.y58{bottom:709.980000px;}
.yc9{bottom:713.280000px;}
.y157{bottom:716.880000px;}
.y11d{bottom:722.595000px;}
.y57{bottom:727.080000px;}
.yf2{bottom:730.380000px;}
.yad{bottom:733.800000px;}
.y156{bottom:733.995000px;}
.y8c{bottom:736.980000px;}
.y11a{bottom:740.880000px;}
.y56{bottom:744.495000px;}
.y155{bottom:751.395000px;}
.yf1{bottom:756.195000px;}
.y55{bottom:761.595000px;}
.yc5{bottom:765.780000px;}
.y154{bottom:767.895000px;}
.y8b{bottom:775.080000px;}
.y54{bottom:778.980000px;}
.yf0{bottom:782.280000px;}
.y153{bottom:782.295000px;}
.yab{bottom:789.600000px;}
.y53{bottom:796.080000px;}
.y152{bottom:799.695000px;}
.y118{bottom:803.580000px;}
.yee{bottom:808.080000px;}
.ya9{bottom:808.800000px;}
.y8a{bottom:813.195000px;}
.y52{bottom:813.495000px;}
.y151{bottom:816.795000px;}
.y117{bottom:824.295000px;}
.y51{bottom:830.580000px;}
.y89{bottom:832.380000px;}
.yed{bottom:833.895000px;}
.y150{bottom:834.195000px;}
.y116{bottom:843.795000px;}
.yb9{bottom:844.380000px;}
.y50{bottom:847.995000px;}
.y19{bottom:849.225000px;}
.y88{bottom:849.525000px;}
.y14f{bottom:851.325000px;}
.y115{bottom:858.225000px;}
.yec{bottom:861.225000px;}
.y4f{bottom:865.125000px;}
.y18{bottom:866.325000px;}
.y87{bottom:866.925000px;}
.y14e{bottom:868.725000px;}
.y114{bottom:875.625000px;}
.y4e{bottom:882.525000px;}
.y86{bottom:884.025000px;}
.y14d{bottom:885.825000px;}
.y17{bottom:890.625000px;}
.y113{bottom:892.725000px;}
.yc0{bottom:896.925000px;}
.y4d{bottom:899.625000px;}
.yeb{bottom:900.225000px;}
.y85{bottom:901.425000px;}
.y14c{bottom:903.225000px;}
.y112{bottom:910.125000px;}
.y16{bottom:913.725000px;}
.y4c{bottom:917.025000px;}
.y84{bottom:918.525000px;}
.yea{bottom:919.725000px;}
.y14b{bottom:920.325000px;}
.y111{bottom:927.225000px;}
.y4b{bottom:934.125000px;}
.y83{bottom:935.925000px;}
.y14a{bottom:937.725000px;}
.y15{bottom:940.725000px;}
.y110{bottom:942.525000px;}
.ybc{bottom:949.425000px;}
.y4a{bottom:951.525000px;}
.y82{bottom:953.025000px;}
.y149{bottom:954.825000px;}
.y14{bottom:958.425000px;}
.y49{bottom:968.625000px;}
.y13{bottom:969.825000px;}
.y81{bottom:970.425000px;}
.y148{bottom:972.225000px;}
.y12{bottom:985.725000px;}
.y48{bottom:986.025000px;}
.y80{bottom:987.525000px;}
.y147{bottom:989.325000px;}
.y10f{bottom:994.425000px;}
.y47{bottom:1003.125000px;}
.y11{bottom:1003.425000px;}
.y7f{bottom:1004.925000px;}
.y146{bottom:1006.725000px;}
.y10e{bottom:1020.255000px;}
.y46{bottom:1020.570000px;}
.y16c{bottom:1020.870000px;}
.y7e{bottom:1022.070000px;}
.y145{bottom:1023.870000px;}
.y10{bottom:1024.170000px;}
.yb5{bottom:1027.770000px;}
.y45{bottom:1037.670000px;}
.y7d{bottom:1039.455000px;}
.y16b{bottom:1040.370000px;}
.yd{bottom:1040.955000px;}
.y144{bottom:1041.255000px;}
.y10d{bottom:1046.070000px;}
.y44{bottom:1055.070000px;}
.y7c{bottom:1056.570000px;}
.y143{bottom:1058.370000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y10c{bottom:1072.155000px;}
.y43{bottom:1072.170000px;}
.y7b{bottom:1073.955000px;}
.y142{bottom:1075.755000px;}
.yb3{bottom:1080.255000px;}
.ya{bottom:1083.570000px;}
.y42{bottom:1089.570000px;}
.y7a{bottom:1091.070000px;}
.y141{bottom:1092.255000px;}
.y9{bottom:1097.955000px;}
.y10b{bottom:1099.455000px;}
.y41{bottom:1106.670000px;}
.y79{bottom:1107.870000px;}
.y8{bottom:1115.670000px;}
.yb2{bottom:1117.455000px;}
.y40{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yb1{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3e{bottom:1196.400000px;}
.h9{height:8.677734px;}
.h1a{height:10.800000px;}
.h1c{height:11.100000px;}
.h5{height:12.700195px;}
.h2e{height:17.100000px;}
.h2f{height:17.400000px;}
.h2b{height:18.300000px;}
.ha{height:21.000000px;}
.h18{height:21.694336px;}
.h2a{height:23.400000px;}
.h2c{height:23.700000px;}
.h2d{height:23.737500px;}
.h29{height:24.900000px;}
.h1d{height:25.800000px;}
.h28{height:25.822500px;}
.h26{height:25.837500px;}
.h27{height:26.100000px;}
.hc{height:28.636523px;}
.h7{height:33.867188px;}
.h30{height:34.537500px;}
.h13{height:34.664062px;}
.h17{height:34.710938px;}
.h3{height:36.000000px;}
.hd{height:38.100586px;}
.h8{height:39.049805px;}
.h1b{height:40.640625px;}
.h4{height:42.333984px;}
.h14{height:43.330078px;}
.hf{height:43.388672px;}
.h16{height:43.681641px;}
.h15{height:44.507812px;}
.h25{height:45.991992px;}
.h12{height:49.453125px;}
.hb{height:50.236523px;}
.h6{height:50.800781px;}
.h1e{height:51.585000px;}
.h21{height:51.600000px;}
.h22{height:51.637500px;}
.h24{height:51.900000px;}
.h11{height:51.996094px;}
.he{height:52.066406px;}
.h1{height:65.645508px;}
.h20{height:77.437500px;}
.h23{height:77.700000px;}
.h2{height:97.200000px;}
.h1f{height:182.475000px;}
.h19{height:298.800000px;}
.h10{height:323.475000px;}
.h0{height:1263.000000px;}
.w19{width:20.400000px;}
.w4{width:72.300000px;}
.wb{width:92.400000px;}
.w11{width:93.600000px;}
.wf{width:101.137500px;}
.w14{width:101.737500px;}
.w12{width:102.022500px;}
.w13{width:102.037500px;}
.wd{width:105.337500px;}
.w3{width:108.000000px;}
.wc{width:116.100000px;}
.wa{width:120.300000px;}
.w9{width:125.400000px;}
.w17{width:136.837500px;}
.w1f{width:137.437500px;}
.we{width:138.037500px;}
.w1a{width:141.337500px;}
.w1b{width:141.675000px;}
.w8{width:180.600000px;}
.w6{width:253.275000px;}
.w15{width:262.575000px;}
.w18{width:282.375000px;}
.w1d{width:282.975000px;}
.w1c{width:302.775000px;}
.w1e{width:303.405000px;}
.w10{width:404.205000px;}
.w5{width:483.450000px;}
.w16{width:585.780000px;}
.w7{width:730.125000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:8.100000px;}
.x2{left:10.799998px;}
.x24{left:12.000000px;}
.x35{left:13.200000px;}
.x25{left:14.985000px;}
.x10{left:16.200000px;}
.x1f{left:18.000000px;}
.x28{left:19.200000px;}
.x22{left:20.985000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.x20{left:24.600000px;}
.x29{left:27.300000px;}
.x26{left:30.000000px;}
.x1c{left:32.085000px;}
.x34{left:33.885000px;}
.x21{left:36.300000px;}
.x33{left:37.830000px;}
.x31{left:39.630000px;}
.x2a{left:41.100000px;}
.x1a{left:44.400000px;}
.x36{left:45.630000px;}
.x32{left:47.130000px;}
.x27{left:50.400000px;}
.xb{left:78.337500px;}
.x3b{left:79.837500px;}
.x1{left:81.037487px;}
.xf{left:84.037500px;}
.x12{left:108.037487px;}
.xe{left:116.745000px;}
.x13{left:135.037487px;}
.x3c{left:141.337500px;}
.x14{left:144.900000px;}
.x9{left:153.629987px;}
.x1e{left:157.845000px;}
.x15{left:167.400000px;}
.x16{left:169.800000px;}
.x18{left:172.500000px;}
.x2b{left:174.945000px;}
.x17{left:184.500000px;}
.x19{left:186.375000px;}
.xc{left:241.567500px;}
.x2c{left:276.975000px;}
.x1b{left:324.420000px;}
.x38{left:362.820000px;}
.x2d{left:379.020000px;}
.x39{left:383.220000px;}
.x6{left:405.119987px;}
.x1d{left:425.550000px;}
.x2e{left:481.050000px;}
.x3a{left:524.550000px;}
.xd{left:561.780000px;}
.x11{left:574.994987px;}
.x2f{left:583.095000px;}
.x8{left:616.379987px;}
.x7{left:648.194987px;}
.x37{left:666.225000px;}
.x30{left:685.125000px;}
.x5{left:698.624987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v3{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.333333pt;}
.v1{vertical-align:19.200000pt;}
.lse{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.778667pt;}
.ls8{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.341333pt;}
.ls13{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.lsf{letter-spacing:0.173867pt;}
.lsd{letter-spacing:0.185600pt;}
.ls5{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls9{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls11{letter-spacing:0.693333pt;}
.ls16{letter-spacing:1.440000pt;}
.ls17{letter-spacing:13.973333pt;}
.lsa{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws7{word-spacing:-14.133333pt;}
.ws8{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.381333pt;}
.ws3{word-spacing:-13.333333pt;}
.ws9{word-spacing:-9.621333pt;}
.wsc{word-spacing:-9.600000pt;}
.wsb{word-spacing:-9.333333pt;}
.ws5{word-spacing:-8.985600pt;}
.ws6{word-spacing:-8.973867pt;}
.ws2{word-spacing:-8.800000pt;}
.wsa{word-spacing:-8.554667pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-2.960000pt;}
._d{margin-left:-1.930667pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.050667pt;}
._7{width:2.826667pt;}
._c{width:4.128000pt;}
._8{width:5.600000pt;}
._10{width:6.682667pt;}
._a{width:7.733333pt;}
._9{width:8.800000pt;}
._f{width:10.453333pt;}
._e{width:11.402667pt;}
._b{width:12.416000pt;}
._13{width:15.029333pt;}
._12{width:16.064000pt;}
._6{width:16.997333pt;}
._14{width:18.282667pt;}
._15{width:19.589333pt;}
._16{width:20.677333pt;}
._19{width:22.250667pt;}
._18{width:25.258667pt;}
._17{width:26.186667pt;}
._1a{width:27.680000pt;}
._1b{width:29.066667pt;}
._4{width:298.826667pt;}
._2{width:497.733333pt;}
._3{width:571.360000pt;}
._5{width:1048.960000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fsb{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:51.200000pt;}
.fs2{font-size:53.333333pt;}
.fsa{font-size:56.533333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y120{bottom:0.013333pt;}
.yaf{bottom:0.400000pt;}
.yac{bottom:0.426667pt;}
.yaa{bottom:0.440000pt;}
.y3d{bottom:1.600000pt;}
.y124{bottom:2.933333pt;}
.y11b{bottom:2.946667pt;}
.y12b{bottom:3.186667pt;}
.y125{bottom:3.200000pt;}
.y11e{bottom:3.466667pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y12c{bottom:5.853333pt;}
.y122{bottom:5.866667pt;}
.y11c{bottom:5.880000pt;}
.y139{bottom:6.400000pt;}
.y119{bottom:6.413333pt;}
.yb7{bottom:10.386667pt;}
.yb4{bottom:10.400000pt;}
.yef{bottom:10.413333pt;}
.yfd{bottom:10.426667pt;}
.yc4{bottom:10.440000pt;}
.ycb{bottom:10.666667pt;}
.yc8{bottom:10.680000pt;}
.y5{bottom:10.966667pt;}
.yc1{bottom:11.466667pt;}
.y135{bottom:15.200000pt;}
.y136{bottom:18.400000pt;}
.yb8{bottom:21.866667pt;}
.yc2{bottom:21.906667pt;}
.yfe{bottom:22.960000pt;}
.y3c{bottom:24.040000pt;}
.yb6{bottom:33.320000pt;}
.ybe{bottom:33.333333pt;}
.yc3{bottom:33.373333pt;}
.yc7{bottom:33.600000pt;}
.yca{bottom:33.613333pt;}
.y4{bottom:41.600000pt;}
.y3b{bottom:42.440000pt;}
.ybd{bottom:44.800000pt;}
.y1{bottom:50.700000pt;}
.ybf{bottom:56.266667pt;}
.yc6{bottom:56.533333pt;}
.y3a{bottom:59.773333pt;}
.y3f{bottom:65.900000pt;}
.ybb{bottom:68.573333pt;}
.y3{bottom:72.300000pt;}
.y39{bottom:72.840000pt;}
.y38{bottom:88.040000pt;}
.yba{bottom:91.506667pt;}
.ya6{bottom:102.433333pt;}
.y78{bottom:103.500000pt;}
.y37{bottom:103.506667pt;}
.y140{bottom:104.033333pt;}
.ye9{bottom:108.300000pt;}
.y2a{bottom:117.100000pt;}
.y77{bottom:118.700000pt;}
.y36{bottom:118.706667pt;}
.y13f{bottom:119.233333pt;}
.ya5{bottom:120.833333pt;}
.ye8{bottom:123.500000pt;}
.y187{bottom:124.833333pt;}
.y29{bottom:132.300000pt;}
.y76{bottom:134.160000pt;}
.y35{bottom:134.173333pt;}
.y13e{bottom:134.693333pt;}
.ye7{bottom:138.973333pt;}
.ya4{bottom:139.240000pt;}
.y186{bottom:140.293333pt;}
.y28{bottom:147.760000pt;}
.y34{bottom:149.373333pt;}
.y13d{bottom:149.893333pt;}
.ye6{bottom:154.160000pt;}
.y185{bottom:155.493333pt;}
.ya3{bottom:157.640000pt;}
.y27{bottom:163.000000pt;}
.y33{bottom:164.840000pt;}
.y75{bottom:164.866667pt;}
.y13c{bottom:165.400000pt;}
.ye5{bottom:169.666667pt;}
.y184{bottom:171.000000pt;}
.ya2{bottom:176.066667pt;}
.y26{bottom:178.466667pt;}
.y16a{bottom:180.066667pt;}
.y32{bottom:180.080000pt;}
.y74{bottom:180.600000pt;}
.ye4{bottom:184.866667pt;}
.y183{bottom:186.200000pt;}
.y25{bottom:193.666667pt;}
.ya1{bottom:193.933333pt;}
.y169{bottom:195.533333pt;}
.y31{bottom:195.546667pt;}
.y13b{bottom:196.066667pt;}
.y73{bottom:197.933333pt;}
.ye3{bottom:200.333333pt;}
.y182{bottom:201.666667pt;}
.y24{bottom:209.133333pt;}
.ya0{bottom:209.400000pt;}
.y30{bottom:210.733333pt;}
.y10a{bottom:213.933333pt;}
.ye2{bottom:215.533333pt;}
.y181{bottom:216.866667pt;}
.y13a{bottom:220.600000pt;}
.y23{bottom:224.333333pt;}
.y9f{bottom:224.600000pt;}
.y72{bottom:226.200000pt;}
.y2f{bottom:226.213333pt;}
.ye1{bottom:230.733333pt;}
.y180{bottom:232.333333pt;}
.y109{bottom:236.866667pt;}
.y22{bottom:239.800000pt;}
.y9e{bottom:240.066667pt;}
.y71{bottom:241.400000pt;}
.y2e{bottom:241.413333pt;}
.y168{bottom:241.933333pt;}
.y138{bottom:242.733333pt;}
.ye0{bottom:246.200000pt;}
.y17f{bottom:247.533333pt;}
.ya8{bottom:251.626667pt;}
.y21{bottom:255.000000pt;}
.y9d{bottom:255.266667pt;}
.y70{bottom:256.866667pt;}
.y2d{bottom:256.880000pt;}
.y167{bottom:259.266667pt;}
.y108{bottom:261.133333pt;}
.ydf{bottom:261.400000pt;}
.y17e{bottom:263.000000pt;}
.y137{bottom:264.866667pt;}
.y20{bottom:270.466667pt;}
.y9c{bottom:270.733333pt;}
.y6f{bottom:272.066667pt;}
.y2c{bottom:272.600000pt;}
.yde{bottom:276.866667pt;}
.y17d{bottom:278.200000pt;}
.y1f{bottom:285.666667pt;}
.y9b{bottom:286.466667pt;}
.y134{bottom:287.266667pt;}
.y6e{bottom:287.533333pt;}
.ydd{bottom:292.066667pt;}
.y17c{bottom:293.666667pt;}
.y107{bottom:295.533333pt;}
.y1e{bottom:301.133333pt;}
.y6d{bottom:302.733333pt;}
.y9a{bottom:304.333333pt;}
.ydc{bottom:307.560000pt;}
.y17b{bottom:308.893333pt;}
.y106{bottom:312.906667pt;}
.y1d{bottom:316.373333pt;}
.y133{bottom:317.960000pt;}
.y6c{bottom:318.226667pt;}
.y99{bottom:319.840000pt;}
.ydb{bottom:321.173333pt;}
.y17a{bottom:324.360000pt;}
.y105{bottom:325.960000pt;}
.y1c{bottom:331.840000pt;}
.y6b{bottom:333.426667pt;}
.y98{bottom:335.040000pt;}
.y132{bottom:338.773333pt;}
.y179{bottom:339.573333pt;}
.y104{bottom:341.173333pt;}
.yda{bottom:344.106667pt;}
.y1b{bottom:347.040000pt;}
.y6a{bottom:348.906667pt;}
.y97{bottom:350.506667pt;}
.y131{bottom:354.226667pt;}
.y178{bottom:355.040000pt;}
.y103{bottom:356.626667pt;}
.y1a{bottom:362.773333pt;}
.y69{bottom:364.106667pt;}
.y96{bottom:365.706667pt;}
.yd9{bottom:367.026667pt;}
.y130{bottom:369.440000pt;}
.y177{bottom:370.226667pt;}
.y102{bottom:371.840000pt;}
.y68{bottom:379.560000pt;}
.y95{bottom:381.173333pt;}
.y101{bottom:385.440000pt;}
.y176{bottom:385.706667pt;}
.yd8{bottom:390.226667pt;}
.y12f{bottom:390.506667pt;}
.y166{bottom:394.773333pt;}
.y67{bottom:395.306667pt;}
.y94{bottom:396.360000pt;}
.y175{bottom:400.893333pt;}
.y100{bottom:408.626667pt;}
.y165{bottom:410.226667pt;}
.y12e{bottom:411.560000pt;}
.y66{bottom:413.173333pt;}
.y174{bottom:416.373333pt;}
.y164{bottom:425.440000pt;}
.y12d{bottom:426.773333pt;}
.y93{bottom:428.373333pt;}
.y65{bottom:428.626667pt;}
.yff{bottom:431.560000pt;}
.yd7{bottom:437.440000pt;}
.y2b{bottom:437.960000pt;}
.y163{bottom:440.893333pt;}
.y64{bottom:443.840000pt;}
.y173{bottom:447.040000pt;}
.y12a{bottom:447.840000pt;}
.yfc{bottom:455.840000pt;}
.y162{bottom:456.106667pt;}
.y92{bottom:459.066667pt;}
.y63{bottom:459.333333pt;}
.y172{bottom:462.266667pt;}
.y129{bottom:468.933333pt;}
.y161{bottom:471.600000pt;}
.yd6{bottom:471.866667pt;}
.y62{bottom:474.533333pt;}
.ya7{bottom:475.466667pt;}
.y171{bottom:477.733333pt;}
.y128{bottom:484.133333pt;}
.y91{bottom:485.466667pt;}
.y160{bottom:486.266667pt;}
.y61{bottom:490.000000pt;}
.yd5{bottom:490.266667pt;}
.y170{bottom:492.933333pt;}
.y15f{bottom:499.066667pt;}
.yb0{bottom:504.533333pt;}
.y60{bottom:505.200000pt;}
.yfb{bottom:507.600000pt;}
.yd4{bottom:508.400000pt;}
.y15e{bottom:514.533333pt;}
.y90{bottom:519.333333pt;}
.yfa{bottom:520.666667pt;}
.y5f{bottom:520.933333pt;}
.y16f{bottom:523.600000pt;}
.yd3{bottom:524.400000pt;}
.y127{bottom:526.266667pt;}
.y15d{bottom:529.733333pt;}
.yf9{bottom:535.866667pt;}
.yd2{bottom:538.800000pt;}
.y16e{bottom:539.066667pt;}
.y5e{bottom:539.333333pt;}
.y126{bottom:541.466667pt;}
.y15c{bottom:545.200000pt;}
.yd1{bottom:548.133333pt;}
.yf8{bottom:551.333333pt;}
.y8f{bottom:553.200000pt;}
.y16d{bottom:554.266667pt;}
.y5d{bottom:556.666667pt;}
.y15b{bottom:560.400000pt;}
.yd0{bottom:562.533333pt;}
.yf7{bottom:566.533333pt;}
.y5c{bottom:569.733333pt;}
.ycf{bottom:571.866667pt;}
.yae{bottom:572.000000pt;}
.y15a{bottom:575.866667pt;}
.yf6{bottom:582.000000pt;}
.y123{bottom:583.600000pt;}
.y5b{bottom:584.933333pt;}
.y8e{bottom:587.333333pt;}
.yce{bottom:588.133333pt;}
.y159{bottom:591.066667pt;}
.yf5{bottom:597.200000pt;}
.y121{bottom:598.800000pt;}
.y5a{bottom:600.400000pt;}
.ycd{bottom:603.866667pt;}
.y158{bottom:606.560000pt;}
.yf4{bottom:612.693333pt;}
.y59{bottom:615.640000pt;}
.y11f{bottom:619.893333pt;}
.y8d{bottom:621.240000pt;}
.ycc{bottom:621.773333pt;}
.yf3{bottom:626.306667pt;}
.y58{bottom:631.093333pt;}
.yc9{bottom:634.026667pt;}
.y157{bottom:637.226667pt;}
.y11d{bottom:642.306667pt;}
.y57{bottom:646.293333pt;}
.yf2{bottom:649.226667pt;}
.yad{bottom:652.266667pt;}
.y156{bottom:652.440000pt;}
.y8c{bottom:655.093333pt;}
.y11a{bottom:658.560000pt;}
.y56{bottom:661.773333pt;}
.y155{bottom:667.906667pt;}
.yf1{bottom:672.173333pt;}
.y55{bottom:676.973333pt;}
.yc5{bottom:680.693333pt;}
.y154{bottom:682.573333pt;}
.y8b{bottom:688.960000pt;}
.y54{bottom:692.426667pt;}
.yf0{bottom:695.360000pt;}
.y153{bottom:695.373333pt;}
.yab{bottom:701.866667pt;}
.y53{bottom:707.626667pt;}
.y152{bottom:710.840000pt;}
.y118{bottom:714.293333pt;}
.yee{bottom:718.293333pt;}
.ya9{bottom:718.933333pt;}
.y8a{bottom:722.840000pt;}
.y52{bottom:723.106667pt;}
.y151{bottom:726.040000pt;}
.y117{bottom:732.706667pt;}
.y51{bottom:738.293333pt;}
.y89{bottom:739.893333pt;}
.yed{bottom:741.240000pt;}
.y150{bottom:741.506667pt;}
.y116{bottom:750.040000pt;}
.yb9{bottom:750.560000pt;}
.y50{bottom:753.773333pt;}
.y19{bottom:754.866667pt;}
.y88{bottom:755.133333pt;}
.y14f{bottom:756.733333pt;}
.y115{bottom:762.866667pt;}
.yec{bottom:765.533333pt;}
.y4f{bottom:769.000000pt;}
.y18{bottom:770.066667pt;}
.y87{bottom:770.600000pt;}
.y14e{bottom:772.200000pt;}
.y114{bottom:778.333333pt;}
.y4e{bottom:784.466667pt;}
.y86{bottom:785.800000pt;}
.y14d{bottom:787.400000pt;}
.y17{bottom:791.666667pt;}
.y113{bottom:793.533333pt;}
.yc0{bottom:797.266667pt;}
.y4d{bottom:799.666667pt;}
.yeb{bottom:800.200000pt;}
.y85{bottom:801.266667pt;}
.y14c{bottom:802.866667pt;}
.y112{bottom:809.000000pt;}
.y16{bottom:812.200000pt;}
.y4c{bottom:815.133333pt;}
.y84{bottom:816.466667pt;}
.yea{bottom:817.533333pt;}
.y14b{bottom:818.066667pt;}
.y111{bottom:824.200000pt;}
.y4b{bottom:830.333333pt;}
.y83{bottom:831.933333pt;}
.y14a{bottom:833.533333pt;}
.y15{bottom:836.200000pt;}
.y110{bottom:837.800000pt;}
.ybc{bottom:843.933333pt;}
.y4a{bottom:845.800000pt;}
.y82{bottom:847.133333pt;}
.y149{bottom:848.733333pt;}
.y14{bottom:851.933333pt;}
.y49{bottom:861.000000pt;}
.y13{bottom:862.066667pt;}
.y81{bottom:862.600000pt;}
.y148{bottom:864.200000pt;}
.y12{bottom:876.200000pt;}
.y48{bottom:876.466667pt;}
.y80{bottom:877.800000pt;}
.y147{bottom:879.400000pt;}
.y10f{bottom:883.933333pt;}
.y47{bottom:891.666667pt;}
.y11{bottom:891.933333pt;}
.y7f{bottom:893.266667pt;}
.y146{bottom:894.866667pt;}
.y10e{bottom:906.893333pt;}
.y46{bottom:907.173333pt;}
.y16c{bottom:907.440000pt;}
.y7e{bottom:908.506667pt;}
.y145{bottom:910.106667pt;}
.y10{bottom:910.373333pt;}
.yb5{bottom:913.573333pt;}
.y45{bottom:922.373333pt;}
.y7d{bottom:923.960000pt;}
.y16b{bottom:924.773333pt;}
.yd{bottom:925.293333pt;}
.y144{bottom:925.560000pt;}
.y10d{bottom:929.840000pt;}
.y44{bottom:937.840000pt;}
.y7c{bottom:939.173333pt;}
.y143{bottom:940.773333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y10c{bottom:953.026667pt;}
.y43{bottom:953.040000pt;}
.y7b{bottom:954.626667pt;}
.y142{bottom:956.226667pt;}
.yb3{bottom:960.226667pt;}
.ya{bottom:963.173333pt;}
.y42{bottom:968.506667pt;}
.y7a{bottom:969.840000pt;}
.y141{bottom:970.893333pt;}
.y9{bottom:975.960000pt;}
.y10b{bottom:977.293333pt;}
.y41{bottom:983.706667pt;}
.y79{bottom:984.773333pt;}
.y8{bottom:991.706667pt;}
.yb2{bottom:993.293333pt;}
.y40{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yb1{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3e{bottom:1063.466667pt;}
.h9{height:7.713542pt;}
.h1a{height:9.600000pt;}
.h1c{height:9.866667pt;}
.h5{height:11.289062pt;}
.h2e{height:15.200000pt;}
.h2f{height:15.466667pt;}
.h2b{height:16.266667pt;}
.ha{height:18.666667pt;}
.h18{height:19.283854pt;}
.h2a{height:20.800000pt;}
.h2c{height:21.066667pt;}
.h2d{height:21.100000pt;}
.h29{height:22.133333pt;}
.h1d{height:22.933333pt;}
.h28{height:22.953333pt;}
.h26{height:22.966667pt;}
.h27{height:23.200000pt;}
.hc{height:25.454687pt;}
.h7{height:30.104167pt;}
.h30{height:30.700000pt;}
.h13{height:30.812500pt;}
.h17{height:30.854167pt;}
.h3{height:32.000000pt;}
.hd{height:33.867188pt;}
.h8{height:34.710938pt;}
.h1b{height:36.125000pt;}
.h4{height:37.630208pt;}
.h14{height:38.515625pt;}
.hf{height:38.567708pt;}
.h16{height:38.828125pt;}
.h15{height:39.562500pt;}
.h25{height:40.881771pt;}
.h12{height:43.958333pt;}
.hb{height:44.654688pt;}
.h6{height:45.156250pt;}
.h1e{height:45.853333pt;}
.h21{height:45.866667pt;}
.h22{height:45.900000pt;}
.h24{height:46.133333pt;}
.h11{height:46.218750pt;}
.he{height:46.281250pt;}
.h1{height:58.351562pt;}
.h20{height:68.833333pt;}
.h23{height:69.066667pt;}
.h2{height:86.400000pt;}
.h1f{height:162.200000pt;}
.h19{height:265.600000pt;}
.h10{height:287.533333pt;}
.h0{height:1122.666667pt;}
.w19{width:18.133333pt;}
.w4{width:64.266667pt;}
.wb{width:82.133333pt;}
.w11{width:83.200000pt;}
.wf{width:89.900000pt;}
.w14{width:90.433333pt;}
.w12{width:90.686667pt;}
.w13{width:90.700000pt;}
.wd{width:93.633333pt;}
.w3{width:96.000000pt;}
.wc{width:103.200000pt;}
.wa{width:106.933333pt;}
.w9{width:111.466667pt;}
.w17{width:121.633333pt;}
.w1f{width:122.166667pt;}
.we{width:122.700000pt;}
.w1a{width:125.633333pt;}
.w1b{width:125.933333pt;}
.w8{width:160.533333pt;}
.w6{width:225.133333pt;}
.w15{width:233.400000pt;}
.w18{width:251.000000pt;}
.w1d{width:251.533333pt;}
.w1c{width:269.133333pt;}
.w1e{width:269.693333pt;}
.w10{width:359.293333pt;}
.w5{width:429.733333pt;}
.w16{width:520.693333pt;}
.w7{width:649.000000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:7.200000pt;}
.x2{left:9.599999pt;}
.x24{left:10.666667pt;}
.x35{left:11.733333pt;}
.x25{left:13.320000pt;}
.x10{left:14.400000pt;}
.x1f{left:16.000000pt;}
.x28{left:17.066667pt;}
.x22{left:18.653333pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.x20{left:21.866667pt;}
.x29{left:24.266667pt;}
.x26{left:26.666667pt;}
.x1c{left:28.520000pt;}
.x34{left:30.120000pt;}
.x21{left:32.266667pt;}
.x33{left:33.626667pt;}
.x31{left:35.226667pt;}
.x2a{left:36.533333pt;}
.x1a{left:39.466667pt;}
.x36{left:40.560000pt;}
.x32{left:41.893333pt;}
.x27{left:44.800000pt;}
.xb{left:69.633333pt;}
.x3b{left:70.966667pt;}
.x1{left:72.033322pt;}
.xf{left:74.700000pt;}
.x12{left:96.033322pt;}
.xe{left:103.773333pt;}
.x13{left:120.033322pt;}
.x3c{left:125.633333pt;}
.x14{left:128.800000pt;}
.x9{left:136.559988pt;}
.x1e{left:140.306667pt;}
.x15{left:148.800000pt;}
.x16{left:150.933333pt;}
.x18{left:153.333333pt;}
.x2b{left:155.506667pt;}
.x17{left:164.000000pt;}
.x19{left:165.666667pt;}
.xc{left:214.726667pt;}
.x2c{left:246.200000pt;}
.x1b{left:288.373333pt;}
.x38{left:322.506667pt;}
.x2d{left:336.906667pt;}
.x39{left:340.640000pt;}
.x6{left:360.106655pt;}
.x1d{left:378.266667pt;}
.x2e{left:427.600000pt;}
.x3a{left:466.266667pt;}
.xd{left:499.360000pt;}
.x11{left:511.106655pt;}
.x2f{left:518.306667pt;}
.x8{left:547.893322pt;}
.x7{left:576.173322pt;}
.x37{left:592.200000pt;}
.x30{left:609.000000pt;}
.x5{left:620.999988pt;}
.xa{left:722.106655pt;}
}




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