
    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_fcd0f65872e54b54a14828e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_dcf28f87d220dd559fe297f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043945;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_ae9897be108c74bdccfe12dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_3deb34ea2bc01a79296717f5.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_70b265e4b24fe44349c3dea6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.842285;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);}
.v6{vertical-align:-21.978000px;}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.982000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls4{letter-spacing:0.012000px;}
.ls0{letter-spacing:0.016200px;}
.ls7{letter-spacing:0.022037px;}
.ls8{letter-spacing:0.125928px;}
.ls6{letter-spacing:0.324265px;}
.ls9{letter-spacing:0.396673px;}
.ls5{letter-spacing:0.487971px;}
.ls3{letter-spacing:0.513157px;}
.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;}
.ws4{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws6{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:0.604800px;}
._3{margin-left:-11.317800px;}
._1a{margin-left:-10.287600px;}
._10{margin-left:-9.061800px;}
._18{margin-left:-7.872600px;}
._13{margin-left:-6.769800px;}
._14{margin-left:-5.720400px;}
._1{margin-left:-4.063500px;}
._2{margin-left:-2.457000px;}
._0{margin-left:-1.278900px;}
._4{width:1.044000px;}
._5{width:2.096400px;}
._11{width:3.153000px;}
._f{width:5.148000px;}
._9{width:6.718800px;}
._17{width:8.474400px;}
._6{width:9.761400px;}
._8{width:10.870200px;}
._16{width:12.830400px;}
._20{width:14.177700px;}
._15{width:15.809400px;}
._d{width:16.816200px;}
._c{width:18.001800px;}
._12{width:19.397400px;}
._7{width:20.712600px;}
._19{width:22.011000px;}
._1f{width:23.258400px;}
._23{width:24.774900px;}
._1e{width:25.812634px;}
._21{width:27.791100px;}
._1b{width:29.158800px;}
._26{width:30.232500px;}
._1d{width:31.402800px;}
._24{width:32.419200px;}
._a{width:33.594000px;}
._b{width:34.841400px;}
._1c{width:35.923800px;}
._22{width:37.837800px;}
._e{width:39.369000px;}
._25{width:45.335400px;}
._28{width:58.788000px;}
._27{width:1779.261300px;}
.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;}
.y98{bottom:123.419400px;}
.yc4{bottom:124.653900px;}
.y73{bottom:130.053900px;}
.y22{bottom:133.275900px;}
.y45{bottom:133.653900px;}
.ye5{bottom:137.253900px;}
.y22c{bottom:137.886900px;}
.y163{bottom:138.149400px;}
.y97{bottom:139.619400px;}
.yc3{bottom:140.853900px;}
.y20a{bottom:142.377900px;}
.y72{bottom:146.253900px;}
.y21{bottom:149.475900px;}
.y178{bottom:149.744400px;}
.y44{bottom:151.653900px;}
.y96{bottom:155.819400px;}
.y162{bottom:156.149400px;}
.y22b{bottom:156.636900px;}
.yc2{bottom:157.053900px;}
.ye4{bottom:157.949400px;}
.y209{bottom:161.127900px;}
.y100{bottom:161.549400px;}
.yd3{bottom:162.453900px;}
.y71{bottom:166.949400px;}
.y13d{bottom:169.653900px;}
.y20{bottom:170.171400px;}
.y177{bottom:170.439900px;}
.y95{bottom:172.019400px;}
.y161{bottom:172.352400px;}
.yc1{bottom:173.253900px;}
.y43{bottom:174.149400px;}
.y22a{bottom:175.386900px;}
.y117{bottom:177.749400px;}
.y6d{bottom:178.653900px;}
.y176{bottom:182.144400px;}
.yd2{bottom:183.149400px;}
.y208{bottom:184.377900px;}
.y1f{bottom:186.371400px;}
.y13c{bottom:187.653900px;}
.y94{bottom:188.219400px;}
.y1c8{bottom:191.253900px;}
.y42{bottom:192.149400px;}
.yc0{bottom:193.949400px;}
.y6c{bottom:194.853900px;}
.y160{bottom:194.952900px;}
.y175{bottom:198.344400px;}
.y229{bottom:198.636900px;}
.y207{bottom:203.127900px;}
.y41{bottom:203.631900px;}
.ye1{bottom:205.653900px;}
.y93{bottom:208.914900px;}
.ybd{bottom:210.149400px;}
.y6b{bottom:211.053900px;}
.y1c7{bottom:211.949400px;}
.y15f{bottom:213.702900px;}
.y228{bottom:217.386900px;}
.y174{bottom:219.039900px;}
.y40{bottom:219.831900px;}
.y92{bottom:220.619400px;}
.y206{bottom:221.877900px;}
.y131{bottom:223.653900px;}
.y6a{bottom:227.253900px;}
.ybe{bottom:228.149400px;}
.y13b{bottom:229.053900px;}
.y15e{bottom:232.452900px;}
.y116{bottom:235.386900px;}
.y3f{bottom:236.031900px;}
.y227{bottom:236.136900px;}
.y91{bottom:236.819400px;}
.yff{bottom:239.856900px;}
.y130{bottom:241.653900px;}
.y205{bottom:245.127900px;}
.y13a{bottom:245.253900px;}
.ybf{bottom:246.149400px;}
.y69{bottom:247.949400px;}
.y24e{bottom:250.902900px;}
.y15d{bottom:251.202900px;}
.y173{bottom:251.886900px;}
.y3e{bottom:252.231900px;}
.y90{bottom:253.019400px;}
.y115{bottom:254.136900px;}
.y1a8{bottom:257.856900px;}
.y226{bottom:259.386900px;}
.y70{bottom:259.653900px;}
.y1c6{bottom:262.127400px;}
.y1e{bottom:262.152900px;}
.y204{bottom:263.877900px;}
.y139{bottom:265.949400px;}
.y3d{bottom:268.431900px;}
.y1e7{bottom:269.136900px;}
.y8f{bottom:269.219400px;}
.ybc{bottom:269.286900px;}
.y24d{bottom:269.652900px;}
.yfe{bottom:269.886900px;}
.y15c{bottom:269.952900px;}
.y172{bottom:270.636900px;}
.y1d0{bottom:271.386900px;}
.y114{bottom:272.886900px;}
.y1c5{bottom:273.831900px;}
.y1a7{bottom:274.056900px;}
.y6f{bottom:277.653900px;}
.y225{bottom:278.136900px;}
.y1d{bottom:280.902900px;}
.y186{bottom:282.149400px;}
.y203{bottom:282.627900px;}
.y3c{bottom:284.631900px;}
.y1e6{bottom:287.886900px;}
.ybb{bottom:288.036900px;}
.y24c{bottom:288.402900px;}
.yfd{bottom:288.636900px;}
.y15b{bottom:288.702900px;}
.y8e{bottom:289.914900px;}
.y1c4{bottom:290.031900px;}
.y1cf{bottom:290.136900px;}
.y1a6{bottom:290.256900px;}
.y113{bottom:293.136900px;}
.ycc{bottom:295.653900px;}
.y224{bottom:296.886900px;}
.y171{bottom:298.386900px;}
.y1c{bottom:299.652900px;}
.y6e{bottom:300.149400px;}
.y9b{bottom:301.619400px;}
.y3b{bottom:305.327400px;}
.y202{bottom:305.877900px;}
.y1a5{bottom:306.456900px;}
.y1e5{bottom:306.636900px;}
.yba{bottom:306.786900px;}
.yfc{bottom:307.386900px;}
.y15a{bottom:307.452900px;}
.y24b{bottom:308.652900px;}
.y1ce{bottom:310.386900px;}
.y1c3{bottom:310.727400px;}
.y112{bottom:311.886900px;}
.y76{bottom:313.653900px;}
.y3a{bottom:317.031900px;}
.y9a{bottom:317.819400px;}
.ycb{bottom:318.149400px;}
.y223{bottom:320.136900px;}
.y1a4{bottom:322.656900px;}
.y201{bottom:324.627900px;}
.y1e4{bottom:325.386900px;}
.yb9{bottom:325.536900px;}
.yfb{bottom:326.136900px;}
.y1b{bottom:327.402900px;}
.y1ae{bottom:329.136900px;}
.yca{bottom:329.744400px;}
.y111{bottom:330.636900px;}
.y75{bottom:331.653900px;}
.y170{bottom:332.136900px;}
.y39{bottom:333.231900px;}
.y242{bottom:333.636900px;}
.y1be{bottom:334.352400px;}
.y159{bottom:335.202900px;}
.ye0{bottom:336.149400px;}
.y99{bottom:338.514900px;}
.y222{bottom:338.886900px;}
.y1a3{bottom:343.352400px;}
.y200{bottom:343.377900px;}
.y1e3{bottom:344.136900px;}
.yb8{bottom:344.286900px;}
.yfa{bottom:344.886900px;}
.yc9{bottom:345.944400px;}
.y1a{bottom:346.152900px;}
.y1ad{bottom:347.886900px;}
.ye3{bottom:348.039900px;}
.y110{bottom:349.386900px;}
.y38{bottom:349.431900px;}
.y12f{bottom:349.653900px;}
.y9e{bottom:350.219400px;}
.y16f{bottom:350.886900px;}
.y241{bottom:352.386900px;}
.y74{bottom:354.149400px;}
.y138{bottom:356.136900px;}
.y1bd{bottom:357.636900px;}
.y1ff{bottom:362.127900px;}
.yc8{bottom:362.144400px;}
.y1e2{bottom:362.886900px;}
.yf9{bottom:363.636900px;}
.ye2{bottom:364.239900px;}
.y19{bottom:364.902900px;}
.y1a2{bottom:365.436900px;}
.y9d{bottom:366.419400px;}
.y1ac{bottom:366.636900px;}
.y12e{bottom:367.653900px;}
.y10f{bottom:368.136900px;}
.y158{bottom:368.952900px;}
.y16e{bottom:369.636900px;}
.y37{bottom:370.127400px;}
.y240{bottom:371.136900px;}
.yb7{bottom:372.036900px;}
.y77{bottom:372.149400px;}
.y185{bottom:372.336900px;}
.y137{bottom:374.886900px;}
.y1bc{bottom:376.386900px;}
.yc7{bottom:378.344400px;}
.y1e1{bottom:381.636900px;}
.y4d{bottom:381.831900px;}
.y18{bottom:383.652900px;}
.yf8{bottom:383.886900px;}
.y1a1{bottom:384.186900px;}
.y1fe{bottom:385.377900px;}
.y1c2{bottom:385.386900px;}
.y12d{bottom:385.653900px;}
.y10e{bottom:386.886900px;}
.y9c{bottom:387.114900px;}
.y157{bottom:387.552900px;}
.y16d{bottom:388.386900px;}
.y23f{bottom:389.886900px;}
.yb6{bottom:390.786900px;}
.y136{bottom:393.636900px;}
.y1ab{bottom:394.386900px;}
.y68{bottom:395.136900px;}
.y4c{bottom:398.031900px;}
.yc6{bottom:399.039900px;}
.y221{bottom:399.636900px;}
.y1e0{bottom:400.386900px;}
.y17{bottom:402.402900px;}
.yf7{bottom:402.636900px;}
.y1fd{bottom:404.127900px;}
.y1c1{bottom:404.136900px;}
.y1a0{bottom:404.436900px;}
.ydf{bottom:405.636900px;}
.y156{bottom:406.152900px;}
.y16c{bottom:407.136900px;}
.y12c{bottom:408.149400px;}
.y23e{bottom:408.636900px;}
.y184{bottom:409.236900px;}
.yd1{bottom:410.744400px;}
.y135{bottom:412.386900px;}
.y1aa{bottom:413.136900px;}
.y67{bottom:413.886900px;}
.y4b{bottom:414.231900px;}
.y1bb{bottom:415.386900px;}
.y220{bottom:418.386900px;}
.y1df{bottom:419.136900px;}
.y16{bottom:421.152900px;}
.yf6{bottom:421.386900px;}
.y1fc{bottom:422.877900px;}
.y19f{bottom:422.886900px;}
.yde{bottom:424.386900px;}
.y155{bottom:424.752900px;}
.y12b{bottom:425.253900px;}
.y10d{bottom:425.886900px;}
.yd0{bottom:426.944400px;}
.y183{bottom:427.686900px;}
.yb5{bottom:429.036900px;}
.y4a{bottom:430.431900px;}
.y134{bottom:431.136900px;}
.y8d{bottom:431.886900px;}
.y66{bottom:432.636900px;}
.y1ba{bottom:434.136900px;}
.y1de{bottom:437.886900px;}
.y15{bottom:439.902900px;}
.yf5{bottom:440.136900px;}
.y19e{bottom:441.336900px;}
.y1fb{bottom:441.627900px;}
.y21f{bottom:441.636900px;}
.ydd{bottom:443.136900px;}
.ycf{bottom:443.144400px;}
.y154{bottom:443.352900px;}
.y10c{bottom:444.636900px;}
.y12a{bottom:445.949400px;}
.y16b{bottom:446.136900px;}
.y49{bottom:446.631900px;}
.y182{bottom:447.636900px;}
.yb4{bottom:447.786900px;}
.y133{bottom:449.886900px;}
.y23d{bottom:450.636900px;}
.y8c{bottom:451.236900px;}
.y65{bottom:451.386900px;}
.y1b9{bottom:452.886900px;}
.y1dd{bottom:456.636900px;}
.y14{bottom:458.652900px;}
.yf4{bottom:458.886900px;}
.yce{bottom:459.344400px;}
.y19d{bottom:459.786900px;}
.y1fa{bottom:460.377900px;}
.y21e{bottom:460.386900px;}
.ydc{bottom:461.886900px;}
.y153{bottom:461.952900px;}
.y129{bottom:462.149400px;}
.y48{bottom:462.831900px;}
.y10b{bottom:463.386900px;}
.y16a{bottom:464.886900px;}
.y181{bottom:466.386900px;}
.yb3{bottom:466.536900px;}
.y132{bottom:468.636900px;}
.y23c{bottom:469.386900px;}
.y64{bottom:470.136900px;}
.y8b{bottom:470.586900px;}
.y1b8{bottom:471.636900px;}
.y1dc{bottom:475.386900px;}
.ycd{bottom:475.544400px;}
.y13{bottom:477.402900px;}
.yf3{bottom:477.636900px;}
.y19c{bottom:478.236900px;}
.y47{bottom:479.031900px;}
.y21d{bottom:479.136900px;}
.ydb{bottom:480.636900px;}
.y152{bottom:482.052900px;}
.y10a{bottom:482.136900px;}
.y1f9{bottom:483.627900px;}
.y169{bottom:483.636900px;}
.y180{bottom:485.136900px;}
.yb2{bottom:485.286900px;}
.y63{bottom:488.886900px;}
.y1b7{bottom:490.386900px;}
.y8a{bottom:491.436900px;}
.y23b{bottom:492.636900px;}
.y1db{bottom:494.136900px;}
.y12{bottom:496.152900px;}
.y19b{bottom:496.686900px;}
.yf2{bottom:497.886900px;}
.yda{bottom:499.386900px;}
.y46{bottom:499.727400px;}
.y151{bottom:500.652900px;}
.y109{bottom:500.886900px;}
.y1f8{bottom:502.377900px;}
.y21c{bottom:502.386900px;}
.y168{bottom:503.886900px;}
.yb1{bottom:504.036900px;}
.y128{bottom:505.386900px;}
.y62{bottom:507.636900px;}
.y1b6{bottom:509.136900px;}
.y89{bottom:510.786900px;}
.y23a{bottom:511.386900px;}
.y1da{bottom:512.886900px;}
.y11{bottom:514.902900px;}
.y19a{bottom:515.136900px;}
.yf1{bottom:516.636900px;}
.y1c0{bottom:518.136900px;}
.y150{bottom:519.252900px;}
.y108{bottom:519.636900px;}
.y1f7{bottom:521.127900px;}
.y21b{bottom:521.136900px;}
.y167{bottom:522.636900px;}
.yb0{bottom:522.786900px;}
.y127{bottom:524.136900px;}
.y61{bottom:526.386900px;}
.yd9{bottom:527.136900px;}
.y1b5{bottom:529.386900px;}
.y239{bottom:530.136900px;}
.y88{bottom:531.636900px;}
.y199{bottom:533.586900px;}
.y10{bottom:533.652900px;}
.yf0{bottom:535.386900px;}
.y1cd{bottom:536.886900px;}
.y36{bottom:537.627900px;}
.y107{bottom:538.386900px;}
.y14f{bottom:539.352900px;}
.y1f6{bottom:539.877900px;}
.y21a{bottom:539.886900px;}
.y166{bottom:541.386900px;}
.yaf{bottom:541.536900px;}
.y126{bottom:542.886900px;}
.y60{bottom:545.136900px;}
.y1bf{bottom:545.886900px;}
.y1a9{bottom:546.636900px;}
.y1b4{bottom:548.136900px;}
.y238{bottom:548.886900px;}
.y1d9{bottom:550.386900px;}
.y198{bottom:552.036900px;}
.yf{bottom:552.402900px;}
.y87{bottom:552.486900px;}
.yef{bottom:554.136900px;}
.y1cc{bottom:555.636900px;}
.y35{bottom:556.377900px;}
.y106{bottom:557.136900px;}
.y14e{bottom:557.952900px;}
.y1f5{bottom:558.627900px;}
.y165{bottom:560.136900px;}
.y125{bottom:561.636900px;}
.yae{bottom:561.786900px;}
.y219{bottom:563.136900px;}
.y5f{bottom:563.886900px;}
.yd8{bottom:565.386900px;}
.y1b3{bottom:566.886900px;}
.y237{bottom:567.636900px;}
.y1d8{bottom:569.136900px;}
.y197{bottom:570.486900px;}
.ye{bottom:571.152900px;}
.y86{bottom:571.836900px;}
.yee{bottom:572.886900px;}
.y1cb{bottom:574.386900px;}
.y34{bottom:575.127900px;}
.y14d{bottom:576.552900px;}
.y124{bottom:580.386900px;}
.yad{bottom:580.536900px;}
.y1f4{bottom:581.877900px;}
.y218{bottom:581.886900px;}
.y5e{bottom:582.636900px;}
.yd7{bottom:584.136900px;}
.y105{bottom:584.886900px;}
.y1b2{bottom:585.636900px;}
.y164{bottom:587.886900px;}
.y196{bottom:588.936900px;}
.yd{bottom:589.902900px;}
.y236{bottom:590.886900px;}
.y85{bottom:591.186900px;}
.yed{bottom:591.636900px;}
.y1ca{bottom:593.136900px;}
.y33{bottom:593.877900px;}
.y14c{bottom:596.652900px;}
.y123{bottom:599.136900px;}
.yac{bottom:599.286900px;}
.y1f3{bottom:600.627900px;}
.y5d{bottom:601.386900px;}
.yd6{bottom:602.886900px;}
.y1b1{bottom:604.386900px;}
.y217{bottom:605.136900px;}
.y1d7{bottom:606.636900px;}
.y195{bottom:607.386900px;}
.yc{bottom:608.652900px;}
.y235{bottom:609.636900px;}
.yec{bottom:610.386900px;}
.y84{bottom:612.036900px;}
.y32{bottom:612.627900px;}
.y14b{bottom:615.252900px;}
.y122{bottom:617.886900px;}
.yab{bottom:618.036900px;}
.y104{bottom:618.636900px;}
.y1f2{bottom:619.377900px;}
.y5c{bottom:620.136900px;}
.y1c9{bottom:620.886900px;}
.yd5{bottom:621.636900px;}
.y1b0{bottom:623.136900px;}
.y216{bottom:623.886900px;}
.y1d6{bottom:625.386900px;}
.y194{bottom:625.836900px;}
.y24a{bottom:627.402900px;}
.y234{bottom:628.386900px;}
.yeb{bottom:629.136900px;}
.y31{bottom:631.377900px;}
.y83{bottom:631.386900px;}
.y14a{bottom:633.852900px;}
.y121{bottom:636.636900px;}
.yaa{bottom:636.786900px;}
.y103{bottom:637.386900px;}
.y1f1{bottom:638.127900px;}
.y5b{bottom:640.386900px;}
.y1af{bottom:641.886900px;}
.y215{bottom:642.636900px;}
.y1d5{bottom:644.136900px;}
.y193{bottom:644.286900px;}
.y249{bottom:646.152900px;}
.y30{bottom:650.127900px;}
.y233{bottom:651.636900px;}
.y82{bottom:652.236900px;}
.y149{bottom:652.452900px;}
.y120{bottom:655.386900px;}
.ya9{bottom:655.536900px;}
.y1f0{bottom:656.877900px;}
.yea{bottom:656.886900px;}
.y102{bottom:657.636900px;}
.y5a{bottom:659.136900px;}
.y17f{bottom:660.636900px;}
.y1d4{bottom:662.886900px;}
.y192{bottom:664.236900px;}
.y248{bottom:664.902900px;}
.y214{bottom:665.886900px;}
.y2f{bottom:668.877900px;}
.y232{bottom:670.386900px;}
.y148{bottom:671.052900px;}
.y81{bottom:671.586900px;}
.y11f{bottom:674.136900px;}
.ya8{bottom:674.286900px;}
.y1ef{bottom:675.627900px;}
.y101{bottom:676.386900px;}
.y59{bottom:677.886900px;}
.y17e{bottom:679.386900px;}
.y191{bottom:682.686900px;}
.y247{bottom:683.652900px;}
.y213{bottom:684.636900px;}
.yb{bottom:687.402900px;}
.y2e{bottom:687.627900px;}
.y231{bottom:689.136900px;}
.y147{bottom:689.652900px;}
.y1d3{bottom:690.636900px;}
.y80{bottom:692.436900px;}
.y11e{bottom:692.886900px;}
.ya7{bottom:693.036900px;}
.ye9{bottom:695.136900px;}
.y58{bottom:696.636900px;}
.y17d{bottom:698.136900px;}
.y1ee{bottom:698.877900px;}
.y190{bottom:701.136900px;}
.y246{bottom:702.402900px;}
.y212{bottom:703.386900px;}
.y2d{bottom:707.877900px;}
.y146{bottom:708.252900px;}
.ya{bottom:709.902900px;}
.y11d{bottom:711.636900px;}
.y7f{bottom:711.786900px;}
.y230{bottom:712.386900px;}
.ya6{bottom:713.286900px;}
.ye8{bottom:713.886900px;}
.y57{bottom:715.386900px;}
.y17c{bottom:716.886900px;}
.y1ed{bottom:717.627900px;}
.y18f{bottom:719.586900px;}
.y211{bottom:722.136900px;}
.y1d2{bottom:722.886900px;}
.y2c{bottom:726.627900px;}
.y145{bottom:728.352900px;}
.y245{bottom:730.152900px;}
.y11c{bottom:730.386900px;}
.y7e{bottom:731.136900px;}
.ya5{bottom:732.036900px;}
.ye7{bottom:732.636900px;}
.y56{bottom:734.136900px;}
.y17b{bottom:735.636900px;}
.y1ec{bottom:736.377900px;}
.y18e{bottom:738.036900px;}
.y1d1{bottom:741.636900px;}
.y2b{bottom:745.377900px;}
.y210{bottom:745.386900px;}
.y144{bottom:746.952900px;}
.y11b{bottom:749.136900px;}
.y22f{bottom:749.886900px;}
.y7d{bottom:750.486900px;}
.ya4{bottom:750.786900px;}
.ye6{bottom:751.386900px;}
.y55{bottom:752.886900px;}
.y17a{bottom:754.386900px;}
.y1eb{bottom:755.127900px;}
.y18d{bottom:756.486900px;}
.y244{bottom:762.402900px;}
.y2a{bottom:764.127900px;}
.y20f{bottom:764.136900px;}
.y143{bottom:765.552900px;}
.y11a{bottom:767.886900px;}
.y22e{bottom:768.636900px;}
.ya3{bottom:769.536900px;}
.y7c{bottom:769.836900px;}
.y54{bottom:771.636900px;}
.y179{bottom:773.136900px;}
.y1ea{bottom:773.877900px;}
.y18c{bottom:774.936900px;}
.y243{bottom:781.152900px;}
.y29{bottom:782.877900px;}
.y20e{bottom:782.886900px;}
.y142{bottom:784.152900px;}
.y119{bottom:786.636900px;}
.y22d{bottom:787.386900px;}
.ya2{bottom:788.286900px;}
.y7b{bottom:789.186900px;}
.y53{bottom:790.386900px;}
.yd4{bottom:791.886900px;}
.y18b{bottom:793.386900px;}
.y1e9{bottom:797.127900px;}
.y28{bottom:801.627900px;}
.y20d{bottom:801.636900px;}
.y141{bottom:802.752900px;}
.y7a{bottom:808.536900px;}
.y52{bottom:809.136900px;}
.yc5{bottom:810.636900px;}
.y18a{bottom:811.836900px;}
.y118{bottom:814.386900px;}
.y1e8{bottom:815.877900px;}
.y27{bottom:820.377900px;}
.y140{bottom:821.352900px;}
.y20c{bottom:824.886900px;}
.y5{bottom:827.238900px;}
.ya1{bottom:827.286900px;}
.y51{bottom:827.886900px;}
.y79{bottom:829.386900px;}
.y9{bottom:829.902900px;}
.y189{bottom:830.286900px;}
.y26{bottom:839.127900px;}
.y13f{bottom:839.952900px;}
.y20b{bottom:843.636900px;}
.ya0{bottom:846.036900px;}
.y50{bottom:846.636900px;}
.y78{bottom:848.136900px;}
.y8{bottom:848.652900px;}
.y188{bottom:848.736900px;}
.y4{bottom:855.338400px;}
.y25{bottom:857.877900px;}
.y13e{bottom:858.552900px;}
.y9f{bottom:866.286900px;}
.y4f{bottom:866.886900px;}
.y187{bottom:867.186900px;}
.y7{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.y24{bottom:885.627900px;}
.y4e{bottom:885.636900px;}
.y6{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y23{bottom:922.796400px;}
.h9{height:29.004328px;}
.hb{height:41.765625px;}
.h3{height:44.586914px;}
.hc{height:46.792969px;}
.ha{height:46.986328px;}
.h5{height:52.018066px;}
.h8{height:54.495117px;}
.h2{height:54.817383px;}
.h4{height:55.125000px;}
.hd{height:57.427734px;}
.h7{height:57.750000px;}
.h6{height:68.250000px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x6{left:91.416600px;}
.xe{left:100.766100px;}
.x7{left:102.608100px;}
.xa{left:108.425100px;}
.xb{left:133.937100px;}
.x9{left:142.440600px;}
.x8{left:154.875600px;}
.x11{left:168.476100px;}
.xf{left:248.603100px;}
.x12{left:322.938600px;}
.x10{left:329.726100px;}
.x3{left:419.807100px;}
.x2{left:438.309600px;}
.x5{left:443.360100px;}
.xc{left:488.370600px;}
.x4{left:528.393600px;}
.xd{left:596.750100px;}
.x1{left:605.471100px;}
@media print{
.v6{vertical-align:-19.536000pt;}
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.984000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls4{letter-spacing:0.010667pt;}
.ls0{letter-spacing:0.014400pt;}
.ls7{letter-spacing:0.019589pt;}
.ls8{letter-spacing:0.111936pt;}
.ls6{letter-spacing:0.288235pt;}
.ls9{letter-spacing:0.352598pt;}
.ls5{letter-spacing:0.433752pt;}
.ls3{letter-spacing:0.456139pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws4{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws6{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:0.537600pt;}
._3{margin-left:-10.060267pt;}
._1a{margin-left:-9.144533pt;}
._10{margin-left:-8.054933pt;}
._18{margin-left:-6.997867pt;}
._13{margin-left:-6.017600pt;}
._14{margin-left:-5.084800pt;}
._1{margin-left:-3.612000pt;}
._2{margin-left:-2.184000pt;}
._0{margin-left:-1.136800pt;}
._4{width:0.928000pt;}
._5{width:1.863467pt;}
._11{width:2.802667pt;}
._f{width:4.576000pt;}
._9{width:5.972267pt;}
._17{width:7.532800pt;}
._6{width:8.676800pt;}
._8{width:9.662400pt;}
._16{width:11.404800pt;}
._20{width:12.602400pt;}
._15{width:14.052800pt;}
._d{width:14.947733pt;}
._c{width:16.001600pt;}
._12{width:17.242133pt;}
._7{width:18.411200pt;}
._19{width:19.565333pt;}
._1f{width:20.674133pt;}
._23{width:22.022133pt;}
._1e{width:22.944564pt;}
._21{width:24.703200pt;}
._1b{width:25.918933pt;}
._26{width:26.873333pt;}
._1d{width:27.913600pt;}
._24{width:28.817067pt;}
._a{width:29.861333pt;}
._b{width:30.970133pt;}
._1c{width:31.932267pt;}
._22{width:33.633600pt;}
._e{width:34.994667pt;}
._25{width:40.298133pt;}
._28{width:52.256000pt;}
._27{width:1581.565600pt;}
.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;}
.y98{bottom:109.706133pt;}
.yc4{bottom:110.803467pt;}
.y73{bottom:115.603467pt;}
.y22{bottom:118.467467pt;}
.y45{bottom:118.803467pt;}
.ye5{bottom:122.003467pt;}
.y22c{bottom:122.566133pt;}
.y163{bottom:122.799467pt;}
.y97{bottom:124.106133pt;}
.yc3{bottom:125.203467pt;}
.y20a{bottom:126.558133pt;}
.y72{bottom:130.003467pt;}
.y21{bottom:132.867467pt;}
.y178{bottom:133.106133pt;}
.y44{bottom:134.803467pt;}
.y96{bottom:138.506133pt;}
.y162{bottom:138.799467pt;}
.y22b{bottom:139.232800pt;}
.yc2{bottom:139.603467pt;}
.ye4{bottom:140.399467pt;}
.y209{bottom:143.224800pt;}
.y100{bottom:143.599467pt;}
.yd3{bottom:144.403467pt;}
.y71{bottom:148.399467pt;}
.y13d{bottom:150.803467pt;}
.y20{bottom:151.263467pt;}
.y177{bottom:151.502133pt;}
.y95{bottom:152.906133pt;}
.y161{bottom:153.202133pt;}
.yc1{bottom:154.003467pt;}
.y43{bottom:154.799467pt;}
.y22a{bottom:155.899467pt;}
.y117{bottom:157.999467pt;}
.y6d{bottom:158.803467pt;}
.y176{bottom:161.906133pt;}
.yd2{bottom:162.799467pt;}
.y208{bottom:163.891467pt;}
.y1f{bottom:165.663467pt;}
.y13c{bottom:166.803467pt;}
.y94{bottom:167.306133pt;}
.y1c8{bottom:170.003467pt;}
.y42{bottom:170.799467pt;}
.yc0{bottom:172.399467pt;}
.y6c{bottom:173.203467pt;}
.y160{bottom:173.291467pt;}
.y175{bottom:176.306133pt;}
.y229{bottom:176.566133pt;}
.y207{bottom:180.558133pt;}
.y41{bottom:181.006133pt;}
.ye1{bottom:182.803467pt;}
.y93{bottom:185.702133pt;}
.ybd{bottom:186.799467pt;}
.y6b{bottom:187.603467pt;}
.y1c7{bottom:188.399467pt;}
.y15f{bottom:189.958133pt;}
.y228{bottom:193.232800pt;}
.y174{bottom:194.702133pt;}
.y40{bottom:195.406133pt;}
.y92{bottom:196.106133pt;}
.y206{bottom:197.224800pt;}
.y131{bottom:198.803467pt;}
.y6a{bottom:202.003467pt;}
.ybe{bottom:202.799467pt;}
.y13b{bottom:203.603467pt;}
.y15e{bottom:206.624800pt;}
.y116{bottom:209.232800pt;}
.y3f{bottom:209.806133pt;}
.y227{bottom:209.899467pt;}
.y91{bottom:210.506133pt;}
.yff{bottom:213.206133pt;}
.y130{bottom:214.803467pt;}
.y205{bottom:217.891467pt;}
.y13a{bottom:218.003467pt;}
.ybf{bottom:218.799467pt;}
.y69{bottom:220.399467pt;}
.y24e{bottom:223.024800pt;}
.y15d{bottom:223.291467pt;}
.y173{bottom:223.899467pt;}
.y3e{bottom:224.206133pt;}
.y90{bottom:224.906133pt;}
.y115{bottom:225.899467pt;}
.y1a8{bottom:229.206133pt;}
.y226{bottom:230.566133pt;}
.y70{bottom:230.803467pt;}
.y1c6{bottom:233.002133pt;}
.y1e{bottom:233.024800pt;}
.y204{bottom:234.558133pt;}
.y139{bottom:236.399467pt;}
.y3d{bottom:238.606133pt;}
.y1e7{bottom:239.232800pt;}
.y8f{bottom:239.306133pt;}
.ybc{bottom:239.366133pt;}
.y24d{bottom:239.691467pt;}
.yfe{bottom:239.899467pt;}
.y15c{bottom:239.958133pt;}
.y172{bottom:240.566133pt;}
.y1d0{bottom:241.232800pt;}
.y114{bottom:242.566133pt;}
.y1c5{bottom:243.406133pt;}
.y1a7{bottom:243.606133pt;}
.y6f{bottom:246.803467pt;}
.y225{bottom:247.232800pt;}
.y1d{bottom:249.691467pt;}
.y186{bottom:250.799467pt;}
.y203{bottom:251.224800pt;}
.y3c{bottom:253.006133pt;}
.y1e6{bottom:255.899467pt;}
.ybb{bottom:256.032800pt;}
.y24c{bottom:256.358133pt;}
.yfd{bottom:256.566133pt;}
.y15b{bottom:256.624800pt;}
.y8e{bottom:257.702133pt;}
.y1c4{bottom:257.806133pt;}
.y1cf{bottom:257.899467pt;}
.y1a6{bottom:258.006133pt;}
.y113{bottom:260.566133pt;}
.ycc{bottom:262.803467pt;}
.y224{bottom:263.899467pt;}
.y171{bottom:265.232800pt;}
.y1c{bottom:266.358133pt;}
.y6e{bottom:266.799467pt;}
.y9b{bottom:268.106133pt;}
.y3b{bottom:271.402133pt;}
.y202{bottom:271.891467pt;}
.y1a5{bottom:272.406133pt;}
.y1e5{bottom:272.566133pt;}
.yba{bottom:272.699467pt;}
.yfc{bottom:273.232800pt;}
.y15a{bottom:273.291467pt;}
.y24b{bottom:274.358133pt;}
.y1ce{bottom:275.899467pt;}
.y1c3{bottom:276.202133pt;}
.y112{bottom:277.232800pt;}
.y76{bottom:278.803467pt;}
.y3a{bottom:281.806133pt;}
.y9a{bottom:282.506133pt;}
.ycb{bottom:282.799467pt;}
.y223{bottom:284.566133pt;}
.y1a4{bottom:286.806133pt;}
.y201{bottom:288.558133pt;}
.y1e4{bottom:289.232800pt;}
.yb9{bottom:289.366133pt;}
.yfb{bottom:289.899467pt;}
.y1b{bottom:291.024800pt;}
.y1ae{bottom:292.566133pt;}
.yca{bottom:293.106133pt;}
.y111{bottom:293.899467pt;}
.y75{bottom:294.803467pt;}
.y170{bottom:295.232800pt;}
.y39{bottom:296.206133pt;}
.y242{bottom:296.566133pt;}
.y1be{bottom:297.202133pt;}
.y159{bottom:297.958133pt;}
.ye0{bottom:298.799467pt;}
.y99{bottom:300.902133pt;}
.y222{bottom:301.232800pt;}
.y1a3{bottom:305.202133pt;}
.y200{bottom:305.224800pt;}
.y1e3{bottom:305.899467pt;}
.yb8{bottom:306.032800pt;}
.yfa{bottom:306.566133pt;}
.yc9{bottom:307.506133pt;}
.y1a{bottom:307.691467pt;}
.y1ad{bottom:309.232800pt;}
.ye3{bottom:309.368800pt;}
.y110{bottom:310.566133pt;}
.y38{bottom:310.606133pt;}
.y12f{bottom:310.803467pt;}
.y9e{bottom:311.306133pt;}
.y16f{bottom:311.899467pt;}
.y241{bottom:313.232800pt;}
.y74{bottom:314.799467pt;}
.y138{bottom:316.566133pt;}
.y1bd{bottom:317.899467pt;}
.y1ff{bottom:321.891467pt;}
.yc8{bottom:321.906133pt;}
.y1e2{bottom:322.566133pt;}
.yf9{bottom:323.232800pt;}
.ye2{bottom:323.768800pt;}
.y19{bottom:324.358133pt;}
.y1a2{bottom:324.832800pt;}
.y9d{bottom:325.706133pt;}
.y1ac{bottom:325.899467pt;}
.y12e{bottom:326.803467pt;}
.y10f{bottom:327.232800pt;}
.y158{bottom:327.958133pt;}
.y16e{bottom:328.566133pt;}
.y37{bottom:329.002133pt;}
.y240{bottom:329.899467pt;}
.yb7{bottom:330.699467pt;}
.y77{bottom:330.799467pt;}
.y185{bottom:330.966133pt;}
.y137{bottom:333.232800pt;}
.y1bc{bottom:334.566133pt;}
.yc7{bottom:336.306133pt;}
.y1e1{bottom:339.232800pt;}
.y4d{bottom:339.406133pt;}
.y18{bottom:341.024800pt;}
.yf8{bottom:341.232800pt;}
.y1a1{bottom:341.499467pt;}
.y1fe{bottom:342.558133pt;}
.y1c2{bottom:342.566133pt;}
.y12d{bottom:342.803467pt;}
.y10e{bottom:343.899467pt;}
.y9c{bottom:344.102133pt;}
.y157{bottom:344.491467pt;}
.y16d{bottom:345.232800pt;}
.y23f{bottom:346.566133pt;}
.yb6{bottom:347.366133pt;}
.y136{bottom:349.899467pt;}
.y1ab{bottom:350.566133pt;}
.y68{bottom:351.232800pt;}
.y4c{bottom:353.806133pt;}
.yc6{bottom:354.702133pt;}
.y221{bottom:355.232800pt;}
.y1e0{bottom:355.899467pt;}
.y17{bottom:357.691467pt;}
.yf7{bottom:357.899467pt;}
.y1fd{bottom:359.224800pt;}
.y1c1{bottom:359.232800pt;}
.y1a0{bottom:359.499467pt;}
.ydf{bottom:360.566133pt;}
.y156{bottom:361.024800pt;}
.y16c{bottom:361.899467pt;}
.y12c{bottom:362.799467pt;}
.y23e{bottom:363.232800pt;}
.y184{bottom:363.766133pt;}
.yd1{bottom:365.106133pt;}
.y135{bottom:366.566133pt;}
.y1aa{bottom:367.232800pt;}
.y67{bottom:367.899467pt;}
.y4b{bottom:368.206133pt;}
.y1bb{bottom:369.232800pt;}
.y220{bottom:371.899467pt;}
.y1df{bottom:372.566133pt;}
.y16{bottom:374.358133pt;}
.yf6{bottom:374.566133pt;}
.y1fc{bottom:375.891467pt;}
.y19f{bottom:375.899467pt;}
.yde{bottom:377.232800pt;}
.y155{bottom:377.558133pt;}
.y12b{bottom:378.003467pt;}
.y10d{bottom:378.566133pt;}
.yd0{bottom:379.506133pt;}
.y183{bottom:380.166133pt;}
.yb5{bottom:381.366133pt;}
.y4a{bottom:382.606133pt;}
.y134{bottom:383.232800pt;}
.y8d{bottom:383.899467pt;}
.y66{bottom:384.566133pt;}
.y1ba{bottom:385.899467pt;}
.y1de{bottom:389.232800pt;}
.y15{bottom:391.024800pt;}
.yf5{bottom:391.232800pt;}
.y19e{bottom:392.299467pt;}
.y1fb{bottom:392.558133pt;}
.y21f{bottom:392.566133pt;}
.ydd{bottom:393.899467pt;}
.ycf{bottom:393.906133pt;}
.y154{bottom:394.091467pt;}
.y10c{bottom:395.232800pt;}
.y12a{bottom:396.399467pt;}
.y16b{bottom:396.566133pt;}
.y49{bottom:397.006133pt;}
.y182{bottom:397.899467pt;}
.yb4{bottom:398.032800pt;}
.y133{bottom:399.899467pt;}
.y23d{bottom:400.566133pt;}
.y8c{bottom:401.099467pt;}
.y65{bottom:401.232800pt;}
.y1b9{bottom:402.566133pt;}
.y1dd{bottom:405.899467pt;}
.y14{bottom:407.691467pt;}
.yf4{bottom:407.899467pt;}
.yce{bottom:408.306133pt;}
.y19d{bottom:408.699467pt;}
.y1fa{bottom:409.224800pt;}
.y21e{bottom:409.232800pt;}
.ydc{bottom:410.566133pt;}
.y153{bottom:410.624800pt;}
.y129{bottom:410.799467pt;}
.y48{bottom:411.406133pt;}
.y10b{bottom:411.899467pt;}
.y16a{bottom:413.232800pt;}
.y181{bottom:414.566133pt;}
.yb3{bottom:414.699467pt;}
.y132{bottom:416.566133pt;}
.y23c{bottom:417.232800pt;}
.y64{bottom:417.899467pt;}
.y8b{bottom:418.299467pt;}
.y1b8{bottom:419.232800pt;}
.y1dc{bottom:422.566133pt;}
.ycd{bottom:422.706133pt;}
.y13{bottom:424.358133pt;}
.yf3{bottom:424.566133pt;}
.y19c{bottom:425.099467pt;}
.y47{bottom:425.806133pt;}
.y21d{bottom:425.899467pt;}
.ydb{bottom:427.232800pt;}
.y152{bottom:428.491467pt;}
.y10a{bottom:428.566133pt;}
.y1f9{bottom:429.891467pt;}
.y169{bottom:429.899467pt;}
.y180{bottom:431.232800pt;}
.yb2{bottom:431.366133pt;}
.y63{bottom:434.566133pt;}
.y1b7{bottom:435.899467pt;}
.y8a{bottom:436.832800pt;}
.y23b{bottom:437.899467pt;}
.y1db{bottom:439.232800pt;}
.y12{bottom:441.024800pt;}
.y19b{bottom:441.499467pt;}
.yf2{bottom:442.566133pt;}
.yda{bottom:443.899467pt;}
.y46{bottom:444.202133pt;}
.y151{bottom:445.024800pt;}
.y109{bottom:445.232800pt;}
.y1f8{bottom:446.558133pt;}
.y21c{bottom:446.566133pt;}
.y168{bottom:447.899467pt;}
.yb1{bottom:448.032800pt;}
.y128{bottom:449.232800pt;}
.y62{bottom:451.232800pt;}
.y1b6{bottom:452.566133pt;}
.y89{bottom:454.032800pt;}
.y23a{bottom:454.566133pt;}
.y1da{bottom:455.899467pt;}
.y11{bottom:457.691467pt;}
.y19a{bottom:457.899467pt;}
.yf1{bottom:459.232800pt;}
.y1c0{bottom:460.566133pt;}
.y150{bottom:461.558133pt;}
.y108{bottom:461.899467pt;}
.y1f7{bottom:463.224800pt;}
.y21b{bottom:463.232800pt;}
.y167{bottom:464.566133pt;}
.yb0{bottom:464.699467pt;}
.y127{bottom:465.899467pt;}
.y61{bottom:467.899467pt;}
.yd9{bottom:468.566133pt;}
.y1b5{bottom:470.566133pt;}
.y239{bottom:471.232800pt;}
.y88{bottom:472.566133pt;}
.y199{bottom:474.299467pt;}
.y10{bottom:474.358133pt;}
.yf0{bottom:475.899467pt;}
.y1cd{bottom:477.232800pt;}
.y36{bottom:477.891467pt;}
.y107{bottom:478.566133pt;}
.y14f{bottom:479.424800pt;}
.y1f6{bottom:479.891467pt;}
.y21a{bottom:479.899467pt;}
.y166{bottom:481.232800pt;}
.yaf{bottom:481.366133pt;}
.y126{bottom:482.566133pt;}
.y60{bottom:484.566133pt;}
.y1bf{bottom:485.232800pt;}
.y1a9{bottom:485.899467pt;}
.y1b4{bottom:487.232800pt;}
.y238{bottom:487.899467pt;}
.y1d9{bottom:489.232800pt;}
.y198{bottom:490.699467pt;}
.yf{bottom:491.024800pt;}
.y87{bottom:491.099467pt;}
.yef{bottom:492.566133pt;}
.y1cc{bottom:493.899467pt;}
.y35{bottom:494.558133pt;}
.y106{bottom:495.232800pt;}
.y14e{bottom:495.958133pt;}
.y1f5{bottom:496.558133pt;}
.y165{bottom:497.899467pt;}
.y125{bottom:499.232800pt;}
.yae{bottom:499.366133pt;}
.y219{bottom:500.566133pt;}
.y5f{bottom:501.232800pt;}
.yd8{bottom:502.566133pt;}
.y1b3{bottom:503.899467pt;}
.y237{bottom:504.566133pt;}
.y1d8{bottom:505.899467pt;}
.y197{bottom:507.099467pt;}
.ye{bottom:507.691467pt;}
.y86{bottom:508.299467pt;}
.yee{bottom:509.232800pt;}
.y1cb{bottom:510.566133pt;}
.y34{bottom:511.224800pt;}
.y14d{bottom:512.491467pt;}
.y124{bottom:515.899467pt;}
.yad{bottom:516.032800pt;}
.y1f4{bottom:517.224800pt;}
.y218{bottom:517.232800pt;}
.y5e{bottom:517.899467pt;}
.yd7{bottom:519.232800pt;}
.y105{bottom:519.899467pt;}
.y1b2{bottom:520.566133pt;}
.y164{bottom:522.566133pt;}
.y196{bottom:523.499467pt;}
.yd{bottom:524.358133pt;}
.y236{bottom:525.232800pt;}
.y85{bottom:525.499467pt;}
.yed{bottom:525.899467pt;}
.y1ca{bottom:527.232800pt;}
.y33{bottom:527.891467pt;}
.y14c{bottom:530.358133pt;}
.y123{bottom:532.566133pt;}
.yac{bottom:532.699467pt;}
.y1f3{bottom:533.891467pt;}
.y5d{bottom:534.566133pt;}
.yd6{bottom:535.899467pt;}
.y1b1{bottom:537.232800pt;}
.y217{bottom:537.899467pt;}
.y1d7{bottom:539.232800pt;}
.y195{bottom:539.899467pt;}
.yc{bottom:541.024800pt;}
.y235{bottom:541.899467pt;}
.yec{bottom:542.566133pt;}
.y84{bottom:544.032800pt;}
.y32{bottom:544.558133pt;}
.y14b{bottom:546.891467pt;}
.y122{bottom:549.232800pt;}
.yab{bottom:549.366133pt;}
.y104{bottom:549.899467pt;}
.y1f2{bottom:550.558133pt;}
.y5c{bottom:551.232800pt;}
.y1c9{bottom:551.899467pt;}
.yd5{bottom:552.566133pt;}
.y1b0{bottom:553.899467pt;}
.y216{bottom:554.566133pt;}
.y1d6{bottom:555.899467pt;}
.y194{bottom:556.299467pt;}
.y24a{bottom:557.691467pt;}
.y234{bottom:558.566133pt;}
.yeb{bottom:559.232800pt;}
.y31{bottom:561.224800pt;}
.y83{bottom:561.232800pt;}
.y14a{bottom:563.424800pt;}
.y121{bottom:565.899467pt;}
.yaa{bottom:566.032800pt;}
.y103{bottom:566.566133pt;}
.y1f1{bottom:567.224800pt;}
.y5b{bottom:569.232800pt;}
.y1af{bottom:570.566133pt;}
.y215{bottom:571.232800pt;}
.y1d5{bottom:572.566133pt;}
.y193{bottom:572.699467pt;}
.y249{bottom:574.358133pt;}
.y30{bottom:577.891467pt;}
.y233{bottom:579.232800pt;}
.y82{bottom:579.766133pt;}
.y149{bottom:579.958133pt;}
.y120{bottom:582.566133pt;}
.ya9{bottom:582.699467pt;}
.y1f0{bottom:583.891467pt;}
.yea{bottom:583.899467pt;}
.y102{bottom:584.566133pt;}
.y5a{bottom:585.899467pt;}
.y17f{bottom:587.232800pt;}
.y1d4{bottom:589.232800pt;}
.y192{bottom:590.432800pt;}
.y248{bottom:591.024800pt;}
.y214{bottom:591.899467pt;}
.y2f{bottom:594.558133pt;}
.y232{bottom:595.899467pt;}
.y148{bottom:596.491467pt;}
.y81{bottom:596.966133pt;}
.y11f{bottom:599.232800pt;}
.ya8{bottom:599.366133pt;}
.y1ef{bottom:600.558133pt;}
.y101{bottom:601.232800pt;}
.y59{bottom:602.566133pt;}
.y17e{bottom:603.899467pt;}
.y191{bottom:606.832800pt;}
.y247{bottom:607.691467pt;}
.y213{bottom:608.566133pt;}
.yb{bottom:611.024800pt;}
.y2e{bottom:611.224800pt;}
.y231{bottom:612.566133pt;}
.y147{bottom:613.024800pt;}
.y1d3{bottom:613.899467pt;}
.y80{bottom:615.499467pt;}
.y11e{bottom:615.899467pt;}
.ya7{bottom:616.032800pt;}
.ye9{bottom:617.899467pt;}
.y58{bottom:619.232800pt;}
.y17d{bottom:620.566133pt;}
.y1ee{bottom:621.224800pt;}
.y190{bottom:623.232800pt;}
.y246{bottom:624.358133pt;}
.y212{bottom:625.232800pt;}
.y2d{bottom:629.224800pt;}
.y146{bottom:629.558133pt;}
.ya{bottom:631.024800pt;}
.y11d{bottom:632.566133pt;}
.y7f{bottom:632.699467pt;}
.y230{bottom:633.232800pt;}
.ya6{bottom:634.032800pt;}
.ye8{bottom:634.566133pt;}
.y57{bottom:635.899467pt;}
.y17c{bottom:637.232800pt;}
.y1ed{bottom:637.891467pt;}
.y18f{bottom:639.632800pt;}
.y211{bottom:641.899467pt;}
.y1d2{bottom:642.566133pt;}
.y2c{bottom:645.891467pt;}
.y145{bottom:647.424800pt;}
.y245{bottom:649.024800pt;}
.y11c{bottom:649.232800pt;}
.y7e{bottom:649.899467pt;}
.ya5{bottom:650.699467pt;}
.ye7{bottom:651.232800pt;}
.y56{bottom:652.566133pt;}
.y17b{bottom:653.899467pt;}
.y1ec{bottom:654.558133pt;}
.y18e{bottom:656.032800pt;}
.y1d1{bottom:659.232800pt;}
.y2b{bottom:662.558133pt;}
.y210{bottom:662.566133pt;}
.y144{bottom:663.958133pt;}
.y11b{bottom:665.899467pt;}
.y22f{bottom:666.566133pt;}
.y7d{bottom:667.099467pt;}
.ya4{bottom:667.366133pt;}
.ye6{bottom:667.899467pt;}
.y55{bottom:669.232800pt;}
.y17a{bottom:670.566133pt;}
.y1eb{bottom:671.224800pt;}
.y18d{bottom:672.432800pt;}
.y244{bottom:677.691467pt;}
.y2a{bottom:679.224800pt;}
.y20f{bottom:679.232800pt;}
.y143{bottom:680.491467pt;}
.y11a{bottom:682.566133pt;}
.y22e{bottom:683.232800pt;}
.ya3{bottom:684.032800pt;}
.y7c{bottom:684.299467pt;}
.y54{bottom:685.899467pt;}
.y179{bottom:687.232800pt;}
.y1ea{bottom:687.891467pt;}
.y18c{bottom:688.832800pt;}
.y243{bottom:694.358133pt;}
.y29{bottom:695.891467pt;}
.y20e{bottom:695.899467pt;}
.y142{bottom:697.024800pt;}
.y119{bottom:699.232800pt;}
.y22d{bottom:699.899467pt;}
.ya2{bottom:700.699467pt;}
.y7b{bottom:701.499467pt;}
.y53{bottom:702.566133pt;}
.yd4{bottom:703.899467pt;}
.y18b{bottom:705.232800pt;}
.y1e9{bottom:708.558133pt;}
.y28{bottom:712.558133pt;}
.y20d{bottom:712.566133pt;}
.y141{bottom:713.558133pt;}
.y7a{bottom:718.699467pt;}
.y52{bottom:719.232800pt;}
.yc5{bottom:720.566133pt;}
.y18a{bottom:721.632800pt;}
.y118{bottom:723.899467pt;}
.y1e8{bottom:725.224800pt;}
.y27{bottom:729.224800pt;}
.y140{bottom:730.091467pt;}
.y20c{bottom:733.232800pt;}
.y5{bottom:735.323467pt;}
.ya1{bottom:735.366133pt;}
.y51{bottom:735.899467pt;}
.y79{bottom:737.232800pt;}
.y9{bottom:737.691467pt;}
.y189{bottom:738.032800pt;}
.y26{bottom:745.891467pt;}
.y13f{bottom:746.624800pt;}
.y20b{bottom:749.899467pt;}
.ya0{bottom:752.032800pt;}
.y50{bottom:752.566133pt;}
.y78{bottom:753.899467pt;}
.y8{bottom:754.358133pt;}
.y188{bottom:754.432800pt;}
.y4{bottom:760.300800pt;}
.y25{bottom:762.558133pt;}
.y13e{bottom:763.158133pt;}
.y9f{bottom:770.032800pt;}
.y4f{bottom:770.566133pt;}
.y187{bottom:770.832800pt;}
.y7{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.y24{bottom:787.224800pt;}
.y4e{bottom:787.232800pt;}
.y6{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y23{bottom:820.263467pt;}
.h9{height:25.781625pt;}
.hb{height:37.125000pt;}
.h3{height:39.632812pt;}
.hc{height:41.593750pt;}
.ha{height:41.765625pt;}
.h5{height:46.238281pt;}
.h8{height:48.440104pt;}
.h2{height:48.726562pt;}
.h4{height:49.000000pt;}
.hd{height:51.046875pt;}
.h7{height:51.333333pt;}
.h6{height:60.666667pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x6{left:81.259200pt;}
.xe{left:89.569867pt;}
.x7{left:91.207200pt;}
.xa{left:96.377867pt;}
.xb{left:119.055200pt;}
.x9{left:126.613867pt;}
.x8{left:137.667200pt;}
.x11{left:149.756533pt;}
.xf{left:220.980533pt;}
.x12{left:287.056533pt;}
.x10{left:293.089867pt;}
.x3{left:373.161867pt;}
.x2{left:389.608533pt;}
.x5{left:394.097867pt;}
.xc{left:434.107200pt;}
.x4{left:469.683200pt;}
.xd{left:530.444533pt;}
.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; }
  