
    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_0d06c9660c343d64aecf089b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087402;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_7673e84d064aa160619c37e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_a91be3af6a80750792eefc5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_bf8b459137dcaa7a7ef47ef4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-21.978000px;}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006000px;}
.lsd{letter-spacing:0.006296px;}
.lse{letter-spacing:0.006600px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.lsc{letter-spacing:0.072409px;}
.lsb{letter-spacing:0.147965px;}
.lsa{letter-spacing:0.167400px;}
.ls9{letter-spacing:0.176299px;}
.ls8{letter-spacing:0.318600px;}
.ls7{letter-spacing:0.402970px;}
.ls4{letter-spacing:0.513157px;}
.ls3{letter-spacing:1.285200px;}
.ls5{letter-spacing:11.160600px;}
.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;}
}
.wsa{word-spacing:-14.526600px;}
.ws3{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.200000px;}
.ws7{word-spacing:-13.165200px;}
.ws6{word-spacing:-11.880000px;}
.ws2{word-spacing:-10.004280px;}
.ws5{word-spacing:-8.465160px;}
.ws4{word-spacing:-6.926040px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:7.844759px;}
._26{margin-left:-11.081424px;}
._16{margin-left:-9.787200px;}
._17{margin-left:-8.469600px;}
._19{margin-left:-7.308000px;}
._3{margin-left:-6.205800px;}
._12{margin-left:-5.064000px;}
._1{margin-left:-4.063500px;}
._2{margin-left:-2.457000px;}
._0{margin-left:-1.297800px;}
._4{width:1.056000px;}
._e{width:2.428800px;}
._d{width:4.197600px;}
._8{width:6.076200px;}
._9{width:7.251000px;}
._6{width:8.883600px;}
._a{width:10.751400px;}
._5{width:12.652200px;}
._1b{width:14.256000px;}
._1c{width:15.536400px;}
._b{width:16.645200px;}
._c{width:17.872800px;}
._10{width:19.131000px;}
._15{width:20.178600px;}
._14{width:22.150428px;}
._f{width:23.772372px;}
._11{width:25.311000px;}
._2a{width:26.380200px;}
._7{width:27.383400px;}
._1d{width:29.304000px;}
._25{width:30.405000px;}
._18{width:31.528200px;}
._1a{width:33.349800px;}
._27{width:34.861200px;}
._2b{width:36.669600px;}
._13{width:38.194200px;}
._2e{width:39.419400px;}
._2d{width:40.591800px;}
._22{width:43.126800px;}
._2f{width:44.200200px;}
._29{width:45.632400px;}
._2c{width:48.586800px;}
._24{width:49.836600px;}
._31{width:56.337600px;}
._28{width:60.310800px;}
._32{width:86.149800px;}
._30{width:102.339600px;}
._21{width:117.151200px;}
._20{width:141.341400px;}
._1e{width:144.378600px;}
._1f{width:260.340000px;}
._23{width:276.056400px;}
.fc1{color:rgb(19,16,15);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:89.291400px;}
.y74{bottom:123.306900px;}
.y4c{bottom:123.419400px;}
.y1ef{bottom:126.786900px;}
.ybc{bottom:127.802400px;}
.y126{bottom:132.636900px;}
.yf8{bottom:133.377900px;}
.y1b9{bottom:134.886900px;}
.y145{bottom:139.506900px;}
.y4b{bottom:139.619400px;}
.y24{bottom:140.136900px;}
.y73{bottom:144.002400px;}
.y14d{bottom:144.114900px;}
.y1ee{bottom:145.536900px;}
.y207{bottom:147.636900px;}
.y198{bottom:149.136900px;}
.ybb{bottom:150.336900px;}
.y125{bottom:151.386900px;}
.yf7{bottom:152.127900px;}
.y1b8{bottom:153.636900px;}
.y72{bottom:155.706900px;}
.y4a{bottom:155.819400px;}
.y23{bottom:156.336900px;}
.y144{bottom:160.202400px;}
.y94{bottom:160.314900px;}
.y1ed{bottom:164.286900px;}
.y206{bottom:166.386900px;}
.y197{bottom:167.886900px;}
.yba{bottom:169.686900px;}
.y124{bottom:170.136900px;}
.yf6{bottom:170.877900px;}
.y143{bottom:171.906900px;}
.y96{bottom:172.019400px;}
.y1b7{bottom:173.886900px;}
.y71{bottom:176.402400px;}
.y49{bottom:176.514900px;}
.y22{bottom:177.032400px;}
.y1ec{bottom:184.536900px;}
.y205{bottom:185.136900px;}
.y196{bottom:186.636900px;}
.y142{bottom:188.106900px;}
.y48{bottom:188.219400px;}
.y123{bottom:188.886900px;}
.yb9{bottom:189.036900px;}
.yf5{bottom:189.627900px;}
.y1b6{bottom:192.636900px;}
.y160{bottom:192.714900px;}
.y21{bottom:193.232400px;}
.y183{bottom:199.386900px;}
.y1eb{bottom:202.836900px;}
.y204{bottom:203.886900px;}
.y141{bottom:204.306900px;}
.y47{bottom:204.419400px;}
.y195{bottom:206.886900px;}
.y122{bottom:207.636900px;}
.yf4{bottom:208.377900px;}
.yb8{bottom:208.386900px;}
.yd2{bottom:208.914900px;}
.y1b5{bottom:212.886900px;}
.y182{bottom:218.136900px;}
.y70{bottom:218.886900px;}
.y46{bottom:220.619400px;}
.y1ea{bottom:222.636900px;}
.y203{bottom:224.136900px;}
.y140{bottom:225.002400px;}
.y15f{bottom:225.114900px;}
.y194{bottom:225.636900px;}
.y121{bottom:226.386900px;}
.y20{bottom:226.902900px;}
.yf3{bottom:227.127900px;}
.yb7{bottom:227.736900px;}
.y1b4{bottom:231.636900px;}
.y13f{bottom:236.706900px;}
.y45{bottom:236.819400px;}
.y181{bottom:236.886900px;}
.y6f{bottom:237.486900px;}
.y1e9{bottom:240.936900px;}
.y95{bottom:241.314900px;}
.y202{bottom:242.886900px;}
.y193{bottom:244.386900px;}
.y1f{bottom:245.652900px;}
.yf2{bottom:245.877900px;}
.y120{bottom:246.636900px;}
.yb6{bottom:247.086900px;}
.y1b3{bottom:250.386900px;}
.y13e{bottom:252.906900px;}
.y44{bottom:253.019400px;}
.y180{bottom:255.636900px;}
.y6e{bottom:256.086900px;}
.y111{bottom:257.514900px;}
.y1e8{bottom:260.736900px;}
.y201{bottom:261.636900px;}
.y192{bottom:263.136900px;}
.y1e{bottom:264.402900px;}
.yf1{bottom:264.627900px;}
.y11f{bottom:265.386900px;}
.yb5{bottom:266.436900px;}
.y13d{bottom:269.106900px;}
.y1cb{bottom:269.136900px;}
.y43{bottom:269.219400px;}
.y1b2{bottom:270.636900px;}
.y214{bottom:272.136900px;}
.y14b{bottom:273.714900px;}
.y17f{bottom:274.386900px;}
.y6d{bottom:274.686900px;}
.y93{bottom:275.136900px;}
.y1e7{bottom:279.036900px;}
.y200{bottom:280.386900px;}
.yf0{bottom:283.377900px;}
.y191{bottom:283.386900px;}
.y11e{bottom:284.136900px;}
.y42{bottom:285.419400px;}
.yb4{bottom:285.786900px;}
.y110{bottom:289.386900px;}
.y13c{bottom:289.802400px;}
.y213{bottom:290.886900px;}
.y1d{bottom:292.152900px;}
.y17e{bottom:293.136900px;}
.y6c{bottom:293.286900px;}
.y92{bottom:294.486900px;}
.y1e6{bottom:297.336900px;}
.y1ff{bottom:300.636900px;}
.y14c{bottom:301.619400px;}
.yef{bottom:302.127900px;}
.y190{bottom:302.136900px;}
.y11d{bottom:302.886900px;}
.yb3{bottom:305.136900px;}
.y41{bottom:306.114900px;}
.y10f{bottom:308.136900px;}
.y1b1{bottom:309.636900px;}
.y6b{bottom:311.886900px;}
.y91{bottom:313.836900px;}
.y13b{bottom:316.386900px;}
.y1e5{bottom:317.136900px;}
.y4e{bottom:317.819400px;}
.y1fe{bottom:319.386900px;}
.yee{bottom:320.877900px;}
.y18f{bottom:320.886900px;}
.y11c{bottom:321.636900px;}
.yb2{bottom:324.486900px;}
.y10e{bottom:326.886900px;}
.y1b0{bottom:328.386900px;}
.y212{bottom:329.886900px;}
.y6a{bottom:330.486900px;}
.y17d{bottom:330.636900px;}
.y90{bottom:333.186900px;}
.y15e{bottom:334.019400px;}
.y13a{bottom:335.136900px;}
.y1e4{bottom:335.436900px;}
.y1c{bottom:337.902900px;}
.y1fd{bottom:338.136900px;}
.y4d{bottom:338.514900px;}
.y11b{bottom:340.386900px;}
.y18e{bottom:341.136900px;}
.yb1{bottom:343.836900px;}
.y10d{bottom:345.636900px;}
.y1af{bottom:347.136900px;}
.y211{bottom:348.636900px;}
.y69{bottom:349.086900px;}
.y17c{bottom:349.386900px;}
.y50{bottom:350.219400px;}
.y8f{bottom:352.536900px;}
.y139{bottom:353.886900px;}
.y1e3{bottom:355.236900px;}
.y14a{bottom:355.386900px;}
.y1b{bottom:356.652900px;}
.y1fc{bottom:358.386900px;}
.y11a{bottom:359.136900px;}
.yec{bottom:363.128400px;}
.yb0{bottom:363.186900px;}
.y10c{bottom:364.386900px;}
.y1ca{bottom:365.886900px;}
.y15d{bottom:366.419400px;}
.y1ae{bottom:367.386900px;}
.y68{bottom:367.686900px;}
.y17b{bottom:368.136900px;}
.y18d{bottom:368.886900px;}
.y4f{bottom:370.914900px;}
.y8e{bottom:371.886900px;}
.y138{bottom:372.636900px;}
.y1e2{bottom:373.536900px;}
.y149{bottom:374.136900px;}
.y1fb{bottom:377.136900px;}
.y119{bottom:377.886900px;}
.yeb{bottom:381.878400px;}
.yaf{bottom:382.536900px;}
.y15c{bottom:382.619400px;}
.y10b{bottom:383.136900px;}
.y1a{bottom:384.402900px;}
.y1c9{bottom:384.636900px;}
.y1ad{bottom:386.136900px;}
.y67{bottom:386.286900px;}
.y17a{bottom:386.886900px;}
.y210{bottom:389.136900px;}
.y8d{bottom:391.236900px;}
.y137{bottom:391.386900px;}
.y1e1{bottom:391.836900px;}
.y148{bottom:392.886900px;}
.y40{bottom:395.136900px;}
.y1fa{bottom:395.886900px;}
.y118{bottom:396.636900px;}
.y16f{bottom:398.136900px;}
.yea{bottom:400.628400px;}
.yae{bottom:401.886900px;}
.y19{bottom:403.152900px;}
.y15b{bottom:403.314900px;}
.y66{bottom:404.886900px;}
.y179{bottom:405.636900px;}
.y1ac{bottom:406.386900px;}
.y18c{bottom:407.136900px;}
.y20f{bottom:407.886900px;}
.y136{bottom:410.136900px;}
.y8c{bottom:410.586900px;}
.y147{bottom:411.636900px;}
.y3f{bottom:413.886900px;}
.y1f9{bottom:414.636900px;}
.y117{bottom:415.386900px;}
.y16e{bottom:416.886900px;}
.ye9{bottom:419.378400px;}
.y15a{bottom:419.514900px;}
.y10a{bottom:420.636900px;}
.yad{bottom:421.236900px;}
.y18{bottom:421.902900px;}
.y65{bottom:423.486900px;}
.y1c8{bottom:423.636900px;}
.y178{bottom:424.386900px;}
.y1ab{bottom:425.136900px;}
.y18b{bottom:425.886900px;}
.y20e{bottom:426.636900px;}
.y135{bottom:428.886900px;}
.y8b{bottom:429.936900px;}
.y146{bottom:430.386900px;}
.y3e{bottom:432.636900px;}
.y116{bottom:434.136900px;}
.y1f8{bottom:434.886900px;}
.y16d{bottom:435.636900px;}
.ye8{bottom:438.128400px;}
.y226{bottom:438.402900px;}
.y109{bottom:439.386900px;}
.yac{bottom:440.586900px;}
.y17{bottom:440.652900px;}
.y64{bottom:442.086900px;}
.y1c7{bottom:442.386900px;}
.y159{bottom:443.136900px;}
.y1aa{bottom:443.886900px;}
.y18a{bottom:444.636900px;}
.y20d{bottom:445.386900px;}
.yd1{bottom:449.136900px;}
.y8a{bottom:449.286900px;}
.y1e0{bottom:449.736900px;}
.y3d{bottom:452.886900px;}
.y16c{bottom:454.386900px;}
.y1f7{bottom:455.136900px;}
.ye7{bottom:456.878400px;}
.y225{bottom:457.152900px;}
.y108{bottom:458.136900px;}
.y16{bottom:459.402900px;}
.yab{bottom:459.936900px;}
.y158{bottom:461.886900px;}
.y63{bottom:462.186900px;}
.y1c6{bottom:462.636900px;}
.y189{bottom:463.386900px;}
.y1a9{bottom:464.136900px;}
.y134{bottom:467.886900px;}
.y1df{bottom:468.036900px;}
.y89{bottom:468.636900px;}
.y3c{bottom:471.636900px;}
.y16b{bottom:473.136900px;}
.y1f6{bottom:473.886900px;}
.ye6{bottom:475.863900px;}
.y107{bottom:476.886900px;}
.y224{bottom:477.402900px;}
.y15{bottom:478.152900px;}
.yaa{bottom:479.286900px;}
.y157{bottom:480.636900px;}
.y62{bottom:480.786900px;}
.y1c5{bottom:481.386900px;}
.y188{bottom:482.136900px;}
.y1a8{bottom:482.886900px;}
.y20c{bottom:484.386900px;}
.y1de{bottom:486.336900px;}
.y133{bottom:486.636900px;}
.yd0{bottom:489.636900px;}
.y3b{bottom:490.386900px;}
.y16a{bottom:491.886900px;}
.y1f5{bottom:492.636900px;}
.ye5{bottom:494.613900px;}
.y106{bottom:495.636900px;}
.y223{bottom:496.152900px;}
.y14{bottom:496.902900px;}
.y88{bottom:496.986900px;}
.ya9{bottom:498.636900px;}
.y61{bottom:499.386900px;}
.y156{bottom:500.886900px;}
.y1c4{bottom:501.636900px;}
.y1a7{bottom:503.136900px;}
.y132{bottom:505.386900px;}
.y1dd{bottom:506.136900px;}
.y3a{bottom:509.136900px;}
.ycf{bottom:510.636900px;}
.y1f4{bottom:512.886900px;}
.ye4{bottom:513.363900px;}
.y105{bottom:514.386900px;}
.y222{bottom:514.902900px;}
.y13{bottom:515.652900px;}
.y60{bottom:517.986900px;}
.y177{bottom:518.136900px;}
.y155{bottom:519.636900px;}
.y1c3{bottom:520.386900px;}
.y1a6{bottom:521.886900px;}
.y131{bottom:524.136900px;}
.y1dc{bottom:524.436900px;}
.y39{bottom:527.886900px;}
.y169{bottom:529.386900px;}
.y87{bottom:530.736900px;}
.yce{bottom:531.636900px;}
.ye3{bottom:532.113900px;}
.y104{bottom:533.136900px;}
.y221{bottom:533.652900px;}
.y12{bottom:534.402900px;}
.y5f{bottom:536.586900px;}
.y176{bottom:536.886900px;}
.ya8{bottom:537.336900px;}
.y154{bottom:538.386900px;}
.y1c2{bottom:539.136900px;}
.y1a5{bottom:540.636900px;}
.y130{bottom:542.886900px;}
.y1db{bottom:544.236900px;}
.y38{bottom:546.636900px;}
.y168{bottom:548.136900px;}
.y86{bottom:549.336900px;}
.y1f3{bottom:550.386900px;}
.ye2{bottom:550.863900px;}
.y103{bottom:551.886900px;}
.y220{bottom:552.402900px;}
.ycd{bottom:552.636900px;}
.y11{bottom:553.152900px;}
.y5e{bottom:555.186900px;}
.y175{bottom:555.636900px;}
.ya7{bottom:556.686900px;}
.y153{bottom:557.136900px;}
.y1c1{bottom:557.886900px;}
.y1a4{bottom:560.886900px;}
.y12f{bottom:561.636900px;}
.y1da{bottom:562.536900px;}
.y37{bottom:565.386900px;}
.y167{bottom:566.886900px;}
.y85{bottom:567.936900px;}
.y1f2{bottom:569.136900px;}
.ye1{bottom:569.613900px;}
.y102{bottom:570.636900px;}
.y21f{bottom:571.152900px;}
.y10{bottom:571.902900px;}
.ycc{bottom:572.136900px;}
.y5d{bottom:573.786900px;}
.y174{bottom:574.386900px;}
.y152{bottom:575.886900px;}
.ya6{bottom:576.036900px;}
.y1c0{bottom:578.136900px;}
.y1a3{bottom:579.636900px;}
.y12e{bottom:580.386900px;}
.y1d9{bottom:582.336900px;}
.y36{bottom:584.136900px;}
.y166{bottom:585.636900px;}
.y84{bottom:586.536900px;}
.y1f1{bottom:587.886900px;}
.y101{bottom:589.386900px;}
.y21e{bottom:589.902900px;}
.yf{bottom:590.652900px;}
.ye0{bottom:591.336900px;}
.ycb{bottom:591.636900px;}
.y5c{bottom:592.386900px;}
.y173{bottom:593.136900px;}
.y151{bottom:594.636900px;}
.ya5{bottom:595.386900px;}
.y1bf{bottom:596.886900px;}
.y1a2{bottom:598.386900px;}
.y12d{bottom:599.136900px;}
.y1d8{bottom:600.636900px;}
.y35{bottom:602.886900px;}
.y165{bottom:604.386900px;}
.y83{bottom:605.136900px;}
.y100{bottom:608.136900px;}
.y21d{bottom:608.652900px;}
.ye{bottom:609.402900px;}
.ydf{bottom:610.086900px;}
.y5b{bottom:610.986900px;}
.yca{bottom:611.136900px;}
.y172{bottom:611.886900px;}
.y150{bottom:613.386900px;}
.ya4{bottom:614.736900px;}
.y1be{bottom:615.636900px;}
.y1a1{bottom:617.136900px;}
.y12c{bottom:617.886900px;}
.y20b{bottom:618.636900px;}
.y1d7{bottom:620.436900px;}
.y34{bottom:621.636900px;}
.y164{bottom:623.136900px;}
.y82{bottom:623.736900px;}
.yff{bottom:626.886900px;}
.y21c{bottom:627.402900px;}
.yd{bottom:628.152900px;}
.y1f0{bottom:628.386900px;}
.yde{bottom:628.836900px;}
.y5a{bottom:629.586900px;}
.yc9{bottom:632.136900px;}
.ya3{bottom:634.086900px;}
.y1a0{bottom:635.886900px;}
.y12b{bottom:636.636900px;}
.y20a{bottom:637.386900px;}
.y171{bottom:639.636900px;}
.y1d6{bottom:640.236900px;}
.y33{bottom:640.386900px;}
.y163{bottom:641.886900px;}
.y81{bottom:642.336900px;}
.yfe{bottom:645.636900px;}
.y21b{bottom:646.152900px;}
.ydd{bottom:647.586900px;}
.y59{bottom:648.186900px;}
.y187{bottom:650.886900px;}
.yc8{bottom:651.636900px;}
.ya2{bottom:653.436900px;}
.y1bd{bottom:654.636900px;}
.y12a{bottom:655.386900px;}
.y19f{bottom:656.136900px;}
.y1d5{bottom:658.536900px;}
.y32{bottom:659.136900px;}
.y14f{bottom:659.886900px;}
.y162{bottom:660.636900px;}
.y80{bottom:660.936900px;}
.y21a{bottom:664.902900px;}
.yfd{bottom:665.886900px;}
.ydc{bottom:666.336900px;}
.y58{bottom:666.786900px;}
.y186{bottom:669.636900px;}
.yc7{bottom:671.136900px;}
.ya1{bottom:672.786900px;}
.y1bc{bottom:673.386900px;}
.y129{bottom:674.136900px;}
.y19e{bottom:674.886900px;}
.y31{bottom:677.886900px;}
.y1d4{bottom:678.336900px;}
.y161{bottom:679.386900px;}
.y7f{bottom:679.536900px;}
.y219{bottom:683.652900px;}
.yfc{bottom:684.636900px;}
.ydb{bottom:685.086900px;}
.y57{bottom:685.386900px;}
.yc{bottom:687.402900px;}
.y185{bottom:688.386900px;}
.yc6{bottom:690.636900px;}
.ya0{bottom:692.136900px;}
.y19d{bottom:693.636900px;}
.y209{bottom:695.136900px;}
.y30{bottom:696.636900px;}
.y7e{bottom:698.136900px;}
.y128{bottom:701.886900px;}
.y218{bottom:702.402900px;}
.yfb{bottom:703.386900px;}
.yda{bottom:703.836900px;}
.y56{bottom:703.986900px;}
.yb{bottom:709.902900px;}
.yc5{bottom:710.136900px;}
.y1bb{bottom:710.886900px;}
.y9f{bottom:711.486900px;}
.y19c{bottom:712.386900px;}
.y208{bottom:713.886900px;}
.y2f{bottom:715.386900px;}
.y184{bottom:716.136900px;}
.y1d3{bottom:716.436900px;}
.y7d{bottom:716.736900px;}
.y14e{bottom:716.886900px;}
.yfa{bottom:722.136900px;}
.y55{bottom:722.586900px;}
.yc4{bottom:729.636900px;}
.y217{bottom:730.152900px;}
.yd9{bottom:730.190400px;}
.y9e{bottom:730.836900px;}
.y1ba{bottom:731.136900px;}
.ya{bottom:732.402900px;}
.y19b{bottom:732.636900px;}
.y2e{bottom:734.136900px;}
.y1d2{bottom:734.736900px;}
.y7c{bottom:735.336900px;}
.y127{bottom:735.636900px;}
.y54{bottom:741.186900px;}
.yd8{bottom:748.940400px;}
.yc3{bottom:749.136900px;}
.yf9{bottom:749.886900px;}
.y9d{bottom:750.186900px;}
.y19a{bottom:751.386900px;}
.y115{bottom:752.886900px;}
.y7b{bottom:753.936900px;}
.y2d{bottom:754.386900px;}
.y1d1{bottom:754.536900px;}
.y53{bottom:759.786900px;}
.y216{bottom:762.402900px;}
.yd7{bottom:767.690400px;}
.yc2{bottom:768.636900px;}
.y9c{bottom:769.536900px;}
.y199{bottom:770.136900px;}
.y114{bottom:771.636900px;}
.y7a{bottom:772.536900px;}
.y1d0{bottom:772.836900px;}
.y2c{bottom:773.136900px;}
.y215{bottom:781.152900px;}
.yd6{bottom:786.440400px;}
.y52{bottom:787.386900px;}
.yc1{bottom:788.136900px;}
.y9b{bottom:788.886900px;}
.y113{bottom:790.386900px;}
.y79{bottom:791.136900px;}
.y2b{bottom:791.886900px;}
.yd5{bottom:805.190400px;}
.yc0{bottom:807.636900px;}
.y9a{bottom:808.236900px;}
.y112{bottom:809.136900px;}
.y78{bottom:809.736900px;}
.y2a{bottom:810.636900px;}
.y1cf{bottom:810.936900px;}
.y5{bottom:826.773900px;}
.ybf{bottom:827.136900px;}
.y99{bottom:827.586900px;}
.y170{bottom:827.886900px;}
.y51{bottom:828.636900px;}
.y1ce{bottom:829.236900px;}
.y29{bottom:829.386900px;}
.y77{bottom:829.836900px;}
.y9{bottom:829.902900px;}
.yd4{bottom:835.653900px;}
.ybe{bottom:846.636900px;}
.y98{bottom:846.936900px;}
.y1cd{bottom:847.536900px;}
.y28{bottom:848.136900px;}
.y76{bottom:848.436900px;}
.y8{bottom:848.652900px;}
.yd3{bottom:853.653900px;}
.y4{bottom:855.338400px;}
.ybd{bottom:866.136900px;}
.y97{bottom:866.286900px;}
.y27{bottom:866.886900px;}
.y75{bottom:867.036900px;}
.y1cc{bottom:867.336900px;}
.y7{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.yed{bottom:885.627900px;}
.y26{bottom:885.636900px;}
.y6{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y25{bottom:922.796400px;}
.hb{height:28.951594px;}
.h3{height:38.285156px;}
.he{height:39.381281px;}
.hd{height:41.718750px;}
.h10{height:42.539062px;}
.h5{height:44.666016px;}
.hf{height:45.619629px;}
.h9{height:46.792969px;}
.hc{height:46.933594px;}
.h4{height:47.572244px;}
.h8{height:47.791992px;}
.h11{height:52.148438px;}
.h2{height:54.755859px;}
.h6{height:56.481445px;}
.ha{height:57.363281px;}
.h7{height:58.902683px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x6{left:91.416600px;}
.xf{left:95.669100px;}
.xc{left:108.425100px;}
.xb{left:133.937100px;}
.xa{left:142.440600px;}
.x7{left:160.823100px;}
.x9{left:201.302100px;}
.x8{left:221.841600px;}
.x12{left:271.728600px;}
.x11{left:272.834100px;}
.x13{left:322.938600px;}
.x5{left:443.360100px;}
.xe{left:445.748100px;}
.x10{left:450.000600px;}
.xd{left:473.300100px;}
.x2{left:501.024600px;}
.x3{left:552.690600px;}
.x4{left:569.645100px;}
.x1{left:596.750100px;}
@media print{
.v5{vertical-align:-19.536000pt;}
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005333pt;}
.lsd{letter-spacing:0.005597pt;}
.lse{letter-spacing:0.005867pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.lsc{letter-spacing:0.064363pt;}
.lsb{letter-spacing:0.131525pt;}
.lsa{letter-spacing:0.148800pt;}
.ls9{letter-spacing:0.156710pt;}
.ls8{letter-spacing:0.283200pt;}
.ls7{letter-spacing:0.358195pt;}
.ls4{letter-spacing:0.456139pt;}
.ls3{letter-spacing:1.142400pt;}
.ls5{letter-spacing:9.920533pt;}
.wsa{word-spacing:-12.912533pt;}
.ws3{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws8{word-spacing:-11.733333pt;}
.ws7{word-spacing:-11.702400pt;}
.ws6{word-spacing:-10.560000pt;}
.ws2{word-spacing:-8.892693pt;}
.ws5{word-spacing:-7.524587pt;}
.ws4{word-spacing:-6.156480pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:6.973119pt;}
._26{margin-left:-9.850155pt;}
._16{margin-left:-8.699733pt;}
._17{margin-left:-7.528533pt;}
._19{margin-left:-6.496000pt;}
._3{margin-left:-5.516267pt;}
._12{margin-left:-4.501333pt;}
._1{margin-left:-3.612000pt;}
._2{margin-left:-2.184000pt;}
._0{margin-left:-1.153600pt;}
._4{width:0.938667pt;}
._e{width:2.158933pt;}
._d{width:3.731200pt;}
._8{width:5.401067pt;}
._9{width:6.445333pt;}
._6{width:7.896533pt;}
._a{width:9.556800pt;}
._5{width:11.246400pt;}
._1b{width:12.672000pt;}
._1c{width:13.810133pt;}
._b{width:14.795733pt;}
._c{width:15.886933pt;}
._10{width:17.005333pt;}
._15{width:17.936533pt;}
._14{width:19.689269pt;}
._f{width:21.130997pt;}
._11{width:22.498667pt;}
._2a{width:23.449067pt;}
._7{width:24.340800pt;}
._1d{width:26.048000pt;}
._25{width:27.026667pt;}
._18{width:28.025067pt;}
._1a{width:29.644267pt;}
._27{width:30.987733pt;}
._2b{width:32.595200pt;}
._13{width:33.950400pt;}
._2e{width:35.039467pt;}
._2d{width:36.081600pt;}
._22{width:38.334933pt;}
._2f{width:39.289067pt;}
._29{width:40.562133pt;}
._2c{width:43.188267pt;}
._24{width:44.299200pt;}
._31{width:50.077867pt;}
._28{width:53.609600pt;}
._32{width:76.577600pt;}
._30{width:90.968533pt;}
._21{width:104.134400pt;}
._20{width:125.636800pt;}
._1e{width:128.336533pt;}
._1f{width:231.413333pt;}
._23{width:245.383467pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:79.370133pt;}
.y74{bottom:109.606133pt;}
.y4c{bottom:109.706133pt;}
.y1ef{bottom:112.699467pt;}
.ybc{bottom:113.602133pt;}
.y126{bottom:117.899467pt;}
.yf8{bottom:118.558133pt;}
.y1b9{bottom:119.899467pt;}
.y145{bottom:124.006133pt;}
.y4b{bottom:124.106133pt;}
.y24{bottom:124.566133pt;}
.y73{bottom:128.002133pt;}
.y14d{bottom:128.102133pt;}
.y1ee{bottom:129.366133pt;}
.y207{bottom:131.232800pt;}
.y198{bottom:132.566133pt;}
.ybb{bottom:133.632800pt;}
.y125{bottom:134.566133pt;}
.yf7{bottom:135.224800pt;}
.y1b8{bottom:136.566133pt;}
.y72{bottom:138.406133pt;}
.y4a{bottom:138.506133pt;}
.y23{bottom:138.966133pt;}
.y144{bottom:142.402133pt;}
.y94{bottom:142.502133pt;}
.y1ed{bottom:146.032800pt;}
.y206{bottom:147.899467pt;}
.y197{bottom:149.232800pt;}
.yba{bottom:150.832800pt;}
.y124{bottom:151.232800pt;}
.yf6{bottom:151.891467pt;}
.y143{bottom:152.806133pt;}
.y96{bottom:152.906133pt;}
.y1b7{bottom:154.566133pt;}
.y71{bottom:156.802133pt;}
.y49{bottom:156.902133pt;}
.y22{bottom:157.362133pt;}
.y1ec{bottom:164.032800pt;}
.y205{bottom:164.566133pt;}
.y196{bottom:165.899467pt;}
.y142{bottom:167.206133pt;}
.y48{bottom:167.306133pt;}
.y123{bottom:167.899467pt;}
.yb9{bottom:168.032800pt;}
.yf5{bottom:168.558133pt;}
.y1b6{bottom:171.232800pt;}
.y160{bottom:171.302133pt;}
.y21{bottom:171.762133pt;}
.y183{bottom:177.232800pt;}
.y1eb{bottom:180.299467pt;}
.y204{bottom:181.232800pt;}
.y141{bottom:181.606133pt;}
.y47{bottom:181.706133pt;}
.y195{bottom:183.899467pt;}
.y122{bottom:184.566133pt;}
.yf4{bottom:185.224800pt;}
.yb8{bottom:185.232800pt;}
.yd2{bottom:185.702133pt;}
.y1b5{bottom:189.232800pt;}
.y182{bottom:193.899467pt;}
.y70{bottom:194.566133pt;}
.y46{bottom:196.106133pt;}
.y1ea{bottom:197.899467pt;}
.y203{bottom:199.232800pt;}
.y140{bottom:200.002133pt;}
.y15f{bottom:200.102133pt;}
.y194{bottom:200.566133pt;}
.y121{bottom:201.232800pt;}
.y20{bottom:201.691467pt;}
.yf3{bottom:201.891467pt;}
.yb7{bottom:202.432800pt;}
.y1b4{bottom:205.899467pt;}
.y13f{bottom:210.406133pt;}
.y45{bottom:210.506133pt;}
.y181{bottom:210.566133pt;}
.y6f{bottom:211.099467pt;}
.y1e9{bottom:214.166133pt;}
.y95{bottom:214.502133pt;}
.y202{bottom:215.899467pt;}
.y193{bottom:217.232800pt;}
.y1f{bottom:218.358133pt;}
.yf2{bottom:218.558133pt;}
.y120{bottom:219.232800pt;}
.yb6{bottom:219.632800pt;}
.y1b3{bottom:222.566133pt;}
.y13e{bottom:224.806133pt;}
.y44{bottom:224.906133pt;}
.y180{bottom:227.232800pt;}
.y6e{bottom:227.632800pt;}
.y111{bottom:228.902133pt;}
.y1e8{bottom:231.766133pt;}
.y201{bottom:232.566133pt;}
.y192{bottom:233.899467pt;}
.y1e{bottom:235.024800pt;}
.yf1{bottom:235.224800pt;}
.y11f{bottom:235.899467pt;}
.yb5{bottom:236.832800pt;}
.y13d{bottom:239.206133pt;}
.y1cb{bottom:239.232800pt;}
.y43{bottom:239.306133pt;}
.y1b2{bottom:240.566133pt;}
.y214{bottom:241.899467pt;}
.y14b{bottom:243.302133pt;}
.y17f{bottom:243.899467pt;}
.y6d{bottom:244.166133pt;}
.y93{bottom:244.566133pt;}
.y1e7{bottom:248.032800pt;}
.y200{bottom:249.232800pt;}
.yf0{bottom:251.891467pt;}
.y191{bottom:251.899467pt;}
.y11e{bottom:252.566133pt;}
.y42{bottom:253.706133pt;}
.yb4{bottom:254.032800pt;}
.y110{bottom:257.232800pt;}
.y13c{bottom:257.602133pt;}
.y213{bottom:258.566133pt;}
.y1d{bottom:259.691467pt;}
.y17e{bottom:260.566133pt;}
.y6c{bottom:260.699467pt;}
.y92{bottom:261.766133pt;}
.y1e6{bottom:264.299467pt;}
.y1ff{bottom:267.232800pt;}
.y14c{bottom:268.106133pt;}
.yef{bottom:268.558133pt;}
.y190{bottom:268.566133pt;}
.y11d{bottom:269.232800pt;}
.yb3{bottom:271.232800pt;}
.y41{bottom:272.102133pt;}
.y10f{bottom:273.899467pt;}
.y1b1{bottom:275.232800pt;}
.y6b{bottom:277.232800pt;}
.y91{bottom:278.966133pt;}
.y13b{bottom:281.232800pt;}
.y1e5{bottom:281.899467pt;}
.y4e{bottom:282.506133pt;}
.y1fe{bottom:283.899467pt;}
.yee{bottom:285.224800pt;}
.y18f{bottom:285.232800pt;}
.y11c{bottom:285.899467pt;}
.yb2{bottom:288.432800pt;}
.y10e{bottom:290.566133pt;}
.y1b0{bottom:291.899467pt;}
.y212{bottom:293.232800pt;}
.y6a{bottom:293.766133pt;}
.y17d{bottom:293.899467pt;}
.y90{bottom:296.166133pt;}
.y15e{bottom:296.906133pt;}
.y13a{bottom:297.899467pt;}
.y1e4{bottom:298.166133pt;}
.y1c{bottom:300.358133pt;}
.y1fd{bottom:300.566133pt;}
.y4d{bottom:300.902133pt;}
.y11b{bottom:302.566133pt;}
.y18e{bottom:303.232800pt;}
.yb1{bottom:305.632800pt;}
.y10d{bottom:307.232800pt;}
.y1af{bottom:308.566133pt;}
.y211{bottom:309.899467pt;}
.y69{bottom:310.299467pt;}
.y17c{bottom:310.566133pt;}
.y50{bottom:311.306133pt;}
.y8f{bottom:313.366133pt;}
.y139{bottom:314.566133pt;}
.y1e3{bottom:315.766133pt;}
.y14a{bottom:315.899467pt;}
.y1b{bottom:317.024800pt;}
.y1fc{bottom:318.566133pt;}
.y11a{bottom:319.232800pt;}
.yec{bottom:322.780800pt;}
.yb0{bottom:322.832800pt;}
.y10c{bottom:323.899467pt;}
.y1ca{bottom:325.232800pt;}
.y15d{bottom:325.706133pt;}
.y1ae{bottom:326.566133pt;}
.y68{bottom:326.832800pt;}
.y17b{bottom:327.232800pt;}
.y18d{bottom:327.899467pt;}
.y4f{bottom:329.702133pt;}
.y8e{bottom:330.566133pt;}
.y138{bottom:331.232800pt;}
.y1e2{bottom:332.032800pt;}
.y149{bottom:332.566133pt;}
.y1fb{bottom:335.232800pt;}
.y119{bottom:335.899467pt;}
.yeb{bottom:339.447467pt;}
.yaf{bottom:340.032800pt;}
.y15c{bottom:340.106133pt;}
.y10b{bottom:340.566133pt;}
.y1a{bottom:341.691467pt;}
.y1c9{bottom:341.899467pt;}
.y1ad{bottom:343.232800pt;}
.y67{bottom:343.366133pt;}
.y17a{bottom:343.899467pt;}
.y210{bottom:345.899467pt;}
.y8d{bottom:347.766133pt;}
.y137{bottom:347.899467pt;}
.y1e1{bottom:348.299467pt;}
.y148{bottom:349.232800pt;}
.y40{bottom:351.232800pt;}
.y1fa{bottom:351.899467pt;}
.y118{bottom:352.566133pt;}
.y16f{bottom:353.899467pt;}
.yea{bottom:356.114133pt;}
.yae{bottom:357.232800pt;}
.y19{bottom:358.358133pt;}
.y15b{bottom:358.502133pt;}
.y66{bottom:359.899467pt;}
.y179{bottom:360.566133pt;}
.y1ac{bottom:361.232800pt;}
.y18c{bottom:361.899467pt;}
.y20f{bottom:362.566133pt;}
.y136{bottom:364.566133pt;}
.y8c{bottom:364.966133pt;}
.y147{bottom:365.899467pt;}
.y3f{bottom:367.899467pt;}
.y1f9{bottom:368.566133pt;}
.y117{bottom:369.232800pt;}
.y16e{bottom:370.566133pt;}
.ye9{bottom:372.780800pt;}
.y15a{bottom:372.902133pt;}
.y10a{bottom:373.899467pt;}
.yad{bottom:374.432800pt;}
.y18{bottom:375.024800pt;}
.y65{bottom:376.432800pt;}
.y1c8{bottom:376.566133pt;}
.y178{bottom:377.232800pt;}
.y1ab{bottom:377.899467pt;}
.y18b{bottom:378.566133pt;}
.y20e{bottom:379.232800pt;}
.y135{bottom:381.232800pt;}
.y8b{bottom:382.166133pt;}
.y146{bottom:382.566133pt;}
.y3e{bottom:384.566133pt;}
.y116{bottom:385.899467pt;}
.y1f8{bottom:386.566133pt;}
.y16d{bottom:387.232800pt;}
.ye8{bottom:389.447467pt;}
.y226{bottom:389.691467pt;}
.y109{bottom:390.566133pt;}
.yac{bottom:391.632800pt;}
.y17{bottom:391.691467pt;}
.y64{bottom:392.966133pt;}
.y1c7{bottom:393.232800pt;}
.y159{bottom:393.899467pt;}
.y1aa{bottom:394.566133pt;}
.y18a{bottom:395.232800pt;}
.y20d{bottom:395.899467pt;}
.yd1{bottom:399.232800pt;}
.y8a{bottom:399.366133pt;}
.y1e0{bottom:399.766133pt;}
.y3d{bottom:402.566133pt;}
.y16c{bottom:403.899467pt;}
.y1f7{bottom:404.566133pt;}
.ye7{bottom:406.114133pt;}
.y225{bottom:406.358133pt;}
.y108{bottom:407.232800pt;}
.y16{bottom:408.358133pt;}
.yab{bottom:408.832800pt;}
.y158{bottom:410.566133pt;}
.y63{bottom:410.832800pt;}
.y1c6{bottom:411.232800pt;}
.y189{bottom:411.899467pt;}
.y1a9{bottom:412.566133pt;}
.y134{bottom:415.899467pt;}
.y1df{bottom:416.032800pt;}
.y89{bottom:416.566133pt;}
.y3c{bottom:419.232800pt;}
.y16b{bottom:420.566133pt;}
.y1f6{bottom:421.232800pt;}
.ye6{bottom:422.990133pt;}
.y107{bottom:423.899467pt;}
.y224{bottom:424.358133pt;}
.y15{bottom:425.024800pt;}
.yaa{bottom:426.032800pt;}
.y157{bottom:427.232800pt;}
.y62{bottom:427.366133pt;}
.y1c5{bottom:427.899467pt;}
.y188{bottom:428.566133pt;}
.y1a8{bottom:429.232800pt;}
.y20c{bottom:430.566133pt;}
.y1de{bottom:432.299467pt;}
.y133{bottom:432.566133pt;}
.yd0{bottom:435.232800pt;}
.y3b{bottom:435.899467pt;}
.y16a{bottom:437.232800pt;}
.y1f5{bottom:437.899467pt;}
.ye5{bottom:439.656800pt;}
.y106{bottom:440.566133pt;}
.y223{bottom:441.024800pt;}
.y14{bottom:441.691467pt;}
.y88{bottom:441.766133pt;}
.ya9{bottom:443.232800pt;}
.y61{bottom:443.899467pt;}
.y156{bottom:445.232800pt;}
.y1c4{bottom:445.899467pt;}
.y1a7{bottom:447.232800pt;}
.y132{bottom:449.232800pt;}
.y1dd{bottom:449.899467pt;}
.y3a{bottom:452.566133pt;}
.ycf{bottom:453.899467pt;}
.y1f4{bottom:455.899467pt;}
.ye4{bottom:456.323467pt;}
.y105{bottom:457.232800pt;}
.y222{bottom:457.691467pt;}
.y13{bottom:458.358133pt;}
.y60{bottom:460.432800pt;}
.y177{bottom:460.566133pt;}
.y155{bottom:461.899467pt;}
.y1c3{bottom:462.566133pt;}
.y1a6{bottom:463.899467pt;}
.y131{bottom:465.899467pt;}
.y1dc{bottom:466.166133pt;}
.y39{bottom:469.232800pt;}
.y169{bottom:470.566133pt;}
.y87{bottom:471.766133pt;}
.yce{bottom:472.566133pt;}
.ye3{bottom:472.990133pt;}
.y104{bottom:473.899467pt;}
.y221{bottom:474.358133pt;}
.y12{bottom:475.024800pt;}
.y5f{bottom:476.966133pt;}
.y176{bottom:477.232800pt;}
.ya8{bottom:477.632800pt;}
.y154{bottom:478.566133pt;}
.y1c2{bottom:479.232800pt;}
.y1a5{bottom:480.566133pt;}
.y130{bottom:482.566133pt;}
.y1db{bottom:483.766133pt;}
.y38{bottom:485.899467pt;}
.y168{bottom:487.232800pt;}
.y86{bottom:488.299467pt;}
.y1f3{bottom:489.232800pt;}
.ye2{bottom:489.656800pt;}
.y103{bottom:490.566133pt;}
.y220{bottom:491.024800pt;}
.ycd{bottom:491.232800pt;}
.y11{bottom:491.691467pt;}
.y5e{bottom:493.499467pt;}
.y175{bottom:493.899467pt;}
.ya7{bottom:494.832800pt;}
.y153{bottom:495.232800pt;}
.y1c1{bottom:495.899467pt;}
.y1a4{bottom:498.566133pt;}
.y12f{bottom:499.232800pt;}
.y1da{bottom:500.032800pt;}
.y37{bottom:502.566133pt;}
.y167{bottom:503.899467pt;}
.y85{bottom:504.832800pt;}
.y1f2{bottom:505.899467pt;}
.ye1{bottom:506.323467pt;}
.y102{bottom:507.232800pt;}
.y21f{bottom:507.691467pt;}
.y10{bottom:508.358133pt;}
.ycc{bottom:508.566133pt;}
.y5d{bottom:510.032800pt;}
.y174{bottom:510.566133pt;}
.y152{bottom:511.899467pt;}
.ya6{bottom:512.032800pt;}
.y1c0{bottom:513.899467pt;}
.y1a3{bottom:515.232800pt;}
.y12e{bottom:515.899467pt;}
.y1d9{bottom:517.632800pt;}
.y36{bottom:519.232800pt;}
.y166{bottom:520.566133pt;}
.y84{bottom:521.366133pt;}
.y1f1{bottom:522.566133pt;}
.y101{bottom:523.899467pt;}
.y21e{bottom:524.358133pt;}
.yf{bottom:525.024800pt;}
.ye0{bottom:525.632800pt;}
.ycb{bottom:525.899467pt;}
.y5c{bottom:526.566133pt;}
.y173{bottom:527.232800pt;}
.y151{bottom:528.566133pt;}
.ya5{bottom:529.232800pt;}
.y1bf{bottom:530.566133pt;}
.y1a2{bottom:531.899467pt;}
.y12d{bottom:532.566133pt;}
.y1d8{bottom:533.899467pt;}
.y35{bottom:535.899467pt;}
.y165{bottom:537.232800pt;}
.y83{bottom:537.899467pt;}
.y100{bottom:540.566133pt;}
.y21d{bottom:541.024800pt;}
.ye{bottom:541.691467pt;}
.ydf{bottom:542.299467pt;}
.y5b{bottom:543.099467pt;}
.yca{bottom:543.232800pt;}
.y172{bottom:543.899467pt;}
.y150{bottom:545.232800pt;}
.ya4{bottom:546.432800pt;}
.y1be{bottom:547.232800pt;}
.y1a1{bottom:548.566133pt;}
.y12c{bottom:549.232800pt;}
.y20b{bottom:549.899467pt;}
.y1d7{bottom:551.499467pt;}
.y34{bottom:552.566133pt;}
.y164{bottom:553.899467pt;}
.y82{bottom:554.432800pt;}
.yff{bottom:557.232800pt;}
.y21c{bottom:557.691467pt;}
.yd{bottom:558.358133pt;}
.y1f0{bottom:558.566133pt;}
.yde{bottom:558.966133pt;}
.y5a{bottom:559.632800pt;}
.yc9{bottom:561.899467pt;}
.ya3{bottom:563.632800pt;}
.y1a0{bottom:565.232800pt;}
.y12b{bottom:565.899467pt;}
.y20a{bottom:566.566133pt;}
.y171{bottom:568.566133pt;}
.y1d6{bottom:569.099467pt;}
.y33{bottom:569.232800pt;}
.y163{bottom:570.566133pt;}
.y81{bottom:570.966133pt;}
.yfe{bottom:573.899467pt;}
.y21b{bottom:574.358133pt;}
.ydd{bottom:575.632800pt;}
.y59{bottom:576.166133pt;}
.y187{bottom:578.566133pt;}
.yc8{bottom:579.232800pt;}
.ya2{bottom:580.832800pt;}
.y1bd{bottom:581.899467pt;}
.y12a{bottom:582.566133pt;}
.y19f{bottom:583.232800pt;}
.y1d5{bottom:585.366133pt;}
.y32{bottom:585.899467pt;}
.y14f{bottom:586.566133pt;}
.y162{bottom:587.232800pt;}
.y80{bottom:587.499467pt;}
.y21a{bottom:591.024800pt;}
.yfd{bottom:591.899467pt;}
.ydc{bottom:592.299467pt;}
.y58{bottom:592.699467pt;}
.y186{bottom:595.232800pt;}
.yc7{bottom:596.566133pt;}
.ya1{bottom:598.032800pt;}
.y1bc{bottom:598.566133pt;}
.y129{bottom:599.232800pt;}
.y19e{bottom:599.899467pt;}
.y31{bottom:602.566133pt;}
.y1d4{bottom:602.966133pt;}
.y161{bottom:603.899467pt;}
.y7f{bottom:604.032800pt;}
.y219{bottom:607.691467pt;}
.yfc{bottom:608.566133pt;}
.ydb{bottom:608.966133pt;}
.y57{bottom:609.232800pt;}
.yc{bottom:611.024800pt;}
.y185{bottom:611.899467pt;}
.yc6{bottom:613.899467pt;}
.ya0{bottom:615.232800pt;}
.y19d{bottom:616.566133pt;}
.y209{bottom:617.899467pt;}
.y30{bottom:619.232800pt;}
.y7e{bottom:620.566133pt;}
.y128{bottom:623.899467pt;}
.y218{bottom:624.358133pt;}
.yfb{bottom:625.232800pt;}
.yda{bottom:625.632800pt;}
.y56{bottom:625.766133pt;}
.yb{bottom:631.024800pt;}
.yc5{bottom:631.232800pt;}
.y1bb{bottom:631.899467pt;}
.y9f{bottom:632.432800pt;}
.y19c{bottom:633.232800pt;}
.y208{bottom:634.566133pt;}
.y2f{bottom:635.899467pt;}
.y184{bottom:636.566133pt;}
.y1d3{bottom:636.832800pt;}
.y7d{bottom:637.099467pt;}
.y14e{bottom:637.232800pt;}
.yfa{bottom:641.899467pt;}
.y55{bottom:642.299467pt;}
.yc4{bottom:648.566133pt;}
.y217{bottom:649.024800pt;}
.yd9{bottom:649.058133pt;}
.y9e{bottom:649.632800pt;}
.y1ba{bottom:649.899467pt;}
.ya{bottom:651.024800pt;}
.y19b{bottom:651.232800pt;}
.y2e{bottom:652.566133pt;}
.y1d2{bottom:653.099467pt;}
.y7c{bottom:653.632800pt;}
.y127{bottom:653.899467pt;}
.y54{bottom:658.832800pt;}
.yd8{bottom:665.724800pt;}
.yc3{bottom:665.899467pt;}
.yf9{bottom:666.566133pt;}
.y9d{bottom:666.832800pt;}
.y19a{bottom:667.899467pt;}
.y115{bottom:669.232800pt;}
.y7b{bottom:670.166133pt;}
.y2d{bottom:670.566133pt;}
.y1d1{bottom:670.699467pt;}
.y53{bottom:675.366133pt;}
.y216{bottom:677.691467pt;}
.yd7{bottom:682.391467pt;}
.yc2{bottom:683.232800pt;}
.y9c{bottom:684.032800pt;}
.y199{bottom:684.566133pt;}
.y114{bottom:685.899467pt;}
.y7a{bottom:686.699467pt;}
.y1d0{bottom:686.966133pt;}
.y2c{bottom:687.232800pt;}
.y215{bottom:694.358133pt;}
.yd6{bottom:699.058133pt;}
.y52{bottom:699.899467pt;}
.yc1{bottom:700.566133pt;}
.y9b{bottom:701.232800pt;}
.y113{bottom:702.566133pt;}
.y79{bottom:703.232800pt;}
.y2b{bottom:703.899467pt;}
.yd5{bottom:715.724800pt;}
.yc0{bottom:717.899467pt;}
.y9a{bottom:718.432800pt;}
.y112{bottom:719.232800pt;}
.y78{bottom:719.766133pt;}
.y2a{bottom:720.566133pt;}
.y1cf{bottom:720.832800pt;}
.y5{bottom:734.910133pt;}
.ybf{bottom:735.232800pt;}
.y99{bottom:735.632800pt;}
.y170{bottom:735.899467pt;}
.y51{bottom:736.566133pt;}
.y1ce{bottom:737.099467pt;}
.y29{bottom:737.232800pt;}
.y77{bottom:737.632800pt;}
.y9{bottom:737.691467pt;}
.yd4{bottom:742.803467pt;}
.ybe{bottom:752.566133pt;}
.y98{bottom:752.832800pt;}
.y1cd{bottom:753.366133pt;}
.y28{bottom:753.899467pt;}
.y76{bottom:754.166133pt;}
.y8{bottom:754.358133pt;}
.yd3{bottom:758.803467pt;}
.y4{bottom:760.300800pt;}
.ybd{bottom:769.899467pt;}
.y97{bottom:770.032800pt;}
.y27{bottom:770.566133pt;}
.y75{bottom:770.699467pt;}
.y1cc{bottom:770.966133pt;}
.y7{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.yed{bottom:787.224800pt;}
.y26{bottom:787.232800pt;}
.y6{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y25{bottom:820.263467pt;}
.hb{height:25.734750pt;}
.h3{height:34.031250pt;}
.he{height:35.005583pt;}
.hd{height:37.083333pt;}
.h10{height:37.812500pt;}
.h5{height:39.703125pt;}
.hf{height:40.550781pt;}
.h9{height:41.593750pt;}
.hc{height:41.718750pt;}
.h4{height:42.286439pt;}
.h8{height:42.481771pt;}
.h11{height:46.354167pt;}
.h2{height:48.671875pt;}
.h6{height:50.205729pt;}
.ha{height:50.989583pt;}
.h7{height:52.357940pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x6{left:81.259200pt;}
.xf{left:85.039200pt;}
.xc{left:96.377867pt;}
.xb{left:119.055200pt;}
.xa{left:126.613867pt;}
.x7{left:142.953867pt;}
.x9{left:178.935200pt;}
.x8{left:197.192533pt;}
.x12{left:241.536533pt;}
.x11{left:242.519200pt;}
.x13{left:287.056533pt;}
.x5{left:394.097867pt;}
.xe{left:396.220533pt;}
.x10{left:400.000533pt;}
.xd{left:420.711200pt;}
.x2{left:445.355200pt;}
.x3{left:491.280533pt;}
.x4{left:506.351200pt;}
.x1{left:530.444533pt;}
}




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