
    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_f2f9422d462938b241808c0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_f7b611d4db6424c1b35ecfd9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.692383;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_54c1a2e457f52493005879f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_19d30b1b1c9157f84f7dff87.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_42a7fc859c1595a24dc2acd6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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);}
.v2{vertical-align:-22.768069px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:14.994141px;}
.ls1{letter-spacing:16.663445px;}
.ls3{letter-spacing:17.985959px;}
.ls2{letter-spacing:31.500003px;}
.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;}
}
.ws4d{word-spacing:-49.500001px;}
.ws1b{word-spacing:-36.000000px;}
.ws0{word-spacing:-25.537775px;}
.ws1{word-spacing:-25.537767px;}
.ws2{word-spacing:-25.535187px;}
.ws3{word-spacing:-25.535149px;}
.ws4{word-spacing:-24.018905px;}
.ws6{word-spacing:-24.000001px;}
.ws25{word-spacing:-23.275890px;}
.ws9{word-spacing:-22.500012px;}
.ws7{word-spacing:-22.499992px;}
.ws26{word-spacing:-21.342330px;}
.ws72{word-spacing:-18.000036px;}
.ws3b{word-spacing:-18.000022px;}
.ws38{word-spacing:-18.000013px;}
.ws36{word-spacing:-18.000012px;}
.ws23{word-spacing:-18.000003px;}
.ws6f{word-spacing:-18.000001px;}
.ws24{word-spacing:-18.000000px;}
.ws6b{word-spacing:-17.999999px;}
.ws6e{word-spacing:-17.999978px;}
.ws3e{word-spacing:-15.020134px;}
.ws5d{word-spacing:-13.500012px;}
.ws51{word-spacing:-13.500001px;}
.ws5b{word-spacing:-13.499998px;}
.ws67{word-spacing:-13.499978px;}
.ws3c{word-spacing:-10.800000px;}
.ws71{word-spacing:-9.000023px;}
.ws31{word-spacing:-9.000012px;}
.ws10{word-spacing:-9.000001px;}
.ws14{word-spacing:-4.500012px;}
.ws64{word-spacing:-4.500001px;}
.ws3d{word-spacing:-0.024052px;}
.ws4c{word-spacing:-0.022913px;}
.ws5{word-spacing:-0.017669px;}
.ws3f{word-spacing:-0.017579px;}
.ws40{word-spacing:-0.017577px;}
.ws20{word-spacing:-0.000035px;}
.ws17{word-spacing:-0.000023px;}
.ws5c{word-spacing:-0.000013px;}
.ws16{word-spacing:-0.000012px;}
.ws37{word-spacing:-0.000003px;}
.ws8{word-spacing:0.000000px;}
.ws2e{word-spacing:0.000000px;}
.ws22{word-spacing:0.000001px;}
.ws50{word-spacing:0.000003px;}
.ws2a{word-spacing:0.000011px;}
.ws47{word-spacing:0.000022px;}
.ws53{word-spacing:0.000023px;}
.ws55{word-spacing:4.499965px;}
.ws30{word-spacing:4.499977px;}
.ws11{word-spacing:4.499988px;}
.ws46{word-spacing:4.499997px;}
.ws2f{word-spacing:4.499999px;}
.ws1c{word-spacing:4.500000px;}
.ws66{word-spacing:4.500002px;}
.wsf{word-spacing:4.500010px;}
.ws33{word-spacing:4.500022px;}
.ws3a{word-spacing:4.500033px;}
.ws15{word-spacing:8.999966px;}
.ws29{word-spacing:8.999977px;}
.ws60{word-spacing:8.999987px;}
.wsb{word-spacing:8.999988px;}
.wsc{word-spacing:9.000000px;}
.ws39{word-spacing:9.000002px;}
.ws5a{word-spacing:9.000010px;}
.ws32{word-spacing:9.000022px;}
.ws52{word-spacing:13.499966px;}
.ws1d{word-spacing:13.499978px;}
.ws19{word-spacing:13.499988px;}
.ws63{word-spacing:13.499998px;}
.ws13{word-spacing:13.499999px;}
.ws1e{word-spacing:13.500000px;}
.ws34{word-spacing:13.500002px;}
.ws4b{word-spacing:13.500010px;}
.ws49{word-spacing:13.500011px;}
.ws57{word-spacing:13.500022px;}
.ws56{word-spacing:17.999965px;}
.ws2b{word-spacing:17.999977px;}
.ws70{word-spacing:17.999987px;}
.ws5e{word-spacing:17.999988px;}
.ws1a{word-spacing:17.999989px;}
.wsa{word-spacing:18.000000px;}
.ws48{word-spacing:18.000002px;}
.ws45{word-spacing:18.000011px;}
.ws54{word-spacing:18.000022px;}
.ws59{word-spacing:22.499977px;}
.ws44{word-spacing:22.499978px;}
.ws65{word-spacing:22.499986px;}
.wse{word-spacing:22.499988px;}
.ws41{word-spacing:22.500000px;}
.ws42{word-spacing:22.500001px;}
.ws61{word-spacing:22.500011px;}
.ws2c{word-spacing:22.500022px;}
.wsd{word-spacing:26.999966px;}
.ws43{word-spacing:26.999977px;}
.ws1f{word-spacing:26.999988px;}
.ws27{word-spacing:27.000000px;}
.ws58{word-spacing:31.499966px;}
.ws4a{word-spacing:31.499977px;}
.ws62{word-spacing:31.499998px;}
.ws35{word-spacing:31.500000px;}
.ws28{word-spacing:35.999977px;}
.ws12{word-spacing:35.999989px;}
.ws2d{word-spacing:36.000000px;}
.ws21{word-spacing:40.499977px;}
.ws4f{word-spacing:40.499988px;}
.ws18{word-spacing:40.500000px;}
.ws5f{word-spacing:44.999977px;}
.ws4e{word-spacing:72.000023px;}
.ws6d{word-spacing:80.999977px;}
.ws6c{word-spacing:103.500010px;}
.ws68{word-spacing:166.499977px;}
.ws69{word-spacing:184.500000px;}
.ws73{word-spacing:971.999999px;}
.ws6a{word-spacing:2227.500011px;}
._19{margin-left:-18.000003px;}
._1{margin-left:-11.443723px;}
._1d{margin-left:-8.683629px;}
._9{margin-left:-7.207030px;}
._f{margin-left:-5.343750px;}
._2{margin-left:-3.964726px;}
._0{margin-left:-2.040708px;}
._10{width:1.159339px;}
._14{width:2.776521px;}
._16{width:7.450654px;}
._12{width:9.419409px;}
._15{width:11.528789px;}
._11{width:13.110818px;}
._13{width:15.466287px;}
._8{width:17.999902px;}
._5{width:22.500010px;}
._a{width:27.000002px;}
._4{width:31.500002px;}
._1a{width:33.363326px;}
._d{width:36.000002px;}
._3{width:40.500003px;}
._7{width:45.000000px;}
._6{width:49.500000px;}
._c{width:53.999989px;}
._b{width:58.499999px;}
._e{width:63.000002px;}
._1b{width:67.500002px;}
._18{width:93.760069px;}
._17{width:95.239929px;}
._1c{width:207.000002px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:43.200002px;}
.fs7{font-size:59.999999px;}
.fs4{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs1{font-size:96.000003px;}
.fs0{font-size:101.999997px;}
.y0{bottom:0.000000px;}
.y93{bottom:59.967044px;}
.y58{bottom:59.967779px;}
.y103{bottom:59.968499px;}
.y91{bottom:109.708743px;}
.y129{bottom:110.378902px;}
.y9e{bottom:110.380373px;}
.y27{bottom:115.333012px;}
.ybb{bottom:115.401495px;}
.y57{bottom:116.380373px;}
.y131{bottom:116.607428px;}
.yec{bottom:119.608883px;}
.y90{bottom:126.957273px;}
.yd9{bottom:127.031242px;}
.ye4{bottom:131.078618px;}
.y102{bottom:131.080073px;}
.y9d{bottom:141.427733px;}
.y8{bottom:144.766655px;}
.y11d{bottom:146.378902px;}
.y26{bottom:146.380373px;}
.y56{bottom:147.427733px;}
.y130{bottom:147.656242px;}
.y8f{bottom:149.897828px;}
.yeb{bottom:150.656242px;}
.yd8{bottom:158.078618px;}
.ye3{bottom:162.125977px;}
.y89{bottom:169.475092px;}
.y13b{bottom:169.476563px;}
.y9c{bottom:172.475092px;}
.y113{bottom:172.476563px;}
.y74{bottom:177.427733px;}
.y55{bottom:178.475092px;}
.yba{bottom:178.776862px;}
.yea{bottom:181.703618px;}
.y7{bottom:183.575870px;}
.yd7{bottom:189.125977px;}
.y101{bottom:193.171867px;}
.ye2{bottom:193.173338px;}
.y95{bottom:198.862795px;}
.y88{bottom:200.522467px;}
.y9b{bottom:203.522467px;}
.y25{bottom:208.475092px;}
.y11c{bottom:208.476563px;}
.y54{bottom:209.522467px;}
.y12f{bottom:209.748053px;}
.yb9{bottom:209.824223px;}
.ye9{bottom:212.750978px;}
.ye1{bottom:224.220698px;}
.y87{bottom:231.569828px;}
.y13a{bottom:231.571283px;}
.y112{bottom:234.568358px;}
.y9a{bottom:234.569828px;}
.y73{bottom:239.522467px;}
.y24{bottom:239.522648px;}
.y53{bottom:240.569828px;}
.y12e{bottom:240.796867px;}
.yb8{bottom:240.871582px;}
.ye8{bottom:243.798338px;}
.yd6{bottom:251.220698px;}
.ye0{bottom:255.268073px;}
.y100{bottom:255.269528px;}
.y86{bottom:262.617187px;}
.y99{bottom:265.617187px;}
.y11b{bottom:270.568358px;}
.y72{bottom:270.569828px;}
.y23{bottom:270.570007px;}
.y52{bottom:271.617187px;}
.y12d{bottom:271.845698px;}
.yb7{bottom:271.918943px;}
.ye7{bottom:274.845698px;}
.yd5{bottom:282.268073px;}
.yff{bottom:286.315433px;}
.y8e{bottom:293.664548px;}
.y139{bottom:293.666017px;}
.y98{bottom:296.664548px;}
.y111{bottom:296.666017px;}
.y71{bottom:301.617187px;}
.y22{bottom:301.617367px;}
.y51{bottom:302.664548px;}
.y12c{bottom:302.891603px;}
.yb6{bottom:302.966302px;}
.ye6{bottom:305.893073px;}
.yd4{bottom:313.315433px;}
.yfe{bottom:317.361323px;}
.ydf{bottom:317.362793px;}
.y85{bottom:324.711908px;}
.y97{bottom:327.711908px;}
.y70{bottom:332.664548px;}
.y21{bottom:332.664728px;}
.y132{bottom:332.666017px;}
.y50{bottom:333.711908px;}
.y12b{bottom:333.937492px;}
.yb5{bottom:334.013678px;}
.ye5{bottom:336.940433px;}
.yd3{bottom:344.362793px;}
.yde{bottom:348.410152px;}
.y84{bottom:355.759283px;}
.y138{bottom:355.760738px;}
.y110{bottom:358.757812px;}
.y6f{bottom:363.711908px;}
.y20{bottom:363.712103px;}
.y4f{bottom:364.759283px;}
.yb4{bottom:365.061038px;}
.yd2{bottom:375.410152px;}
.ydd{bottom:379.457513px;}
.yfd{bottom:379.458983px;}
.y83{bottom:386.806642px;}
.y128{bottom:389.806642px;}
.y11a{bottom:394.757812px;}
.y6e{bottom:394.759283px;}
.y1f{bottom:394.759462px;}
.y12a{bottom:395.806642px;}
.yb3{bottom:396.108398px;}
.y96{bottom:398.806642px;}
.yd1{bottom:406.457513px;}
.ydc{bottom:410.504887px;}
.y82{bottom:417.854002px;}
.y10f{bottom:420.855473px;}
.y6d{bottom:425.806642px;}
.y1e{bottom:425.806823px;}
.y4e{bottom:426.854002px;}
.yb2{bottom:427.155757px;}
.yd0{bottom:437.504887px;}
.ydb{bottom:441.552248px;}
.y81{bottom:448.901363px;}
.y10e{bottom:451.901363px;}
.y6c{bottom:456.854002px;}
.y1d{bottom:456.854183px;}
.y119{bottom:456.855473px;}
.y4d{bottom:457.901363px;}
.yb1{bottom:458.203117px;}
.ycf{bottom:468.552248px;}
.yfc{bottom:472.599607px;}
.y3a{bottom:473.496098px;}
.y6{bottom:474.538141px;}
.y8d{bottom:479.948738px;}
.y137{bottom:479.950192px;}
.y10d{bottom:482.947268px;}
.y6b{bottom:487.901363px;}
.y1c{bottom:487.901558px;}
.y4c{bottom:488.948738px;}
.yb0{bottom:489.250492px;}
.yce{bottom:499.599608px;}
.yfb{bottom:503.648438px;}
.y39{bottom:509.043458px;}
.y80{bottom:510.996098px;}
.y10c{bottom:513.996098px;}
.y5{bottom:515.934586px;}
.yda{bottom:517.289065px;}
.y118{bottom:518.947268px;}
.y6a{bottom:518.948738px;}
.y1b{bottom:518.948918px;}
.y4b{bottom:519.996098px;}
.yaf{bottom:520.297853px;}
.ycd{bottom:530.646968px;}
.yfa{bottom:534.694342px;}
.y7f{bottom:542.043458px;}
.y136{bottom:542.044928px;}
.y38{bottom:544.590818px;}
.y10b{bottom:545.044928px;}
.y69{bottom:549.996098px;}
.y1a{bottom:549.996277px;}
.y4a{bottom:551.043458px;}
.yae{bottom:551.345213px;}
.y4{bottom:557.331076px;}
.ycc{bottom:561.694342px;}
.yf9{bottom:565.740233px;}
.y7e{bottom:573.090818px;}
.y127{bottom:576.090818px;}
.y37{bottom:580.138178px;}
.y68{bottom:581.043458px;}
.y19{bottom:581.043638px;}
.y117{bottom:581.044928px;}
.y49{bottom:582.090818px;}
.ycb{bottom:592.741702px;}
.yf8{bottom:596.789063px;}
.y7d{bottom:604.138178px;}
.y135{bottom:604.139648px;}
.y126{bottom:607.136723px;}
.y67{bottom:612.090818px;}
.y18{bottom:612.090998px;}
.yad{bottom:613.439948px;}
.y36{bottom:615.685552px;}
.y10a{bottom:616.136722px;}
.yca{bottom:623.789063px;}
.yf7{bottom:627.837893px;}
.y7c{bottom:635.185552px;}
.y125{bottom:638.185552px;}
.y116{bottom:643.136723px;}
.y94{bottom:643.138178px;}
.y17{bottom:643.138373px;}
.y48{bottom:644.185552px;}
.yac{bottom:644.487308px;}
.y35{bottom:651.232912px;}
.yf6{bottom:658.883783px;}
.y7b{bottom:666.232912px;}
.y134{bottom:666.234367px;}
.y66{bottom:674.185552px;}
.y47{bottom:675.232912px;}
.yab{bottom:675.534668px;}
.yc9{bottom:685.883783px;}
.y34{bottom:686.780273px;}
.yf5{bottom:689.929688px;}
.y8c{bottom:697.280273px;}
.y124{bottom:700.280273px;}
.y65{bottom:705.232912px;}
.y16{bottom:705.233092px;}
.y109{bottom:705.234367px;}
.y3{bottom:705.992889px;}
.y46{bottom:706.280273px;}
.yaa{bottom:706.582027px;}
.yc8{bottom:716.931157px;}
.yf4{bottom:720.978517px;}
.y33{bottom:722.327633px;}
.y7a{bottom:728.327633px;}
.y123{bottom:731.326178px;}
.y64{bottom:736.280273px;}
.y15{bottom:736.280453px;}
.y133{bottom:737.326177px;}
.y45{bottom:737.327633px;}
.ya9{bottom:737.629388px;}
.yc7{bottom:747.978517px;}
.yf3{bottom:752.027348px;}
.y32{bottom:757.874992px;}
.y79{bottom:759.374992px;}
.y122{bottom:762.374992px;}
.y108{bottom:767.326178px;}
.y63{bottom:767.327633px;}
.y14{bottom:767.327812px;}
.y44{bottom:768.374992px;}
.ya8{bottom:768.676762px;}
.yc6{bottom:779.025877px;}
.yf2{bottom:783.073238px;}
.y31{bottom:788.922367px;}
.y78{bottom:790.422367px;}
.y121{bottom:793.423822px;}
.y62{bottom:798.374992px;}
.y13{bottom:798.375188px;}
.y43{bottom:799.422367px;}
.yc5{bottom:810.073238px;}
.y77{bottom:821.469727px;}
.y30{bottom:824.469727px;}
.y2{bottom:827.595069px;}
.y61{bottom:829.422367px;}
.y12{bottom:829.422548px;}
.y107{bottom:829.423822px;}
.y42{bottom:830.469727px;}
.ya7{bottom:830.771482px;}
.yc4{bottom:841.120612px;}
.yf1{bottom:845.167973px;}
.y76{bottom:852.517088px;}
.y120{bottom:855.515618px;}
.y2f{bottom:860.017088px;}
.y92{bottom:860.469727px;}
.y11{bottom:860.469907px;}
.y41{bottom:861.517088px;}
.ya6{bottom:861.818842px;}
.y1{bottom:871.578834px;}
.yc3{bottom:872.167973px;}
.yf0{bottom:876.216802px;}
.y75{bottom:883.564448px;}
.y11f{bottom:886.564448px;}
.y115{bottom:891.515617px;}
.y60{bottom:891.517088px;}
.y10{bottom:891.517267px;}
.ya5{bottom:892.866217px;}
.y2e{bottom:895.564448px;}
.yc2{bottom:903.215332px;}
.yef{bottom:907.262692px;}
.y8b{bottom:914.611823px;}
.y5f{bottom:922.564448px;}
.yf{bottom:922.564642px;}
.y40{bottom:923.611823px;}
.ya4{bottom:923.913577px;}
.y2d{bottom:931.111823px;}
.yc1{bottom:934.262692px;}
.yee{bottom:938.310052px;}
.y8a{bottom:945.659182px;}
.y5e{bottom:953.611823px;}
.ye{bottom:953.612003px;}
.y106{bottom:953.613277px;}
.y3f{bottom:954.659182px;}
.ya3{bottom:954.960938px;}
.y11e{bottom:957.659182px;}
.yc0{bottom:965.310052px;}
.y2c{bottom:966.659182px;}
.y5d{bottom:984.659182px;}
.yd{bottom:984.659362px;}
.y3e{bottom:985.706543px;}
.ya2{bottom:986.008298px;}
.ybf{bottom:996.357421px;}
.y2b{bottom:1002.206543px;}
.yed{bottom:1014.046873px;}
.y105{bottom:1015.705079px;}
.y5c{bottom:1015.706543px;}
.yc{bottom:1015.706725px;}
.y3d{bottom:1016.753905px;}
.ya1{bottom:1017.055664px;}
.ybe{bottom:1027.404785px;}
.y2a{bottom:1037.753905px;}
.y5b{bottom:1046.753905px;}
.yb{bottom:1046.754090px;}
.y3c{bottom:1047.801270px;}
.ya0{bottom:1048.103028px;}
.ybd{bottom:1058.452149px;}
.y29{bottom:1073.301270px;}
.y5a{bottom:1077.801270px;}
.ya{bottom:1077.801453px;}
.y104{bottom:1077.802734px;}
.y59{bottom:1108.848633px;}
.y3b{bottom:1118.895995px;}
.y9f{bottom:1128.561034px;}
.ybc{bottom:1134.188965px;}
.y114{bottom:1139.894530px;}
.y28{bottom:1139.895996px;}
.y9{bottom:1139.896179px;}
.ha{height:29.878414px;}
.hc{height:31.587891px;}
.h8{height:47.437501px;}
.h5{height:48.796875px;}
.he{height:49.992188px;}
.hb{height:52.646483px;}
.h6{height:63.175781px;}
.h2{height:65.062502px;}
.h9{height:65.227151px;}
.h1{height:69.128904px;}
.h4{height:78.969727px;}
.h3{height:84.234378px;}
.h7{height:105.924315px;}
.hd{height:105.925785px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x5{left:148.956468px;}
.x1{left:159.604641px;}
.xa{left:175.818902px;}
.x9{left:202.818902px;}
.x2{left:217.937226px;}
.x4{left:336.949625px;}
.x3{left:360.362192px;}
.x6{left:411.087767px;}
.x8{left:532.939869px;}
.x7{left:562.932538px;}
.xc{left:768.274153px;}
.xd{left:769.498783px;}
.xb{left:777.444174px;}
@media print{
.v2{vertical-align:-20.238283pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:13.328125pt;}
.ls1{letter-spacing:14.811951pt;}
.ls3{letter-spacing:15.987519pt;}
.ls2{letter-spacing:28.000002pt;}
.ws4d{word-spacing:-44.000001pt;}
.ws1b{word-spacing:-32.000000pt;}
.ws0{word-spacing:-22.700245pt;}
.ws1{word-spacing:-22.700237pt;}
.ws2{word-spacing:-22.697944pt;}
.ws3{word-spacing:-22.697910pt;}
.ws4{word-spacing:-21.350138pt;}
.ws6{word-spacing:-21.333334pt;}
.ws25{word-spacing:-20.689680pt;}
.ws9{word-spacing:-20.000010pt;}
.ws7{word-spacing:-19.999993pt;}
.ws26{word-spacing:-18.970960pt;}
.ws72{word-spacing:-16.000032pt;}
.ws3b{word-spacing:-16.000020pt;}
.ws38{word-spacing:-16.000012pt;}
.ws36{word-spacing:-16.000010pt;}
.ws23{word-spacing:-16.000002pt;}
.ws6f{word-spacing:-16.000001pt;}
.ws24{word-spacing:-16.000000pt;}
.ws6b{word-spacing:-15.999999pt;}
.ws6e{word-spacing:-15.999981pt;}
.ws3e{word-spacing:-13.351230pt;}
.ws5d{word-spacing:-12.000010pt;}
.ws51{word-spacing:-12.000001pt;}
.ws5b{word-spacing:-11.999998pt;}
.ws67{word-spacing:-11.999980pt;}
.ws3c{word-spacing:-9.600000pt;}
.ws71{word-spacing:-8.000020pt;}
.ws31{word-spacing:-8.000010pt;}
.ws10{word-spacing:-8.000001pt;}
.ws14{word-spacing:-4.000010pt;}
.ws64{word-spacing:-4.000001pt;}
.ws3d{word-spacing:-0.021380pt;}
.ws4c{word-spacing:-0.020367pt;}
.ws5{word-spacing:-0.015706pt;}
.ws3f{word-spacing:-0.015626pt;}
.ws40{word-spacing:-0.015624pt;}
.ws20{word-spacing:-0.000031pt;}
.ws17{word-spacing:-0.000020pt;}
.ws5c{word-spacing:-0.000012pt;}
.ws16{word-spacing:-0.000010pt;}
.ws37{word-spacing:-0.000002pt;}
.ws8{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.000000pt;}
.ws22{word-spacing:0.000001pt;}
.ws50{word-spacing:0.000002pt;}
.ws2a{word-spacing:0.000010pt;}
.ws47{word-spacing:0.000019pt;}
.ws53{word-spacing:0.000020pt;}
.ws55{word-spacing:3.999969pt;}
.ws30{word-spacing:3.999980pt;}
.ws11{word-spacing:3.999990pt;}
.ws46{word-spacing:3.999998pt;}
.ws2f{word-spacing:3.999999pt;}
.ws1c{word-spacing:4.000000pt;}
.ws66{word-spacing:4.000002pt;}
.wsf{word-spacing:4.000009pt;}
.ws33{word-spacing:4.000020pt;}
.ws3a{word-spacing:4.000029pt;}
.ws15{word-spacing:7.999970pt;}
.ws29{word-spacing:7.999980pt;}
.ws60{word-spacing:7.999989pt;}
.wsb{word-spacing:7.999990pt;}
.wsc{word-spacing:8.000000pt;}
.ws39{word-spacing:8.000002pt;}
.ws5a{word-spacing:8.000009pt;}
.ws32{word-spacing:8.000020pt;}
.ws52{word-spacing:11.999970pt;}
.ws1d{word-spacing:11.999980pt;}
.ws19{word-spacing:11.999990pt;}
.ws63{word-spacing:11.999998pt;}
.ws13{word-spacing:11.999999pt;}
.ws1e{word-spacing:12.000000pt;}
.ws34{word-spacing:12.000002pt;}
.ws4b{word-spacing:12.000009pt;}
.ws49{word-spacing:12.000010pt;}
.ws57{word-spacing:12.000020pt;}
.ws56{word-spacing:15.999969pt;}
.ws2b{word-spacing:15.999980pt;}
.ws70{word-spacing:15.999988pt;}
.ws5e{word-spacing:15.999989pt;}
.ws1a{word-spacing:15.999990pt;}
.wsa{word-spacing:16.000000pt;}
.ws48{word-spacing:16.000002pt;}
.ws45{word-spacing:16.000010pt;}
.ws54{word-spacing:16.000020pt;}
.ws59{word-spacing:19.999979pt;}
.ws44{word-spacing:19.999980pt;}
.ws65{word-spacing:19.999988pt;}
.wse{word-spacing:19.999990pt;}
.ws41{word-spacing:20.000000pt;}
.ws42{word-spacing:20.000001pt;}
.ws61{word-spacing:20.000010pt;}
.ws2c{word-spacing:20.000020pt;}
.wsd{word-spacing:23.999970pt;}
.ws43{word-spacing:23.999980pt;}
.ws1f{word-spacing:23.999990pt;}
.ws27{word-spacing:24.000000pt;}
.ws58{word-spacing:27.999970pt;}
.ws4a{word-spacing:27.999980pt;}
.ws62{word-spacing:27.999998pt;}
.ws35{word-spacing:28.000000pt;}
.ws28{word-spacing:31.999980pt;}
.ws12{word-spacing:31.999990pt;}
.ws2d{word-spacing:32.000000pt;}
.ws21{word-spacing:35.999980pt;}
.ws4f{word-spacing:35.999990pt;}
.ws18{word-spacing:36.000000pt;}
.ws5f{word-spacing:39.999980pt;}
.ws4e{word-spacing:64.000020pt;}
.ws6d{word-spacing:71.999979pt;}
.ws6c{word-spacing:92.000009pt;}
.ws68{word-spacing:147.999980pt;}
.ws69{word-spacing:164.000000pt;}
.ws73{word-spacing:863.999999pt;}
.ws6a{word-spacing:1980.000010pt;}
._19{margin-left:-16.000003pt;}
._1{margin-left:-10.172198pt;}
._1d{margin-left:-7.718782pt;}
._9{margin-left:-6.406248pt;}
._f{margin-left:-4.750000pt;}
._2{margin-left:-3.524201pt;}
._0{margin-left:-1.813963pt;}
._10{width:1.030523pt;}
._14{width:2.468018pt;}
._16{width:6.622804pt;}
._12{width:8.372808pt;}
._15{width:10.247812pt;}
._11{width:11.654060pt;}
._13{width:13.747811pt;}
._8{width:15.999913pt;}
._5{width:20.000009pt;}
._a{width:24.000002pt;}
._4{width:28.000002pt;}
._1a{width:29.656290pt;}
._d{width:32.000001pt;}
._3{width:36.000002pt;}
._7{width:40.000000pt;}
._6{width:44.000000pt;}
._c{width:47.999991pt;}
._b{width:52.000000pt;}
._e{width:56.000002pt;}
._1b{width:60.000002pt;}
._18{width:83.342284pt;}
._17{width:84.657714pt;}
._1c{width:184.000001pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:38.400002pt;}
.fs7{font-size:53.333332pt;}
.fs4{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs1{font-size:85.333336pt;}
.fs0{font-size:90.666664pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:53.304039pt;}
.y58{bottom:53.304692pt;}
.y103{bottom:53.305332pt;}
.y91{bottom:97.518883pt;}
.y129{bottom:98.114580pt;}
.y9e{bottom:98.115887pt;}
.y27{bottom:102.518233pt;}
.ybb{bottom:102.579107pt;}
.y57{bottom:103.449220pt;}
.y131{bottom:103.651047pt;}
.yec{bottom:106.319007pt;}
.y90{bottom:112.850910pt;}
.yd9{bottom:112.916660pt;}
.ye4{bottom:116.514327pt;}
.y102{bottom:116.515620pt;}
.y9d{bottom:125.713540pt;}
.y8{bottom:128.681471pt;}
.y11d{bottom:130.114580pt;}
.y26{bottom:130.115887pt;}
.y56{bottom:131.046873pt;}
.y130{bottom:131.249993pt;}
.y8f{bottom:133.242513pt;}
.yeb{bottom:133.916660pt;}
.yd8{bottom:140.514327pt;}
.ye3{bottom:144.111980pt;}
.y89{bottom:150.644527pt;}
.y13b{bottom:150.645833pt;}
.y9c{bottom:153.311193pt;}
.y113{bottom:153.312500pt;}
.y74{bottom:157.713540pt;}
.y55{bottom:158.644527pt;}
.yba{bottom:158.912767pt;}
.yea{bottom:161.514327pt;}
.y7{bottom:163.178551pt;}
.yd7{bottom:168.111980pt;}
.y101{bottom:171.708327pt;}
.ye2{bottom:171.709633pt;}
.y95{bottom:176.766929pt;}
.y88{bottom:178.242193pt;}
.y9b{bottom:180.908860pt;}
.y25{bottom:185.311193pt;}
.y11c{bottom:185.312500pt;}
.y54{bottom:186.242193pt;}
.y12f{bottom:186.442713pt;}
.yb9{bottom:186.510420pt;}
.ye9{bottom:189.111980pt;}
.ye1{bottom:199.307287pt;}
.y87{bottom:205.839847pt;}
.y13a{bottom:205.841140pt;}
.y112{bottom:208.505207pt;}
.y9a{bottom:208.506513pt;}
.y73{bottom:212.908860pt;}
.y24{bottom:212.909020pt;}
.y53{bottom:213.839847pt;}
.y12e{bottom:214.041660pt;}
.yb8{bottom:214.108073pt;}
.ye8{bottom:216.709633pt;}
.yd6{bottom:223.307287pt;}
.ye0{bottom:226.904953pt;}
.y100{bottom:226.906247pt;}
.y86{bottom:233.437500pt;}
.y99{bottom:236.104167pt;}
.y11b{bottom:240.505207pt;}
.y72{bottom:240.506513pt;}
.y23{bottom:240.506673pt;}
.y52{bottom:241.437500pt;}
.y12d{bottom:241.640620pt;}
.yb7{bottom:241.705727pt;}
.ye7{bottom:244.307287pt;}
.yd5{bottom:250.904953pt;}
.yff{bottom:254.502607pt;}
.y8e{bottom:261.035153pt;}
.y139{bottom:261.036460pt;}
.y98{bottom:263.701820pt;}
.y111{bottom:263.703127pt;}
.y71{bottom:268.104167pt;}
.y22{bottom:268.104327pt;}
.y51{bottom:269.035153pt;}
.y12c{bottom:269.236980pt;}
.yb6{bottom:269.303380pt;}
.ye6{bottom:271.904953pt;}
.yd4{bottom:278.502607pt;}
.yfe{bottom:282.098953pt;}
.ydf{bottom:282.100260pt;}
.y85{bottom:288.632807pt;}
.y97{bottom:291.299473pt;}
.y70{bottom:295.701820pt;}
.y21{bottom:295.701980pt;}
.y132{bottom:295.703127pt;}
.y50{bottom:296.632807pt;}
.y12b{bottom:296.833327pt;}
.yb5{bottom:296.901047pt;}
.ye5{bottom:299.502607pt;}
.yd3{bottom:306.100260pt;}
.yde{bottom:309.697913pt;}
.y84{bottom:316.230473pt;}
.y138{bottom:316.231767pt;}
.y110{bottom:318.895833pt;}
.y6f{bottom:323.299473pt;}
.y20{bottom:323.299647pt;}
.y4f{bottom:324.230473pt;}
.yb4{bottom:324.498700pt;}
.yd2{bottom:333.697913pt;}
.ydd{bottom:337.295567pt;}
.yfd{bottom:337.296873pt;}
.y83{bottom:343.828127pt;}
.y128{bottom:346.494793pt;}
.y11a{bottom:350.895833pt;}
.y6e{bottom:350.897140pt;}
.y1f{bottom:350.897300pt;}
.y12a{bottom:351.828126pt;}
.yb3{bottom:352.096353pt;}
.y96{bottom:354.494793pt;}
.yd1{bottom:361.295567pt;}
.ydc{bottom:364.893233pt;}
.y82{bottom:371.425780pt;}
.y10f{bottom:374.093753pt;}
.y6d{bottom:378.494793pt;}
.y1e{bottom:378.494953pt;}
.y4e{bottom:379.425780pt;}
.yb2{bottom:379.694007pt;}
.yd0{bottom:388.893233pt;}
.ydb{bottom:392.490887pt;}
.y81{bottom:399.023433pt;}
.y10e{bottom:401.690100pt;}
.y6c{bottom:406.092447pt;}
.y1d{bottom:406.092607pt;}
.y119{bottom:406.093753pt;}
.y4d{bottom:407.023433pt;}
.yb1{bottom:407.291660pt;}
.ycf{bottom:416.490887pt;}
.yfc{bottom:420.088540pt;}
.y3a{bottom:420.885420pt;}
.y6{bottom:421.811681pt;}
.y8d{bottom:426.621100pt;}
.y137{bottom:426.622393pt;}
.y10d{bottom:429.286460pt;}
.y6b{bottom:433.690100pt;}
.y1c{bottom:433.690273pt;}
.y4c{bottom:434.621100pt;}
.yb0{bottom:434.889327pt;}
.yce{bottom:444.088540pt;}
.yfb{bottom:447.687500pt;}
.y39{bottom:452.483073pt;}
.y80{bottom:454.218753pt;}
.y10c{bottom:456.885420pt;}
.y5{bottom:458.608521pt;}
.yda{bottom:459.812502pt;}
.y118{bottom:461.286460pt;}
.y6a{bottom:461.287767pt;}
.y1b{bottom:461.287927pt;}
.y4b{bottom:462.218753pt;}
.yaf{bottom:462.486980pt;}
.ycd{bottom:471.686193pt;}
.yfa{bottom:475.283860pt;}
.y7f{bottom:481.816407pt;}
.y136{bottom:481.817713pt;}
.y38{bottom:484.080727pt;}
.y10b{bottom:484.484380pt;}
.y69{bottom:488.885420pt;}
.y1a{bottom:488.885580pt;}
.y4a{bottom:489.816407pt;}
.yae{bottom:490.084633pt;}
.y4{bottom:495.405401pt;}
.ycc{bottom:499.283860pt;}
.yf9{bottom:502.880207pt;}
.y7e{bottom:509.414060pt;}
.y127{bottom:512.080727pt;}
.y37{bottom:515.678380pt;}
.y68{bottom:516.483073pt;}
.y19{bottom:516.483233pt;}
.y117{bottom:516.484380pt;}
.y49{bottom:517.414060pt;}
.ycb{bottom:526.881513pt;}
.yf8{bottom:530.479167pt;}
.y7d{bottom:537.011713pt;}
.y135{bottom:537.013020pt;}
.y126{bottom:539.677087pt;}
.y67{bottom:544.080727pt;}
.y18{bottom:544.080887pt;}
.yad{bottom:545.279953pt;}
.y36{bottom:547.276047pt;}
.y10a{bottom:547.677086pt;}
.yca{bottom:554.479167pt;}
.yf7{bottom:558.078127pt;}
.y7c{bottom:564.609380pt;}
.y125{bottom:567.276047pt;}
.y116{bottom:571.677087pt;}
.y94{bottom:571.678380pt;}
.y17{bottom:571.678553pt;}
.y48{bottom:572.609380pt;}
.yac{bottom:572.877607pt;}
.y35{bottom:578.873700pt;}
.yf6{bottom:585.674473pt;}
.y7b{bottom:592.207033pt;}
.y134{bottom:592.208327pt;}
.y66{bottom:599.276047pt;}
.y47{bottom:600.207033pt;}
.yab{bottom:600.475260pt;}
.yc9{bottom:609.674473pt;}
.y34{bottom:610.471353pt;}
.yf5{bottom:613.270833pt;}
.y8c{bottom:619.804687pt;}
.y124{bottom:622.471353pt;}
.y65{bottom:626.873700pt;}
.y16{bottom:626.873860pt;}
.y109{bottom:626.874993pt;}
.y3{bottom:627.549235pt;}
.y46{bottom:627.804687pt;}
.yaa{bottom:628.072913pt;}
.yc8{bottom:637.272140pt;}
.yf4{bottom:640.869793pt;}
.y33{bottom:642.069007pt;}
.y7a{bottom:647.402340pt;}
.y123{bottom:650.067713pt;}
.y64{bottom:654.471353pt;}
.y15{bottom:654.471513pt;}
.y133{bottom:655.401046pt;}
.y45{bottom:655.402340pt;}
.ya9{bottom:655.670567pt;}
.yc7{bottom:664.869793pt;}
.yf3{bottom:668.468753pt;}
.y32{bottom:673.666660pt;}
.y79{bottom:674.999993pt;}
.y122{bottom:677.666660pt;}
.y108{bottom:682.067713pt;}
.y63{bottom:682.069007pt;}
.y14{bottom:682.069167pt;}
.y44{bottom:682.999993pt;}
.ya8{bottom:683.268233pt;}
.yc6{bottom:692.467447pt;}
.yf2{bottom:696.065100pt;}
.y31{bottom:701.264327pt;}
.y78{bottom:702.597660pt;}
.y121{bottom:705.265620pt;}
.y62{bottom:709.666660pt;}
.y13{bottom:709.666833pt;}
.y43{bottom:710.597660pt;}
.yc5{bottom:720.065100pt;}
.y77{bottom:730.195313pt;}
.y30{bottom:732.861980pt;}
.y2{bottom:735.640061pt;}
.y61{bottom:737.264327pt;}
.y12{bottom:737.264487pt;}
.y107{bottom:737.265620pt;}
.y42{bottom:738.195313pt;}
.ya7{bottom:738.463540pt;}
.yc4{bottom:747.662767pt;}
.yf1{bottom:751.260420pt;}
.y76{bottom:757.792967pt;}
.y120{bottom:760.458327pt;}
.y2f{bottom:764.459633pt;}
.y92{bottom:764.861980pt;}
.y11{bottom:764.862140pt;}
.y41{bottom:765.792967pt;}
.ya6{bottom:766.061193pt;}
.y1{bottom:774.736741pt;}
.yc3{bottom:775.260420pt;}
.yf0{bottom:778.859380pt;}
.y75{bottom:785.390620pt;}
.y11f{bottom:788.057287pt;}
.y115{bottom:792.458327pt;}
.y60{bottom:792.459633pt;}
.y10{bottom:792.459793pt;}
.ya5{bottom:793.658860pt;}
.y2e{bottom:796.057287pt;}
.yc2{bottom:802.858073pt;}
.yef{bottom:806.455727pt;}
.y8b{bottom:812.988287pt;}
.y5f{bottom:820.057287pt;}
.yf{bottom:820.057460pt;}
.y40{bottom:820.988287pt;}
.ya4{bottom:821.256513pt;}
.y2d{bottom:827.654953pt;}
.yc1{bottom:830.455727pt;}
.yee{bottom:834.053380pt;}
.y8a{bottom:840.585940pt;}
.y5e{bottom:847.654953pt;}
.ye{bottom:847.655113pt;}
.y106{bottom:847.656247pt;}
.y3f{bottom:848.585940pt;}
.ya3{bottom:848.854167pt;}
.y11e{bottom:851.252606pt;}
.yc0{bottom:858.053380pt;}
.y2c{bottom:859.252607pt;}
.y5d{bottom:875.252607pt;}
.yd{bottom:875.252767pt;}
.y3e{bottom:876.183593pt;}
.ya2{bottom:876.451820pt;}
.ybf{bottom:885.651041pt;}
.y2b{bottom:890.850260pt;}
.yed{bottom:901.374998pt;}
.y105{bottom:902.848959pt;}
.y5c{bottom:902.850260pt;}
.yc{bottom:902.850423pt;}
.y3d{bottom:903.781249pt;}
.ya1{bottom:904.049479pt;}
.ybe{bottom:913.248697pt;}
.y2a{bottom:922.447916pt;}
.y5b{bottom:930.447916pt;}
.yb{bottom:930.448080pt;}
.y3c{bottom:931.378907pt;}
.ya0{bottom:931.647136pt;}
.ybd{bottom:940.846355pt;}
.y29{bottom:954.045573pt;}
.y5a{bottom:958.045573pt;}
.ya{bottom:958.045736pt;}
.y104{bottom:958.046875pt;}
.y59{bottom:985.643229pt;}
.y3b{bottom:994.574218pt;}
.y9f{bottom:1003.165364pt;}
.ybc{bottom:1008.167969pt;}
.y114{bottom:1013.239583pt;}
.y28{bottom:1013.240885pt;}
.y9{bottom:1013.241048pt;}
.ha{height:26.558591pt;}
.hc{height:28.078125pt;}
.h8{height:42.166668pt;}
.h5{height:43.375000pt;}
.he{height:44.437500pt;}
.hb{height:46.796874pt;}
.h6{height:56.156250pt;}
.h2{height:57.833335pt;}
.h9{height:57.979690pt;}
.h1{height:61.447915pt;}
.h4{height:70.195313pt;}
.h3{height:74.875002pt;}
.h7{height:94.154947pt;}
.hd{height:94.156253pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x5{left:132.405750pt;}
.x1{left:141.870792pt;}
.xa{left:156.283468pt;}
.x9{left:180.283468pt;}
.x2{left:193.721979pt;}
.x4{left:299.510778pt;}
.x3{left:320.321948pt;}
.x6{left:365.411348pt;}
.x8{left:473.724328pt;}
.x7{left:500.384478pt;}
.xc{left:682.910358pt;}
.xd{left:683.998918pt;}
.xb{left:691.061488pt;}
}




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