
    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_b0a06e4ec1e6bca8974e1b44.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_804c3ba21d189e5ede2f1918.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_e96d3b0c6e0fddf37c984aeb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.237305;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_c56732be031f548c4e162a74.woff')format("woff");}.ff4{font-family:ff4;line-height:1.099609;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_a51ef96727eb1fadda812b5b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.904785;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_9e2f57c8c01f0d39c748d557.woff')format("woff");}.ff6{font-family:ff6;line-height:1.237305;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_78ad9d4cddb170ea69f6a6cc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105957;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_3bd7bdbbcc383366f3c0b8a5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_bf375108560f6ca9f2d555e1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.120117;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_35e07e4652ea4c615d1e08bb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.082520;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);}
.v3{vertical-align:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.008200px;}
.ls1a{letter-spacing:-3.381000px;}
.lsb{letter-spacing:-2.916000px;}
.ls1b{letter-spacing:-2.760000px;}
.ls1d{letter-spacing:-2.079000px;}
.ls13{letter-spacing:-2.001000px;}
.ls19{letter-spacing:-1.518000px;}
.ls9{letter-spacing:-1.296000px;}
.ls17{letter-spacing:-1.104000px;}
.lsd{letter-spacing:-0.900000px;}
.ls4{letter-spacing:-0.693000px;}
.lsc{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.345000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000300px;}
.lsa{letter-spacing:0.108000px;}
.ls8{letter-spacing:1.260000px;}
.lse{letter-spacing:2.400000px;}
.ls11{letter-spacing:3.196800px;}
.lsf{letter-spacing:4.457400px;}
.ls16{letter-spacing:5.175000px;}
.ls3{letter-spacing:5.460000px;}
.ls1{letter-spacing:5.850000px;}
.ls2{letter-spacing:6.000000px;}
.ls1c{letter-spacing:6.300000px;}
.ls5{letter-spacing:7.260000px;}
.ls10{letter-spacing:8.160156px;}
.ls15{letter-spacing:8.160756px;}
.ls6{letter-spacing:8.400000px;}
.ls12{letter-spacing:8.753400px;}
.ls14{letter-spacing:10.260000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-26.925000px;}
.ws13{word-spacing:-26.250000px;}
.ws2{word-spacing:-23.760000px;}
.ws14{word-spacing:-19.389000px;}
.ws22{word-spacing:-17.703000px;}
.ws1{word-spacing:-17.262000px;}
.wsf{word-spacing:-17.043000px;}
.ws16{word-spacing:-16.698000px;}
.ws15{word-spacing:-15.939000px;}
.ws21{word-spacing:-15.561000px;}
.ws17{word-spacing:-15.525000px;}
.ws19{word-spacing:-15.174000px;}
.ws10{word-spacing:-15.042000px;}
.ws24{word-spacing:-14.820000px;}
.ws11{word-spacing:-13.338000px;}
.ws3{word-spacing:-11.303787px;}
.ws12{word-spacing:-10.260000px;}
.ws7{word-spacing:-8.400000px;}
.ws6{word-spacing:-7.260000px;}
.ws23{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.ws1c{word-spacing:-3.381000px;}
.wse{word-spacing:-2.400000px;}
.ws9{word-spacing:-1.260000px;}
.ws1f{word-spacing:-1.173000px;}
.wsb{word-spacing:-0.108000px;}
.ws8{word-spacing:0.000000px;}
.wsc{word-spacing:0.360000px;}
.ws5{word-spacing:0.693000px;}
.wsd{word-spacing:0.900000px;}
.wsa{word-spacing:1.296000px;}
.ws1e{word-spacing:1.794000px;}
.ws25{word-spacing:2.079000px;}
.ws18{word-spacing:2.346000px;}
.ws20{word-spacing:2.967000px;}
.ws1b{word-spacing:3.381000px;}
.ws1a{word-spacing:8.211000px;}
.ws1d{word-spacing:25.116000px;}
._19{margin-left:-10.242000px;}
._8{margin-left:-9.082200px;}
._15{margin-left:-7.456500px;}
._b{margin-left:-5.835300px;}
._c{margin-left:-4.789200px;}
._6{margin-left:-3.786300px;}
._7{margin-left:-2.193600px;}
._5{margin-left:-1.171200px;}
._0{width:1.650000px;}
._a{width:2.685600px;}
._4{width:3.963300px;}
._3{width:5.748000px;}
._2{width:6.780000px;}
._9{width:8.400000px;}
._d{width:9.721500px;}
._10{width:11.439600px;}
._e{width:12.957300px;}
._f{width:14.098500px;}
._20{width:15.225900px;}
._1d{width:16.236900px;}
._17{width:18.636900px;}
._14{width:21.693000px;}
._21{width:22.932180px;}
._1c{width:25.109100px;}
._18{width:27.704160px;}
._1f{width:32.255100px;}
._1e{width:38.700900px;}
._11{width:43.445160px;}
._1{width:450.510000px;}
._1b{width:453.171600px;}
._12{width:578.400000px;}
._16{width:939.278400px;}
._13{width:946.448400px;}
._1a{width:948.428400px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fs7{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yd7{bottom:106.281300px;}
.y8b{bottom:106.287300px;}
.y6b{bottom:106.290300px;}
.y1e{bottom:106.290450px;}
.y48{bottom:106.293300px;}
.y117{bottom:106.370550px;}
.yb1{bottom:109.294950px;}
.yd6{bottom:123.534300px;}
.y8a{bottom:123.540300px;}
.y6a{bottom:123.543300px;}
.y1d{bottom:123.543450px;}
.y47{bottom:123.546300px;}
.y116{bottom:127.507050px;}
.yb0{bottom:127.798500px;}
.yd5{bottom:140.787300px;}
.y89{bottom:140.793300px;}
.y69{bottom:140.796300px;}
.y1c{bottom:140.796450px;}
.y46{bottom:143.794800px;}
.yaf{bottom:148.047000px;}
.y115{bottom:157.148550px;}
.yd4{bottom:158.040300px;}
.y88{bottom:158.046300px;}
.y68{bottom:161.044800px;}
.y1b{bottom:161.044950px;}
.y45{bottom:165.296700px;}
.yae{bottom:166.550700px;}
.yd3{bottom:175.293300px;}
.y114{bottom:178.285050px;}
.y87{bottom:178.294800px;}
.yf9{bottom:179.542200px;}
.y1a{bottom:179.542500px;}
.y67{bottom:179.548200px;}
.y44{bottom:183.800250px;}
.yad{bottom:186.799200px;}
.yd2{bottom:192.546300px;}
.yf8{bottom:196.795200px;}
.y19{bottom:196.795500px;}
.y66{bottom:199.796700px;}
.y43{bottom:204.048750px;}
.yac{bottom:205.296750px;}
.y113{bottom:207.926550px;}
.yd1{bottom:212.794800px;}
.yf7{bottom:214.048200px;}
.y18{bottom:214.048500px;}
.y86{bottom:218.297250px;}
.y42{bottom:222.537150px;}
.yab{bottom:222.549750px;}
.y112{bottom:229.063050px;}
.yd0{bottom:231.298200px;}
.yf6{bottom:234.296700px;}
.y17{bottom:234.297000px;}
.y85{bottom:235.550250px;}
.y41{bottom:239.790150px;}
.yaa{bottom:239.802750px;}
.y65{bottom:243.836700px;}
.ycf{bottom:251.546700px;}
.y84{bottom:255.798750px;}
.y40{bottom:257.043150px;}
.y111{bottom:258.704550px;}
.ya9{bottom:260.051250px;}
.y64{bottom:266.554950px;}
.yce{bottom:270.050250px;}
.y3f{bottom:274.296150px;}
.yf5{bottom:278.228400px;}
.y16{bottom:278.307600px;}
.y110{bottom:288.346050px;}
.y63{bottom:289.273200px;}
.ycd{bottom:290.298750px;}
.y3e{bottom:291.549150px;}
.yf4{bottom:299.049150px;}
.y15{bottom:300.571200px;}
.ya8{bottom:304.006050px;}
.y3d{bottom:308.802150px;}
.y10f{bottom:309.482550px;}
.y62{bottom:311.991450px;}
.yf3{bottom:319.869900px;}
.y14{bottom:322.858200px;}
.ya7{bottom:324.654300px;}
.y3c{bottom:329.050650px;}
.y10e{bottom:330.619050px;}
.ycc{bottom:334.398600px;}
.y61{bottom:334.709700px;}
.yf2{bottom:340.690650px;}
.y13{bottom:345.145200px;}
.ya6{bottom:345.302550px;}
.ycb{bottom:355.443600px;}
.y60{bottom:357.427950px;}
.y10d{bottom:360.260550px;}
.yf1{bottom:361.511400px;}
.ya5{bottom:365.950800px;}
.y12{bottom:367.424400px;}
.y3b{bottom:373.063650px;}
.y83{bottom:373.079550px;}
.yca{bottom:376.488600px;}
.y5f{bottom:380.146200px;}
.y10c{bottom:381.397050px;}
.yf0{bottom:382.332150px;}
.ya4{bottom:386.599050px;}
.y11{bottom:389.711400px;}
.y3a{bottom:393.435900px;}
.y82{bottom:395.142300px;}
.yc9{bottom:397.533600px;}
.y10b{bottom:402.533550px;}
.y5e{bottom:402.864450px;}
.yef{bottom:403.152900px;}
.ya3{bottom:407.247300px;}
.y39{bottom:413.808150px;}
.y81{bottom:417.231300px;}
.yc8{bottom:418.578600px;}
.yee{bottom:423.973650px;}
.y5d{bottom:425.582700px;}
.ya2{bottom:427.895550px;}
.y10a{bottom:432.175050px;}
.y38{bottom:434.164500px;}
.y80{bottom:439.294050px;}
.yc7{bottom:439.623600px;}
.y10{bottom:441.762900px;}
.yed{bottom:444.794400px;}
.y5c{bottom:448.300950px;}
.ya1{bottom:448.543800px;}
.y37{bottom:454.536750px;}
.yc6{bottom:460.668600px;}
.y7f{bottom:461.356800px;}
.y109{bottom:461.816550px;}
.yf{bottom:464.787900px;}
.yec{bottom:465.615150px;}
.ya0{bottom:469.192050px;}
.y5b{bottom:471.019200px;}
.y36{bottom:474.909000px;}
.yc5{bottom:481.713600px;}
.y108{bottom:482.953050px;}
.y7e{bottom:483.419550px;}
.yeb{bottom:486.435900px;}
.ye{bottom:487.812900px;}
.y9f{bottom:489.840300px;}
.y5a{bottom:493.747200px;}
.y35{bottom:495.281250px;}
.yc4{bottom:502.758600px;}
.y7d{bottom:505.482300px;}
.yea{bottom:507.146400px;}
.y9e{bottom:510.488550px;}
.y107{bottom:512.594550px;}
.y34{bottom:515.653500px;}
.y59{bottom:516.465450px;}
.yc3{bottom:523.803600px;}
.y7c{bottom:527.550300px;}
.ye9{bottom:527.967150px;}
.y9d{bottom:531.119550px;}
.y106{bottom:533.731050px;}
.y33{bottom:536.025750px;}
.y58{bottom:539.183700px;}
.yd{bottom:540.586800px;}
.yc2{bottom:544.848600px;}
.ye8{bottom:548.787900px;}
.y7b{bottom:549.697350px;}
.y9c{bottom:551.767800px;}
.y32{bottom:556.398000px;}
.y57{bottom:561.901950px;}
.y105{bottom:563.372550px;}
.yc1{bottom:565.893600px;}
.ye7{bottom:569.608650px;}
.y7a{bottom:571.760100px;}
.y9b{bottom:572.416050px;}
.yc{bottom:574.120800px;}
.y31{bottom:576.770250px;}
.y124{bottom:580.927350px;}
.y56{bottom:584.620200px;}
.yc0{bottom:586.938600px;}
.ye6{bottom:590.429400px;}
.y104{bottom:593.014050px;}
.y9a{bottom:593.035350px;}
.y79{bottom:593.822850px;}
.y30{bottom:597.142500px;}
.y123{bottom:601.177350px;}
.y55{bottom:607.364100px;}
.yb{bottom:607.654800px;}
.ybf{bottom:607.989750px;}
.ye5{bottom:611.250150px;}
.y99{bottom:613.683600px;}
.y103{bottom:614.150550px;}
.y78{bottom:615.885600px;}
.y2f{bottom:617.495100px;}
.y122{bottom:621.427350px;}
.ybe{bottom:629.078700px;}
.y54{bottom:630.082350px;}
.ye4{bottom:632.070900px;}
.y98{bottom:634.331850px;}
.y2e{bottom:637.867350px;}
.y77{bottom:637.948350px;}
.ya{bottom:641.188800px;}
.y121{bottom:641.677350px;}
.y102{bottom:643.792050px;}
.ybd{bottom:650.123700px;}
.y53{bottom:652.800600px;}
.ye3{bottom:652.891650px;}
.y97{bottom:654.980100px;}
.y2d{bottom:658.239600px;}
.y76{bottom:660.011100px;}
.y101{bottom:664.928550px;}
.ybc{bottom:671.168700px;}
.ye2{bottom:673.712400px;}
.y120{bottom:674.677350px;}
.y9{bottom:674.722800px;}
.y52{bottom:675.518850px;}
.y96{bottom:675.628350px;}
.y2c{bottom:678.611850px;}
.y75{bottom:682.073850px;}
.ybb{bottom:692.213700px;}
.ye1{bottom:694.533150px;}
.y100{bottom:694.570050px;}
.y95{bottom:696.218850px;}
.y51{bottom:698.237100px;}
.y2b{bottom:698.984100px;}
.y74{bottom:704.136600px;}
.y8{bottom:708.252000px;}
.yba{bottom:713.258700px;}
.ye0{bottom:715.353900px;}
.yff{bottom:715.706550px;}
.y11f{bottom:716.147850px;}
.y94{bottom:716.867100px;}
.y2a{bottom:719.356350px;}
.y50{bottom:720.955350px;}
.y73{bottom:726.199350px;}
.yb9{bottom:734.303700px;}
.ydf{bottom:736.174650px;}
.y11e{bottom:736.402350px;}
.y93{bottom:737.515350px;}
.y29{bottom:739.728600px;}
.y4f{bottom:743.673600px;}
.yfe{bottom:745.348050px;}
.y72{bottom:748.262100px;}
.yb8{bottom:755.348700px;}
.yde{bottom:756.995400px;}
.y92{bottom:758.163600px;}
.y28{bottom:760.100850px;}
.y11d{bottom:765.161850px;}
.y4e{bottom:766.391850px;}
.y71{bottom:770.324850px;}
.y7{bottom:771.559800px;}
.yb7{bottom:776.431350px;}
.ydd{bottom:777.816150px;}
.y91{bottom:778.811850px;}
.y27{bottom:780.473100px;}
.y11c{bottom:785.416350px;}
.y4d{bottom:789.110100px;}
.y70{bottom:792.387600px;}
.yb6{bottom:797.476350px;}
.ydc{bottom:798.597600px;}
.y90{bottom:799.460100px;}
.y26{bottom:800.845350px;}
.y6{bottom:803.089800px;}
.y11b{bottom:805.670850px;}
.y4c{bottom:811.828350px;}
.y6f{bottom:814.450350px;}
.yfd{bottom:818.159100px;}
.yb5{bottom:818.521350px;}
.ydb{bottom:819.418350px;}
.y8f{bottom:820.108350px;}
.y25{bottom:821.217600px;}
.y5{bottom:826.114800px;}
.y11a{bottom:834.430350px;}
.y4b{bottom:834.546600px;}
.y6e{bottom:836.513100px;}
.yfc{bottom:839.307600px;}
.yb4{bottom:839.566350px;}
.yda{bottom:840.239100px;}
.y8e{bottom:840.756600px;}
.y24{bottom:841.584600px;}
.y119{bottom:854.684850px;}
.y4a{bottom:857.264850px;}
.y4{bottom:857.644800px;}
.y6d{bottom:858.575850px;}
.yfb{bottom:860.438850px;}
.yb3{bottom:860.611350px;}
.yd9{bottom:861.059850px;}
.y8d{bottom:861.404850px;}
.y23{bottom:861.956850px;}
.y49{bottom:879.983100px;}
.y6c{bottom:880.638600px;}
.y3{bottom:880.669800px;}
.yfa{bottom:881.570100px;}
.yb2{bottom:881.656350px;}
.yd8{bottom:881.880600px;}
.y8c{bottom:882.053100px;}
.y22{bottom:882.329100px;}
.y118{bottom:883.444350px;}
.y21{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:948.189000px;}
.y1f{bottom:966.189000px;}
.ha{height:33.870539px;}
.h15{height:34.925227px;}
.h12{height:40.757812px;}
.h13{height:40.936945px;}
.h1f{height:43.466309px;}
.hb{height:45.852539px;}
.hc{height:46.643555px;}
.h1b{height:46.907227px;}
.h4{height:50.947266px;}
.h14{height:52.918945px;}
.h3{height:53.494629px;}
.h8{height:58.589355px;}
.he{height:58.610355px;}
.h11{height:58.652955px;}
.h1a{height:58.658355px;}
.hf{height:58.667955px;}
.h9{height:58.682955px;}
.h1c{height:58.746555px;}
.hd{height:58.798828px;}
.h16{height:58.820355px;}
.h1d{height:59.030355px;}
.h18{height:59.600098px;}
.h17{height:59.715898px;}
.h19{height:59.937012px;}
.h1e{height:61.738770px;}
.h2{height:63.684082px;}
.h10{height:67.618652px;}
.h5{height:71.326172px;}
.h6{height:91.705078px;}
.h7{height:105.837891px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:80.928450px;}
.x7{left:82.483350px;}
.x1{left:83.672550px;}
.x5{left:84.827250px;}
.x4{left:105.613500px;}
.x6{left:106.690800px;}
.x3{left:232.218000px;}
.x2{left:233.415450px;}
@media print{
.v3{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.118400pt;}
.ls1a{letter-spacing:-3.005333pt;}
.lsb{letter-spacing:-2.592000pt;}
.ls1b{letter-spacing:-2.453333pt;}
.ls1d{letter-spacing:-1.848000pt;}
.ls13{letter-spacing:-1.778667pt;}
.ls19{letter-spacing:-1.349333pt;}
.ls9{letter-spacing:-1.152000pt;}
.ls17{letter-spacing:-0.981333pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls4{letter-spacing:-0.616000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.306667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000267pt;}
.lsa{letter-spacing:0.096000pt;}
.ls8{letter-spacing:1.120000pt;}
.lse{letter-spacing:2.133333pt;}
.ls11{letter-spacing:2.841600pt;}
.lsf{letter-spacing:3.962133pt;}
.ls16{letter-spacing:4.600000pt;}
.ls3{letter-spacing:4.853333pt;}
.ls1{letter-spacing:5.200000pt;}
.ls2{letter-spacing:5.333333pt;}
.ls1c{letter-spacing:5.600000pt;}
.ls5{letter-spacing:6.453333pt;}
.ls10{letter-spacing:7.253472pt;}
.ls15{letter-spacing:7.254005pt;}
.ls6{letter-spacing:7.466667pt;}
.ls12{letter-spacing:7.780800pt;}
.ls14{letter-spacing:9.120000pt;}
.ws0{word-spacing:-23.933333pt;}
.ws13{word-spacing:-23.333333pt;}
.ws2{word-spacing:-21.120000pt;}
.ws14{word-spacing:-17.234667pt;}
.ws22{word-spacing:-15.736000pt;}
.ws1{word-spacing:-15.344000pt;}
.wsf{word-spacing:-15.149333pt;}
.ws16{word-spacing:-14.842667pt;}
.ws15{word-spacing:-14.168000pt;}
.ws21{word-spacing:-13.832000pt;}
.ws17{word-spacing:-13.800000pt;}
.ws19{word-spacing:-13.488000pt;}
.ws10{word-spacing:-13.370667pt;}
.ws24{word-spacing:-13.173333pt;}
.ws11{word-spacing:-11.856000pt;}
.ws3{word-spacing:-10.047811pt;}
.ws12{word-spacing:-9.120000pt;}
.ws7{word-spacing:-7.466667pt;}
.ws6{word-spacing:-6.453333pt;}
.ws23{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws1c{word-spacing:-3.005333pt;}
.wse{word-spacing:-2.133333pt;}
.ws9{word-spacing:-1.120000pt;}
.ws1f{word-spacing:-1.042667pt;}
.wsb{word-spacing:-0.096000pt;}
.ws8{word-spacing:0.000000pt;}
.wsc{word-spacing:0.320000pt;}
.ws5{word-spacing:0.616000pt;}
.wsd{word-spacing:0.800000pt;}
.wsa{word-spacing:1.152000pt;}
.ws1e{word-spacing:1.594667pt;}
.ws25{word-spacing:1.848000pt;}
.ws18{word-spacing:2.085333pt;}
.ws20{word-spacing:2.637333pt;}
.ws1b{word-spacing:3.005333pt;}
.ws1a{word-spacing:7.298667pt;}
.ws1d{word-spacing:22.325333pt;}
._19{margin-left:-9.104000pt;}
._8{margin-left:-8.073067pt;}
._15{margin-left:-6.628000pt;}
._b{margin-left:-5.186933pt;}
._c{margin-left:-4.257067pt;}
._6{margin-left:-3.365600pt;}
._7{margin-left:-1.949867pt;}
._5{margin-left:-1.041067pt;}
._0{width:1.466667pt;}
._a{width:2.387200pt;}
._4{width:3.522933pt;}
._3{width:5.109333pt;}
._2{width:6.026667pt;}
._9{width:7.466667pt;}
._d{width:8.641333pt;}
._10{width:10.168533pt;}
._e{width:11.517600pt;}
._f{width:12.532000pt;}
._20{width:13.534133pt;}
._1d{width:14.432800pt;}
._17{width:16.566133pt;}
._14{width:19.282667pt;}
._21{width:20.384160pt;}
._1c{width:22.319200pt;}
._18{width:24.625920pt;}
._1f{width:28.671200pt;}
._1e{width:34.400800pt;}
._11{width:38.617920pt;}
._1{width:400.453333pt;}
._1b{width:402.819200pt;}
._12{width:514.133333pt;}
._16{width:834.914133pt;}
._13{width:841.287467pt;}
._1a{width:843.047467pt;}
.fs8{font-size:27.984000pt;}
.fs7{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yd7{bottom:94.472267pt;}
.y8b{bottom:94.477600pt;}
.y6b{bottom:94.480267pt;}
.y1e{bottom:94.480400pt;}
.y48{bottom:94.482933pt;}
.y117{bottom:94.551600pt;}
.yb1{bottom:97.151067pt;}
.yd6{bottom:109.808267pt;}
.y8a{bottom:109.813600pt;}
.y6a{bottom:109.816267pt;}
.y1d{bottom:109.816400pt;}
.y47{bottom:109.818933pt;}
.y116{bottom:113.339600pt;}
.yb0{bottom:113.598667pt;}
.yd5{bottom:125.144267pt;}
.y89{bottom:125.149600pt;}
.y69{bottom:125.152267pt;}
.y1c{bottom:125.152400pt;}
.y46{bottom:127.817600pt;}
.yaf{bottom:131.597333pt;}
.y115{bottom:139.687600pt;}
.yd4{bottom:140.480267pt;}
.y88{bottom:140.485600pt;}
.y68{bottom:143.150933pt;}
.y1b{bottom:143.151067pt;}
.y45{bottom:146.930400pt;}
.yae{bottom:148.045067pt;}
.yd3{bottom:155.816267pt;}
.y114{bottom:158.475600pt;}
.y87{bottom:158.484267pt;}
.yf9{bottom:159.593067pt;}
.y1a{bottom:159.593333pt;}
.y67{bottom:159.598400pt;}
.y44{bottom:163.378000pt;}
.yad{bottom:166.043733pt;}
.yd2{bottom:171.152267pt;}
.yf8{bottom:174.929067pt;}
.y19{bottom:174.929333pt;}
.y66{bottom:177.597067pt;}
.y43{bottom:181.376667pt;}
.yac{bottom:182.486000pt;}
.y113{bottom:184.823600pt;}
.yd1{bottom:189.150933pt;}
.yf7{bottom:190.265067pt;}
.y18{bottom:190.265333pt;}
.y86{bottom:194.042000pt;}
.y42{bottom:197.810800pt;}
.yab{bottom:197.822000pt;}
.y112{bottom:203.611600pt;}
.yd0{bottom:205.598400pt;}
.yf6{bottom:208.263733pt;}
.y17{bottom:208.264000pt;}
.y85{bottom:209.378000pt;}
.y41{bottom:213.146800pt;}
.yaa{bottom:213.158000pt;}
.y65{bottom:216.743733pt;}
.ycf{bottom:223.597067pt;}
.y84{bottom:227.376667pt;}
.y40{bottom:228.482800pt;}
.y111{bottom:229.959600pt;}
.ya9{bottom:231.156667pt;}
.y64{bottom:236.937733pt;}
.yce{bottom:240.044667pt;}
.y3f{bottom:243.818800pt;}
.yf5{bottom:247.314133pt;}
.y16{bottom:247.384533pt;}
.y110{bottom:256.307600pt;}
.y63{bottom:257.131733pt;}
.ycd{bottom:258.043333pt;}
.y3e{bottom:259.154800pt;}
.yf4{bottom:265.821467pt;}
.y15{bottom:267.174400pt;}
.ya8{bottom:270.227600pt;}
.y3d{bottom:274.490800pt;}
.y10f{bottom:275.095600pt;}
.y62{bottom:277.325733pt;}
.yf3{bottom:284.328800pt;}
.y14{bottom:286.985067pt;}
.ya7{bottom:288.581600pt;}
.y3c{bottom:292.489467pt;}
.y10e{bottom:293.883600pt;}
.ycc{bottom:297.243200pt;}
.y61{bottom:297.519733pt;}
.yf2{bottom:302.836133pt;}
.y13{bottom:306.795733pt;}
.ya6{bottom:306.935600pt;}
.ycb{bottom:315.949867pt;}
.y60{bottom:317.713733pt;}
.y10d{bottom:320.231600pt;}
.yf1{bottom:321.343467pt;}
.ya5{bottom:325.289600pt;}
.y12{bottom:326.599467pt;}
.y3b{bottom:331.612133pt;}
.y83{bottom:331.626267pt;}
.yca{bottom:334.656533pt;}
.y5f{bottom:337.907733pt;}
.y10c{bottom:339.019600pt;}
.yf0{bottom:339.850800pt;}
.ya4{bottom:343.643600pt;}
.y11{bottom:346.410133pt;}
.y3a{bottom:349.720800pt;}
.y82{bottom:351.237600pt;}
.yc9{bottom:353.363200pt;}
.y10b{bottom:357.807600pt;}
.y5e{bottom:358.101733pt;}
.yef{bottom:358.358133pt;}
.ya3{bottom:361.997600pt;}
.y39{bottom:367.829467pt;}
.y81{bottom:370.872267pt;}
.yc8{bottom:372.069867pt;}
.yee{bottom:376.865467pt;}
.y5d{bottom:378.295733pt;}
.ya2{bottom:380.351600pt;}
.y10a{bottom:384.155600pt;}
.y38{bottom:385.924000pt;}
.y80{bottom:390.483600pt;}
.yc7{bottom:390.776533pt;}
.y10{bottom:392.678133pt;}
.yed{bottom:395.372800pt;}
.y5c{bottom:398.489733pt;}
.ya1{bottom:398.705600pt;}
.y37{bottom:404.032667pt;}
.yc6{bottom:409.483200pt;}
.y7f{bottom:410.094933pt;}
.y109{bottom:410.503600pt;}
.yf{bottom:413.144800pt;}
.yec{bottom:413.880133pt;}
.ya0{bottom:417.059600pt;}
.y5b{bottom:418.683733pt;}
.y36{bottom:422.141333pt;}
.yc5{bottom:428.189867pt;}
.y108{bottom:429.291600pt;}
.y7e{bottom:429.706267pt;}
.yeb{bottom:432.387467pt;}
.ye{bottom:433.611467pt;}
.y9f{bottom:435.413600pt;}
.y5a{bottom:438.886400pt;}
.y35{bottom:440.250000pt;}
.yc4{bottom:446.896533pt;}
.y7d{bottom:449.317600pt;}
.yea{bottom:450.796800pt;}
.y9e{bottom:453.767600pt;}
.y107{bottom:455.639600pt;}
.y34{bottom:458.358667pt;}
.y59{bottom:459.080400pt;}
.yc3{bottom:465.603200pt;}
.y7c{bottom:468.933600pt;}
.ye9{bottom:469.304133pt;}
.y9d{bottom:472.106267pt;}
.y106{bottom:474.427600pt;}
.y33{bottom:476.467333pt;}
.y58{bottom:479.274400pt;}
.yd{bottom:480.521600pt;}
.yc2{bottom:484.309867pt;}
.ye8{bottom:487.811467pt;}
.y7b{bottom:488.619867pt;}
.y9c{bottom:490.460267pt;}
.y32{bottom:494.576000pt;}
.y57{bottom:499.468400pt;}
.y105{bottom:500.775600pt;}
.yc1{bottom:503.016533pt;}
.ye7{bottom:506.318800pt;}
.y7a{bottom:508.231200pt;}
.y9b{bottom:508.814267pt;}
.yc{bottom:510.329600pt;}
.y31{bottom:512.684667pt;}
.y124{bottom:516.379867pt;}
.y56{bottom:519.662400pt;}
.yc0{bottom:521.723200pt;}
.ye6{bottom:524.826133pt;}
.y104{bottom:527.123600pt;}
.y9a{bottom:527.142533pt;}
.y79{bottom:527.842533pt;}
.y30{bottom:530.793333pt;}
.y123{bottom:534.379867pt;}
.y55{bottom:539.879200pt;}
.yb{bottom:540.137600pt;}
.ybf{bottom:540.435333pt;}
.ye5{bottom:543.333467pt;}
.y99{bottom:545.496533pt;}
.y103{bottom:545.911600pt;}
.y78{bottom:547.453867pt;}
.y2f{bottom:548.884533pt;}
.y122{bottom:552.379867pt;}
.ybe{bottom:559.181067pt;}
.y54{bottom:560.073200pt;}
.ye4{bottom:561.840800pt;}
.y98{bottom:563.850533pt;}
.y2e{bottom:566.993200pt;}
.y77{bottom:567.065200pt;}
.ya{bottom:569.945600pt;}
.y121{bottom:570.379867pt;}
.y102{bottom:572.259600pt;}
.ybd{bottom:577.887733pt;}
.y53{bottom:580.267200pt;}
.ye3{bottom:580.348133pt;}
.y97{bottom:582.204533pt;}
.y2d{bottom:585.101867pt;}
.y76{bottom:586.676533pt;}
.y101{bottom:591.047600pt;}
.ybc{bottom:596.594400pt;}
.ye2{bottom:598.855467pt;}
.y120{bottom:599.713200pt;}
.y9{bottom:599.753600pt;}
.y52{bottom:600.461200pt;}
.y96{bottom:600.558533pt;}
.y2c{bottom:603.210533pt;}
.y75{bottom:606.287867pt;}
.ybb{bottom:615.301067pt;}
.ye1{bottom:617.362800pt;}
.y100{bottom:617.395600pt;}
.y95{bottom:618.861200pt;}
.y51{bottom:620.655200pt;}
.y2b{bottom:621.319200pt;}
.y74{bottom:625.899200pt;}
.y8{bottom:629.557333pt;}
.yba{bottom:634.007733pt;}
.ye0{bottom:635.870133pt;}
.yff{bottom:636.183600pt;}
.y11f{bottom:636.575867pt;}
.y94{bottom:637.215200pt;}
.y2a{bottom:639.427867pt;}
.y50{bottom:640.849200pt;}
.y73{bottom:645.510533pt;}
.yb9{bottom:652.714400pt;}
.ydf{bottom:654.377467pt;}
.y11e{bottom:654.579867pt;}
.y93{bottom:655.569200pt;}
.y29{bottom:657.536533pt;}
.y4f{bottom:661.043200pt;}
.yfe{bottom:662.531600pt;}
.y72{bottom:665.121867pt;}
.yb8{bottom:671.421067pt;}
.yde{bottom:672.884800pt;}
.y92{bottom:673.923200pt;}
.y28{bottom:675.645200pt;}
.y11d{bottom:680.143867pt;}
.y4e{bottom:681.237200pt;}
.y71{bottom:684.733200pt;}
.y7{bottom:685.830933pt;}
.yb7{bottom:690.161200pt;}
.ydd{bottom:691.392133pt;}
.y91{bottom:692.277200pt;}
.y27{bottom:693.753867pt;}
.y11c{bottom:698.147867pt;}
.y4d{bottom:701.431200pt;}
.y70{bottom:704.344533pt;}
.yb6{bottom:708.867867pt;}
.ydc{bottom:709.864533pt;}
.y90{bottom:710.631200pt;}
.y26{bottom:711.862533pt;}
.y6{bottom:713.857600pt;}
.y11b{bottom:716.151867pt;}
.y4c{bottom:721.625200pt;}
.y6f{bottom:723.955867pt;}
.yfd{bottom:727.252533pt;}
.yb5{bottom:727.574533pt;}
.ydb{bottom:728.371867pt;}
.y8f{bottom:728.985200pt;}
.y25{bottom:729.971200pt;}
.y5{bottom:734.324267pt;}
.y11a{bottom:741.715867pt;}
.y4b{bottom:741.819200pt;}
.y6e{bottom:743.567200pt;}
.yfc{bottom:746.051200pt;}
.yb4{bottom:746.281200pt;}
.yda{bottom:746.879200pt;}
.y8e{bottom:747.339200pt;}
.y24{bottom:748.075200pt;}
.y119{bottom:759.719867pt;}
.y4a{bottom:762.013200pt;}
.y4{bottom:762.350933pt;}
.y6d{bottom:763.178533pt;}
.yfb{bottom:764.834533pt;}
.yb3{bottom:764.987867pt;}
.yd9{bottom:765.386533pt;}
.y8d{bottom:765.693200pt;}
.y23{bottom:766.183867pt;}
.y49{bottom:782.207200pt;}
.y6c{bottom:782.789867pt;}
.y3{bottom:782.817600pt;}
.yfa{bottom:783.617867pt;}
.yb2{bottom:783.694533pt;}
.yd8{bottom:783.893867pt;}
.y8c{bottom:784.047200pt;}
.y22{bottom:784.292533pt;}
.y118{bottom:785.283867pt;}
.y21{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:842.834667pt;}
.y1f{bottom:858.834667pt;}
.ha{height:30.107146pt;}
.h15{height:31.044646pt;}
.h12{height:36.229167pt;}
.h13{height:36.388396pt;}
.h1f{height:38.636719pt;}
.hb{height:40.757812pt;}
.hc{height:41.460938pt;}
.h1b{height:41.695312pt;}
.h4{height:45.286458pt;}
.h14{height:47.039062pt;}
.h3{height:47.550781pt;}
.h8{height:52.079427pt;}
.he{height:52.098094pt;}
.h11{height:52.135960pt;}
.h1a{height:52.140760pt;}
.hf{height:52.149294pt;}
.h9{height:52.162627pt;}
.h1c{height:52.219160pt;}
.hd{height:52.265625pt;}
.h16{height:52.284760pt;}
.h1d{height:52.471427pt;}
.h18{height:52.977865pt;}
.h17{height:53.080798pt;}
.h19{height:53.277344pt;}
.h1e{height:54.878906pt;}
.h2{height:56.608073pt;}
.h10{height:60.105469pt;}
.h5{height:63.401042pt;}
.h6{height:81.515625pt;}
.h7{height:94.078125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:71.936400pt;}
.x7{left:73.318533pt;}
.x1{left:74.375600pt;}
.x5{left:75.402000pt;}
.x4{left:93.878667pt;}
.x6{left:94.836267pt;}
.x3{left:206.416000pt;}
.x2{left:207.480400pt;}
}




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