
    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_f86325e65bd995d6bf2104b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_9a237c6940eadaa780696aa7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148438;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_050d2d8d407c6852a10ce0bd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_71cc216ac84057640d120c11.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_238c7c90b2f4760708a3eb90.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.051771px;}
.ls1{letter-spacing:0.087547px;}
.ls7{letter-spacing:19.069200px;}
.ls4{letter-spacing:21.229200px;}
.ls6{letter-spacing:25.287548px;}
.ls9{letter-spacing:26.269200px;}
.ls2{letter-spacing:31.309200px;}
.ls3{letter-spacing:32.487548px;}
.ls5{letter-spacing:49.309200px;}
.ls8{letter-spacing:60.567548px;}
.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;}
}
.ws7{word-spacing:-26.284284px;}
.ws13{word-spacing:-24.599394px;}
.ws1a{word-spacing:-23.758434px;}
.ws14{word-spacing:-22.465404px;}
.ws19{word-spacing:-21.077085px;}
.ws18{word-spacing:-21.025314px;}
.ws1b{word-spacing:-20.668284px;}
.ws4{word-spacing:-18.646524px;}
.ws15{word-spacing:-0.704252px;}
.ws5{word-spacing:0.000000px;}
.ws1c{word-spacing:0.118857px;}
.wse{word-spacing:1.421208px;}
.ws11{word-spacing:2.025203px;}
.ws2{word-spacing:3.495958px;}
.wsf{word-spacing:4.260300px;}
.wsc{word-spacing:4.714118px;}
.wsb{word-spacing:5.816750px;}
.ws0{word-spacing:5.976056px;}
.ws10{word-spacing:6.085524px;}
.wsa{word-spacing:8.049286px;}
.ws9{word-spacing:10.601854px;}
.wsd{word-spacing:10.730994px;}
.ws12{word-spacing:21.967431px;}
.ws1{word-spacing:22.668232px;}
.ws16{word-spacing:23.484608px;}
.ws3{word-spacing:28.521828px;}
.ws17{word-spacing:72.151437px;}
.ws6{word-spacing:123.530544px;}
.ws8{word-spacing:123.727830px;}
._4f{margin-left:-7.593322px;}
._2e{margin-left:-6.579158px;}
._10{margin-left:-5.203505px;}
._11{margin-left:-4.004546px;}
._13{margin-left:-2.500248px;}
._1{margin-left:-1.148982px;}
._0{width:1.268114px;}
._9{width:2.290788px;}
._26{width:3.978362px;}
._2{width:5.173932px;}
._3{width:6.267662px;}
._29{width:7.383890px;}
._18{width:8.508273px;}
._4{width:9.621682px;}
._16{width:10.918308px;}
._8{width:12.460392px;}
._27{width:13.864542px;}
._28{width:15.063546px;}
._41{width:16.095508px;}
._d{width:17.589173px;}
._e{width:18.680485px;}
._14{width:19.897514px;}
._2a{width:20.902294px;}
._c{width:22.363538px;}
._7{width:23.806301px;}
._6{width:24.977659px;}
._a{width:26.869763px;}
._b{width:28.070951px;}
._5{width:29.683801px;}
._1a{width:30.686536px;}
._1c{width:32.301110px;}
._51{width:33.352770px;}
._20{width:34.395890px;}
._17{width:35.888073px;}
._1b{width:37.108673px;}
._34{width:38.464410px;}
._f{width:39.694448px;}
._15{width:40.860497px;}
._2b{width:42.733528px;}
._48{width:43.753420px;}
._19{width:44.862134px;}
._23{width:46.147845px;}
._3a{width:47.724593px;}
._25{width:48.990451px;}
._31{width:50.350875px;}
._32{width:51.529967px;}
._43{width:52.632753px;}
._4a{width:53.915870px;}
._2f{width:55.517378px;}
._50{width:57.135210px;}
._47{width:58.143416px;}
._22{width:59.974249px;}
._21{width:61.836109px;}
._37{width:63.109177px;}
._4e{width:64.432296px;}
._40{width:65.521665px;}
._1e{width:66.736471px;}
._1d{width:67.958409px;}
._36{width:75.128936px;}
._35{width:76.325685px;}
._39{width:77.596233px;}
._52{width:79.828358px;}
._45{width:85.299747px;}
._24{width:87.023392px;}
._3b{width:88.457062px;}
._3c{width:89.944511px;}
._1f{width:93.331580px;}
._49{width:94.773799px;}
._53{width:96.113427px;}
._33{width:97.580320px;}
._5a{width:99.515361px;}
._5b{width:100.743584px;}
._38{width:102.148478px;}
._4c{width:104.750875px;}
._4b{width:106.001063px;}
._42{width:108.421843px;}
._4d{width:132.181652px;}
._46{width:151.691064px;}
._60{width:182.445579px;}
._61{width:200.290059px;}
._63{width:229.955373px;}
._54{width:240.373458px;}
._64{width:245.220777px;}
._62{width:248.893007px;}
._30{width:302.492954px;}
._57{width:314.310739px;}
._56{width:418.425871px;}
._2c{width:460.625926px;}
._44{width:534.850424px;}
._5c{width:567.842066px;}
._2d{width:571.708390px;}
._5d{width:577.610406px;}
._3e{width:821.264603px;}
._3f{width:833.485853px;}
._3d{width:835.639342px;}
._5f{width:1329.502603px;}
._55{width:1366.641575px;}
._5e{width:1410.324439px;}
._59{width:1509.727441px;}
._12{width:1581.548044px;}
._58{width:2238.825353px;}
.fc4{color:rgb(68,114,196);}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(192,0,0);}
.fc2{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs5{font-size:54.004500px;}
.fs3{font-size:59.764500px;}
.fs0{font-size:66.244500px;}
.fs4{font-size:72.004500px;}
.fs8{font-size:77.764500px;}
.fs7{font-size:81.364500px;}
.fs2{font-size:84.244500px;}
.fs1{font-size:95.764500px;}
.y0{bottom:0.000000px;}
.y23{bottom:111.060000px;}
.y6d{bottom:111.780000px;}
.y112{bottom:115.380000px;}
.yf5{bottom:122.040150px;}
.y1cd{bottom:126.540000px;}
.y86{bottom:129.060000px;}
.y22{bottom:129.240000px;}
.ya8{bottom:132.660000px;}
.yb0{bottom:133.560000px;}
.y111{bottom:137.160000px;}
.y64{bottom:138.780000px;}
.y6c{bottom:139.500000px;}
.ycc{bottom:145.260000px;}
.yf8{bottom:145.440000px;}
.y21{bottom:147.240000px;}
.y157{bottom:152.100150px;}
.y3c{bottom:154.620000px;}
.y110{bottom:158.940000px;}
.y1cc{bottom:159.120150px;}
.yf4{bottom:159.840150px;}
.yaf{bottom:161.280000px;}
.y1be{bottom:162.000000px;}
.y85{bottom:167.220000px;}
.ya7{bottom:170.640000px;}
.y156{bottom:173.880150px;}
.ydf{bottom:175.500000px;}
.y63{bottom:176.580000px;}
.y10f{bottom:180.540000px;}
.ycb{bottom:183.240000px;}
.yf7{bottom:183.420000px;}
.y20{bottom:183.600000px;}
.y1cb{bottom:191.700150px;}
.y6b{bottom:192.420000px;}
.y3b{bottom:192.600000px;}
.yc3{bottom:194.040000px;}
.y11d{bottom:194.400000px;}
.y155{bottom:195.480150px;}
.yf3{bottom:197.820150px;}
.y1f{bottom:201.600000px;}
.y1bd{bottom:201.960150px;}
.y10e{bottom:202.320000px;}
.y84{bottom:205.200000px;}
.yde{bottom:208.080000px;}
.ya6{bottom:208.800000px;}
.y135{bottom:210.060000px;}
.yb5{bottom:213.480000px;}
.y62{bottom:214.740000px;}
.y1e{bottom:219.780000px;}
.y185{bottom:221.040000px;}
.yca{bottom:221.220000px;}
.yf6{bottom:221.400000px;}
.y10d{bottom:224.100000px;}
.y6a{bottom:230.400000px;}
.y3a{bottom:230.580000px;}
.yc2{bottom:232.020000px;}
.y11c{bottom:232.380000px;}
.yf2{bottom:235.980150px;}
.y1d{bottom:237.780000px;}
.y154{bottom:239.040150px;}
.ydd{bottom:240.660000px;}
.y1bc{bottom:242.100150px;}
.y83{bottom:243.180000px;}
.y8f{bottom:246.060000px;}
.ya5{bottom:246.780000px;}
.y134{bottom:248.040000px;}
.yae{bottom:251.640000px;}
.y61{bottom:252.720000px;}
.y19a{bottom:253.440150px;}
.y184{bottom:257.400000px;}
.y54{bottom:259.560000px;}
.y153{bottom:260.820150px;}
.y8e{bottom:267.840000px;}
.y39{bottom:268.740000px;}
.y11b{bottom:270.360000px;}
.yad{bottom:273.240000px;}
.yf1{bottom:273.960150px;}
.y174{bottom:274.500000px;}
.y82{bottom:281.160000px;}
.y152{bottom:282.420000px;}
.ya4{bottom:284.760000px;}
.y133{bottom:286.020000px;}
.y8d{bottom:289.620000px;}
.y199{bottom:289.800150px;}
.y60{bottom:290.700000px;}
.y1a9{bottom:292.860000px;}
.yac{bottom:295.020000px;}
.y10c{bottom:297.000000px;}
.y53{bottom:297.540000px;}
.y173{bottom:301.680000px;}
.y151{bottom:304.200000px;}
.yc1{bottom:305.820000px;}
.y38{bottom:306.720000px;}
.y1bb{bottom:307.080000px;}
.y11a{bottom:308.340000px;}
.y8c{bottom:311.400000px;}
.yf0{bottom:311.940150px;}
.y183{bottom:312.120000px;}
.y69{bottom:315.000000px;}
.yab{bottom:316.800000px;}
.y198{bottom:317.160150px;}
.yb4{bottom:319.140000px;}
.y81{bottom:319.320000px;}
.y172{bottom:321.120000px;}
.y132{bottom:324.180000px;}
.y150{bottom:325.980000px;}
.yc9{bottom:327.600000px;}
.y5f{bottom:328.680000px;}
.y1ca{bottom:329.580000px;}
.y8b{bottom:333.000000px;}
.y10b{bottom:334.980000px;}
.y52{bottom:335.520000px;}
.yaa{bottom:338.400000px;}
.y197{bottom:344.520150px;}
.y37{bottom:344.700000px;}
.y171{bottom:345.240000px;}
.y119{bottom:346.500000px;}
.y1ba{bottom:347.040000px;}
.yef{bottom:349.920150px;}
.y8a{bottom:354.780000px;}
.y80{bottom:357.120000px;}
.y68{bottom:358.380000px;}
.yc8{bottom:360.180000px;}
.y131{bottom:362.160000px;}
.y170{bottom:363.420000px;}
.y5e{bottom:366.660000px;}
.y1a8{bottom:366.840000px;}
.ya3{bottom:369.360000px;}
.y1c9{bottom:369.540000px;}
.yc0{bottom:370.980000px;}
.y10a{bottom:372.960000px;}
.y51{bottom:373.500000px;}
.y89{bottom:376.560000px;}
.ydc{bottom:378.900000px;}
.y36{bottom:382.680000px;}
.y118{bottom:384.480000px;}
.y1b9{bottom:387.000000px;}
.yee{bottom:387.900150px;}
.y182{bottom:390.060000px;}
.y14f{bottom:391.140000px;}
.yc7{bottom:392.760000px;}
.y7f{bottom:395.100000px;}
.y130{bottom:400.140000px;}
.y1a7{bottom:403.020000px;}
.ybf{bottom:403.560000px;}
.y5d{bottom:404.820000px;}
.y1c{bottom:405.180000px;}
.y1c8{bottom:409.500000px;}
.y109{bottom:411.120000px;}
.ya9{bottom:411.480000px;}
.y50{bottom:411.660000px;}
.y14e{bottom:412.740000px;}
.ydb{bottom:416.880000px;}
.y35{bottom:420.660000px;}
.y196{bottom:422.280150px;}
.y117{bottom:422.460000px;}
.y16f{bottom:424.980000px;}
.y1b{bottom:425.160000px;}
.yc6{bottom:425.340000px;}
.yed{bottom:426.060150px;}
.y181{bottom:426.240000px;}
.y1b8{bottom:426.960000px;}
.y1a6{bottom:430.380000px;}
.y7e{bottom:433.080000px;}
.y14d{bottom:434.520000px;}
.ybe{bottom:436.140000px;}
.y12f{bottom:438.120000px;}
.y5c{bottom:442.800000px;}
.y16e{bottom:442.980000px;}
.y108{bottom:449.100000px;}
.y88{bottom:449.460000px;}
.y4f{bottom:449.640000px;}
.yda{bottom:454.860000px;}
.yc5{bottom:457.920000px;}
.y195{bottom:458.640150px;}
.y34{bottom:458.820000px;}
.y1c7{bottom:459.540000px;}
.ya2{bottom:460.260000px;}
.y116{bottom:460.440000px;}
.y16d{bottom:461.160000px;}
.yec{bottom:464.040150px;}
.y1a{bottom:464.940000px;}
.y1b7{bottom:466.920000px;}
.ybd{bottom:468.720000px;}
.y7d{bottom:471.240000px;}
.y12e{bottom:476.280000px;}
.y14c{bottom:478.080000px;}
.y5b{bottom:480.780000px;}
.y19{bottom:484.920000px;}
.y194{bottom:486.000150px;}
.y107{bottom:487.080000px;}
.y87{bottom:487.440000px;}
.y4e{bottom:487.620000px;}
.yc4{bottom:490.500000px;}
.y1b6{bottom:491.940000px;}
.yd9{bottom:492.840000px;}
.y33{bottom:496.800000px;}
.ya1{bottom:498.240000px;}
.y115{bottom:498.420000px;}
.y1c6{bottom:499.500000px;}
.y14b{bottom:499.680000px;}
.ybc{bottom:501.300000px;}
.yeb{bottom:502.020150px;}
.y18{bottom:504.720000px;}
.y180{bottom:505.980000px;}
.y1a5{bottom:508.320000px;}
.y7c{bottom:509.220000px;}
.y193{bottom:513.360150px;}
.y12d{bottom:514.260000px;}
.y5a{bottom:518.760000px;}
.y14a{bottom:521.460000px;}
.y17{bottom:524.700000px;}
.y106{bottom:525.060000px;}
.y67{bottom:525.420000px;}
.y4d{bottom:525.600000px;}
.y164{bottom:528.660000px;}
.yd8{bottom:530.820000px;}
.y1b5{bottom:531.900000px;}
.ybb{bottom:533.880000px;}
.y32{bottom:534.600000px;}
.ya0{bottom:536.400000px;}
.y114{bottom:536.580000px;}
.y1c5{bottom:538.740000px;}
.yea{bottom:540.000150px;}
.y192{bottom:540.720150px;}
.y149{bottom:543.240000px;}
.y16{bottom:544.680000px;}
.y7b{bottom:547.200000px;}
.y163{bottom:550.260000px;}
.y12c{bottom:552.240000px;}
.y59{bottom:556.920000px;}
.y105{bottom:563.220000px;}
.y66{bottom:563.580000px;}
.y4c{bottom:563.760000px;}
.y15{bottom:564.480000px;}
.y148{bottom:564.840000px;}
.yba{bottom:566.460000px;}
.yd7{bottom:568.980000px;}
.y1b4{bottom:571.860150px;}
.y1a4{bottom:572.040000px;}
.y31{bottom:572.580000px;}
.y9f{bottom:574.380000px;}
.y1c4{bottom:577.260000px;}
.yb3{bottom:577.440000px;}
.ye9{bottom:578.160150px;}
.y14{bottom:584.460000px;}
.y7a{bottom:585.180000px;}
.y12b{bottom:590.040000px;}
.y17f{bottom:591.480000px;}
.y162{bottom:593.820000px;}
.y58{bottom:594.900000px;}
.y104{bottom:601.200000px;}
.y65{bottom:601.560000px;}
.y4b{bottom:601.740000px;}
.y1c3{bottom:602.280000px;}
.y13{bottom:604.440000px;}
.yd6{bottom:606.960000px;}
.y147{bottom:608.400000px;}
.yb2{bottom:610.020000px;}
.y30{bottom:610.740000px;}
.y1b3{bottom:611.820000px;}
.y9e{bottom:612.360000px;}
.y161{bottom:615.420150px;}
.ye8{bottom:616.140150px;}
.y191{bottom:620.460000px;}
.y79{bottom:623.160000px;}
.y12a{bottom:628.020000px;}
.y146{bottom:630.000000px;}
.y17e{bottom:630.900000px;}
.y57{bottom:632.880000px;}
.y160{bottom:637.200150px;}
.y103{bottom:639.180000px;}
.yb9{bottom:639.360000px;}
.y4a{bottom:639.540000px;}
.yb1{bottom:642.600000px;}
.y12{bottom:644.400000px;}
.yd5{bottom:644.940000px;}
.y2f{bottom:648.720000px;}
.y1a3{bottom:649.800000px;}
.y9d{bottom:650.340000px;}
.y1b2{bottom:651.780000px;}
.y1c2{bottom:652.320150px;}
.y15f{bottom:658.980150px;}
.y78{bottom:661.320000px;}
.y11{bottom:664.200000px;}
.y129{bottom:666.180000px;}
.y145{bottom:673.560000px;}
.y1b1{bottom:676.800000px;}
.y102{bottom:677.160000px;}
.y49{bottom:677.520000px;}
.yd4{bottom:682.920000px;}
.y1a2{bottom:686.160000px;}
.y2e{bottom:686.700000px;}
.y9c{bottom:688.500000px;}
.y1c1{bottom:691.560000px;}
.y144{bottom:695.340000px;}
.y77{bottom:699.300000px;}
.ye7{bottom:700.740150px;}
.y15e{bottom:702.360150px;}
.y128{bottom:704.160000px;}
.y190{bottom:705.060000px;}
.y56{bottom:706.500000px;}
.y17d{bottom:709.560000px;}
.y1a1{bottom:713.520000px;}
.y10{bottom:714.060000px;}
.y101{bottom:715.320000px;}
.y48{bottom:715.500000px;}
.y1b0{bottom:716.760000px;}
.y15d{bottom:724.140150px;}
.y2d{bottom:724.680000px;}
.y9b{bottom:726.480000px;}
.y1c0{bottom:729.540000px;}
.yf{bottom:734.040000px;}
.y16c{bottom:736.740000px;}
.y76{bottom:737.280000px;}
.y143{bottom:738.720000px;}
.y55{bottom:739.080000px;}
.y1a0{bottom:740.880000px;}
.y18f{bottom:741.420150px;}
.y127{bottom:742.140000px;}
.ye6{bottom:744.120150px;}
.y17c{bottom:748.980000px;}
.yd3{bottom:751.320000px;}
.y100{bottom:753.300000px;}
.y47{bottom:753.660000px;}
.ye{bottom:753.840000px;}
.y1af{bottom:756.900000px;}
.y142{bottom:760.500000px;}
.y2c{bottom:762.840000px;}
.y9a{bottom:764.460000px;}
.y16b{bottom:764.820000px;}
.y15c{bottom:767.520150px;}
.y1bf{bottom:768.060000px;}
.y18e{bottom:768.780150px;}
.yd{bottom:773.820000px;}
.y75{bottom:775.260000px;}
.y17b{bottom:776.340000px;}
.y126{bottom:780.120000px;}
.y141{bottom:782.100000px;}
.yd2{bottom:783.900000px;}
.ye5{bottom:787.500150px;}
.yff{bottom:788.940000px;}
.y15b{bottom:789.300150px;}
.y46{bottom:791.640000px;}
.y16a{bottom:793.080000px;}
.yc{bottom:793.800000px;}
.y18d{bottom:796.140150px;}
.y1ae{bottom:796.860150px;}
.y2b{bottom:800.820000px;}
.y99{bottom:802.440000px;}
.y17a{bottom:803.700000px;}
.y140{bottom:803.880000px;}
.y15a{bottom:811.080000px;}
.y74{bottom:813.420000px;}
.yb{bottom:813.600000px;}
.yd1{bottom:816.480000px;}
.y125{bottom:818.280000px;}
.y19f{bottom:818.640000px;}
.yfe{bottom:821.340000px;}
.y18c{bottom:823.500150px;}
.y13f{bottom:825.660150px;}
.y45{bottom:829.620000px;}
.y159{bottom:832.680000px;}
.ya{bottom:833.580000px;}
.y2a{bottom:838.800000px;}
.y98{bottom:840.600000px;}
.y13e{bottom:847.440150px;}
.yd0{bottom:849.060000px;}
.y169{bottom:849.420000px;}
.y18b{bottom:850.860150px;}
.y9{bottom:853.560000px;}
.yfd{bottom:854.100000px;}
.y158{bottom:854.460000px;}
.y19e{bottom:855.000000px;}
.y124{bottom:856.260000px;}
.y1ad{bottom:862.380000px;}
.y44{bottom:867.600000px;}
.y13d{bottom:869.040150px;}
.y8{bottom:873.360000px;}
.y73{bottom:876.240000px;}
.y29{bottom:876.780000px;}
.y168{bottom:877.500000px;}
.y97{bottom:878.580000px;}
.ye4{bottom:878.580150px;}
.y179{bottom:881.460000px;}
.ycf{bottom:881.640000px;}
.y19d{bottom:882.360000px;}
.yfc{bottom:886.680000px;}
.y123{bottom:894.240000px;}
.y72{bottom:898.020000px;}
.y43{bottom:905.760000px;}
.y13c{bottom:912.600000px;}
.yce{bottom:914.220000px;}
.y28{bottom:914.760000px;}
.y113{bottom:916.560000px;}
.ye3{bottom:916.560150px;}
.y178{bottom:917.820000px;}
.yfb{bottom:919.440000px;}
.y71{bottom:919.620000px;}
.y18a{bottom:928.620000px;}
.y122{bottom:932.220000px;}
.y167{bottom:933.840000px;}
.y13b{bottom:934.200000px;}
.y70{bottom:941.400000px;}
.y42{bottom:943.740000px;}
.y177{bottom:945.180000px;}
.ycd{bottom:946.800000px;}
.y1ac{bottom:948.780000px;}
.yfa{bottom:952.020000px;}
.y27{bottom:952.920000px;}
.ye2{bottom:954.540000px;}
.y7{bottom:959.400000px;}
.y166{bottom:962.100000px;}
.y6f{bottom:963.180000px;}
.y189{bottom:964.980000px;}
.y121{bottom:970.380000px;}
.y176{bottom:972.540000px;}
.yb8{bottom:973.980000px;}
.y13a{bottom:977.760000px;}
.y41{bottom:981.720000px;}
.yf9{bottom:984.600000px;}
.y6e{bottom:984.780000px;}
.y26{bottom:990.900000px;}
.y1ab{bottom:991.980000px;}
.y188{bottom:992.340000px;}
.ye1{bottom:992.520000px;}
.y139{bottom:999.360000px;}
.y6{bottom:1000.440000px;}
.y96{bottom:1006.560000px;}
.y120{bottom:1008.360000px;}
.y40{bottom:1019.700000px;}
.y138{bottom:1021.140000px;}
.y95{bottom:1028.340000px;}
.y25{bottom:1028.880000px;}
.ye0{bottom:1030.680000px;}
.y1aa{bottom:1035.000000px;}
.y165{bottom:1035.540000px;}
.yb7{bottom:1039.140000px;}
.y19c{bottom:1042.740000px;}
.y137{bottom:1042.920000px;}
.y5{bottom:1044.000000px;}
.y11f{bottom:1046.340000px;}
.y94{bottom:1049.940000px;}
.y175{bottom:1051.200000px;}
.y3f{bottom:1057.860000px;}
.y187{bottom:1070.100000px;}
.y93{bottom:1071.720000px;}
.y24{bottom:1075.500000px;}
.y19b{bottom:1079.100000px;}
.y136{bottom:1083.780000px;}
.y11e{bottom:1084.320000px;}
.y4{bottom:1087.560000px;}
.y92{bottom:1093.500000px;}
.y3e{bottom:1095.840000px;}
.yb6{bottom:1104.300000px;}
.y186{bottom:1106.460000px;}
.y91{bottom:1115.280000px;}
.y3{bottom:1130.940000px;}
.y3d{bottom:1133.820000px;}
.y90{bottom:1136.880000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1193.220000px;}
.hb{height:44.094375px;}
.h2{height:44.928521px;}
.h8{height:54.628488px;}
.h7{height:56.291856px;}
.h6{height:60.551613px;}
.h5{height:62.395332px;}
.h9{height:65.816613px;}
.hf{height:65.817213px;}
.hc{height:67.820645px;}
.h10{height:68.643694px;}
.h12{height:73.245957px;}
.h11{height:76.636778px;}
.h4{height:77.004738px;}
.he{height:77.005338px;}
.hd{height:79.349434px;}
.ha{height:79.603488px;}
.h3{height:90.200059px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:106.200000px;}
.x2{left:108.000000px;}
.x2d{left:130.140000px;}
.x9{left:133.560000px;}
.x1a{left:137.340000px;}
.x1f{left:149.220000px;}
.xf{left:150.480000px;}
.xb{left:161.280000px;}
.x8{left:180.720000px;}
.x1d{left:187.920000px;}
.x27{left:192.060000px;}
.x6{left:205.020000px;}
.x1b{left:211.140000px;}
.x31{left:212.400000px;}
.x33{left:214.200000px;}
.x4{left:217.980000px;}
.x2f{left:238.680000px;}
.xa{left:248.220000px;}
.x2c{left:255.240000px;}
.x5{left:273.960000px;}
.xc{left:281.700000px;}
.x21{left:290.700000px;}
.x3{left:302.220000px;}
.x26{left:305.640000px;}
.x22{left:323.460000px;}
.x11{left:336.240000px;}
.x12{left:337.860000px;}
.xd{left:340.200000px;}
.x29{left:347.220000px;}
.x2e{left:352.800000px;}
.x20{left:356.220000px;}
.x24{left:370.980000px;}
.x10{left:380.160000px;}
.x23{left:387.540000px;}
.x7{left:388.980000px;}
.x25{left:402.480000px;}
.x28{left:419.760000px;}
.x1e{left:422.640000px;}
.x1c{left:426.240000px;}
.x1{left:433.980000px;}
.x19{left:441.360000px;}
.x32{left:451.260000px;}
.x16{left:472.500000px;}
.xe{left:503.820000px;}
.x2b{left:518.220000px;}
.x34{left:532.440000px;}
.x17{left:576.540000px;}
.x15{left:588.780000px;}
.x14{left:628.380000px;}
.x18{left:682.560000px;}
.x35{left:690.840000px;}
.x2a{left:754.380000px;}
.x13{left:779.760000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.046019pt;}
.ls1{letter-spacing:0.077820pt;}
.ls7{letter-spacing:16.950400pt;}
.ls4{letter-spacing:18.870400pt;}
.ls6{letter-spacing:22.477820pt;}
.ls9{letter-spacing:23.350400pt;}
.ls2{letter-spacing:27.830400pt;}
.ls3{letter-spacing:28.877820pt;}
.ls5{letter-spacing:43.830400pt;}
.ls8{letter-spacing:53.837820pt;}
.ws7{word-spacing:-23.363808pt;}
.ws13{word-spacing:-21.866128pt;}
.ws1a{word-spacing:-21.118608pt;}
.ws14{word-spacing:-19.969248pt;}
.ws19{word-spacing:-18.735187pt;}
.ws18{word-spacing:-18.689168pt;}
.ws1b{word-spacing:-18.371808pt;}
.ws4{word-spacing:-16.574688pt;}
.ws15{word-spacing:-0.626002pt;}
.ws5{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.105650pt;}
.wse{word-spacing:1.263296pt;}
.ws11{word-spacing:1.800181pt;}
.ws2{word-spacing:3.107518pt;}
.wsf{word-spacing:3.786933pt;}
.wsc{word-spacing:4.190327pt;}
.wsb{word-spacing:5.170445pt;}
.ws0{word-spacing:5.312049pt;}
.ws10{word-spacing:5.409355pt;}
.wsa{word-spacing:7.154921pt;}
.ws9{word-spacing:9.423871pt;}
.wsd{word-spacing:9.538661pt;}
.ws12{word-spacing:19.526605pt;}
.ws1{word-spacing:20.149540pt;}
.ws16{word-spacing:20.875207pt;}
.ws3{word-spacing:25.352736pt;}
.ws17{word-spacing:64.134611pt;}
.ws6{word-spacing:109.804928pt;}
.ws8{word-spacing:109.980293pt;}
._4f{margin-left:-6.749620pt;}
._2e{margin-left:-5.848141pt;}
._10{margin-left:-4.625338pt;}
._11{margin-left:-3.559597pt;}
._13{margin-left:-2.222443pt;}
._1{margin-left:-1.021318pt;}
._0{width:1.127212pt;}
._9{width:2.036256pt;}
._26{width:3.536322pt;}
._2{width:4.599051pt;}
._3{width:5.571255pt;}
._29{width:6.563457pt;}
._18{width:7.562910pt;}
._4{width:8.552607pt;}
._16{width:9.705163pt;}
._8{width:11.075904pt;}
._27{width:12.324037pt;}
._28{width:13.389819pt;}
._41{width:14.307119pt;}
._d{width:15.634821pt;}
._e{width:16.604876pt;}
._14{width:17.686679pt;}
._2a{width:18.579817pt;}
._c{width:19.878700pt;}
._7{width:21.161156pt;}
._6{width:22.202364pt;}
._a{width:23.884234pt;}
._b{width:24.951956pt;}
._5{width:26.385601pt;}
._1a{width:27.276921pt;}
._1c{width:28.712098pt;}
._51{width:29.646907pt;}
._20{width:30.574124pt;}
._17{width:31.900509pt;}
._1b{width:32.985487pt;}
._34{width:34.190587pt;}
._f{width:35.283953pt;}
._15{width:36.320442pt;}
._2b{width:37.985358pt;}
._48{width:38.891929pt;}
._19{width:39.877452pt;}
._23{width:41.020307pt;}
._3a{width:42.421861pt;}
._25{width:43.547068pt;}
._31{width:44.756333pt;}
._32{width:45.804415pt;}
._43{width:46.784670pt;}
._4a{width:47.925218pt;}
._2f{width:49.348781pt;}
._50{width:50.786853pt;}
._47{width:51.683037pt;}
._22{width:53.310444pt;}
._21{width:54.965430pt;}
._37{width:56.097046pt;}
._4e{width:57.273152pt;}
._40{width:58.241480pt;}
._1e{width:59.321308pt;}
._1d{width:60.407475pt;}
._36{width:66.781276pt;}
._35{width:67.845054pt;}
._39{width:68.974429pt;}
._52{width:70.958540pt;}
._45{width:75.821997pt;}
._24{width:77.354126pt;}
._3b{width:78.628500pt;}
._3c{width:79.950676pt;}
._1f{width:82.961405pt;}
._49{width:84.243377pt;}
._53{width:85.434157pt;}
._33{width:86.738062pt;}
._5a{width:88.458099pt;}
._5b{width:89.549853pt;}
._38{width:90.798647pt;}
._4c{width:93.111889pt;}
._4b{width:94.223167pt;}
._42{width:96.374971pt;}
._4d{width:117.494802pt;}
._46{width:134.836501pt;}
._60{width:162.173848pt;}
._61{width:178.035608pt;}
._63{width:204.404776pt;}
._54{width:213.665296pt;}
._64{width:217.974024pt;}
._62{width:221.238228pt;}
._30{width:268.882626pt;}
._57{width:279.387324pt;}
._56{width:371.934108pt;}
._2c{width:409.445268pt;}
._44{width:475.422599pt;}
._5c{width:504.748503pt;}
._2d{width:508.185236pt;}
._5d{width:513.431472pt;}
._3e{width:730.012981pt;}
._3f{width:740.876314pt;}
._3d{width:742.790526pt;}
._5f{width:1181.780092pt;}
._55{width:1214.792511pt;}
._5e{width:1253.621724pt;}
._59{width:1341.979948pt;}
._12{width:1405.820484pt;}
._58{width:1990.066980pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:48.004000pt;}
.fs3{font-size:53.124000pt;}
.fs0{font-size:58.884000pt;}
.fs4{font-size:64.004000pt;}
.fs8{font-size:69.124000pt;}
.fs7{font-size:72.324000pt;}
.fs2{font-size:74.884000pt;}
.fs1{font-size:85.124000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:98.720000pt;}
.y6d{bottom:99.360000pt;}
.y112{bottom:102.560000pt;}
.yf5{bottom:108.480133pt;}
.y1cd{bottom:112.480000pt;}
.y86{bottom:114.720000pt;}
.y22{bottom:114.880000pt;}
.ya8{bottom:117.920000pt;}
.yb0{bottom:118.720000pt;}
.y111{bottom:121.920000pt;}
.y64{bottom:123.360000pt;}
.y6c{bottom:124.000000pt;}
.ycc{bottom:129.120000pt;}
.yf8{bottom:129.280000pt;}
.y21{bottom:130.880000pt;}
.y157{bottom:135.200133pt;}
.y3c{bottom:137.440000pt;}
.y110{bottom:141.280000pt;}
.y1cc{bottom:141.440133pt;}
.yf4{bottom:142.080133pt;}
.yaf{bottom:143.360000pt;}
.y1be{bottom:144.000000pt;}
.y85{bottom:148.640000pt;}
.ya7{bottom:151.680000pt;}
.y156{bottom:154.560133pt;}
.ydf{bottom:156.000000pt;}
.y63{bottom:156.960000pt;}
.y10f{bottom:160.480000pt;}
.ycb{bottom:162.880000pt;}
.yf7{bottom:163.040000pt;}
.y20{bottom:163.200000pt;}
.y1cb{bottom:170.400133pt;}
.y6b{bottom:171.040000pt;}
.y3b{bottom:171.200000pt;}
.yc3{bottom:172.480000pt;}
.y11d{bottom:172.800000pt;}
.y155{bottom:173.760133pt;}
.yf3{bottom:175.840133pt;}
.y1f{bottom:179.200000pt;}
.y1bd{bottom:179.520133pt;}
.y10e{bottom:179.840000pt;}
.y84{bottom:182.400000pt;}
.yde{bottom:184.960000pt;}
.ya6{bottom:185.600000pt;}
.y135{bottom:186.720000pt;}
.yb5{bottom:189.760000pt;}
.y62{bottom:190.880000pt;}
.y1e{bottom:195.360000pt;}
.y185{bottom:196.480000pt;}
.yca{bottom:196.640000pt;}
.yf6{bottom:196.800000pt;}
.y10d{bottom:199.200000pt;}
.y6a{bottom:204.800000pt;}
.y3a{bottom:204.960000pt;}
.yc2{bottom:206.240000pt;}
.y11c{bottom:206.560000pt;}
.yf2{bottom:209.760133pt;}
.y1d{bottom:211.360000pt;}
.y154{bottom:212.480133pt;}
.ydd{bottom:213.920000pt;}
.y1bc{bottom:215.200133pt;}
.y83{bottom:216.160000pt;}
.y8f{bottom:218.720000pt;}
.ya5{bottom:219.360000pt;}
.y134{bottom:220.480000pt;}
.yae{bottom:223.680000pt;}
.y61{bottom:224.640000pt;}
.y19a{bottom:225.280133pt;}
.y184{bottom:228.800000pt;}
.y54{bottom:230.720000pt;}
.y153{bottom:231.840133pt;}
.y8e{bottom:238.080000pt;}
.y39{bottom:238.880000pt;}
.y11b{bottom:240.320000pt;}
.yad{bottom:242.880000pt;}
.yf1{bottom:243.520133pt;}
.y174{bottom:244.000000pt;}
.y82{bottom:249.920000pt;}
.y152{bottom:251.040000pt;}
.ya4{bottom:253.120000pt;}
.y133{bottom:254.240000pt;}
.y8d{bottom:257.440000pt;}
.y199{bottom:257.600133pt;}
.y60{bottom:258.400000pt;}
.y1a9{bottom:260.320000pt;}
.yac{bottom:262.240000pt;}
.y10c{bottom:264.000000pt;}
.y53{bottom:264.480000pt;}
.y173{bottom:268.160000pt;}
.y151{bottom:270.400000pt;}
.yc1{bottom:271.840000pt;}
.y38{bottom:272.640000pt;}
.y1bb{bottom:272.960000pt;}
.y11a{bottom:274.080000pt;}
.y8c{bottom:276.800000pt;}
.yf0{bottom:277.280133pt;}
.y183{bottom:277.440000pt;}
.y69{bottom:280.000000pt;}
.yab{bottom:281.600000pt;}
.y198{bottom:281.920133pt;}
.yb4{bottom:283.680000pt;}
.y81{bottom:283.840000pt;}
.y172{bottom:285.440000pt;}
.y132{bottom:288.160000pt;}
.y150{bottom:289.760000pt;}
.yc9{bottom:291.200000pt;}
.y5f{bottom:292.160000pt;}
.y1ca{bottom:292.960000pt;}
.y8b{bottom:296.000000pt;}
.y10b{bottom:297.760000pt;}
.y52{bottom:298.240000pt;}
.yaa{bottom:300.800000pt;}
.y197{bottom:306.240133pt;}
.y37{bottom:306.400000pt;}
.y171{bottom:306.880000pt;}
.y119{bottom:308.000000pt;}
.y1ba{bottom:308.480000pt;}
.yef{bottom:311.040133pt;}
.y8a{bottom:315.360000pt;}
.y80{bottom:317.440000pt;}
.y68{bottom:318.560000pt;}
.yc8{bottom:320.160000pt;}
.y131{bottom:321.920000pt;}
.y170{bottom:323.040000pt;}
.y5e{bottom:325.920000pt;}
.y1a8{bottom:326.080000pt;}
.ya3{bottom:328.320000pt;}
.y1c9{bottom:328.480000pt;}
.yc0{bottom:329.760000pt;}
.y10a{bottom:331.520000pt;}
.y51{bottom:332.000000pt;}
.y89{bottom:334.720000pt;}
.ydc{bottom:336.800000pt;}
.y36{bottom:340.160000pt;}
.y118{bottom:341.760000pt;}
.y1b9{bottom:344.000000pt;}
.yee{bottom:344.800133pt;}
.y182{bottom:346.720000pt;}
.y14f{bottom:347.680000pt;}
.yc7{bottom:349.120000pt;}
.y7f{bottom:351.200000pt;}
.y130{bottom:355.680000pt;}
.y1a7{bottom:358.240000pt;}
.ybf{bottom:358.720000pt;}
.y5d{bottom:359.840000pt;}
.y1c{bottom:360.160000pt;}
.y1c8{bottom:364.000000pt;}
.y109{bottom:365.440000pt;}
.ya9{bottom:365.760000pt;}
.y50{bottom:365.920000pt;}
.y14e{bottom:366.880000pt;}
.ydb{bottom:370.560000pt;}
.y35{bottom:373.920000pt;}
.y196{bottom:375.360133pt;}
.y117{bottom:375.520000pt;}
.y16f{bottom:377.760000pt;}
.y1b{bottom:377.920000pt;}
.yc6{bottom:378.080000pt;}
.yed{bottom:378.720133pt;}
.y181{bottom:378.880000pt;}
.y1b8{bottom:379.520000pt;}
.y1a6{bottom:382.560000pt;}
.y7e{bottom:384.960000pt;}
.y14d{bottom:386.240000pt;}
.ybe{bottom:387.680000pt;}
.y12f{bottom:389.440000pt;}
.y5c{bottom:393.600000pt;}
.y16e{bottom:393.760000pt;}
.y108{bottom:399.200000pt;}
.y88{bottom:399.520000pt;}
.y4f{bottom:399.680000pt;}
.yda{bottom:404.320000pt;}
.yc5{bottom:407.040000pt;}
.y195{bottom:407.680133pt;}
.y34{bottom:407.840000pt;}
.y1c7{bottom:408.480000pt;}
.ya2{bottom:409.120000pt;}
.y116{bottom:409.280000pt;}
.y16d{bottom:409.920000pt;}
.yec{bottom:412.480133pt;}
.y1a{bottom:413.280000pt;}
.y1b7{bottom:415.040000pt;}
.ybd{bottom:416.640000pt;}
.y7d{bottom:418.880000pt;}
.y12e{bottom:423.360000pt;}
.y14c{bottom:424.960000pt;}
.y5b{bottom:427.360000pt;}
.y19{bottom:431.040000pt;}
.y194{bottom:432.000133pt;}
.y107{bottom:432.960000pt;}
.y87{bottom:433.280000pt;}
.y4e{bottom:433.440000pt;}
.yc4{bottom:436.000000pt;}
.y1b6{bottom:437.280000pt;}
.yd9{bottom:438.080000pt;}
.y33{bottom:441.600000pt;}
.ya1{bottom:442.880000pt;}
.y115{bottom:443.040000pt;}
.y1c6{bottom:444.000000pt;}
.y14b{bottom:444.160000pt;}
.ybc{bottom:445.600000pt;}
.yeb{bottom:446.240133pt;}
.y18{bottom:448.640000pt;}
.y180{bottom:449.760000pt;}
.y1a5{bottom:451.840000pt;}
.y7c{bottom:452.640000pt;}
.y193{bottom:456.320133pt;}
.y12d{bottom:457.120000pt;}
.y5a{bottom:461.120000pt;}
.y14a{bottom:463.520000pt;}
.y17{bottom:466.400000pt;}
.y106{bottom:466.720000pt;}
.y67{bottom:467.040000pt;}
.y4d{bottom:467.200000pt;}
.y164{bottom:469.920000pt;}
.yd8{bottom:471.840000pt;}
.y1b5{bottom:472.800000pt;}
.ybb{bottom:474.560000pt;}
.y32{bottom:475.200000pt;}
.ya0{bottom:476.800000pt;}
.y114{bottom:476.960000pt;}
.y1c5{bottom:478.880000pt;}
.yea{bottom:480.000133pt;}
.y192{bottom:480.640133pt;}
.y149{bottom:482.880000pt;}
.y16{bottom:484.160000pt;}
.y7b{bottom:486.400000pt;}
.y163{bottom:489.120000pt;}
.y12c{bottom:490.880000pt;}
.y59{bottom:495.040000pt;}
.y105{bottom:500.640000pt;}
.y66{bottom:500.960000pt;}
.y4c{bottom:501.120000pt;}
.y15{bottom:501.760000pt;}
.y148{bottom:502.080000pt;}
.yba{bottom:503.520000pt;}
.yd7{bottom:505.760000pt;}
.y1b4{bottom:508.320133pt;}
.y1a4{bottom:508.480000pt;}
.y31{bottom:508.960000pt;}
.y9f{bottom:510.560000pt;}
.y1c4{bottom:513.120000pt;}
.yb3{bottom:513.280000pt;}
.ye9{bottom:513.920133pt;}
.y14{bottom:519.520000pt;}
.y7a{bottom:520.160000pt;}
.y12b{bottom:524.480000pt;}
.y17f{bottom:525.760000pt;}
.y162{bottom:527.840000pt;}
.y58{bottom:528.800000pt;}
.y104{bottom:534.400000pt;}
.y65{bottom:534.720000pt;}
.y4b{bottom:534.880000pt;}
.y1c3{bottom:535.360000pt;}
.y13{bottom:537.280000pt;}
.yd6{bottom:539.520000pt;}
.y147{bottom:540.800000pt;}
.yb2{bottom:542.240000pt;}
.y30{bottom:542.880000pt;}
.y1b3{bottom:543.840000pt;}
.y9e{bottom:544.320000pt;}
.y161{bottom:547.040133pt;}
.ye8{bottom:547.680133pt;}
.y191{bottom:551.520000pt;}
.y79{bottom:553.920000pt;}
.y12a{bottom:558.240000pt;}
.y146{bottom:560.000000pt;}
.y17e{bottom:560.800000pt;}
.y57{bottom:562.560000pt;}
.y160{bottom:566.400133pt;}
.y103{bottom:568.160000pt;}
.yb9{bottom:568.320000pt;}
.y4a{bottom:568.480000pt;}
.yb1{bottom:571.200000pt;}
.y12{bottom:572.800000pt;}
.yd5{bottom:573.280000pt;}
.y2f{bottom:576.640000pt;}
.y1a3{bottom:577.600000pt;}
.y9d{bottom:578.080000pt;}
.y1b2{bottom:579.360000pt;}
.y1c2{bottom:579.840133pt;}
.y15f{bottom:585.760133pt;}
.y78{bottom:587.840000pt;}
.y11{bottom:590.400000pt;}
.y129{bottom:592.160000pt;}
.y145{bottom:598.720000pt;}
.y1b1{bottom:601.600000pt;}
.y102{bottom:601.920000pt;}
.y49{bottom:602.240000pt;}
.yd4{bottom:607.040000pt;}
.y1a2{bottom:609.920000pt;}
.y2e{bottom:610.400000pt;}
.y9c{bottom:612.000000pt;}
.y1c1{bottom:614.720000pt;}
.y144{bottom:618.080000pt;}
.y77{bottom:621.600000pt;}
.ye7{bottom:622.880133pt;}
.y15e{bottom:624.320133pt;}
.y128{bottom:625.920000pt;}
.y190{bottom:626.720000pt;}
.y56{bottom:628.000000pt;}
.y17d{bottom:630.720000pt;}
.y1a1{bottom:634.240000pt;}
.y10{bottom:634.720000pt;}
.y101{bottom:635.840000pt;}
.y48{bottom:636.000000pt;}
.y1b0{bottom:637.120000pt;}
.y15d{bottom:643.680133pt;}
.y2d{bottom:644.160000pt;}
.y9b{bottom:645.760000pt;}
.y1c0{bottom:648.480000pt;}
.yf{bottom:652.480000pt;}
.y16c{bottom:654.880000pt;}
.y76{bottom:655.360000pt;}
.y143{bottom:656.640000pt;}
.y55{bottom:656.960000pt;}
.y1a0{bottom:658.560000pt;}
.y18f{bottom:659.040133pt;}
.y127{bottom:659.680000pt;}
.ye6{bottom:661.440133pt;}
.y17c{bottom:665.760000pt;}
.yd3{bottom:667.840000pt;}
.y100{bottom:669.600000pt;}
.y47{bottom:669.920000pt;}
.ye{bottom:670.080000pt;}
.y1af{bottom:672.800000pt;}
.y142{bottom:676.000000pt;}
.y2c{bottom:678.080000pt;}
.y9a{bottom:679.520000pt;}
.y16b{bottom:679.840000pt;}
.y15c{bottom:682.240133pt;}
.y1bf{bottom:682.720000pt;}
.y18e{bottom:683.360133pt;}
.yd{bottom:687.840000pt;}
.y75{bottom:689.120000pt;}
.y17b{bottom:690.080000pt;}
.y126{bottom:693.440000pt;}
.y141{bottom:695.200000pt;}
.yd2{bottom:696.800000pt;}
.ye5{bottom:700.000133pt;}
.yff{bottom:701.280000pt;}
.y15b{bottom:701.600133pt;}
.y46{bottom:703.680000pt;}
.y16a{bottom:704.960000pt;}
.yc{bottom:705.600000pt;}
.y18d{bottom:707.680133pt;}
.y1ae{bottom:708.320133pt;}
.y2b{bottom:711.840000pt;}
.y99{bottom:713.280000pt;}
.y17a{bottom:714.400000pt;}
.y140{bottom:714.560000pt;}
.y15a{bottom:720.960000pt;}
.y74{bottom:723.040000pt;}
.yb{bottom:723.200000pt;}
.yd1{bottom:725.760000pt;}
.y125{bottom:727.360000pt;}
.y19f{bottom:727.680000pt;}
.yfe{bottom:730.080000pt;}
.y18c{bottom:732.000133pt;}
.y13f{bottom:733.920133pt;}
.y45{bottom:737.440000pt;}
.y159{bottom:740.160000pt;}
.ya{bottom:740.960000pt;}
.y2a{bottom:745.600000pt;}
.y98{bottom:747.200000pt;}
.y13e{bottom:753.280133pt;}
.yd0{bottom:754.720000pt;}
.y169{bottom:755.040000pt;}
.y18b{bottom:756.320133pt;}
.y9{bottom:758.720000pt;}
.yfd{bottom:759.200000pt;}
.y158{bottom:759.520000pt;}
.y19e{bottom:760.000000pt;}
.y124{bottom:761.120000pt;}
.y1ad{bottom:766.560000pt;}
.y44{bottom:771.200000pt;}
.y13d{bottom:772.480133pt;}
.y8{bottom:776.320000pt;}
.y73{bottom:778.880000pt;}
.y29{bottom:779.360000pt;}
.y168{bottom:780.000000pt;}
.y97{bottom:780.960000pt;}
.ye4{bottom:780.960133pt;}
.y179{bottom:783.520000pt;}
.ycf{bottom:783.680000pt;}
.y19d{bottom:784.320000pt;}
.yfc{bottom:788.160000pt;}
.y123{bottom:794.880000pt;}
.y72{bottom:798.240000pt;}
.y43{bottom:805.120000pt;}
.y13c{bottom:811.200000pt;}
.yce{bottom:812.640000pt;}
.y28{bottom:813.120000pt;}
.y113{bottom:814.720000pt;}
.ye3{bottom:814.720133pt;}
.y178{bottom:815.840000pt;}
.yfb{bottom:817.280000pt;}
.y71{bottom:817.440000pt;}
.y18a{bottom:825.440000pt;}
.y122{bottom:828.640000pt;}
.y167{bottom:830.080000pt;}
.y13b{bottom:830.400000pt;}
.y70{bottom:836.800000pt;}
.y42{bottom:838.880000pt;}
.y177{bottom:840.160000pt;}
.ycd{bottom:841.600000pt;}
.y1ac{bottom:843.360000pt;}
.yfa{bottom:846.240000pt;}
.y27{bottom:847.040000pt;}
.ye2{bottom:848.480000pt;}
.y7{bottom:852.800000pt;}
.y166{bottom:855.200000pt;}
.y6f{bottom:856.160000pt;}
.y189{bottom:857.760000pt;}
.y121{bottom:862.560000pt;}
.y176{bottom:864.480000pt;}
.yb8{bottom:865.760000pt;}
.y13a{bottom:869.120000pt;}
.y41{bottom:872.640000pt;}
.yf9{bottom:875.200000pt;}
.y6e{bottom:875.360000pt;}
.y26{bottom:880.800000pt;}
.y1ab{bottom:881.760000pt;}
.y188{bottom:882.080000pt;}
.ye1{bottom:882.240000pt;}
.y139{bottom:888.320000pt;}
.y6{bottom:889.280000pt;}
.y96{bottom:894.720000pt;}
.y120{bottom:896.320000pt;}
.y40{bottom:906.400000pt;}
.y138{bottom:907.680000pt;}
.y95{bottom:914.080000pt;}
.y25{bottom:914.560000pt;}
.ye0{bottom:916.160000pt;}
.y1aa{bottom:920.000000pt;}
.y165{bottom:920.480000pt;}
.yb7{bottom:923.680000pt;}
.y19c{bottom:926.880000pt;}
.y137{bottom:927.040000pt;}
.y5{bottom:928.000000pt;}
.y11f{bottom:930.080000pt;}
.y94{bottom:933.280000pt;}
.y175{bottom:934.400000pt;}
.y3f{bottom:940.320000pt;}
.y187{bottom:951.200000pt;}
.y93{bottom:952.640000pt;}
.y24{bottom:956.000000pt;}
.y19b{bottom:959.200000pt;}
.y136{bottom:963.360000pt;}
.y11e{bottom:963.840000pt;}
.y4{bottom:966.720000pt;}
.y92{bottom:972.000000pt;}
.y3e{bottom:974.080000pt;}
.yb6{bottom:981.600000pt;}
.y186{bottom:983.520000pt;}
.y91{bottom:991.360000pt;}
.y3{bottom:1005.280000pt;}
.y3d{bottom:1007.840000pt;}
.y90{bottom:1010.560000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1060.640000pt;}
.hb{height:39.195000pt;}
.h2{height:39.936463pt;}
.h8{height:48.558656pt;}
.h7{height:50.037205pt;}
.h6{height:53.823656pt;}
.h5{height:55.462518pt;}
.h9{height:58.503656pt;}
.hf{height:58.504190pt;}
.hc{height:60.285018pt;}
.h10{height:61.016617pt;}
.h12{height:65.107518pt;}
.h11{height:68.121580pt;}
.h4{height:68.448656pt;}
.he{height:68.449190pt;}
.hd{height:70.532830pt;}
.ha{height:70.758656pt;}
.h3{height:80.177830pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:94.400000pt;}
.x2{left:96.000000pt;}
.x2d{left:115.680000pt;}
.x9{left:118.720000pt;}
.x1a{left:122.080000pt;}
.x1f{left:132.640000pt;}
.xf{left:133.760000pt;}
.xb{left:143.360000pt;}
.x8{left:160.640000pt;}
.x1d{left:167.040000pt;}
.x27{left:170.720000pt;}
.x6{left:182.240000pt;}
.x1b{left:187.680000pt;}
.x31{left:188.800000pt;}
.x33{left:190.400000pt;}
.x4{left:193.760000pt;}
.x2f{left:212.160000pt;}
.xa{left:220.640000pt;}
.x2c{left:226.880000pt;}
.x5{left:243.520000pt;}
.xc{left:250.400000pt;}
.x21{left:258.400000pt;}
.x3{left:268.640000pt;}
.x26{left:271.680000pt;}
.x22{left:287.520000pt;}
.x11{left:298.880000pt;}
.x12{left:300.320000pt;}
.xd{left:302.400000pt;}
.x29{left:308.640000pt;}
.x2e{left:313.600000pt;}
.x20{left:316.640000pt;}
.x24{left:329.760000pt;}
.x10{left:337.920000pt;}
.x23{left:344.480000pt;}
.x7{left:345.760000pt;}
.x25{left:357.760000pt;}
.x28{left:373.120000pt;}
.x1e{left:375.680000pt;}
.x1c{left:378.880000pt;}
.x1{left:385.760000pt;}
.x19{left:392.320000pt;}
.x32{left:401.120000pt;}
.x16{left:420.000000pt;}
.xe{left:447.840000pt;}
.x2b{left:460.640000pt;}
.x34{left:473.280000pt;}
.x17{left:512.480000pt;}
.x15{left:523.360000pt;}
.x14{left:558.560000pt;}
.x18{left:606.720000pt;}
.x35{left:614.080000pt;}
.x2a{left:670.560000pt;}
.x13{left:693.120000pt;}
}




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