
    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_688f022ed384c88c87d452c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_1277aecaab53159503c1559f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_7d6c14c3a3a5183630ce5cc1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.769531;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736816;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_10a6185c83703e4c96b7978d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_c47d6055ad64083b2caf57d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972656;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_ff2181cb27220cf84a82d73c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916016;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_f5bee7dbd4a30be08bd24dd5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_d20e2d62823150bf8d9d6581.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_797c5029877d0904b52e8762.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_94769e03d019597e18876b45.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f95946b6d220e594b3d243d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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);}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:45.360000px;}
.ls7{letter-spacing:-4.320000px;}
.lsb{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.252720px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.372720px;}
.lsa{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.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;}
}
.ws9{word-spacing:-48.600000px;}
.ws6{word-spacing:-28.977840px;}
.wsc{word-spacing:-21.060000px;}
.wsa{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.254600px;}
.wsd{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.680000px;}
.ws1{word-spacing:-12.420000px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-7.200000px;}
._7{margin-left:-6.108000px;}
._2{margin-left:-4.968000px;}
._9{margin-left:-3.816000px;}
._3{margin-left:-2.364000px;}
._0{margin-left:-1.152000px;}
._1{width:1.308000px;}
._5{width:2.565120px;}
._4{width:3.600000px;}
._8{width:4.634880px;}
._a{width:6.312000px;}
._b{width:7.317120px;}
._18{width:8.432640px;}
._d{width:9.780000px;}
._c{width:10.800000px;}
._e{width:12.168000px;}
._16{width:13.392000px;}
._11{width:14.424000px;}
._10{width:15.528000px;}
._12{width:16.704000px;}
._15{width:19.344000px;}
._1a{width:20.520000px;}
._19{width:21.528000px;}
._17{width:22.536000px;}
._f{width:24.408000px;}
._1b{width:25.992000px;}
._1c{width:27.552000px;}
._1d{width:28.692000px;}
._13{width:42.696000px;}
._14{width:44.280000px;}
.fc4{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(57,85,160);}
.fs4{font-size:5.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.y1c{bottom:-24.300000px;}
.y0{bottom:0.000000px;}
.y23{bottom:6.480000px;}
.y1{bottom:8.280000px;}
.y20{bottom:9.180000px;}
.ye2{bottom:12.600000px;}
.y145{bottom:12.636000px;}
.y112{bottom:12.645000px;}
.yda{bottom:12.780000px;}
.y119{bottom:12.816000px;}
.y181{bottom:12.954000px;}
.yde{bottom:12.960000px;}
.y16e{bottom:12.990000px;}
.y146{bottom:12.996000px;}
.yec{bottom:13.005000px;}
.ye0{bottom:13.140000px;}
.y11a{bottom:13.176000px;}
.y19a{bottom:13.185000px;}
.y182{bottom:13.314000px;}
.y162{bottom:13.320000px;}
.y15f{bottom:13.500000px;}
.y16f{bottom:13.530000px;}
.y1e{bottom:14.040000px;}
.y1b{bottom:14.400000px;}
.y5f{bottom:16.200000px;}
.y105{bottom:22.140000px;}
.y114{bottom:22.500000px;}
.y136{bottom:26.640000px;}
.yf1{bottom:31.500000px;}
.y106{bottom:31.680000px;}
.y11f{bottom:31.725000px;}
.y164{bottom:31.860000px;}
.y199{bottom:32.085000px;}
.y22{bottom:33.480000px;}
.y3{bottom:34.740000px;}
.y5e{bottom:40.320000px;}
.y137{bottom:40.500000px;}
.y15c{bottom:40.680000px;}
.y17d{bottom:40.854000px;}
.y173{bottom:40.860000px;}
.y19c{bottom:41.040000px;}
.y194{bottom:50.220000px;}
.ydc{bottom:50.400000px;}
.y179{bottom:50.580000px;}
.y17f{bottom:50.754000px;}
.y160{bottom:50.760000px;}
.y21{bottom:57.240000px;}
.y2{bottom:59.040000px;}
.y16a{bottom:59.760000px;}
.y17c{bottom:59.934000px;}
.y172{bottom:59.940000px;}
.y5d{bottom:64.080000px;}
.y1a{bottom:65.550000px;}
.y18e{bottom:69.330000px;}
.ye8{bottom:69.345000px;}
.y16c{bottom:69.660000px;}
.y190{bottom:69.690000px;}
.y169{bottom:78.660000px;}
.y25{bottom:80.820000px;}
.y5c{bottom:87.840000px;}
.y5{bottom:111.060000px;}
.y5b{bottom:111.780000px;}
.y7e{bottom:113.940000px;}
.ye1{bottom:114.120000px;}
.y183{bottom:118.260000px;}
.yc7{bottom:119.160000px;}
.y144{bottom:120.240000px;}
.y1c9{bottom:122.940000px;}
.y1b1{bottom:127.440000px;}
.y3b{bottom:128.916000px;}
.y1ea{bottom:131.796000px;}
.y131{bottom:134.856000px;}
.y5a{bottom:135.540000px;}
.y1a9{bottom:138.456000px;}
.y100{bottom:140.076000px;}
.y1db{bottom:142.056000px;}
.y17b{bottom:144.216000px;}
.y7d{bottom:145.116000px;}
.y1a1{bottom:146.376000px;}
.y158{bottom:147.096000px;}
.y9c{bottom:150.330000px;}
.ydb{bottom:151.770000px;}
.y118{bottom:156.990000px;}
.y143{bottom:158.070000px;}
.y59{bottom:159.300000px;}
.y130{bottom:161.130000px;}
.y1c8{bottom:162.930000px;}
.y1b0{bottom:166.890000px;}
.y1e9{bottom:169.230000px;}
.yff{bottom:171.030000px;}
.y1a8{bottom:172.110000px;}
.y19e{bottom:172.290000px;}
.y3a{bottom:173.910000px;}
.y3c{bottom:175.350000px;}
.y7c{bottom:176.070000px;}
.y9b{bottom:181.290000px;}
.y180{bottom:181.830000px;}
.y1da{bottom:182.010000px;}
.y58{bottom:183.060000px;}
.y157{bottom:186.870000px;}
.ydf{bottom:189.570000px;}
.y1c7{bottom:193.890000px;}
.y117{bottom:194.610000px;}
.y142{bottom:195.690000px;}
.y12f{bottom:198.930000px;}
.y57{bottom:206.865000px;}
.y7b{bottom:207.210000px;}
.y1a0{bottom:210.090000px;}
.yfe{bottom:210.810000px;}
.y9a{bottom:212.430000px;}
.y1d9{bottom:212.970000px;}
.yb5{bottom:216.030000px;}
.y39{bottom:218.910000px;}
.y17e{bottom:219.630000px;}
.yc6{bottom:221.070000px;}
.y156{bottom:226.650000px;}
.ydd{bottom:227.370000px;}
.y56{bottom:230.805000px;}
.y116{bottom:232.410000px;}
.y141{bottom:233.490000px;}
.y1c6{bottom:233.670000px;}
.y7a{bottom:238.170000px;}
.yfd{bottom:241.950000px;}
.y99{bottom:243.390000px;}
.yb4{bottom:246.990000px;}
.y19f{bottom:247.890000px;}
.yc5{bottom:252.210000px;}
.y1d8{bottom:252.930000px;}
.y55{bottom:254.565000px;}
.y178{bottom:257.430000px;}
.y12e{bottom:261.210000px;}
.y38{bottom:263.910000px;}
.y1c5{bottom:264.810000px;}
.yd9{bottom:264.990000px;}
.y155{bottom:266.970000px;}
.y79{bottom:269.310000px;}
.y115{bottom:270.030000px;}
.y140{bottom:271.110000px;}
.yfc{bottom:272.910000px;}
.y98{bottom:274.530000px;}
.yb3{bottom:278.130000px;}
.y54{bottom:278.325000px;}
.y12d{bottom:282.990000px;}
.yc4{bottom:283.170000px;}
.y1d7{bottom:283.890000px;}
.y19b{bottom:285.510000px;}
.y17a{bottom:295.230000px;}
.y1af{bottom:300.270000px;}
.y53{bottom:302.085000px;}
.yfb{bottom:304.050000px;}
.y1c4{bottom:304.590000px;}
.y97{bottom:305.490000px;}
.y154{bottom:306.750000px;}
.y113{bottom:307.830000px;}
.y37{bottom:308.910000px;}
.y78{bottom:309.090000px;}
.yc3{bottom:314.310000px;}
.y1d6{bottom:314.850000px;}
.yd8{bottom:317.010000px;}
.y1e8{bottom:322.950000px;}
.y19d{bottom:323.310000px;}
.y52{bottom:326.025000px;}
.y1ae{bottom:331.410000px;}
.y176{bottom:333.030000px;}
.yfa{bottom:335.010000px;}
.y1c3{bottom:335.550000px;}
.y96{bottom:336.450000px;}
.y153{bottom:337.890000px;}
.y77{bottom:340.230000px;}
.yc2{bottom:345.270000px;}
.y13f{bottom:346.530000px;}
.y51{bottom:349.785000px;}
.yd7{bottom:350.490000px;}
.yb2{bottom:351.030000px;}
.y36{bottom:353.910000px;}
.y1d5{bottom:354.630000px;}
.y12c{bottom:354.810000px;}
.y197{bottom:360.930000px;}
.y1e7{bottom:362.910000px;}
.y111{bottom:364.530000px;}
.yf9{bottom:366.150000px;}
.y152{bottom:368.895000px;}
.y177{bottom:370.875000px;}
.y76{bottom:371.235000px;}
.y50{bottom:373.545000px;}
.y1c2{bottom:375.555000px;}
.yc1{bottom:376.275000px;}
.y95{bottom:376.455000px;}
.y13e{bottom:384.375000px;}
.yb1{bottom:385.095000px;}
.y12b{bottom:392.475000px;}
.y1e6{bottom:393.375000px;}
.yd6{bottom:393.555000px;}
.y1d4{bottom:394.635000px;}
.yf8{bottom:397.155000px;}
.y4f{bottom:397.305000px;}
.y198{bottom:398.775000px;}
.y35{bottom:398.955000px;}
.y151{bottom:399.855000px;}
.y1ad{bottom:401.835000px;}
.y75{bottom:402.195000px;}
.y110{bottom:402.375000px;}
.y1c1{bottom:406.515000px;}
.y94{bottom:407.415000px;}
.y171{bottom:408.495000px;}
.y1e5{bottom:413.535000px;}
.yc0{bottom:416.235000px;}
.y4e{bottom:421.245000px;}
.y13d{bottom:422.175000px;}
.yf5{bottom:423.075000px;}
.yd5{bottom:424.515000px;}
.yb0{bottom:425.055000px;}
.y1d3{bottom:425.595000px;}
.y12a{bottom:430.275000px;}
.y74{bottom:433.335000px;}
.y193{bottom:436.575000px;}
.y1c0{bottom:437.475000px;}
.y93{bottom:438.555000px;}
.y150{bottom:439.815000px;}
.y10f{bottom:439.995000px;}
.y1ac{bottom:442.155000px;}
.y1e4{bottom:443.235000px;}
.y34{bottom:443.955000px;}
.y4d{bottom:445.035000px;}
.y175{bottom:446.295000px;}
.ybf{bottom:447.195000px;}
.yd4{bottom:455.655000px;}
.yaf{bottom:456.015000px;}
.y18{bottom:456.555000px;}
.y1d2{bottom:456.735000px;}
.y13c{bottom:459.795000px;}
.yf7{bottom:460.875000px;}
.y73{bottom:464.295000px;}
.y129{bottom:468.075000px;}
.y4c{bottom:468.795000px;}
.y92{bottom:469.515000px;}
.y14f{bottom:470.775000px;}
.y1ab{bottom:473.115000px;}
.y196{bottom:474.195000px;}
.y10e{bottom:477.795000px;}
.ybe{bottom:478.335000px;}
.y1bf{bottom:479.415000px;}
.y174{bottom:483.915000px;}
.y17{bottom:485.895000px;}
.yd3{bottom:486.615000px;}
.yae{bottom:487.155000px;}
.y33{bottom:488.955000px;}
.y4b{bottom:492.555000px;}
.y72{bottom:495.435000px;}
.y1d1{bottom:496.515000px;}
.y13b{bottom:497.595000px;}
.yf6{bottom:498.495000px;}
.y91{bottom:500.655000px;}
.y14e{bottom:501.915000px;}
.y1aa{bottom:504.255000px;}
.y1e3{bottom:505.335000px;}
.ybd{bottom:509.295000px;}
.y195{bottom:511.995000px;}
.y10d{bottom:515.415000px;}
.y4a{bottom:516.495000px;}
.yd2{bottom:517.755000px;}
.yad{bottom:518.115000px;}
.y128{bottom:520.095000px;}
.y168{bottom:521.715000px;}
.y1be{bottom:524.415000px;}
.y90{bottom:531.615000px;}
.y14d{bottom:532.875000px;}
.y32{bottom:533.955000px;}
.y71{bottom:535.215000px;}
.yf3{bottom:536.295000px;}
.y16{bottom:536.835000px;}
.y49{bottom:540.255000px;}
.ybc{bottom:540.435000px;}
.y1e2{bottom:545.115000px;}
.yd1{bottom:548.715000px;}
.yac{bottom:549.255000px;}
.y18d{bottom:549.615000px;}
.y127{bottom:551.055000px;}
.y10c{bottom:553.215000px;}
.y170{bottom:559.335000px;}
.y1a7{bottom:562.575000px;}
.y48{bottom:564.015000px;}
.y70{bottom:566.355000px;}
.y1bd{bottom:567.435000px;}
.y15{bottom:567.975000px;}
.y8f{bottom:571.395000px;}
.y14c{bottom:572.655000px;}
.y13a{bottom:573.015000px;}
.yf4{bottom:574.095000px;}
.y1e1{bottom:576.075000px;}
.y31{bottom:578.955000px;}
.yab{bottom:580.215000px;}
.y192{bottom:587.415000px;}
.y47{bottom:587.775000px;}
.yd0{bottom:588.495000px;}
.y10b{bottom:590.835000px;}
.y126{bottom:591.195000px;}
.y16d{bottom:597.135000px;}
.y6f{bottom:597.315000px;}
.y1bc{bottom:598.395000px;}
.y14{bottom:598.935000px;}
.y8e{bottom:602.535000px;}
.y14b{bottom:603.795000px;}
.y139{bottom:610.665000px;}
.yaa{bottom:611.205000px;}
.ybb{bottom:611.385000px;}
.y46{bottom:611.715000px;}
.yf0{bottom:611.745000px;}
.y1e0{bottom:616.065000px;}
.ycf{bottom:619.665000px;}
.y125{bottom:622.365000px;}
.y30{bottom:623.985000px;}
.y191{bottom:625.065000px;}
.y6e{bottom:628.485000px;}
.y10a{bottom:628.665000px;}
.y1bb{bottom:629.565000px;}
.y13{bottom:632.265000px;}
.y8d{bottom:633.525000px;}
.y14a{bottom:634.785000px;}
.y16b{bottom:634.965000px;}
.y45{bottom:635.475000px;}
.y1d0{bottom:638.385000px;}
.yba{bottom:642.345000px;}
.y1df{bottom:647.025000px;}
.y138{bottom:648.465000px;}
.yf2{bottom:649.545000px;}
.yce{bottom:650.625000px;}
.ya9{bottom:651.165000px;}
.y124{bottom:653.325000px;}
.y44{bottom:659.235000px;}
.y6d{bottom:659.445000px;}
.y18f{bottom:662.865000px;}
.y8c{bottom:664.665000px;}
.y12{bottom:665.205000px;}
.y149{bottom:665.925000px;}
.y109{bottom:666.465000px;}
.y2f{bottom:668.985000px;}
.y1cf{bottom:669.345000px;}
.y165{bottom:672.585000px;}
.yb9{bottom:673.485000px;}
.y1de{bottom:678.165000px;}
.ycd{bottom:681.765000px;}
.ya8{bottom:682.125000px;}
.y43{bottom:683.040000px;}
.y123{bottom:684.465000px;}
.y135{bottom:686.265000px;}
.yed{bottom:687.165000px;}
.y6c{bottom:690.585000px;}
.y8b{bottom:695.625000px;}
.y148{bottom:696.885000px;}
.y1ce{bottom:700.305000px;}
.y18a{bottom:700.665000px;}
.y11{bottom:703.725000px;}
.y108{bottom:704.085000px;}
.yb8{bottom:704.445000px;}
.y42{bottom:706.800000px;}
.y1ba{bottom:709.125000px;}
.y167{bottom:710.385000px;}
.ycc{bottom:712.725000px;}
.ya7{bottom:713.265000px;}
.y2e{bottom:713.985000px;}
.y122{bottom:715.425000px;}
.y6b{bottom:721.545000px;}
.yef{bottom:724.965000px;}
.y8a{bottom:726.765000px;}
.y41{bottom:730.740000px;}
.y10{bottom:734.685000px;}
.yb7{bottom:735.585000px;}
.y147{bottom:736.665000px;}
.y18c{bottom:738.285000px;}
.y1b9{bottom:740.265000px;}
.y107{bottom:741.885000px;}
.ycb{bottom:743.865000px;}
.ya6{bottom:744.225000px;}
.y166{bottom:748.005000px;}
.y1dd{bottom:749.085000px;}
.y1a3{bottom:752.505000px;}
.y6a{bottom:752.685000px;}
.y40{bottom:754.500000px;}
.y121{bottom:754.845000px;}
.y89{bottom:757.725000px;}
.y2d{bottom:758.985000px;}
.yf{bottom:762.225000px;}
.yee{bottom:762.585000px;}
.y134{bottom:766.185000px;}
.yb6{bottom:766.545000px;}
.y1b8{bottom:771.225000px;}
.yca{bottom:774.825000px;}
.ya5{bottom:775.365000px;}
.y18b{bottom:776.085000px;}
.y3f{bottom:778.260000px;}
.y104{bottom:779.505000px;}
.y1dc{bottom:780.045000px;}
.y120{bottom:781.125000px;}
.y69{bottom:783.645000px;}
.y163{bottom:785.805000px;}
.y1a6{bottom:788.865000px;}
.y1a2{bottom:792.465000px;}
.ye{bottom:793.725000px;}
.y133{bottom:797.325000px;}
.y88{bottom:797.685000px;}
.ye7{bottom:800.385000px;}
.y3e{bottom:802.020000px;}
.y1b7{bottom:802.365000px;}
.y2c{bottom:803.985000px;}
.ya4{bottom:806.325000px;}
.y1cd{bottom:811.185000px;}
.y188{bottom:813.705000px;}
.yc9{bottom:816.765000px;}
.y11e{bottom:818.925000px;}
.y1a5{bottom:819.825000px;}
.y68{bottom:823.425000px;}
.yd{bottom:825.405000px;}
.y3d{bottom:825.600000px;}
.y132{bottom:828.285000px;}
.y87{bottom:828.645000px;}
.y1b6{bottom:833.325000px;}
.ya3{bottom:837.465000px;}
.yeb{bottom:838.185000px;}
.y1cc{bottom:842.145000px;}
.y2b{bottom:849.030000px;}
.y103{bottom:850.650000px;}
.yc8{bottom:851.010000px;}
.y189{bottom:851.550000px;}
.y67{bottom:854.610000px;}
.yc{bottom:858.750000px;}
.y86{bottom:859.830000px;}
.y15d{bottom:861.270000px;}
.ya2{bottom:868.470000px;}
.y1b5{bottom:872.790000px;}
.y1cb{bottom:873.150000px;}
.y11d{bottom:875.670000px;}
.yea{bottom:875.850000px;}
.y102{bottom:881.970000px;}
.y66{bottom:885.570000px;}
.yb{bottom:888.630000px;}
.y185{bottom:889.170000px;}
.y85{bottom:890.790000px;}
.y2a{bottom:894.030000px;}
.y161{bottom:899.070000px;}
.ya1{bottom:899.610000px;}
.y1b4{bottom:913.110000px;}
.ye9{bottom:913.650000px;}
.ya{bottom:915.810000px;}
.y65{bottom:916.710000px;}
.y84{bottom:921.750000px;}
.y187{bottom:926.970000px;}
.ya0{bottom:930.570000px;}
.y11c{bottom:932.370000px;}
.y15e{bottom:936.690000px;}
.y29{bottom:939.030000px;}
.y1b3{bottom:944.070000px;}
.y64{bottom:947.670000px;}
.ye4{bottom:951.270000px;}
.y9{bottom:951.450000px;}
.y83{bottom:952.890000px;}
.y9f{bottom:961.710000px;}
.y186{bottom:964.770000px;}
.y11b{bottom:970.170000px;}
.y15b{bottom:974.490000px;}
.y1ca{bottom:975.030000px;}
.y63{bottom:978.810000px;}
.y1b2{bottom:983.490000px;}
.y82{bottom:983.850000px;}
.y28{bottom:984.030000px;}
.y8{bottom:987.090000px;}
.ye6{bottom:989.070000px;}
.y9e{bottom:992.670000px;}
.y184{bottom:1002.390000px;}
.y62{bottom:1009.770000px;}
.y7{bottom:1012.470000px;}
.y101{bottom:1014.990000px;}
.y81{bottom:1023.810000px;}
.y6{bottom:1023.990000px;}
.ye5{bottom:1026.870000px;}
.y19{bottom:1028.310000px;}
.y27{bottom:1029.030000px;}
.y61{bottom:1040.730000px;}
.y1a4{bottom:1045.950000px;}
.y15a{bottom:1054.410000px;}
.y80{bottom:1054.770000px;}
.ye3{bottom:1064.490000px;}
.y26{bottom:1074.030000px;}
.y60{bottom:1082.670000px;}
.y159{bottom:1085.370000px;}
.y9d{bottom:1085.730000px;}
.y7f{bottom:1085.910000px;}
.y1f{bottom:1111.500000px;}
.y1d{bottom:1112.400000px;}
.y24{bottom:1125.720000px;}
.y4{bottom:1131.120000px;}
.h7{height:4.165313px;}
.hf{height:33.660000px;}
.h16{height:36.900000px;}
.h17{height:36.936000px;}
.h14{height:37.080000px;}
.h18{height:37.116000px;}
.ha{height:48.616875px;}
.h13{height:52.066406px;}
.h1d{height:55.800000px;}
.h1c{height:55.980000px;}
.h1e{height:56.016000px;}
.h5{height:58.651172px;}
.h1f{height:64.800000px;}
.h20{height:64.980000px;}
.h4{height:65.010937px;}
.hb{height:66.757500px;}
.h23{height:68.084282px;}
.h12{height:70.628906px;}
.h3{height:70.664062px;}
.hd{height:72.562500px;}
.h1a{height:74.700000px;}
.h1b{height:74.736000px;}
.h21{height:74.880000px;}
.h9{height:75.836250px;}
.hc{height:84.898125px;}
.h6{height:90.884531px;}
.h10{height:92.700000px;}
.he{height:92.916000px;}
.h2{height:94.500000px;}
.h8{height:108.843750px;}
.h22{height:112.320000px;}
.h15{height:112.500000px;}
.h19{height:150.150000px;}
.h11{height:851.325000px;}
.h1{height:1200.000000px;}
.h0{height:1200.060000px;}
.w15{width:72.216000px;}
.w1e{width:73.116000px;}
.wb{width:82.296000px;}
.w1d{width:83.700000px;}
.w1c{width:83.736000px;}
.w18{width:99.540000px;}
.w19{width:99.756000px;}
.wd{width:101.016000px;}
.wa{width:106.740000px;}
.w13{width:110.736000px;}
.w5{width:111.456000px;}
.w14{width:114.300000px;}
.w1a{width:117.180000px;}
.w20{width:126.360000px;}
.we{width:140.436000px;}
.w10{width:147.816000px;}
.w16{width:148.176000px;}
.w22{width:154.110000px;}
.w11{width:164.910000px;}
.w1b{width:175.890000px;}
.w21{width:183.090000px;}
.w1f{width:191.370000px;}
.w12{width:249.870000px;}
.w8{width:256.890000px;}
.w9{width:261.255000px;}
.wf{width:393.015000px;}
.wc{width:467.895000px;}
.w17{width:564.090000px;}
.w4{width:568.050000px;}
.w3{width:600.990000px;}
.w7{width:712.770000px;}
.w1{width:844.380000px;}
.w6{width:846.180000px;}
.w2{width:899.999987px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.xe{left:1.440000px;}
.x15{left:8.100000px;}
.xc{left:10.800000px;}
.x3a{left:12.600000px;}
.x1a{left:14.040000px;}
.x18{left:15.840000px;}
.x3f{left:18.720000px;}
.x30{left:19.980000px;}
.x23{left:21.420000px;}
.x21{left:22.860000px;}
.x34{left:24.120000px;}
.x36{left:25.785000px;}
.x2{left:27.000000px;}
.x10{left:30.600000px;}
.x1{left:33.300000px;}
.x26{left:36.180000px;}
.x28{left:39.600000px;}
.x35{left:42.660000px;}
.x1b{left:45.180000px;}
.x1c{left:49.320000px;}
.x11{left:55.259987px;}
.x4{left:57.059987px;}
.x1e{left:61.019987px;}
.xd{left:63.900000px;}
.x2b{left:65.520000px;}
.x49{left:66.825000px;}
.x2c{left:68.040000px;}
.x29{left:69.660000px;}
.x2a{left:72.000000px;}
.x48{left:81.210000px;}
.xa{left:85.535987px;}
.x7{left:92.015987px;}
.x12{left:94.176000px;}
.x1f{left:95.436000px;}
.x14{left:96.516000px;}
.x3c{left:99.576000px;}
.x2e{left:102.456000px;}
.x13{left:144.395987px;}
.x2d{left:149.255987px;}
.x3d{left:216.750000px;}
.x3{left:230.835000px;}
.xb{left:238.530000px;}
.x8{left:253.154987px;}
.x44{left:277.455000px;}
.x9{left:300.674987px;}
.x2f{left:352.335000px;}
.x16{left:353.415000px;}
.x3e{left:392.655000px;}
.x45{left:403.815000px;}
.x24{left:415.694987px;}
.x3b{left:430.124987px;}
.x37{left:433.364987px;}
.x1d{left:445.424987px;}
.x6{left:450.104987px;}
.x31{left:463.065000px;}
.x40{left:476.385000px;}
.x25{left:490.245000px;}
.x41{left:560.085000px;}
.x20{left:563.325000px;}
.x32{left:577.365000px;}
.x46{left:586.905000px;}
.x17{left:614.670000px;}
.x38{left:632.490000px;}
.x27{left:638.070000px;}
.x42{left:643.830000px;}
.x33{left:649.590000px;}
.x22{left:664.350000px;}
.xf{left:710.430000px;}
.x19{left:721.410000px;}
.x43{left:727.530000px;}
.x39{left:732.030000px;}
.x47{left:741.030000px;}
.x4a{left:773.099987px;}
.x5{left:834.119987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:40.320000pt;}
.ls7{letter-spacing:-3.840000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.224640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.331307pt;}
.lsa{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.ws9{word-spacing:-43.200000pt;}
.ws6{word-spacing:-25.758080pt;}
.wsc{word-spacing:-18.720000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.448533pt;}
.wsd{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-6.400000pt;}
._7{margin-left:-5.429333pt;}
._2{margin-left:-4.416000pt;}
._9{margin-left:-3.392000pt;}
._3{margin-left:-2.101333pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.162667pt;}
._5{width:2.280107pt;}
._4{width:3.200000pt;}
._8{width:4.119893pt;}
._a{width:5.610667pt;}
._b{width:6.504107pt;}
._18{width:7.495680pt;}
._d{width:8.693333pt;}
._c{width:9.600000pt;}
._e{width:10.816000pt;}
._16{width:11.904000pt;}
._11{width:12.821333pt;}
._10{width:13.802667pt;}
._12{width:14.848000pt;}
._15{width:17.194667pt;}
._1a{width:18.240000pt;}
._19{width:19.136000pt;}
._17{width:20.032000pt;}
._f{width:21.696000pt;}
._1b{width:23.104000pt;}
._1c{width:24.490667pt;}
._1d{width:25.504000pt;}
._13{width:37.952000pt;}
._14{width:39.360000pt;}
.fs4{font-size:5.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.y1c{bottom:-21.600000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:5.760000pt;}
.y1{bottom:7.360000pt;}
.y20{bottom:8.160000pt;}
.ye2{bottom:11.200000pt;}
.y145{bottom:11.232000pt;}
.y112{bottom:11.240000pt;}
.yda{bottom:11.360000pt;}
.y119{bottom:11.392000pt;}
.y181{bottom:11.514667pt;}
.yde{bottom:11.520000pt;}
.y16e{bottom:11.546667pt;}
.y146{bottom:11.552000pt;}
.yec{bottom:11.560000pt;}
.ye0{bottom:11.680000pt;}
.y11a{bottom:11.712000pt;}
.y19a{bottom:11.720000pt;}
.y182{bottom:11.834667pt;}
.y162{bottom:11.840000pt;}
.y15f{bottom:12.000000pt;}
.y16f{bottom:12.026667pt;}
.y1e{bottom:12.480000pt;}
.y1b{bottom:12.800000pt;}
.y5f{bottom:14.400000pt;}
.y105{bottom:19.680000pt;}
.y114{bottom:20.000000pt;}
.y136{bottom:23.680000pt;}
.yf1{bottom:28.000000pt;}
.y106{bottom:28.160000pt;}
.y11f{bottom:28.200000pt;}
.y164{bottom:28.320000pt;}
.y199{bottom:28.520000pt;}
.y22{bottom:29.760000pt;}
.y3{bottom:30.880000pt;}
.y5e{bottom:35.840000pt;}
.y137{bottom:36.000000pt;}
.y15c{bottom:36.160000pt;}
.y17d{bottom:36.314667pt;}
.y173{bottom:36.320000pt;}
.y19c{bottom:36.480000pt;}
.y194{bottom:44.640000pt;}
.ydc{bottom:44.800000pt;}
.y179{bottom:44.960000pt;}
.y17f{bottom:45.114667pt;}
.y160{bottom:45.120000pt;}
.y21{bottom:50.880000pt;}
.y2{bottom:52.480000pt;}
.y16a{bottom:53.120000pt;}
.y17c{bottom:53.274667pt;}
.y172{bottom:53.280000pt;}
.y5d{bottom:56.960000pt;}
.y1a{bottom:58.266667pt;}
.y18e{bottom:61.626667pt;}
.ye8{bottom:61.640000pt;}
.y16c{bottom:61.920000pt;}
.y190{bottom:61.946667pt;}
.y169{bottom:69.920000pt;}
.y25{bottom:71.840000pt;}
.y5c{bottom:78.080000pt;}
.y5{bottom:98.720000pt;}
.y5b{bottom:99.360000pt;}
.y7e{bottom:101.280000pt;}
.ye1{bottom:101.440000pt;}
.y183{bottom:105.120000pt;}
.yc7{bottom:105.920000pt;}
.y144{bottom:106.880000pt;}
.y1c9{bottom:109.280000pt;}
.y1b1{bottom:113.280000pt;}
.y3b{bottom:114.592000pt;}
.y1ea{bottom:117.152000pt;}
.y131{bottom:119.872000pt;}
.y5a{bottom:120.480000pt;}
.y1a9{bottom:123.072000pt;}
.y100{bottom:124.512000pt;}
.y1db{bottom:126.272000pt;}
.y17b{bottom:128.192000pt;}
.y7d{bottom:128.992000pt;}
.y1a1{bottom:130.112000pt;}
.y158{bottom:130.752000pt;}
.y9c{bottom:133.626667pt;}
.ydb{bottom:134.906667pt;}
.y118{bottom:139.546667pt;}
.y143{bottom:140.506667pt;}
.y59{bottom:141.600000pt;}
.y130{bottom:143.226667pt;}
.y1c8{bottom:144.826667pt;}
.y1b0{bottom:148.346667pt;}
.y1e9{bottom:150.426667pt;}
.yff{bottom:152.026667pt;}
.y1a8{bottom:152.986667pt;}
.y19e{bottom:153.146667pt;}
.y3a{bottom:154.586667pt;}
.y3c{bottom:155.866667pt;}
.y7c{bottom:156.506667pt;}
.y9b{bottom:161.146667pt;}
.y180{bottom:161.626667pt;}
.y1da{bottom:161.786667pt;}
.y58{bottom:162.720000pt;}
.y157{bottom:166.106667pt;}
.ydf{bottom:168.506667pt;}
.y1c7{bottom:172.346667pt;}
.y117{bottom:172.986667pt;}
.y142{bottom:173.946667pt;}
.y12f{bottom:176.826667pt;}
.y57{bottom:183.880000pt;}
.y7b{bottom:184.186667pt;}
.y1a0{bottom:186.746667pt;}
.yfe{bottom:187.386667pt;}
.y9a{bottom:188.826667pt;}
.y1d9{bottom:189.306667pt;}
.yb5{bottom:192.026667pt;}
.y39{bottom:194.586667pt;}
.y17e{bottom:195.226667pt;}
.yc6{bottom:196.506667pt;}
.y156{bottom:201.466667pt;}
.ydd{bottom:202.106667pt;}
.y56{bottom:205.160000pt;}
.y116{bottom:206.586667pt;}
.y141{bottom:207.546667pt;}
.y1c6{bottom:207.706667pt;}
.y7a{bottom:211.706667pt;}
.yfd{bottom:215.066667pt;}
.y99{bottom:216.346667pt;}
.yb4{bottom:219.546667pt;}
.y19f{bottom:220.346667pt;}
.yc5{bottom:224.186667pt;}
.y1d8{bottom:224.826667pt;}
.y55{bottom:226.280000pt;}
.y178{bottom:228.826667pt;}
.y12e{bottom:232.186667pt;}
.y38{bottom:234.586667pt;}
.y1c5{bottom:235.386667pt;}
.yd9{bottom:235.546667pt;}
.y155{bottom:237.306667pt;}
.y79{bottom:239.386667pt;}
.y115{bottom:240.026667pt;}
.y140{bottom:240.986667pt;}
.yfc{bottom:242.586667pt;}
.y98{bottom:244.026667pt;}
.yb3{bottom:247.226667pt;}
.y54{bottom:247.400000pt;}
.y12d{bottom:251.546667pt;}
.yc4{bottom:251.706667pt;}
.y1d7{bottom:252.346667pt;}
.y19b{bottom:253.786667pt;}
.y17a{bottom:262.426667pt;}
.y1af{bottom:266.906667pt;}
.y53{bottom:268.520000pt;}
.yfb{bottom:270.266667pt;}
.y1c4{bottom:270.746667pt;}
.y97{bottom:271.546667pt;}
.y154{bottom:272.666667pt;}
.y113{bottom:273.626667pt;}
.y37{bottom:274.586667pt;}
.y78{bottom:274.746667pt;}
.yc3{bottom:279.386667pt;}
.y1d6{bottom:279.866667pt;}
.yd8{bottom:281.786667pt;}
.y1e8{bottom:287.066667pt;}
.y19d{bottom:287.386667pt;}
.y52{bottom:289.800000pt;}
.y1ae{bottom:294.586667pt;}
.y176{bottom:296.026667pt;}
.yfa{bottom:297.786667pt;}
.y1c3{bottom:298.266667pt;}
.y96{bottom:299.066667pt;}
.y153{bottom:300.346667pt;}
.y77{bottom:302.426667pt;}
.yc2{bottom:306.906667pt;}
.y13f{bottom:308.026667pt;}
.y51{bottom:310.920000pt;}
.yd7{bottom:311.546667pt;}
.yb2{bottom:312.026667pt;}
.y36{bottom:314.586667pt;}
.y1d5{bottom:315.226667pt;}
.y12c{bottom:315.386667pt;}
.y197{bottom:320.826667pt;}
.y1e7{bottom:322.586667pt;}
.y111{bottom:324.026667pt;}
.yf9{bottom:325.466667pt;}
.y152{bottom:327.906667pt;}
.y177{bottom:329.666667pt;}
.y76{bottom:329.986667pt;}
.y50{bottom:332.040000pt;}
.y1c2{bottom:333.826667pt;}
.yc1{bottom:334.466667pt;}
.y95{bottom:334.626667pt;}
.y13e{bottom:341.666667pt;}
.yb1{bottom:342.306667pt;}
.y12b{bottom:348.866667pt;}
.y1e6{bottom:349.666667pt;}
.yd6{bottom:349.826667pt;}
.y1d4{bottom:350.786667pt;}
.yf8{bottom:353.026667pt;}
.y4f{bottom:353.160000pt;}
.y198{bottom:354.466667pt;}
.y35{bottom:354.626667pt;}
.y151{bottom:355.426667pt;}
.y1ad{bottom:357.186667pt;}
.y75{bottom:357.506667pt;}
.y110{bottom:357.666667pt;}
.y1c1{bottom:361.346667pt;}
.y94{bottom:362.146667pt;}
.y171{bottom:363.106667pt;}
.y1e5{bottom:367.586667pt;}
.yc0{bottom:369.986667pt;}
.y4e{bottom:374.440000pt;}
.y13d{bottom:375.266667pt;}
.yf5{bottom:376.066667pt;}
.yd5{bottom:377.346667pt;}
.yb0{bottom:377.826667pt;}
.y1d3{bottom:378.306667pt;}
.y12a{bottom:382.466667pt;}
.y74{bottom:385.186667pt;}
.y193{bottom:388.066667pt;}
.y1c0{bottom:388.866667pt;}
.y93{bottom:389.826667pt;}
.y150{bottom:390.946667pt;}
.y10f{bottom:391.106667pt;}
.y1ac{bottom:393.026667pt;}
.y1e4{bottom:393.986667pt;}
.y34{bottom:394.626667pt;}
.y4d{bottom:395.586667pt;}
.y175{bottom:396.706667pt;}
.ybf{bottom:397.506667pt;}
.yd4{bottom:405.026667pt;}
.yaf{bottom:405.346667pt;}
.y18{bottom:405.826667pt;}
.y1d2{bottom:405.986667pt;}
.y13c{bottom:408.706667pt;}
.yf7{bottom:409.666667pt;}
.y73{bottom:412.706667pt;}
.y129{bottom:416.066667pt;}
.y4c{bottom:416.706667pt;}
.y92{bottom:417.346667pt;}
.y14f{bottom:418.466667pt;}
.y1ab{bottom:420.546667pt;}
.y196{bottom:421.506667pt;}
.y10e{bottom:424.706667pt;}
.ybe{bottom:425.186667pt;}
.y1bf{bottom:426.146667pt;}
.y174{bottom:430.146667pt;}
.y17{bottom:431.906667pt;}
.yd3{bottom:432.546667pt;}
.yae{bottom:433.026667pt;}
.y33{bottom:434.626667pt;}
.y4b{bottom:437.826667pt;}
.y72{bottom:440.386667pt;}
.y1d1{bottom:441.346667pt;}
.y13b{bottom:442.306667pt;}
.yf6{bottom:443.106667pt;}
.y91{bottom:445.026667pt;}
.y14e{bottom:446.146667pt;}
.y1aa{bottom:448.226667pt;}
.y1e3{bottom:449.186667pt;}
.ybd{bottom:452.706667pt;}
.y195{bottom:455.106667pt;}
.y10d{bottom:458.146667pt;}
.y4a{bottom:459.106667pt;}
.yd2{bottom:460.226667pt;}
.yad{bottom:460.546667pt;}
.y128{bottom:462.306667pt;}
.y168{bottom:463.746667pt;}
.y1be{bottom:466.146667pt;}
.y90{bottom:472.546667pt;}
.y14d{bottom:473.666667pt;}
.y32{bottom:474.626667pt;}
.y71{bottom:475.746667pt;}
.yf3{bottom:476.706667pt;}
.y16{bottom:477.186667pt;}
.y49{bottom:480.226667pt;}
.ybc{bottom:480.386667pt;}
.y1e2{bottom:484.546667pt;}
.yd1{bottom:487.746667pt;}
.yac{bottom:488.226667pt;}
.y18d{bottom:488.546667pt;}
.y127{bottom:489.826667pt;}
.y10c{bottom:491.746667pt;}
.y170{bottom:497.186667pt;}
.y1a7{bottom:500.066667pt;}
.y48{bottom:501.346667pt;}
.y70{bottom:503.426667pt;}
.y1bd{bottom:504.386667pt;}
.y15{bottom:504.866667pt;}
.y8f{bottom:507.906667pt;}
.y14c{bottom:509.026667pt;}
.y13a{bottom:509.346667pt;}
.yf4{bottom:510.306667pt;}
.y1e1{bottom:512.066667pt;}
.y31{bottom:514.626667pt;}
.yab{bottom:515.746667pt;}
.y192{bottom:522.146667pt;}
.y47{bottom:522.466667pt;}
.yd0{bottom:523.106667pt;}
.y10b{bottom:525.186667pt;}
.y126{bottom:525.506667pt;}
.y16d{bottom:530.786667pt;}
.y6f{bottom:530.946667pt;}
.y1bc{bottom:531.906667pt;}
.y14{bottom:532.386667pt;}
.y8e{bottom:535.586667pt;}
.y14b{bottom:536.706667pt;}
.y139{bottom:542.813333pt;}
.yaa{bottom:543.293333pt;}
.ybb{bottom:543.453333pt;}
.y46{bottom:543.746667pt;}
.yf0{bottom:543.773333pt;}
.y1e0{bottom:547.613333pt;}
.ycf{bottom:550.813333pt;}
.y125{bottom:553.213333pt;}
.y30{bottom:554.653333pt;}
.y191{bottom:555.613333pt;}
.y6e{bottom:558.653333pt;}
.y10a{bottom:558.813333pt;}
.y1bb{bottom:559.613333pt;}
.y13{bottom:562.013333pt;}
.y8d{bottom:563.133333pt;}
.y14a{bottom:564.253333pt;}
.y16b{bottom:564.413333pt;}
.y45{bottom:564.866667pt;}
.y1d0{bottom:567.453333pt;}
.yba{bottom:570.973333pt;}
.y1df{bottom:575.133333pt;}
.y138{bottom:576.413333pt;}
.yf2{bottom:577.373333pt;}
.yce{bottom:578.333333pt;}
.ya9{bottom:578.813333pt;}
.y124{bottom:580.733333pt;}
.y44{bottom:585.986667pt;}
.y6d{bottom:586.173333pt;}
.y18f{bottom:589.213333pt;}
.y8c{bottom:590.813333pt;}
.y12{bottom:591.293333pt;}
.y149{bottom:591.933333pt;}
.y109{bottom:592.413333pt;}
.y2f{bottom:594.653333pt;}
.y1cf{bottom:594.973333pt;}
.y165{bottom:597.853333pt;}
.yb9{bottom:598.653333pt;}
.y1de{bottom:602.813333pt;}
.ycd{bottom:606.013333pt;}
.ya8{bottom:606.333333pt;}
.y43{bottom:607.146667pt;}
.y123{bottom:608.413333pt;}
.y135{bottom:610.013333pt;}
.yed{bottom:610.813333pt;}
.y6c{bottom:613.853333pt;}
.y8b{bottom:618.333333pt;}
.y148{bottom:619.453333pt;}
.y1ce{bottom:622.493333pt;}
.y18a{bottom:622.813333pt;}
.y11{bottom:625.533333pt;}
.y108{bottom:625.853333pt;}
.yb8{bottom:626.173333pt;}
.y42{bottom:628.266667pt;}
.y1ba{bottom:630.333333pt;}
.y167{bottom:631.453333pt;}
.ycc{bottom:633.533333pt;}
.ya7{bottom:634.013333pt;}
.y2e{bottom:634.653333pt;}
.y122{bottom:635.933333pt;}
.y6b{bottom:641.373333pt;}
.yef{bottom:644.413333pt;}
.y8a{bottom:646.013333pt;}
.y41{bottom:649.546667pt;}
.y10{bottom:653.053333pt;}
.yb7{bottom:653.853333pt;}
.y147{bottom:654.813333pt;}
.y18c{bottom:656.253333pt;}
.y1b9{bottom:658.013333pt;}
.y107{bottom:659.453333pt;}
.ycb{bottom:661.213333pt;}
.ya6{bottom:661.533333pt;}
.y166{bottom:664.893333pt;}
.y1dd{bottom:665.853333pt;}
.y1a3{bottom:668.893333pt;}
.y6a{bottom:669.053333pt;}
.y40{bottom:670.666667pt;}
.y121{bottom:670.973333pt;}
.y89{bottom:673.533333pt;}
.y2d{bottom:674.653333pt;}
.yf{bottom:677.533333pt;}
.yee{bottom:677.853333pt;}
.y134{bottom:681.053333pt;}
.yb6{bottom:681.373333pt;}
.y1b8{bottom:685.533333pt;}
.yca{bottom:688.733333pt;}
.ya5{bottom:689.213333pt;}
.y18b{bottom:689.853333pt;}
.y3f{bottom:691.786667pt;}
.y104{bottom:692.893333pt;}
.y1dc{bottom:693.373333pt;}
.y120{bottom:694.333333pt;}
.y69{bottom:696.573333pt;}
.y163{bottom:698.493333pt;}
.y1a6{bottom:701.213333pt;}
.y1a2{bottom:704.413333pt;}
.ye{bottom:705.533333pt;}
.y133{bottom:708.733333pt;}
.y88{bottom:709.053333pt;}
.ye7{bottom:711.453333pt;}
.y3e{bottom:712.906667pt;}
.y1b7{bottom:713.213333pt;}
.y2c{bottom:714.653333pt;}
.ya4{bottom:716.733333pt;}
.y1cd{bottom:721.053333pt;}
.y188{bottom:723.293333pt;}
.yc9{bottom:726.013333pt;}
.y11e{bottom:727.933333pt;}
.y1a5{bottom:728.733333pt;}
.y68{bottom:731.933333pt;}
.yd{bottom:733.693333pt;}
.y3d{bottom:733.866667pt;}
.y132{bottom:736.253333pt;}
.y87{bottom:736.573333pt;}
.y1b6{bottom:740.733333pt;}
.ya3{bottom:744.413333pt;}
.yeb{bottom:745.053333pt;}
.y1cc{bottom:748.573333pt;}
.y2b{bottom:754.693333pt;}
.y103{bottom:756.133333pt;}
.yc8{bottom:756.453333pt;}
.y189{bottom:756.933333pt;}
.y67{bottom:759.653333pt;}
.yc{bottom:763.333333pt;}
.y86{bottom:764.293333pt;}
.y15d{bottom:765.573333pt;}
.ya2{bottom:771.973333pt;}
.y1b5{bottom:775.813333pt;}
.y1cb{bottom:776.133333pt;}
.y11d{bottom:778.373333pt;}
.yea{bottom:778.533333pt;}
.y102{bottom:783.973333pt;}
.y66{bottom:787.173333pt;}
.yb{bottom:789.893333pt;}
.y185{bottom:790.373333pt;}
.y85{bottom:791.813333pt;}
.y2a{bottom:794.693333pt;}
.y161{bottom:799.173333pt;}
.ya1{bottom:799.653333pt;}
.y1b4{bottom:811.653333pt;}
.ye9{bottom:812.133333pt;}
.ya{bottom:814.053333pt;}
.y65{bottom:814.853333pt;}
.y84{bottom:819.333333pt;}
.y187{bottom:823.973333pt;}
.ya0{bottom:827.173333pt;}
.y11c{bottom:828.773333pt;}
.y15e{bottom:832.613333pt;}
.y29{bottom:834.693333pt;}
.y1b3{bottom:839.173333pt;}
.y64{bottom:842.373333pt;}
.ye4{bottom:845.573333pt;}
.y9{bottom:845.733333pt;}
.y83{bottom:847.013333pt;}
.y9f{bottom:854.853333pt;}
.y186{bottom:857.573333pt;}
.y11b{bottom:862.373333pt;}
.y15b{bottom:866.213333pt;}
.y1ca{bottom:866.693333pt;}
.y63{bottom:870.053333pt;}
.y1b2{bottom:874.213333pt;}
.y82{bottom:874.533333pt;}
.y28{bottom:874.693333pt;}
.y8{bottom:877.413333pt;}
.ye6{bottom:879.173333pt;}
.y9e{bottom:882.373333pt;}
.y184{bottom:891.013333pt;}
.y62{bottom:897.573333pt;}
.y7{bottom:899.973333pt;}
.y101{bottom:902.213333pt;}
.y81{bottom:910.053333pt;}
.y6{bottom:910.213333pt;}
.ye5{bottom:912.773333pt;}
.y19{bottom:914.053333pt;}
.y27{bottom:914.693333pt;}
.y61{bottom:925.093333pt;}
.y1a4{bottom:929.733333pt;}
.y15a{bottom:937.253333pt;}
.y80{bottom:937.573333pt;}
.ye3{bottom:946.213333pt;}
.y26{bottom:954.693333pt;}
.y60{bottom:962.373333pt;}
.y159{bottom:964.773333pt;}
.y9d{bottom:965.093333pt;}
.y7f{bottom:965.253333pt;}
.y1f{bottom:988.000000pt;}
.y1d{bottom:988.800000pt;}
.y24{bottom:1000.640000pt;}
.y4{bottom:1005.440000pt;}
.h7{height:3.702500pt;}
.hf{height:29.920000pt;}
.h16{height:32.800000pt;}
.h17{height:32.832000pt;}
.h14{height:32.960000pt;}
.h18{height:32.992000pt;}
.ha{height:43.215000pt;}
.h13{height:46.281250pt;}
.h1d{height:49.600000pt;}
.h1c{height:49.760000pt;}
.h1e{height:49.792000pt;}
.h5{height:52.134375pt;}
.h1f{height:57.600000pt;}
.h20{height:57.760000pt;}
.h4{height:57.787500pt;}
.hb{height:59.340000pt;}
.h23{height:60.519362pt;}
.h12{height:62.781250pt;}
.h3{height:62.812500pt;}
.hd{height:64.500000pt;}
.h1a{height:66.400000pt;}
.h1b{height:66.432000pt;}
.h21{height:66.560000pt;}
.h9{height:67.410000pt;}
.hc{height:75.465000pt;}
.h6{height:80.786250pt;}
.h10{height:82.400000pt;}
.he{height:82.592000pt;}
.h2{height:84.000000pt;}
.h8{height:96.750000pt;}
.h22{height:99.840000pt;}
.h15{height:100.000000pt;}
.h19{height:133.466667pt;}
.h11{height:756.733333pt;}
.h1{height:1066.666667pt;}
.h0{height:1066.720000pt;}
.w15{width:64.192000pt;}
.w1e{width:64.992000pt;}
.wb{width:73.152000pt;}
.w1d{width:74.400000pt;}
.w1c{width:74.432000pt;}
.w18{width:88.480000pt;}
.w19{width:88.672000pt;}
.wd{width:89.792000pt;}
.wa{width:94.880000pt;}
.w13{width:98.432000pt;}
.w5{width:99.072000pt;}
.w14{width:101.600000pt;}
.w1a{width:104.160000pt;}
.w20{width:112.320000pt;}
.we{width:124.832000pt;}
.w10{width:131.392000pt;}
.w16{width:131.712000pt;}
.w22{width:136.986667pt;}
.w11{width:146.586667pt;}
.w1b{width:156.346667pt;}
.w21{width:162.746667pt;}
.w1f{width:170.106667pt;}
.w12{width:222.106667pt;}
.w8{width:228.346667pt;}
.w9{width:232.226667pt;}
.wf{width:349.346667pt;}
.wc{width:415.906667pt;}
.w17{width:501.413333pt;}
.w4{width:504.933333pt;}
.w3{width:534.213333pt;}
.w7{width:633.573333pt;}
.w1{width:750.560000pt;}
.w6{width:752.160000pt;}
.w2{width:799.999988pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.xe{left:1.280000pt;}
.x15{left:7.200000pt;}
.xc{left:9.600000pt;}
.x3a{left:11.200000pt;}
.x1a{left:12.480000pt;}
.x18{left:14.080000pt;}
.x3f{left:16.640000pt;}
.x30{left:17.760000pt;}
.x23{left:19.040000pt;}
.x21{left:20.320000pt;}
.x34{left:21.440000pt;}
.x36{left:22.920000pt;}
.x2{left:24.000000pt;}
.x10{left:27.200000pt;}
.x1{left:29.600000pt;}
.x26{left:32.160000pt;}
.x28{left:35.200000pt;}
.x35{left:37.920000pt;}
.x1b{left:40.160000pt;}
.x1c{left:43.840000pt;}
.x11{left:49.119988pt;}
.x4{left:50.719988pt;}
.x1e{left:54.239988pt;}
.xd{left:56.800000pt;}
.x2b{left:58.240000pt;}
.x49{left:59.400000pt;}
.x2c{left:60.480000pt;}
.x29{left:61.920000pt;}
.x2a{left:64.000000pt;}
.x48{left:72.186667pt;}
.xa{left:76.031988pt;}
.x7{left:81.791988pt;}
.x12{left:83.712000pt;}
.x1f{left:84.832000pt;}
.x14{left:85.792000pt;}
.x3c{left:88.512000pt;}
.x2e{left:91.072000pt;}
.x13{left:128.351988pt;}
.x2d{left:132.671988pt;}
.x3d{left:192.666667pt;}
.x3{left:205.186667pt;}
.xb{left:212.026667pt;}
.x8{left:225.026655pt;}
.x44{left:246.626667pt;}
.x9{left:267.266655pt;}
.x2f{left:313.186667pt;}
.x16{left:314.146667pt;}
.x3e{left:349.026667pt;}
.x45{left:358.946667pt;}
.x24{left:369.506655pt;}
.x3b{left:382.333321pt;}
.x37{left:385.213321pt;}
.x1d{left:395.933321pt;}
.x6{left:400.093321pt;}
.x31{left:411.613333pt;}
.x40{left:423.453333pt;}
.x25{left:435.773333pt;}
.x41{left:497.853333pt;}
.x20{left:500.733333pt;}
.x32{left:513.213333pt;}
.x46{left:521.693333pt;}
.x17{left:546.373333pt;}
.x38{left:562.213333pt;}
.x27{left:567.173333pt;}
.x42{left:572.293333pt;}
.x33{left:577.413333pt;}
.x22{left:590.533333pt;}
.xf{left:631.493333pt;}
.x19{left:641.253333pt;}
.x43{left:646.693333pt;}
.x39{left:650.693333pt;}
.x47{left:658.693333pt;}
.x4a{left:687.199988pt;}
.x5{left:741.439988pt;}
}




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