
    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_9f26385cab8c8c1902e42853.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.281250;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_c0c847176a01bc911ece4e7e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_280315fc81f6473e9b8cf24f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8c149ffbf388a60cab707a96.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-79.919968px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.303539px;}
.ls0{letter-spacing:186.509325px;}
.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;}
}
.ws1{word-spacing:-16.919993px;}
.ws5{word-spacing:-14.347133px;}
.ws2{word-spacing:-14.043594px;}
.ws3{word-spacing:-11.167016px;}
.ws4{word-spacing:-9.136436px;}
.ws0{word-spacing:0.000000px;}
._19{margin-left:-21.468349px;}
._13{margin-left:-6.106012px;}
._3{margin-left:-4.951131px;}
._8{margin-left:-3.921188px;}
._4{margin-left:-2.476836px;}
._1{margin-left:-1.330549px;}
._0{width:1.049987px;}
._2{width:2.637684px;}
._a{width:4.287845px;}
._9{width:5.477325px;}
._7{width:7.114930px;}
._6{width:8.239365px;}
._5{width:9.303630px;}
._11{width:10.320239px;}
._c{width:11.939356px;}
._b{width:13.026037px;}
._10{width:14.051421px;}
._12{width:15.350702px;}
._18{width:17.031639px;}
._f{width:18.881417px;}
._d{width:20.179941px;}
._e{width:21.200765px;}
._17{width:27.425177px;}
._16{width:28.525479px;}
._15{width:36.775229px;}
._14{width:37.856724px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.545745px;}
.fs1{font-size:44.668062px;}
.fs4{font-size:56.174378px;}
.fs0{font-size:67.679973px;}
.fs3{font-size:78.508169px;}
.fs2{font-size:84.599966px;}
.y0{bottom:0.000000px;}
.y9{bottom:106.019958px;}
.y8{bottom:123.119951px;}
.y31{bottom:140.039944px;}
.y150{bottom:140.579944px;}
.y14f{bottom:148.499941px;}
.y30{bottom:156.599937px;}
.y79{bottom:156.959937px;}
.yd7{bottom:157.499937px;}
.y55{bottom:159.299936px;}
.yf2{bottom:163.259935px;}
.yd6{bottom:165.419934px;}
.y2f{bottom:173.159931px;}
.y78{bottom:174.059930px;}
.yd5{bottom:176.939929px;}
.y54{bottom:179.279928px;}
.y77{bottom:181.979927px;}
.yf1{bottom:190.979924px;}
.y76{bottom:193.499923px;}
.y165{bottom:193.859922px;}
.y14e{bottom:194.039922px;}
.y179{bottom:194.399922px;}
.yf0{bottom:198.899920px;}
.y53{bottom:199.259920px;}
.y14d{bottom:201.959919px;}
.y178{bottom:202.319919px;}
.y2e{bottom:203.579919px;}
.yd4{bottom:206.279917px;}
.yc1{bottom:210.419916px;}
.y9f{bottom:210.959916px;}
.y135{bottom:215.459914px;}
.y9e{bottom:218.879912px;}
.y52{bottom:219.239912px;}
.y12c{bottom:219.779912px;}
.y2d{bottom:223.559911px;}
.yd3{bottom:226.259909px;}
.yc0{bottom:227.699909px;}
.yef{bottom:227.879909px;}
.y75{bottom:229.319908px;}
.y9d{bottom:230.399908px;}
.y177{bottom:230.579908px;}
.y14c{bottom:230.939908px;}
.y134{bottom:232.739907px;}
.ybf{bottom:235.439906px;}
.yee{bottom:235.799906px;}
.y14b{bottom:238.859904px;}
.y51{bottom:239.039904px;}
.y12b{bottom:239.759904px;}
.y10e{bottom:242.819903px;}
.y2c{bottom:243.539903px;}
.yd2{bottom:246.239902px;}
.ybe{bottom:246.959901px;}
.yed{bottom:247.319901px;}
.y176{bottom:247.859901px;}
.y74{bottom:249.299900px;}
.y188{bottom:252.359899px;}
.y133{bottom:252.719899px;}
.y175{bottom:255.779898px;}
.y50{bottom:259.019896px;}
.y12a{bottom:259.739896px;}
.y164{bottom:262.079895px;}
.y10d{bottom:262.799895px;}
.y2b{bottom:263.519895px;}
.yec{bottom:265.859894px;}
.ybd{bottom:266.219894px;}
.y14a{bottom:267.119893px;}
.y187{bottom:268.919892px;}
.y73{bottom:269.279892px;}
.y9c{bottom:276.299889px;}
.y163{bottom:278.639889px;}
.y4f{bottom:278.999888px;}
.y129{bottom:279.719888px;}
.y10c{bottom:282.779887px;}
.y2a{bottom:283.499887px;}
.y149{bottom:283.859886px;}
.y186{bottom:285.479886px;}
.yeb{bottom:285.839886px;}
.yd1{bottom:286.199886px;}
.y72{bottom:289.259884px;}
.y132{bottom:292.499883px;}
.y174{bottom:293.939882px;}
.y9b{bottom:295.559882px;}
.y162{bottom:295.919882px;}
.y4e{bottom:298.979880px;}
.y128{bottom:299.699880px;}
.y148{bottom:300.959880px;}
.y185{bottom:302.039879px;}
.y10b{bottom:302.759879px;}
.y29{bottom:303.479879px;}
.y173{bottom:305.459878px;}
.yea{bottom:305.819878px;}
.ybc{bottom:306.179878px;}
.y147{bottom:308.879876px;}
.y71{bottom:309.239876px;}
.y9a{bottom:312.299875px;}
.y130{bottom:312.479875px;}
.y197{bottom:312.839875px;}
.y161{bottom:315.899874px;}
.y4d{bottom:318.959872px;}
.y184{bottom:319.319872px;}
.y131{bottom:320.399872px;}
.y172{bottom:322.019871px;}
.y10a{bottom:322.739871px;}
.y28{bottom:323.459871px;}
.ybb{bottom:325.439870px;}
.yd0{bottom:326.159870px;}
.y70{bottom:329.219868px;}
.y99{bottom:329.399868px;}
.y12f{bottom:331.919867px;}
.y196{bottom:332.819867px;}
.y160{bottom:335.879866px;}
.y146{bottom:337.859865px;}
.y171{bottom:338.579865px;}
.y4c{bottom:338.939864px;}
.y183{bottom:339.299864px;}
.y127{bottom:339.659864px;}
.yba{bottom:341.999863px;}
.y109{bottom:342.719863px;}
.y27{bottom:343.259863px;}
.ye9{bottom:345.779862px;}
.ycf{bottom:346.139862px;}
.y6f{bottom:349.019860px;}
.y98{bottom:349.379860px;}
.y194{bottom:352.799859px;}
.y170{bottom:355.139858px;}
.y15f{bottom:355.859858px;}
.y145{bottom:357.299857px;}
.y4b{bottom:358.919856px;}
.yb9{bottom:359.279856px;}
.y195{bottom:360.539856px;}
.y108{bottom:362.699855px;}
.y26{bottom:363.239855px;}
.ye7{bottom:365.759854px;}
.yce{bottom:365.939854px;}
.y6e{bottom:368.999852px;}
.y97{bottom:369.359852px;}
.y16f{bottom:371.699851px;}
.y193{bottom:372.059851px;}
.ye8{bottom:373.499851px;}
.y126{bottom:375.479850px;}
.y15e{bottom:375.839850px;}
.y4a{bottom:378.899848px;}
.yb8{bottom:379.259848px;}
.y107{bottom:382.679847px;}
.y25{bottom:383.219847px;}
.ye6{bottom:385.019846px;}
.ycd{bottom:385.919846px;}
.y16e{bottom:388.439845px;}
.y192{bottom:388.619845px;}
.y6d{bottom:388.979844px;}
.y96{bottom:389.339844px;}
.y125{bottom:392.039843px;}
.y144{bottom:393.839842px;}
.y15d{bottom:395.819842px;}
.y49{bottom:398.879840px;}
.yb7{bottom:399.239840px;}
.ye5{bottom:402.299839px;}
.y106{bottom:402.479839px;}
.y24{bottom:403.199839px;}
.y16d{bottom:404.999838px;}
.y143{bottom:405.359838px;}
.ycc{bottom:405.899838px;}
.y124{bottom:408.599837px;}
.y6c{bottom:408.959836px;}
.y15c{bottom:415.799834px;}
.y182{bottom:418.499833px;}
.y48{bottom:418.859832px;}
.yb6{bottom:419.219832px;}
.ye4{bottom:422.279831px;}
.y105{bottom:422.459831px;}
.y23{bottom:423.179831px;}
.y123{bottom:425.159830px;}
.ycb{bottom:425.879830px;}
.y12e{bottom:428.579829px;}
.y6b{bottom:428.939828px;}
.y95{bottom:429.299828px;}
.y181{bottom:435.059826px;}
.y15b{bottom:435.779826px;}
.y47{bottom:438.839824px;}
.y122{bottom:441.899823px;}
.ye3{bottom:442.079823px;}
.y104{bottom:442.439823px;}
.y22{bottom:443.159823px;}
.y191{bottom:445.859822px;}
.y6a{bottom:448.919820px;}
.y93{bottom:449.279820px;}
.y142{bottom:450.359820px;}
.y180{bottom:451.619819px;}
.y15a{bottom:455.759818px;}
.y94{bottom:457.019817px;}
.y121{bottom:458.459817px;}
.y46{bottom:458.819816px;}
.yb5{bottom:458.999816px;}
.y141{bottom:461.699815px;}
.ye2{bottom:462.059815px;}
.y103{bottom:462.419815px;}
.y21{bottom:463.139815px;}
.yca{bottom:465.839814px;}
.y17f{bottom:468.179813px;}
.y92{bottom:468.539813px;}
.y69{bottom:468.899812px;}
.y120{bottom:475.019810px;}
.y159{bottom:475.739810px;}
.yb4{bottom:478.439809px;}
.y45{bottom:478.619809px;}
.ye1{bottom:482.039807px;}
.y20{bottom:483.119807px;}
.y17e{bottom:484.739806px;}
.y91{bottom:485.099806px;}
.yc8{bottom:485.819806px;}
.y68{bottom:488.879804px;}
.y11f{bottom:492.299803px;}
.yc9{bottom:493.559803px;}
.yb3{bottom:494.999802px;}
.y158{bottom:495.539802px;}
.y44{bottom:498.599801px;}
.y90{bottom:501.659799px;}
.ye0{bottom:502.019799px;}
.y102{bottom:502.379799px;}
.y1f{bottom:503.099799px;}
.yc7{bottom:505.079798px;}
.y67{bottom:508.859796px;}
.yb2{bottom:512.279795px;}
.y157{bottom:515.519794px;}
.y8f{bottom:518.219793px;}
.y43{bottom:518.579793px;}
.yc6{bottom:521.639791px;}
.yde{bottom:521.999791px;}
.y100{bottom:522.359791px;}
.y1e{bottom:523.079791px;}
.y190{bottom:525.779790px;}
.y66{bottom:528.839788px;}
.ydf{bottom:529.739788px;}
.y101{bottom:530.099788px;}
.yb1{bottom:532.259787px;}
.y8e{bottom:535.499786px;}
.yc5{bottom:538.199785px;}
.y42{bottom:538.559785px;}
.yff{bottom:541.619783px;}
.ydd{bottom:541.979783px;}
.y1d{bottom:543.059783px;}
.y18f{bottom:545.039782px;}
.y65{bottom:548.819780px;}
.yb0{bottom:552.059779px;}
.yc4{bottom:554.759778px;}
.y8d{bottom:555.479778px;}
.yfe{bottom:558.179777px;}
.y41{bottom:558.539777px;}
.y18e{bottom:561.599775px;}
.ydc{bottom:561.959775px;}
.y1c{bottom:563.039775px;}
.y64{bottom:568.799772px;}
.y17d{bottom:569.699772px;}
.yaf{bottom:572.039771px;}
.yfd{bottom:574.739770px;}
.y8c{bottom:575.459770px;}
.y18d{bottom:578.159769px;}
.y40{bottom:578.519769px;}
.ydb{bottom:581.939767px;}
.y1b{bottom:583.019767px;}
.y156{bottom:583.199767px;}
.y63{bottom:588.599765px;}
.yfc{bottom:591.479763px;}
.yae{bottom:592.019763px;}
.y155{bottom:594.719762px;}
.y8b{bottom:595.439762px;}
.y3f{bottom:598.499761px;}
.yd9{bottom:601.919759px;}
.y1a{bottom:602.819759px;}
.yfb{bottom:608.039757px;}
.y62{bottom:608.579757px;}
.yda{bottom:609.659756px;}
.y154{bottom:611.279755px;}
.yad{bottom:611.999755px;}
.y8a{bottom:615.419754px;}
.y3e{bottom:618.479753px;}
.yd8{bottom:621.179752px;}
.y16c{bottom:621.899751px;}
.yfa{bottom:624.599750px;}
.y153{bottom:628.019749px;}
.y61{bottom:628.559749px;}
.yc3{bottom:631.979747px;}
.y89{bottom:635.399746px;}
.y3d{bottom:638.459745px;}
.yf9{bottom:641.879743px;}
.y19{bottom:642.779743px;}
.y152{bottom:644.579742px;}
.y60{bottom:648.539741px;}
.yac{bottom:651.959739px;}
.y88{bottom:655.379738px;}
.y3c{bottom:658.439737px;}
.y151{bottom:661.139736px;}
.yf8{bottom:661.859735px;}
.y18{bottom:662.399735px;}
.y5f{bottom:668.519733px;}
.yaa{bottom:671.939731px;}
.y87{bottom:675.359730px;}
.y3b{bottom:678.419729px;}
.yab{bottom:679.679728px;}
.y16b{bottom:681.479727px;}
.y17c{bottom:681.659727px;}
.y17{bottom:682.739727px;}
.y5e{bottom:688.499725px;}
.ya9{bottom:691.199724px;}
.y11e{bottom:691.919723px;}
.y18c{bottom:694.619722px;}
.y86{bottom:695.339722px;}
.y3a{bottom:698.399721px;}
.y140{bottom:699.659720px;}
.yf7{bottom:701.639719px;}
.y16{bottom:702.719719px;}
.ya8{bottom:707.759717px;}
.y5d{bottom:708.479717px;}
.y13f{bottom:711.179716px;}
.y11d{bottom:711.899715px;}
.y85{bottom:715.319714px;}
.y39{bottom:718.379713px;}
.yf5{bottom:721.619711px;}
.y15{bottom:722.699711px;}
.ya7{bottom:725.039710px;}
.y13e{bottom:727.739709px;}
.y5c{bottom:728.459709px;}
.yf6{bottom:729.539708px;}
.y11c{bottom:731.879707px;}
.y84{bottom:735.299706px;}
.y38{bottom:738.179705px;}
.yf4{bottom:740.879704px;}
.y16a{bottom:741.599703px;}
.y14{bottom:742.679703px;}
.y13d{bottom:744.299702px;}
.ya6{bottom:745.019702px;}
.y12d{bottom:748.439701px;}
.y17b{bottom:749.339700px;}
.y11b{bottom:751.859699px;}
.y37{bottom:758.159697px;}
.y17a{bottom:760.859696px;}
.y13c{bottom:761.579695px;}
.y13{bottom:763.379695px;}
.ya5{bottom:764.999694px;}
.y18b{bottom:767.699693px;}
.y5b{bottom:768.419693px;}
.y11a{bottom:771.839691px;}
.y83{bottom:775.079690px;}
.y36{bottom:778.139689px;}
.y13b{bottom:781.559687px;}
.yc2{bottom:784.979686px;}
.y12{bottom:786.239686px;}
.y59{bottom:788.399685px;}
.y119{bottom:791.639683px;}
.y82{bottom:794.519682px;}
.y5a{bottom:796.139682px;}
.y35{bottom:798.119681px;}
.y13a{bottom:801.539679px;}
.ya4{bottom:804.959678px;}
.y58{bottom:807.659677px;}
.y11{bottom:808.559677px;}
.y81{bottom:811.079676px;}
.y118{bottom:811.619675px;}
.y34{bottom:818.099673px;}
.y139{bottom:821.519671px;}
.y57{bottom:824.219670px;}
.ya2{bottom:824.939670px;}
.y80{bottom:827.639669px;}
.y10{bottom:829.079668px;}
.y117{bottom:831.599667px;}
.ya3{bottom:832.679667px;}
.yf3{bottom:837.719665px;}
.y33{bottom:838.079665px;}
.y56{bottom:840.779664px;}
.y137{bottom:841.499663px;}
.ya1{bottom:844.199662px;}
.y7f{bottom:844.919662px;}
.y138{bottom:849.239660px;}
.y116{bottom:851.579659px;}
.yf{bottom:853.739659px;}
.y32{bottom:858.059657px;}
.ya0{bottom:860.759656px;}
.y18a{bottom:864.899654px;}
.y115{bottom:871.559651px;}
.ye{bottom:878.039649px;}
.y169{bottom:881.459647px;}
.y7e{bottom:884.699646px;}
.y113{bottom:891.539643px;}
.yd{bottom:898.019641px;}
.y114{bottom:899.279640px;}
.y167{bottom:901.439639px;}
.y7c{bottom:904.679638px;}
.y168{bottom:909.179636px;}
.y112{bottom:910.799636px;}
.y7d{bottom:912.599635px;}
.yc{bottom:917.999633px;}
.y166{bottom:920.699632px;}
.y7b{bottom:924.119630px;}
.y189{bottom:924.659630px;}
.y111{bottom:927.359629px;}
.yb{bottom:937.979625px;}
.y7a{bottom:940.679624px;}
.y110{bottom:943.919622px;}
.ya{bottom:957.959617px;}
.y10f{bottom:960.659616px;}
.y136{bottom:965.699614px;}
.y7{bottom:977.219609px;}
.y6{bottom:994.319602px;}
.y5{bottom:1011.419595px;}
.y4{bottom:1029.059588px;}
.y3{bottom:1047.239581px;}
.y2{bottom:1058.939576px;}
.y1{bottom:1072.799571px;}
.ha{height:35.867650px;}
.h2{height:43.817450px;}
.h9{height:43.839260px;}
.h8{height:55.132080px;}
.h1{height:66.391145px;}
.h3{height:66.424192px;}
.h7{height:68.208723px;}
.h6{height:77.013140px;}
.h5{height:77.051474px;}
.h4{height:85.260903px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:146.879941px;}
.xa{left:197.639673px;}
.x23{left:202.139919px;}
.xf{left:203.219919px;}
.x19{left:206.819917px;}
.x28{left:208.799916px;}
.x10{left:213.299915px;}
.xb{left:248.399901px;}
.x44{left:262.799895px;}
.x2c{left:271.079892px;}
.x45{left:273.959890px;}
.x2d{left:275.219890px;}
.x5{left:284.759886px;}
.x16{left:287.099885px;}
.x17{left:291.419883px;}
.x34{left:294.839882px;}
.x18{left:296.999881px;}
.x35{left:305.999878px;}
.x6{left:331.739930px;}
.x29{left:337.679865px;}
.x2a{left:348.839860px;}
.x20{left:359.999856px;}
.x21{left:364.319854px;}
.x22{left:369.899852px;}
.x8{left:371.879851px;}
.x46{left:401.759839px;}
.x2e{left:404.639838px;}
.x2f{left:408.959836px;}
.x30{left:420.119832px;}
.x11{left:478.979808px;}
.x41{left:483.119807px;}
.x12{left:484.559806px;}
.x42{left:485.999806px;}
.x13{left:489.239804px;}
.x14{left:493.739803px;}
.x43{left:497.159801px;}
.x15{left:499.319800px;}
.x3c{left:504.359798px;}
.x26{left:505.799798px;}
.x3d{left:508.499797px;}
.x27{left:510.119796px;}
.x39{left:519.299792px;}
.x1c{left:521.099792px;}
.x3a{left:523.439791px;}
.x1d{left:526.679789px;}
.x3b{left:534.599786px;}
.x9{left:544.859782px;}
.x1e{left:547.199781px;}
.x1f{left:552.779779px;}
.x3e{left:565.019774px;}
.x3f{left:569.339772px;}
.x24{left:574.019770px;}
.x7{left:577.079769px;}
.x40{left:580.499768px;}
.x25{left:585.179766px;}
.x31{left:600.119760px;}
.x32{left:604.799758px;}
.x33{left:615.959754px;}
.x47{left:625.139750px;}
.x48{left:629.459748px;}
.x49{left:640.619744px;}
.x2{left:643.859742px;}
.xc{left:655.739738px;}
.xd{left:660.059736px;}
.x1a{left:663.299735px;}
.xe{left:665.639734px;}
.x1b{left:668.879732px;}
.x36{left:681.299727px;}
.x37{left:685.439726px;}
.x38{left:696.599721px;}
.x2b{left:728.099709px;}
.x4{left:736.559705px;}
.x3{left:745.019654px;}
@media print{
.v1{vertical-align:-71.039972pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.269812pt;}
.ls0{letter-spacing:165.786067pt;}
.ws1{word-spacing:-15.039994pt;}
.ws5{word-spacing:-12.753007pt;}
.ws2{word-spacing:-12.483195pt;}
.ws3{word-spacing:-9.926236pt;}
.ws4{word-spacing:-8.121277pt;}
.ws0{word-spacing:0.000000pt;}
._19{margin-left:-19.082977pt;}
._13{margin-left:-5.427566pt;}
._3{margin-left:-4.401005pt;}
._8{margin-left:-3.485501pt;}
._4{margin-left:-2.201632pt;}
._1{margin-left:-1.182710pt;}
._0{width:0.933322pt;}
._2{width:2.344608pt;}
._a{width:3.811418pt;}
._9{width:4.868734pt;}
._7{width:6.324382pt;}
._6{width:7.323880pt;}
._5{width:8.269894pt;}
._11{width:9.173546pt;}
._c{width:10.612761pt;}
._b{width:11.578700pt;}
._10{width:12.490152pt;}
._12{width:13.645069pt;}
._18{width:15.139235pt;}
._f{width:16.783482pt;}
._d{width:17.937725pt;}
._e{width:18.845124pt;}
._17{width:24.377935pt;}
._16{width:25.355981pt;}
._15{width:32.689092pt;}
._14{width:33.650421pt;}
.fs5{font-size:32.485107pt;}
.fs1{font-size:39.704944pt;}
.fs4{font-size:49.932780pt;}
.fs0{font-size:60.159976pt;}
.fs3{font-size:69.785039pt;}
.fs2{font-size:75.199970pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:94.239962pt;}
.y8{bottom:109.439956pt;}
.y31{bottom:124.479950pt;}
.y150{bottom:124.959950pt;}
.y14f{bottom:131.999947pt;}
.y30{bottom:139.199944pt;}
.y79{bottom:139.519944pt;}
.yd7{bottom:139.999944pt;}
.y55{bottom:141.599943pt;}
.yf2{bottom:145.119942pt;}
.yd6{bottom:147.039941pt;}
.y2f{bottom:153.919938pt;}
.y78{bottom:154.719938pt;}
.yd5{bottom:157.279937pt;}
.y54{bottom:159.359936pt;}
.y77{bottom:161.759935pt;}
.yf1{bottom:169.759932pt;}
.y76{bottom:171.999931pt;}
.y165{bottom:172.319931pt;}
.y14e{bottom:172.479931pt;}
.y179{bottom:172.799931pt;}
.yf0{bottom:176.799929pt;}
.y53{bottom:177.119929pt;}
.y14d{bottom:179.519928pt;}
.y178{bottom:179.839928pt;}
.y2e{bottom:180.959928pt;}
.yd4{bottom:183.359927pt;}
.yc1{bottom:187.039925pt;}
.y9f{bottom:187.519925pt;}
.y135{bottom:191.519923pt;}
.y9e{bottom:194.559922pt;}
.y52{bottom:194.879922pt;}
.y12c{bottom:195.359922pt;}
.y2d{bottom:198.719921pt;}
.yd3{bottom:201.119920pt;}
.yc0{bottom:202.399919pt;}
.yef{bottom:202.559919pt;}
.y75{bottom:203.839918pt;}
.y9d{bottom:204.799918pt;}
.y177{bottom:204.959918pt;}
.y14c{bottom:205.279918pt;}
.y134{bottom:206.879917pt;}
.ybf{bottom:209.279916pt;}
.yee{bottom:209.599916pt;}
.y14b{bottom:212.319915pt;}
.y51{bottom:212.479915pt;}
.y12b{bottom:213.119915pt;}
.y10e{bottom:215.839914pt;}
.y2c{bottom:216.479913pt;}
.yd2{bottom:218.879912pt;}
.ybe{bottom:219.519912pt;}
.yed{bottom:219.839912pt;}
.y176{bottom:220.319912pt;}
.y74{bottom:221.599911pt;}
.y188{bottom:224.319910pt;}
.y133{bottom:224.639910pt;}
.y175{bottom:227.359909pt;}
.y50{bottom:230.239908pt;}
.y12a{bottom:230.879908pt;}
.y164{bottom:232.959907pt;}
.y10d{bottom:233.599907pt;}
.y2b{bottom:234.239906pt;}
.yec{bottom:236.319905pt;}
.ybd{bottom:236.639905pt;}
.y14a{bottom:237.439905pt;}
.y187{bottom:239.039904pt;}
.y73{bottom:239.359904pt;}
.y9c{bottom:245.599902pt;}
.y163{bottom:247.679901pt;}
.y4f{bottom:247.999901pt;}
.y129{bottom:248.639901pt;}
.y10c{bottom:251.359899pt;}
.y2a{bottom:251.999899pt;}
.y149{bottom:252.319899pt;}
.y186{bottom:253.759898pt;}
.yeb{bottom:254.079898pt;}
.yd1{bottom:254.399898pt;}
.y72{bottom:257.119897pt;}
.y132{bottom:259.999896pt;}
.y174{bottom:261.279895pt;}
.y9b{bottom:262.719895pt;}
.y162{bottom:263.039895pt;}
.y4e{bottom:265.759894pt;}
.y128{bottom:266.399893pt;}
.y148{bottom:267.519893pt;}
.y185{bottom:268.479893pt;}
.y10b{bottom:269.119892pt;}
.y29{bottom:269.759892pt;}
.y173{bottom:271.519891pt;}
.yea{bottom:271.839891pt;}
.ybc{bottom:272.159891pt;}
.y147{bottom:274.559890pt;}
.y71{bottom:274.879890pt;}
.y9a{bottom:277.599889pt;}
.y130{bottom:277.759889pt;}
.y197{bottom:278.079889pt;}
.y161{bottom:280.799888pt;}
.y4d{bottom:283.519887pt;}
.y184{bottom:283.839886pt;}
.y131{bottom:284.799886pt;}
.y172{bottom:286.239886pt;}
.y10a{bottom:286.879885pt;}
.y28{bottom:287.519885pt;}
.ybb{bottom:289.279884pt;}
.yd0{bottom:289.919884pt;}
.y70{bottom:292.639883pt;}
.y99{bottom:292.799883pt;}
.y12f{bottom:295.039882pt;}
.y196{bottom:295.839882pt;}
.y160{bottom:298.559881pt;}
.y146{bottom:300.319880pt;}
.y171{bottom:300.959880pt;}
.y4c{bottom:301.279879pt;}
.y183{bottom:301.599879pt;}
.y127{bottom:301.919879pt;}
.yba{bottom:303.999878pt;}
.y109{bottom:304.639878pt;}
.y27{bottom:305.119878pt;}
.ye9{bottom:307.359877pt;}
.ycf{bottom:307.679877pt;}
.y6f{bottom:310.239876pt;}
.y98{bottom:310.559876pt;}
.y194{bottom:313.599875pt;}
.y170{bottom:315.679874pt;}
.y15f{bottom:316.319873pt;}
.y145{bottom:317.599873pt;}
.y4b{bottom:319.039872pt;}
.yb9{bottom:319.359872pt;}
.y195{bottom:320.479872pt;}
.y108{bottom:322.399871pt;}
.y26{bottom:322.879871pt;}
.ye7{bottom:325.119870pt;}
.yce{bottom:325.279870pt;}
.y6e{bottom:327.999869pt;}
.y97{bottom:328.319869pt;}
.y16f{bottom:330.399868pt;}
.y193{bottom:330.719868pt;}
.ye8{bottom:331.999867pt;}
.y126{bottom:333.759866pt;}
.y15e{bottom:334.079866pt;}
.y4a{bottom:336.799865pt;}
.yb8{bottom:337.119865pt;}
.y107{bottom:340.159864pt;}
.y25{bottom:340.639864pt;}
.ye6{bottom:342.239863pt;}
.ycd{bottom:343.039863pt;}
.y16e{bottom:345.279862pt;}
.y192{bottom:345.439862pt;}
.y6d{bottom:345.759862pt;}
.y96{bottom:346.079862pt;}
.y125{bottom:348.479861pt;}
.y144{bottom:350.079860pt;}
.y15d{bottom:351.839859pt;}
.y49{bottom:354.559858pt;}
.yb7{bottom:354.879858pt;}
.ye5{bottom:357.599857pt;}
.y106{bottom:357.759857pt;}
.y24{bottom:358.399857pt;}
.y16d{bottom:359.999856pt;}
.y143{bottom:360.319856pt;}
.ycc{bottom:360.799856pt;}
.y124{bottom:363.199855pt;}
.y6c{bottom:363.519855pt;}
.y15c{bottom:369.599852pt;}
.y182{bottom:371.999851pt;}
.y48{bottom:372.319851pt;}
.yb6{bottom:372.639851pt;}
.ye4{bottom:375.359850pt;}
.y105{bottom:375.519850pt;}
.y23{bottom:376.159850pt;}
.y123{bottom:377.919849pt;}
.ycb{bottom:378.559849pt;}
.y12e{bottom:380.959848pt;}
.y6b{bottom:381.279847pt;}
.y95{bottom:381.599847pt;}
.y181{bottom:386.719845pt;}
.y15b{bottom:387.359845pt;}
.y47{bottom:390.079844pt;}
.y122{bottom:392.799843pt;}
.ye3{bottom:392.959843pt;}
.y104{bottom:393.279843pt;}
.y22{bottom:393.919842pt;}
.y191{bottom:396.319841pt;}
.y6a{bottom:399.039840pt;}
.y93{bottom:399.359840pt;}
.y142{bottom:400.319840pt;}
.y180{bottom:401.439839pt;}
.y15a{bottom:405.119838pt;}
.y94{bottom:406.239838pt;}
.y121{bottom:407.519837pt;}
.y46{bottom:407.839837pt;}
.yb5{bottom:407.999837pt;}
.y141{bottom:410.399836pt;}
.ye2{bottom:410.719836pt;}
.y103{bottom:411.039836pt;}
.y21{bottom:411.679835pt;}
.yca{bottom:414.079834pt;}
.y17f{bottom:416.159834pt;}
.y92{bottom:416.479833pt;}
.y69{bottom:416.799833pt;}
.y120{bottom:422.239831pt;}
.y159{bottom:422.879831pt;}
.yb4{bottom:425.279830pt;}
.y45{bottom:425.439830pt;}
.ye1{bottom:428.479829pt;}
.y20{bottom:429.439828pt;}
.y17e{bottom:430.879828pt;}
.y91{bottom:431.199828pt;}
.yc8{bottom:431.839827pt;}
.y68{bottom:434.559826pt;}
.y11f{bottom:437.599825pt;}
.yc9{bottom:438.719825pt;}
.yb3{bottom:439.999824pt;}
.y158{bottom:440.479824pt;}
.y44{bottom:443.199823pt;}
.y90{bottom:445.919822pt;}
.ye0{bottom:446.239822pt;}
.y102{bottom:446.559821pt;}
.y1f{bottom:447.199821pt;}
.yc7{bottom:448.959820pt;}
.y67{bottom:452.319819pt;}
.yb2{bottom:455.359818pt;}
.y157{bottom:458.239817pt;}
.y8f{bottom:460.639816pt;}
.y43{bottom:460.959816pt;}
.yc6{bottom:463.679815pt;}
.yde{bottom:463.999814pt;}
.y100{bottom:464.319814pt;}
.y1e{bottom:464.959814pt;}
.y190{bottom:467.359813pt;}
.y66{bottom:470.079812pt;}
.ydf{bottom:470.879812pt;}
.y101{bottom:471.199812pt;}
.yb1{bottom:473.119811pt;}
.y8e{bottom:475.999810pt;}
.yc5{bottom:478.399809pt;}
.y42{bottom:478.719809pt;}
.yff{bottom:481.439807pt;}
.ydd{bottom:481.759807pt;}
.y1d{bottom:482.719807pt;}
.y18f{bottom:484.479806pt;}
.y65{bottom:487.839805pt;}
.yb0{bottom:490.719804pt;}
.yc4{bottom:493.119803pt;}
.y8d{bottom:493.759802pt;}
.yfe{bottom:496.159802pt;}
.y41{bottom:496.479801pt;}
.y18e{bottom:499.199800pt;}
.ydc{bottom:499.519800pt;}
.y1c{bottom:500.479800pt;}
.y64{bottom:505.599798pt;}
.y17d{bottom:506.399797pt;}
.yaf{bottom:508.479797pt;}
.yfd{bottom:510.879796pt;}
.y8c{bottom:511.519795pt;}
.y18d{bottom:513.919794pt;}
.y40{bottom:514.239794pt;}
.ydb{bottom:517.279793pt;}
.y1b{bottom:518.239793pt;}
.y156{bottom:518.399793pt;}
.y63{bottom:523.199791pt;}
.yfc{bottom:525.759790pt;}
.yae{bottom:526.239790pt;}
.y155{bottom:528.639789pt;}
.y8b{bottom:529.279788pt;}
.y3f{bottom:531.999787pt;}
.yd9{bottom:535.039786pt;}
.y1a{bottom:535.839786pt;}
.yfb{bottom:540.479784pt;}
.y62{bottom:540.959784pt;}
.yda{bottom:541.919783pt;}
.y154{bottom:543.359783pt;}
.yad{bottom:543.999782pt;}
.y8a{bottom:547.039781pt;}
.y3e{bottom:549.759780pt;}
.yd8{bottom:552.159779pt;}
.y16c{bottom:552.799779pt;}
.yfa{bottom:555.199778pt;}
.y153{bottom:558.239777pt;}
.y61{bottom:558.719777pt;}
.yc3{bottom:561.759775pt;}
.y89{bottom:564.799774pt;}
.y3d{bottom:567.519773pt;}
.yf9{bottom:570.559772pt;}
.y19{bottom:571.359771pt;}
.y152{bottom:572.959771pt;}
.y60{bottom:576.479769pt;}
.yac{bottom:579.519768pt;}
.y88{bottom:582.559767pt;}
.y3c{bottom:585.279766pt;}
.y151{bottom:587.679765pt;}
.yf8{bottom:588.319765pt;}
.y18{bottom:588.799764pt;}
.y5f{bottom:594.239762pt;}
.yaa{bottom:597.279761pt;}
.y87{bottom:600.319760pt;}
.y3b{bottom:603.039759pt;}
.yab{bottom:604.159758pt;}
.y16b{bottom:605.759758pt;}
.y17c{bottom:605.919758pt;}
.y17{bottom:606.879757pt;}
.y5e{bottom:611.999755pt;}
.ya9{bottom:614.399754pt;}
.y11e{bottom:615.039754pt;}
.y18c{bottom:617.439753pt;}
.y86{bottom:618.079753pt;}
.y3a{bottom:620.799752pt;}
.y140{bottom:621.919751pt;}
.yf7{bottom:623.679751pt;}
.y16{bottom:624.639750pt;}
.ya8{bottom:629.119748pt;}
.y5d{bottom:629.759748pt;}
.y13f{bottom:632.159747pt;}
.y11d{bottom:632.799747pt;}
.y85{bottom:635.839746pt;}
.y39{bottom:638.559745pt;}
.yf5{bottom:641.439743pt;}
.y15{bottom:642.399743pt;}
.ya7{bottom:644.479742pt;}
.y13e{bottom:646.879741pt;}
.y5c{bottom:647.519741pt;}
.yf6{bottom:648.479741pt;}
.y11c{bottom:650.559740pt;}
.y84{bottom:653.599739pt;}
.y38{bottom:656.159738pt;}
.yf4{bottom:658.559737pt;}
.y16a{bottom:659.199736pt;}
.y14{bottom:660.159736pt;}
.y13d{bottom:661.599735pt;}
.ya6{bottom:662.239735pt;}
.y12d{bottom:665.279734pt;}
.y17b{bottom:666.079734pt;}
.y11b{bottom:668.319733pt;}
.y37{bottom:673.919730pt;}
.y17a{bottom:676.319729pt;}
.y13c{bottom:676.959729pt;}
.y13{bottom:678.559729pt;}
.ya5{bottom:679.999728pt;}
.y18b{bottom:682.399727pt;}
.y5b{bottom:683.039727pt;}
.y11a{bottom:686.079726pt;}
.y83{bottom:688.959724pt;}
.y36{bottom:691.679723pt;}
.y13b{bottom:694.719722pt;}
.yc2{bottom:697.759721pt;}
.y12{bottom:698.879720pt;}
.y59{bottom:700.799720pt;}
.y119{bottom:703.679719pt;}
.y82{bottom:706.239718pt;}
.y5a{bottom:707.679717pt;}
.y35{bottom:709.439716pt;}
.y13a{bottom:712.479715pt;}
.ya4{bottom:715.519714pt;}
.y58{bottom:717.919713pt;}
.y11{bottom:718.719713pt;}
.y81{bottom:720.959712pt;}
.y118{bottom:721.439711pt;}
.y34{bottom:727.199709pt;}
.y139{bottom:730.239708pt;}
.y57{bottom:732.639707pt;}
.ya2{bottom:733.279707pt;}
.y80{bottom:735.679706pt;}
.y10{bottom:736.959705pt;}
.y117{bottom:739.199704pt;}
.ya3{bottom:740.159704pt;}
.yf3{bottom:744.639702pt;}
.y33{bottom:744.959702pt;}
.y56{bottom:747.359701pt;}
.y137{bottom:747.999701pt;}
.ya1{bottom:750.399700pt;}
.y7f{bottom:751.039700pt;}
.y138{bottom:754.879698pt;}
.y116{bottom:756.959697pt;}
.yf{bottom:758.879696pt;}
.y32{bottom:762.719695pt;}
.ya0{bottom:765.119694pt;}
.y18a{bottom:768.799692pt;}
.y115{bottom:774.719690pt;}
.ye{bottom:780.479688pt;}
.y169{bottom:783.519687pt;}
.y7e{bottom:786.399685pt;}
.y113{bottom:792.479683pt;}
.yd{bottom:798.239681pt;}
.y114{bottom:799.359680pt;}
.y167{bottom:801.279679pt;}
.y7c{bottom:804.159678pt;}
.y168{bottom:808.159677pt;}
.y112{bottom:809.599676pt;}
.y7d{bottom:811.199676pt;}
.yc{bottom:815.999674pt;}
.y166{bottom:818.399673pt;}
.y7b{bottom:821.439671pt;}
.y189{bottom:821.919671pt;}
.y111{bottom:824.319670pt;}
.yb{bottom:833.759666pt;}
.y7a{bottom:836.159666pt;}
.y110{bottom:839.039664pt;}
.ya{bottom:851.519659pt;}
.y10f{bottom:853.919658pt;}
.y136{bottom:858.399657pt;}
.y7{bottom:868.639653pt;}
.y6{bottom:883.839646pt;}
.y5{bottom:899.039640pt;}
.y4{bottom:914.719634pt;}
.y3{bottom:930.879628pt;}
.y2{bottom:941.279623pt;}
.y1{bottom:953.599619pt;}
.ha{height:31.882356pt;}
.h2{height:38.948844pt;}
.h9{height:38.968231pt;}
.h8{height:49.006293pt;}
.h1{height:59.014351pt;}
.h3{height:59.043726pt;}
.h7{height:60.629976pt;}
.h6{height:68.456124pt;}
.h5{height:68.490199pt;}
.h4{height:75.787470pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:130.559948pt;}
.xa{left:175.679710pt;}
.x23{left:179.679928pt;}
.xf{left:180.639928pt;}
.x19{left:183.839926pt;}
.x28{left:185.599926pt;}
.x10{left:189.599924pt;}
.xb{left:220.799912pt;}
.x44{left:233.599907pt;}
.x2c{left:240.959904pt;}
.x45{left:243.519903pt;}
.x2d{left:244.639902pt;}
.x5{left:253.119899pt;}
.x16{left:255.199898pt;}
.x17{left:259.039896pt;}
.x34{left:262.079895pt;}
.x18{left:263.999894pt;}
.x35{left:271.999891pt;}
.x6{left:294.879937pt;}
.x29{left:300.159880pt;}
.x2a{left:310.079876pt;}
.x20{left:319.999872pt;}
.x21{left:323.839870pt;}
.x22{left:328.799868pt;}
.x8{left:330.559868pt;}
.x46{left:357.119857pt;}
.x2e{left:359.679856pt;}
.x2f{left:363.519855pt;}
.x30{left:373.439851pt;}
.x11{left:425.759830pt;}
.x41{left:429.439828pt;}
.x12{left:430.719828pt;}
.x42{left:431.999827pt;}
.x13{left:434.879826pt;}
.x14{left:438.879824pt;}
.x43{left:441.919823pt;}
.x15{left:443.839822pt;}
.x3c{left:448.319821pt;}
.x26{left:449.599820pt;}
.x3d{left:451.999819pt;}
.x27{left:453.439819pt;}
.x39{left:461.599815pt;}
.x1c{left:463.199815pt;}
.x3a{left:465.279814pt;}
.x1d{left:468.159813pt;}
.x3b{left:475.199810pt;}
.x9{left:484.319806pt;}
.x1e{left:486.399805pt;}
.x1f{left:491.359803pt;}
.x3e{left:502.239799pt;}
.x3f{left:506.079798pt;}
.x24{left:510.239796pt;}
.x7{left:512.959795pt;}
.x40{left:515.999794pt;}
.x25{left:520.159792pt;}
.x31{left:533.439787pt;}
.x32{left:537.599785pt;}
.x33{left:547.519781pt;}
.x47{left:555.679778pt;}
.x48{left:559.519776pt;}
.x49{left:569.439772pt;}
.x2{left:572.319771pt;}
.xc{left:582.879767pt;}
.xd{left:586.719765pt;}
.x1a{left:589.599764pt;}
.xe{left:591.679763pt;}
.x1b{left:594.559762pt;}
.x36{left:605.599758pt;}
.x37{left:609.279756pt;}
.x38{left:619.199752pt;}
.x2b{left:647.199741pt;}
.x4{left:654.719738pt;}
.x3{left:662.239692pt;}
}




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