
    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_997ca64947e3568ff323215c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_8fae3f98e641dc4b4fab9cd7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_fc622133c9bc76b9255420a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_2b1fa8c7afbbe9f4c686c23e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.754395;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_5fdd40349f60351ee09feae4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754395;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:ff6;src:url('chunks/assets/font_997ca64947e3568ff323215c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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:ff7;src:url('chunks/assets/font_60e7b2f5c0cc730d5b1a5b2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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);}
.v4{vertical-align:-30.959947px;}
.v2{vertical-align:-29.519920px;}
.v3{vertical-align:-2.879873px;}
.v6{vertical-align:-1.439936px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.439936px;}
.v5{vertical-align:20.880194px;}
.v8{vertical-align:36.719878px;}
.v1{vertical-align:44.639900px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.110154px;}
.ls3{letter-spacing:0.221027px;}
.lse{letter-spacing:0.221033px;}
.ls10{letter-spacing:0.288059px;}
.ls18{letter-spacing:0.518387px;}
.ls7{letter-spacing:53.645470px;}
.lsc{letter-spacing:69.485514px;}
.ls13{letter-spacing:71.346056px;}
.ls17{letter-spacing:83.585809px;}
.ls14{letter-spacing:84.425891px;}
.ls16{letter-spacing:85.206099px;}
.ls12{letter-spacing:93.666006px;}
.ls15{letter-spacing:96.545975px;}
.ls5{letter-spacing:98.465364px;}
.ls9{letter-spacing:104.945450px;}
.ls8{letter-spacing:109.985413px;}
.ls4{letter-spacing:124.385341px;}
.lsf{letter-spacing:127.613921px;}
.lsd{letter-spacing:148.145234px;}
.lsa{letter-spacing:167.585305px;}
.ls6{letter-spacing:169.025247px;}
.lsb{letter-spacing:246.065031px;}
.ls1f{letter-spacing:272.345463px;}
.ls22{letter-spacing:295.265454px;}
.ls20{letter-spacing:300.305411px;}
.ls21{letter-spacing:306.965497px;}
.ls19{letter-spacing:445.001175px;}
.ls1a{letter-spacing:489.640986px;}
.ls1b{letter-spacing:496.120982px;}
.ls1c{letter-spacing:517.720964px;}
.ls1d{letter-spacing:527.800896px;}
.ls2{letter-spacing:531.916316px;}
.ls1e{letter-spacing:598.564804px;}
.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;}
}
.ws6{word-spacing:-20.087950px;}
.ws4{word-spacing:-19.871950px;}
.ws5{word-spacing:-16.672998px;}
.ws3{word-spacing:-13.499102px;}
.ws2{word-spacing:-13.458926px;}
.ws1{word-spacing:-13.314207px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-3.828296px;}
._12{margin-left:-2.795837px;}
._1{margin-left:-1.007997px;}
._0{width:1.439996px;}
._b{width:2.735993px;}
._6{width:4.103990px;}
._a{width:5.615986px;}
._7{width:6.695983px;}
._8{width:8.135980px;}
._d{width:10.007975px;}
._3{width:11.015972px;}
._4{width:12.815968px;}
._5{width:13.967965px;}
._c{width:15.695961px;}
._19{width:17.321732px;}
._9{width:18.431954px;}
._10{width:21.239947px;}
._16{width:22.607943px;}
._1b{width:23.903940px;}
._15{width:25.232956px;}
._1a{width:26.246916px;}
._e{width:27.470913px;}
._14{width:29.641258px;}
._11{width:31.126590px;}
._33{width:33.263917px;}
._35{width:35.063912px;}
._13{width:36.575909px;}
._38{width:37.583906px;}
._30{width:39.599901px;}
._3d{width:40.799868px;}
._3c{width:42.047895px;}
._39{width:43.271892px;}
._34{width:45.231290px;}
._2f{width:48.023880px;}
._f{width:51.623871px;}
._17{width:53.063867px;}
._18{width:54.431864px;}
._3e{width:59.903850px;}
._36{width:61.991851px;}
._31{width:66.455834px;}
._32{width:67.463831px;}
._37{width:82.363708px;}
._3b{width:87.335782px;}
._3a{width:88.343779px;}
._2e{width:123.316702px;}
._25{width:255.170044px;}
._1f{width:272.371437px;}
._24{width:281.791456px;}
._22{width:296.011390px;}
._20{width:301.771508px;}
._28{width:305.478394px;}
._21{width:306.991285px;}
._2b{width:329.118353px;}
._29{width:334.878279px;}
._2a{width:340.098422px;}
._1e{width:496.648242px;}
._1d{width:531.221140px;}
._23{width:541.050609px;}
._26{width:547.239702px;}
._2d{width:550.331092px;}
._27{width:586.547308px;}
._2c{width:596.247885px;}
._1c{width:677.459554px;}
.fc7{color:rgb(0,128,128);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(13,119,110);}
.fc4{color:rgb(0,103,120);}
.fc3{color:rgb(33,37,41);}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239879px;}
.fs5{font-size:48.383879px;}
.fs0{font-size:59.759851px;}
.fs6{font-size:59.903850px;}
.fs3{font-size:66.239834px;}
.fs1{font-size:71.999820px;}
.fs2{font-size:72.143820px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.498183px;}
.y85{bottom:8.999978px;}
.y3{bottom:23.759890px;}
.y31{bottom:29.879900px;}
.y30{bottom:51.839867px;}
.y4{bottom:54.359849px;}
.ye4{bottom:72.929810px;}
.y2f{bottom:73.289794px;}
.ya6{bottom:79.589798px;}
.y146{bottom:81.389812px;}
.ye3{bottom:82.109780px;}
.y115{bottom:83.009741px;}
.y2e{bottom:95.249762px;}
.ya5{bottom:101.729756px;}
.y82{bottom:101.909750px;}
.y145{bottom:103.529680px;}
.y114{bottom:105.149701px;}
.ye2{bottom:112.889733px;}
.y81{bottom:116.489668px;}
.y2d{bottom:117.389722px;}
.ya4{bottom:123.869624px;}
.y144{bottom:125.489646px;}
.y113{bottom:127.109667px;}
.y80{bottom:131.249672px;}
.y84{bottom:131.429664px;}
.ye1{bottom:134.669615px;}
.y2c{bottom:139.529590px;}
.ya3{bottom:145.829592px;}
.y7f{bottom:146.009584px;}
.y143{bottom:147.629605px;}
.y112{bottom:149.249627px;}
.ye0{bottom:156.089607px;}
.y7e{bottom:160.769588px;}
.y2b{bottom:161.489556px;}
.y83{bottom:164.549607px;}
.ya2{bottom:167.969552px;}
.y142{bottom:169.589573px;}
.y111{bottom:171.209503px;}
.ydf{bottom:177.509505px;}
.y7c{bottom:181.109532px;}
.y2a{bottom:183.629515px;}
.ya1{bottom:189.929518px;}
.y141{bottom:192.449501px;}
.y110{bottom:193.349461px;}
.y7b{bottom:195.869444px;}
.yde{bottom:198.389519px;}
.y29{bottom:205.769475px;}
.y7a{bottom:210.629448px;}
.ya0{bottom:212.069477px;}
.y140{bottom:213.869399px;}
.y10f{bottom:215.489421px;}
.ydd{bottom:216.749458px;}
.ydb{bottom:217.109442px;}
.y79{bottom:225.389452px;}
.y7d{bottom:225.929428px;}
.y28{bottom:227.729441px;}
.y9f{bottom:234.209345px;}
.ydc{bottom:235.109397px;}
.y13f{bottom:235.829367px;}
.y10e{bottom:237.449388px;}
.y78{bottom:242.669345px;}
.y27{bottom:249.869309px;}
.y73{bottom:250.049393px;}
.y9e{bottom:256.169312px;}
.yda{bottom:256.709289px;}
.y77{bottom:257.429349px;}
.y13e{bottom:257.969327px;}
.y10d{bottom:259.589348px;}
.y72{bottom:264.629313px;}
.y26{bottom:271.829277px;}
.y76{bottom:272.009269px;}
.y9d{bottom:278.309271px;}
.y71{bottom:279.389317px;}
.y13d{bottom:279.929293px;}
.y10c{bottom:281.729306px;}
.y75{bottom:286.769273px;}
.y25{bottom:293.969237px;}
.y70{bottom:294.329221px;}
.yd9{bottom:299.369186px;}
.y9c{bottom:300.269239px;}
.y13c{bottom:302.069252px;}
.y74{bottom:302.249244px;}
.y10b{bottom:303.689182px;}
.y24{bottom:316.109195px;}
.y6c{bottom:318.629178px;}
.y9b{bottom:322.409198px;}
.y13b{bottom:324.209120px;}
.y10a{bottom:325.829142px;}
.y6f{bottom:326.009134px;}
.yd8{bottom:330.149139px;}
.y6b{bottom:333.389182px;}
.y23{bottom:338.069162px;}
.y6e{bottom:340.814089px;}
.y9a{bottom:344.594110px;}
.y13a{bottom:346.214131px;}
.y109{bottom:347.834061px;}
.y6a{bottom:348.194137px;}
.y22{bottom:360.254074px;}
.y69{bottom:362.954049px;}
.y6d{bottom:363.494025px;}
.y99{bottom:366.554076px;}
.y139{bottom:368.354090px;}
.y108{bottom:369.974020px;}
.yd7{bottom:374.114024px;}
.y21{bottom:382.214041px;}
.y67{bottom:387.433998px;}
.y98{bottom:388.694036px;}
.y138{bottom:390.493958px;}
.y107{bottom:392.113979px;}
.yd6{bottom:396.253984px;}
.y66{bottom:402.194002px;}
.y20{bottom:404.354000px;}
.y97{bottom:410.653912px;}
.y137{bottom:412.453925px;}
.y106{bottom:414.073947px;}
.y65{bottom:416.953914px;}
.yd5{bottom:418.213951px;}
.y68{bottom:424.873938px;}
.y1f{bottom:426.493868px;}
.y96{bottom:432.793870px;}
.y136{bottom:434.593885px;}
.y105{bottom:436.213906px;}
.yd4{bottom:440.353910px;}
.y63{bottom:441.433863px;}
.y1e{bottom:448.453835px;}
.y95{bottom:454.933830px;}
.y62{bottom:456.193867px;}
.y135{bottom:456.553851px;}
.y104{bottom:458.173873px;}
.y1d{bottom:470.593795px;}
.y61{bottom:470.953779px;}
.y94{bottom:476.893797px;}
.y134{bottom:478.693811px;}
.y103{bottom:480.313741px;}
.yd3{bottom:482.113754px;}
.y60{bottom:485.713783px;}
.y64{bottom:486.253759px;}
.y1c{bottom:492.553761px;}
.y93{bottom:499.033710px;}
.y133{bottom:500.833724px;}
.y102{bottom:502.453700px;}
.yd2{bottom:504.073722px;}
.y5e{bottom:510.193686px;}
.y1b{bottom:514.693674px;}
.y92{bottom:521.173670px;}
.y132{bottom:522.793645px;}
.y101{bottom:524.413666px;}
.y5d{bottom:524.773652px;}
.yd1{bottom:526.213681px;}
.y1a{bottom:536.833634px;}
.y5c{bottom:539.533609px;}
.y91{bottom:543.133636px;}
.y131{bottom:544.933605px;}
.y100{bottom:546.553626px;}
.yd0{bottom:548.353595px;}
.y5b{bottom:554.473605px;}
.y19{bottom:558.793555px;}
.y5f{bottom:562.213591px;}
.y90{bottom:565.273551px;}
.y130{bottom:566.893572px;}
.yff{bottom:568.513547px;}
.ycf{bottom:570.313562px;}
.y59{bottom:578.773517px;}
.y18{bottom:580.933515px;}
.y8f{bottom:587.233517px;}
.y12f{bottom:589.033485px;}
.yfe{bottom:590.653507px;}
.yce{bottom:592.453475px;}
.y58{bottom:593.533474px;}
.y17{bottom:602.893482px;}
.y57{bottom:608.323461px;}
.y8e{bottom:609.403460px;}
.y12e{bottom:611.203428px;}
.yfd{bottom:612.823450px;}
.ycd{bottom:614.443425px;}
.y56{bottom:623.083418px;}
.y5a{bottom:623.623396px;}
.y16{bottom:625.063425px;}
.y8d{bottom:631.543373px;}
.y12d{bottom:633.163395px;}
.yfc{bottom:634.783371px;}
.ycc{bottom:636.583385px;}
.y54{bottom:640.363359px;}
.y15{bottom:647.203338px;}
.y8c{bottom:653.503341px;}
.y53{bottom:654.943324px;}
.y12c{bottom:655.303354px;}
.yfb{bottom:656.923331px;}
.ycb{bottom:658.723344px;}
.y52{bottom:669.703282px;}
.y14{bottom:669.883319px;}
.y8b{bottom:675.643300px;}
.y12b{bottom:677.263275px;}
.yfa{bottom:678.883297px;}
.yca{bottom:680.683265px;}
.y51{bottom:684.463286px;}
.y55{bottom:685.183254px;}
.y13{bottom:691.303264px;}
.y8a{bottom:697.603221px;}
.y147{bottom:699.403235px;}
.y12a{bottom:700.123205px;}
.yf9{bottom:701.023211px;}
.y4d{bottom:701.383241px;}
.yc9{bottom:702.823225px;}
.y12{bottom:713.443177px;}
.y4c{bottom:715.963207px;}
.y89{bottom:719.743181px;}
.y129{bottom:721.543148px;}
.yf8{bottom:723.163170px;}
.y50{bottom:723.343163px;}
.yc8{bottom:724.783146px;}
.y4b{bottom:730.723164px;}
.y11{bottom:736.123115px;}
.y4f{bottom:738.103120px;}
.y88{bottom:741.883139px;}
.y128{bottom:743.503116px;}
.yf7{bottom:745.123092px;}
.y4a{bottom:745.483121px;}
.yc7{bottom:746.923106px;}
.y4e{bottom:752.863077px;}
.y10{bottom:757.543058px;}
.y49{bottom:760.243080px;}
.y87{bottom:763.843062px;}
.y127{bottom:765.643075px;}
.yf6{bottom:767.263050px;}
.yc6{bottom:769.063065px;}
.y48{bottom:775.003037px;}
.yf{bottom:779.503026px;}
.y86{bottom:785.983020px;}
.y126{bottom:787.602996px;}
.yf5{bottom:789.223018px;}
.yc5{bottom:791.022986px;}
.y47{bottom:798.402987px;}
.ye{bottom:802.362954px;}
.y42{bottom:805.782944px;}
.y125{bottom:809.742956px;}
.yf4{bottom:811.362931px;}
.y46{bottom:813.162945px;}
.y41{bottom:820.542901px;}
.yd{bottom:823.782899px;}
.y45{bottom:827.922903px;}
.yb5{bottom:829.542878px;}
.y124{bottom:831.882914px;}
.yf3{bottom:833.502891px;}
.yc4{bottom:835.122867px;}
.y40{bottom:835.482896px;}
.y44{bottom:842.682860px;}
.yc{bottom:846.462881px;}
.y3f{bottom:850.062863px;}
.yb4{bottom:851.682838px;}
.y123{bottom:853.842837px;}
.yf2{bottom:855.462858px;}
.yc3{bottom:857.262825px;}
.y43{bottom:864.822820px;}
.yb{bottom:868.602794px;}
.yb3{bottom:873.687804px;}
.y122{bottom:876.027793px;}
.yf1{bottom:877.647770px;}
.yc2{bottom:879.447783px;}
.y3e{bottom:885.027771px;}
.ya{bottom:889.887744px;}
.yb2{bottom:895.827739px;}
.y121{bottom:897.987737px;}
.yf0{bottom:899.787728px;}
.yc1{bottom:901.407727px;}
.y3a{bottom:904.827717px;}
.y9{bottom:912.027703px;}
.y3d{bottom:912.207695px;}
.yb1{bottom:917.967677px;}
.y39{bottom:919.587674px;}
.y120{bottom:920.127674px;}
.yef{bottom:921.747673px;}
.yc0{bottom:923.547664px;}
.y3c{bottom:926.967654px;}
.y8{bottom:934.167641px;}
.y38{bottom:934.347633px;}
.yb0{bottom:939.927620px;}
.y3b{bottom:941.727611px;}
.y11f{bottom:942.267611px;}
.yee{bottom:943.887609px;}
.ybf{bottom:945.507608px;}
.y37{bottom:949.107612px;}
.y7{bottom:956.127584px;}
.y36{bottom:963.867571px;}
.y11e{bottom:964.227555px;}
.yed{bottom:965.847554px;}
.ybe{bottom:967.647545px;}
.yaf{bottom:973.947547px;}
.y6{bottom:978.267521px;}
.y35{bottom:980.067535px;}
.y11d{bottom:986.367515px;}
.yec{bottom:987.987512px;}
.ybd{bottom:989.787503px;}
.y5{bottom:1000.947480px;}
.y34{bottom:1003.107477px;}
.y11c{bottom:1008.507450px;}
.yae{bottom:1008.867458px;}
.yeb{bottom:1010.127449px;}
.ybc{bottom:1011.747448px;}
.y33{bottom:1017.867436px;}
.y32{bottom:1021.467418px;}
.y11b{bottom:1030.467395px;}
.yad{bottom:1030.827402px;}
.yea{bottom:1032.087393px;}
.ybb{bottom:1033.887384px;}
.y11a{bottom:1052.607353px;}
.ye9{bottom:1054.227330px;}
.yba{bottom:1056.027343px;}
.yac{bottom:1064.307306px;}
.y119{bottom:1074.567287px;}
.ye8{bottom:1076.187286px;}
.yb9{bottom:1077.987277px;}
.yab{bottom:1086.267262px;}
.y118{bottom:1096.707234px;}
.ye7{bottom:1098.327233px;}
.yb8{bottom:1100.127224px;}
.yaa{bottom:1108.407199px;}
.y117{bottom:1118.841174px;}
.ye6{bottom:1120.461173px;}
.yb7{bottom:1122.081172px;}
.ya9{bottom:1130.361146px;}
.y116{bottom:1140.837121px;}
.ye5{bottom:1142.457120px;}
.yb6{bottom:1144.257111px;}
.ya8{bottom:1153.257088px;}
.ya7{bottom:1219.856925px;}
.y2{bottom:1234.076888px;}
.ha{height:36.179910px;}
.h8{height:36.274128px;}
.h9{height:36.382409px;}
.h10{height:44.936606px;}
.h13{height:45.044887px;}
.h11{height:46.376543px;}
.hc{height:48.774253px;}
.hd{height:53.015492px;}
.h4{height:53.999865px;}
.he{height:54.107865px;}
.h5{height:54.140490px;}
.h6{height:54.248771px;}
.h3{height:59.438875px;}
.hb{height:69.654447px;}
.hf{height:71.613102px;}
.h7{height:80.914028px;}
.h12{height:81.656485px;}
.h2{height:1262.876798px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:892.977765px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:22.679930px;}
.x14{left:24.659926px;}
.x11{left:26.639920px;}
.x15{left:29.339912px;}
.x13{left:30.599910px;}
.x18{left:31.859907px;}
.x10{left:37.439891px;}
.x16{left:44.459874px;}
.x1{left:46.799871px;}
.x12{left:48.599868px;}
.x64{left:49.679861px;}
.x19{left:55.079850px;}
.x6{left:59.219838px;}
.x1a{left:64.799826px;}
.x58{left:65.879819px;}
.x56{left:67.499818px;}
.x61{left:68.579817px;}
.x4c{left:70.019811px;}
.x5a{left:76.859797px;}
.x5b{left:80.819786px;}
.x4b{left:82.079783px;}
.x5f{left:83.339780px;}
.xd{left:104.615729px;}
.xa{left:108.935716px;}
.xb{left:115.775694px;}
.x5d{left:119.915687px;}
.x5c{left:126.035674px;}
.xc{left:127.115673px;}
.xf{left:129.815660px;}
.x4{left:134.855648px;}
.x8{left:136.115651px;}
.xe{left:139.175634px;}
.x3{left:142.415630px;}
.x9{left:143.675623px;}
.x7{left:151.409611px;}
.x50{left:152.489611px;}
.x53{left:168.509559px;}
.x59{left:178.769540px;}
.x5{left:180.389539px;}
.x5e{left:215.309438px;}
.x55{left:255.809336px;}
.x54{left:293.114260px;}
.x4e{left:307.154225px;}
.x60{left:338.834138px;}
.x42{left:366.914071px;}
.x2e{left:368.714062px;}
.x38{left:370.334059px;}
.x3b{left:372.494058px;}
.x22{left:374.114057px;}
.x45{left:376.094040px;}
.x1f{left:377.354054px;}
.x1b{left:378.614046px;}
.x21{left:380.054029px;}
.x34{left:381.314044px;}
.x48{left:382.934019px;}
.x1d{left:384.554018px;}
.x33{left:386.534023px;}
.x47{left:391.934020px;}
.x29{left:393.733987px;}
.x28{left:396.793993px;}
.x3c{left:399.493968px;}
.x37{left:402.013996px;}
.x2c{left:416.413923px;}
.x49{left:420.733920px;}
.x39{left:422.893919px;}
.x20{left:424.873924px;}
.x2d{left:438.553883px;}
.x62{left:460.873834px;}
.x2f{left:462.313817px;}
.x2{left:471.343825px;}
.x63{left:481.603793px;}
.x4d{left:483.043777px;}
.x51{left:526.963666px;}
.x52{left:537.583665px;}
.x27{left:576.463542px;}
.x1c{left:577.723533px;}
.x1e{left:616.963441px;}
.x4f{left:624.523434px;}
.x23{left:627.583440px;}
.x2a{left:644.323358px;}
.x35{left:645.583395px;}
.x3d{left:646.663347px;}
.x2b{left:648.643354px;}
.x31{left:651.343375px;}
.x36{left:652.603365px;}
.x25{left:655.168347px;}
.x3f{left:657.688329px;}
.x43{left:658.768329px;}
.x32{left:663.088326px;}
.x46{left:667.408321px;}
.x30{left:670.288288px;}
.x3e{left:672.448287px;}
.x44{left:678.568298px;}
.x41{left:688.468282px;}
.x24{left:693.868232px;}
.x40{left:707.368199px;}
.x26{left:730.588157px;}
.x3a{left:738.868120px;}
.x4a{left:755.428090px;}
.x57{left:782.248031px;}
@media print{
.v4{vertical-align:-27.519953pt;}
.v2{vertical-align:-26.239929pt;}
.v3{vertical-align:-2.559887pt;}
.v6{vertical-align:-1.279943pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.279943pt;}
.v5{vertical-align:18.560172pt;}
.v8{vertical-align:32.639892pt;}
.v1{vertical-align:39.679911pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.097914pt;}
.ls3{letter-spacing:0.196469pt;}
.lse{letter-spacing:0.196474pt;}
.ls10{letter-spacing:0.256053pt;}
.ls18{letter-spacing:0.460788pt;}
.ls7{letter-spacing:47.684862pt;}
.lsc{letter-spacing:61.764902pt;}
.ls13{letter-spacing:63.418716pt;}
.ls17{letter-spacing:74.298497pt;}
.ls14{letter-spacing:75.045236pt;}
.ls16{letter-spacing:75.738755pt;}
.ls12{letter-spacing:83.258672pt;}
.ls15{letter-spacing:85.818644pt;}
.ls5{letter-spacing:87.524768pt;}
.ls9{letter-spacing:93.284844pt;}
.ls8{letter-spacing:97.764812pt;}
.ls4{letter-spacing:110.564748pt;}
.lsf{letter-spacing:113.434596pt;}
.lsd{letter-spacing:131.684652pt;}
.lsa{letter-spacing:148.964716pt;}
.ls6{letter-spacing:150.244664pt;}
.lsb{letter-spacing:218.724472pt;}
.ls1f{letter-spacing:242.084856pt;}
.ls22{letter-spacing:262.458181pt;}
.ls20{letter-spacing:266.938143pt;}
.ls21{letter-spacing:272.858219pt;}
.ls19{letter-spacing:395.556600pt;}
.ls1a{letter-spacing:435.236432pt;}
.ls1b{letter-spacing:440.996428pt;}
.ls1c{letter-spacing:460.196412pt;}
.ls1d{letter-spacing:469.156352pt;}
.ls2{letter-spacing:472.814503pt;}
.ls1e{letter-spacing:532.057603pt;}
.ws6{word-spacing:-17.855955pt;}
.ws4{word-spacing:-17.663956pt;}
.ws5{word-spacing:-14.820443pt;}
.ws3{word-spacing:-11.999202pt;}
.ws2{word-spacing:-11.963490pt;}
.ws1{word-spacing:-11.834850pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-3.402930pt;}
._12{margin-left:-2.485188pt;}
._1{margin-left:-0.895998pt;}
._0{width:1.279997pt;}
._b{width:2.431994pt;}
._6{width:3.647991pt;}
._a{width:4.991988pt;}
._7{width:5.951985pt;}
._8{width:7.231982pt;}
._d{width:8.895978pt;}
._3{width:9.791976pt;}
._4{width:11.391972pt;}
._5{width:12.415969pt;}
._c{width:13.951965pt;}
._19{width:15.397095pt;}
._9{width:16.383959pt;}
._10{width:18.879953pt;}
._16{width:20.095950pt;}
._1b{width:21.247947pt;}
._15{width:22.429294pt;}
._1a{width:23.330592pt;}
._e{width:24.418589pt;}
._14{width:26.347785pt;}
._11{width:27.668080pt;}
._33{width:29.567926pt;}
._35{width:31.167922pt;}
._13{width:32.511919pt;}
._38{width:33.407916pt;}
._30{width:35.199912pt;}
._3d{width:36.266549pt;}
._3c{width:37.375907pt;}
._39{width:38.463904pt;}
._34{width:40.205591pt;}
._2f{width:42.687893pt;}
._f{width:45.887885pt;}
._17{width:47.167882pt;}
._18{width:48.383879pt;}
._3e{width:53.247867pt;}
._36{width:55.103868pt;}
._31{width:59.071852pt;}
._32{width:59.967850pt;}
._37{width:73.212185pt;}
._3b{width:77.631806pt;}
._3a{width:78.527804pt;}
._2e{width:109.614846pt;}
._25{width:226.817817pt;}
._1f{width:242.107944pt;}
._24{width:250.481294pt;}
._22{width:263.121236pt;}
._20{width:268.241340pt;}
._28{width:271.536350pt;}
._21{width:272.881142pt;}
._2b{width:292.549647pt;}
._29{width:297.669581pt;}
._2a{width:302.309708pt;}
._1e{width:441.465104pt;}
._1d{width:472.196569pt;}
._23{width:480.933875pt;}
._26{width:486.435291pt;}
._2d{width:489.183193pt;}
._27{width:521.375385pt;}
._2c{width:529.998120pt;}
._1c{width:602.186271pt;}
.fs4{font-size:42.879893pt;}
.fs5{font-size:43.007892pt;}
.fs0{font-size:53.119867pt;}
.fs6{font-size:53.247867pt;}
.fs3{font-size:58.879853pt;}
.fs1{font-size:63.999840pt;}
.fs2{font-size:64.127840pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.442829pt;}
.y85{bottom:7.999980pt;}
.y3{bottom:21.119902pt;}
.y31{bottom:26.559911pt;}
.y30{bottom:46.079882pt;}
.y4{bottom:48.319866pt;}
.ye4{bottom:64.826498pt;}
.y2f{bottom:65.146484pt;}
.ya6{bottom:70.746487pt;}
.y146{bottom:72.346499pt;}
.ye3{bottom:72.986471pt;}
.y115{bottom:73.786437pt;}
.y2e{bottom:84.666455pt;}
.ya5{bottom:90.426450pt;}
.y82{bottom:90.586444pt;}
.y145{bottom:92.026382pt;}
.y114{bottom:93.466401pt;}
.ye2{bottom:100.346429pt;}
.y81{bottom:103.546372pt;}
.y2d{bottom:104.346419pt;}
.ya4{bottom:110.106333pt;}
.y144{bottom:111.546352pt;}
.y113{bottom:112.986371pt;}
.y80{bottom:116.666375pt;}
.y84{bottom:116.826368pt;}
.ye1{bottom:119.706325pt;}
.y2c{bottom:124.026302pt;}
.ya3{bottom:129.626304pt;}
.y7f{bottom:129.786297pt;}
.y143{bottom:131.226316pt;}
.y112{bottom:132.666335pt;}
.ye0{bottom:138.746317pt;}
.y7e{bottom:142.906300pt;}
.y2b{bottom:143.546272pt;}
.y83{bottom:146.266317pt;}
.ya2{bottom:149.306268pt;}
.y142{bottom:150.746287pt;}
.y111{bottom:152.186225pt;}
.ydf{bottom:157.786227pt;}
.y7c{bottom:160.986251pt;}
.y2a{bottom:163.226236pt;}
.ya1{bottom:168.826238pt;}
.y141{bottom:171.066223pt;}
.y110{bottom:171.866188pt;}
.y7b{bottom:174.106173pt;}
.yde{bottom:176.346239pt;}
.y29{bottom:182.906200pt;}
.y7a{bottom:187.226176pt;}
.ya0{bottom:188.506202pt;}
.y140{bottom:190.106133pt;}
.y10f{bottom:191.546152pt;}
.ydd{bottom:192.666185pt;}
.ydb{bottom:192.986171pt;}
.y79{bottom:200.346179pt;}
.y7d{bottom:200.826158pt;}
.y28{bottom:202.426170pt;}
.y9f{bottom:208.186085pt;}
.ydc{bottom:208.986131pt;}
.y13f{bottom:209.626104pt;}
.y10e{bottom:211.066123pt;}
.y78{bottom:215.706085pt;}
.y27{bottom:222.106053pt;}
.y73{bottom:222.266127pt;}
.y9e{bottom:227.706055pt;}
.yda{bottom:228.186035pt;}
.y77{bottom:228.826088pt;}
.y13e{bottom:229.306068pt;}
.y10d{bottom:230.746087pt;}
.y72{bottom:235.226056pt;}
.y26{bottom:241.626024pt;}
.y76{bottom:241.786017pt;}
.y9d{bottom:247.386019pt;}
.y71{bottom:248.346059pt;}
.y13d{bottom:248.826038pt;}
.y10c{bottom:250.426050pt;}
.y75{bottom:254.906020pt;}
.y25{bottom:261.305988pt;}
.y70{bottom:261.625974pt;}
.yd9{bottom:266.105943pt;}
.y9c{bottom:266.905990pt;}
.y13c{bottom:268.506002pt;}
.y74{bottom:268.665995pt;}
.y10b{bottom:269.945940pt;}
.y24{bottom:280.985951pt;}
.y6c{bottom:283.225936pt;}
.y9b{bottom:286.585954pt;}
.y13b{bottom:288.185885pt;}
.y10a{bottom:289.625904pt;}
.y6f{bottom:289.785897pt;}
.yd8{bottom:293.465901pt;}
.y6b{bottom:296.345939pt;}
.y23{bottom:300.505922pt;}
.y6e{bottom:302.945857pt;}
.y9a{bottom:306.305876pt;}
.y13a{bottom:307.745895pt;}
.y109{bottom:309.185832pt;}
.y6a{bottom:309.505900pt;}
.y22{bottom:320.225843pt;}
.y69{bottom:322.625821pt;}
.y6d{bottom:323.105800pt;}
.y99{bottom:325.825845pt;}
.y139{bottom:327.425857pt;}
.y108{bottom:328.865795pt;}
.yd7{bottom:332.545799pt;}
.y21{bottom:339.745815pt;}
.y67{bottom:344.385776pt;}
.y98{bottom:345.505810pt;}
.y138{bottom:347.105740pt;}
.y107{bottom:348.545759pt;}
.yd6{bottom:352.225763pt;}
.y66{bottom:357.505780pt;}
.y20{bottom:359.425777pt;}
.y97{bottom:365.025699pt;}
.y137{bottom:366.625711pt;}
.y106{bottom:368.065731pt;}
.y65{bottom:370.625701pt;}
.yd5{bottom:371.745735pt;}
.y68{bottom:377.665723pt;}
.y1f{bottom:379.105660pt;}
.y96{bottom:384.705662pt;}
.y136{bottom:386.305676pt;}
.y105{bottom:387.745695pt;}
.yd4{bottom:391.425697pt;}
.y63{bottom:392.385656pt;}
.y1e{bottom:398.625631pt;}
.y95{bottom:404.385626pt;}
.y62{bottom:405.505660pt;}
.y135{bottom:405.825645pt;}
.y104{bottom:407.265664pt;}
.y1d{bottom:418.305596pt;}
.y61{bottom:418.625581pt;}
.y94{bottom:423.905598pt;}
.y134{bottom:425.505610pt;}
.y103{bottom:426.945547pt;}
.yd3{bottom:428.545559pt;}
.y60{bottom:431.745585pt;}
.y64{bottom:432.225563pt;}
.y1c{bottom:437.825565pt;}
.y93{bottom:443.585520pt;}
.y133{bottom:445.185532pt;}
.y102{bottom:446.625511pt;}
.yd2{bottom:448.065531pt;}
.y5e{bottom:453.505498pt;}
.y1b{bottom:457.505488pt;}
.y92{bottom:463.265485pt;}
.y132{bottom:464.705462pt;}
.y101{bottom:466.145481pt;}
.y5d{bottom:466.465469pt;}
.yd1{bottom:467.745495pt;}
.y1a{bottom:477.185452pt;}
.y5c{bottom:479.585430pt;}
.y91{bottom:482.785454pt;}
.y131{bottom:484.385426pt;}
.y100{bottom:485.825445pt;}
.yd0{bottom:487.425417pt;}
.y5b{bottom:492.865427pt;}
.y19{bottom:496.705382pt;}
.y5f{bottom:499.745415pt;}
.y90{bottom:502.465379pt;}
.y130{bottom:503.905398pt;}
.yff{bottom:505.345375pt;}
.ycf{bottom:506.945389pt;}
.y59{bottom:514.465349pt;}
.y18{bottom:516.385346pt;}
.y8f{bottom:521.985348pt;}
.y12f{bottom:523.585320pt;}
.yfe{bottom:525.025339pt;}
.yce{bottom:526.625311pt;}
.y58{bottom:527.585310pt;}
.y17{bottom:535.905318pt;}
.y57{bottom:540.731966pt;}
.y8e{bottom:541.691964pt;}
.y12e{bottom:543.291936pt;}
.yfd{bottom:544.731956pt;}
.ycd{bottom:546.171933pt;}
.y56{bottom:553.851927pt;}
.y5a{bottom:554.331908pt;}
.y16{bottom:555.611934pt;}
.y8d{bottom:561.371887pt;}
.y12d{bottom:562.811906pt;}
.yfc{bottom:564.251885pt;}
.ycc{bottom:565.851897pt;}
.y54{bottom:569.211874pt;}
.y15{bottom:575.291856pt;}
.y8c{bottom:580.891858pt;}
.y53{bottom:582.171843pt;}
.y12c{bottom:582.491870pt;}
.yfb{bottom:583.931850pt;}
.ycb{bottom:585.531862pt;}
.y52{bottom:595.291806pt;}
.y14{bottom:595.451839pt;}
.y8b{bottom:600.571823pt;}
.y12b{bottom:602.011800pt;}
.yfa{bottom:603.451819pt;}
.yca{bottom:605.051791pt;}
.y51{bottom:608.411810pt;}
.y55{bottom:609.051781pt;}
.y13{bottom:614.491790pt;}
.y8a{bottom:620.091752pt;}
.y147{bottom:621.691764pt;}
.y12a{bottom:622.331738pt;}
.yf9{bottom:623.131744pt;}
.y4d{bottom:623.451769pt;}
.yc9{bottom:624.731756pt;}
.y12{bottom:634.171713pt;}
.y4c{bottom:636.411740pt;}
.y89{bottom:639.771717pt;}
.y129{bottom:641.371687pt;}
.yf8{bottom:642.811706pt;}
.y50{bottom:642.971701pt;}
.yc8{bottom:644.251685pt;}
.y4b{bottom:649.531702pt;}
.y11{bottom:654.331658pt;}
.y4f{bottom:656.091662pt;}
.y88{bottom:659.451679pt;}
.y128{bottom:660.891658pt;}
.yf7{bottom:662.331638pt;}
.y4a{bottom:662.651663pt;}
.yc7{bottom:663.931650pt;}
.y4e{bottom:669.211624pt;}
.y10{bottom:673.371607pt;}
.y49{bottom:675.771627pt;}
.y87{bottom:678.971611pt;}
.y127{bottom:680.571623pt;}
.yf6{bottom:682.011600pt;}
.yc6{bottom:683.611614pt;}
.y48{bottom:688.891588pt;}
.yf{bottom:692.891578pt;}
.y86{bottom:698.651573pt;}
.y126{bottom:700.091552pt;}
.yf5{bottom:701.531572pt;}
.yc5{bottom:703.131544pt;}
.y47{bottom:709.691544pt;}
.ye{bottom:713.211514pt;}
.y42{bottom:716.251505pt;}
.y125{bottom:719.771517pt;}
.yf4{bottom:721.211494pt;}
.y46{bottom:722.811506pt;}
.y41{bottom:729.371467pt;}
.yd{bottom:732.251465pt;}
.y45{bottom:735.931470pt;}
.yb5{bottom:737.371447pt;}
.y124{bottom:739.451479pt;}
.yf3{bottom:740.891458pt;}
.yc4{bottom:742.331438pt;}
.y40{bottom:742.651463pt;}
.y44{bottom:749.051431pt;}
.yc{bottom:752.411450pt;}
.y3f{bottom:755.611434pt;}
.yb4{bottom:757.051411pt;}
.y123{bottom:758.971411pt;}
.yf2{bottom:760.411430pt;}
.yc3{bottom:762.011400pt;}
.y43{bottom:768.731396pt;}
.yb{bottom:772.091372pt;}
.yb3{bottom:776.611381pt;}
.y122{bottom:778.691372pt;}
.yf1{bottom:780.131351pt;}
.yc2{bottom:781.731363pt;}
.y3e{bottom:786.691352pt;}
.ya{bottom:791.011328pt;}
.yb2{bottom:796.291324pt;}
.y121{bottom:798.211322pt;}
.yf0{bottom:799.811314pt;}
.yc1{bottom:801.251313pt;}
.y3a{bottom:804.291304pt;}
.y9{bottom:810.691292pt;}
.y3d{bottom:810.851285pt;}
.yb1{bottom:815.971268pt;}
.y39{bottom:817.411266pt;}
.y120{bottom:817.891266pt;}
.yef{bottom:819.331265pt;}
.yc0{bottom:820.931257pt;}
.y3c{bottom:823.971248pt;}
.y8{bottom:830.371236pt;}
.y38{bottom:830.531229pt;}
.yb0{bottom:835.491218pt;}
.y3b{bottom:837.091210pt;}
.y11f{bottom:837.571210pt;}
.yee{bottom:839.011208pt;}
.ybf{bottom:840.451207pt;}
.y37{bottom:843.651211pt;}
.y7{bottom:849.891186pt;}
.y36{bottom:856.771174pt;}
.y11e{bottom:857.091160pt;}
.yed{bottom:858.531159pt;}
.ybe{bottom:860.131151pt;}
.yaf{bottom:865.731153pt;}
.y6{bottom:869.571130pt;}
.y35{bottom:871.171142pt;}
.y11d{bottom:876.771124pt;}
.yec{bottom:878.211122pt;}
.ybd{bottom:879.811114pt;}
.y5{bottom:889.731093pt;}
.y34{bottom:891.651091pt;}
.y11c{bottom:896.451067pt;}
.yae{bottom:896.771074pt;}
.yeb{bottom:897.891066pt;}
.ybc{bottom:899.331065pt;}
.y33{bottom:904.771054pt;}
.y32{bottom:907.971038pt;}
.y11b{bottom:915.971018pt;}
.yad{bottom:916.291024pt;}
.yea{bottom:917.411016pt;}
.ybb{bottom:919.011008pt;}
.y11a{bottom:935.650981pt;}
.ye9{bottom:937.090960pt;}
.yba{bottom:938.690972pt;}
.yac{bottom:946.050939pt;}
.y119{bottom:955.170921pt;}
.ye8{bottom:956.610920pt;}
.yb9{bottom:958.210912pt;}
.yab{bottom:965.570899pt;}
.y118{bottom:974.850875pt;}
.ye7{bottom:976.290874pt;}
.yb8{bottom:977.890866pt;}
.yaa{bottom:985.250844pt;}
.y117{bottom:994.525488pt;}
.ye6{bottom:995.965487pt;}
.yb7{bottom:997.405486pt;}
.ya9{bottom:1004.765463pt;}
.y116{bottom:1014.077441pt;}
.ye5{bottom:1015.517440pt;}
.yb6{bottom:1017.117432pt;}
.ya8{bottom:1025.117412pt;}
.ya7{bottom:1084.317267pt;}
.y2{bottom:1096.957234pt;}
.ha{height:32.159920pt;}
.h8{height:32.243669pt;}
.h9{height:32.339919pt;}
.h10{height:39.943650pt;}
.h13{height:40.039900pt;}
.h11{height:41.223594pt;}
.hc{height:43.354892pt;}
.hd{height:47.124882pt;}
.h4{height:47.999880pt;}
.he{height:48.095880pt;}
.h5{height:48.124880pt;}
.h6{height:48.221129pt;}
.h3{height:52.834555pt;}
.hb{height:61.915064pt;}
.hf{height:63.656091pt;}
.h7{height:71.923581pt;}
.h12{height:72.583542pt;}
.h2{height:1122.557154pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:793.758013pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:20.159938pt;}
.x14{left:21.919935pt;}
.x11{left:23.679929pt;}
.x15{left:26.079921pt;}
.x13{left:27.199920pt;}
.x18{left:28.319917pt;}
.x10{left:33.279903pt;}
.x16{left:39.519888pt;}
.x1{left:41.599885pt;}
.x12{left:43.199883pt;}
.x64{left:44.159876pt;}
.x19{left:48.959867pt;}
.x6{left:52.639856pt;}
.x1a{left:57.599845pt;}
.x58{left:58.559839pt;}
.x56{left:59.999838pt;}
.x61{left:60.959837pt;}
.x4c{left:62.239832pt;}
.x5a{left:68.319820pt;}
.x5b{left:71.839810pt;}
.x4b{left:72.959807pt;}
.x5f{left:74.079804pt;}
.xd{left:92.991760pt;}
.xa{left:96.831747pt;}
.xb{left:102.911728pt;}
.x5d{left:106.591722pt;}
.x5c{left:112.031711pt;}
.xc{left:112.991710pt;}
.xf{left:115.391698pt;}
.x4{left:119.871687pt;}
.x8{left:120.991690pt;}
.xe{left:123.711675pt;}
.x3{left:126.591672pt;}
.x9{left:127.711665pt;}
.x7{left:134.586321pt;}
.x50{left:135.546321pt;}
.x53{left:149.786275pt;}
.x59{left:158.906257pt;}
.x5{left:160.346256pt;}
.x5e{left:191.386167pt;}
.x55{left:227.386077pt;}
.x54{left:260.546009pt;}
.x4e{left:273.025977pt;}
.x60{left:301.185900pt;}
.x42{left:326.145841pt;}
.x2e{left:327.745833pt;}
.x38{left:329.185830pt;}
.x3b{left:331.105830pt;}
.x22{left:332.545829pt;}
.x45{left:334.305814pt;}
.x1f{left:335.425825pt;}
.x1b{left:336.545819pt;}
.x21{left:337.825803pt;}
.x34{left:338.945817pt;}
.x48{left:340.385794pt;}
.x1d{left:341.825793pt;}
.x33{left:343.585798pt;}
.x47{left:348.385796pt;}
.x29{left:349.985766pt;}
.x28{left:352.705772pt;}
.x3c{left:355.105750pt;}
.x37{left:357.345775pt;}
.x2c{left:370.145709pt;}
.x49{left:373.985706pt;}
.x39{left:375.905706pt;}
.x20{left:377.665711pt;}
.x2d{left:389.825673pt;}
.x62{left:409.665631pt;}
.x2f{left:410.945615pt;}
.x2{left:418.972289pt;}
.x63{left:428.092260pt;}
.x4d{left:429.372247pt;}
.x51{left:468.412148pt;}
.x52{left:477.852147pt;}
.x27{left:512.412038pt;}
.x1c{left:513.532030pt;}
.x1e{left:548.411948pt;}
.x4f{left:555.131942pt;}
.x23{left:557.851947pt;}
.x2a{left:572.731874pt;}
.x35{left:573.851907pt;}
.x3d{left:574.811864pt;}
.x2b{left:576.571871pt;}
.x31{left:578.971889pt;}
.x36{left:580.091880pt;}
.x25{left:582.371864pt;}
.x3f{left:584.611848pt;}
.x43{left:585.571848pt;}
.x32{left:589.411845pt;}
.x46{left:593.251841pt;}
.x30{left:595.811812pt;}
.x3e{left:597.731811pt;}
.x44{left:603.171820pt;}
.x41{left:611.971806pt;}
.x24{left:616.771762pt;}
.x40{left:628.771732pt;}
.x26{left:649.411695pt;}
.x3a{left:656.771662pt;}
.x4a{left:671.491636pt;}
.x57{left:695.331583pt;}
}




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