
    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_6f3b049726fa9410dc68d153.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_3c1f519a15ebddb1f0e3b8e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938985;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_cc74ed57e252200d65f6d903.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969727;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_d8d195765a3242621c22966b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.046645;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_f11e2f8176d436b54d4aa171.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_09b330c4f5636eb3d7bc5a27.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.724121;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_d643660f0c53af0bd4233007.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740243;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.111259px;}
.ls4{letter-spacing:0.134588px;}
.ls7{letter-spacing:0.140377px;}
.ls5{letter-spacing:0.148200px;}
.ls6{letter-spacing:0.166453px;}
.ls1{letter-spacing:0.371586px;}
.ls2{letter-spacing:481.036590px;}
.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;}
}
.ws9{word-spacing:-41.721983px;}
.ws2{word-spacing:-22.734569px;}
.ws4{word-spacing:-20.151718px;}
.ws8{word-spacing:-16.313295px;}
.wsa{word-spacing:-11.515267px;}
.wsd{word-spacing:-11.181492px;}
.wsb{word-spacing:-10.555662px;}
.ws5{word-spacing:-10.249701px;}
.wsc{word-spacing:-10.203198px;}
.ws6{word-spacing:-10.054998px;}
.wse{word-spacing:-9.357459px;}
.ws3{word-spacing:-9.217081px;}
.ws1{word-spacing:-8.747709px;}
.ws0{word-spacing:-8.636451px;}
.ws7{word-spacing:0.000000px;}
._c{margin-left:-4.581161px;}
._2{margin-left:-2.847525px;}
._3{margin-left:-1.158220px;}
._0{width:1.088683px;}
._5{width:2.334693px;}
._1{width:3.420768px;}
._24{width:5.765022px;}
._2e{width:7.858075px;}
._26{width:11.021123px;}
._29{width:12.062868px;}
._2a{width:13.132863px;}
._27{width:14.546630px;}
._30{width:16.130327px;}
._2c{width:17.264209px;}
._2d{width:19.581517px;}
._2b{width:20.699754px;}
._2f{width:22.217391px;}
._28{width:25.053182px;}
._4{width:42.135292px;}
._25{width:43.401293px;}
._17{width:45.167089px;}
._8{width:47.610867px;}
._a{width:53.354594px;}
._d{width:62.964557px;}
._11{width:176.424449px;}
._e{width:203.967911px;}
._21{width:215.635290px;}
._7{width:221.321214px;}
._12{width:244.208764px;}
._23{width:255.813560px;}
._22{width:257.822299px;}
._14{width:262.625977px;}
._15{width:359.240183px;}
._f{width:414.940769px;}
._b{width:431.211908px;}
._1d{width:432.394900px;}
._1b{width:467.191034px;}
._1a{width:492.840058px;}
._1e{width:530.644087px;}
._20{width:552.053548px;}
._1c{width:565.189889px;}
._1f{width:580.762184px;}
._10{width:615.541369px;}
._19{width:695.998302px;}
._13{width:743.783880px;}
._9{width:789.761506px;}
._16{width:808.369511px;}
._18{width:917.434686px;}
._6{width:1864.792851px;}
.fc3{color:transparent;}
.fc1{color:rgb(21,188,164);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,34);}
.fs0{font-size:31.291487px;}
.fs5{font-size:34.768319px;}
.fs3{font-size:38.245151px;}
.fs7{font-size:39.611050px;}
.fs2{font-size:41.721983px;}
.fs9{font-size:55.629311px;}
.fs6{font-size:57.616073px;}
.fs8{font-size:59.106143px;}
.fs4{font-size:73.013471px;}
.fs1{font-size:83.443967px;}
.y0{bottom:0.000000px;}
.y197{bottom:4.346039px;}
.y116{bottom:5.215251px;}
.ye1{bottom:8.692073px;}
.y14a{bottom:11.299705px;}
.y81{bottom:15.645741px;}
.y45{bottom:17.384160px;}
.y196{bottom:18.253367px;}
.y115{bottom:19.991787px;}
.ye0{bottom:23.468609px;}
.y149{bottom:25.207033px;}
.y80{bottom:30.422276px;}
.y195{bottom:32.160695px;}
.y44{bottom:32.160696px;}
.y114{bottom:34.768322px;}
.ydf{bottom:38.245145px;}
.y148{bottom:39.114361px;}
.y49{bottom:44.157923px;}
.y7f{bottom:45.198812px;}
.y194{bottom:46.068023px;}
.y43{bottom:46.937232px;}
.y113{bottom:49.544858px;}
.yde{bottom:53.021681px;}
.y147{bottom:53.021688px;}
.y48{bottom:56.761439px;}
.y7e{bottom:59.975348px;}
.y193{bottom:59.975350px;}
.y42{bottom:61.713767px;}
.y112{bottom:64.321394px;}
.y146{bottom:66.929016px;}
.y47{bottom:69.364955px;}
.y192{bottom:73.882678px;}
.y7d{bottom:74.751884px;}
.y41{bottom:76.490303px;}
.y111{bottom:79.097930px;}
.y145{bottom:80.836344px;}
.ydd{bottom:85.182376px;}
.y191{bottom:87.790006px;}
.y7c{bottom:89.528419px;}
.y40{bottom:91.266839px;}
.y144{bottom:94.743672px;}
.ydc{bottom:99.958912px;}
.y190{bottom:101.697334px;}
.y7b{bottom:104.304955px;}
.y1{bottom:105.766554px;}
.y3f{bottom:106.043375px;}
.y143{bottom:108.650999px;}
.y110{bottom:111.258625px;}
.ydb{bottom:114.735447px;}
.y18f{bottom:115.604661px;}
.y7a{bottom:119.081491px;}
.y3e{bottom:120.819910px;}
.y142{bottom:122.558327px;}
.y10f{bottom:126.035161px;}
.yda{bottom:129.511983px;}
.y18e{bottom:129.511989px;}
.y79{bottom:133.858027px;}
.y3d{bottom:135.596446px;}
.y141{bottom:136.465655px;}
.y10e{bottom:140.811697px;}
.y18d{bottom:143.419317px;}
.yd9{bottom:144.288519px;}
.y78{bottom:148.634562px;}
.y3c{bottom:150.372982px;}
.y10d{bottom:155.588232px;}
.y18c{bottom:157.326645px;}
.yd8{bottom:159.065055px;}
.y77{bottom:163.411098px;}
.y140{bottom:164.280310px;}
.y3b{bottom:165.149518px;}
.y10c{bottom:170.364768px;}
.y18b{bottom:171.233973px;}
.yd7{bottom:173.841590px;}
.y76{bottom:178.187634px;}
.y13f{bottom:178.187638px;}
.y3a{bottom:179.926053px;}
.y18a{bottom:185.141300px;}
.y10b{bottom:185.141304px;}
.yd6{bottom:188.618126px;}
.y13e{bottom:192.094966px;}
.y75{bottom:192.964170px;}
.y39{bottom:194.702589px;}
.y189{bottom:199.048628px;}
.y10a{bottom:199.917840px;}
.yd5{bottom:203.394662px;}
.y13d{bottom:206.002294px;}
.y74{bottom:207.740705px;}
.y38{bottom:209.479125px;}
.y188{bottom:212.955956px;}
.y109{bottom:214.694375px;}
.y13c{bottom:219.909621px;}
.y73{bottom:222.517241px;}
.y37{bottom:224.255661px;}
.y187{bottom:226.863284px;}
.y108{bottom:229.470911px;}
.y13b{bottom:233.816949px;}
.yd4{bottom:235.555357px;}
.y36{bottom:239.032196px;}
.y186{bottom:240.770611px;}
.y72{bottom:243.378233px;}
.y107{bottom:244.247447px;}
.yd3{bottom:250.331893px;}
.y13a{bottom:252.070317px;}
.y185{bottom:254.677939px;}
.y106{bottom:259.023982px;}
.yd2{bottom:265.108429px;}
.y184{bottom:268.585267px;}
.y35{bottom:271.192892px;}
.y105{bottom:273.800518px;}
.yd1{bottom:279.884965px;}
.y71{bottom:279.884968px;}
.y183{bottom:282.492595px;}
.y34{bottom:285.969428px;}
.y104{bottom:288.577054px;}
.y139{bottom:290.315468px;}
.yd0{bottom:294.661500px;}
.y70{bottom:294.661504px;}
.y182{bottom:296.399922px;}
.y33{bottom:300.745963px;}
.y103{bottom:303.353590px;}
.y138{bottom:305.092004px;}
.ycf{bottom:309.438036px;}
.y6f{bottom:309.438040px;}
.y181{bottom:310.307250px;}
.y32{bottom:315.522499px;}
.y102{bottom:318.130125px;}
.y137{bottom:319.868540px;}
.yce{bottom:324.214572px;}
.y6e{bottom:324.214575px;}
.y180{bottom:324.214578px;}
.y31{bottom:330.299035px;}
.y101{bottom:332.906661px;}
.y136{bottom:334.645075px;}
.y17f{bottom:338.121906px;}
.ycd{bottom:338.991108px;}
.y6d{bottom:338.991111px;}
.y30{bottom:345.075571px;}
.y100{bottom:347.683197px;}
.y135{bottom:349.421611px;}
.y17e{bottom:352.029233px;}
.ycc{bottom:353.767643px;}
.yac{bottom:356.375269px;}
.y6c{bottom:359.852103px;}
.y2f{bottom:359.852106px;}
.yff{bottom:362.459733px;}
.y134{bottom:364.198147px;}
.y17d{bottom:365.936561px;}
.yab{bottom:371.151805px;}
.ycb{bottom:374.628635px;}
.y2e{bottom:374.628642px;}
.y17c{bottom:379.843889px;}
.yfe{bottom:383.320724px;}
.y133{bottom:385.059139px;}
.yaa{bottom:385.928341px;}
.y2d{bottom:389.405178px;}
.y17b{bottom:393.751217px;}
.ya9{bottom:400.704876px;}
.y2c{bottom:404.181714px;}
.y17a{bottom:407.658544px;}
.yca{bottom:411.135370px;}
.ya8{bottom:415.481412px;}
.y2b{bottom:418.958249px;}
.yfd{bottom:419.827460px;}
.y1c6{bottom:421.565870px;}
.y179{bottom:421.565872px;}
.y132{bottom:421.565874px;}
.y6b{bottom:424.173494px;}
.yc9{bottom:425.911906px;}
.ya7{bottom:430.257948px;}
.y2a{bottom:433.734785px;}
.yfc{bottom:434.603995px;}
.y1c5{bottom:435.473198px;}
.y178{bottom:435.473200px;}
.y6a{bottom:436.342405px;}
.yc8{bottom:440.688442px;}
.ya6{bottom:445.034484px;}
.y66{bottom:448.511321px;}
.y1c4{bottom:449.380526px;}
.y177{bottom:449.380528px;}
.yfb{bottom:449.380531px;}
.y29{bottom:452.857361px;}
.y131{bottom:453.726569px;}
.yc7{bottom:455.464978px;}
.ya5{bottom:459.811019px;}
.y1c3{bottom:463.287854px;}
.y176{bottom:463.287855px;}
.y65{bottom:463.287857px;}
.yfa{bottom:464.157067px;}
.y69{bottom:465.895477px;}
.yc6{bottom:470.241513px;}
.ya4{bottom:474.587555px;}
.y1c2{bottom:477.195181px;}
.y175{bottom:477.195183px;}
.y68{bottom:478.064389px;}
.yf9{bottom:478.933603px;}
.yc5{bottom:485.018049px;}
.y130{bottom:485.887265px;}
.ya3{bottom:489.364091px;}
.y1c1{bottom:491.102509px;}
.y174{bottom:491.102511px;}
.y28{bottom:491.102512px;}
.yc4{bottom:499.794585px;}
.y67{bottom:499.794588px;}
.ya2{bottom:504.140627px;}
.y1c0{bottom:505.009837px;}
.y173{bottom:505.009839px;}
.y27{bottom:505.009840px;}
.yf8{bottom:511.094298px;}
.yc3{bottom:514.571121px;}
.y64{bottom:515.440336px;}
.y12f{bottom:518.047960px;}
.y1bf{bottom:518.917165px;}
.y172{bottom:518.917167px;}
.y26{bottom:518.917168px;}
.ya1{bottom:525.001618px;}
.yf7{bottom:525.870834px;}
.yc2{bottom:529.347656px;}
.y1be{bottom:532.824493px;}
.y171{bottom:532.824494px;}
.yf6{bottom:540.647370px;}
.yc1{bottom:544.124192px;}
.y1bd{bottom:546.731820px;}
.y170{bottom:546.731822px;}
.y12e{bottom:550.208656px;}
.yf5{bottom:555.423905px;}
.yc0{bottom:558.900728px;}
.y1bc{bottom:560.639148px;}
.y16f{bottom:560.639150px;}
.ya0{bottom:561.508354px;}
.y63{bottom:565.854399px;}
.y25{bottom:569.331231px;}
.yf4{bottom:570.200441px;}
.ybf{bottom:573.677264px;}
.y1bb{bottom:574.546476px;}
.y16e{bottom:574.546478px;}
.y9f{bottom:576.284889px;}
.y61{bottom:581.500143px;}
.y12d{bottom:582.369351px;}
.y24{bottom:584.107766px;}
.y1ba{bottom:588.453804px;}
.y16d{bottom:588.453805px;}
.y9e{bottom:591.061425px;}
.ybe{bottom:594.538255px;}
.y62{bottom:597.145887px;}
.y23{bottom:598.884302px;}
.y1b9{bottom:602.361131px;}
.y16c{bottom:602.361133px;}
.yf3{bottom:602.361137px;}
.y9d{bottom:605.837961px;}
.y22{bottom:613.660838px;}
.y1b8{bottom:616.268459px;}
.y16b{bottom:616.268461px;}
.yf2{bottom:617.137672px;}
.y12c{bottom:618.006879px;}
.y9c{bottom:620.614497px;}
.y60{bottom:623.222126px;}
.y21{bottom:628.437374px;}
.y1b7{bottom:630.175787px;}
.y16a{bottom:630.175789px;}
.ybd{bottom:631.044991px;}
.yf1{bottom:631.914208px;}
.y9b{bottom:635.391032px;}
.y5f{bottom:638.867870px;}
.y12b{bottom:641.475494px;}
.y20{bottom:643.213909px;}
.y1b6{bottom:644.083115px;}
.y169{bottom:644.083116px;}
.ybc{bottom:645.821526px;}
.y5c{bottom:646.690742px;}
.yf0{bottom:646.690744px;}
.y9a{bottom:650.167568px;}
.y5e{bottom:654.513614px;}
.y1b5{bottom:657.990442px;}
.y168{bottom:657.990444px;}
.y1f{bottom:657.990445px;}
.ybb{bottom:660.598062px;}
.yef{bottom:661.467280px;}
.y99{bottom:664.944104px;}
.y5d{bottom:670.159357px;}
.y1b4{bottom:671.897770px;}
.y167{bottom:671.897772px;}
.y1e{bottom:672.766981px;}
.y98{bottom:679.720639px;}
.y12a{bottom:679.720645px;}
.yba{bottom:681.459054px;}
.yee{bottom:682.328271px;}
.y1b3{bottom:685.805098px;}
.y166{bottom:685.805100px;}
.y1d{bottom:687.543517px;}
.y97{bottom:694.497175px;}
.y129{bottom:694.497181px;}
.y5b{bottom:696.235597px;}
.y1b2{bottom:699.712426px;}
.y165{bottom:699.712427px;}
.yb9{bottom:702.320045px;}
.y1c{bottom:702.320052px;}
.y96{bottom:709.273711px;}
.y128{bottom:709.273717px;}
.y59{bottom:711.881341px;}
.y1b1{bottom:713.619753px;}
.y164{bottom:713.619755px;}
.y1b{bottom:717.096588px;}
.y95{bottom:724.050247px;}
.y127{bottom:724.050253px;}
.y1b0{bottom:727.527081px;}
.y163{bottom:727.527083px;}
.y5a{bottom:727.527084px;}
.y1a{bottom:731.873124px;}
.y94{bottom:738.826782px;}
.y126{bottom:738.826788px;}
.y1af{bottom:741.434409px;}
.y162{bottom:741.434411px;}
.y19{bottom:746.649660px;}
.yed{bottom:746.649662px;}
.y93{bottom:753.603318px;}
.y58{bottom:753.603324px;}
.y1ae{bottom:755.341737px;}
.y161{bottom:755.341738px;}
.y18{bottom:761.426195px;}
.yb8{bottom:766.641436px;}
.y92{bottom:768.379854px;}
.y125{bottom:768.379860px;}
.y1ad{bottom:769.249064px;}
.y160{bottom:769.249066px;}
.y17{bottom:776.202731px;}
.yec{bottom:776.202734px;}
.y91{bottom:783.156390px;}
.y1ac{bottom:783.156392px;}
.y15f{bottom:783.156394px;}
.y124{bottom:783.156396px;}
.yeb{bottom:788.371645px;}
.y16{bottom:790.979267px;}
.yb7{bottom:796.194508px;}
.y1ab{bottom:797.063720px;}
.y15e{bottom:797.063722px;}
.y90{bottom:797.932925px;}
.y123{bottom:797.932931px;}
.y57{bottom:802.278971px;}
.y15{bottom:805.755803px;}
.yb6{bottom:808.363420px;}
.yea{bottom:810.101845px;}
.y1aa{bottom:810.971048px;}
.y15d{bottom:810.971049px;}
.y8f{bottom:812.709461px;}
.y122{bottom:812.709467px;}
.y56{bottom:817.055507px;}
.yb5{bottom:820.532331px;}
.y1a9{bottom:824.878375px;}
.y15c{bottom:824.878377px;}
.y14{bottom:824.878378px;}
.y8e{bottom:827.485997px;}
.y121{bottom:827.486003px;}
.ye9{bottom:830.962837px;}
.y55{bottom:831.832043px;}
.y1a8{bottom:838.785703px;}
.y15b{bottom:838.785705px;}
.yb4{bottom:842.262531px;}
.y8d{bottom:842.262533px;}
.y120{bottom:846.608579px;}
.yc{bottom:851.823826px;}
.y1a7{bottom:852.693031px;}
.y15a{bottom:852.693033px;}
.y54{bottom:852.693034px;}
.y8c{bottom:857.039068px;}
.yb3{bottom:863.123523px;}
.y1a6{bottom:866.600359px;}
.y159{bottom:866.600361px;}
.y8b{bottom:871.815604px;}
.yb{bottom:876.161649px;}
.y1a5{bottom:880.507687px;}
.y158{bottom:880.507688px;}
.ye8{bottom:881.376900px;}
.y13{bottom:882.246105px;}
.y11f{bottom:884.853730px;}
.ya{bottom:888.330561px;}
.y53{bottom:889.199770px;}
.y8a{bottom:892.676596px;}
.y1a4{bottom:894.415014px;}
.y157{bottom:894.415016px;}
.y11e{bottom:899.630266px;}
.y9{bottom:900.499473px;}
.y52{bottom:903.976305px;}
.ye7{bottom:907.453139px;}
.y1a3{bottom:908.322342px;}
.y156{bottom:908.322344px;}
.y8{bottom:912.668385px;}
.yb2{bottom:913.537586px;}
.y12{bottom:913.537593px;}
.y11d{bottom:914.406801px;}
.y51{bottom:918.752841px;}
.y1a2{bottom:922.229670px;}
.y155{bottom:922.229672px;}
.y7{bottom:924.837297px;}
.y89{bottom:929.183331px;}
.y11c{bottom:929.183337px;}
.y50{bottom:933.529377px;}
.ye6{bottom:933.529379px;}
.y1a1{bottom:936.136998px;}
.y154{bottom:936.136999px;}
.y6{bottom:937.006208px;}
.yb1{bottom:939.613825px;}
.y88{bottom:943.959867px;}
.y11b{bottom:943.959873px;}
.y11{bottom:945.698288px;}
.y5{bottom:949.175120px;}
.y1a0{bottom:950.044325px;}
.y153{bottom:950.044327px;}
.y4f{bottom:954.390369px;}
.y87{bottom:958.736403px;}
.y11a{bottom:958.736409px;}
.ye5{bottom:959.605618px;}
.y19f{bottom:963.951653px;}
.y152{bottom:963.951655px;}
.yb0{bottom:965.690065px;}
.y4{bottom:969.166904px;}
.y10{bottom:972.643736px;}
.y86{bottom:973.512938px;}
.y119{bottom:973.512944px;}
.y19e{bottom:977.858981px;}
.y151{bottom:977.858983px;}
.y4e{bottom:977.858984px;}
.y3{bottom:981.335816px;}
.ye4{bottom:985.681858px;}
.y118{bottom:988.289480px;}
.yaf{bottom:991.766304px;}
.y19d{bottom:991.766309px;}
.y150{bottom:991.766310px;}
.y2{bottom:993.504727px;}
.y85{bottom:994.373930px;}
.yf{bottom:998.719975px;}
.y19c{bottom:1005.673636px;}
.y14f{bottom:1005.673638px;}
.y117{bottom:1009.150472px;}
.ye3{bottom:1011.758098px;}
.y4d{bottom:1016.104135px;}
.yae{bottom:1017.842544px;}
.y19b{bottom:1019.580964px;}
.y14e{bottom:1019.580966px;}
.ye{bottom:1024.796215px;}
.y84{bottom:1030.880665px;}
.y4c{bottom:1030.880671px;}
.y19a{bottom:1033.488292px;}
.y14d{bottom:1033.488294px;}
.yad{bottom:1043.918783px;}
.y83{bottom:1045.657201px;}
.y4b{bottom:1045.657207px;}
.y199{bottom:1047.395620px;}
.y14c{bottom:1047.395621px;}
.yd{bottom:1050.872454px;}
.y82{bottom:1060.433737px;}
.y4a{bottom:1060.433743px;}
.ye2{bottom:1060.433745px;}
.y198{bottom:1061.302947px;}
.y14b{bottom:1061.302949px;}
.y46{bottom:1203.262275px;}
.h3{height:22.796338px;}
.h2{height:22.857454px;}
.h8{height:27.655074px;}
.h12{height:27.862190px;}
.hd{height:28.857269px;}
.hc{height:28.934634px;}
.h10{height:30.395117px;}
.h6{height:30.420582px;}
.hf{height:30.476605px;}
.h5{height:33.186089px;}
.ha{height:38.401337px;}
.h11{height:40.635473px;}
.he{height:43.175190px;}
.h7{height:53.334059px;}
.h4{height:62.990416px;}
.hb{height:105.375000px;}
.h1{height:1071.733446px;}
.h9{height:1239.272321px;}
.h0{height:1263.000000px;}
.w1{width:806.625010px;}
.w2{width:806.625017px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:42.750000px;}
.x2{left:65.190599px;}
.x9{left:78.228719px;}
.x7{left:84.313175px;}
.x5{left:107.129885px;}
.x8{left:146.896149px;}
.x6{left:162.945455px;}
.x3{left:238.162988px;}
.xa{left:248.593484px;}
.xd{left:253.808732px;}
.xb{left:259.023980px;}
.xc{left:279.884971px;}
.x4{left:315.522499px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.098897pt;}
.ls4{letter-spacing:0.119633pt;}
.ls7{letter-spacing:0.124780pt;}
.ls5{letter-spacing:0.131733pt;}
.ls6{letter-spacing:0.147959pt;}
.ls1{letter-spacing:0.330299pt;}
.ls2{letter-spacing:427.588080pt;}
.ws9{word-spacing:-37.086207pt;}
.ws2{word-spacing:-20.208506pt;}
.ws4{word-spacing:-17.912638pt;}
.ws8{word-spacing:-14.500707pt;}
.wsa{word-spacing:-10.235793pt;}
.wsd{word-spacing:-9.939104pt;}
.wsb{word-spacing:-9.382810pt;}
.ws5{word-spacing:-9.110845pt;}
.wsc{word-spacing:-9.069509pt;}
.ws6{word-spacing:-8.937776pt;}
.wse{word-spacing:-8.317741pt;}
.ws3{word-spacing:-8.192961pt;}
.ws1{word-spacing:-7.775741pt;}
.ws0{word-spacing:-7.676845pt;}
.ws7{word-spacing:0.000000pt;}
._c{margin-left:-4.072143pt;}
._2{margin-left:-2.531134pt;}
._3{margin-left:-1.029529pt;}
._0{width:0.967718pt;}
._5{width:2.075282pt;}
._1{width:3.040683pt;}
._24{width:5.124464pt;}
._2e{width:6.984955pt;}
._26{width:9.796553pt;}
._29{width:10.722550pt;}
._2a{width:11.673656pt;}
._27{width:12.930338pt;}
._30{width:14.338069pt;}
._2c{width:15.345964pt;}
._2d{width:17.405793pt;}
._2b{width:18.399781pt;}
._2f{width:19.748792pt;}
._28{width:22.269495pt;}
._4{width:37.453593pt;}
._25{width:38.578927pt;}
._17{width:40.148524pt;}
._8{width:42.320771pt;}
._a{width:47.426306pt;}
._d{width:55.968495pt;}
._11{width:156.821732pt;}
._e{width:181.304810pt;}
._21{width:191.675813pt;}
._7{width:196.729968pt;}
._12{width:217.074457pt;}
._23{width:227.389831pt;}
._22{width:229.175377pt;}
._14{width:233.445313pt;}
._15{width:319.324607pt;}
._f{width:368.836240pt;}
._b{width:383.299474pt;}
._1d{width:384.351023pt;}
._1b{width:415.280920pt;}
._1a{width:438.080052pt;}
._1e{width:471.683633pt;}
._20{width:490.714265pt;}
._1c{width:502.391012pt;}
._1f{width:516.233053pt;}
._10{width:547.147883pt;}
._19{width:618.665158pt;}
._13{width:661.141227pt;}
._9{width:702.010228pt;}
._16{width:718.550676pt;}
._18{width:815.497499pt;}
._6{width:1657.593645pt;}
.fs0{font-size:27.814656pt;}
.fs5{font-size:30.905173pt;}
.fs3{font-size:33.995690pt;}
.fs7{font-size:35.209822pt;}
.fs2{font-size:37.086207pt;}
.fs9{font-size:49.448276pt;}
.fs6{font-size:51.214287pt;}
.fs8{font-size:52.538794pt;}
.fs4{font-size:64.900863pt;}
.fs1{font-size:74.172415pt;}
.y0{bottom:0.000000pt;}
.y197{bottom:3.863146pt;}
.y116{bottom:4.635779pt;}
.ye1{bottom:7.726287pt;}
.y14a{bottom:10.044182pt;}
.y81{bottom:13.907325pt;}
.y45{bottom:15.452587pt;}
.y196{bottom:16.225215pt;}
.y115{bottom:17.770477pt;}
.ye0{bottom:20.860986pt;}
.y149{bottom:22.406251pt;}
.y80{bottom:27.042024pt;}
.y195{bottom:28.587284pt;}
.y44{bottom:28.587285pt;}
.y114{bottom:30.905175pt;}
.ydf{bottom:33.995684pt;}
.y148{bottom:34.768320pt;}
.y49{bottom:39.251487pt;}
.y7f{bottom:40.176722pt;}
.y194{bottom:40.949353pt;}
.y43{bottom:41.721984pt;}
.y113{bottom:44.039874pt;}
.yde{bottom:47.130383pt;}
.y147{bottom:47.130390pt;}
.y48{bottom:50.454612pt;}
.y7e{bottom:53.311420pt;}
.y193{bottom:53.311423pt;}
.y42{bottom:54.856682pt;}
.y112{bottom:57.174572pt;}
.y146{bottom:59.492459pt;}
.y47{bottom:61.657737pt;}
.y192{bottom:65.673492pt;}
.y7d{bottom:66.446119pt;}
.y41{bottom:67.991381pt;}
.y111{bottom:70.309271pt;}
.y145{bottom:71.854528pt;}
.ydd{bottom:75.717668pt;}
.y191{bottom:78.035561pt;}
.y7c{bottom:79.580817pt;}
.y40{bottom:81.126079pt;}
.y144{bottom:84.216597pt;}
.ydc{bottom:88.852366pt;}
.y190{bottom:90.397630pt;}
.y7b{bottom:92.715516pt;}
.y1{bottom:94.014715pt;}
.y3f{bottom:94.260777pt;}
.y143{bottom:96.578666pt;}
.y110{bottom:98.896556pt;}
.ydb{bottom:101.987064pt;}
.y18f{bottom:102.759699pt;}
.y7a{bottom:105.850214pt;}
.y3e{bottom:107.395476pt;}
.y142{bottom:108.940735pt;}
.y10f{bottom:112.031254pt;}
.yda{bottom:115.121763pt;}
.y18e{bottom:115.121768pt;}
.y79{bottom:118.984913pt;}
.y3d{bottom:120.530174pt;}
.y141{bottom:121.302804pt;}
.y10e{bottom:125.165952pt;}
.y18d{bottom:127.483837pt;}
.yd9{bottom:128.256461pt;}
.y78{bottom:132.119611pt;}
.y3c{bottom:133.664873pt;}
.y10d{bottom:138.300651pt;}
.y18c{bottom:139.845906pt;}
.yd8{bottom:141.391160pt;}
.y77{bottom:145.254309pt;}
.y140{bottom:146.026943pt;}
.y3b{bottom:146.799571pt;}
.y10c{bottom:151.435349pt;}
.y18b{bottom:152.207976pt;}
.yd7{bottom:154.525858pt;}
.y76{bottom:158.389008pt;}
.y13f{bottom:158.389012pt;}
.y3a{bottom:159.934270pt;}
.y18a{bottom:164.570045pt;}
.y10b{bottom:164.570048pt;}
.yd6{bottom:167.660557pt;}
.y13e{bottom:170.751081pt;}
.y75{bottom:171.523706pt;}
.y39{bottom:173.068968pt;}
.y189{bottom:176.932114pt;}
.y10a{bottom:177.704746pt;}
.yd5{bottom:180.795255pt;}
.y13d{bottom:183.113150pt;}
.y74{bottom:184.658405pt;}
.y38{bottom:186.203667pt;}
.y188{bottom:189.294183pt;}
.y109{bottom:190.839445pt;}
.y13c{bottom:195.475219pt;}
.y73{bottom:197.793103pt;}
.y37{bottom:199.338365pt;}
.y187{bottom:201.656252pt;}
.y108{bottom:203.974143pt;}
.y13b{bottom:207.837288pt;}
.yd4{bottom:209.382540pt;}
.y36{bottom:212.473063pt;}
.y186{bottom:214.018321pt;}
.y72{bottom:216.336207pt;}
.y107{bottom:217.108842pt;}
.yd3{bottom:222.517238pt;}
.y13a{bottom:224.062504pt;}
.y185{bottom:226.380390pt;}
.y106{bottom:230.243540pt;}
.yd2{bottom:235.651937pt;}
.y184{bottom:238.742459pt;}
.y35{bottom:241.060348pt;}
.y105{bottom:243.378238pt;}
.yd1{bottom:248.786635pt;}
.y71{bottom:248.786638pt;}
.y183{bottom:251.104529pt;}
.y34{bottom:254.195047pt;}
.y104{bottom:256.512937pt;}
.y139{bottom:258.058194pt;}
.yd0{bottom:261.921334pt;}
.y70{bottom:261.921337pt;}
.y182{bottom:263.466598pt;}
.y33{bottom:267.329745pt;}
.y103{bottom:269.647635pt;}
.y138{bottom:271.192892pt;}
.ycf{bottom:275.056032pt;}
.y6f{bottom:275.056035pt;}
.y181{bottom:275.828667pt;}
.y32{bottom:280.464444pt;}
.y102{bottom:282.782334pt;}
.y137{bottom:284.327591pt;}
.yce{bottom:288.190731pt;}
.y6e{bottom:288.190734pt;}
.y180{bottom:288.190736pt;}
.y31{bottom:293.599142pt;}
.y101{bottom:295.917032pt;}
.y136{bottom:297.462289pt;}
.y17f{bottom:300.552805pt;}
.ycd{bottom:301.325429pt;}
.y6d{bottom:301.325432pt;}
.y30{bottom:306.733840pt;}
.y100{bottom:309.051731pt;}
.y135{bottom:310.596988pt;}
.y17e{bottom:312.914874pt;}
.ycc{bottom:314.460127pt;}
.yac{bottom:316.778017pt;}
.y6c{bottom:319.868536pt;}
.y2f{bottom:319.868539pt;}
.yff{bottom:322.186429pt;}
.y134{bottom:323.731686pt;}
.y17d{bottom:325.276943pt;}
.yab{bottom:329.912715pt;}
.ycb{bottom:333.003231pt;}
.y2e{bottom:333.003237pt;}
.y17c{bottom:337.639012pt;}
.yfe{bottom:340.729533pt;}
.y133{bottom:342.274790pt;}
.yaa{bottom:343.047414pt;}
.y2d{bottom:346.137936pt;}
.y17b{bottom:350.001081pt;}
.ya9{bottom:356.182112pt;}
.y2c{bottom:359.272634pt;}
.y17a{bottom:362.363151pt;}
.yca{bottom:365.453663pt;}
.ya8{bottom:369.316811pt;}
.y2b{bottom:372.407333pt;}
.yfd{bottom:373.179964pt;}
.y1c6{bottom:374.725218pt;}
.y179{bottom:374.725220pt;}
.y132{bottom:374.725221pt;}
.y6b{bottom:377.043105pt;}
.yc9{bottom:378.588361pt;}
.ya7{bottom:382.451509pt;}
.y2a{bottom:385.542031pt;}
.yfc{bottom:386.314663pt;}
.y1c5{bottom:387.087287pt;}
.y178{bottom:387.087289pt;}
.y6a{bottom:387.859916pt;}
.yc8{bottom:391.723059pt;}
.ya6{bottom:395.586208pt;}
.y66{bottom:398.676730pt;}
.y1c4{bottom:399.449356pt;}
.y177{bottom:399.449358pt;}
.yfb{bottom:399.449361pt;}
.y29{bottom:402.539876pt;}
.y131{bottom:403.312506pt;}
.yc7{bottom:404.857758pt;}
.ya5{bottom:408.720906pt;}
.y1c3{bottom:411.811426pt;}
.y176{bottom:411.811427pt;}
.y65{bottom:411.811428pt;}
.yfa{bottom:412.584060pt;}
.y69{bottom:414.129313pt;}
.yc6{bottom:417.992456pt;}
.ya4{bottom:421.855604pt;}
.y1c2{bottom:424.173495pt;}
.y175{bottom:424.173496pt;}
.y68{bottom:424.946123pt;}
.yf9{bottom:425.718758pt;}
.yc5{bottom:431.127155pt;}
.y130{bottom:431.899791pt;}
.ya3{bottom:434.990303pt;}
.y1c1{bottom:436.535564pt;}
.y174{bottom:436.535565pt;}
.y28{bottom:436.535566pt;}
.yc4{bottom:444.261853pt;}
.y67{bottom:444.261856pt;}
.ya2{bottom:448.125001pt;}
.y1c0{bottom:448.897633pt;}
.y173{bottom:448.897634pt;}
.y27{bottom:448.897635pt;}
.yf8{bottom:454.306043pt;}
.yc3{bottom:457.396552pt;}
.y64{bottom:458.169188pt;}
.y12f{bottom:460.487076pt;}
.y1bf{bottom:461.259702pt;}
.y172{bottom:461.259704pt;}
.y26{bottom:461.259704pt;}
.ya1{bottom:466.668105pt;}
.yf7{bottom:467.440741pt;}
.yc2{bottom:470.531250pt;}
.y1be{bottom:473.621771pt;}
.y171{bottom:473.621773pt;}
.yf6{bottom:480.575440pt;}
.yc1{bottom:483.665949pt;}
.y1bd{bottom:485.983840pt;}
.y170{bottom:485.983842pt;}
.y12e{bottom:489.074361pt;}
.yf5{bottom:493.710138pt;}
.yc0{bottom:496.800647pt;}
.y1bc{bottom:498.345909pt;}
.y16f{bottom:498.345911pt;}
.ya0{bottom:499.118536pt;}
.y63{bottom:502.981688pt;}
.y25{bottom:506.072205pt;}
.yf4{bottom:506.844837pt;}
.ybf{bottom:509.935345pt;}
.y1bb{bottom:510.707978pt;}
.y16e{bottom:510.707980pt;}
.y9f{bottom:512.253235pt;}
.y61{bottom:516.889016pt;}
.y12d{bottom:517.661645pt;}
.y24{bottom:519.206903pt;}
.y1ba{bottom:523.070048pt;}
.y16d{bottom:523.070049pt;}
.y9e{bottom:525.387933pt;}
.ybe{bottom:528.478449pt;}
.y62{bottom:530.796344pt;}
.y23{bottom:532.341602pt;}
.y1b9{bottom:535.432117pt;}
.y16c{bottom:535.432118pt;}
.yf3{bottom:535.432121pt;}
.y9d{bottom:538.522632pt;}
.y22{bottom:545.476300pt;}
.y1b8{bottom:547.794186pt;}
.y16b{bottom:547.794187pt;}
.yf2{bottom:548.566820pt;}
.y12c{bottom:549.339448pt;}
.y9c{bottom:551.657330pt;}
.y60{bottom:553.975223pt;}
.y21{bottom:558.610999pt;}
.y1b7{bottom:560.156255pt;}
.y16a{bottom:560.156257pt;}
.ybd{bottom:560.928881pt;}
.yf1{bottom:561.701518pt;}
.y9b{bottom:564.792029pt;}
.y5f{bottom:567.882551pt;}
.y12b{bottom:570.200439pt;}
.y20{bottom:571.745697pt;}
.y1b6{bottom:572.518324pt;}
.y169{bottom:572.518326pt;}
.ybc{bottom:574.063579pt;}
.y5c{bottom:574.836215pt;}
.yf0{bottom:574.836217pt;}
.y9a{bottom:577.926727pt;}
.y5e{bottom:581.789879pt;}
.y1b5{bottom:584.880393pt;}
.y168{bottom:584.880395pt;}
.y1f{bottom:584.880396pt;}
.ybb{bottom:587.198277pt;}
.yef{bottom:587.970915pt;}
.y99{bottom:591.061426pt;}
.y5d{bottom:595.697207pt;}
.y1b4{bottom:597.242462pt;}
.y167{bottom:597.242464pt;}
.y1e{bottom:598.015094pt;}
.y98{bottom:604.196124pt;}
.y12a{bottom:604.196129pt;}
.yba{bottom:605.741381pt;}
.yee{bottom:606.514019pt;}
.y1b3{bottom:609.604531pt;}
.y166{bottom:609.604533pt;}
.y1d{bottom:611.149793pt;}
.y97{bottom:617.330822pt;}
.y129{bottom:617.330828pt;}
.y5b{bottom:618.876086pt;}
.y1b2{bottom:621.966601pt;}
.y165{bottom:621.966602pt;}
.yb9{bottom:624.284485pt;}
.y1c{bottom:624.284491pt;}
.y96{bottom:630.465521pt;}
.y128{bottom:630.465526pt;}
.y59{bottom:632.783414pt;}
.y1b1{bottom:634.328670pt;}
.y164{bottom:634.328671pt;}
.y1b{bottom:637.419189pt;}
.y95{bottom:643.600219pt;}
.y127{bottom:643.600225pt;}
.y1b0{bottom:646.690739pt;}
.y163{bottom:646.690740pt;}
.y5a{bottom:646.690742pt;}
.y1a{bottom:650.553888pt;}
.y94{bottom:656.734918pt;}
.y126{bottom:656.734923pt;}
.y1af{bottom:659.052808pt;}
.y162{bottom:659.052809pt;}
.y19{bottom:663.688586pt;}
.yed{bottom:663.688589pt;}
.y93{bottom:669.869616pt;}
.y58{bottom:669.869621pt;}
.y1ae{bottom:671.414877pt;}
.y161{bottom:671.414879pt;}
.y18{bottom:676.823285pt;}
.yb8{bottom:681.459054pt;}
.y92{bottom:683.004315pt;}
.y125{bottom:683.004320pt;}
.y1ad{bottom:683.776946pt;}
.y160{bottom:683.776948pt;}
.y17{bottom:689.957983pt;}
.yec{bottom:689.957985pt;}
.y91{bottom:696.139013pt;}
.y1ac{bottom:696.139015pt;}
.y15f{bottom:696.139017pt;}
.y124{bottom:696.139018pt;}
.yeb{bottom:700.774796pt;}
.y16{bottom:703.092682pt;}
.yb7{bottom:707.728451pt;}
.y1ab{bottom:708.501084pt;}
.y15e{bottom:708.501086pt;}
.y90{bottom:709.273712pt;}
.y123{bottom:709.273717pt;}
.y57{bottom:713.136863pt;}
.y15{bottom:716.227380pt;}
.yb6{bottom:718.545262pt;}
.yea{bottom:720.090529pt;}
.y1aa{bottom:720.863154pt;}
.y15d{bottom:720.863155pt;}
.y8f{bottom:722.408410pt;}
.y122{bottom:722.408415pt;}
.y56{bottom:726.271562pt;}
.yb5{bottom:729.362072pt;}
.y1a9{bottom:733.225223pt;}
.y15c{bottom:733.225224pt;}
.y14{bottom:733.225225pt;}
.y8e{bottom:735.543108pt;}
.y121{bottom:735.543114pt;}
.ye9{bottom:738.633633pt;}
.y55{bottom:739.406260pt;}
.y1a8{bottom:745.587292pt;}
.y15b{bottom:745.587293pt;}
.yb4{bottom:748.677805pt;}
.y8d{bottom:748.677807pt;}
.y120{bottom:752.540959pt;}
.yc{bottom:757.176734pt;}
.y1a7{bottom:757.949361pt;}
.y15a{bottom:757.949362pt;}
.y54{bottom:757.949364pt;}
.y8c{bottom:761.812505pt;}
.yb3{bottom:767.220909pt;}
.y1a6{bottom:770.311430pt;}
.y159{bottom:770.311432pt;}
.y8b{bottom:774.947204pt;}
.yb{bottom:778.810355pt;}
.y1a5{bottom:782.673499pt;}
.y158{bottom:782.673501pt;}
.ye8{bottom:783.446133pt;}
.y13{bottom:784.218760pt;}
.y11f{bottom:786.536649pt;}
.ya{bottom:789.627165pt;}
.y53{bottom:790.399795pt;}
.y8a{bottom:793.490307pt;}
.y1a4{bottom:795.035568pt;}
.y157{bottom:795.035570pt;}
.y11e{bottom:799.671347pt;}
.y9{bottom:800.443976pt;}
.y52{bottom:803.534494pt;}
.ye7{bottom:806.625013pt;}
.y1a3{bottom:807.397637pt;}
.y156{bottom:807.397639pt;}
.y8{bottom:811.260786pt;}
.yb2{bottom:812.033410pt;}
.y12{bottom:812.033416pt;}
.y11d{bottom:812.806046pt;}
.y51{bottom:816.669192pt;}
.y1a2{bottom:819.759706pt;}
.y155{bottom:819.759708pt;}
.y7{bottom:822.077597pt;}
.y89{bottom:825.940739pt;}
.y11c{bottom:825.940744pt;}
.y50{bottom:829.803891pt;}
.ye6{bottom:829.803892pt;}
.y1a1{bottom:832.121776pt;}
.y154{bottom:832.121777pt;}
.y6{bottom:832.894407pt;}
.yb1{bottom:835.212289pt;}
.y88{bottom:839.075437pt;}
.y11b{bottom:839.075443pt;}
.y11{bottom:840.620701pt;}
.y5{bottom:843.711218pt;}
.y1a0{bottom:844.483845pt;}
.y153{bottom:844.483846pt;}
.y4f{bottom:848.346994pt;}
.y87{bottom:852.210136pt;}
.y11a{bottom:852.210141pt;}
.ye5{bottom:852.982772pt;}
.y19f{bottom:856.845914pt;}
.y152{bottom:856.845915pt;}
.yb0{bottom:858.391169pt;}
.y4{bottom:861.481692pt;}
.y10{bottom:864.572210pt;}
.y86{bottom:865.344834pt;}
.y119{bottom:865.344839pt;}
.y19e{bottom:869.207983pt;}
.y151{bottom:869.207985pt;}
.y4e{bottom:869.207986pt;}
.y3{bottom:872.298503pt;}
.ye4{bottom:876.161652pt;}
.y118{bottom:878.479538pt;}
.yaf{bottom:881.570048pt;}
.y19d{bottom:881.570052pt;}
.y150{bottom:881.570054pt;}
.y2{bottom:883.115313pt;}
.y85{bottom:883.887938pt;}
.yf{bottom:887.751089pt;}
.y19c{bottom:893.932121pt;}
.y14f{bottom:893.932123pt;}
.y117{bottom:897.022642pt;}
.ye3{bottom:899.340531pt;}
.y4d{bottom:903.203676pt;}
.yae{bottom:904.748928pt;}
.y19b{bottom:906.294190pt;}
.y14e{bottom:906.294192pt;}
.ye{bottom:910.929969pt;}
.y84{bottom:916.338369pt;}
.y4c{bottom:916.338374pt;}
.y19a{bottom:918.656259pt;}
.y14d{bottom:918.656261pt;}
.yad{bottom:927.927808pt;}
.y83{bottom:929.473068pt;}
.y4b{bottom:929.473073pt;}
.y199{bottom:931.018329pt;}
.y14c{bottom:931.018330pt;}
.yd{bottom:934.108848pt;}
.y82{bottom:942.607766pt;}
.y4a{bottom:942.607771pt;}
.ye2{bottom:942.607773pt;}
.y198{bottom:943.380398pt;}
.y14b{bottom:943.380399pt;}
.y46{bottom:1069.566467pt;}
.h3{height:20.263411pt;}
.h2{height:20.317737pt;}
.h8{height:24.582288pt;}
.h12{height:24.766391pt;}
.hd{height:25.650906pt;}
.hc{height:25.719675pt;}
.h10{height:27.017882pt;}
.h6{height:27.040517pt;}
.hf{height:27.090316pt;}
.h5{height:29.498746pt;}
.ha{height:34.134522pt;}
.h11{height:36.120421pt;}
.he{height:38.377947pt;}
.h7{height:47.408052pt;}
.h4{height:55.991481pt;}
.hb{height:93.666667pt;}
.h1{height:952.651952pt;}
.h9{height:1101.575396pt;}
.h0{height:1122.666667pt;}
.w1{width:717.000009pt;}
.w2{width:717.000015pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:38.000000pt;}
.x2{left:57.947199pt;}
.x9{left:69.536639pt;}
.x7{left:74.945044pt;}
.x5{left:95.226564pt;}
.x8{left:130.574355pt;}
.x6{left:144.840405pt;}
.x3{left:211.700434pt;}
.xa{left:220.971986pt;}
.xd{left:225.607761pt;}
.xb{left:230.243537pt;}
.xc{left:248.786641pt;}
.x4{left:280.464443pt;}
}




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