
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2;src:url('chunks/assets/font_64d3e49ede9e660bbf245a8f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_691d25c26c96f9e6b21d1cfb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.972168;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_40cfe4c79f11d3e74a507142.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_db20ef8ec5097d3d0b0e4c5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_b9c95c3e4559d867878ae8b0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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:ff8;src:url('chunks/assets/font_356db457b668ba40c02d85b9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-17.999999px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000001px;}
.ls0{letter-spacing:0.024609px;}
.ls1{letter-spacing:0.048960px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-53.999998px;}
.ws7{word-spacing:-20.302734px;}
.ws2{word-spacing:-18.984374px;}
.ws9{word-spacing:-18.457031px;}
.ws8{word-spacing:-16.242188px;}
.ws4{word-spacing:-14.238281px;}
.ws1{word-spacing:-12.656249px;}
.ws3{word-spacing:-9.689941px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:441.210941px;}
.ws6{word-spacing:525.023438px;}
._38{margin-left:-8.068362px;}
._2{margin-left:-6.723636px;}
._1{margin-left:-5.523049px;}
._12{margin-left:-3.955078px;}
._7{margin-left:-2.267576px;}
._0{margin-left:-1.230467px;}
._3{width:1.910112px;}
._8{width:3.152388px;}
._2c{width:4.566327px;}
._4{width:5.730470px;}
._5{width:7.391598px;}
._a{width:8.472646px;}
._9{width:9.975590px;}
._c{width:11.320313px;}
._10{width:13.171853px;}
._2b{width:14.326234px;}
._28{width:15.416015px;}
._27{width:16.558593px;}
._d{width:17.964843px;}
._48{width:19.476563px;}
._b{width:20.563660px;}
._6{width:22.310691px;}
._20{width:23.343751px;}
._3e{width:24.445403px;}
._1f{width:25.473172px;}
._47{width:26.505210px;}
._22{width:27.552887px;}
._24{width:29.522461px;}
._21{width:31.511670px;}
._29{width:33.035133px;}
._25{width:35.050779px;}
._26{width:36.474607px;}
._30{width:37.676923px;}
._31{width:38.731746px;}
._2e{width:40.584319px;}
._34{width:42.187500px;}
._11{width:43.940918px;}
._13{width:45.799801px;}
._39{width:47.214840px;}
._2a{width:48.445310px;}
._58{width:49.552732px;}
._45{width:51.639310px;}
._2d{width:52.678070px;}
._40{width:54.560845px;}
._41{width:56.267577px;}
._23{width:57.599941px;}
._4c{width:58.932310px;}
._3b{width:60.345702px;}
._3c{width:61.808205px;}
._3d{width:63.348039px;}
._4b{width:64.367569px;}
._44{width:66.058589px;}
._2f{width:67.499998px;}
._4a{width:69.468745px;}
._43{width:70.804686px;}
._4d{width:73.529295px;}
._52{width:74.724608px;}
._36{width:75.960912px;}
._3f{width:77.657748px;}
._35{width:79.857418px;}
._37{width:81.544918px;}
._33{width:84.251948px;}
._42{width:85.454265px;}
._32{width:87.046870px;}
._54{width:88.488277px;}
._49{width:96.380855px;}
._3a{width:97.558592px;}
._4e{width:108.251925px;}
._50{width:118.921847px;}
._55{width:120.164058px;}
._56{width:129.304683px;}
._46{width:132.931611px;}
._51{width:143.674777px;}
._59{width:151.576164px;}
._5a{width:235.429655px;}
._57{width:253.546864px;}
._15{width:264.638683px;}
._14{width:297.421862px;}
._1b{width:304.998056px;}
._1c{width:321.134749px;}
._17{width:330.521470px;}
._1a{width:344.935533px;}
._16{width:360.544884px;}
._53{width:375.354475px;}
._19{width:396.404279px;}
._5b{width:435.621074px;}
._f{width:488.860795px;}
._1d{width:599.853490px;}
._1e{width:616.113231px;}
._e{width:644.326168px;}
._4f{width:1008.333940px;}
._18{width:1648.546783px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,8,8);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:28.350000px;}
.fs2{font-size:35.999999px;}
.fs9{font-size:40.499998px;}
.fs4{font-size:44.999998px;}
.fs7{font-size:47.249998px;}
.fsb{font-size:47.520000px;}
.fs1{font-size:53.999998px;}
.fsa{font-size:59.399997px;}
.fs3{font-size:66.599998px;}
.fs6{font-size:67.499997px;}
.fs5{font-size:91.799996px;}
.fsc{font-size:99.900000px;}
.fs0{font-size:107.999996px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.049955px;}
.y30{bottom:52.330066px;}
.y157{bottom:75.955065px;}
.y11b{bottom:80.455065px;}
.yde{bottom:84.955064px;}
.y2f{bottom:86.080064px;}
.y13c{bottom:89.455064px;}
.y2e{bottom:95.080064px;}
.y156{bottom:96.205064px;}
.y11a{bottom:100.705064px;}
.ydd{bottom:105.205064px;}
.y13b{bottom:109.705063px;}
.y2d{bottom:115.330063px;}
.yaa{bottom:116.455063px;}
.y12f{bottom:118.705063px;}
.y56{bottom:123.205063px;}
.ydc{bottom:125.455063px;}
.y2c{bottom:126.580063px;}
.y13a{bottom:129.955063px;}
.y119{bottom:132.205062px;}
.yf4{bottom:134.455062px;}
.ya9{bottom:136.705062px;}
.y12e{bottom:138.955062px;}
.y55{bottom:143.455062px;}
.ydb{bottom:145.705062px;}
.y2b{bottom:149.080062px;}
.y139{bottom:150.205062px;}
.y82{bottom:154.705062px;}
.ya8{bottom:156.955061px;}
.y2a{bottom:160.330061px;}
.y54{bottom:163.705061px;}
.y118{bottom:164.830061px;}
.yc0{bottom:165.955061px;}
.y12d{bottom:170.455061px;}
.y81{bottom:174.955061px;}
.ya7{bottom:177.205061px;}
.y53{bottom:183.955060px;}
.ybf{bottom:186.205060px;}
.y155{bottom:188.455060px;}
.y80{bottom:195.205060px;}
.ya6{bottom:197.455060px;}
.y12c{bottom:201.955060px;}
.y52{bottom:204.205059px;}
.ybe{bottom:206.455059px;}
.y117{bottom:207.580059px;}
.y154{bottom:208.705059px;}
.y7f{bottom:215.455059px;}
.ya5{bottom:217.705059px;}
.y12b{bottom:222.205059px;}
.y51{bottom:224.455059px;}
.ybd{bottom:226.705059px;}
.y116{bottom:227.830059px;}
.y153{bottom:228.955058px;}
.y7e{bottom:235.705058px;}
.ya4{bottom:237.955058px;}
.yda{bottom:240.205058px;}
.y12a{bottom:242.455058px;}
.y50{bottom:244.705058px;}
.ybc{bottom:246.955058px;}
.y115{bottom:248.080058px;}
.y143{bottom:249.205058px;}
.y162{bottom:253.705057px;}
.y7d{bottom:255.955057px;}
.ya3{bottom:258.205057px;}
.y138{bottom:262.705057px;}
.y15c{bottom:264.955057px;}
.ybb{bottom:267.205057px;}
.y114{bottom:268.330057px;}
.y142{bottom:269.455057px;}
.y129{bottom:273.955057px;}
.y4f{bottom:276.205056px;}
.ya2{bottom:278.455056px;}
.yd9{bottom:282.955056px;}
.yba{bottom:287.455056px;}
.y113{bottom:288.580056px;}
.y141{bottom:289.705056px;}
.y161{bottom:294.205056px;}
.y4e{bottom:296.455056px;}
.ya1{bottom:298.705056px;}
.y152{bottom:300.955055px;}
.yd8{bottom:303.205055px;}
.y128{bottom:305.455055px;}
.yb9{bottom:307.705055px;}
.y112{bottom:308.830055px;}
.y140{bottom:309.955055px;}
.y160{bottom:314.455055px;}
.y4d{bottom:316.705055px;}
.ya0{bottom:318.955055px;}
.y151{bottom:321.205055px;}
.yd7{bottom:323.455055px;}
.y127{bottom:325.705054px;}
.yb8{bottom:327.955054px;}
.y111{bottom:329.080054px;}
.y13f{bottom:330.205054px;}
.y29{bottom:331.330054px;}
.y15f{bottom:334.705054px;}
.y4c{bottom:336.955054px;}
.y150{bottom:341.455054px;}
.yd6{bottom:343.705054px;}
.y126{bottom:345.955054px;}
.y7c{bottom:348.205053px;}
.y110{bottom:349.330053px;}
.y9f{bottom:350.455053px;}
.y28{bottom:351.580053px;}
.y15e{bottom:354.955053px;}
.y4b{bottom:357.205053px;}
.y14f{bottom:361.705053px;}
.yd5{bottom:363.955053px;}
.y125{bottom:366.205053px;}
.y7b{bottom:368.455053px;}
.y10f{bottom:369.580053px;}
.y9e{bottom:370.705053px;}
.y27{bottom:371.830053px;}
.y15d{bottom:375.205052px;}
.y4a{bottom:377.455052px;}
.yf3{bottom:379.705052px;}
.y14e{bottom:381.955052px;}
.yd4{bottom:384.205052px;}
.y148{bottom:388.705052px;}
.y10e{bottom:389.830052px;}
.y13e{bottom:390.955052px;}
.y26{bottom:392.080052px;}
.y49{bottom:397.705051px;}
.yb7{bottom:399.955051px;}
.y7a{bottom:402.205051px;}
.yd3{bottom:404.455051px;}
.y147{bottom:408.955051px;}
.y10d{bottom:410.080051px;}
.y13d{bottom:411.205051px;}
.y25{bottom:412.330051px;}
.y14d{bottom:413.455051px;}
.y48{bottom:417.955051px;}
.yf2{bottom:420.205050px;}
.y9d{bottom:422.455050px;}
.yd2{bottom:424.705050px;}
.y15b{bottom:429.205050px;}
.y10c{bottom:430.330050px;}
.yb6{bottom:431.455050px;}
.y24{bottom:432.580050px;}
.y14c{bottom:433.705050px;}
.y47{bottom:438.205050px;}
.yf1{bottom:440.455050px;}
.y9c{bottom:442.705050px;}
.y79{bottom:444.955049px;}
.y15a{bottom:449.455049px;}
.y10b{bottom:450.580049px;}
.yb5{bottom:451.705049px;}
.y14b{bottom:453.955049px;}
.y137{bottom:456.205049px;}
.y46{bottom:458.455049px;}
.yf0{bottom:460.705049px;}
.y23{bottom:462.955049px;}
.y78{bottom:465.205049px;}
.y124{bottom:469.705048px;}
.y10a{bottom:470.830048px;}
.yb4{bottom:471.955048px;}
.y14a{bottom:474.205048px;}
.y136{bottom:476.455048px;}
.y158{bottom:480.955048px;}
.y9b{bottom:483.205048px;}
.y77{bottom:485.455048px;}
.y45{bottom:489.955048px;}
.y109{bottom:491.080048px;}
.yb3{bottom:492.205047px;}
.y135{bottom:496.705047px;}
.y9a{bottom:503.455047px;}
.y76{bottom:505.705047px;}
.y22{bottom:510.205047px;}
.y108{bottom:511.330047px;}
.yb2{bottom:512.455047px;}
.yd1{bottom:516.955046px;}
.y159{bottom:521.455046px;}
.y99{bottom:523.705046px;}
.y75{bottom:525.955046px;}
.y21{bottom:530.455046px;}
.y107{bottom:531.580046px;}
.yb1{bottom:532.705046px;}
.yd0{bottom:537.205046px;}
.y123{bottom:541.705045px;}
.y98{bottom:543.955045px;}
.y74{bottom:546.205045px;}
.y20{bottom:550.705045px;}
.y106{bottom:551.830045px;}
.yb0{bottom:552.955045px;}
.ycf{bottom:557.455045px;}
.y122{bottom:561.955045px;}
.y97{bottom:564.205044px;}
.y73{bottom:566.455044px;}
.y44{bottom:570.955044px;}
.y105{bottom:572.080044px;}
.yaf{bottom:573.205044px;}
.yce{bottom:577.705044px;}
.y1f{bottom:582.205044px;}
.y96{bottom:584.455044px;}
.y72{bottom:586.705044px;}
.y43{bottom:591.205043px;}
.y104{bottom:592.330043px;}
.yae{bottom:593.455043px;}
.ycd{bottom:597.955043px;}
.y1e{bottom:602.455043px;}
.y95{bottom:604.705043px;}
.y71{bottom:606.955043px;}
.y42{bottom:611.455043px;}
.y103{bottom:612.580042px;}
.yad{bottom:613.705042px;}
.ycc{bottom:618.205042px;}
.y149{bottom:620.455042px;}
.y1d{bottom:622.705042px;}
.y94{bottom:624.955042px;}
.y70{bottom:627.205042px;}
.y41{bottom:631.705042px;}
.y102{bottom:632.830042px;}
.yac{bottom:633.955042px;}
.ycb{bottom:638.455041px;}
.y1c{bottom:642.955041px;}
.y93{bottom:645.205041px;}
.y6f{bottom:647.455041px;}
.y40{bottom:651.955041px;}
.y146{bottom:654.205041px;}
.y121{bottom:656.455041px;}
.yca{bottom:658.705041px;}
.y1b{bottom:663.205040px;}
.y92{bottom:665.455040px;}
.y101{bottom:666.580040px;}
.y6e{bottom:667.705040px;}
.y3f{bottom:672.205040px;}
.y145{bottom:674.455040px;}
.y120{bottom:676.705040px;}
.y134{bottom:678.955040px;}
.y1a{bottom:683.455040px;}
.yef{bottom:685.705039px;}
.y6d{bottom:687.955039px;}
.y3e{bottom:692.455039px;}
.y144{bottom:694.705039px;}
.y91{bottom:696.955039px;}
.y133{bottom:699.205039px;}
.y19{bottom:703.705039px;}
.yee{bottom:705.955039px;}
.y6c{bottom:708.205038px;}
.y100{bottom:709.330038px;}
.y3d{bottom:712.705038px;}
.y90{bottom:717.205038px;}
.y132{bottom:719.455038px;}
.y18{bottom:723.955038px;}
.yed{bottom:726.205038px;}
.y6b{bottom:728.455038px;}
.yff{bottom:729.580038px;}
.y3c{bottom:732.955037px;}
.yc9{bottom:735.205037px;}
.y8f{bottom:737.455037px;}
.y131{bottom:739.705037px;}
.y17{bottom:744.205037px;}
.yec{bottom:746.455037px;}
.y6a{bottom:748.705037px;}
.yfe{bottom:749.830037px;}
.yc8{bottom:755.455037px;}
.y8e{bottom:757.705036px;}
.y16{bottom:764.455036px;}
.yeb{bottom:766.705036px;}
.yfd{bottom:770.080036px;}
.y130{bottom:771.205036px;}
.yc7{bottom:775.705036px;}
.y8d{bottom:777.955036px;}
.y69{bottom:780.205035px;}
.y15{bottom:784.705035px;}
.yea{bottom:786.955035px;}
.yfc{bottom:790.330035px;}
.yc6{bottom:795.955035px;}
.y8c{bottom:798.205035px;}
.y68{bottom:800.455035px;}
.y14{bottom:804.955034px;}
.ye9{bottom:807.205034px;}
.yfb{bottom:810.580034px;}
.yc5{bottom:816.205034px;}
.y8b{bottom:818.455034px;}
.y67{bottom:820.705034px;}
.y13{bottom:825.205034px;}
.ye8{bottom:827.455034px;}
.yfa{bottom:830.830033px;}
.yc4{bottom:836.455033px;}
.y8a{bottom:838.705033px;}
.y66{bottom:840.955033px;}
.y12{bottom:845.455033px;}
.yf9{bottom:851.080033px;}
.yc3{bottom:856.705032px;}
.y89{bottom:858.955032px;}
.y65{bottom:861.205032px;}
.y11{bottom:865.705032px;}
.yf8{bottom:871.330032px;}
.yc2{bottom:876.955031px;}
.y88{bottom:879.205031px;}
.y64{bottom:881.455031px;}
.y10{bottom:885.955031px;}
.ye7{bottom:890.455031px;}
.yc1{bottom:897.205031px;}
.y87{bottom:899.455031px;}
.y63{bottom:901.705030px;}
.yf7{bottom:902.830030px;}
.yab{bottom:910.705030px;}
.y3b{bottom:917.455030px;}
.y86{bottom:919.705030px;}
.y62{bottom:921.955030px;}
.yf6{bottom:923.080030px;}
.yf{bottom:930.955029px;}
.y3a{bottom:937.705029px;}
.y85{bottom:939.955029px;}
.y61{bottom:942.205029px;}
.yf5{bottom:943.330029px;}
.ye6{bottom:951.205028px;}
.ye{bottom:954.580028px;}
.y39{bottom:957.955028px;}
.y11f{bottom:960.205028px;}
.y60{bottom:962.455028px;}
.y84{bottom:971.455028px;}
.yd{bottom:975.955027px;}
.y38{bottom:978.205027px;}
.y11e{bottom:980.455027px;}
.y5f{bottom:982.705027px;}
.ye5{bottom:991.705027px;}
.y37{bottom:998.455026px;}
.yb{bottom:1000.705026px;}
.y5e{bottom:1002.955026px;}
.yc{bottom:1007.455026px;}
.ye4{bottom:1011.955026px;}
.y36{bottom:1018.705026px;}
.y11d{bottom:1020.955025px;}
.y5d{bottom:1023.205025px;}
.ye3{bottom:1032.205025px;}
.ya{bottom:1033.330025px;}
.y35{bottom:1038.955025px;}
.y11c{bottom:1041.205025px;}
.y5c{bottom:1043.455025px;}
.ye2{bottom:1052.455024px;}
.y34{bottom:1059.205024px;}
.y9{bottom:1061.455024px;}
.y5b{bottom:1063.705024px;}
.ye1{bottom:1072.705023px;}
.y33{bottom:1079.455023px;}
.y5a{bottom:1083.955023px;}
.ye0{bottom:1092.955022px;}
.y32{bottom:1099.705022px;}
.y59{bottom:1104.205022px;}
.ydf{bottom:1113.205022px;}
.y4{bottom:1116.580021px;}
.y58{bottom:1124.455021px;}
.y8{bottom:1126.705021px;}
.y7{bottom:1131.205021px;}
.y31{bottom:1133.455021px;}
.y3{bottom:1143.580020px;}
.y57{bottom:1144.705020px;}
.y6{bottom:1157.080020px;}
.y2{bottom:1177.330019px;}
.y83{bottom:1198.705018px;}
.y5{bottom:1205.455018px;}
.hb{height:21.677783px;}
.h5{height:27.527343px;}
.hc{height:30.968260px;}
.ha{height:36.129637px;}
.hf{height:36.336094px;}
.h4{height:41.291014px;}
.h7{height:42.749998px;}
.hd{height:45.420115px;}
.he{height:56.429997px;}
.h6{height:63.269998px;}
.h9{height:64.124997px;}
.h8{height:87.209996px;}
.h10{height:94.905000px;}
.h3{height:102.599996px;}
.h2{height:1262.830015px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x24{left:42.679686px;}
.x6{left:63.070310px;}
.x20{left:65.179685px;}
.x5{left:71.279294px;}
.x4{left:84.076168px;}
.x12{left:92.074215px;}
.xf{left:94.324215px;}
.x14{left:100.037105px;}
.x10{left:102.199214px;}
.x16{left:104.343746px;}
.x9{left:115.136714px;}
.x15{left:125.314448px;}
.x18{left:135.210932px;}
.x17{left:140.660150px;}
.x11{left:166.183587px;}
.x19{left:205.980460px;}
.x1{left:232.558584px;}
.x22{left:291.181634px;}
.x3{left:319.359362px;}
.x1a{left:334.265611px;}
.xa{left:337.816392px;}
.xb{left:349.312485px;}
.x13{left:381.550765px;}
.x2{left:391.113265px;}
.xc{left:442.124982px;}
.xd{left:458.929668px;}
.x21{left:469.107408px;}
.x1b{left:524.179666px;}
.x1c{left:527.994124px;}
.xe{left:535.517561px;}
.x1d{left:538.558571px;}
.x1e{left:543.480446px;}
.x1f{left:554.044904px;}
.x8{left:701.437471px;}
.x7{left:741.058563px;}
.x23{left:811.160122px;}
@media print{
.v1{vertical-align:-15.999999pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000001pt;}
.ls0{letter-spacing:0.021874pt;}
.ls1{letter-spacing:0.043520pt;}
.wsa{word-spacing:-47.999998pt;}
.ws7{word-spacing:-18.046874pt;}
.ws2{word-spacing:-16.874999pt;}
.ws9{word-spacing:-16.406250pt;}
.ws8{word-spacing:-14.437500pt;}
.ws4{word-spacing:-12.656249pt;}
.ws1{word-spacing:-11.250000pt;}
.ws3{word-spacing:-8.613281pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:392.187503pt;}
.ws6{word-spacing:466.687501pt;}
._38{margin-left:-7.171878pt;}
._2{margin-left:-5.976565pt;}
._1{margin-left:-4.909377pt;}
._12{margin-left:-3.515625pt;}
._7{margin-left:-2.015623pt;}
._0{margin-left:-1.093748pt;}
._3{width:1.697877pt;}
._8{width:2.802122pt;}
._2c{width:4.058957pt;}
._4{width:5.093751pt;}
._5{width:6.570310pt;}
._a{width:7.531241pt;}
._9{width:8.867191pt;}
._c{width:10.062500pt;}
._10{width:11.708314pt;}
._2b{width:12.734430pt;}
._28{width:13.703124pt;}
._27{width:14.718749pt;}
._d{width:15.968750pt;}
._48{width:17.312500pt;}
._b{width:18.278809pt;}
._6{width:19.831726pt;}
._20{width:20.750001pt;}
._3e{width:21.729247pt;}
._1f{width:22.642820pt;}
._47{width:23.560187pt;}
._22{width:24.491455pt;}
._24{width:26.242188pt;}
._21{width:28.010373pt;}
._29{width:29.364563pt;}
._25{width:31.156248pt;}
._26{width:32.421873pt;}
._30{width:33.490599pt;}
._31{width:34.428219pt;}
._2e{width:36.074951pt;}
._34{width:37.500000pt;}
._11{width:39.058594pt;}
._13{width:40.710934pt;}
._39{width:41.968747pt;}
._2a{width:43.062498pt;}
._58{width:44.046873pt;}
._45{width:45.901609pt;}
._2d{width:46.824951pt;}
._40{width:48.498529pt;}
._41{width:50.015624pt;}
._23{width:51.199948pt;}
._4c{width:52.384276pt;}
._3b{width:53.640624pt;}
._3c{width:54.940627pt;}
._3d{width:56.309368pt;}
._4b{width:57.215617pt;}
._44{width:58.718746pt;}
._2f{width:59.999998pt;}
._4a{width:61.749995pt;}
._43{width:62.937499pt;}
._4d{width:65.359373pt;}
._52{width:66.421874pt;}
._36{width:67.520810pt;}
._3f{width:69.029110pt;}
._35{width:70.984371pt;}
._37{width:72.484372pt;}
._33{width:74.890620pt;}
._42{width:75.959347pt;}
._32{width:77.374996pt;}
._54{width:78.656247pt;}
._49{width:85.671871pt;}
._3a{width:86.718749pt;}
._4e{width:96.223933pt;}
._50{width:105.708308pt;}
._55{width:106.812496pt;}
._56{width:114.937496pt;}
._46{width:118.161432pt;}
._51{width:127.710913pt;}
._59{width:134.734368pt;}
._5a{width:209.270804pt;}
._57{width:225.374990pt;}
._15{width:235.234385pt;}
._14{width:264.374989pt;}
._1b{width:271.109383pt;}
._1c{width:285.453111pt;}
._17{width:293.796863pt;}
._1a{width:306.609362pt;}
._16{width:320.484342pt;}
._53{width:333.648423pt;}
._19{width:352.359359pt;}
._5b{width:387.218732pt;}
._f{width:434.542929pt;}
._1d{width:533.203103pt;}
._1e{width:547.656205pt;}
._e{width:572.734371pt;}
._4f{width:896.296835pt;}
._18{width:1465.374918pt;}
.fs8{font-size:25.200000pt;}
.fs2{font-size:31.999999pt;}
.fs9{font-size:35.999999pt;}
.fs4{font-size:39.999998pt;}
.fs7{font-size:41.999998pt;}
.fsb{font-size:42.240000pt;}
.fs1{font-size:47.999998pt;}
.fsa{font-size:52.799997pt;}
.fs3{font-size:59.199998pt;}
.fs6{font-size:59.999998pt;}
.fs5{font-size:81.599997pt;}
.fsc{font-size:88.800000pt;}
.fs0{font-size:95.999996pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.044404pt;}
.y30{bottom:46.515614pt;}
.y157{bottom:67.515613pt;}
.y11b{bottom:71.515613pt;}
.yde{bottom:75.515613pt;}
.y2f{bottom:76.515613pt;}
.y13c{bottom:79.515613pt;}
.y2e{bottom:84.515612pt;}
.y156{bottom:85.515612pt;}
.y11a{bottom:89.515612pt;}
.ydd{bottom:93.515612pt;}
.y13b{bottom:97.515612pt;}
.y2d{bottom:102.515612pt;}
.yaa{bottom:103.515612pt;}
.y12f{bottom:105.515612pt;}
.y56{bottom:109.515611pt;}
.ydc{bottom:111.515611pt;}
.y2c{bottom:112.515611pt;}
.y13a{bottom:115.515611pt;}
.y119{bottom:117.515611pt;}
.yf4{bottom:119.515611pt;}
.ya9{bottom:121.515611pt;}
.y12e{bottom:123.515611pt;}
.y55{bottom:127.515611pt;}
.ydb{bottom:129.515611pt;}
.y2b{bottom:132.515610pt;}
.y139{bottom:133.515610pt;}
.y82{bottom:137.515610pt;}
.ya8{bottom:139.515610pt;}
.y2a{bottom:142.515610pt;}
.y54{bottom:145.515610pt;}
.y118{bottom:146.515610pt;}
.yc0{bottom:147.515610pt;}
.y12d{bottom:151.515610pt;}
.y81{bottom:155.515610pt;}
.ya7{bottom:157.515609pt;}
.y53{bottom:163.515609pt;}
.ybf{bottom:165.515609pt;}
.y155{bottom:167.515609pt;}
.y80{bottom:173.515609pt;}
.ya6{bottom:175.515609pt;}
.y12c{bottom:179.515609pt;}
.y52{bottom:181.515608pt;}
.ybe{bottom:183.515608pt;}
.y117{bottom:184.515608pt;}
.y154{bottom:185.515608pt;}
.y7f{bottom:191.515608pt;}
.ya5{bottom:193.515608pt;}
.y12b{bottom:197.515608pt;}
.y51{bottom:199.515608pt;}
.ybd{bottom:201.515608pt;}
.y116{bottom:202.515608pt;}
.y153{bottom:203.515608pt;}
.y7e{bottom:209.515607pt;}
.ya4{bottom:211.515607pt;}
.yda{bottom:213.515607pt;}
.y12a{bottom:215.515607pt;}
.y50{bottom:217.515607pt;}
.ybc{bottom:219.515607pt;}
.y115{bottom:220.515607pt;}
.y143{bottom:221.515607pt;}
.y162{bottom:225.515607pt;}
.y7d{bottom:227.515607pt;}
.ya3{bottom:229.515606pt;}
.y138{bottom:233.515606pt;}
.y15c{bottom:235.515606pt;}
.ybb{bottom:237.515606pt;}
.y114{bottom:238.515606pt;}
.y142{bottom:239.515606pt;}
.y129{bottom:243.515606pt;}
.y4f{bottom:245.515606pt;}
.ya2{bottom:247.515606pt;}
.yd9{bottom:251.515606pt;}
.yba{bottom:255.515605pt;}
.y113{bottom:256.515605pt;}
.y141{bottom:257.515605pt;}
.y161{bottom:261.515605pt;}
.y4e{bottom:263.515605pt;}
.ya1{bottom:265.515605pt;}
.y152{bottom:267.515605pt;}
.yd8{bottom:269.515605pt;}
.y128{bottom:271.515605pt;}
.yb9{bottom:273.515605pt;}
.y112{bottom:274.515605pt;}
.y140{bottom:275.515605pt;}
.y160{bottom:279.515604pt;}
.y4d{bottom:281.515604pt;}
.ya0{bottom:283.515604pt;}
.y151{bottom:285.515604pt;}
.yd7{bottom:287.515604pt;}
.y127{bottom:289.515604pt;}
.yb8{bottom:291.515604pt;}
.y111{bottom:292.515604pt;}
.y13f{bottom:293.515604pt;}
.y29{bottom:294.515604pt;}
.y15f{bottom:297.515604pt;}
.y4c{bottom:299.515604pt;}
.y150{bottom:303.515603pt;}
.yd6{bottom:305.515603pt;}
.y126{bottom:307.515603pt;}
.y7c{bottom:309.515603pt;}
.y110{bottom:310.515603pt;}
.y9f{bottom:311.515603pt;}
.y28{bottom:312.515603pt;}
.y15e{bottom:315.515603pt;}
.y4b{bottom:317.515603pt;}
.y14f{bottom:321.515603pt;}
.yd5{bottom:323.515603pt;}
.y125{bottom:325.515602pt;}
.y7b{bottom:327.515602pt;}
.y10f{bottom:328.515602pt;}
.y9e{bottom:329.515602pt;}
.y27{bottom:330.515602pt;}
.y15d{bottom:333.515602pt;}
.y4a{bottom:335.515602pt;}
.yf3{bottom:337.515602pt;}
.y14e{bottom:339.515602pt;}
.yd4{bottom:341.515602pt;}
.y148{bottom:345.515602pt;}
.y10e{bottom:346.515602pt;}
.y13e{bottom:347.515602pt;}
.y26{bottom:348.515601pt;}
.y49{bottom:353.515601pt;}
.yb7{bottom:355.515601pt;}
.y7a{bottom:357.515601pt;}
.yd3{bottom:359.515601pt;}
.y147{bottom:363.515601pt;}
.y10d{bottom:364.515601pt;}
.y13d{bottom:365.515601pt;}
.y25{bottom:366.515601pt;}
.y14d{bottom:367.515601pt;}
.y48{bottom:371.515601pt;}
.yf2{bottom:373.515600pt;}
.y9d{bottom:375.515600pt;}
.yd2{bottom:377.515600pt;}
.y15b{bottom:381.515600pt;}
.y10c{bottom:382.515600pt;}
.yb6{bottom:383.515600pt;}
.y24{bottom:384.515600pt;}
.y14c{bottom:385.515600pt;}
.y47{bottom:389.515600pt;}
.yf1{bottom:391.515600pt;}
.y9c{bottom:393.515600pt;}
.y79{bottom:395.515600pt;}
.y15a{bottom:399.515599pt;}
.y10b{bottom:400.515599pt;}
.yb5{bottom:401.515599pt;}
.y14b{bottom:403.515599pt;}
.y137{bottom:405.515599pt;}
.y46{bottom:407.515599pt;}
.yf0{bottom:409.515599pt;}
.y23{bottom:411.515599pt;}
.y78{bottom:413.515599pt;}
.y124{bottom:417.515599pt;}
.y10a{bottom:418.515599pt;}
.yb4{bottom:419.515599pt;}
.y14a{bottom:421.515598pt;}
.y136{bottom:423.515598pt;}
.y158{bottom:427.515598pt;}
.y9b{bottom:429.515598pt;}
.y77{bottom:431.515598pt;}
.y45{bottom:435.515598pt;}
.y109{bottom:436.515598pt;}
.yb3{bottom:437.515598pt;}
.y135{bottom:441.515598pt;}
.y9a{bottom:447.515597pt;}
.y76{bottom:449.515597pt;}
.y22{bottom:453.515597pt;}
.y108{bottom:454.515597pt;}
.yb2{bottom:455.515597pt;}
.yd1{bottom:459.515597pt;}
.y159{bottom:463.515597pt;}
.y99{bottom:465.515597pt;}
.y75{bottom:467.515597pt;}
.y21{bottom:471.515596pt;}
.y107{bottom:472.515596pt;}
.yb1{bottom:473.515596pt;}
.yd0{bottom:477.515596pt;}
.y123{bottom:481.515596pt;}
.y98{bottom:483.515596pt;}
.y74{bottom:485.515596pt;}
.y20{bottom:489.515596pt;}
.y106{bottom:490.515596pt;}
.yb0{bottom:491.515596pt;}
.ycf{bottom:495.515595pt;}
.y122{bottom:499.515595pt;}
.y97{bottom:501.515595pt;}
.y73{bottom:503.515595pt;}
.y44{bottom:507.515595pt;}
.y105{bottom:508.515595pt;}
.yaf{bottom:509.515595pt;}
.yce{bottom:513.515595pt;}
.y1f{bottom:517.515594pt;}
.y96{bottom:519.515594pt;}
.y72{bottom:521.515594pt;}
.y43{bottom:525.515594pt;}
.y104{bottom:526.515594pt;}
.yae{bottom:527.515594pt;}
.ycd{bottom:531.515594pt;}
.y1e{bottom:535.515594pt;}
.y95{bottom:537.515594pt;}
.y71{bottom:539.515594pt;}
.y42{bottom:543.515593pt;}
.y103{bottom:544.515593pt;}
.yad{bottom:545.515593pt;}
.ycc{bottom:549.515593pt;}
.y149{bottom:551.515593pt;}
.y1d{bottom:553.515593pt;}
.y94{bottom:555.515593pt;}
.y70{bottom:557.515593pt;}
.y41{bottom:561.515593pt;}
.y102{bottom:562.515593pt;}
.yac{bottom:563.515593pt;}
.ycb{bottom:567.515592pt;}
.y1c{bottom:571.515592pt;}
.y93{bottom:573.515592pt;}
.y6f{bottom:575.515592pt;}
.y40{bottom:579.515592pt;}
.y146{bottom:581.515592pt;}
.y121{bottom:583.515592pt;}
.yca{bottom:585.515592pt;}
.y1b{bottom:589.515591pt;}
.y92{bottom:591.515591pt;}
.y101{bottom:592.515591pt;}
.y6e{bottom:593.515591pt;}
.y3f{bottom:597.515591pt;}
.y145{bottom:599.515591pt;}
.y120{bottom:601.515591pt;}
.y134{bottom:603.515591pt;}
.y1a{bottom:607.515591pt;}
.yef{bottom:609.515591pt;}
.y6d{bottom:611.515591pt;}
.y3e{bottom:615.515590pt;}
.y144{bottom:617.515590pt;}
.y91{bottom:619.515590pt;}
.y133{bottom:621.515590pt;}
.y19{bottom:625.515590pt;}
.yee{bottom:627.515590pt;}
.y6c{bottom:629.515590pt;}
.y100{bottom:630.515590pt;}
.y3d{bottom:633.515590pt;}
.y90{bottom:637.515589pt;}
.y132{bottom:639.515589pt;}
.y18{bottom:643.515589pt;}
.yed{bottom:645.515589pt;}
.y6b{bottom:647.515589pt;}
.yff{bottom:648.515589pt;}
.y3c{bottom:651.515589pt;}
.yc9{bottom:653.515589pt;}
.y8f{bottom:655.515589pt;}
.y131{bottom:657.515589pt;}
.y17{bottom:661.515588pt;}
.yec{bottom:663.515588pt;}
.y6a{bottom:665.515588pt;}
.yfe{bottom:666.515588pt;}
.yc8{bottom:671.515588pt;}
.y8e{bottom:673.515588pt;}
.y16{bottom:679.515588pt;}
.yeb{bottom:681.515588pt;}
.yfd{bottom:684.515587pt;}
.y130{bottom:685.515587pt;}
.yc7{bottom:689.515587pt;}
.y8d{bottom:691.515587pt;}
.y69{bottom:693.515587pt;}
.y15{bottom:697.515587pt;}
.yea{bottom:699.515587pt;}
.yfc{bottom:702.515587pt;}
.yc6{bottom:707.515587pt;}
.y8c{bottom:709.515586pt;}
.y68{bottom:711.515586pt;}
.y14{bottom:715.515586pt;}
.ye9{bottom:717.515586pt;}
.yfb{bottom:720.515586pt;}
.yc5{bottom:725.515586pt;}
.y8b{bottom:727.515586pt;}
.y67{bottom:729.515586pt;}
.y13{bottom:733.515585pt;}
.ye8{bottom:735.515585pt;}
.yfa{bottom:738.515585pt;}
.yc4{bottom:743.515585pt;}
.y8a{bottom:745.515585pt;}
.y66{bottom:747.515585pt;}
.y12{bottom:751.515585pt;}
.yf9{bottom:756.515584pt;}
.yc3{bottom:761.515584pt;}
.y89{bottom:763.515584pt;}
.y65{bottom:765.515584pt;}
.y11{bottom:769.515584pt;}
.yf8{bottom:774.515584pt;}
.yc2{bottom:779.515584pt;}
.y88{bottom:781.515583pt;}
.y64{bottom:783.515583pt;}
.y10{bottom:787.515583pt;}
.ye7{bottom:791.515583pt;}
.yc1{bottom:797.515583pt;}
.y87{bottom:799.515583pt;}
.y63{bottom:801.515583pt;}
.yf7{bottom:802.515583pt;}
.yab{bottom:809.515582pt;}
.y3b{bottom:815.515582pt;}
.y86{bottom:817.515582pt;}
.y62{bottom:819.515582pt;}
.yf6{bottom:820.515582pt;}
.yf{bottom:827.515582pt;}
.y3a{bottom:833.515581pt;}
.y85{bottom:835.515581pt;}
.y61{bottom:837.515581pt;}
.yf5{bottom:838.515581pt;}
.ye6{bottom:845.515581pt;}
.ye{bottom:848.515581pt;}
.y39{bottom:851.515581pt;}
.y11f{bottom:853.515580pt;}
.y60{bottom:855.515580pt;}
.y84{bottom:863.515580pt;}
.yd{bottom:867.515580pt;}
.y38{bottom:869.515580pt;}
.y11e{bottom:871.515580pt;}
.y5f{bottom:873.515580pt;}
.ye5{bottom:881.515579pt;}
.y37{bottom:887.515579pt;}
.yb{bottom:889.515579pt;}
.y5e{bottom:891.515579pt;}
.yc{bottom:895.515579pt;}
.ye4{bottom:899.515579pt;}
.y36{bottom:905.515578pt;}
.y11d{bottom:907.515578pt;}
.y5d{bottom:909.515578pt;}
.ye3{bottom:917.515578pt;}
.ya{bottom:918.515578pt;}
.y35{bottom:923.515578pt;}
.y11c{bottom:925.515577pt;}
.y5c{bottom:927.515577pt;}
.ye2{bottom:935.515577pt;}
.y34{bottom:941.515577pt;}
.y9{bottom:943.515577pt;}
.y5b{bottom:945.515577pt;}
.ye1{bottom:953.515576pt;}
.y33{bottom:959.515576pt;}
.y5a{bottom:963.515576pt;}
.ye0{bottom:971.515576pt;}
.y32{bottom:977.515575pt;}
.y59{bottom:981.515575pt;}
.ydf{bottom:989.515575pt;}
.y4{bottom:992.515575pt;}
.y58{bottom:999.515574pt;}
.y8{bottom:1001.515574pt;}
.y7{bottom:1005.515574pt;}
.y31{bottom:1007.515574pt;}
.y3{bottom:1016.515574pt;}
.y57{bottom:1017.515574pt;}
.y6{bottom:1028.515573pt;}
.y2{bottom:1046.515572pt;}
.y83{bottom:1065.515572pt;}
.y5{bottom:1071.515571pt;}
.hb{height:19.269140pt;}
.h5{height:24.468749pt;}
.hc{height:27.527343pt;}
.ha{height:32.115233pt;}
.hf{height:32.298750pt;}
.h4{height:36.703123pt;}
.h7{height:37.999998pt;}
.hd{height:40.373435pt;}
.he{height:50.159997pt;}
.h6{height:56.239998pt;}
.h9{height:56.999998pt;}
.h8{height:77.519997pt;}
.h10{height:84.360000pt;}
.h3{height:91.199996pt;}
.h2{height:1122.515569pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x24{left:37.937498pt;}
.x6{left:56.062498pt;}
.x20{left:57.937498pt;}
.x5{left:63.359372pt;}
.x4{left:74.734372pt;}
.x12{left:81.843747pt;}
.xf{left:83.843747pt;}
.x14{left:88.921871pt;}
.x10{left:90.843746pt;}
.x16{left:92.749996pt;}
.x9{left:102.343746pt;}
.x15{left:111.390620pt;}
.x18{left:120.187495pt;}
.x17{left:125.031245pt;}
.x11{left:147.718744pt;}
.x19{left:183.093742pt;}
.x1{left:206.718741pt;}
.x22{left:258.828119pt;}
.x3{left:283.874988pt;}
.x1a{left:297.124988pt;}
.xa{left:300.281237pt;}
.xb{left:310.499987pt;}
.x13{left:339.156236pt;}
.x2{left:347.656236pt;}
.xc{left:392.999984pt;}
.xd{left:407.937483pt;}
.x21{left:416.984363pt;}
.x1b{left:465.937481pt;}
.x1c{left:469.328110pt;}
.xe{left:476.015610pt;}
.x1d{left:478.718730pt;}
.x1e{left:483.093730pt;}
.x1f{left:492.484359pt;}
.x8{left:623.499974pt;}
.x7{left:658.718723pt;}
.x23{left:721.031220pt;}
}




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