
    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_756d701b9f166f521e4a3069.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_f8188a49f37a199bbefc189c.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_b59926e673d6d4d7c1fee233.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_a97c7df4cc67442467778b5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.111133;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_1aa2398ec74648a5cd22508b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.110533;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_946899bffc9e2ff9609f60a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.967000;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_55880616a78b50cd29ae5089.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_70b52e75f773e1d62f41f7c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064000;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_5c9f39337ce72681e8fce841.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_57db43505eb68a3ffd95bd7d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a73e2e8a2a3dc2bc70bd3310.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767000;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_f7aaa7ddc4689e9d875e8881.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_801ce70a167bd5680331e9c1.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;}
.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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-7.394760px;}
.ls11{letter-spacing:-1.983960px;}
.ls10{letter-spacing:-1.262520px;}
.ls1c{letter-spacing:-0.901800px;}
.ls18{letter-spacing:-0.541080px;}
.ls12{letter-spacing:-0.420840px;}
.lsd{letter-spacing:-0.360720px;}
.lsb{letter-spacing:-0.312480px;}
.ls8{letter-spacing:-0.180360px;}
.ls1e{letter-spacing:-0.131760px;}
.ls5{letter-spacing:-0.120240px;}
.ls20{letter-spacing:-0.078120px;}
.ls1d{letter-spacing:-0.065880px;}
.lsc{letter-spacing:-0.060120px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.060120px;}
.lsa{letter-spacing:0.078120px;}
.ls0{letter-spacing:0.120240px;}
.ls1f{letter-spacing:0.156240px;}
.ls1{letter-spacing:0.180360px;}
.ls9{letter-spacing:0.197640px;}
.lse{letter-spacing:0.541080px;}
.ls15{letter-spacing:2.645280px;}
.lsf{letter-spacing:3.006000px;}
.ls3{letter-spacing:5.891760px;}
.ls17{letter-spacing:9.138240px;}
.ls13{letter-spacing:10.581120px;}
.ls14{letter-spacing:22.124160px;}
.ls2{letter-spacing:26.092080px;}
.ls4{letter-spacing:28.256400px;}
.ls19{letter-spacing:30.060000px;}
.ls16{letter-spacing:62.103960px;}
.ls1a{letter-spacing:848.954520px;}
.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;}
}
.wsc{word-spacing:-40.853160px;}
.ws5{word-spacing:-21.092400px;}
.ws1b{word-spacing:-21.014280px;}
.ws6{word-spacing:-20.779920px;}
.ws18{word-spacing:-16.352640px;}
.ws1d{word-spacing:-16.172280px;}
.ws1c{word-spacing:-16.112160px;}
.ws1a{word-spacing:-15.942960px;}
.wsa{word-spacing:-14.789520px;}
.ws7{word-spacing:-14.729400px;}
.ws13{word-spacing:-14.669280px;}
.ws4{word-spacing:-14.609160px;}
.ws9{word-spacing:-14.549040px;}
.wsb{word-spacing:-14.488920px;}
.ws8{word-spacing:-14.248440px;}
.ws3{word-spacing:-12.264480px;}
.ws22{word-spacing:-0.312480px;}
.wse{word-spacing:-0.197640px;}
.ws11{word-spacing:-0.180360px;}
.ws23{word-spacing:-0.156240px;}
.ws0{word-spacing:-0.120240px;}
.wsf{word-spacing:-0.078120px;}
.ws20{word-spacing:-0.065880px;}
.ws2{word-spacing:-0.060120px;}
.wsd{word-spacing:0.000000px;}
.ws12{word-spacing:0.060120px;}
.ws1{word-spacing:0.120240px;}
.ws21{word-spacing:0.131760px;}
.ws10{word-spacing:0.180360px;}
.ws14{word-spacing:0.360720px;}
.ws17{word-spacing:0.420840px;}
.ws19{word-spacing:0.541080px;}
.ws1f{word-spacing:0.901800px;}
.ws15{word-spacing:1.262520px;}
.ws16{word-spacing:1.983960px;}
.ws24{word-spacing:2.765520px;}
.ws1e{word-spacing:7.394760px;}
._2e{margin-left:-7.355844px;}
._2f{margin-left:-5.867388px;}
._25{margin-left:-4.080564px;}
._10{margin-left:-2.785140px;}
._3{margin-left:-1.393200px;}
._0{width:1.052100px;}
._5{width:2.248488px;}
._1e{width:3.285396px;}
._e{width:4.310604px;}
._d{width:5.458896px;}
._a{width:6.967908px;}
._11{width:8.260488px;}
._8{width:9.565092px;}
._7{width:10.605168px;}
._9{width:11.903760px;}
._15{width:13.557060px;}
._4{width:15.985908px;}
._f{width:17.134200px;}
._12{width:18.420768px;}
._17{width:19.653228px;}
._1f{width:21.088512px;}
._18{width:22.611132px;}
._6{width:23.807520px;}
._1b{width:24.907716px;}
._c{width:25.953804px;}
._b{width:27.222336px;}
._16{width:28.581048px;}
._24{width:29.585052px;}
._20{width:31.124124px;}
._22{width:32.621112px;}
._1d{width:33.667200px;}
._27{width:35.488836px;}
._2a{width:37.773396px;}
._30{width:39.727296px;}
._29{width:41.194224px;}
._2b{width:43.448724px;}
._2c{width:44.536896px;}
._1c{width:45.907632px;}
._23{width:47.621052px;}
._19{width:61.797348px;}
._26{width:63.661068px;}
._14{width:73.899504px;}
._13{width:74.945592px;}
._28{width:112.767084px;}
._1{width:284.217300px;}
._2d{width:861.699960px;}
._1a{width:863.142840px;}
._21{width:864.946440px;}
._2{width:870.357240px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:78.120000px;}
.fs3{font-size:168.120000px;}
.fs4{font-size:285.120000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:5.670000px;}
.y37{bottom:94.909590px;}
.y90{bottom:109.160820px;}
.ye8{bottom:109.273050px;}
.yc6{bottom:109.446390px;}
.y36{bottom:114.794280px;}
.y5a{bottom:114.974640px;}
.y8f{bottom:129.045510px;}
.ye7{bottom:129.157740px;}
.yc5{bottom:129.331080px;}
.y11d{bottom:129.443310px;}
.y35{bottom:134.678970px;}
.y59{bottom:134.859330px;}
.y8e{bottom:148.930200px;}
.ye6{bottom:149.042430px;}
.yc4{bottom:149.215770px;}
.y11c{bottom:149.328000px;}
.y34{bottom:154.563660px;}
.y58{bottom:154.744020px;}
.y8d{bottom:168.814890px;}
.ye5{bottom:168.927120px;}
.yc3{bottom:169.100460px;}
.y11b{bottom:169.212690px;}
.y33{bottom:174.448350px;}
.y57{bottom:174.628710px;}
.y8c{bottom:188.609400px;}
.ye4{bottom:188.721630px;}
.yc2{bottom:188.894970px;}
.y11a{bottom:189.007200px;}
.y32{bottom:194.242860px;}
.y56{bottom:194.423220px;}
.y8b{bottom:208.494090px;}
.ye3{bottom:208.606320px;}
.yc1{bottom:208.779660px;}
.y119{bottom:208.891890px;}
.y31{bottom:214.127550px;}
.y55{bottom:214.307910px;}
.y8a{bottom:228.378780px;}
.ye2{bottom:228.491010px;}
.yc0{bottom:228.664350px;}
.y118{bottom:228.776580px;}
.y30{bottom:234.012240px;}
.y54{bottom:234.192600px;}
.y89{bottom:248.263470px;}
.ye1{bottom:248.375700px;}
.ybf{bottom:248.549040px;}
.y117{bottom:248.661270px;}
.y2f{bottom:253.896930px;}
.y53{bottom:254.077290px;}
.y88{bottom:268.148160px;}
.ye0{bottom:268.260390px;}
.ybe{bottom:268.433730px;}
.y116{bottom:268.545960px;}
.y2e{bottom:273.781620px;}
.y52{bottom:273.961980px;}
.y87{bottom:288.032850px;}
.ydf{bottom:288.145080px;}
.ybd{bottom:288.318420px;}
.y115{bottom:288.430650px;}
.y2d{bottom:293.666310px;}
.y51{bottom:293.846670px;}
.y86{bottom:307.827360px;}
.yde{bottom:307.939590px;}
.ybc{bottom:308.112930px;}
.y114{bottom:308.225160px;}
.y2c{bottom:313.460820px;}
.y50{bottom:313.641180px;}
.y85{bottom:327.712050px;}
.ydd{bottom:327.824280px;}
.ybb{bottom:327.997620px;}
.y113{bottom:328.109850px;}
.y2b{bottom:333.345510px;}
.y4f{bottom:333.525870px;}
.y84{bottom:347.596740px;}
.ydc{bottom:347.708970px;}
.yba{bottom:347.882310px;}
.y112{bottom:347.994540px;}
.y2a{bottom:353.230200px;}
.y4e{bottom:353.410560px;}
.y83{bottom:367.481430px;}
.ydb{bottom:367.593660px;}
.yb9{bottom:367.767000px;}
.y111{bottom:367.879230px;}
.y29{bottom:373.114890px;}
.y4d{bottom:373.295250px;}
.y82{bottom:387.366120px;}
.yda{bottom:387.478350px;}
.yb8{bottom:387.651690px;}
.y110{bottom:387.763920px;}
.y28{bottom:392.999580px;}
.y4c{bottom:393.179940px;}
.y143{bottom:403.147350px;}
.y81{bottom:407.250810px;}
.yd9{bottom:407.363040px;}
.yb7{bottom:407.536380px;}
.y10f{bottom:407.648610px;}
.y27{bottom:412.884270px;}
.y4b{bottom:413.064630px;}
.y142{bottom:423.032040px;}
.y80{bottom:427.045320px;}
.yd8{bottom:427.157550px;}
.yb6{bottom:427.330890px;}
.y10e{bottom:427.443120px;}
.y26{bottom:432.678780px;}
.y4a{bottom:432.859140px;}
.y141{bottom:442.916730px;}
.y7f{bottom:446.930010px;}
.yd7{bottom:447.042240px;}
.yb5{bottom:447.215580px;}
.y10d{bottom:447.327810px;}
.y25{bottom:452.563470px;}
.y49{bottom:452.743830px;}
.y140{bottom:462.801420px;}
.y7e{bottom:466.814700px;}
.yd6{bottom:466.926930px;}
.yb4{bottom:467.100270px;}
.y10c{bottom:467.212500px;}
.y24{bottom:472.448160px;}
.y48{bottom:472.628520px;}
.y13f{bottom:482.686110px;}
.y7d{bottom:486.699390px;}
.yd5{bottom:486.811620px;}
.yb3{bottom:486.984960px;}
.y10b{bottom:487.097190px;}
.y23{bottom:492.332850px;}
.y47{bottom:492.513210px;}
.y13e{bottom:502.570800px;}
.y7c{bottom:506.584080px;}
.yd4{bottom:506.696310px;}
.yb2{bottom:506.869650px;}
.y10a{bottom:506.981880px;}
.y22{bottom:512.217540px;}
.y46{bottom:512.397900px;}
.y13d{bottom:522.365310px;}
.y7b{bottom:526.468770px;}
.yd3{bottom:526.581000px;}
.yb1{bottom:526.754340px;}
.y109{bottom:526.866570px;}
.y21{bottom:532.102230px;}
.y45{bottom:532.282590px;}
.y13c{bottom:542.250000px;}
.y7a{bottom:546.263280px;}
.yd2{bottom:546.375510px;}
.yb0{bottom:546.548850px;}
.y108{bottom:546.661080px;}
.y20{bottom:551.896740px;}
.y44{bottom:552.077100px;}
.y13b{bottom:563.391810px;}
.y79{bottom:566.147970px;}
.yd1{bottom:566.260200px;}
.yaf{bottom:566.433540px;}
.y107{bottom:566.545770px;}
.y1f{bottom:571.781430px;}
.y43{bottom:571.961790px;}
.y78{bottom:586.032660px;}
.yd0{bottom:586.144890px;}
.yae{bottom:586.318230px;}
.y106{bottom:586.430460px;}
.y13a{bottom:589.230000px;}
.y1e{bottom:591.666120px;}
.y42{bottom:591.846480px;}
.y77{bottom:605.917350px;}
.ycf{bottom:606.029580px;}
.yad{bottom:606.202920px;}
.y105{bottom:606.315150px;}
.y1d{bottom:611.550810px;}
.y41{bottom:611.731170px;}
.y139{bottom:614.149200px;}
.y76{bottom:625.802040px;}
.yce{bottom:625.914270px;}
.yac{bottom:626.087610px;}
.y104{bottom:626.199840px;}
.y1c{bottom:631.435500px;}
.y40{bottom:631.615860px;}
.y138{bottom:636.021360px;}
.y75{bottom:645.686730px;}
.ycd{bottom:645.798960px;}
.yab{bottom:645.972300px;}
.y103{bottom:646.084530px;}
.y1b{bottom:651.320190px;}
.y3f{bottom:651.500550px;}
.y137{bottom:657.893520px;}
.y74{bottom:665.481240px;}
.ycc{bottom:665.593470px;}
.yaa{bottom:665.766810px;}
.y102{bottom:665.879040px;}
.y1a{bottom:671.114700px;}
.y3e{bottom:671.295060px;}
.y136{bottom:679.765680px;}
.y73{bottom:685.365930px;}
.ycb{bottom:685.478160px;}
.ya9{bottom:685.651500px;}
.y101{bottom:685.763730px;}
.y19{bottom:690.999390px;}
.y3d{bottom:691.179750px;}
.y135{bottom:701.637840px;}
.y72{bottom:705.250620px;}
.yca{bottom:705.362850px;}
.ya8{bottom:705.536190px;}
.y100{bottom:705.648420px;}
.y18{bottom:710.884080px;}
.y3c{bottom:711.064440px;}
.y134{bottom:723.510000px;}
.y71{bottom:725.135310px;}
.yc9{bottom:725.247540px;}
.ya7{bottom:725.420880px;}
.yff{bottom:725.533110px;}
.y17{bottom:730.768770px;}
.y3b{bottom:730.949130px;}
.y70{bottom:745.020000px;}
.yc8{bottom:745.132230px;}
.y133{bottom:745.237440px;}
.ya6{bottom:745.305570px;}
.yfe{bottom:745.417800px;}
.y16{bottom:750.653460px;}
.y3a{bottom:750.833820px;}
.y6f{bottom:764.910000px;}
.yc7{bottom:765.016920px;}
.y132{bottom:765.122130px;}
.ya5{bottom:765.190260px;}
.yfd{bottom:765.302490px;}
.y5b{bottom:766.170000px;}
.y15{bottom:770.538150px;}
.y39{bottom:770.718510px;}
.y6e{bottom:784.811430px;}
.y131{bottom:784.916640px;}
.ya4{bottom:784.984770px;}
.yfc{bottom:785.097000px;}
.y14{bottom:790.332660px;}
.y38{bottom:790.513020px;}
.y6d{bottom:804.696120px;}
.y130{bottom:804.801330px;}
.ya3{bottom:804.869460px;}
.yfb{bottom:804.981690px;}
.y13{bottom:810.217350px;}
.y6c{bottom:824.580810px;}
.y12f{bottom:824.686020px;}
.ya2{bottom:824.754150px;}
.yfa{bottom:824.866380px;}
.y12{bottom:830.102040px;}
.y6b{bottom:844.465500px;}
.y12e{bottom:844.570710px;}
.ya1{bottom:844.638840px;}
.yf9{bottom:844.751070px;}
.y11{bottom:849.986730px;}
.y6a{bottom:864.350190px;}
.y12d{bottom:864.455400px;}
.ya0{bottom:864.523530px;}
.yf8{bottom:864.635760px;}
.y10{bottom:869.871420px;}
.y69{bottom:884.234880px;}
.y12c{bottom:884.340090px;}
.y9f{bottom:884.408220px;}
.yf7{bottom:884.520450px;}
.yf{bottom:889.756110px;}
.y68{bottom:904.029390px;}
.y12b{bottom:904.134600px;}
.y9e{bottom:904.202730px;}
.yf6{bottom:904.314960px;}
.ye{bottom:909.550620px;}
.y67{bottom:923.914080px;}
.y12a{bottom:924.019290px;}
.y9d{bottom:924.087420px;}
.yf5{bottom:924.199650px;}
.yd{bottom:929.435310px;}
.y66{bottom:943.798770px;}
.y129{bottom:943.903980px;}
.y9c{bottom:943.972110px;}
.yf4{bottom:944.084340px;}
.yc{bottom:949.320000px;}
.y65{bottom:963.683460px;}
.y128{bottom:963.788670px;}
.y9b{bottom:963.856800px;}
.yf3{bottom:963.969030px;}
.yb{bottom:970.461810px;}
.y64{bottom:983.568150px;}
.y127{bottom:983.673360px;}
.y9a{bottom:983.741490px;}
.yf2{bottom:983.853720px;}
.ya{bottom:996.300000px;}
.y63{bottom:1003.452840px;}
.y126{bottom:1003.558050px;}
.y99{bottom:1003.626180px;}
.yf1{bottom:1003.738410px;}
.y9{bottom:1021.225680px;}
.y62{bottom:1023.247350px;}
.y125{bottom:1023.352560px;}
.y98{bottom:1023.420690px;}
.yf0{bottom:1023.532920px;}
.y8{bottom:1043.097840px;}
.y61{bottom:1043.132040px;}
.y124{bottom:1043.237250px;}
.y97{bottom:1043.305380px;}
.yef{bottom:1043.417610px;}
.y60{bottom:1063.016730px;}
.y123{bottom:1063.121940px;}
.y96{bottom:1063.190070px;}
.yee{bottom:1063.302300px;}
.y7{bottom:1064.970000px;}
.y5f{bottom:1082.901420px;}
.y122{bottom:1083.006630px;}
.y95{bottom:1083.074760px;}
.yed{bottom:1083.186990px;}
.y6{bottom:1086.480000px;}
.y5e{bottom:1102.786110px;}
.y121{bottom:1102.891320px;}
.y94{bottom:1102.959450px;}
.yec{bottom:1103.071680px;}
.y4{bottom:1106.550000px;}
.y5{bottom:1116.720000px;}
.y5d{bottom:1122.670800px;}
.y120{bottom:1122.776010px;}
.y93{bottom:1122.844140px;}
.yeb{bottom:1122.956370px;}
.y3{bottom:1142.465310px;}
.y11f{bottom:1142.570520px;}
.y92{bottom:1142.638650px;}
.yea{bottom:1142.750880px;}
.y2{bottom:1162.350000px;}
.y11e{bottom:1162.455210px;}
.y91{bottom:1162.523340px;}
.ye9{bottom:1162.635570px;}
.y1{bottom:1193.940000px;}
.h4{height:31.590000px;}
.ha{height:39.690000px;}
.h2{height:42.213164px;}
.h9{height:45.210240px;}
.hd{height:49.541760px;}
.h8{height:50.140080px;}
.h3{height:52.973736px;}
.hc{height:53.839464px;}
.h5{height:58.049064px;}
.he{height:58.746240px;}
.h6{height:58.997736px;}
.h7{height:69.959064px;}
.hb{height:233.228736px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3{width:31.050000px;}
.w2{width:50.310000px;}
.w0{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:42.210000px;}
.x1{left:85.050000px;}
.xa{left:106.376130px;}
.xb{left:116.100540px;}
.x7{left:133.917660px;}
.x8{left:150.660000px;}
.x11{left:204.300000px;}
.x10{left:208.893780px;}
.x12{left:240.840630px;}
.x9{left:251.005140px;}
.x6{left:298.980000px;}
.xf{left:303.925680px;}
.x3{left:326.160000px;}
.x5{left:384.570000px;}
.x2{left:446.490000px;}
.xc{left:473.528970px;}
.xd{left:494.856540px;}
.xe{left:596.821500px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-6.573120pt;}
.ls11{letter-spacing:-1.763520pt;}
.ls10{letter-spacing:-1.122240pt;}
.ls1c{letter-spacing:-0.801600pt;}
.ls18{letter-spacing:-0.480960pt;}
.ls12{letter-spacing:-0.374080pt;}
.lsd{letter-spacing:-0.320640pt;}
.lsb{letter-spacing:-0.277760pt;}
.ls8{letter-spacing:-0.160320pt;}
.ls1e{letter-spacing:-0.117120pt;}
.ls5{letter-spacing:-0.106880pt;}
.ls20{letter-spacing:-0.069440pt;}
.ls1d{letter-spacing:-0.058560pt;}
.lsc{letter-spacing:-0.053440pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.053440pt;}
.lsa{letter-spacing:0.069440pt;}
.ls0{letter-spacing:0.106880pt;}
.ls1f{letter-spacing:0.138880pt;}
.ls1{letter-spacing:0.160320pt;}
.ls9{letter-spacing:0.175680pt;}
.lse{letter-spacing:0.480960pt;}
.ls15{letter-spacing:2.351360pt;}
.lsf{letter-spacing:2.672000pt;}
.ls3{letter-spacing:5.237120pt;}
.ls17{letter-spacing:8.122880pt;}
.ls13{letter-spacing:9.405440pt;}
.ls14{letter-spacing:19.665920pt;}
.ls2{letter-spacing:23.192960pt;}
.ls4{letter-spacing:25.116800pt;}
.ls19{letter-spacing:26.720000pt;}
.ls16{letter-spacing:55.203520pt;}
.ls1a{letter-spacing:754.626240pt;}
.wsc{word-spacing:-36.313920pt;}
.ws5{word-spacing:-18.748800pt;}
.ws1b{word-spacing:-18.679360pt;}
.ws6{word-spacing:-18.471040pt;}
.ws18{word-spacing:-14.535680pt;}
.ws1d{word-spacing:-14.375360pt;}
.ws1c{word-spacing:-14.321920pt;}
.ws1a{word-spacing:-14.171520pt;}
.wsa{word-spacing:-13.146240pt;}
.ws7{word-spacing:-13.092800pt;}
.ws13{word-spacing:-13.039360pt;}
.ws4{word-spacing:-12.985920pt;}
.ws9{word-spacing:-12.932480pt;}
.wsb{word-spacing:-12.879040pt;}
.ws8{word-spacing:-12.665280pt;}
.ws3{word-spacing:-10.901760pt;}
.ws22{word-spacing:-0.277760pt;}
.wse{word-spacing:-0.175680pt;}
.ws11{word-spacing:-0.160320pt;}
.ws23{word-spacing:-0.138880pt;}
.ws0{word-spacing:-0.106880pt;}
.wsf{word-spacing:-0.069440pt;}
.ws20{word-spacing:-0.058560pt;}
.ws2{word-spacing:-0.053440pt;}
.wsd{word-spacing:0.000000pt;}
.ws12{word-spacing:0.053440pt;}
.ws1{word-spacing:0.106880pt;}
.ws21{word-spacing:0.117120pt;}
.ws10{word-spacing:0.160320pt;}
.ws14{word-spacing:0.320640pt;}
.ws17{word-spacing:0.374080pt;}
.ws19{word-spacing:0.480960pt;}
.ws1f{word-spacing:0.801600pt;}
.ws15{word-spacing:1.122240pt;}
.ws16{word-spacing:1.763520pt;}
.ws24{word-spacing:2.458240pt;}
.ws1e{word-spacing:6.573120pt;}
._2e{margin-left:-6.538528pt;}
._2f{margin-left:-5.215456pt;}
._25{margin-left:-3.627168pt;}
._10{margin-left:-2.475680pt;}
._3{margin-left:-1.238400pt;}
._0{width:0.935200pt;}
._5{width:1.998656pt;}
._1e{width:2.920352pt;}
._e{width:3.831648pt;}
._d{width:4.852352pt;}
._a{width:6.193696pt;}
._11{width:7.342656pt;}
._8{width:8.502304pt;}
._7{width:9.426816pt;}
._9{width:10.581120pt;}
._15{width:12.050720pt;}
._4{width:14.209696pt;}
._f{width:15.230400pt;}
._12{width:16.374016pt;}
._17{width:17.469536pt;}
._1f{width:18.745344pt;}
._18{width:20.098784pt;}
._6{width:21.162240pt;}
._1b{width:22.140192pt;}
._c{width:23.070048pt;}
._b{width:24.197632pt;}
._16{width:25.405376pt;}
._24{width:26.297824pt;}
._20{width:27.665888pt;}
._22{width:28.996544pt;}
._1d{width:29.926400pt;}
._27{width:31.545632pt;}
._2a{width:33.576352pt;}
._30{width:35.313152pt;}
._29{width:36.617088pt;}
._2b{width:38.621088pt;}
._2c{width:39.588352pt;}
._1c{width:40.806784pt;}
._23{width:42.329824pt;}
._19{width:54.930976pt;}
._26{width:56.587616pt;}
._14{width:65.688448pt;}
._13{width:66.618304pt;}
._28{width:100.237408pt;}
._1{width:252.637600pt;}
._2d{width:765.955520pt;}
._1a{width:767.238080pt;}
._21{width:768.841280pt;}
._2{width:773.650880pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:69.440000pt;}
.fs3{font-size:149.440000pt;}
.fs4{font-size:253.440000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:5.040000pt;}
.y37{bottom:84.364080pt;}
.y90{bottom:97.031840pt;}
.ye8{bottom:97.131600pt;}
.yc6{bottom:97.285680pt;}
.y36{bottom:102.039360pt;}
.y5a{bottom:102.199680pt;}
.y8f{bottom:114.707120pt;}
.ye7{bottom:114.806880pt;}
.yc5{bottom:114.960960pt;}
.y11d{bottom:115.060720pt;}
.y35{bottom:119.714640pt;}
.y59{bottom:119.874960pt;}
.y8e{bottom:132.382400pt;}
.ye6{bottom:132.482160pt;}
.yc4{bottom:132.636240pt;}
.y11c{bottom:132.736000pt;}
.y34{bottom:137.389920pt;}
.y58{bottom:137.550240pt;}
.y8d{bottom:150.057680pt;}
.ye5{bottom:150.157440pt;}
.yc3{bottom:150.311520pt;}
.y11b{bottom:150.411280pt;}
.y33{bottom:155.065200pt;}
.y57{bottom:155.225520pt;}
.y8c{bottom:167.652800pt;}
.ye4{bottom:167.752560pt;}
.yc2{bottom:167.906640pt;}
.y11a{bottom:168.006400pt;}
.y32{bottom:172.660320pt;}
.y56{bottom:172.820640pt;}
.y8b{bottom:185.328080pt;}
.ye3{bottom:185.427840pt;}
.yc1{bottom:185.581920pt;}
.y119{bottom:185.681680pt;}
.y31{bottom:190.335600pt;}
.y55{bottom:190.495920pt;}
.y8a{bottom:203.003360pt;}
.ye2{bottom:203.103120pt;}
.yc0{bottom:203.257200pt;}
.y118{bottom:203.356960pt;}
.y30{bottom:208.010880pt;}
.y54{bottom:208.171200pt;}
.y89{bottom:220.678640pt;}
.ye1{bottom:220.778400pt;}
.ybf{bottom:220.932480pt;}
.y117{bottom:221.032240pt;}
.y2f{bottom:225.686160pt;}
.y53{bottom:225.846480pt;}
.y88{bottom:238.353920pt;}
.ye0{bottom:238.453680pt;}
.ybe{bottom:238.607760pt;}
.y116{bottom:238.707520pt;}
.y2e{bottom:243.361440pt;}
.y52{bottom:243.521760pt;}
.y87{bottom:256.029200pt;}
.ydf{bottom:256.128960pt;}
.ybd{bottom:256.283040pt;}
.y115{bottom:256.382800pt;}
.y2d{bottom:261.036720pt;}
.y51{bottom:261.197040pt;}
.y86{bottom:273.624320pt;}
.yde{bottom:273.724080pt;}
.ybc{bottom:273.878160pt;}
.y114{bottom:273.977920pt;}
.y2c{bottom:278.631840pt;}
.y50{bottom:278.792160pt;}
.y85{bottom:291.299600pt;}
.ydd{bottom:291.399360pt;}
.ybb{bottom:291.553440pt;}
.y113{bottom:291.653200pt;}
.y2b{bottom:296.307120pt;}
.y4f{bottom:296.467440pt;}
.y84{bottom:308.974880pt;}
.ydc{bottom:309.074640pt;}
.yba{bottom:309.228720pt;}
.y112{bottom:309.328480pt;}
.y2a{bottom:313.982400pt;}
.y4e{bottom:314.142720pt;}
.y83{bottom:326.650160pt;}
.ydb{bottom:326.749920pt;}
.yb9{bottom:326.904000pt;}
.y111{bottom:327.003760pt;}
.y29{bottom:331.657680pt;}
.y4d{bottom:331.818000pt;}
.y82{bottom:344.325440pt;}
.yda{bottom:344.425200pt;}
.yb8{bottom:344.579280pt;}
.y110{bottom:344.679040pt;}
.y28{bottom:349.332960pt;}
.y4c{bottom:349.493280pt;}
.y143{bottom:358.353200pt;}
.y81{bottom:362.000720pt;}
.yd9{bottom:362.100480pt;}
.yb7{bottom:362.254560pt;}
.y10f{bottom:362.354320pt;}
.y27{bottom:367.008240pt;}
.y4b{bottom:367.168560pt;}
.y142{bottom:376.028480pt;}
.y80{bottom:379.595840pt;}
.yd8{bottom:379.695600pt;}
.yb6{bottom:379.849680pt;}
.y10e{bottom:379.949440pt;}
.y26{bottom:384.603360pt;}
.y4a{bottom:384.763680pt;}
.y141{bottom:393.703760pt;}
.y7f{bottom:397.271120pt;}
.yd7{bottom:397.370880pt;}
.yb5{bottom:397.524960pt;}
.y10d{bottom:397.624720pt;}
.y25{bottom:402.278640pt;}
.y49{bottom:402.438960pt;}
.y140{bottom:411.379040pt;}
.y7e{bottom:414.946400pt;}
.yd6{bottom:415.046160pt;}
.yb4{bottom:415.200240pt;}
.y10c{bottom:415.300000pt;}
.y24{bottom:419.953920pt;}
.y48{bottom:420.114240pt;}
.y13f{bottom:429.054320pt;}
.y7d{bottom:432.621680pt;}
.yd5{bottom:432.721440pt;}
.yb3{bottom:432.875520pt;}
.y10b{bottom:432.975280pt;}
.y23{bottom:437.629200pt;}
.y47{bottom:437.789520pt;}
.y13e{bottom:446.729600pt;}
.y7c{bottom:450.296960pt;}
.yd4{bottom:450.396720pt;}
.yb2{bottom:450.550800pt;}
.y10a{bottom:450.650560pt;}
.y22{bottom:455.304480pt;}
.y46{bottom:455.464800pt;}
.y13d{bottom:464.324720pt;}
.y7b{bottom:467.972240pt;}
.yd3{bottom:468.072000pt;}
.yb1{bottom:468.226080pt;}
.y109{bottom:468.325840pt;}
.y21{bottom:472.979760pt;}
.y45{bottom:473.140080pt;}
.y13c{bottom:482.000000pt;}
.y7a{bottom:485.567360pt;}
.yd2{bottom:485.667120pt;}
.yb0{bottom:485.821200pt;}
.y108{bottom:485.920960pt;}
.y20{bottom:490.574880pt;}
.y44{bottom:490.735200pt;}
.y13b{bottom:500.792720pt;}
.y79{bottom:503.242640pt;}
.yd1{bottom:503.342400pt;}
.yaf{bottom:503.496480pt;}
.y107{bottom:503.596240pt;}
.y1f{bottom:508.250160pt;}
.y43{bottom:508.410480pt;}
.y78{bottom:520.917920pt;}
.yd0{bottom:521.017680pt;}
.yae{bottom:521.171760pt;}
.y106{bottom:521.271520pt;}
.y13a{bottom:523.760000pt;}
.y1e{bottom:525.925440pt;}
.y42{bottom:526.085760pt;}
.y77{bottom:538.593200pt;}
.ycf{bottom:538.692960pt;}
.yad{bottom:538.847040pt;}
.y105{bottom:538.946800pt;}
.y1d{bottom:543.600720pt;}
.y41{bottom:543.761040pt;}
.y139{bottom:545.910400pt;}
.y76{bottom:556.268480pt;}
.yce{bottom:556.368240pt;}
.yac{bottom:556.522320pt;}
.y104{bottom:556.622080pt;}
.y1c{bottom:561.276000pt;}
.y40{bottom:561.436320pt;}
.y138{bottom:565.352320pt;}
.y75{bottom:573.943760pt;}
.ycd{bottom:574.043520pt;}
.yab{bottom:574.197600pt;}
.y103{bottom:574.297360pt;}
.y1b{bottom:578.951280pt;}
.y3f{bottom:579.111600pt;}
.y137{bottom:584.794240pt;}
.y74{bottom:591.538880pt;}
.ycc{bottom:591.638640pt;}
.yaa{bottom:591.792720pt;}
.y102{bottom:591.892480pt;}
.y1a{bottom:596.546400pt;}
.y3e{bottom:596.706720pt;}
.y136{bottom:604.236160pt;}
.y73{bottom:609.214160pt;}
.ycb{bottom:609.313920pt;}
.ya9{bottom:609.468000pt;}
.y101{bottom:609.567760pt;}
.y19{bottom:614.221680pt;}
.y3d{bottom:614.382000pt;}
.y135{bottom:623.678080pt;}
.y72{bottom:626.889440pt;}
.yca{bottom:626.989200pt;}
.ya8{bottom:627.143280pt;}
.y100{bottom:627.243040pt;}
.y18{bottom:631.896960pt;}
.y3c{bottom:632.057280pt;}
.y134{bottom:643.120000pt;}
.y71{bottom:644.564720pt;}
.yc9{bottom:644.664480pt;}
.ya7{bottom:644.818560pt;}
.yff{bottom:644.918320pt;}
.y17{bottom:649.572240pt;}
.y3b{bottom:649.732560pt;}
.y70{bottom:662.240000pt;}
.yc8{bottom:662.339760pt;}
.y133{bottom:662.433280pt;}
.ya6{bottom:662.493840pt;}
.yfe{bottom:662.593600pt;}
.y16{bottom:667.247520pt;}
.y3a{bottom:667.407840pt;}
.y6f{bottom:679.920000pt;}
.yc7{bottom:680.015040pt;}
.y132{bottom:680.108560pt;}
.ya5{bottom:680.169120pt;}
.yfd{bottom:680.268880pt;}
.y5b{bottom:681.040000pt;}
.y15{bottom:684.922800pt;}
.y39{bottom:685.083120pt;}
.y6e{bottom:697.610160pt;}
.y131{bottom:697.703680pt;}
.ya4{bottom:697.764240pt;}
.yfc{bottom:697.864000pt;}
.y14{bottom:702.517920pt;}
.y38{bottom:702.678240pt;}
.y6d{bottom:715.285440pt;}
.y130{bottom:715.378960pt;}
.ya3{bottom:715.439520pt;}
.yfb{bottom:715.539280pt;}
.y13{bottom:720.193200pt;}
.y6c{bottom:732.960720pt;}
.y12f{bottom:733.054240pt;}
.ya2{bottom:733.114800pt;}
.yfa{bottom:733.214560pt;}
.y12{bottom:737.868480pt;}
.y6b{bottom:750.636000pt;}
.y12e{bottom:750.729520pt;}
.ya1{bottom:750.790080pt;}
.yf9{bottom:750.889840pt;}
.y11{bottom:755.543760pt;}
.y6a{bottom:768.311280pt;}
.y12d{bottom:768.404800pt;}
.ya0{bottom:768.465360pt;}
.yf8{bottom:768.565120pt;}
.y10{bottom:773.219040pt;}
.y69{bottom:785.986560pt;}
.y12c{bottom:786.080080pt;}
.y9f{bottom:786.140640pt;}
.yf7{bottom:786.240400pt;}
.yf{bottom:790.894320pt;}
.y68{bottom:803.581680pt;}
.y12b{bottom:803.675200pt;}
.y9e{bottom:803.735760pt;}
.yf6{bottom:803.835520pt;}
.ye{bottom:808.489440pt;}
.y67{bottom:821.256960pt;}
.y12a{bottom:821.350480pt;}
.y9d{bottom:821.411040pt;}
.yf5{bottom:821.510800pt;}
.yd{bottom:826.164720pt;}
.y66{bottom:838.932240pt;}
.y129{bottom:839.025760pt;}
.y9c{bottom:839.086320pt;}
.yf4{bottom:839.186080pt;}
.yc{bottom:843.840000pt;}
.y65{bottom:856.607520pt;}
.y128{bottom:856.701040pt;}
.y9b{bottom:856.761600pt;}
.yf3{bottom:856.861360pt;}
.yb{bottom:862.632720pt;}
.y64{bottom:874.282800pt;}
.y127{bottom:874.376320pt;}
.y9a{bottom:874.436880pt;}
.yf2{bottom:874.536640pt;}
.ya{bottom:885.600000pt;}
.y63{bottom:891.958080pt;}
.y126{bottom:892.051600pt;}
.y99{bottom:892.112160pt;}
.yf1{bottom:892.211920pt;}
.y9{bottom:907.756160pt;}
.y62{bottom:909.553200pt;}
.y125{bottom:909.646720pt;}
.y98{bottom:909.707280pt;}
.yf0{bottom:909.807040pt;}
.y8{bottom:927.198080pt;}
.y61{bottom:927.228480pt;}
.y124{bottom:927.322000pt;}
.y97{bottom:927.382560pt;}
.yef{bottom:927.482320pt;}
.y60{bottom:944.903760pt;}
.y123{bottom:944.997280pt;}
.y96{bottom:945.057840pt;}
.yee{bottom:945.157600pt;}
.y7{bottom:946.640000pt;}
.y5f{bottom:962.579040pt;}
.y122{bottom:962.672560pt;}
.y95{bottom:962.733120pt;}
.yed{bottom:962.832880pt;}
.y6{bottom:965.760000pt;}
.y5e{bottom:980.254320pt;}
.y121{bottom:980.347840pt;}
.y94{bottom:980.408400pt;}
.yec{bottom:980.508160pt;}
.y4{bottom:983.600000pt;}
.y5{bottom:992.640000pt;}
.y5d{bottom:997.929600pt;}
.y120{bottom:998.023120pt;}
.y93{bottom:998.083680pt;}
.yeb{bottom:998.183440pt;}
.y3{bottom:1015.524720pt;}
.y11f{bottom:1015.618240pt;}
.y92{bottom:1015.678800pt;}
.yea{bottom:1015.778560pt;}
.y2{bottom:1033.200000pt;}
.y11e{bottom:1033.293520pt;}
.y91{bottom:1033.354080pt;}
.ye9{bottom:1033.453840pt;}
.y1{bottom:1061.280000pt;}
.h4{height:28.080000pt;}
.ha{height:35.280000pt;}
.h2{height:37.522812pt;}
.h9{height:40.186880pt;}
.hd{height:44.037120pt;}
.h8{height:44.568960pt;}
.h3{height:47.087765pt;}
.hc{height:47.857301pt;}
.h5{height:51.599168pt;}
.he{height:52.218880pt;}
.h6{height:52.442432pt;}
.h7{height:62.185835pt;}
.hb{height:207.314432pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3{width:27.600000pt;}
.w2{width:44.720000pt;}
.w0{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:37.520000pt;}
.x1{left:75.600000pt;}
.xa{left:94.556560pt;}
.xb{left:103.200480pt;}
.x7{left:119.037920pt;}
.x8{left:133.920000pt;}
.x11{left:181.600000pt;}
.x10{left:185.683360pt;}
.x12{left:214.080560pt;}
.x9{left:223.115680pt;}
.x6{left:265.760000pt;}
.xf{left:270.156160pt;}
.x3{left:289.920000pt;}
.x5{left:341.840000pt;}
.x2{left:396.880000pt;}
.xc{left:420.914640pt;}
.xd{left:439.872480pt;}
.xe{left:530.508000pt;}
}




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