
    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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_d769d7e9802d91849ba8b81f.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_6c84b77aef8415160a889e23.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_fd48e5fdf7f85ecff4ab7d0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_28876d9d4656aaadd8153cd5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_361f5443e28df28e8b1b1551.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b107677006e21ff79e6dcba8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.774902;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_ca4a5ee6486a6316d28c90a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_51f4a5edf4846457a1ae39d8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-23.760000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls30{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.414600px;}
.ls1a{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.315600px;}
.ls29{letter-spacing:-0.305400px;}
.ls3{letter-spacing:-0.288000px;}
.ls32{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.181200px;}
.ls2d{letter-spacing:-0.178800px;}
.ls25{letter-spacing:-0.152400px;}
.ls35{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.027360px;}
.lsa{letter-spacing:0.045360px;}
.ls5{letter-spacing:0.072000px;}
.ls2e{letter-spacing:0.080400px;}
.ls20{letter-spacing:0.089280px;}
.lsd{letter-spacing:0.108000px;}
.ls2b{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.149760px;}
.ls2a{letter-spacing:0.152400px;}
.ls24{letter-spacing:0.178560px;}
.ls31{letter-spacing:0.180000px;}
.lse{letter-spacing:0.223920px;}
.ls1f{letter-spacing:0.226080px;}
.ls2{letter-spacing:0.256200px;}
.ls33{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.305280px;}
.ls27{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.404640px;}
.ls23{letter-spacing:0.425280px;}
.lsb{letter-spacing:0.450720px;}
.ls15{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.765360px;}
.ls34{letter-spacing:0.840000px;}
.ls1d{letter-spacing:0.900000px;}
.ls19{letter-spacing:1.620000px;}
.ls1e{letter-spacing:2.160000px;}
.ls16{letter-spacing:3.029760px;}
.ls14{letter-spacing:7.380000px;}
.ls7{letter-spacing:7.920000px;}
.ls18{letter-spacing:8.069760px;}
.ls10{letter-spacing:10.980000px;}
.ls11{letter-spacing:14.549760px;}
.ls6{letter-spacing:16.709760px;}
.ls2f{letter-spacing:54.840000px;}
.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;}
}
.ws17{word-spacing:-72.000000px;}
.ws11{word-spacing:-66.240000px;}
.wsa{word-spacing:-18.720000px;}
.ws1b{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws1c{word-spacing:-17.856000px;}
.ws1a{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.064000px;}
.ws10{word-spacing:-16.865400px;}
.ws13{word-spacing:-16.712400px;}
.ws14{word-spacing:-16.669200px;}
.ws16{word-spacing:-16.640400px;}
.wsd{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.254600px;}
.wse{word-spacing:-16.145400px;}
.ws9{word-spacing:-15.226440px;}
.ws19{word-spacing:-14.220000px;}
.wsc{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.105360px;}
.ws0{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.878800px;}
.wsb{word-spacing:-11.700000px;}
.ws8{word-spacing:-11.160000px;}
.wsf{word-spacing:-10.440000px;}
.ws15{word-spacing:-10.261200px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-4.824000px;}
._b{margin-left:-2.832000px;}
._0{margin-left:-1.392000px;}
._1{width:1.476000px;}
._d{width:2.808000px;}
._e{width:3.996000px;}
._3{width:5.304000px;}
._4{width:6.600000px;}
._f{width:8.160000px;}
._8{width:9.288000px;}
._9{width:10.368000px;}
._a{width:12.156000px;}
._10{width:13.344000px;}
._11{width:14.688000px;}
._12{width:16.092000px;}
._15{width:19.392000px;}
._13{width:20.628000px;}
._2{width:22.080000px;}
._19{width:23.669280px;}
._1d{width:24.674880px;}
._1a{width:26.064000px;}
._1b{width:27.108000px;}
._1c{width:28.224000px;}
._18{width:29.904000px;}
._14{width:31.944000px;}
._6{width:33.408000px;}
._7{width:34.824000px;}
._20{width:43.416000px;}
._21{width:44.928000px;}
._1f{width:46.872000px;}
._16{width:48.816000px;}
._17{width:50.736000px;}
._5{width:846.156000px;}
._1e{width:847.596000px;}
.fc3{color:rgb(33,37,41);}
.fc2{color:rgb(19,20,19);}
.fc1{color:rgb(44,54,58);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y70{bottom:7.740000px;}
.y74{bottom:7.920000px;}
.y80{bottom:7.965000px;}
.y76{bottom:8.820000px;}
.y7d{bottom:9.000000px;}
.y8f{bottom:13.680000px;}
.y9c{bottom:16.560000px;}
.y8c{bottom:17.280000px;}
.y6e{bottom:18.720000px;}
.y98{bottom:18.900000px;}
.y78{bottom:20.520000px;}
.y72{bottom:20.700000px;}
.y93{bottom:24.660000px;}
.y6f{bottom:29.700000px;}
.y75{bottom:32.220000px;}
.y7c{bottom:32.400000px;}
.y81{bottom:32.445000px;}
.y8b{bottom:40.680000px;}
.y8d{bottom:51.480000px;}
.y91{bottom:51.660000px;}
.y2{bottom:57.420000px;}
.y6b{bottom:57.600000px;}
.y1{bottom:77.580000px;}
.y56{bottom:110.160000px;}
.y125{bottom:116.460000px;}
.y22{bottom:122.220000px;}
.y9a{bottom:125.820000px;}
.y69{bottom:127.620000px;}
.ye5{bottom:130.140000px;}
.y2f{bottom:134.100000px;}
.y137{bottom:134.460000px;}
.y124{bottom:137.160000px;}
.y4a{bottom:139.500000px;}
.y6a{bottom:146.160000px;}
.ye4{bottom:150.840000px;}
.y55{bottom:151.560000px;}
.y99{bottom:154.260000px;}
.y136{bottom:155.160000px;}
.y127{bottom:157.860000px;}
.y21{bottom:163.620000px;}
.y68{bottom:169.050000px;}
.y97{bottom:170.490000px;}
.ye3{bottom:171.570000px;}
.y2e{bottom:175.530000px;}
.y123{bottom:175.890000px;}
.y109{bottom:178.590000px;}
.y49{bottom:180.930000px;}
.y3b{bottom:187.590000px;}
.ye2{bottom:192.270000px;}
.y54{bottom:192.990000px;}
.y122{bottom:196.590000px;}
.y108{bottom:199.290000px;}
.y20{bottom:205.050000px;}
.y67{bottom:210.450000px;}
.y135{bottom:214.590000px;}
.y2d{bottom:216.930000px;}
.y121{bottom:217.290000px;}
.y96{bottom:218.010000px;}
.y48{bottom:222.330000px;}
.y3a{bottom:228.990000px;}
.ye1{bottom:230.970000px;}
.y53{bottom:234.390000px;}
.y134{bottom:235.290000px;}
.y107{bottom:237.990000px;}
.y1f{bottom:246.450000px;}
.ye0{bottom:251.670000px;}
.y66{bottom:251.850000px;}
.y120{bottom:255.990000px;}
.y2c{bottom:258.330000px;}
.y106{bottom:258.690000px;}
.y47{bottom:263.730000px;}
.y95{bottom:264.630000px;}
.y39{bottom:270.390000px;}
.ydf{bottom:272.370000px;}
.y133{bottom:273.990000px;}
.y52{bottom:275.790000px;}
.y11f{bottom:276.690000px;}
.y105{bottom:279.390000px;}
.y1e{bottom:287.850000px;}
.y65{bottom:293.250000px;}
.y132{bottom:294.690000px;}
.y11e{bottom:297.390000px;}
.y2b{bottom:299.730000px;}
.y46{bottom:305.130000px;}
.yde{bottom:311.070000px;}
.y94{bottom:311.250000px;}
.y38{bottom:311.790000px;}
.y131{bottom:315.390000px;}
.y51{bottom:317.190000px;}
.y104{bottom:318.090000px;}
.y1d{bottom:329.250000px;}
.ydd{bottom:331.770000px;}
.y11d{bottom:336.090000px;}
.y103{bottom:338.790000px;}
.y2a{bottom:341.130000px;}
.y45{bottom:346.530000px;}
.ydc{bottom:352.470000px;}
.y37{bottom:353.190000px;}
.y11c{bottom:356.790000px;}
.y92{bottom:357.870000px;}
.y50{bottom:358.590000px;}
.y102{bottom:359.490000px;}
.y5e{bottom:370.650000px;}
.y130{bottom:374.790000px;}
.y11b{bottom:377.490000px;}
.y1c{bottom:382.530000px;}
.y44{bottom:387.930000px;}
.ydb{bottom:391.170000px;}
.ybe{bottom:392.250000px;}
.y36{bottom:394.590000px;}
.y12f{bottom:395.490000px;}
.y101{bottom:398.190000px;}
.y4f{bottom:399.990000px;}
.yda{bottom:411.870000px;}
.y5d{bottom:412.050000px;}
.y126{bottom:416.235000px;}
.y100{bottom:418.935000px;}
.y29{bottom:423.975000px;}
.y90{bottom:426.315000px;}
.y43{bottom:429.375000px;}
.yd9{bottom:432.615000px;}
.y1b{bottom:436.035000px;}
.y11a{bottom:436.935000px;}
.yff{bottom:439.635000px;}
.y4e{bottom:441.435000px;}
.ybd{bottom:445.575000px;}
.y5c{bottom:453.495000px;}
.y119{bottom:457.635000px;}
.yaf{bottom:459.795000px;}
.y28{bottom:465.375000px;}
.y42{bottom:470.775000px;}
.yd8{bottom:471.315000px;}
.y12e{bottom:475.635000px;}
.y1a{bottom:477.435000px;}
.yfe{bottom:478.335000px;}
.y4d{bottom:482.835000px;}
.yd7{bottom:492.015000px;}
.y5b{bottom:494.895000px;}
.y12d{bottom:496.335000px;}
.yfd{bottom:499.035000px;}
.ybc{bottom:500.475000px;}
.y27{bottom:506.775000px;}
.y41{bottom:512.175000px;}
.yd6{bottom:512.715000px;}
.y118{bottom:517.035000px;}
.y19{bottom:518.835000px;}
.yfc{bottom:519.735000px;}
.y4c{bottom:524.235000px;}
.yd5{bottom:533.415000px;}
.y5a{bottom:536.295000px;}
.y117{bottom:537.735000px;}
.y8e{bottom:541.515000px;}
.y26{bottom:548.175000px;}
.y40{bottom:553.575000px;}
.ybb{bottom:553.755000px;}
.yd4{bottom:554.115000px;}
.y12c{bottom:555.735000px;}
.yfb{bottom:558.435000px;}
.y18{bottom:560.235000px;}
.y4b{bottom:565.635000px;}
.y12b{bottom:576.435000px;}
.y59{bottom:577.695000px;}
.yfa{bottom:579.135000px;}
.y8a{bottom:588.855000px;}
.y25{bottom:589.575000px;}
.yd3{bottom:592.815000px;}
.y116{bottom:597.135000px;}
.yf9{bottom:599.835000px;}
.y17{bottom:601.635000px;}
.y3f{bottom:607.035000px;}
.yba{bottom:608.475000px;}
.yd2{bottom:613.515000px;}
.y115{bottom:617.835000px;}
.y58{bottom:618.915000px;}
.yac{bottom:628.635000px;}
.y24{bottom:630.975000px;}
.yd1{bottom:634.215000px;}
.y12a{bottom:635.835000px;}
.yf8{bottom:638.535000px;}
.y16{bottom:643.035000px;}
.yb9{bottom:649.875000px;}
.y129{bottom:656.535000px;}
.yf7{bottom:659.265000px;}
.y3e{bottom:660.345000px;}
.y89{bottom:671.145000px;}
.y23{bottom:672.405000px;}
.yd0{bottom:672.945000px;}
.y88{bottom:677.085000px;}
.y114{bottom:677.265000px;}
.yf6{bottom:679.965000px;}
.y15{bottom:684.465000px;}
.yb8{bottom:691.305000px;}
.ycf{bottom:693.645000px;}
.y113{bottom:697.965000px;}
.yaa{bottom:698.325000px;}
.y87{bottom:699.585000px;}
.y57{bottom:701.745000px;}
.y35{bottom:713.805000px;}
.yf5{bottom:718.665000px;}
.y14{bottom:725.865000px;}
.y86{bottom:728.025000px;}
.yce{bottom:732.345000px;}
.y128{bottom:736.665000px;}
.ya9{bottom:738.645000px;}
.yf4{bottom:739.365000px;}
.y63{bottom:743.145000px;}
.yb7{bottom:744.585000px;}
.yb{bottom:748.545000px;}
.ycd{bottom:753.045000px;}
.y34{bottom:755.205000px;}
.y85{bottom:756.465000px;}
.y112{bottom:757.365000px;}
.yf3{bottom:760.065000px;}
.ya8{bottom:763.485000px;}
.y13{bottom:767.265000px;}
.ycc{bottom:773.745000px;}
.y111{bottom:778.065000px;}
.y62{bottom:784.545000px;}
.y84{bottom:784.905000px;}
.ya7{bottom:788.325000px;}
.ycb{bottom:794.445000px;}
.y33{bottom:796.605000px;}
.yf2{bottom:798.765000px;}
.yb6{bottom:799.485000px;}
.ya{bottom:802.005000px;}
.y12{bottom:808.665000px;}
.ya6{bottom:813.165000px;}
.y83{bottom:813.345000px;}
.yf1{bottom:819.465000px;}
.y61{bottom:825.945000px;}
.yca{bottom:833.145000px;}
.y110{bottom:837.465000px;}
.y32{bottom:838.005000px;}
.yf0{bottom:840.165000px;}
.yb5{bottom:840.885000px;}
.y9{bottom:843.405000px;}
.y11{bottom:850.065000px;}
.yc9{bottom:853.845000px;}
.y10f{bottom:858.165000px;}
.y82{bottom:859.785000px;}
.ya5{bottom:862.845000px;}
.y60{bottom:867.345000px;}
.yc8{bottom:874.545000px;}
.y7e{bottom:875.985000px;}
.yef{bottom:878.865000px;}
.y31{bottom:879.405000px;}
.yb4{bottom:882.285000px;}
.ya4{bottom:888.405000px;}
.y10{bottom:891.465000px;}
.yc7{bottom:895.245000px;}
.y8{bottom:896.865000px;}
.yee{bottom:899.565000px;}
.y7f{bottom:901.545000px;}
.y5f{bottom:908.790000px;}
.yc6{bottom:915.990000px;}
.y10e{bottom:917.610000px;}
.yed{bottom:920.310000px;}
.y30{bottom:920.850000px;}
.ya3{bottom:926.250000px;}
.y7a{bottom:927.150000px;}
.yf{bottom:932.910000px;}
.yb3{bottom:935.430000px;}
.yc5{bottom:936.510000px;}
.y7{bottom:938.310000px;}
.yec{bottom:941.010000px;}
.y64{bottom:950.190000px;}
.y7b{bottom:952.890000px;}
.ya2{bottom:954.690000px;}
.y10d{bottom:959.010000px;}
.y3d{bottom:962.250000px;}
.ye{bottom:974.310000px;}
.yc4{bottom:975.210000px;}
.y77{bottom:978.450000px;}
.yeb{bottom:979.710000px;}
.yb2{bottom:990.330000px;}
.y6{bottom:991.590000px;}
.ya1{bottom:995.010000px;}
.yc3{bottom:995.910000px;}
.y10c{bottom:997.710000px;}
.yea{bottom:1000.410000px;}
.y3c{bottom:1003.650000px;}
.y79{bottom:1004.010000px;}
.y9f{bottom:1011.390000px;}
.yd{bottom:1015.710000px;}
.yc2{bottom:1016.610000px;}
.y10b{bottom:1018.410000px;}
.ye9{bottom:1021.110000px;}
.y71{bottom:1029.570000px;}
.yb1{bottom:1031.730000px;}
.ya0{bottom:1036.950000px;}
.y10a{bottom:1039.110000px;}
.y5{bottom:1045.050000px;}
.y73{bottom:1055.130000px;}
.yc1{bottom:1055.310000px;}
.yae{bottom:1055.670000px;}
.yc{bottom:1057.110000px;}
.ye8{bottom:1059.810000px;}
.y9d{bottom:1062.510000px;}
.yc0{bottom:1076.010000px;}
.ye7{bottom:1080.510000px;}
.y6d{bottom:1080.690000px;}
.yad{bottom:1084.110000px;}
.yb0{bottom:1085.010000px;}
.y9e{bottom:1088.070000px;}
.ybf{bottom:1096.710000px;}
.y4{bottom:1098.510000px;}
.yab{bottom:1112.550000px;}
.y9b{bottom:1113.630000px;}
.ye6{bottom:1119.210000px;}
.y3{bottom:1139.910000px;}
.y6c{bottom:1140.990000px;}
.hc{height:24.660000px;}
.h16{height:24.696000px;}
.hb{height:24.840000px;}
.he{height:24.876000px;}
.h10{height:37.437188px;}
.h15{height:42.156000px;}
.h7{height:46.620000px;}
.h8{height:46.736719px;}
.ha{height:50.400000px;}
.hd{height:50.436000px;}
.h5{height:50.800781px;}
.h18{height:52.417969px;}
.h12{height:52.496719px;}
.h9{height:53.755312px;}
.h17{height:54.596250px;}
.h6{height:59.383125px;}
.hf{height:61.197188px;}
.h3{height:64.546875px;}
.h2{height:65.884219px;}
.h11{height:68.400000px;}
.h14{height:68.436000px;}
.h13{height:68.580000px;}
.h4{height:70.606406px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:28.980000px;}
.w10{width:34.920000px;}
.w16{width:41.040000px;}
.w9{width:42.516000px;}
.w4{width:46.800000px;}
.wc{width:48.780000px;}
.we{width:48.816000px;}
.wf{width:48.960000px;}
.wb{width:51.480000px;}
.w11{width:52.920000px;}
.w14{width:54.900000px;}
.wd{width:56.160000px;}
.w1a{width:59.220000px;}
.w1c{width:59.400000px;}
.w1d{width:59.580000px;}
.w1b{width:59.616000px;}
.w17{width:61.560000px;}
.w13{width:62.640000px;}
.w5{width:63.720000px;}
.w7{width:64.800000px;}
.w12{width:67.176000px;}
.wa{width:76.500000px;}
.w8{width:78.660000px;}
.w19{width:146.916000px;}
.w15{width:175.890000px;}
.w6{width:268.275000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.460000px;}
.x8{left:9.540000px;}
.x13{left:10.980000px;}
.x14{left:12.780000px;}
.x1e{left:13.860000px;}
.xf{left:15.300000px;}
.x2e{left:16.380000px;}
.x25{left:17.460000px;}
.x17{left:18.900000px;}
.x27{left:20.160000px;}
.x12{left:21.780000px;}
.x15{left:23.040000px;}
.x11{left:24.480000px;}
.x23{left:27.000000px;}
.x29{left:28.620000px;}
.x28{left:30.600000px;}
.x16{left:34.020000px;}
.x6{left:53.819973px;}
.x5{left:62.279973px;}
.x3{left:70.739973px;}
.x4{left:79.199987px;}
.x2{left:106.235987px;}
.x35{left:133.235987px;}
.x2d{left:135.396000px;}
.x9{left:153.210000px;}
.x18{left:157.890000px;}
.x36{left:160.229987px;}
.x2f{left:163.290000px;}
.x19{left:206.670000px;}
.xb{left:216.930000px;}
.x30{left:222.510000px;}
.x1a{left:262.830000px;}
.x2a{left:282.315000px;}
.x1b{left:311.655000px;}
.x2b{left:323.355000px;}
.x31{left:341.535000px;}
.x1c{left:360.435000px;}
.x2c{left:384.915000px;}
.x1d{left:395.355000px;}
.x32{left:401.115000px;}
.x7{left:438.014987px;}
.x1{left:442.334987px;}
.x1f{left:444.135000px;}
.x33{left:460.695000px;}
.xc{left:485.205000px;}
.x20{left:492.945000px;}
.x34{left:520.305000px;}
.x21{left:545.865000px;}
.xd{left:550.005000px;}
.x22{left:602.025000px;}
.xe{left:628.665000px;}
.x24{left:669.210000px;}
.x10{left:671.190000px;}
.x26{left:731.850000px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls30{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.368533pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.280533pt;}
.ls29{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls32{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.161067pt;}
.ls2d{letter-spacing:-0.158933pt;}
.ls25{letter-spacing:-0.135467pt;}
.ls35{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.024320pt;}
.lsa{letter-spacing:0.040320pt;}
.ls5{letter-spacing:0.064000pt;}
.ls2e{letter-spacing:0.071467pt;}
.ls20{letter-spacing:0.079360pt;}
.lsd{letter-spacing:0.096000pt;}
.ls2b{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.133120pt;}
.ls2a{letter-spacing:0.135467pt;}
.ls24{letter-spacing:0.158720pt;}
.ls31{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.199040pt;}
.ls1f{letter-spacing:0.200960pt;}
.ls2{letter-spacing:0.227733pt;}
.ls33{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.271360pt;}
.ls27{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.359680pt;}
.ls23{letter-spacing:0.378027pt;}
.lsb{letter-spacing:0.400640pt;}
.ls15{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.680320pt;}
.ls34{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls19{letter-spacing:1.440000pt;}
.ls1e{letter-spacing:1.920000pt;}
.ls16{letter-spacing:2.693120pt;}
.ls14{letter-spacing:6.560000pt;}
.ls7{letter-spacing:7.040000pt;}
.ls18{letter-spacing:7.173120pt;}
.ls10{letter-spacing:9.760000pt;}
.ls11{letter-spacing:12.933120pt;}
.ls6{letter-spacing:14.853120pt;}
.ls2f{letter-spacing:48.746667pt;}
.ws17{word-spacing:-64.000000pt;}
.ws11{word-spacing:-58.880000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws1b{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws1c{word-spacing:-15.872000pt;}
.ws1a{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.168000pt;}
.ws10{word-spacing:-14.991467pt;}
.ws13{word-spacing:-14.855467pt;}
.ws14{word-spacing:-14.817067pt;}
.ws16{word-spacing:-14.791467pt;}
.wsd{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.351467pt;}
.ws9{word-spacing:-13.534613pt;}
.ws19{word-spacing:-12.640000pt;}
.wsc{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.760320pt;}
.ws0{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.558933pt;}
.wsb{word-spacing:-10.400000pt;}
.ws8{word-spacing:-9.920000pt;}
.wsf{word-spacing:-9.280000pt;}
.ws15{word-spacing:-9.121067pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-4.288000pt;}
._b{margin-left:-2.517333pt;}
._0{margin-left:-1.237333pt;}
._1{width:1.312000pt;}
._d{width:2.496000pt;}
._e{width:3.552000pt;}
._3{width:4.714667pt;}
._4{width:5.866667pt;}
._f{width:7.253333pt;}
._8{width:8.256000pt;}
._9{width:9.216000pt;}
._a{width:10.805333pt;}
._10{width:11.861333pt;}
._11{width:13.056000pt;}
._12{width:14.304000pt;}
._15{width:17.237333pt;}
._13{width:18.336000pt;}
._2{width:19.626667pt;}
._19{width:21.039360pt;}
._1d{width:21.933227pt;}
._1a{width:23.168000pt;}
._1b{width:24.096000pt;}
._1c{width:25.088000pt;}
._18{width:26.581333pt;}
._14{width:28.394667pt;}
._6{width:29.696000pt;}
._7{width:30.954667pt;}
._20{width:38.592000pt;}
._21{width:39.936000pt;}
._1f{width:41.664000pt;}
._16{width:43.392000pt;}
._17{width:45.098667pt;}
._5{width:752.138667pt;}
._1e{width:753.418667pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:6.880000pt;}
.y74{bottom:7.040000pt;}
.y80{bottom:7.080000pt;}
.y76{bottom:7.840000pt;}
.y7d{bottom:8.000000pt;}
.y8f{bottom:12.160000pt;}
.y9c{bottom:14.720000pt;}
.y8c{bottom:15.360000pt;}
.y6e{bottom:16.640000pt;}
.y98{bottom:16.800000pt;}
.y78{bottom:18.240000pt;}
.y72{bottom:18.400000pt;}
.y93{bottom:21.920000pt;}
.y6f{bottom:26.400000pt;}
.y75{bottom:28.640000pt;}
.y7c{bottom:28.800000pt;}
.y81{bottom:28.840000pt;}
.y8b{bottom:36.160000pt;}
.y8d{bottom:45.760000pt;}
.y91{bottom:45.920000pt;}
.y2{bottom:51.040000pt;}
.y6b{bottom:51.200000pt;}
.y1{bottom:68.960000pt;}
.y56{bottom:97.920000pt;}
.y125{bottom:103.520000pt;}
.y22{bottom:108.640000pt;}
.y9a{bottom:111.840000pt;}
.y69{bottom:113.440000pt;}
.ye5{bottom:115.680000pt;}
.y2f{bottom:119.200000pt;}
.y137{bottom:119.520000pt;}
.y124{bottom:121.920000pt;}
.y4a{bottom:124.000000pt;}
.y6a{bottom:129.920000pt;}
.ye4{bottom:134.080000pt;}
.y55{bottom:134.720000pt;}
.y99{bottom:137.120000pt;}
.y136{bottom:137.920000pt;}
.y127{bottom:140.320000pt;}
.y21{bottom:145.440000pt;}
.y68{bottom:150.266667pt;}
.y97{bottom:151.546667pt;}
.ye3{bottom:152.506667pt;}
.y2e{bottom:156.026667pt;}
.y123{bottom:156.346667pt;}
.y109{bottom:158.746667pt;}
.y49{bottom:160.826667pt;}
.y3b{bottom:166.746667pt;}
.ye2{bottom:170.906667pt;}
.y54{bottom:171.546667pt;}
.y122{bottom:174.746667pt;}
.y108{bottom:177.146667pt;}
.y20{bottom:182.266667pt;}
.y67{bottom:187.066667pt;}
.y135{bottom:190.746667pt;}
.y2d{bottom:192.826667pt;}
.y121{bottom:193.146667pt;}
.y96{bottom:193.786667pt;}
.y48{bottom:197.626667pt;}
.y3a{bottom:203.546667pt;}
.ye1{bottom:205.306667pt;}
.y53{bottom:208.346667pt;}
.y134{bottom:209.146667pt;}
.y107{bottom:211.546667pt;}
.y1f{bottom:219.066667pt;}
.ye0{bottom:223.706667pt;}
.y66{bottom:223.866667pt;}
.y120{bottom:227.546667pt;}
.y2c{bottom:229.626667pt;}
.y106{bottom:229.946667pt;}
.y47{bottom:234.426667pt;}
.y95{bottom:235.226667pt;}
.y39{bottom:240.346667pt;}
.ydf{bottom:242.106667pt;}
.y133{bottom:243.546667pt;}
.y52{bottom:245.146667pt;}
.y11f{bottom:245.946667pt;}
.y105{bottom:248.346667pt;}
.y1e{bottom:255.866667pt;}
.y65{bottom:260.666667pt;}
.y132{bottom:261.946667pt;}
.y11e{bottom:264.346667pt;}
.y2b{bottom:266.426667pt;}
.y46{bottom:271.226667pt;}
.yde{bottom:276.506667pt;}
.y94{bottom:276.666667pt;}
.y38{bottom:277.146667pt;}
.y131{bottom:280.346667pt;}
.y51{bottom:281.946667pt;}
.y104{bottom:282.746667pt;}
.y1d{bottom:292.666667pt;}
.ydd{bottom:294.906667pt;}
.y11d{bottom:298.746667pt;}
.y103{bottom:301.146667pt;}
.y2a{bottom:303.226667pt;}
.y45{bottom:308.026667pt;}
.ydc{bottom:313.306667pt;}
.y37{bottom:313.946667pt;}
.y11c{bottom:317.146667pt;}
.y92{bottom:318.106667pt;}
.y50{bottom:318.746667pt;}
.y102{bottom:319.546667pt;}
.y5e{bottom:329.466667pt;}
.y130{bottom:333.146667pt;}
.y11b{bottom:335.546667pt;}
.y1c{bottom:340.026667pt;}
.y44{bottom:344.826667pt;}
.ydb{bottom:347.706667pt;}
.ybe{bottom:348.666667pt;}
.y36{bottom:350.746667pt;}
.y12f{bottom:351.546667pt;}
.y101{bottom:353.946667pt;}
.y4f{bottom:355.546667pt;}
.yda{bottom:366.106667pt;}
.y5d{bottom:366.266667pt;}
.y126{bottom:369.986667pt;}
.y100{bottom:372.386667pt;}
.y29{bottom:376.866667pt;}
.y90{bottom:378.946667pt;}
.y43{bottom:381.666667pt;}
.yd9{bottom:384.546667pt;}
.y1b{bottom:387.586667pt;}
.y11a{bottom:388.386667pt;}
.yff{bottom:390.786667pt;}
.y4e{bottom:392.386667pt;}
.ybd{bottom:396.066667pt;}
.y5c{bottom:403.106667pt;}
.y119{bottom:406.786667pt;}
.yaf{bottom:408.706667pt;}
.y28{bottom:413.666667pt;}
.y42{bottom:418.466667pt;}
.yd8{bottom:418.946667pt;}
.y12e{bottom:422.786667pt;}
.y1a{bottom:424.386667pt;}
.yfe{bottom:425.186667pt;}
.y4d{bottom:429.186667pt;}
.yd7{bottom:437.346667pt;}
.y5b{bottom:439.906667pt;}
.y12d{bottom:441.186667pt;}
.yfd{bottom:443.586667pt;}
.ybc{bottom:444.866667pt;}
.y27{bottom:450.466667pt;}
.y41{bottom:455.266667pt;}
.yd6{bottom:455.746667pt;}
.y118{bottom:459.586667pt;}
.y19{bottom:461.186667pt;}
.yfc{bottom:461.986667pt;}
.y4c{bottom:465.986667pt;}
.yd5{bottom:474.146667pt;}
.y5a{bottom:476.706667pt;}
.y117{bottom:477.986667pt;}
.y8e{bottom:481.346667pt;}
.y26{bottom:487.266667pt;}
.y40{bottom:492.066667pt;}
.ybb{bottom:492.226667pt;}
.yd4{bottom:492.546667pt;}
.y12c{bottom:493.986667pt;}
.yfb{bottom:496.386667pt;}
.y18{bottom:497.986667pt;}
.y4b{bottom:502.786667pt;}
.y12b{bottom:512.386667pt;}
.y59{bottom:513.506667pt;}
.yfa{bottom:514.786667pt;}
.y8a{bottom:523.426667pt;}
.y25{bottom:524.066667pt;}
.yd3{bottom:526.946667pt;}
.y116{bottom:530.786667pt;}
.yf9{bottom:533.186667pt;}
.y17{bottom:534.786667pt;}
.y3f{bottom:539.586667pt;}
.yba{bottom:540.866667pt;}
.yd2{bottom:545.346667pt;}
.y115{bottom:549.186667pt;}
.y58{bottom:550.146667pt;}
.yac{bottom:558.786667pt;}
.y24{bottom:560.866667pt;}
.yd1{bottom:563.746667pt;}
.y12a{bottom:565.186667pt;}
.yf8{bottom:567.586667pt;}
.y16{bottom:571.586667pt;}
.yb9{bottom:577.666667pt;}
.y129{bottom:583.586667pt;}
.yf7{bottom:586.013333pt;}
.y3e{bottom:586.973333pt;}
.y89{bottom:596.573333pt;}
.y23{bottom:597.693333pt;}
.yd0{bottom:598.173333pt;}
.y88{bottom:601.853333pt;}
.y114{bottom:602.013333pt;}
.yf6{bottom:604.413333pt;}
.y15{bottom:608.413333pt;}
.yb8{bottom:614.493333pt;}
.ycf{bottom:616.573333pt;}
.y113{bottom:620.413333pt;}
.yaa{bottom:620.733333pt;}
.y87{bottom:621.853333pt;}
.y57{bottom:623.773333pt;}
.y35{bottom:634.493333pt;}
.yf5{bottom:638.813333pt;}
.y14{bottom:645.213333pt;}
.y86{bottom:647.133333pt;}
.yce{bottom:650.973333pt;}
.y128{bottom:654.813333pt;}
.ya9{bottom:656.573333pt;}
.yf4{bottom:657.213333pt;}
.y63{bottom:660.573333pt;}
.yb7{bottom:661.853333pt;}
.yb{bottom:665.373333pt;}
.ycd{bottom:669.373333pt;}
.y34{bottom:671.293333pt;}
.y85{bottom:672.413333pt;}
.y112{bottom:673.213333pt;}
.yf3{bottom:675.613333pt;}
.ya8{bottom:678.653333pt;}
.y13{bottom:682.013333pt;}
.ycc{bottom:687.773333pt;}
.y111{bottom:691.613333pt;}
.y62{bottom:697.373333pt;}
.y84{bottom:697.693333pt;}
.ya7{bottom:700.733333pt;}
.ycb{bottom:706.173333pt;}
.y33{bottom:708.093333pt;}
.yf2{bottom:710.013333pt;}
.yb6{bottom:710.653333pt;}
.ya{bottom:712.893333pt;}
.y12{bottom:718.813333pt;}
.ya6{bottom:722.813333pt;}
.y83{bottom:722.973333pt;}
.yf1{bottom:728.413333pt;}
.y61{bottom:734.173333pt;}
.yca{bottom:740.573333pt;}
.y110{bottom:744.413333pt;}
.y32{bottom:744.893333pt;}
.yf0{bottom:746.813333pt;}
.yb5{bottom:747.453333pt;}
.y9{bottom:749.693333pt;}
.y11{bottom:755.613333pt;}
.yc9{bottom:758.973333pt;}
.y10f{bottom:762.813333pt;}
.y82{bottom:764.253333pt;}
.ya5{bottom:766.973333pt;}
.y60{bottom:770.973333pt;}
.yc8{bottom:777.373333pt;}
.y7e{bottom:778.653333pt;}
.yef{bottom:781.213333pt;}
.y31{bottom:781.693333pt;}
.yb4{bottom:784.253333pt;}
.ya4{bottom:789.693333pt;}
.y10{bottom:792.413333pt;}
.yc7{bottom:795.773333pt;}
.y8{bottom:797.213333pt;}
.yee{bottom:799.613333pt;}
.y7f{bottom:801.373333pt;}
.y5f{bottom:807.813333pt;}
.yc6{bottom:814.213333pt;}
.y10e{bottom:815.653333pt;}
.yed{bottom:818.053333pt;}
.y30{bottom:818.533333pt;}
.ya3{bottom:823.333333pt;}
.y7a{bottom:824.133333pt;}
.yf{bottom:829.253333pt;}
.yb3{bottom:831.493333pt;}
.yc5{bottom:832.453333pt;}
.y7{bottom:834.053333pt;}
.yec{bottom:836.453333pt;}
.y64{bottom:844.613333pt;}
.y7b{bottom:847.013333pt;}
.ya2{bottom:848.613333pt;}
.y10d{bottom:852.453333pt;}
.y3d{bottom:855.333333pt;}
.ye{bottom:866.053333pt;}
.yc4{bottom:866.853333pt;}
.y77{bottom:869.733333pt;}
.yeb{bottom:870.853333pt;}
.yb2{bottom:880.293333pt;}
.y6{bottom:881.413333pt;}
.ya1{bottom:884.453333pt;}
.yc3{bottom:885.253333pt;}
.y10c{bottom:886.853333pt;}
.yea{bottom:889.253333pt;}
.y3c{bottom:892.133333pt;}
.y79{bottom:892.453333pt;}
.y9f{bottom:899.013333pt;}
.yd{bottom:902.853333pt;}
.yc2{bottom:903.653333pt;}
.y10b{bottom:905.253333pt;}
.ye9{bottom:907.653333pt;}
.y71{bottom:915.173333pt;}
.yb1{bottom:917.093333pt;}
.ya0{bottom:921.733333pt;}
.y10a{bottom:923.653333pt;}
.y5{bottom:928.933333pt;}
.y73{bottom:937.893333pt;}
.yc1{bottom:938.053333pt;}
.yae{bottom:938.373333pt;}
.yc{bottom:939.653333pt;}
.ye8{bottom:942.053333pt;}
.y9d{bottom:944.453333pt;}
.yc0{bottom:956.453333pt;}
.ye7{bottom:960.453333pt;}
.y6d{bottom:960.613333pt;}
.yad{bottom:963.653333pt;}
.yb0{bottom:964.453333pt;}
.y9e{bottom:967.173333pt;}
.ybf{bottom:974.853333pt;}
.y4{bottom:976.453333pt;}
.yab{bottom:988.933333pt;}
.y9b{bottom:989.893333pt;}
.ye6{bottom:994.853333pt;}
.y3{bottom:1013.253333pt;}
.y6c{bottom:1014.213333pt;}
.hc{height:21.920000pt;}
.h16{height:21.952000pt;}
.hb{height:22.080000pt;}
.he{height:22.112000pt;}
.h10{height:33.277500pt;}
.h15{height:37.472000pt;}
.h7{height:41.440000pt;}
.h8{height:41.543750pt;}
.ha{height:44.800000pt;}
.hd{height:44.832000pt;}
.h5{height:45.156250pt;}
.h18{height:46.593750pt;}
.h12{height:46.663750pt;}
.h9{height:47.782500pt;}
.h17{height:48.530000pt;}
.h6{height:52.785000pt;}
.hf{height:54.397500pt;}
.h3{height:57.375000pt;}
.h2{height:58.563750pt;}
.h11{height:60.800000pt;}
.h14{height:60.832000pt;}
.h13{height:60.960000pt;}
.h4{height:62.761250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:25.760000pt;}
.w10{width:31.040000pt;}
.w16{width:36.480000pt;}
.w9{width:37.792000pt;}
.w4{width:41.600000pt;}
.wc{width:43.360000pt;}
.we{width:43.392000pt;}
.wf{width:43.520000pt;}
.wb{width:45.760000pt;}
.w11{width:47.040000pt;}
.w14{width:48.800000pt;}
.wd{width:49.920000pt;}
.w1a{width:52.640000pt;}
.w1c{width:52.800000pt;}
.w1d{width:52.960000pt;}
.w1b{width:52.992000pt;}
.w17{width:54.720000pt;}
.w13{width:55.680000pt;}
.w5{width:56.640000pt;}
.w7{width:57.600000pt;}
.w12{width:59.712000pt;}
.wa{width:68.000000pt;}
.w8{width:69.920000pt;}
.w19{width:130.592000pt;}
.w15{width:156.346667pt;}
.w6{width:238.466667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.520000pt;}
.x8{left:8.480000pt;}
.x13{left:9.760000pt;}
.x14{left:11.360000pt;}
.x1e{left:12.320000pt;}
.xf{left:13.600000pt;}
.x2e{left:14.560000pt;}
.x25{left:15.520000pt;}
.x17{left:16.800000pt;}
.x27{left:17.920000pt;}
.x12{left:19.360000pt;}
.x15{left:20.480000pt;}
.x11{left:21.760000pt;}
.x23{left:24.000000pt;}
.x29{left:25.440000pt;}
.x28{left:27.200000pt;}
.x16{left:30.240000pt;}
.x6{left:47.839976pt;}
.x5{left:55.359976pt;}
.x3{left:62.879976pt;}
.x4{left:70.399988pt;}
.x2{left:94.431988pt;}
.x35{left:118.431988pt;}
.x2d{left:120.352000pt;}
.x9{left:136.186667pt;}
.x18{left:140.346667pt;}
.x36{left:142.426655pt;}
.x2f{left:145.146667pt;}
.x19{left:183.706667pt;}
.xb{left:192.826667pt;}
.x30{left:197.786667pt;}
.x1a{left:233.626667pt;}
.x2a{left:250.946667pt;}
.x1b{left:277.026667pt;}
.x2b{left:287.426667pt;}
.x31{left:303.586667pt;}
.x1c{left:320.386667pt;}
.x2c{left:342.146667pt;}
.x1d{left:351.426667pt;}
.x32{left:356.546667pt;}
.x7{left:389.346655pt;}
.x1{left:393.186655pt;}
.x1f{left:394.786667pt;}
.x33{left:409.506667pt;}
.xc{left:431.293333pt;}
.x20{left:438.173333pt;}
.x34{left:462.493333pt;}
.x21{left:485.213333pt;}
.xd{left:488.893333pt;}
.x22{left:535.133333pt;}
.xe{left:558.813333pt;}
.x24{left:594.853333pt;}
.x10{left:596.613333pt;}
.x26{left:650.533333pt;}
}




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