
    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_afc151ff540c83f4c751f2a7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9b6c40c9b40ff29a79c4f832.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887207;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_19ea1633f06ec9c529d74c25.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_eb37228b34428191b8894eae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123333;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_0076dd9359ba0edf3454f9ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_054ab9812b5d29b546e05b0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.125533;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_3579e0339cc842f480927bd2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.020000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dcf607b90b38803196d83aa8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.961000;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:ff9;src:url('chunks/assets/font_a020c3b658c2327ae4ec2e7d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964000;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:ffa;src:url('chunks/assets/font_0ef0d80723ffa83b84690f9b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.992000;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:ffb;src:url('chunks/assets/font_f2c308ad0922423375039d81.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d1b6245fc822a00e296e6822.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0afe628b9d4ab5a2d9564c96.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3bacd9872268e97d9757ba4b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.420840px;}
.ls14{letter-spacing:-0.360720px;}
.ls15{letter-spacing:-0.300600px;}
.ls19{letter-spacing:-0.240480px;}
.lsb{letter-spacing:-0.180360px;}
.ls8{letter-spacing:-0.131760px;}
.ls6{letter-spacing:-0.120240px;}
.ls9{letter-spacing:-0.065880px;}
.lsd{letter-spacing:-0.060120px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060120px;}
.ls1f{letter-spacing:0.064800px;}
.ls0{letter-spacing:0.065880px;}
.lsa{letter-spacing:0.078120px;}
.lse{letter-spacing:0.120240px;}
.ls24{letter-spacing:0.131760px;}
.ls25{letter-spacing:0.156240px;}
.lsc{letter-spacing:0.180360px;}
.ls5{letter-spacing:2.284560px;}
.ls1a{letter-spacing:2.645280px;}
.ls3{letter-spacing:3.366720px;}
.ls22{letter-spacing:3.727440px;}
.ls1b{letter-spacing:4.448880px;}
.ls2{letter-spacing:5.531040px;}
.ls21{letter-spacing:7.046064px;}
.ls10{letter-spacing:8.416800px;}
.ls16{letter-spacing:9.138240px;}
.ls1d{letter-spacing:10.220400px;}
.ls12{letter-spacing:14.549040px;}
.ls13{letter-spacing:17.795520px;}
.ls1e{letter-spacing:18.156240px;}
.ls1c{letter-spacing:25.370640px;}
.ls20{letter-spacing:30.060000px;}
.ls11{letter-spacing:41.542920px;}
.ls18{letter-spacing:62.103960px;}
.ls4{letter-spacing:71.061840px;}
.ls17{letter-spacing:83.025720px;}
.ls23{letter-spacing:848.954520px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-16.412760px;}
.ws6{word-spacing:-16.352640px;}
.ws4{word-spacing:-16.292520px;}
.ws19{word-spacing:-16.232400px;}
.ws16{word-spacing:-16.172280px;}
.ws1d{word-spacing:-16.112160px;}
.ws18{word-spacing:-15.991920px;}
.ws11{word-spacing:-15.931800px;}
.ws8{word-spacing:-15.811560px;}
.ws14{word-spacing:-14.669280px;}
.ws3{word-spacing:-14.609160px;}
.ws9{word-spacing:-14.549040px;}
.ws5{word-spacing:-14.488920px;}
.ws7{word-spacing:-14.428800px;}
.ws17{word-spacing:-14.248440px;}
.ws12{word-spacing:-14.188320px;}
.ws21{word-spacing:-2.224440px;}
.ws1b{word-spacing:-0.360720px;}
.ws10{word-spacing:-0.180360px;}
.ws1f{word-spacing:-0.156240px;}
.ws1e{word-spacing:-0.131760px;}
.ws0{word-spacing:-0.120240px;}
.wse{word-spacing:-0.078120px;}
.ws1{word-spacing:-0.060120px;}
.wsb{word-spacing:0.000000px;}
.ws2{word-spacing:0.060120px;}
.wsd{word-spacing:0.065880px;}
.wsa{word-spacing:0.120240px;}
.wsc{word-spacing:0.131760px;}
.wsf{word-spacing:0.180360px;}
.ws15{word-spacing:0.240480px;}
.ws1c{word-spacing:0.300600px;}
.ws13{word-spacing:0.360720px;}
.ws20{word-spacing:2.705400px;}
._a{margin-left:-3.456900px;}
._20{margin-left:-2.404800px;}
._3{margin-left:-1.393200px;}
._0{width:1.052100px;}
._4{width:2.194380px;}
._c{width:3.347100px;}
._b{width:4.665312px;}
._6{width:5.915808px;}
._5{width:6.991956px;}
._9{width:8.708220px;}
._e{width:10.654848px;}
._7{width:11.733840px;}
._8{width:13.000788px;}
._13{width:15.901740px;}
._19{width:17.567064px;}
._1a{width:18.601128px;}
._21{width:19.923768px;}
._14{width:20.957832px;}
._24{width:22.776300px;}
._1e{width:23.837580px;}
._29{width:24.967836px;}
._11{width:26.398692px;}
._10{width:28.244376px;}
._22{width:29.386656px;}
._f{width:30.546972px;}
._33{width:32.188248px;}
._1f{width:33.198264px;}
._26{width:34.436736px;}
._12{width:36.198252px;}
._23{width:38.284416px;}
._1b{width:39.407076px;}
._1c{width:40.615488px;}
._25{width:42.288408px;}
._2d{width:45.629496px;}
._34{width:47.368548px;}
._d{width:48.456720px;}
._36{width:50.609016px;}
._15{width:52.803396px;}
._16{width:53.861508px;}
._2b{width:56.795364px;}
._35{width:67.084740px;}
._17{width:69.799320px;}
._18{width:71.693100px;}
._2e{width:76.160016px;}
._32{width:80.663004px;}
._2f{width:84.665412px;}
._2a{width:92.055744px;}
._30{width:106.406388px;}
._31{width:132.877224px;}
._27{width:141.384204px;}
._1{width:284.036940px;}
._28{width:502.422840px;}
._2{width:505.308600px;}
._1d{width:506.751480px;}
._2c{width:507.833640px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.y37{bottom:94.909590px;}
.y10a{bottom:108.995310px;}
.y85{bottom:109.273050px;}
.ybb{bottom:109.558620px;}
.y36{bottom:114.794280px;}
.y51{bottom:114.929550px;}
.y109{bottom:128.880000px;}
.y84{bottom:129.157740px;}
.yba{bottom:129.443310px;}
.y35{bottom:134.678970px;}
.y50{bottom:134.814240px;}
.y108{bottom:148.775310px;}
.y83{bottom:149.042430px;}
.yef{bottom:149.312970px;}
.yb9{bottom:149.328000px;}
.y34{bottom:154.563660px;}
.y4f{bottom:154.698930px;}
.y107{bottom:168.660000px;}
.y82{bottom:168.927120px;}
.yee{bottom:169.197660px;}
.yb8{bottom:169.212690px;}
.y33{bottom:174.448350px;}
.y4e{bottom:174.583620px;}
.y106{bottom:188.470620px;}
.y81{bottom:188.721630px;}
.yed{bottom:188.992170px;}
.yb7{bottom:189.007200px;}
.y32{bottom:194.242860px;}
.y4d{bottom:194.378130px;}
.y105{bottom:208.355310px;}
.y80{bottom:208.606320px;}
.yec{bottom:208.876860px;}
.yb6{bottom:208.891890px;}
.y31{bottom:214.127550px;}
.y4c{bottom:214.262820px;}
.y138{bottom:224.354700px;}
.y104{bottom:228.240000px;}
.y7f{bottom:228.491010px;}
.yeb{bottom:228.761550px;}
.yb5{bottom:228.776580px;}
.y30{bottom:234.012240px;}
.y4b{bottom:234.147510px;}
.y137{bottom:244.239390px;}
.y103{bottom:248.135310px;}
.y7e{bottom:248.375700px;}
.yea{bottom:248.646240px;}
.yb4{bottom:248.661270px;}
.y2f{bottom:253.896930px;}
.y4a{bottom:254.032200px;}
.y136{bottom:264.124080px;}
.y102{bottom:268.020000px;}
.y7d{bottom:268.260390px;}
.ye9{bottom:268.530930px;}
.yb3{bottom:268.545960px;}
.y2e{bottom:273.781620px;}
.y49{bottom:273.916890px;}
.y135{bottom:283.918590px;}
.y101{bottom:287.915490px;}
.y7c{bottom:288.145080px;}
.ye8{bottom:288.415620px;}
.yb2{bottom:288.430650px;}
.y2d{bottom:293.666310px;}
.y48{bottom:293.801580px;}
.y134{bottom:303.803280px;}
.y100{bottom:307.710000px;}
.y7b{bottom:307.939590px;}
.ye7{bottom:308.210130px;}
.yb1{bottom:308.225160px;}
.y2c{bottom:313.460820px;}
.y47{bottom:313.596090px;}
.y133{bottom:323.687970px;}
.yff{bottom:327.610620px;}
.y7a{bottom:327.824280px;}
.ye6{bottom:328.094820px;}
.yb0{bottom:328.109850px;}
.y2b{bottom:333.345510px;}
.y46{bottom:333.480780px;}
.y132{bottom:343.572660px;}
.yfe{bottom:347.495310px;}
.y79{bottom:347.708970px;}
.ye5{bottom:347.979510px;}
.yaf{bottom:347.994540px;}
.y2a{bottom:353.230200px;}
.y45{bottom:353.365470px;}
.y131{bottom:363.457350px;}
.yfd{bottom:367.380000px;}
.y78{bottom:367.593660px;}
.ye4{bottom:367.864200px;}
.yae{bottom:367.879230px;}
.y29{bottom:373.114890px;}
.y44{bottom:373.250160px;}
.y130{bottom:383.342040px;}
.yfc{bottom:387.280800px;}
.y77{bottom:387.478350px;}
.ye3{bottom:387.748890px;}
.yad{bottom:387.763920px;}
.y28{bottom:392.999580px;}
.y43{bottom:393.134850px;}
.y12f{bottom:403.136550px;}
.yfb{bottom:407.165490px;}
.y76{bottom:407.363040px;}
.ye2{bottom:407.633580px;}
.yac{bottom:407.648610px;}
.y27{bottom:412.884270px;}
.y42{bottom:413.019540px;}
.y12e{bottom:423.021240px;}
.yfa{bottom:426.960000px;}
.y75{bottom:427.157550px;}
.ye1{bottom:427.428090px;}
.yab{bottom:427.443120px;}
.y26{bottom:432.678780px;}
.y41{bottom:432.814050px;}
.y12d{bottom:442.905930px;}
.yf9{bottom:446.855310px;}
.y74{bottom:447.042240px;}
.ye0{bottom:447.312780px;}
.yaa{bottom:447.327810px;}
.y25{bottom:452.563470px;}
.y40{bottom:452.698740px;}
.y12c{bottom:462.790620px;}
.yf8{bottom:466.740000px;}
.y73{bottom:466.926930px;}
.ydf{bottom:467.197470px;}
.ya9{bottom:467.212500px;}
.y24{bottom:472.448160px;}
.y3f{bottom:472.583430px;}
.y12b{bottom:482.675310px;}
.yf7{bottom:486.635310px;}
.y72{bottom:486.811620px;}
.yde{bottom:487.082160px;}
.ya8{bottom:487.097190px;}
.y23{bottom:492.332850px;}
.y3e{bottom:492.468120px;}
.y12a{bottom:502.560000px;}
.yf6{bottom:506.520000px;}
.y71{bottom:506.696310px;}
.ydd{bottom:506.966850px;}
.ya7{bottom:506.981880px;}
.y22{bottom:512.217540px;}
.y3d{bottom:512.352810px;}
.y129{bottom:523.623690px;}
.yf5{bottom:526.415490px;}
.y70{bottom:526.581000px;}
.ydc{bottom:526.851540px;}
.ya6{bottom:526.866570px;}
.y21{bottom:532.102230px;}
.y3c{bottom:532.237500px;}
.yf4{bottom:546.210000px;}
.y6f{bottom:546.375510px;}
.ydb{bottom:546.646050px;}
.ya5{bottom:546.661080px;}
.y128{bottom:549.540000px;}
.y20{bottom:551.896740px;}
.y3b{bottom:552.032010px;}
.yf3{bottom:566.105310px;}
.y6e{bottom:566.260200px;}
.yda{bottom:566.530740px;}
.ya4{bottom:566.545770px;}
.y1f{bottom:571.781430px;}
.y3a{bottom:571.916700px;}
.y127{bottom:574.468020px;}
.yf2{bottom:585.990000px;}
.y6d{bottom:586.144890px;}
.yd9{bottom:586.415430px;}
.ya3{bottom:586.430460px;}
.y1e{bottom:591.666120px;}
.y39{bottom:591.801390px;}
.y126{bottom:596.241360px;}
.yf1{bottom:605.885310px;}
.y6c{bottom:606.029580px;}
.yd8{bottom:606.300120px;}
.ya2{bottom:606.315150px;}
.y1d{bottom:611.550810px;}
.y38{bottom:611.686080px;}
.y125{bottom:618.113520px;}
.yf0{bottom:625.770000px;}
.y6b{bottom:625.914270px;}
.yd7{bottom:626.184810px;}
.ya1{bottom:626.199840px;}
.y1c{bottom:631.435500px;}
.y124{bottom:639.985680px;}
.y6a{bottom:645.798960px;}
.yd6{bottom:646.069500px;}
.ya0{bottom:646.084530px;}
.y1b{bottom:651.320190px;}
.y123{bottom:661.857840px;}
.y69{bottom:665.593470px;}
.yd5{bottom:665.864010px;}
.y9f{bottom:665.879040px;}
.y1a{bottom:671.114700px;}
.y122{bottom:683.730000px;}
.y68{bottom:685.478160px;}
.yd4{bottom:685.748700px;}
.y9e{bottom:685.763730px;}
.y19{bottom:690.999390px;}
.y67{bottom:705.362850px;}
.yd3{bottom:705.633390px;}
.y9d{bottom:705.648420px;}
.y18{bottom:710.884080px;}
.y66{bottom:725.247540px;}
.y121{bottom:725.367780px;}
.yd2{bottom:725.518080px;}
.y9c{bottom:725.533110px;}
.y17{bottom:730.768770px;}
.y65{bottom:745.132230px;}
.y120{bottom:745.252470px;}
.yd1{bottom:745.402770px;}
.y9b{bottom:745.417800px;}
.y16{bottom:750.653460px;}
.y64{bottom:765.016920px;}
.y11f{bottom:765.137160px;}
.yd0{bottom:765.287460px;}
.y9a{bottom:765.302490px;}
.y15{bottom:770.538150px;}
.y63{bottom:784.811430px;}
.y11e{bottom:784.931670px;}
.ycf{bottom:785.081970px;}
.y99{bottom:785.097000px;}
.y14{bottom:790.332660px;}
.y62{bottom:804.696120px;}
.y11d{bottom:804.816360px;}
.yce{bottom:804.966660px;}
.y98{bottom:804.981690px;}
.y13{bottom:810.217350px;}
.y61{bottom:824.580810px;}
.y11c{bottom:824.701050px;}
.ycd{bottom:824.851350px;}
.y97{bottom:824.866380px;}
.y12{bottom:830.102040px;}
.y60{bottom:844.465500px;}
.y11b{bottom:844.585740px;}
.ycc{bottom:844.736040px;}
.y96{bottom:844.751070px;}
.y11{bottom:849.986730px;}
.y5f{bottom:864.350190px;}
.y11a{bottom:864.470430px;}
.ycb{bottom:864.620730px;}
.y95{bottom:864.635760px;}
.y10{bottom:869.871420px;}
.y5e{bottom:884.234880px;}
.y119{bottom:884.355120px;}
.yca{bottom:884.505420px;}
.y94{bottom:884.520450px;}
.yf{bottom:889.756110px;}
.y5d{bottom:904.029390px;}
.y118{bottom:904.149630px;}
.yc9{bottom:904.299930px;}
.y93{bottom:904.314960px;}
.ye{bottom:909.550620px;}
.y5c{bottom:923.914080px;}
.y117{bottom:924.034320px;}
.yc8{bottom:924.184620px;}
.y92{bottom:924.199650px;}
.yd{bottom:929.435310px;}
.y5b{bottom:943.798770px;}
.y116{bottom:943.919010px;}
.yc7{bottom:944.069310px;}
.y91{bottom:944.084340px;}
.yc{bottom:949.320000px;}
.y5a{bottom:963.683460px;}
.y115{bottom:963.803700px;}
.yc6{bottom:963.954000px;}
.y90{bottom:963.969030px;}
.yb{bottom:970.461810px;}
.y59{bottom:983.568150px;}
.y114{bottom:983.688390px;}
.yc5{bottom:983.838690px;}
.y8f{bottom:983.853720px;}
.ya{bottom:996.300000px;}
.y58{bottom:1003.452840px;}
.y113{bottom:1003.573080px;}
.yc4{bottom:1003.723380px;}
.y8e{bottom:1003.738410px;}
.y9{bottom:1021.225680px;}
.y57{bottom:1023.247350px;}
.y112{bottom:1023.367590px;}
.yc3{bottom:1023.517890px;}
.y8d{bottom:1023.532920px;}
.y8{bottom:1043.097840px;}
.y56{bottom:1043.132040px;}
.y111{bottom:1043.252280px;}
.yc2{bottom:1043.402580px;}
.y8c{bottom:1043.417610px;}
.y55{bottom:1063.016730px;}
.y110{bottom:1063.136970px;}
.yc1{bottom:1063.287270px;}
.y8b{bottom:1063.302300px;}
.y7{bottom:1064.970000px;}
.y54{bottom:1082.901420px;}
.y10f{bottom:1083.021660px;}
.yc0{bottom:1083.171960px;}
.y8a{bottom:1083.186990px;}
.y6{bottom:1086.480000px;}
.y53{bottom:1102.786110px;}
.y10e{bottom:1102.906350px;}
.ybf{bottom:1103.056650px;}
.y89{bottom:1103.071680px;}
.y4{bottom:1106.550000px;}
.y5{bottom:1116.720000px;}
.y52{bottom:1122.670800px;}
.y10d{bottom:1122.791040px;}
.ybe{bottom:1122.941340px;}
.y88{bottom:1122.956370px;}
.y3{bottom:1142.465310px;}
.y10c{bottom:1142.585550px;}
.ybd{bottom:1142.735850px;}
.y87{bottom:1142.750880px;}
.y2{bottom:1162.350000px;}
.y10b{bottom:1162.470240px;}
.ybc{bottom:1162.620540px;}
.y86{bottom:1162.635570px;}
.y1{bottom:1194.030000px;}
.h4{height:31.590000px;}
.h2{height:42.271875px;}
.h6{height:42.805440px;}
.ha{height:45.210240px;}
.h9{height:45.811440px;}
.hc{height:46.906560px;}
.h3{height:53.707200px;}
.hb{height:53.839464px;}
.h5{height:58.852800px;}
.h7{height:58.997736px;}
.h8{height:69.959064px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w2{width:50.310000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:42.210000px;}
.x1{left:85.050000px;}
.x7{left:97.474320px;}
.xa{left:106.384950px;}
.x9{left:107.631360px;}
.x8{left:128.880000px;}
.x10{left:140.934330px;}
.xe{left:154.523160px;}
.xf{left:176.850000px;}
.x3{left:326.160000px;}
.x6{left:333.720000px;}
.x5{left:384.570000px;}
.x2{left:457.110000px;}
.xb{left:473.071860px;}
.xc{left:494.399430px;}
.xd{left:596.619090px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.374080pt;}
.ls14{letter-spacing:-0.320640pt;}
.ls15{letter-spacing:-0.267200pt;}
.ls19{letter-spacing:-0.213760pt;}
.lsb{letter-spacing:-0.160320pt;}
.ls8{letter-spacing:-0.117120pt;}
.ls6{letter-spacing:-0.106880pt;}
.ls9{letter-spacing:-0.058560pt;}
.lsd{letter-spacing:-0.053440pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053440pt;}
.ls1f{letter-spacing:0.057600pt;}
.ls0{letter-spacing:0.058560pt;}
.lsa{letter-spacing:0.069440pt;}
.lse{letter-spacing:0.106880pt;}
.ls24{letter-spacing:0.117120pt;}
.ls25{letter-spacing:0.138880pt;}
.lsc{letter-spacing:0.160320pt;}
.ls5{letter-spacing:2.030720pt;}
.ls1a{letter-spacing:2.351360pt;}
.ls3{letter-spacing:2.992640pt;}
.ls22{letter-spacing:3.313280pt;}
.ls1b{letter-spacing:3.954560pt;}
.ls2{letter-spacing:4.916480pt;}
.ls21{letter-spacing:6.263168pt;}
.ls10{letter-spacing:7.481600pt;}
.ls16{letter-spacing:8.122880pt;}
.ls1d{letter-spacing:9.084800pt;}
.ls12{letter-spacing:12.932480pt;}
.ls13{letter-spacing:15.818240pt;}
.ls1e{letter-spacing:16.138880pt;}
.ls1c{letter-spacing:22.551680pt;}
.ls20{letter-spacing:26.720000pt;}
.ls11{letter-spacing:36.927040pt;}
.ls18{letter-spacing:55.203520pt;}
.ls4{letter-spacing:63.166080pt;}
.ls17{letter-spacing:73.800640pt;}
.ls23{letter-spacing:754.626240pt;}
.ws1a{word-spacing:-14.589120pt;}
.ws6{word-spacing:-14.535680pt;}
.ws4{word-spacing:-14.482240pt;}
.ws19{word-spacing:-14.428800pt;}
.ws16{word-spacing:-14.375360pt;}
.ws1d{word-spacing:-14.321920pt;}
.ws18{word-spacing:-14.215040pt;}
.ws11{word-spacing:-14.161600pt;}
.ws8{word-spacing:-14.054720pt;}
.ws14{word-spacing:-13.039360pt;}
.ws3{word-spacing:-12.985920pt;}
.ws9{word-spacing:-12.932480pt;}
.ws5{word-spacing:-12.879040pt;}
.ws7{word-spacing:-12.825600pt;}
.ws17{word-spacing:-12.665280pt;}
.ws12{word-spacing:-12.611840pt;}
.ws21{word-spacing:-1.977280pt;}
.ws1b{word-spacing:-0.320640pt;}
.ws10{word-spacing:-0.160320pt;}
.ws1f{word-spacing:-0.138880pt;}
.ws1e{word-spacing:-0.117120pt;}
.ws0{word-spacing:-0.106880pt;}
.wse{word-spacing:-0.069440pt;}
.ws1{word-spacing:-0.053440pt;}
.wsb{word-spacing:0.000000pt;}
.ws2{word-spacing:0.053440pt;}
.wsd{word-spacing:0.058560pt;}
.wsa{word-spacing:0.106880pt;}
.wsc{word-spacing:0.117120pt;}
.wsf{word-spacing:0.160320pt;}
.ws15{word-spacing:0.213760pt;}
.ws1c{word-spacing:0.267200pt;}
.ws13{word-spacing:0.320640pt;}
.ws20{word-spacing:2.404800pt;}
._a{margin-left:-3.072800pt;}
._20{margin-left:-2.137600pt;}
._3{margin-left:-1.238400pt;}
._0{width:0.935200pt;}
._4{width:1.950560pt;}
._c{width:2.975200pt;}
._b{width:4.146944pt;}
._6{width:5.258496pt;}
._5{width:6.215072pt;}
._9{width:7.740640pt;}
._e{width:9.470976pt;}
._7{width:10.430080pt;}
._8{width:11.556256pt;}
._13{width:14.134880pt;}
._19{width:15.615168pt;}
._1a{width:16.534336pt;}
._21{width:17.710016pt;}
._14{width:18.629184pt;}
._24{width:20.245600pt;}
._1e{width:21.188960pt;}
._29{width:22.193632pt;}
._11{width:23.465504pt;}
._10{width:25.106112pt;}
._22{width:26.121472pt;}
._f{width:27.152864pt;}
._33{width:28.611776pt;}
._1f{width:29.509568pt;}
._26{width:30.610432pt;}
._12{width:32.176224pt;}
._23{width:34.030592pt;}
._1b{width:35.028512pt;}
._1c{width:36.102656pt;}
._25{width:37.589696pt;}
._2d{width:40.559552pt;}
._34{width:42.105376pt;}
._d{width:43.072640pt;}
._36{width:44.985792pt;}
._15{width:46.936352pt;}
._16{width:47.876896pt;}
._2b{width:50.484768pt;}
._35{width:59.630880pt;}
._17{width:62.043840pt;}
._18{width:63.727200pt;}
._2e{width:67.697792pt;}
._32{width:71.700448pt;}
._2f{width:75.258144pt;}
._2a{width:81.827328pt;}
._30{width:94.583456pt;}
._31{width:118.113088pt;}
._27{width:125.674848pt;}
._1{width:252.477280pt;}
._28{width:446.598080pt;}
._2{width:449.163200pt;}
._1d{width:450.445760pt;}
._2c{width:451.407680pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:84.364080pt;}
.y10a{bottom:96.884720pt;}
.y85{bottom:97.131600pt;}
.ybb{bottom:97.385440pt;}
.y36{bottom:102.039360pt;}
.y51{bottom:102.159600pt;}
.y109{bottom:114.560000pt;}
.y84{bottom:114.806880pt;}
.yba{bottom:115.060720pt;}
.y35{bottom:119.714640pt;}
.y50{bottom:119.834880pt;}
.y108{bottom:132.244720pt;}
.y83{bottom:132.482160pt;}
.yef{bottom:132.722640pt;}
.yb9{bottom:132.736000pt;}
.y34{bottom:137.389920pt;}
.y4f{bottom:137.510160pt;}
.y107{bottom:149.920000pt;}
.y82{bottom:150.157440pt;}
.yee{bottom:150.397920pt;}
.yb8{bottom:150.411280pt;}
.y33{bottom:155.065200pt;}
.y4e{bottom:155.185440pt;}
.y106{bottom:167.529440pt;}
.y81{bottom:167.752560pt;}
.yed{bottom:167.993040pt;}
.yb7{bottom:168.006400pt;}
.y32{bottom:172.660320pt;}
.y4d{bottom:172.780560pt;}
.y105{bottom:185.204720pt;}
.y80{bottom:185.427840pt;}
.yec{bottom:185.668320pt;}
.yb6{bottom:185.681680pt;}
.y31{bottom:190.335600pt;}
.y4c{bottom:190.455840pt;}
.y138{bottom:199.426400pt;}
.y104{bottom:202.880000pt;}
.y7f{bottom:203.103120pt;}
.yeb{bottom:203.343600pt;}
.yb5{bottom:203.356960pt;}
.y30{bottom:208.010880pt;}
.y4b{bottom:208.131120pt;}
.y137{bottom:217.101680pt;}
.y103{bottom:220.564720pt;}
.y7e{bottom:220.778400pt;}
.yea{bottom:221.018880pt;}
.yb4{bottom:221.032240pt;}
.y2f{bottom:225.686160pt;}
.y4a{bottom:225.806400pt;}
.y136{bottom:234.776960pt;}
.y102{bottom:238.240000pt;}
.y7d{bottom:238.453680pt;}
.ye9{bottom:238.694160pt;}
.yb3{bottom:238.707520pt;}
.y2e{bottom:243.361440pt;}
.y49{bottom:243.481680pt;}
.y135{bottom:252.372080pt;}
.y101{bottom:255.924880pt;}
.y7c{bottom:256.128960pt;}
.ye8{bottom:256.369440pt;}
.yb2{bottom:256.382800pt;}
.y2d{bottom:261.036720pt;}
.y48{bottom:261.156960pt;}
.y134{bottom:270.047360pt;}
.y100{bottom:273.520000pt;}
.y7b{bottom:273.724080pt;}
.ye7{bottom:273.964560pt;}
.yb1{bottom:273.977920pt;}
.y2c{bottom:278.631840pt;}
.y47{bottom:278.752080pt;}
.y133{bottom:287.722640pt;}
.yff{bottom:291.209440pt;}
.y7a{bottom:291.399360pt;}
.ye6{bottom:291.639840pt;}
.yb0{bottom:291.653200pt;}
.y2b{bottom:296.307120pt;}
.y46{bottom:296.427360pt;}
.y132{bottom:305.397920pt;}
.yfe{bottom:308.884720pt;}
.y79{bottom:309.074640pt;}
.ye5{bottom:309.315120pt;}
.yaf{bottom:309.328480pt;}
.y2a{bottom:313.982400pt;}
.y45{bottom:314.102640pt;}
.y131{bottom:323.073200pt;}
.yfd{bottom:326.560000pt;}
.y78{bottom:326.749920pt;}
.ye4{bottom:326.990400pt;}
.yae{bottom:327.003760pt;}
.y29{bottom:331.657680pt;}
.y44{bottom:331.777920pt;}
.y130{bottom:340.748480pt;}
.yfc{bottom:344.249600pt;}
.y77{bottom:344.425200pt;}
.ye3{bottom:344.665680pt;}
.yad{bottom:344.679040pt;}
.y28{bottom:349.332960pt;}
.y43{bottom:349.453200pt;}
.y12f{bottom:358.343600pt;}
.yfb{bottom:361.924880pt;}
.y76{bottom:362.100480pt;}
.ye2{bottom:362.340960pt;}
.yac{bottom:362.354320pt;}
.y27{bottom:367.008240pt;}
.y42{bottom:367.128480pt;}
.y12e{bottom:376.018880pt;}
.yfa{bottom:379.520000pt;}
.y75{bottom:379.695600pt;}
.ye1{bottom:379.936080pt;}
.yab{bottom:379.949440pt;}
.y26{bottom:384.603360pt;}
.y41{bottom:384.723600pt;}
.y12d{bottom:393.694160pt;}
.yf9{bottom:397.204720pt;}
.y74{bottom:397.370880pt;}
.ye0{bottom:397.611360pt;}
.yaa{bottom:397.624720pt;}
.y25{bottom:402.278640pt;}
.y40{bottom:402.398880pt;}
.y12c{bottom:411.369440pt;}
.yf8{bottom:414.880000pt;}
.y73{bottom:415.046160pt;}
.ydf{bottom:415.286640pt;}
.ya9{bottom:415.300000pt;}
.y24{bottom:419.953920pt;}
.y3f{bottom:420.074160pt;}
.y12b{bottom:429.044720pt;}
.yf7{bottom:432.564720pt;}
.y72{bottom:432.721440pt;}
.yde{bottom:432.961920pt;}
.ya8{bottom:432.975280pt;}
.y23{bottom:437.629200pt;}
.y3e{bottom:437.749440pt;}
.y12a{bottom:446.720000pt;}
.yf6{bottom:450.240000pt;}
.y71{bottom:450.396720pt;}
.ydd{bottom:450.637200pt;}
.ya7{bottom:450.650560pt;}
.y22{bottom:455.304480pt;}
.y3d{bottom:455.424720pt;}
.y129{bottom:465.443280pt;}
.yf5{bottom:467.924880pt;}
.y70{bottom:468.072000pt;}
.ydc{bottom:468.312480pt;}
.ya6{bottom:468.325840pt;}
.y21{bottom:472.979760pt;}
.y3c{bottom:473.100000pt;}
.yf4{bottom:485.520000pt;}
.y6f{bottom:485.667120pt;}
.ydb{bottom:485.907600pt;}
.ya5{bottom:485.920960pt;}
.y128{bottom:488.480000pt;}
.y20{bottom:490.574880pt;}
.y3b{bottom:490.695120pt;}
.yf3{bottom:503.204720pt;}
.y6e{bottom:503.342400pt;}
.yda{bottom:503.582880pt;}
.ya4{bottom:503.596240pt;}
.y1f{bottom:508.250160pt;}
.y3a{bottom:508.370400pt;}
.y127{bottom:510.638240pt;}
.yf2{bottom:520.880000pt;}
.y6d{bottom:521.017680pt;}
.yd9{bottom:521.258160pt;}
.ya3{bottom:521.271520pt;}
.y1e{bottom:525.925440pt;}
.y39{bottom:526.045680pt;}
.y126{bottom:529.992320pt;}
.yf1{bottom:538.564720pt;}
.y6c{bottom:538.692960pt;}
.yd8{bottom:538.933440pt;}
.ya2{bottom:538.946800pt;}
.y1d{bottom:543.600720pt;}
.y38{bottom:543.720960pt;}
.y125{bottom:549.434240pt;}
.yf0{bottom:556.240000pt;}
.y6b{bottom:556.368240pt;}
.yd7{bottom:556.608720pt;}
.ya1{bottom:556.622080pt;}
.y1c{bottom:561.276000pt;}
.y124{bottom:568.876160pt;}
.y6a{bottom:574.043520pt;}
.yd6{bottom:574.284000pt;}
.ya0{bottom:574.297360pt;}
.y1b{bottom:578.951280pt;}
.y123{bottom:588.318080pt;}
.y69{bottom:591.638640pt;}
.yd5{bottom:591.879120pt;}
.y9f{bottom:591.892480pt;}
.y1a{bottom:596.546400pt;}
.y122{bottom:607.760000pt;}
.y68{bottom:609.313920pt;}
.yd4{bottom:609.554400pt;}
.y9e{bottom:609.567760pt;}
.y19{bottom:614.221680pt;}
.y67{bottom:626.989200pt;}
.yd3{bottom:627.229680pt;}
.y9d{bottom:627.243040pt;}
.y18{bottom:631.896960pt;}
.y66{bottom:644.664480pt;}
.y121{bottom:644.771360pt;}
.yd2{bottom:644.904960pt;}
.y9c{bottom:644.918320pt;}
.y17{bottom:649.572240pt;}
.y65{bottom:662.339760pt;}
.y120{bottom:662.446640pt;}
.yd1{bottom:662.580240pt;}
.y9b{bottom:662.593600pt;}
.y16{bottom:667.247520pt;}
.y64{bottom:680.015040pt;}
.y11f{bottom:680.121920pt;}
.yd0{bottom:680.255520pt;}
.y9a{bottom:680.268880pt;}
.y15{bottom:684.922800pt;}
.y63{bottom:697.610160pt;}
.y11e{bottom:697.717040pt;}
.ycf{bottom:697.850640pt;}
.y99{bottom:697.864000pt;}
.y14{bottom:702.517920pt;}
.y62{bottom:715.285440pt;}
.y11d{bottom:715.392320pt;}
.yce{bottom:715.525920pt;}
.y98{bottom:715.539280pt;}
.y13{bottom:720.193200pt;}
.y61{bottom:732.960720pt;}
.y11c{bottom:733.067600pt;}
.ycd{bottom:733.201200pt;}
.y97{bottom:733.214560pt;}
.y12{bottom:737.868480pt;}
.y60{bottom:750.636000pt;}
.y11b{bottom:750.742880pt;}
.ycc{bottom:750.876480pt;}
.y96{bottom:750.889840pt;}
.y11{bottom:755.543760pt;}
.y5f{bottom:768.311280pt;}
.y11a{bottom:768.418160pt;}
.ycb{bottom:768.551760pt;}
.y95{bottom:768.565120pt;}
.y10{bottom:773.219040pt;}
.y5e{bottom:785.986560pt;}
.y119{bottom:786.093440pt;}
.yca{bottom:786.227040pt;}
.y94{bottom:786.240400pt;}
.yf{bottom:790.894320pt;}
.y5d{bottom:803.581680pt;}
.y118{bottom:803.688560pt;}
.yc9{bottom:803.822160pt;}
.y93{bottom:803.835520pt;}
.ye{bottom:808.489440pt;}
.y5c{bottom:821.256960pt;}
.y117{bottom:821.363840pt;}
.yc8{bottom:821.497440pt;}
.y92{bottom:821.510800pt;}
.yd{bottom:826.164720pt;}
.y5b{bottom:838.932240pt;}
.y116{bottom:839.039120pt;}
.yc7{bottom:839.172720pt;}
.y91{bottom:839.186080pt;}
.yc{bottom:843.840000pt;}
.y5a{bottom:856.607520pt;}
.y115{bottom:856.714400pt;}
.yc6{bottom:856.848000pt;}
.y90{bottom:856.861360pt;}
.yb{bottom:862.632720pt;}
.y59{bottom:874.282800pt;}
.y114{bottom:874.389680pt;}
.yc5{bottom:874.523280pt;}
.y8f{bottom:874.536640pt;}
.ya{bottom:885.600000pt;}
.y58{bottom:891.958080pt;}
.y113{bottom:892.064960pt;}
.yc4{bottom:892.198560pt;}
.y8e{bottom:892.211920pt;}
.y9{bottom:907.756160pt;}
.y57{bottom:909.553200pt;}
.y112{bottom:909.660080pt;}
.yc3{bottom:909.793680pt;}
.y8d{bottom:909.807040pt;}
.y8{bottom:927.198080pt;}
.y56{bottom:927.228480pt;}
.y111{bottom:927.335360pt;}
.yc2{bottom:927.468960pt;}
.y8c{bottom:927.482320pt;}
.y55{bottom:944.903760pt;}
.y110{bottom:945.010640pt;}
.yc1{bottom:945.144240pt;}
.y8b{bottom:945.157600pt;}
.y7{bottom:946.640000pt;}
.y54{bottom:962.579040pt;}
.y10f{bottom:962.685920pt;}
.yc0{bottom:962.819520pt;}
.y8a{bottom:962.832880pt;}
.y6{bottom:965.760000pt;}
.y53{bottom:980.254320pt;}
.y10e{bottom:980.361200pt;}
.ybf{bottom:980.494800pt;}
.y89{bottom:980.508160pt;}
.y4{bottom:983.600000pt;}
.y5{bottom:992.640000pt;}
.y52{bottom:997.929600pt;}
.y10d{bottom:998.036480pt;}
.ybe{bottom:998.170080pt;}
.y88{bottom:998.183440pt;}
.y3{bottom:1015.524720pt;}
.y10c{bottom:1015.631600pt;}
.ybd{bottom:1015.765200pt;}
.y87{bottom:1015.778560pt;}
.y2{bottom:1033.200000pt;}
.y10b{bottom:1033.306880pt;}
.ybc{bottom:1033.440480pt;}
.y86{bottom:1033.453840pt;}
.y1{bottom:1061.360000pt;}
.h4{height:28.080000pt;}
.h2{height:37.575000pt;}
.h6{height:38.049280pt;}
.ha{height:40.186880pt;}
.h9{height:40.721280pt;}
.hc{height:41.694720pt;}
.h3{height:47.739733pt;}
.hb{height:47.857301pt;}
.h5{height:52.313600pt;}
.h7{height:52.442432pt;}
.h8{height:62.185835pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.720000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:37.520000pt;}
.x1{left:75.600000pt;}
.x7{left:86.643840pt;}
.xa{left:94.564400pt;}
.x9{left:95.672320pt;}
.x8{left:114.560000pt;}
.x10{left:125.274960pt;}
.xe{left:137.353920pt;}
.xf{left:157.200000pt;}
.x3{left:289.920000pt;}
.x6{left:296.640000pt;}
.x5{left:341.840000pt;}
.x2{left:406.320000pt;}
.xb{left:420.508320pt;}
.xc{left:439.466160pt;}
.xd{left:530.328080pt;}
}




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