
    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_837c609e84a869b0f2c0ae28.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_57294a8ef8a34b3e8467f754.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_6f50ec2db5c8813887d289a7.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_5f382415011bf8d8eb99d11d.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;}
.ls7{letter-spacing:0.006000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.ls4{letter-spacing:0.097594px;}
.ls3{letter-spacing:0.242411px;}
.ls6{letter-spacing:0.333709px;}
.ls5{letter-spacing:0.513157px;}
.ls8{letter-spacing:22.488000px;}
.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;}
}
.ws2{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws5{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.ws14{word-spacing:-1.125600px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:0.002400px;}
.wsd{word-spacing:0.181800px;}
.wsb{word-spacing:0.941400px;}
.ws12{word-spacing:2.020200px;}
.ws11{word-spacing:6.494400px;}
.ws10{word-spacing:6.711600px;}
.wse{word-spacing:7.843800px;}
.ws15{word-spacing:7.912200px;}
.wsc{word-spacing:8.369400px;}
.ws9{word-spacing:9.694200px;}
.wsa{word-spacing:11.622000px;}
.ws13{word-spacing:12.598800px;}
.wsf{word-spacing:14.362200px;}
.ws16{word-spacing:16.376400px;}
.ws8{word-spacing:20.204400px;}
._1c{margin-left:-7.945068px;}
._11{margin-left:-6.852000px;}
._d{margin-left:-5.791800px;}
._1{margin-left:-4.063500px;}
._2{margin-left:-2.457000px;}
._0{margin-left:-1.045800px;}
._4{width:1.018200px;}
._a{width:2.110200px;}
._7{width:3.748800px;}
._8{width:5.227200px;}
._10{width:6.271800px;}
._e{width:8.226600px;}
._f{width:9.385800px;}
._b{width:10.857000px;}
._12{width:11.890932px;}
._9{width:12.892800px;}
._20{width:14.568838px;}
._6{width:15.823200px;}
._3{width:16.944000px;}
._5{width:18.148200px;}
._1e{width:19.833000px;}
._19{width:21.312000px;}
._18{width:22.324200px;}
._c{width:23.772372px;}
._14{width:24.856500px;}
._13{width:26.137800px;}
._1a{width:27.511800px;}
._1d{width:28.629000px;}
._21{width:29.649600px;}
._1b{width:30.967200px;}
._1f{width:32.135400px;}
._24{width:34.227000px;}
._25{width:35.227200px;}
._15{width:37.959384px;}
._16{width:39.058800px;}
._17{width:40.273200px;}
._23{width:49.092132px;}
._22{width:50.891268px;}
.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;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:89.291400px;}
.yf9{bottom:123.419400px;}
.y21{bottom:125.754900px;}
.y71{bottom:133.386900px;}
.y8d{bottom:133.653900px;}
.yf8{bottom:139.619400px;}
.y49{bottom:141.749400px;}
.y20{bottom:141.954900px;}
.y11b{bottom:144.114900px;}
.ycd{bottom:151.653900px;}
.y70{bottom:152.136900px;}
.y13a{bottom:155.819400px;}
.y8c{bottom:156.149400px;}
.y47{bottom:157.949400px;}
.yf7{bottom:160.314900px;}
.y202{bottom:161.877900px;}
.y1f{bottom:162.650400px;}
.ycc{bottom:169.653900px;}
.y6f{bottom:170.886900px;}
.yf6{bottom:172.019400px;}
.y48{bottom:174.149400px;}
.y1e{bottom:178.850400px;}
.y201{bottom:180.627900px;}
.yab{bottom:187.386900px;}
.ycb{bottom:187.653900px;}
.yf5{bottom:188.219400px;}
.y6e{bottom:189.636900px;}
.yd9{bottom:190.014900px;}
.y194{bottom:192.149400px;}
.y175{bottom:192.714900px;}
.y1cb{bottom:199.086900px;}
.y200{bottom:199.377900px;}
.ydb{bottom:201.719400px;}
.y193{bottom:204.002400px;}
.yf4{bottom:204.419400px;}
.y46{bottom:205.377900px;}
.yca{bottom:205.653900px;}
.y8b{bottom:206.136900px;}
.y6d{bottom:208.386900px;}
.y11c{bottom:208.914900px;}
.y1ca{bottom:218.286900px;}
.y1ff{bottom:219.627900px;}
.y139{bottom:220.619400px;}
.y1ab{bottom:221.886900px;}
.yda{bottom:222.414900px;}
.y174{bottom:222.627900px;}
.y45{bottom:224.127900px;}
.y192{bottom:224.697900px;}
.y8a{bottom:224.886900px;}
.yf3{bottom:225.114900px;}
.yc9{bottom:228.149400px;}
.y6c{bottom:228.636900px;}
.y196{bottom:236.402400px;}
.y11a{bottom:238.377900px;}
.y1c9{bottom:238.986900px;}
.y1fe{bottom:239.877900px;}
.y1aa{bottom:240.636900px;}
.y138{bottom:241.314900px;}
.y173{bottom:241.377900px;}
.yaa{bottom:243.636900px;}
.y44{bottom:244.377900px;}
.y89{bottom:245.136900px;}
.y6b{bottom:248.886900px;}
.yf2{bottom:250.386900px;}
.y13d{bottom:253.019400px;}
.y195{bottom:257.097900px;}
.y119{bottom:257.127900px;}
.y1a9{bottom:259.386900px;}
.y1c8{bottom:259.686900px;}
.y172{bottom:260.127900px;}
.ya9{bottom:262.386900px;}
.y43{bottom:263.127900px;}
.y88{bottom:263.886900px;}
.yc8{bottom:266.652900px;}
.y6a{bottom:269.136900px;}
.y13c{bottom:269.219400px;}
.y118{bottom:275.877900px;}
.y1a8{bottom:278.136900px;}
.y1fd{bottom:278.877900px;}
.y1c7{bottom:278.886900px;}
.y171{bottom:280.377900px;}
.ya8{bottom:281.136900px;}
.y42{bottom:281.877900px;}
.y87{bottom:282.636900px;}
.yc7{bottom:285.402900px;}
.y1d{bottom:288.402900px;}
.y69{bottom:289.386900px;}
.y13b{bottom:289.914900px;}
.y1e5{bottom:293.877900px;}
.y191{bottom:294.336900px;}
.y117{bottom:294.627900px;}
.y1fc{bottom:297.627900px;}
.y1a7{bottom:298.386900px;}
.y170{bottom:299.127900px;}
.y1c6{bottom:299.586900px;}
.ya7{bottom:299.886900px;}
.y41{bottom:300.627900px;}
.y86{bottom:301.386900px;}
.yc6{bottom:304.152900px;}
.y1c{bottom:307.152900px;}
.y68{bottom:308.136900px;}
.y1e4{bottom:312.627900px;}
.y116{bottom:314.877900px;}
.y190{bottom:315.186900px;}
.y1a6{bottom:317.136900px;}
.y16f{bottom:317.877900px;}
.ya6{bottom:318.636900px;}
.y1c5{bottom:318.786900px;}
.y85{bottom:320.136900px;}
.y40{bottom:320.877900px;}
.yc5{bottom:322.902900px;}
.yf1{bottom:326.886900px;}
.y1b{bottom:327.402900px;}
.y67{bottom:328.386900px;}
.y1e3{bottom:331.377900px;}
.y115{bottom:333.627900px;}
.y18f{bottom:334.536900px;}
.y137{bottom:334.827900px;}
.y1a5{bottom:335.886900px;}
.y1fb{bottom:336.627900px;}
.ya5{bottom:337.386900px;}
.y1c4{bottom:337.986900px;}
.y84{bottom:338.886900px;}
.y3f{bottom:339.627900px;}
.yc4{bottom:341.652900px;}
.y155{bottom:344.886900px;}
.y16e{bottom:345.627900px;}
.yf0{bottom:345.636900px;}
.y1a{bottom:346.152900px;}
.y66{bottom:347.136900px;}
.y1e2{bottom:350.127900px;}
.y114{bottom:352.377900px;}
.y18e{bottom:353.886900px;}
.y136{bottom:354.177900px;}
.y1a4{bottom:354.636900px;}
.y1fa{bottom:355.377900px;}
.ya4{bottom:356.136900px;}
.y83{bottom:357.636900px;}
.y3e{bottom:358.377900px;}
.y1c3{bottom:358.686900px;}
.yc3{bottom:360.402900px;}
.y154{bottom:363.636900px;}
.y19{bottom:364.902900px;}
.yef{bottom:365.886900px;}
.y65{bottom:367.386900px;}
.y1e1{bottom:368.877900px;}
.y113{bottom:371.127900px;}
.y1a3{bottom:373.386900px;}
.y135{bottom:373.527900px;}
.y18d{bottom:374.736900px;}
.ya3{bottom:374.886900px;}
.y1f9{bottom:375.627900px;}
.y82{bottom:376.386900px;}
.y3d{bottom:377.127900px;}
.y1c2{bottom:377.886900px;}
.yc2{bottom:379.152900px;}
.y16d{bottom:379.377900px;}
.y153{bottom:382.386900px;}
.y18{bottom:383.652900px;}
.y1e0{bottom:387.627900px;}
.y64{bottom:387.636900px;}
.y112{bottom:389.877900px;}
.y1a2{bottom:392.136900px;}
.y134{bottom:392.877900px;}
.ya2{bottom:393.636900px;}
.y18c{bottom:394.086900px;}
.y1f8{bottom:394.377900px;}
.y81{bottom:395.136900px;}
.y3c{bottom:395.877900px;}
.yd8{bottom:396.636900px;}
.y1c1{bottom:398.586900px;}
.yc1{bottom:399.402900px;}
.y16c{bottom:399.627900px;}
.y17{bottom:402.402900px;}
.y152{bottom:402.636900px;}
.y1df{bottom:406.377900px;}
.y63{bottom:407.886900px;}
.y111{bottom:410.127900px;}
.y1a1{bottom:410.886900px;}
.y133{bottom:412.227900px;}
.ya1{bottom:412.386900px;}
.y18b{bottom:413.436900px;}
.y80{bottom:413.886900px;}
.y3b{bottom:414.627900px;}
.yd7{bottom:415.386900px;}
.y1c0{bottom:417.786900px;}
.yc0{bottom:418.152900px;}
.y16b{bottom:418.377900px;}
.y209{bottom:419.652900px;}
.y16{bottom:421.152900px;}
.y151{bottom:421.386900px;}
.y1de{bottom:425.127900px;}
.y62{bottom:426.636900px;}
.yee{bottom:427.386900px;}
.y110{bottom:428.877900px;}
.y1a0{bottom:431.136900px;}
.y132{bottom:431.577900px;}
.y7f{bottom:432.636900px;}
.y18a{bottom:432.786900px;}
.y1f7{bottom:433.377900px;}
.yd6{bottom:434.136900px;}
.y3a{bottom:434.877900px;}
.ybf{bottom:436.902900px;}
.y1bf{bottom:436.986900px;}
.y16a{bottom:437.127900px;}
.y15{bottom:439.902900px;}
.ya0{bottom:440.136900px;}
.y1dd{bottom:443.877900px;}
.yed{bottom:446.136900px;}
.y61{bottom:446.886900px;}
.y10f{bottom:447.627900px;}
.y19f{bottom:449.886900px;}
.y131{bottom:452.427900px;}
.y7e{bottom:452.886900px;}
.y39{bottom:453.627900px;}
.y189{bottom:453.636900px;}
.ybe{bottom:455.652900px;}
.y169{bottom:455.877900px;}
.y1be{bottom:457.686900px;}
.y14{bottom:458.652900px;}
.y150{bottom:460.386900px;}
.y1dc{bottom:462.627900px;}
.yec{bottom:464.886900px;}
.y10e{bottom:466.377900px;}
.y60{bottom:467.136900px;}
.y19e{bottom:468.636900px;}
.y7d{bottom:471.636900px;}
.y130{bottom:471.777900px;}
.y1f6{bottom:472.377900px;}
.y188{bottom:472.986900px;}
.y38{bottom:473.877900px;}
.ybd{bottom:474.402900px;}
.y168{bottom:476.127900px;}
.y1bd{bottom:476.886900px;}
.y13{bottom:477.402900px;}
.y9f{bottom:478.386900px;}
.y14f{bottom:479.136900px;}
.y1db{bottom:481.377900px;}
.yeb{bottom:483.636900px;}
.y10d{bottom:485.127900px;}
.y5f{bottom:485.886900px;}
.y19d{bottom:487.386900px;}
.y7c{bottom:490.386900px;}
.y12f{bottom:491.127900px;}
.y187{bottom:492.336900px;}
.y37{bottom:494.127900px;}
.ybc{bottom:494.652900px;}
.y167{bottom:494.877900px;}
.y1bc{bottom:496.086900px;}
.y12{bottom:496.152900px;}
.y14e{bottom:497.886900px;}
.y9e{bottom:498.636900px;}
.y1da{bottom:500.127900px;}
.yea{bottom:502.386900px;}
.y5e{bottom:504.636900px;}
.y10c{bottom:505.377900px;}
.y19c{bottom:506.136900px;}
.y7b{bottom:509.136900px;}
.y12e{bottom:510.477900px;}
.y1f5{bottom:511.377900px;}
.y186{bottom:513.186900px;}
.ybb{bottom:513.402900px;}
.y166{bottom:513.627900px;}
.y36{bottom:514.377900px;}
.y11{bottom:514.902900px;}
.y14d{bottom:516.636900px;}
.y1bb{bottom:516.786900px;}
.y9d{bottom:517.386900px;}
.y1d9{bottom:518.877900px;}
.ye9{bottom:521.136900px;}
.y10b{bottom:524.127900px;}
.y5d{bottom:524.886900px;}
.y7a{bottom:527.886900px;}
.y12d{bottom:529.827900px;}
.y1f4{bottom:531.627900px;}
.yba{bottom:532.152900px;}
.y165{bottom:532.377900px;}
.y185{bottom:532.536900px;}
.y10{bottom:533.652900px;}
.y35{bottom:534.627900px;}
.y1ba{bottom:535.986900px;}
.y14c{bottom:536.886900px;}
.y1d8{bottom:537.627900px;}
.y9c{bottom:537.636900px;}
.ye8{bottom:541.386900px;}
.y10a{bottom:542.877900px;}
.y5c{bottom:543.636900px;}
.y79{bottom:546.636900px;}
.y12c{bottom:550.677900px;}
.yb9{bottom:550.902900px;}
.y164{bottom:551.127900px;}
.y1f3{bottom:551.877900px;}
.y184{bottom:551.886900px;}
.yf{bottom:552.402900px;}
.y34{bottom:554.877900px;}
.y1b9{bottom:555.186900px;}
.y14b{bottom:555.636900px;}
.y1d7{bottom:556.377900px;}
.y9b{bottom:556.386900px;}
.ye7{bottom:560.136900px;}
.y109{bottom:561.627900px;}
.y5b{bottom:563.886900px;}
.y78{bottom:565.386900px;}
.y12b{bottom:570.027900px;}
.y1f2{bottom:570.627900px;}
.ye{bottom:571.152900px;}
.y163{bottom:571.377900px;}
.y183{bottom:572.736900px;}
.y14a{bottom:574.386900px;}
.y33{bottom:575.127900px;}
.y9a{bottom:576.636900px;}
.ye6{bottom:578.886900px;}
.y108{bottom:581.877900px;}
.y5a{bottom:582.636900px;}
.y77{bottom:584.136900px;}
.yd{bottom:589.902900px;}
.y162{bottom:590.127900px;}
.y1f1{bottom:590.877900px;}
.y182{bottom:592.086900px;}
.y149{bottom:593.136900px;}
.y1b8{bottom:593.586900px;}
.y32{bottom:593.877900px;}
.y99{bottom:596.886900px;}
.ye5{bottom:597.636900px;}
.y12a{bottom:598.377900px;}
.y107{bottom:600.627900px;}
.y59{bottom:601.386900px;}
.y76{bottom:602.886900px;}
.yc{bottom:608.652900px;}
.y161{bottom:608.877900px;}
.y1f0{bottom:609.627900px;}
.y181{bottom:611.436900px;}
.y31{bottom:612.627900px;}
.y148{bottom:613.386900px;}
.y1d6{bottom:614.127900px;}
.y1b7{bottom:614.286900px;}
.ye4{bottom:616.386900px;}
.y98{bottom:617.136900px;}
.y106{bottom:619.377900px;}
.y58{bottom:620.136900px;}
.y75{bottom:621.636900px;}
.yb{bottom:627.402900px;}
.y129{bottom:627.627900px;}
.y1ef{bottom:628.377900px;}
.yb8{bottom:628.902900px;}
.y30{bottom:631.377900px;}
.y147{bottom:632.136900px;}
.y180{bottom:632.286900px;}
.y1d5{bottom:632.877900px;}
.y1b6{bottom:633.486900px;}
.ye3{bottom:635.136900px;}
.y97{bottom:635.886900px;}
.y105{bottom:638.127900px;}
.y57{bottom:638.886900px;}
.y74{bottom:640.386900px;}
.yd5{bottom:641.886900px;}
.ya{bottom:646.152900px;}
.y160{bottom:646.377900px;}
.y128{bottom:647.127900px;}
.yb7{bottom:647.652900px;}
.y2f{bottom:650.127900px;}
.y146{bottom:650.886900px;}
.y17f{bottom:651.636900px;}
.y1b5{bottom:652.686900px;}
.y1d4{bottom:653.127900px;}
.y96{bottom:654.636900px;}
.ye2{bottom:655.386900px;}
.y104{bottom:656.877900px;}
.y19b{bottom:657.636900px;}
.y56{bottom:659.136900px;}
.yd4{bottom:660.636900px;}
.y208{bottom:664.902900px;}
.y15f{bottom:665.127900px;}
.y1ee{bottom:665.877900px;}
.yb6{bottom:666.402900px;}
.y127{bottom:666.627900px;}
.y2e{bottom:668.877900px;}
.y145{bottom:669.636900px;}
.y17e{bottom:670.986900px;}
.y1d3{bottom:671.877900px;}
.y1b4{bottom:671.886900px;}
.y95{bottom:673.386900px;}
.ye1{bottom:674.136900px;}
.y19a{bottom:676.386900px;}
.y103{bottom:677.127900px;}
.y55{bottom:677.886900px;}
.yd3{bottom:679.386900px;}
.y207{bottom:683.652900px;}
.y15e{bottom:683.877900px;}
.y1ed{bottom:684.627900px;}
.y126{bottom:686.127900px;}
.yb5{bottom:686.652900px;}
.y2d{bottom:687.627900px;}
.y144{bottom:688.386900px;}
.y1d2{bottom:690.627900px;}
.y1b3{bottom:691.086900px;}
.y17d{bottom:691.836900px;}
.y94{bottom:692.136900px;}
.ye0{bottom:692.886900px;}
.y199{bottom:695.136900px;}
.y102{bottom:695.877900px;}
.y54{bottom:696.636900px;}
.yd2{bottom:698.136900px;}
.y206{bottom:702.402900px;}
.y15d{bottom:702.627900px;}
.y1ec{bottom:704.877900px;}
.yb4{bottom:705.402900px;}
.y2c{bottom:706.377900px;}
.y125{bottom:707.127900px;}
.y143{bottom:707.136900px;}
.y1b2{bottom:710.286900px;}
.y1d1{bottom:710.877900px;}
.y17c{bottom:711.186900px;}
.ydf{bottom:711.636900px;}
.y93{bottom:712.386900px;}
.y198{bottom:713.886900px;}
.y101{bottom:714.627900px;}
.y53{bottom:715.386900px;}
.yd1{bottom:716.886900px;}
.y9{bottom:717.402900px;}
.y205{bottom:721.152900px;}
.y15c{bottom:721.377900px;}
.y1eb{bottom:723.627900px;}
.yb3{bottom:724.152900px;}
.y2b{bottom:725.127900px;}
.y124{bottom:726.627900px;}
.y142{bottom:727.386900px;}
.y1b1{bottom:729.486900px;}
.y1d0{bottom:729.627900px;}
.yde{bottom:730.386900px;}
.y17b{bottom:730.536900px;}
.y92{bottom:731.136900px;}
.y197{bottom:732.636900px;}
.y100{bottom:733.377900px;}
.y52{bottom:734.136900px;}
.yd0{bottom:735.636900px;}
.y15b{bottom:741.627900px;}
.y1ea{bottom:742.377900px;}
.y2a{bottom:743.877900px;}
.yb2{bottom:744.402900px;}
.y141{bottom:746.136900px;}
.y123{bottom:747.627900px;}
.y1b0{bottom:748.686900px;}
.y204{bottom:748.902900px;}
.ydd{bottom:749.136900px;}
.y1cf{bottom:749.877900px;}
.y17a{bottom:749.886900px;}
.y91{bottom:751.386900px;}
.y51{bottom:752.886900px;}
.yff{bottom:753.627900px;}
.ycf{bottom:754.386900px;}
.y15a{bottom:760.377900px;}
.y1e9{bottom:761.127900px;}
.y29{bottom:762.627900px;}
.yb1{bottom:763.152900px;}
.y140{bottom:766.386900px;}
.y122{bottom:767.127900px;}
.y1af{bottom:767.886900px;}
.y1ce{bottom:768.627900px;}
.y179{bottom:769.236900px;}
.y90{bottom:770.136900px;}
.y50{bottom:771.636900px;}
.yfe{bottom:772.377900px;}
.yce{bottom:773.136900px;}
.ydc{bottom:776.886900px;}
.y159{bottom:779.127900px;}
.y203{bottom:781.152900px;}
.y1e8{bottom:781.377900px;}
.yb0{bottom:781.902900px;}
.y28{bottom:782.877900px;}
.y121{bottom:786.627900px;}
.y13f{bottom:786.636900px;}
.y178{bottom:788.586900px;}
.y1cd{bottom:788.877900px;}
.y8f{bottom:788.886900px;}
.y73{bottom:790.386900px;}
.yfd{bottom:791.127900px;}
.y4f{bottom:791.886900px;}
.y158{bottom:797.877900px;}
.y1e7{bottom:800.127900px;}
.y27{bottom:801.627900px;}
.yaf{bottom:802.152900px;}
.y120{bottom:807.627900px;}
.y1ae{bottom:807.786900px;}
.y177{bottom:807.936900px;}
.y72{bottom:809.136900px;}
.yfc{bottom:809.877900px;}
.y4e{bottom:810.636900px;}
.y13e{bottom:814.386900px;}
.y157{bottom:816.627900px;}
.y1e6{bottom:818.877900px;}
.y26{bottom:820.377900px;}
.yae{bottom:820.902900px;}
.y1ad{bottom:826.986900px;}
.y11f{bottom:827.127900px;}
.y176{bottom:827.286900px;}
.y1cc{bottom:827.877900px;}
.y8e{bottom:827.886900px;}
.y4d{bottom:829.386900px;}
.y8{bottom:829.902900px;}
.yfb{bottom:837.627900px;}
.y25{bottom:839.127900px;}
.yad{bottom:839.652900px;}
.y4{bottom:843.333900px;}
.y156{bottom:844.377900px;}
.y1ac{bottom:846.186900px;}
.y11e{bottom:846.627900px;}
.y4c{bottom:848.136900px;}
.y7{bottom:848.652900px;}
.y24{bottom:857.877900px;}
.yac{bottom:858.402900px;}
.y11d{bottom:866.127900px;}
.yfa{bottom:866.877900px;}
.y4b{bottom:866.886900px;}
.y6{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.y23{bottom:885.627900px;}
.y4a{bottom:885.636900px;}
.y5{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y22{bottom:922.796400px;}
.h9{height:28.951594px;}
.h3{height:38.285156px;}
.hb{height:41.718750px;}
.h5{height:44.666016px;}
.hd{height:45.619629px;}
.h8{height:46.792969px;}
.ha{height:46.933594px;}
.h4{height:47.572244px;}
.h7{height:47.791992px;}
.h2{height:54.755859px;}
.hc{height:57.363281px;}
.h6{height:58.902683px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x5{left:91.416600px;}
.x8{left:108.425100px;}
.x7{left:133.937100px;}
.x6{left:213.338100px;}
.xa{left:223.748100px;}
.xb{left:322.938600px;}
.x4{left:443.360100px;}
.x2{left:493.892100px;}
.x9{left:509.511600px;}
.x3{left:529.448100px;}
.x1{left:605.471100px;}
@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;}
.ls7{letter-spacing:0.005333pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ls4{letter-spacing:0.086750pt;}
.ls3{letter-spacing:0.215477pt;}
.ls6{letter-spacing:0.296630pt;}
.ls5{letter-spacing:0.456139pt;}
.ls8{letter-spacing:19.989333pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws5{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.ws14{word-spacing:-1.000533pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:0.002133pt;}
.wsd{word-spacing:0.161600pt;}
.wsb{word-spacing:0.836800pt;}
.ws12{word-spacing:1.795733pt;}
.ws11{word-spacing:5.772800pt;}
.ws10{word-spacing:5.965867pt;}
.wse{word-spacing:6.972267pt;}
.ws15{word-spacing:7.033067pt;}
.wsc{word-spacing:7.439467pt;}
.ws9{word-spacing:8.617067pt;}
.wsa{word-spacing:10.330667pt;}
.ws13{word-spacing:11.198933pt;}
.wsf{word-spacing:12.766400pt;}
.ws16{word-spacing:14.556800pt;}
.ws8{word-spacing:17.959467pt;}
._1c{margin-left:-7.062283pt;}
._11{margin-left:-6.090667pt;}
._d{margin-left:-5.148267pt;}
._1{margin-left:-3.612000pt;}
._2{margin-left:-2.184000pt;}
._0{margin-left:-0.929600pt;}
._4{width:0.905067pt;}
._a{width:1.875733pt;}
._7{width:3.332267pt;}
._8{width:4.646400pt;}
._10{width:5.574933pt;}
._e{width:7.312533pt;}
._f{width:8.342933pt;}
._b{width:9.650667pt;}
._12{width:10.569717pt;}
._9{width:11.460267pt;}
._20{width:12.950078pt;}
._6{width:14.065067pt;}
._3{width:15.061333pt;}
._5{width:16.131733pt;}
._1e{width:17.629333pt;}
._19{width:18.944000pt;}
._18{width:19.843733pt;}
._c{width:21.130997pt;}
._14{width:22.094667pt;}
._13{width:23.233600pt;}
._1a{width:24.454933pt;}
._1d{width:25.448000pt;}
._21{width:26.355200pt;}
._1b{width:27.526400pt;}
._1f{width:28.564800pt;}
._24{width:30.424000pt;}
._25{width:31.313067pt;}
._15{width:33.741675pt;}
._16{width:34.718933pt;}
._17{width:35.798400pt;}
._23{width:43.637451pt;}
._22{width:45.236683pt;}
.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;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:79.370133pt;}
.yf9{bottom:109.706133pt;}
.y21{bottom:111.782133pt;}
.y71{bottom:118.566133pt;}
.y8d{bottom:118.803467pt;}
.yf8{bottom:124.106133pt;}
.y49{bottom:125.999467pt;}
.y20{bottom:126.182133pt;}
.y11b{bottom:128.102133pt;}
.ycd{bottom:134.803467pt;}
.y70{bottom:135.232800pt;}
.y13a{bottom:138.506133pt;}
.y8c{bottom:138.799467pt;}
.y47{bottom:140.399467pt;}
.yf7{bottom:142.502133pt;}
.y202{bottom:143.891467pt;}
.y1f{bottom:144.578133pt;}
.ycc{bottom:150.803467pt;}
.y6f{bottom:151.899467pt;}
.yf6{bottom:152.906133pt;}
.y48{bottom:154.799467pt;}
.y1e{bottom:158.978133pt;}
.y201{bottom:160.558133pt;}
.yab{bottom:166.566133pt;}
.ycb{bottom:166.803467pt;}
.yf5{bottom:167.306133pt;}
.y6e{bottom:168.566133pt;}
.yd9{bottom:168.902133pt;}
.y194{bottom:170.799467pt;}
.y175{bottom:171.302133pt;}
.y1cb{bottom:176.966133pt;}
.y200{bottom:177.224800pt;}
.ydb{bottom:179.306133pt;}
.y193{bottom:181.335467pt;}
.yf4{bottom:181.706133pt;}
.y46{bottom:182.558133pt;}
.yca{bottom:182.803467pt;}
.y8b{bottom:183.232800pt;}
.y6d{bottom:185.232800pt;}
.y11c{bottom:185.702133pt;}
.y1ca{bottom:194.032800pt;}
.y1ff{bottom:195.224800pt;}
.y139{bottom:196.106133pt;}
.y1ab{bottom:197.232800pt;}
.yda{bottom:197.702133pt;}
.y174{bottom:197.891467pt;}
.y45{bottom:199.224800pt;}
.y192{bottom:199.731467pt;}
.y8a{bottom:199.899467pt;}
.yf3{bottom:200.102133pt;}
.yc9{bottom:202.799467pt;}
.y6c{bottom:203.232800pt;}
.y196{bottom:210.135467pt;}
.y11a{bottom:211.891467pt;}
.y1c9{bottom:212.432800pt;}
.y1fe{bottom:213.224800pt;}
.y1aa{bottom:213.899467pt;}
.y138{bottom:214.502133pt;}
.y173{bottom:214.558133pt;}
.yaa{bottom:216.566133pt;}
.y44{bottom:217.224800pt;}
.y89{bottom:217.899467pt;}
.y6b{bottom:221.232800pt;}
.yf2{bottom:222.566133pt;}
.y13d{bottom:224.906133pt;}
.y195{bottom:228.531467pt;}
.y119{bottom:228.558133pt;}
.y1a9{bottom:230.566133pt;}
.y1c8{bottom:230.832800pt;}
.y172{bottom:231.224800pt;}
.ya9{bottom:233.232800pt;}
.y43{bottom:233.891467pt;}
.y88{bottom:234.566133pt;}
.yc8{bottom:237.024800pt;}
.y6a{bottom:239.232800pt;}
.y13c{bottom:239.306133pt;}
.y118{bottom:245.224800pt;}
.y1a8{bottom:247.232800pt;}
.y1fd{bottom:247.891467pt;}
.y1c7{bottom:247.899467pt;}
.y171{bottom:249.224800pt;}
.ya8{bottom:249.899467pt;}
.y42{bottom:250.558133pt;}
.y87{bottom:251.232800pt;}
.yc7{bottom:253.691467pt;}
.y1d{bottom:256.358133pt;}
.y69{bottom:257.232800pt;}
.y13b{bottom:257.702133pt;}
.y1e5{bottom:261.224800pt;}
.y191{bottom:261.632800pt;}
.y117{bottom:261.891467pt;}
.y1fc{bottom:264.558133pt;}
.y1a7{bottom:265.232800pt;}
.y170{bottom:265.891467pt;}
.y1c6{bottom:266.299467pt;}
.ya7{bottom:266.566133pt;}
.y41{bottom:267.224800pt;}
.y86{bottom:267.899467pt;}
.yc6{bottom:270.358133pt;}
.y1c{bottom:273.024800pt;}
.y68{bottom:273.899467pt;}
.y1e4{bottom:277.891467pt;}
.y116{bottom:279.891467pt;}
.y190{bottom:280.166133pt;}
.y1a6{bottom:281.899467pt;}
.y16f{bottom:282.558133pt;}
.ya6{bottom:283.232800pt;}
.y1c5{bottom:283.366133pt;}
.y85{bottom:284.566133pt;}
.y40{bottom:285.224800pt;}
.yc5{bottom:287.024800pt;}
.yf1{bottom:290.566133pt;}
.y1b{bottom:291.024800pt;}
.y67{bottom:291.899467pt;}
.y1e3{bottom:294.558133pt;}
.y115{bottom:296.558133pt;}
.y18f{bottom:297.366133pt;}
.y137{bottom:297.624800pt;}
.y1a5{bottom:298.566133pt;}
.y1fb{bottom:299.224800pt;}
.ya5{bottom:299.899467pt;}
.y1c4{bottom:300.432800pt;}
.y84{bottom:301.232800pt;}
.y3f{bottom:301.891467pt;}
.yc4{bottom:303.691467pt;}
.y155{bottom:306.566133pt;}
.y16e{bottom:307.224800pt;}
.yf0{bottom:307.232800pt;}
.y1a{bottom:307.691467pt;}
.y66{bottom:308.566133pt;}
.y1e2{bottom:311.224800pt;}
.y114{bottom:313.224800pt;}
.y18e{bottom:314.566133pt;}
.y136{bottom:314.824800pt;}
.y1a4{bottom:315.232800pt;}
.y1fa{bottom:315.891467pt;}
.ya4{bottom:316.566133pt;}
.y83{bottom:317.899467pt;}
.y3e{bottom:318.558133pt;}
.y1c3{bottom:318.832800pt;}
.yc3{bottom:320.358133pt;}
.y154{bottom:323.232800pt;}
.y19{bottom:324.358133pt;}
.yef{bottom:325.232800pt;}
.y65{bottom:326.566133pt;}
.y1e1{bottom:327.891467pt;}
.y113{bottom:329.891467pt;}
.y1a3{bottom:331.899467pt;}
.y135{bottom:332.024800pt;}
.y18d{bottom:333.099467pt;}
.ya3{bottom:333.232800pt;}
.y1f9{bottom:333.891467pt;}
.y82{bottom:334.566133pt;}
.y3d{bottom:335.224800pt;}
.y1c2{bottom:335.899467pt;}
.yc2{bottom:337.024800pt;}
.y16d{bottom:337.224800pt;}
.y153{bottom:339.899467pt;}
.y18{bottom:341.024800pt;}
.y1e0{bottom:344.558133pt;}
.y64{bottom:344.566133pt;}
.y112{bottom:346.558133pt;}
.y1a2{bottom:348.566133pt;}
.y134{bottom:349.224800pt;}
.ya2{bottom:349.899467pt;}
.y18c{bottom:350.299467pt;}
.y1f8{bottom:350.558133pt;}
.y81{bottom:351.232800pt;}
.y3c{bottom:351.891467pt;}
.yd8{bottom:352.566133pt;}
.y1c1{bottom:354.299467pt;}
.yc1{bottom:355.024800pt;}
.y16c{bottom:355.224800pt;}
.y17{bottom:357.691467pt;}
.y152{bottom:357.899467pt;}
.y1df{bottom:361.224800pt;}
.y63{bottom:362.566133pt;}
.y111{bottom:364.558133pt;}
.y1a1{bottom:365.232800pt;}
.y133{bottom:366.424800pt;}
.ya1{bottom:366.566133pt;}
.y18b{bottom:367.499467pt;}
.y80{bottom:367.899467pt;}
.y3b{bottom:368.558133pt;}
.yd7{bottom:369.232800pt;}
.y1c0{bottom:371.366133pt;}
.yc0{bottom:371.691467pt;}
.y16b{bottom:371.891467pt;}
.y209{bottom:373.024800pt;}
.y16{bottom:374.358133pt;}
.y151{bottom:374.566133pt;}
.y1de{bottom:377.891467pt;}
.y62{bottom:379.232800pt;}
.yee{bottom:379.899467pt;}
.y110{bottom:381.224800pt;}
.y1a0{bottom:383.232800pt;}
.y132{bottom:383.624800pt;}
.y7f{bottom:384.566133pt;}
.y18a{bottom:384.699467pt;}
.y1f7{bottom:385.224800pt;}
.yd6{bottom:385.899467pt;}
.y3a{bottom:386.558133pt;}
.ybf{bottom:388.358133pt;}
.y1bf{bottom:388.432800pt;}
.y16a{bottom:388.558133pt;}
.y15{bottom:391.024800pt;}
.ya0{bottom:391.232800pt;}
.y1dd{bottom:394.558133pt;}
.yed{bottom:396.566133pt;}
.y61{bottom:397.232800pt;}
.y10f{bottom:397.891467pt;}
.y19f{bottom:399.899467pt;}
.y131{bottom:402.158133pt;}
.y7e{bottom:402.566133pt;}
.y39{bottom:403.224800pt;}
.y189{bottom:403.232800pt;}
.ybe{bottom:405.024800pt;}
.y169{bottom:405.224800pt;}
.y1be{bottom:406.832800pt;}
.y14{bottom:407.691467pt;}
.y150{bottom:409.232800pt;}
.y1dc{bottom:411.224800pt;}
.yec{bottom:413.232800pt;}
.y10e{bottom:414.558133pt;}
.y60{bottom:415.232800pt;}
.y19e{bottom:416.566133pt;}
.y7d{bottom:419.232800pt;}
.y130{bottom:419.358133pt;}
.y1f6{bottom:419.891467pt;}
.y188{bottom:420.432800pt;}
.y38{bottom:421.224800pt;}
.ybd{bottom:421.691467pt;}
.y168{bottom:423.224800pt;}
.y1bd{bottom:423.899467pt;}
.y13{bottom:424.358133pt;}
.y9f{bottom:425.232800pt;}
.y14f{bottom:425.899467pt;}
.y1db{bottom:427.891467pt;}
.yeb{bottom:429.899467pt;}
.y10d{bottom:431.224800pt;}
.y5f{bottom:431.899467pt;}
.y19d{bottom:433.232800pt;}
.y7c{bottom:435.899467pt;}
.y12f{bottom:436.558133pt;}
.y187{bottom:437.632800pt;}
.y37{bottom:439.224800pt;}
.ybc{bottom:439.691467pt;}
.y167{bottom:439.891467pt;}
.y1bc{bottom:440.966133pt;}
.y12{bottom:441.024800pt;}
.y14e{bottom:442.566133pt;}
.y9e{bottom:443.232800pt;}
.y1da{bottom:444.558133pt;}
.yea{bottom:446.566133pt;}
.y5e{bottom:448.566133pt;}
.y10c{bottom:449.224800pt;}
.y19c{bottom:449.899467pt;}
.y7b{bottom:452.566133pt;}
.y12e{bottom:453.758133pt;}
.y1f5{bottom:454.558133pt;}
.y186{bottom:456.166133pt;}
.ybb{bottom:456.358133pt;}
.y166{bottom:456.558133pt;}
.y36{bottom:457.224800pt;}
.y11{bottom:457.691467pt;}
.y14d{bottom:459.232800pt;}
.y1bb{bottom:459.366133pt;}
.y9d{bottom:459.899467pt;}
.y1d9{bottom:461.224800pt;}
.ye9{bottom:463.232800pt;}
.y10b{bottom:465.891467pt;}
.y5d{bottom:466.566133pt;}
.y7a{bottom:469.232800pt;}
.y12d{bottom:470.958133pt;}
.y1f4{bottom:472.558133pt;}
.yba{bottom:473.024800pt;}
.y165{bottom:473.224800pt;}
.y185{bottom:473.366133pt;}
.y10{bottom:474.358133pt;}
.y35{bottom:475.224800pt;}
.y1ba{bottom:476.432800pt;}
.y14c{bottom:477.232800pt;}
.y1d8{bottom:477.891467pt;}
.y9c{bottom:477.899467pt;}
.ye8{bottom:481.232800pt;}
.y10a{bottom:482.558133pt;}
.y5c{bottom:483.232800pt;}
.y79{bottom:485.899467pt;}
.y12c{bottom:489.491467pt;}
.yb9{bottom:489.691467pt;}
.y164{bottom:489.891467pt;}
.y1f3{bottom:490.558133pt;}
.y184{bottom:490.566133pt;}
.yf{bottom:491.024800pt;}
.y34{bottom:493.224800pt;}
.y1b9{bottom:493.499467pt;}
.y14b{bottom:493.899467pt;}
.y1d7{bottom:494.558133pt;}
.y9b{bottom:494.566133pt;}
.ye7{bottom:497.899467pt;}
.y109{bottom:499.224800pt;}
.y5b{bottom:501.232800pt;}
.y78{bottom:502.566133pt;}
.y12b{bottom:506.691467pt;}
.y1f2{bottom:507.224800pt;}
.ye{bottom:507.691467pt;}
.y163{bottom:507.891467pt;}
.y183{bottom:509.099467pt;}
.y14a{bottom:510.566133pt;}
.y33{bottom:511.224800pt;}
.y9a{bottom:512.566133pt;}
.ye6{bottom:514.566133pt;}
.y108{bottom:517.224800pt;}
.y5a{bottom:517.899467pt;}
.y77{bottom:519.232800pt;}
.yd{bottom:524.358133pt;}
.y162{bottom:524.558133pt;}
.y1f1{bottom:525.224800pt;}
.y182{bottom:526.299467pt;}
.y149{bottom:527.232800pt;}
.y1b8{bottom:527.632800pt;}
.y32{bottom:527.891467pt;}
.y99{bottom:530.566133pt;}
.ye5{bottom:531.232800pt;}
.y12a{bottom:531.891467pt;}
.y107{bottom:533.891467pt;}
.y59{bottom:534.566133pt;}
.y76{bottom:535.899467pt;}
.yc{bottom:541.024800pt;}
.y161{bottom:541.224800pt;}
.y1f0{bottom:541.891467pt;}
.y181{bottom:543.499467pt;}
.y31{bottom:544.558133pt;}
.y148{bottom:545.232800pt;}
.y1d6{bottom:545.891467pt;}
.y1b7{bottom:546.032800pt;}
.ye4{bottom:547.899467pt;}
.y98{bottom:548.566133pt;}
.y106{bottom:550.558133pt;}
.y58{bottom:551.232800pt;}
.y75{bottom:552.566133pt;}
.yb{bottom:557.691467pt;}
.y129{bottom:557.891467pt;}
.y1ef{bottom:558.558133pt;}
.yb8{bottom:559.024800pt;}
.y30{bottom:561.224800pt;}
.y147{bottom:561.899467pt;}
.y180{bottom:562.032800pt;}
.y1d5{bottom:562.558133pt;}
.y1b6{bottom:563.099467pt;}
.ye3{bottom:564.566133pt;}
.y97{bottom:565.232800pt;}
.y105{bottom:567.224800pt;}
.y57{bottom:567.899467pt;}
.y74{bottom:569.232800pt;}
.yd5{bottom:570.566133pt;}
.ya{bottom:574.358133pt;}
.y160{bottom:574.558133pt;}
.y128{bottom:575.224800pt;}
.yb7{bottom:575.691467pt;}
.y2f{bottom:577.891467pt;}
.y146{bottom:578.566133pt;}
.y17f{bottom:579.232800pt;}
.y1b5{bottom:580.166133pt;}
.y1d4{bottom:580.558133pt;}
.y96{bottom:581.899467pt;}
.ye2{bottom:582.566133pt;}
.y104{bottom:583.891467pt;}
.y19b{bottom:584.566133pt;}
.y56{bottom:585.899467pt;}
.yd4{bottom:587.232800pt;}
.y208{bottom:591.024800pt;}
.y15f{bottom:591.224800pt;}
.y1ee{bottom:591.891467pt;}
.yb6{bottom:592.358133pt;}
.y127{bottom:592.558133pt;}
.y2e{bottom:594.558133pt;}
.y145{bottom:595.232800pt;}
.y17e{bottom:596.432800pt;}
.y1d3{bottom:597.224800pt;}
.y1b4{bottom:597.232800pt;}
.y95{bottom:598.566133pt;}
.ye1{bottom:599.232800pt;}
.y19a{bottom:601.232800pt;}
.y103{bottom:601.891467pt;}
.y55{bottom:602.566133pt;}
.yd3{bottom:603.899467pt;}
.y207{bottom:607.691467pt;}
.y15e{bottom:607.891467pt;}
.y1ed{bottom:608.558133pt;}
.y126{bottom:609.891467pt;}
.yb5{bottom:610.358133pt;}
.y2d{bottom:611.224800pt;}
.y144{bottom:611.899467pt;}
.y1d2{bottom:613.891467pt;}
.y1b3{bottom:614.299467pt;}
.y17d{bottom:614.966133pt;}
.y94{bottom:615.232800pt;}
.ye0{bottom:615.899467pt;}
.y199{bottom:617.899467pt;}
.y102{bottom:618.558133pt;}
.y54{bottom:619.232800pt;}
.yd2{bottom:620.566133pt;}
.y206{bottom:624.358133pt;}
.y15d{bottom:624.558133pt;}
.y1ec{bottom:626.558133pt;}
.yb4{bottom:627.024800pt;}
.y2c{bottom:627.891467pt;}
.y125{bottom:628.558133pt;}
.y143{bottom:628.566133pt;}
.y1b2{bottom:631.366133pt;}
.y1d1{bottom:631.891467pt;}
.y17c{bottom:632.166133pt;}
.ydf{bottom:632.566133pt;}
.y93{bottom:633.232800pt;}
.y198{bottom:634.566133pt;}
.y101{bottom:635.224800pt;}
.y53{bottom:635.899467pt;}
.yd1{bottom:637.232800pt;}
.y9{bottom:637.691467pt;}
.y205{bottom:641.024800pt;}
.y15c{bottom:641.224800pt;}
.y1eb{bottom:643.224800pt;}
.yb3{bottom:643.691467pt;}
.y2b{bottom:644.558133pt;}
.y124{bottom:645.891467pt;}
.y142{bottom:646.566133pt;}
.y1b1{bottom:648.432800pt;}
.y1d0{bottom:648.558133pt;}
.yde{bottom:649.232800pt;}
.y17b{bottom:649.366133pt;}
.y92{bottom:649.899467pt;}
.y197{bottom:651.232800pt;}
.y100{bottom:651.891467pt;}
.y52{bottom:652.566133pt;}
.yd0{bottom:653.899467pt;}
.y15b{bottom:659.224800pt;}
.y1ea{bottom:659.891467pt;}
.y2a{bottom:661.224800pt;}
.yb2{bottom:661.691467pt;}
.y141{bottom:663.232800pt;}
.y123{bottom:664.558133pt;}
.y1b0{bottom:665.499467pt;}
.y204{bottom:665.691467pt;}
.ydd{bottom:665.899467pt;}
.y1cf{bottom:666.558133pt;}
.y17a{bottom:666.566133pt;}
.y91{bottom:667.899467pt;}
.y51{bottom:669.232800pt;}
.yff{bottom:669.891467pt;}
.ycf{bottom:670.566133pt;}
.y15a{bottom:675.891467pt;}
.y1e9{bottom:676.558133pt;}
.y29{bottom:677.891467pt;}
.yb1{bottom:678.358133pt;}
.y140{bottom:681.232800pt;}
.y122{bottom:681.891467pt;}
.y1af{bottom:682.566133pt;}
.y1ce{bottom:683.224800pt;}
.y179{bottom:683.766133pt;}
.y90{bottom:684.566133pt;}
.y50{bottom:685.899467pt;}
.yfe{bottom:686.558133pt;}
.yce{bottom:687.232800pt;}
.ydc{bottom:690.566133pt;}
.y159{bottom:692.558133pt;}
.y203{bottom:694.358133pt;}
.y1e8{bottom:694.558133pt;}
.yb0{bottom:695.024800pt;}
.y28{bottom:695.891467pt;}
.y121{bottom:699.224800pt;}
.y13f{bottom:699.232800pt;}
.y178{bottom:700.966133pt;}
.y1cd{bottom:701.224800pt;}
.y8f{bottom:701.232800pt;}
.y73{bottom:702.566133pt;}
.yfd{bottom:703.224800pt;}
.y4f{bottom:703.899467pt;}
.y158{bottom:709.224800pt;}
.y1e7{bottom:711.224800pt;}
.y27{bottom:712.558133pt;}
.yaf{bottom:713.024800pt;}
.y120{bottom:717.891467pt;}
.y1ae{bottom:718.032800pt;}
.y177{bottom:718.166133pt;}
.y72{bottom:719.232800pt;}
.yfc{bottom:719.891467pt;}
.y4e{bottom:720.566133pt;}
.y13e{bottom:723.899467pt;}
.y157{bottom:725.891467pt;}
.y1e6{bottom:727.891467pt;}
.y26{bottom:729.224800pt;}
.yae{bottom:729.691467pt;}
.y1ad{bottom:735.099467pt;}
.y11f{bottom:735.224800pt;}
.y176{bottom:735.366133pt;}
.y1cc{bottom:735.891467pt;}
.y8e{bottom:735.899467pt;}
.y4d{bottom:737.232800pt;}
.y8{bottom:737.691467pt;}
.yfb{bottom:744.558133pt;}
.y25{bottom:745.891467pt;}
.yad{bottom:746.358133pt;}
.y4{bottom:749.630133pt;}
.y156{bottom:750.558133pt;}
.y1ac{bottom:752.166133pt;}
.y11e{bottom:752.558133pt;}
.y4c{bottom:753.899467pt;}
.y7{bottom:754.358133pt;}
.y24{bottom:762.558133pt;}
.yac{bottom:763.024800pt;}
.y11d{bottom:769.891467pt;}
.yfa{bottom:770.558133pt;}
.y4b{bottom:770.566133pt;}
.y6{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.y23{bottom:787.224800pt;}
.y4a{bottom:787.232800pt;}
.y5{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y22{bottom:820.263467pt;}
.h9{height:25.734750pt;}
.h3{height:34.031250pt;}
.hb{height:37.083333pt;}
.h5{height:39.703125pt;}
.hd{height:40.550781pt;}
.h8{height:41.593750pt;}
.ha{height:41.718750pt;}
.h4{height:42.286439pt;}
.h7{height:42.481771pt;}
.h2{height:48.671875pt;}
.hc{height:50.989583pt;}
.h6{height:52.357940pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x5{left:81.259200pt;}
.x8{left:96.377867pt;}
.x7{left:119.055200pt;}
.x6{left:189.633867pt;}
.xa{left:198.887200pt;}
.xb{left:287.056533pt;}
.x4{left:394.097867pt;}
.x2{left:439.015200pt;}
.x9{left:452.899200pt;}
.x3{left:470.620533pt;}
.x1{left:538.196533pt;}
}




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