
    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_66af823348f5a7028aa01b9d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093000;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_f55b460a70a43d3d5e51d43f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_0214899aa16cbbad8158d2bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.129000;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);}
.v1{vertical-align:-36.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:36.000000px;}
.ls1b{letter-spacing:-1.176000px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.486000px;}
.ls8{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.594000px;}
.lse{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.624000px;}
.ls2{letter-spacing:0.648000px;}
.ls11{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.840000px;}
.ls1a{letter-spacing:0.900000px;}
.ls13{letter-spacing:1.020000px;}
.ls1c{letter-spacing:3.654000px;}
.ls4{letter-spacing:7.020600px;}
.ls17{letter-spacing:30.672000px;}
.ls18{letter-spacing:70.704000px;}
.ls19{letter-spacing:107.520000px;}
.ls16{letter-spacing:254.435400px;}
.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;}
}
.ws0{word-spacing:-17.292000px;}
.ws4{word-spacing:-15.720000px;}
.ws1{word-spacing:-14.148000px;}
.ws3{word-spacing:-12.576000px;}
.ws6{word-spacing:-11.004000px;}
.ws5{word-spacing:-9.324000px;}
.ws8{word-spacing:-3.654000px;}
.wsb{word-spacing:-0.720000px;}
.wsc{word-spacing:-0.660000px;}
.ws9{word-spacing:-0.648000px;}
.wsa{word-spacing:-0.576000px;}
.wsd{word-spacing:-0.540000px;}
.ws7{word-spacing:-0.504000px;}
.wse{word-spacing:-0.120000px;}
.ws2{word-spacing:0.000000px;}
._9{margin-left:-7.668000px;}
._16{margin-left:-6.474000px;}
._7{margin-left:-5.280000px;}
._2{margin-left:-3.834000px;}
._6{margin-left:-2.502000px;}
._0{margin-left:-1.050000px;}
._5{width:1.650000px;}
._3{width:3.234000px;}
._1{width:5.082000px;}
._4{width:6.600000px;}
._8{width:8.370000px;}
._a{width:9.426000px;}
._d{width:11.376000px;}
._11{width:12.480000px;}
._12{width:14.250000px;}
._27{width:15.474000px;}
._2d{width:19.380000px;}
._22{width:22.326000px;}
._c{width:29.616000px;}
._f{width:37.248000px;}
._21{width:38.334000px;}
._2e{width:42.936000px;}
._23{width:45.018000px;}
._13{width:56.940000px;}
._1f{width:59.076000px;}
._e{width:61.824000px;}
._34{width:74.208000px;}
._26{width:79.422000px;}
._b{width:86.400000px;}
._33{width:93.114000px;}
._15{width:100.596000px;}
._14{width:103.380000px;}
._38{width:112.290000px;}
._29{width:114.942000px;}
._3c{width:117.012000px;}
._3f{width:121.260000px;}
._36{width:128.454000px;}
._32{width:143.802000px;}
._20{width:148.482000px;}
._35{width:162.744000px;}
._2f{width:164.430000px;}
._47{width:166.254000px;}
._1d{width:171.240000px;}
._3d{width:174.972000px;}
._37{width:176.994000px;}
._1c{width:186.990000px;}
._39{width:193.956000px;}
._31{width:195.102000px;}
._1a{width:201.054000px;}
._3a{width:203.148000px;}
._2b{width:209.430000px;}
._3e{width:218.646000px;}
._41{width:221.862000px;}
._19{width:224.388000px;}
._3b{width:230.688000px;}
._44{width:237.066000px;}
._40{width:239.058000px;}
._42{width:244.998000px;}
._2c{width:247.332000px;}
._17{width:253.746000px;}
._24{width:255.312000px;}
._43{width:258.282000px;}
._1e{width:263.808000px;}
._30{width:268.974000px;}
._46{width:271.710000px;}
._25{width:278.538000px;}
._45{width:279.642000px;}
._2a{width:288.468000px;}
._18{width:390.204000px;}
._1b{width:404.838000px;}
._28{width:488.250000px;}
._10{width:783.750000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:95.733300px;}
.y1{bottom:95.737800px;}
.y25{bottom:124.676250px;}
.y119{bottom:124.925700px;}
.y4d{bottom:125.200200px;}
.y143{bottom:125.393700px;}
.y79{bottom:125.674500px;}
.ya5{bottom:125.675700px;}
.yee{bottom:126.425700px;}
.yb8{bottom:126.698850px;}
.y24{bottom:139.676250px;}
.y142{bottom:141.890700px;}
.y118{bottom:142.925700px;}
.y4c{bottom:143.200200px;}
.y78{bottom:143.674500px;}
.ya4{bottom:143.675700px;}
.yed{bottom:144.425700px;}
.y23{bottom:154.676250px;}
.yb7{bottom:156.698850px;}
.y141{bottom:158.387700px;}
.y117{bottom:160.925700px;}
.y77{bottom:161.674500px;}
.ya3{bottom:161.675700px;}
.yec{bottom:162.425700px;}
.y22{bottom:169.676250px;}
.yb6{bottom:171.698850px;}
.y140{bottom:174.884700px;}
.y116{bottom:178.925700px;}
.y4b{bottom:179.200200px;}
.y76{bottom:179.674500px;}
.ya2{bottom:179.675700px;}
.yeb{bottom:180.425700px;}
.y21{bottom:184.676250px;}
.yb5{bottom:186.698850px;}
.y13f{bottom:191.381700px;}
.y115{bottom:196.925700px;}
.y4a{bottom:197.200200px;}
.y75{bottom:197.674500px;}
.ya1{bottom:197.675700px;}
.yea{bottom:198.425700px;}
.y20{bottom:199.676250px;}
.yb4{bottom:201.698850px;}
.y13e{bottom:207.878700px;}
.y1f{bottom:214.676250px;}
.y114{bottom:214.925700px;}
.y74{bottom:215.674500px;}
.ya0{bottom:215.675700px;}
.ye9{bottom:216.425700px;}
.yb3{bottom:221.198850px;}
.y13d{bottom:224.375700px;}
.y113{bottom:232.925700px;}
.y73{bottom:233.674500px;}
.y9f{bottom:233.675700px;}
.ye8{bottom:234.425700px;}
.yb2{bottom:236.198850px;}
.y112{bottom:250.925700px;}
.yb1{bottom:251.198850px;}
.y49{bottom:251.200200px;}
.y72{bottom:251.674500px;}
.y9e{bottom:251.675700px;}
.ye7{bottom:252.425700px;}
.y13c{bottom:258.875700px;}
.yb0{bottom:266.198850px;}
.y111{bottom:268.925700px;}
.y48{bottom:269.200200px;}
.y71{bottom:269.674500px;}
.y9d{bottom:269.675700px;}
.ye6{bottom:270.425700px;}
.y1e{bottom:273.208200px;}
.yaf{bottom:281.198850px;}
.y110{bottom:286.925700px;}
.y47{bottom:287.200200px;}
.y70{bottom:287.674500px;}
.y9c{bottom:287.675700px;}
.ye5{bottom:288.425700px;}
.y1d{bottom:289.705200px;}
.yae{bottom:296.198850px;}
.y10f{bottom:304.925700px;}
.y46{bottom:305.200200px;}
.y6f{bottom:305.674500px;}
.y9b{bottom:305.675700px;}
.y1c{bottom:306.202200px;}
.ye4{bottom:306.425700px;}
.y13b{bottom:312.875700px;}
.yad{bottom:315.698850px;}
.y1b{bottom:322.699200px;}
.y10e{bottom:322.925700px;}
.y45{bottom:323.200200px;}
.y6e{bottom:323.674500px;}
.y9a{bottom:323.675700px;}
.ye3{bottom:324.425700px;}
.yac{bottom:330.698850px;}
.y13a{bottom:330.875700px;}
.y1a{bottom:339.196200px;}
.y10d{bottom:340.925700px;}
.y44{bottom:341.200200px;}
.y6d{bottom:341.674500px;}
.y99{bottom:341.675700px;}
.ye2{bottom:342.425700px;}
.yab{bottom:345.698850px;}
.y139{bottom:348.875700px;}
.y10c{bottom:358.925700px;}
.y43{bottom:359.200200px;}
.y6c{bottom:359.674500px;}
.y98{bottom:359.675700px;}
.ye1{bottom:360.425700px;}
.yaa{bottom:360.707850px;}
.y138{bottom:366.875700px;}
.y19{bottom:372.190200px;}
.y10b{bottom:376.925700px;}
.y42{bottom:377.200200px;}
.y6b{bottom:377.674500px;}
.y97{bottom:377.675700px;}
.ye0{bottom:378.425700px;}
.ya9{bottom:384.710850px;}
.y137{bottom:384.875700px;}
.y10a{bottom:394.925700px;}
.y41{bottom:395.200200px;}
.y6a{bottom:395.674500px;}
.y96{bottom:395.675700px;}
.ydf{bottom:396.425700px;}
.ya8{bottom:401.207850px;}
.y136{bottom:402.875700px;}
.y109{bottom:412.925700px;}
.y40{bottom:413.200200px;}
.y69{bottom:413.674500px;}
.y95{bottom:413.675700px;}
.yde{bottom:414.425700px;}
.y135{bottom:420.875700px;}
.y18{bottom:421.694700px;}
.y108{bottom:430.925700px;}
.y3f{bottom:431.200200px;}
.y68{bottom:431.674500px;}
.y94{bottom:431.675700px;}
.ydd{bottom:432.425700px;}
.ya7{bottom:434.201850px;}
.y17{bottom:438.191700px;}
.y134{bottom:438.875700px;}
.y107{bottom:448.925700px;}
.y3e{bottom:449.200200px;}
.y67{bottom:449.674500px;}
.y93{bottom:449.675700px;}
.ydc{bottom:450.425700px;}
.ya6{bottom:450.698850px;}
.y16{bottom:454.688700px;}
.y133{bottom:456.875700px;}
.y106{bottom:466.925700px;}
.y3d{bottom:467.200200px;}
.y66{bottom:467.674500px;}
.y92{bottom:467.675700px;}
.ydb{bottom:468.425700px;}
.y15{bottom:471.185700px;}
.y132{bottom:475.325700px;}
.y105{bottom:484.925700px;}
.y3c{bottom:485.200200px;}
.y65{bottom:485.674500px;}
.y91{bottom:485.675700px;}
.yda{bottom:487.175700px;}
.y14{bottom:487.682700px;}
.y131{bottom:493.775700px;}
.y11b{bottom:497.196150px;}
.y104{bottom:502.925700px;}
.y3b{bottom:503.200200px;}
.y64{bottom:503.674500px;}
.y90{bottom:503.675700px;}
.y13{bottom:504.179700px;}
.yd9{bottom:505.925700px;}
.y130{bottom:512.225700px;}
.y103{bottom:520.175700px;}
.y12{bottom:520.676700px;}
.y3a{bottom:521.200200px;}
.y63{bottom:521.674500px;}
.y8f{bottom:521.675700px;}
.yd8{bottom:524.675700px;}
.y12f{bottom:530.675700px;}
.y11{bottom:537.173700px;}
.y102{bottom:537.425700px;}
.y156{bottom:537.766200px;}
.y39{bottom:539.200200px;}
.y62{bottom:539.674500px;}
.y8e{bottom:539.675700px;}
.yd7{bottom:543.425700px;}
.y12e{bottom:549.125700px;}
.y10{bottom:553.670700px;}
.y155{bottom:554.263200px;}
.y101{bottom:554.675700px;}
.y38{bottom:557.200200px;}
.y61{bottom:557.674500px;}
.y8d{bottom:557.675700px;}
.yd6{bottom:562.175700px;}
.y12d{bottom:567.575700px;}
.yf{bottom:570.167700px;}
.y154{bottom:570.760200px;}
.y100{bottom:571.925700px;}
.y60{bottom:575.674500px;}
.y8c{bottom:575.675700px;}
.yd5{bottom:580.925700px;}
.y12c{bottom:586.025700px;}
.ye{bottom:586.664700px;}
.y153{bottom:587.257200px;}
.yff{bottom:589.175700px;}
.y5f{bottom:593.674500px;}
.y8b{bottom:593.675700px;}
.yd4{bottom:599.675700px;}
.y152{bottom:603.754200px;}
.y12b{bottom:604.475700px;}
.yfe{bottom:606.425700px;}
.y37{bottom:608.249700px;}
.y5e{bottom:611.674500px;}
.y8a{bottom:611.675700px;}
.yd3{bottom:618.425700px;}
.yd{bottom:619.658700px;}
.y151{bottom:620.251200px;}
.y12a{bottom:622.925700px;}
.yfd{bottom:623.675700px;}
.y36{bottom:624.746700px;}
.y5d{bottom:629.674500px;}
.y89{bottom:629.675700px;}
.y150{bottom:636.748200px;}
.yd2{bottom:637.175700px;}
.yfc{bottom:640.925700px;}
.y35{bottom:641.243700px;}
.y129{bottom:641.375700px;}
.y5c{bottom:647.674500px;}
.y88{bottom:647.675700px;}
.y14f{bottom:653.245200px;}
.yd1{bottom:655.925700px;}
.y34{bottom:657.740700px;}
.yfb{bottom:658.175700px;}
.y128{bottom:659.825700px;}
.y5b{bottom:665.674500px;}
.y87{bottom:665.675700px;}
.yc{bottom:669.163200px;}
.y14e{bottom:669.742200px;}
.y33{bottom:674.237700px;}
.yd0{bottom:674.675700px;}
.yfa{bottom:675.425700px;}
.y127{bottom:678.275700px;}
.yc4{bottom:680.200050px;}
.y5a{bottom:683.674500px;}
.y86{bottom:683.675700px;}
.yb{bottom:685.660200px;}
.y14d{bottom:686.239200px;}
.y32{bottom:690.734700px;}
.yf9{bottom:692.675700px;}
.ycf{bottom:693.425700px;}
.y126{bottom:696.725700px;}
.y59{bottom:701.674500px;}
.y85{bottom:701.675700px;}
.ya{bottom:702.157200px;}
.y14c{bottom:702.736200px;}
.y31{bottom:707.231700px;}
.yf8{bottom:709.925700px;}
.yc3{bottom:710.228550px;}
.yce{bottom:712.175700px;}
.y125{bottom:715.175700px;}
.y9{bottom:718.654200px;}
.y14b{bottom:719.233200px;}
.y58{bottom:719.674500px;}
.y84{bottom:719.675700px;}
.y30{bottom:723.728700px;}
.yc2{bottom:726.725550px;}
.yf7{bottom:727.175700px;}
.ycd{bottom:730.925700px;}
.y124{bottom:733.625700px;}
.y8{bottom:735.151200px;}
.y14a{bottom:735.730200px;}
.y57{bottom:737.674500px;}
.y83{bottom:737.675700px;}
.y2f{bottom:740.225700px;}
.yc1{bottom:743.222550px;}
.yf6{bottom:744.425700px;}
.ycc{bottom:749.675700px;}
.y123{bottom:752.075700px;}
.y149{bottom:752.227200px;}
.y56{bottom:755.674500px;}
.y82{bottom:755.675700px;}
.y2e{bottom:756.722700px;}
.yc0{bottom:759.719550px;}
.yf5{bottom:761.675700px;}
.y7{bottom:767.401200px;}
.ycb{bottom:768.425700px;}
.y148{bottom:768.724200px;}
.y122{bottom:770.525700px;}
.y2d{bottom:773.219700px;}
.y55{bottom:773.674500px;}
.y81{bottom:773.675700px;}
.ybf{bottom:776.216550px;}
.yf4{bottom:778.925700px;}
.y147{bottom:785.221200px;}
.yca{bottom:787.175700px;}
.y121{bottom:788.975700px;}
.y54{bottom:791.674500px;}
.y80{bottom:791.675700px;}
.ybe{bottom:792.713550px;}
.yf3{bottom:796.175700px;}
.y6{bottom:801.136200px;}
.y146{bottom:801.718200px;}
.y2c{bottom:804.715200px;}
.yc9{bottom:805.925700px;}
.y120{bottom:807.425700px;}
.ybd{bottom:809.210550px;}
.y53{bottom:809.674500px;}
.y7f{bottom:809.675700px;}
.yf2{bottom:813.425700px;}
.y145{bottom:818.215200px;}
.yc8{bottom:824.675700px;}
.ybc{bottom:825.707550px;}
.y11f{bottom:825.875700px;}
.y52{bottom:827.674500px;}
.y7e{bottom:827.675700px;}
.yf1{bottom:830.675700px;}
.y144{bottom:834.712200px;}
.y5{bottom:840.142200px;}
.yc7{bottom:843.425700px;}
.y11e{bottom:844.325700px;}
.y51{bottom:845.674500px;}
.y7d{bottom:845.675700px;}
.yf0{bottom:847.925700px;}
.ybb{bottom:851.209050px;}
.y2b{bottom:851.209200px;}
.y4{bottom:859.645200px;}
.yc6{bottom:862.175700px;}
.y11d{bottom:862.775700px;}
.y50{bottom:863.674500px;}
.y7c{bottom:863.675700px;}
.yba{bottom:867.706050px;}
.y2a{bottom:867.706200px;}
.y3{bottom:879.148200px;}
.yc5{bottom:880.925700px;}
.y11c{bottom:881.225700px;}
.y4f{bottom:881.674500px;}
.y7b{bottom:881.675700px;}
.yef{bottom:882.425700px;}
.y11a{bottom:884.203050px;}
.y29{bottom:884.203200px;}
.y2{bottom:898.651200px;}
.y4e{bottom:899.674500px;}
.y7a{bottom:899.675700px;}
.yb9{bottom:900.700050px;}
.y28{bottom:900.700200px;}
.y26{bottom:944.238300px;}
.h2{height:37.380000px;}
.h9{height:42.720000px;}
.hb{height:47.304000px;}
.h7{height:48.060000px;}
.h6{height:49.842000px;}
.ha{height:52.560000px;}
.h5{height:53.400000px;}
.h8{height:58.512000px;}
.h4{height:58.740000px;}
.h3{height:60.918000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:93.543300px;}
.x9{left:100.639800px;}
.x8{left:102.009000px;}
.x3{left:123.283800px;}
.x6{left:142.443300px;}
.x4{left:191.821500px;}
.x5{left:247.968000px;}
.x7{left:252.993000px;}
.xa{left:343.005300px;}
.x1{left:434.145300px;}
@media print{
.v1{vertical-align:-32.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:32.000000pt;}
.ls1b{letter-spacing:-1.045333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.432000pt;}
.ls8{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.528000pt;}
.lse{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.554667pt;}
.ls2{letter-spacing:0.576000pt;}
.ls11{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.746667pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.906667pt;}
.ls1c{letter-spacing:3.248000pt;}
.ls4{letter-spacing:6.240533pt;}
.ls17{letter-spacing:27.264000pt;}
.ls18{letter-spacing:62.848000pt;}
.ls19{letter-spacing:95.573333pt;}
.ls16{letter-spacing:226.164800pt;}
.ws0{word-spacing:-15.370667pt;}
.ws4{word-spacing:-13.973333pt;}
.ws1{word-spacing:-12.576000pt;}
.ws3{word-spacing:-11.178667pt;}
.ws6{word-spacing:-9.781333pt;}
.ws5{word-spacing:-8.288000pt;}
.ws8{word-spacing:-3.248000pt;}
.wsb{word-spacing:-0.640000pt;}
.wsc{word-spacing:-0.586667pt;}
.ws9{word-spacing:-0.576000pt;}
.wsa{word-spacing:-0.512000pt;}
.wsd{word-spacing:-0.480000pt;}
.ws7{word-spacing:-0.448000pt;}
.wse{word-spacing:-0.106667pt;}
.ws2{word-spacing:0.000000pt;}
._9{margin-left:-6.816000pt;}
._16{margin-left:-5.754667pt;}
._7{margin-left:-4.693333pt;}
._2{margin-left:-3.408000pt;}
._6{margin-left:-2.224000pt;}
._0{margin-left:-0.933333pt;}
._5{width:1.466667pt;}
._3{width:2.874667pt;}
._1{width:4.517333pt;}
._4{width:5.866667pt;}
._8{width:7.440000pt;}
._a{width:8.378667pt;}
._d{width:10.112000pt;}
._11{width:11.093333pt;}
._12{width:12.666667pt;}
._27{width:13.754667pt;}
._2d{width:17.226667pt;}
._22{width:19.845333pt;}
._c{width:26.325333pt;}
._f{width:33.109333pt;}
._21{width:34.074667pt;}
._2e{width:38.165333pt;}
._23{width:40.016000pt;}
._13{width:50.613333pt;}
._1f{width:52.512000pt;}
._e{width:54.954667pt;}
._34{width:65.962667pt;}
._26{width:70.597333pt;}
._b{width:76.800000pt;}
._33{width:82.768000pt;}
._15{width:89.418667pt;}
._14{width:91.893333pt;}
._38{width:99.813333pt;}
._29{width:102.170667pt;}
._3c{width:104.010667pt;}
._3f{width:107.786667pt;}
._36{width:114.181333pt;}
._32{width:127.824000pt;}
._20{width:131.984000pt;}
._35{width:144.661333pt;}
._2f{width:146.160000pt;}
._47{width:147.781333pt;}
._1d{width:152.213333pt;}
._3d{width:155.530667pt;}
._37{width:157.328000pt;}
._1c{width:166.213333pt;}
._39{width:172.405333pt;}
._31{width:173.424000pt;}
._1a{width:178.714667pt;}
._3a{width:180.576000pt;}
._2b{width:186.160000pt;}
._3e{width:194.352000pt;}
._41{width:197.210667pt;}
._19{width:199.456000pt;}
._3b{width:205.056000pt;}
._44{width:210.725333pt;}
._40{width:212.496000pt;}
._42{width:217.776000pt;}
._2c{width:219.850667pt;}
._17{width:225.552000pt;}
._24{width:226.944000pt;}
._43{width:229.584000pt;}
._1e{width:234.496000pt;}
._30{width:239.088000pt;}
._46{width:241.520000pt;}
._25{width:247.589333pt;}
._45{width:248.570667pt;}
._2a{width:256.416000pt;}
._18{width:346.848000pt;}
._1b{width:359.856000pt;}
._28{width:434.000000pt;}
._10{width:696.666667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:85.096267pt;}
.y1{bottom:85.100267pt;}
.y25{bottom:110.823333pt;}
.y119{bottom:111.045067pt;}
.y4d{bottom:111.289067pt;}
.y143{bottom:111.461067pt;}
.y79{bottom:111.710667pt;}
.ya5{bottom:111.711733pt;}
.yee{bottom:112.378400pt;}
.yb8{bottom:112.621200pt;}
.y24{bottom:124.156667pt;}
.y142{bottom:126.125067pt;}
.y118{bottom:127.045067pt;}
.y4c{bottom:127.289067pt;}
.y78{bottom:127.710667pt;}
.ya4{bottom:127.711733pt;}
.yed{bottom:128.378400pt;}
.y23{bottom:137.490000pt;}
.yb7{bottom:139.287867pt;}
.y141{bottom:140.789067pt;}
.y117{bottom:143.045067pt;}
.y77{bottom:143.710667pt;}
.ya3{bottom:143.711733pt;}
.yec{bottom:144.378400pt;}
.y22{bottom:150.823333pt;}
.yb6{bottom:152.621200pt;}
.y140{bottom:155.453067pt;}
.y116{bottom:159.045067pt;}
.y4b{bottom:159.289067pt;}
.y76{bottom:159.710667pt;}
.ya2{bottom:159.711733pt;}
.yeb{bottom:160.378400pt;}
.y21{bottom:164.156667pt;}
.yb5{bottom:165.954533pt;}
.y13f{bottom:170.117067pt;}
.y115{bottom:175.045067pt;}
.y4a{bottom:175.289067pt;}
.y75{bottom:175.710667pt;}
.ya1{bottom:175.711733pt;}
.yea{bottom:176.378400pt;}
.y20{bottom:177.490000pt;}
.yb4{bottom:179.287867pt;}
.y13e{bottom:184.781067pt;}
.y1f{bottom:190.823333pt;}
.y114{bottom:191.045067pt;}
.y74{bottom:191.710667pt;}
.ya0{bottom:191.711733pt;}
.ye9{bottom:192.378400pt;}
.yb3{bottom:196.621200pt;}
.y13d{bottom:199.445067pt;}
.y113{bottom:207.045067pt;}
.y73{bottom:207.710667pt;}
.y9f{bottom:207.711733pt;}
.ye8{bottom:208.378400pt;}
.yb2{bottom:209.954533pt;}
.y112{bottom:223.045067pt;}
.yb1{bottom:223.287867pt;}
.y49{bottom:223.289067pt;}
.y72{bottom:223.710667pt;}
.y9e{bottom:223.711733pt;}
.ye7{bottom:224.378400pt;}
.y13c{bottom:230.111733pt;}
.yb0{bottom:236.621200pt;}
.y111{bottom:239.045067pt;}
.y48{bottom:239.289067pt;}
.y71{bottom:239.710667pt;}
.y9d{bottom:239.711733pt;}
.ye6{bottom:240.378400pt;}
.y1e{bottom:242.851733pt;}
.yaf{bottom:249.954533pt;}
.y110{bottom:255.045067pt;}
.y47{bottom:255.289067pt;}
.y70{bottom:255.710667pt;}
.y9c{bottom:255.711733pt;}
.ye5{bottom:256.378400pt;}
.y1d{bottom:257.515733pt;}
.yae{bottom:263.287867pt;}
.y10f{bottom:271.045067pt;}
.y46{bottom:271.289067pt;}
.y6f{bottom:271.710667pt;}
.y9b{bottom:271.711733pt;}
.y1c{bottom:272.179733pt;}
.ye4{bottom:272.378400pt;}
.y13b{bottom:278.111733pt;}
.yad{bottom:280.621200pt;}
.y1b{bottom:286.843733pt;}
.y10e{bottom:287.045067pt;}
.y45{bottom:287.289067pt;}
.y6e{bottom:287.710667pt;}
.y9a{bottom:287.711733pt;}
.ye3{bottom:288.378400pt;}
.yac{bottom:293.954533pt;}
.y13a{bottom:294.111733pt;}
.y1a{bottom:301.507733pt;}
.y10d{bottom:303.045067pt;}
.y44{bottom:303.289067pt;}
.y6d{bottom:303.710667pt;}
.y99{bottom:303.711733pt;}
.ye2{bottom:304.378400pt;}
.yab{bottom:307.287867pt;}
.y139{bottom:310.111733pt;}
.y10c{bottom:319.045067pt;}
.y43{bottom:319.289067pt;}
.y6c{bottom:319.710667pt;}
.y98{bottom:319.711733pt;}
.ye1{bottom:320.378400pt;}
.yaa{bottom:320.629200pt;}
.y138{bottom:326.111733pt;}
.y19{bottom:330.835733pt;}
.y10b{bottom:335.045067pt;}
.y42{bottom:335.289067pt;}
.y6b{bottom:335.710667pt;}
.y97{bottom:335.711733pt;}
.ye0{bottom:336.378400pt;}
.ya9{bottom:341.965200pt;}
.y137{bottom:342.111733pt;}
.y10a{bottom:351.045067pt;}
.y41{bottom:351.289067pt;}
.y6a{bottom:351.710667pt;}
.y96{bottom:351.711733pt;}
.ydf{bottom:352.378400pt;}
.ya8{bottom:356.629200pt;}
.y136{bottom:358.111733pt;}
.y109{bottom:367.045067pt;}
.y40{bottom:367.289067pt;}
.y69{bottom:367.710667pt;}
.y95{bottom:367.711733pt;}
.yde{bottom:368.378400pt;}
.y135{bottom:374.111733pt;}
.y18{bottom:374.839733pt;}
.y108{bottom:383.045067pt;}
.y3f{bottom:383.289067pt;}
.y68{bottom:383.710667pt;}
.y94{bottom:383.711733pt;}
.ydd{bottom:384.378400pt;}
.ya7{bottom:385.957200pt;}
.y17{bottom:389.503733pt;}
.y134{bottom:390.111733pt;}
.y107{bottom:399.045067pt;}
.y3e{bottom:399.289067pt;}
.y67{bottom:399.710667pt;}
.y93{bottom:399.711733pt;}
.ydc{bottom:400.378400pt;}
.ya6{bottom:400.621200pt;}
.y16{bottom:404.167733pt;}
.y133{bottom:406.111733pt;}
.y106{bottom:415.045067pt;}
.y3d{bottom:415.289067pt;}
.y66{bottom:415.710667pt;}
.y92{bottom:415.711733pt;}
.ydb{bottom:416.378400pt;}
.y15{bottom:418.831733pt;}
.y132{bottom:422.511733pt;}
.y105{bottom:431.045067pt;}
.y3c{bottom:431.289067pt;}
.y65{bottom:431.710667pt;}
.y91{bottom:431.711733pt;}
.yda{bottom:433.045067pt;}
.y14{bottom:433.495733pt;}
.y131{bottom:438.911733pt;}
.y11b{bottom:441.952133pt;}
.y104{bottom:447.045067pt;}
.y3b{bottom:447.289067pt;}
.y64{bottom:447.710667pt;}
.y90{bottom:447.711733pt;}
.y13{bottom:448.159733pt;}
.yd9{bottom:449.711733pt;}
.y130{bottom:455.311733pt;}
.y103{bottom:462.378400pt;}
.y12{bottom:462.823733pt;}
.y3a{bottom:463.289067pt;}
.y63{bottom:463.710667pt;}
.y8f{bottom:463.711733pt;}
.yd8{bottom:466.378400pt;}
.y12f{bottom:471.711733pt;}
.y11{bottom:477.487733pt;}
.y102{bottom:477.711733pt;}
.y156{bottom:478.014400pt;}
.y39{bottom:479.289067pt;}
.y62{bottom:479.710667pt;}
.y8e{bottom:479.711733pt;}
.yd7{bottom:483.045067pt;}
.y12e{bottom:488.111733pt;}
.y10{bottom:492.151733pt;}
.y155{bottom:492.678400pt;}
.y101{bottom:493.045067pt;}
.y38{bottom:495.289067pt;}
.y61{bottom:495.710667pt;}
.y8d{bottom:495.711733pt;}
.yd6{bottom:499.711733pt;}
.y12d{bottom:504.511733pt;}
.yf{bottom:506.815733pt;}
.y154{bottom:507.342400pt;}
.y100{bottom:508.378400pt;}
.y60{bottom:511.710667pt;}
.y8c{bottom:511.711733pt;}
.yd5{bottom:516.378400pt;}
.y12c{bottom:520.911733pt;}
.ye{bottom:521.479733pt;}
.y153{bottom:522.006400pt;}
.yff{bottom:523.711733pt;}
.y5f{bottom:527.710667pt;}
.y8b{bottom:527.711733pt;}
.yd4{bottom:533.045067pt;}
.y152{bottom:536.670400pt;}
.y12b{bottom:537.311733pt;}
.yfe{bottom:539.045067pt;}
.y37{bottom:540.666400pt;}
.y5e{bottom:543.710667pt;}
.y8a{bottom:543.711733pt;}
.yd3{bottom:549.711733pt;}
.yd{bottom:550.807733pt;}
.y151{bottom:551.334400pt;}
.y12a{bottom:553.711733pt;}
.yfd{bottom:554.378400pt;}
.y36{bottom:555.330400pt;}
.y5d{bottom:559.710667pt;}
.y89{bottom:559.711733pt;}
.y150{bottom:565.998400pt;}
.yd2{bottom:566.378400pt;}
.yfc{bottom:569.711733pt;}
.y35{bottom:569.994400pt;}
.y129{bottom:570.111733pt;}
.y5c{bottom:575.710667pt;}
.y88{bottom:575.711733pt;}
.y14f{bottom:580.662400pt;}
.yd1{bottom:583.045067pt;}
.y34{bottom:584.658400pt;}
.yfb{bottom:585.045067pt;}
.y128{bottom:586.511733pt;}
.y5b{bottom:591.710667pt;}
.y87{bottom:591.711733pt;}
.yc{bottom:594.811733pt;}
.y14e{bottom:595.326400pt;}
.y33{bottom:599.322400pt;}
.yd0{bottom:599.711733pt;}
.yfa{bottom:600.378400pt;}
.y127{bottom:602.911733pt;}
.yc4{bottom:604.622267pt;}
.y5a{bottom:607.710667pt;}
.y86{bottom:607.711733pt;}
.yb{bottom:609.475733pt;}
.y14d{bottom:609.990400pt;}
.y32{bottom:613.986400pt;}
.yf9{bottom:615.711733pt;}
.ycf{bottom:616.378400pt;}
.y126{bottom:619.311733pt;}
.y59{bottom:623.710667pt;}
.y85{bottom:623.711733pt;}
.ya{bottom:624.139733pt;}
.y14c{bottom:624.654400pt;}
.y31{bottom:628.650400pt;}
.yf8{bottom:631.045067pt;}
.yc3{bottom:631.314267pt;}
.yce{bottom:633.045067pt;}
.y125{bottom:635.711733pt;}
.y9{bottom:638.803733pt;}
.y14b{bottom:639.318400pt;}
.y58{bottom:639.710667pt;}
.y84{bottom:639.711733pt;}
.y30{bottom:643.314400pt;}
.yc2{bottom:645.978267pt;}
.yf7{bottom:646.378400pt;}
.ycd{bottom:649.711733pt;}
.y124{bottom:652.111733pt;}
.y8{bottom:653.467733pt;}
.y14a{bottom:653.982400pt;}
.y57{bottom:655.710667pt;}
.y83{bottom:655.711733pt;}
.y2f{bottom:657.978400pt;}
.yc1{bottom:660.642267pt;}
.yf6{bottom:661.711733pt;}
.ycc{bottom:666.378400pt;}
.y123{bottom:668.511733pt;}
.y149{bottom:668.646400pt;}
.y56{bottom:671.710667pt;}
.y82{bottom:671.711733pt;}
.y2e{bottom:672.642400pt;}
.yc0{bottom:675.306267pt;}
.yf5{bottom:677.045067pt;}
.y7{bottom:682.134400pt;}
.ycb{bottom:683.045067pt;}
.y148{bottom:683.310400pt;}
.y122{bottom:684.911733pt;}
.y2d{bottom:687.306400pt;}
.y55{bottom:687.710667pt;}
.y81{bottom:687.711733pt;}
.ybf{bottom:689.970267pt;}
.yf4{bottom:692.378400pt;}
.y147{bottom:697.974400pt;}
.yca{bottom:699.711733pt;}
.y121{bottom:701.311733pt;}
.y54{bottom:703.710667pt;}
.y80{bottom:703.711733pt;}
.ybe{bottom:704.634267pt;}
.yf3{bottom:707.711733pt;}
.y6{bottom:712.121067pt;}
.y146{bottom:712.638400pt;}
.y2c{bottom:715.302400pt;}
.yc9{bottom:716.378400pt;}
.y120{bottom:717.711733pt;}
.ybd{bottom:719.298267pt;}
.y53{bottom:719.710667pt;}
.y7f{bottom:719.711733pt;}
.yf2{bottom:723.045067pt;}
.y145{bottom:727.302400pt;}
.yc8{bottom:733.045067pt;}
.ybc{bottom:733.962267pt;}
.y11f{bottom:734.111733pt;}
.y52{bottom:735.710667pt;}
.y7e{bottom:735.711733pt;}
.yf1{bottom:738.378400pt;}
.y144{bottom:741.966400pt;}
.y5{bottom:746.793067pt;}
.yc7{bottom:749.711733pt;}
.y11e{bottom:750.511733pt;}
.y51{bottom:751.710667pt;}
.y7d{bottom:751.711733pt;}
.yf0{bottom:753.711733pt;}
.ybb{bottom:756.630267pt;}
.y2b{bottom:756.630400pt;}
.y4{bottom:764.129067pt;}
.yc6{bottom:766.378400pt;}
.y11d{bottom:766.911733pt;}
.y50{bottom:767.710667pt;}
.y7c{bottom:767.711733pt;}
.yba{bottom:771.294267pt;}
.y2a{bottom:771.294400pt;}
.y3{bottom:781.465067pt;}
.yc5{bottom:783.045067pt;}
.y11c{bottom:783.311733pt;}
.y4f{bottom:783.710667pt;}
.y7b{bottom:783.711733pt;}
.yef{bottom:784.378400pt;}
.y11a{bottom:785.958267pt;}
.y29{bottom:785.958400pt;}
.y2{bottom:798.801067pt;}
.y4e{bottom:799.710667pt;}
.y7a{bottom:799.711733pt;}
.yb9{bottom:800.622267pt;}
.y28{bottom:800.622400pt;}
.y26{bottom:839.322933pt;}
.h2{height:33.226667pt;}
.h9{height:37.973333pt;}
.hb{height:42.048000pt;}
.h7{height:42.720000pt;}
.h6{height:44.304000pt;}
.ha{height:46.720000pt;}
.h5{height:47.466667pt;}
.h8{height:52.010667pt;}
.h4{height:52.213333pt;}
.h3{height:54.149333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:83.149600pt;}
.x9{left:89.457600pt;}
.x8{left:90.674667pt;}
.x3{left:109.585600pt;}
.x6{left:126.616267pt;}
.x4{left:170.508000pt;}
.x5{left:220.416000pt;}
.x7{left:224.882667pt;}
.xa{left:304.893600pt;}
.x1{left:385.906933pt;}
}




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