
    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_4cb81a3661450fee33cd9c1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.158691;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_4c4839a811055bf2a2e89b4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.262000;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_7fcc5b4dd0305902e52431c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.256000;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_b312b7aefc6ff2fcca12610d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.207031;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_e2b5b90ec9daf66aff9fa34e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.237029;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_d031bbcd5a6e46f4d9aadacb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896000;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_4ee817eace0a6c7ea22a90b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.207031;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_dda53571c426e3fb920d1769.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_39f55d027bb2bb4527b38e1f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.917969;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.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.126684px;}
.lsa{letter-spacing:0.195342px;}
.ls9{letter-spacing:0.199977px;}
.ls8{letter-spacing:0.259344px;}
.ls0{letter-spacing:4.288264px;}
.ls2{letter-spacing:4.517192px;}
.ls1{letter-spacing:4.533603px;}
.ls6{letter-spacing:64.292062px;}
.ls7{letter-spacing:91.637272px;}
.ls4{letter-spacing:99.069276px;}
.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;}
}
.ws1d{word-spacing:-192.239923px;}
.ws7{word-spacing:-167.759933px;}
.ws5{word-spacing:-143.999942px;}
.wsa{word-spacing:-123.674468px;}
.ws4{word-spacing:-120.239952px;}
.ws9{word-spacing:-119.356830px;}
.ws10{word-spacing:-108.126641px;}
.ws0{word-spacing:-107.999957px;}
.wsd{word-spacing:-105.684396px;}
.ws1a{word-spacing:-101.736823px;}
.ws1e{word-spacing:-95.759962px;}
.ws1b{word-spacing:-85.049566px;}
.ws12{word-spacing:-84.239966px;}
.ws11{word-spacing:-71.999971px;}
.wse{word-spacing:-70.323524px;}
.wsf{word-spacing:-68.296041px;}
.wsb{word-spacing:-63.227880px;}
.ws8{word-spacing:-62.428839px;}
.ws14{word-spacing:-57.250071px;}
.ws1f{word-spacing:-46.637261px;}
.ws2{word-spacing:-40.031984px;}
.ws1{word-spacing:-30.023988px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:12.835536px;}
.ws6{word-spacing:58.906147px;}
.ws16{word-spacing:145.880141px;}
.ws1c{word-spacing:455.585571px;}
.ws15{word-spacing:494.891966px;}
.ws19{word-spacing:548.639378px;}
.ws17{word-spacing:583.406728px;}
.ws18{word-spacing:948.743837px;}
.ws13{word-spacing:1387.213367px;}
._37{margin-left:-120.297694px;}
._33{margin-left:-115.055924px;}
._41{margin-left:-113.514064px;}
._2f{margin-left:-108.019184px;}
._2d{margin-left:-104.751923px;}
._35{margin-left:-103.026242px;}
._18{margin-left:-100.823432px;}
._5a{margin-left:-99.460747px;}
._3d{margin-left:-97.491257px;}
._3b{margin-left:-93.458174px;}
._31{margin-left:-91.937141px;}
._58{margin-left:-87.348682px;}
._29{margin-left:-85.990582px;}
._11{margin-left:-84.923795px;}
._38{margin-left:-83.848011px;}
._53{margin-left:-82.776969px;}
._23{margin-left:-81.477253px;}
._2e{margin-left:-79.968644px;}
._36{margin-left:-76.370529px;}
._30{margin-left:-74.654426px;}
._12{margin-left:-73.302002px;}
._3c{margin-left:-72.292395px;}
._5{margin-left:-70.875944px;}
._1b{margin-left:-68.441157px;}
._20{margin-left:-67.412104px;}
._3a{margin-left:-64.979030px;}
._39{margin-left:-63.859325px;}
._34{margin-left:-62.553229px;}
._2b{margin-left:-60.821150px;}
._21{margin-left:-59.641439px;}
._59{margin-left:-58.348989px;}
._14{margin-left:-57.285800px;}
._1a{margin-left:-55.602446px;}
._19{margin-left:-54.465674px;}
._22{margin-left:-53.247421px;}
._17{margin-left:-51.772479px;}
._16{margin-left:-50.608635px;}
._2a{margin-left:-48.533113px;}
._42{margin-left:-47.329158px;}
._13{margin-left:-46.121641px;}
._15{margin-left:-44.771587px;}
._3f{margin-left:-43.725822px;}
._26{margin-left:-42.538973px;}
._10{margin-left:-40.814660px;}
._6{margin-left:-39.429596px;}
._25{margin-left:-37.912240px;}
._24{margin-left:-36.663954px;}
._28{margin-left:-35.580504px;}
._d{margin-left:-33.672659px;}
._4e{margin-left:-31.715274px;}
._8{margin-left:-30.172272px;}
._7{margin-left:-28.547737px;}
._43{margin-left:-27.306205px;}
._c{margin-left:-26.195066px;}
._2{margin-left:-25.097462px;}
._9{margin-left:-23.999858px;}
._a{margin-left:-22.219047px;}
._0{margin-left:-20.207980px;}
._56{margin-left:-19.091597px;}
._4{margin-left:-17.901425px;}
._1{margin-left:-16.609961px;}
._b{margin-left:-15.170754px;}
._27{margin-left:-13.917974px;}
._44{margin-left:-12.851383px;}
._e{margin-left:-1.156572px;}
._3{width:1.245348px;}
._52{width:2.366082px;}
._f{width:3.601628px;}
._51{width:4.971682px;}
._1e{width:8.775593px;}
._1f{width:10.164708px;}
._4a{width:12.168764px;}
._40{width:13.953556px;}
._4f{width:15.109857px;}
._50{width:16.679856px;}
._57{width:18.104172px;}
._54{width:21.244145px;}
._55{width:22.586292px;}
._49{width:26.173877px;}
._47{width:27.305213px;}
._4b{width:44.964091px;}
._32{width:49.933699px;}
._4d{width:54.344573px;}
._4c{width:56.047656px;}
._1d{width:68.826431px;}
._1c{width:70.054545px;}
._3e{width:120.376369px;}
._2c{width:148.653427px;}
._45{width:572.011629px;}
._46{width:713.612968px;}
._48{width:1059.458151px;}
.fc6{color:rgb(217,226,237);}
.fc7{color:rgb(214,159,6);}
.fc5{color:rgb(232,238,242);}
.fc4{color:rgb(255,255,0);}
.fc3{color:rgb(255,50,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,101,101);}
.fs8{font-size:66.239974px;}
.fs7{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.fs4{font-size:89.999964px;}
.fsa{font-size:95.759962px;}
.fs0{font-size:107.999957px;}
.fs3{font-size:120.239952px;}
.fs5{font-size:125.999950px;}
.fs1{font-size:143.999942px;}
.fs6{font-size:167.759933px;}
.fs9{font-size:192.239923px;}
.y0{bottom:0.000000px;}
.y23{bottom:49.020337px;}
.y3{bottom:57.480154px;}
.yfb{bottom:60.360333px;}
.yb4{bottom:61.260332px;}
.yb8{bottom:64.320331px;}
.y52{bottom:67.380330px;}
.y70{bottom:69.360329px;}
.yc7{bottom:81.061307px;}
.yd2{bottom:84.121306px;}
.ye6{bottom:92.220270px;}
.y17{bottom:96.360318px;}
.y1a{bottom:99.420317px;}
.y91{bottom:99.601300px;}
.yed{bottom:100.680052px;}
.y9c{bottom:102.661299px;}
.yb3{bottom:104.460315px;}
.yfa{bottom:104.820315px;}
.y2{bottom:106.260224px;}
.yb7{bottom:107.520314px;}
.y7d{bottom:108.601008px;}
.y6f{bottom:109.860313px;}
.y86{bottom:111.661007px;}
.yf7{bottom:112.380406px;}
.yc6{bottom:117.061149px;}
.y34{bottom:117.420310px;}
.yd1{bottom:120.121148px;}
.y3d{bottom:120.480309px;}
.y51{bottom:123.360308px;}
.y90{bottom:135.601142px;}
.yec{bottom:136.679894px;}
.y9b{bottom:138.661140px;}
.y16{bottom:139.560301px;}
.y19{bottom:142.620300px;}
.y7c{bottom:144.600850px;}
.y6e{bottom:145.860299px;}
.ye5{bottom:146.220333px;}
.yb2{bottom:147.660298px;}
.y85{bottom:147.660849px;}
.yb6{bottom:150.720297px;}
.yc5{bottom:153.060991px;}
.y33{bottom:153.420296px;}
.ya2{bottom:153.600702px;}
.y1{bottom:155.040295px;}
.yd0{bottom:156.120989px;}
.y3c{bottom:156.480294px;}
.ya8{bottom:156.660701px;}
.y62{bottom:162.600292px;}
.yf6{bottom:166.380469px;}
.y8f{bottom:171.600983px;}
.y9a{bottom:174.660982px;}
.yfd{bottom:177.180196px;}
.y50{bottom:179.520285px;}
.y6d{bottom:181.860284px;}
.yd7{bottom:182.040560px;}
.ye4{bottom:182.220174px;}
.ydc{bottom:185.100558px;}
.yc4{bottom:189.060832px;}
.y32{bottom:189.420281px;}
.ya1{bottom:189.600544px;}
.yeb{bottom:190.679957px;}
.ycf{bottom:192.120831px;}
.y3b{bottom:192.480280px;}
.ya7{bottom:192.660543px;}
.y61{bottom:201.480276px;}
.yf5{bottom:202.380310px;}
.yf{bottom:202.560186px;}
.y44{bottom:204.540324px;}
.y8e{bottom:207.600825px;}
.y99{bottom:210.660824px;}
.y7b{bottom:216.600834px;}
.yd6{bottom:218.040401px;}
.y84{bottom:219.660833px;}
.ydb{bottom:221.100400px;}
.y6c{bottom:224.340355px;}
.y31{bottom:225.420267px;}
.ya0{bottom:225.600386px;}
.y15{bottom:225.780267px;}
.yfc{bottom:225.960267px;}
.y3a{bottom:228.480266px;}
.ya6{bottom:228.660384px;}
.y18{bottom:228.840265px;}
.yb1{bottom:233.880263px;}
.y4f{bottom:235.500263px;}
.ye3{bottom:236.220237px;}
.yb5{bottom:236.940262px;}
.y8d{bottom:243.600666px;}
.yea{bottom:244.680020px;}
.y43{bottom:244.860292px;}
.y98{bottom:246.660665px;}
.y6b{bottom:249.360257px;}
.ye{bottom:251.340256px;}
.y7a{bottom:252.600675px;}
.yd5{bottom:254.040243px;}
.y83{bottom:255.660674px;}
.yf4{bottom:256.380373px;}
.yda{bottom:257.100242px;}
.yc3{bottom:261.060816px;}
.y30{bottom:261.420252px;}
.yce{bottom:264.120815px;}
.y39{bottom:264.480251px;}
.y60{bottom:279.600155px;}
.y8c{bottom:279.600508px;}
.y97{bottom:282.660507px;}
.y42{bottom:285.180259px;}
.y6a{bottom:285.360243px;}
.y79{bottom:288.600517px;}
.ye2{bottom:290.220300px;}
.y4e{bottom:291.660240px;}
.y82{bottom:291.660516px;}
.y2f{bottom:297.420238px;}
.y9f{bottom:297.600369px;}
.ye9{bottom:298.680083px;}
.y38{bottom:300.480237px;}
.ya5{bottom:300.660368px;}
.yd{bottom:303.180236px;}
.yf3{bottom:310.380436px;}
.y69{bottom:321.360228px;}
.y78{bottom:324.600359px;}
.y41{bottom:325.500227px;}
.yd4{bottom:326.040227px;}
.y81{bottom:327.660357px;}
.yd9{bottom:329.100225px;}
.yc2{bottom:333.060800px;}
.y2e{bottom:333.420224px;}
.ycd{bottom:336.120799px;}
.y37{bottom:336.480222px;}
.ye1{bottom:344.220363px;}
.yc{bottom:346.380218px;}
.yf2{bottom:346.380278px;}
.y4d{bottom:347.640218px;}
.y8b{bottom:351.600492px;}
.ye8{bottom:352.680146px;}
.y96{bottom:354.660491px;}
.y5f{bottom:357.540214px;}
.y77{bottom:360.600200px;}
.y80{bottom:363.660199px;}
.yc1{bottom:369.060641px;}
.y2d{bottom:369.420209px;}
.y68{bottom:370.320209px;}
.ycc{bottom:372.120640px;}
.y36{bottom:372.480208px;}
.ye0{bottom:380.220205px;}
.ye7{bottom:388.679987px;}
.y5e{bottom:389.940201px;}
.yf1{bottom:400.380341px;}
.y4c{bottom:403.800195px;}
.yc0{bottom:405.060483px;}
.y2c{bottom:405.420195px;}
.y9e{bottom:405.600195px;}
.ycb{bottom:408.120482px;}
.y35{bottom:408.480194px;}
.ya4{bottom:408.660194px;}
.y67{bottom:419.820189px;}
.y5d{bottom:422.340188px;}
.y8a{bottom:423.600476px;}
.y95{bottom:426.660474px;}
.y76{bottom:432.600184px;}
.y7f{bottom:435.660183px;}
.yfe{bottom:435.840183px;}
.yf0{bottom:436.380182px;}
.ybc{bottom:437.820457px;}
.ybf{bottom:441.060325px;}
.yca{bottom:444.120323px;}
.y1e{bottom:446.100454px;}
.y4b{bottom:451.140177px;}
.y27{bottom:457.620174px;}
.y74{bottom:458.520606px;}
.y89{bottom:459.600317px;}
.y2b{bottom:460.680173px;}
.y94{bottom:462.660316px;}
.y40{bottom:476.699970px;}
.ybe{bottom:477.060166px;}
.yc9{bottom:480.120165px;}
.ydf{bottom:485.880163px;}
.y59{bottom:490.739887px;}
.y5c{bottom:493.799886px;}
.y73{bottom:494.520447px;}
.y88{bottom:495.600159px;}
.y93{bottom:498.660158px;}
.y66{bottom:499.020102px;}
.y4a{bottom:507.300154px;}
.ybb{bottom:509.820441px;}
.yd3{bottom:515.760151px;}
.y1d{bottom:518.100438px;}
.yd8{bottom:518.820149px;}
.y3f{bottom:527.100087px;}
.y9d{bottom:527.100146px;}
.ya3{bottom:530.160145px;}
.y72{bottom:530.520289px;}
.y58{bottom:541.140004px;}
.y26{bottom:544.020139px;}
.y5b{bottom:544.200003px;}
.yba{bottom:545.820283px;}
.y2a{bottom:547.080138px;}
.y65{bottom:548.520138px;}
.y1c{bottom:554.100279px;}
.yf8{bottom:556.260134px;}
.yde{bottom:558.420134px;}
.yf9{bottom:559.320133px;}
.y49{bottom:563.280132px;}
.ybd{bottom:565.980131px;}
.y71{bottom:566.520130px;}
.yc8{bottom:569.040129px;}
.y75{bottom:572.100128px;}
.y7e{bottom:575.160127px;}
.y25{bottom:576.060271px;}
.y3e{bottom:577.680126px;}
.y29{bottom:579.120269px;}
.yb9{bottom:581.820124px;}
.y1b{bottom:590.100121px;}
.y57{bottom:591.540120px;}
.y5a{bottom:594.600119px;}
.ydd{bottom:601.620116px;}
.y64{bottom:609.720113px;}
.y24{bottom:612.060112px;}
.y28{bottom:615.120111px;}
.y87{bottom:617.100110px;}
.y92{bottom:620.160109px;}
.y63{bottom:635.640103px;}
.y10{bottom:675.780087px;}
.yac{bottom:690.540513px;}
.yb0{bottom:693.600512px;}
.ya{bottom:720.600069px;}
.yb{bottom:721.680068px;}
.y54{bottom:723.840211px;}
.y12{bottom:726.540210px;}
.yab{bottom:726.540354px;}
.y56{bottom:726.900210px;}
.y14{bottom:729.600209px;}
.yaf{bottom:729.600353px;}
.y46{bottom:741.840204px;}
.yee{bottom:744.540059px;}
.y48{bottom:744.900203px;}
.yef{bottom:747.600058px;}
.y20{bottom:749.400201px;}
.y22{bottom:752.460200px;}
.y8{bottom:753.540056px;}
.y9{bottom:754.620055px;}
.y53{bottom:759.840053px;}
.y11{bottom:762.540052px;}
.yaa{bottom:762.540196px;}
.y55{bottom:762.900052px;}
.y13{bottom:765.600051px;}
.yae{bottom:765.600195px;}
.y45{bottom:777.840046px;}
.y47{bottom:780.900045px;}
.y1f{bottom:785.400043px;}
.y6{bottom:785.940043px;}
.y7{bottom:787.020042px;}
.y21{bottom:788.460042px;}
.ya9{bottom:798.540038px;}
.yad{bottom:801.600036px;}
.y4{bottom:818.520030px;}
.y5{bottom:819.600029px;}
.he{height:47.868731px;}
.hd{height:72.035127px;}
.h9{height:74.627970px;}
.h5{height:79.943728px;}
.ha{height:84.281099px;}
.hb{height:91.054651px;}
.h10{height:91.354182px;}
.h11{height:95.806719px;}
.h4{height:102.491959px;}
.h12{height:102.492319px;}
.h2{height:102.923959px;}
.h1{height:108.052691px;}
.h8{height:114.588674px;}
.h6{height:120.298663px;}
.h3{height:137.231945px;}
.h7{height:144.070255px;}
.h13{height:159.204176px;}
.hc{height:167.841847px;}
.hf{height:192.333790px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x29{left:102.225709px;}
.x1a{left:106.365707px;}
.x4c{left:118.245703px;}
.x1d{left:121.125702px;}
.x28{left:123.105701px;}
.x1b{left:124.185700px;}
.x26{left:126.165700px;}
.x49{left:140.565694px;}
.x5d{left:143.625051px;}
.x3{left:145.065282px;}
.x5b{left:147.947343px;}
.x56{left:149.025690px;}
.x58{left:151.007342px;}
.x53{left:152.086439px;}
.x40{left:157.666437px;}
.x6a{left:160.726436px;}
.x2e{left:163.606435px;}
.x2a{left:166.666433px;}
.x2{left:167.925707px;}
.x24{left:174.406430px;}
.x37{left:181.606427px;}
.x35{left:184.666426px;}
.x5e{left:188.085963px;}
.x51{left:191.506423px;}
.x5a{left:193.126423px;}
.x4a{left:194.566422px;}
.x4f{left:196.907064px;}
.x41{left:198.166124px;}
.x33{left:199.966420px;}
.x32{left:203.026419px;}
.x1e{left:204.646080px;}
.x34{left:206.626417px;}
.x1c{left:207.706079px;}
.x27{left:209.866540px;}
.x30{left:212.746415px;}
.x2c{left:215.806414px;}
.x3c{left:223.546411px;}
.x39{left:225.706410px;}
.x45{left:228.946408px;}
.x3f{left:232.726407px;}
.x3e{left:235.786406px;}
.x5c{left:247.128392px;}
.x59{left:250.188391px;}
.x25{left:252.346965px;}
.x3d{left:255.046439px;}
.x46{left:256.485624px;}
.x3b{left:258.106438px;}
.x54{left:260.086106px;}
.x22{left:261.706389px;}
.x20{left:264.766388px;}
.x2f{left:273.945907px;}
.x2b{left:277.005906px;}
.x4d{left:285.645277px;}
.x18{left:287.806385px;}
.x3a{left:297.706021px;}
.x68{left:306.886377px;}
.x67{left:309.946376px;}
.x57{left:311.027989px;}
.x38{left:313.185482px;}
.x36{left:316.245480px;}
.x65{left:319.846372px;}
.x64{left:322.906371px;}
.x61{left:327.046865px;}
.x44{left:330.824051px;}
.x43{left:352.423889px;}
.x1{left:357.646357px;}
.x6d{left:361.606355px;}
.x50{left:427.846886px;}
.x4e{left:430.906885px;}
.x55{left:451.246320px;}
.x52{left:454.306318px;}
.x19{left:463.126810px;}
.x60{left:468.706313px;}
.x5f{left:471.766311px;}
.x31{left:487.066305px;}
.x2d{left:490.126304px;}
.xe{left:500.386300px;}
.xd{left:501.466299px;}
.x5{left:506.326297px;}
.x4{left:507.406297px;}
.x62{left:515.686294px;}
.x6{left:519.826292px;}
.x42{left:523.783574px;}
.x23{left:528.466405px;}
.xa{left:531.166288px;}
.x9{left:532.246287px;}
.x21{left:542.506283px;}
.x1f{left:545.566282px;}
.x69{left:563.026275px;}
.x66{left:566.986273px;}
.x14{left:581.566267px;}
.x13{left:582.646267px;}
.x4b{left:620.986378px;}
.xf{left:647.266241px;}
.x63{left:659.324194px;}
.x10{left:663.826234px;}
.x47{left:709.906216px;}
.x48{left:769.845841px;}
.x15{left:785.506186px;}
.x16{left:793.066183px;}
.x6c{left:866.147205px;}
.xb{left:891.166144px;}
.xc{left:907.726137px;}
.x6b{left:976.486109px;}
.x7{left:1032.826087px;}
.x17{left:1041.826083px;}
.x8{left:1049.386080px;}
.x11{left:1064.326074px;}
.x12{left:1080.886068px;}
@media print{
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.112608pt;}
.lsa{letter-spacing:0.173637pt;}
.ls9{letter-spacing:0.177757pt;}
.ls8{letter-spacing:0.230528pt;}
.ls0{letter-spacing:3.811790pt;}
.ls2{letter-spacing:4.015282pt;}
.ls1{letter-spacing:4.029869pt;}
.ls6{letter-spacing:57.148499pt;}
.ls7{letter-spacing:81.455353pt;}
.ls4{letter-spacing:88.061578pt;}
.ws1d{word-spacing:-170.879932pt;}
.ws7{word-spacing:-149.119940pt;}
.ws5{word-spacing:-127.999949pt;}
.wsa{word-spacing:-109.932860pt;}
.ws4{word-spacing:-106.879957pt;}
.ws9{word-spacing:-106.094960pt;}
.ws10{word-spacing:-96.112570pt;}
.ws0{word-spacing:-95.999962pt;}
.wsd{word-spacing:-93.941685pt;}
.ws1a{word-spacing:-90.432732pt;}
.ws1e{word-spacing:-85.119966pt;}
.ws1b{word-spacing:-75.599614pt;}
.ws12{word-spacing:-74.879970pt;}
.ws11{word-spacing:-63.999974pt;}
.wse{word-spacing:-62.509799pt;}
.wsf{word-spacing:-60.707592pt;}
.wsb{word-spacing:-56.202560pt;}
.ws8{word-spacing:-55.492302pt;}
.ws14{word-spacing:-50.888952pt;}
.ws1f{word-spacing:-41.455343pt;}
.ws2{word-spacing:-35.583986pt;}
.ws1{word-spacing:-26.687989pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:11.409366pt;}
.ws6{word-spacing:52.361019pt;}
.ws16{word-spacing:129.671237pt;}
.ws1c{word-spacing:404.964952pt;}
.ws15{word-spacing:439.903970pt;}
.ws19{word-spacing:487.679447pt;}
.ws17{word-spacing:518.583758pt;}
.ws18{word-spacing:843.327855pt;}
.ws13{word-spacing:1233.078548pt;}
._37{margin-left:-106.931283pt;}
._33{margin-left:-102.271933pt;}
._41{margin-left:-100.901390pt;}
._2f{margin-left:-96.017052pt;}
._2d{margin-left:-93.112820pt;}
._35{margin-left:-91.578882pt;}
._18{margin-left:-89.620828pt;}
._5a{margin-left:-88.409553pt;}
._3d{margin-left:-86.658895pt;}
._3b{margin-left:-83.073933pt;}
._31{margin-left:-81.721903pt;}
._58{margin-left:-77.643273pt;}
._29{margin-left:-76.436072pt;}
._11{margin-left:-75.487817pt;}
._38{margin-left:-74.531565pt;}
._53{margin-left:-73.579528pt;}
._23{margin-left:-72.424225pt;}
._2e{margin-left:-71.083239pt;}
._36{margin-left:-67.884914pt;}
._30{margin-left:-66.359490pt;}
._12{margin-left:-65.157335pt;}
._3c{margin-left:-64.259906pt;}
._5{margin-left:-63.000839pt;}
._1b{margin-left:-60.836584pt;}
._20{margin-left:-59.921870pt;}
._3a{margin-left:-57.759138pt;}
._39{margin-left:-56.763844pt;}
._34{margin-left:-55.602870pt;}
._2b{margin-left:-54.063244pt;}
._21{margin-left:-53.014612pt;}
._59{margin-left:-51.865768pt;}
._14{margin-left:-50.920711pt;}
._1a{margin-left:-49.424397pt;}
._19{margin-left:-48.413933pt;}
._22{margin-left:-47.331041pt;}
._17{margin-left:-46.019982pt;}
._16{margin-left:-44.985453pt;}
._2a{margin-left:-43.140545pt;}
._42{margin-left:-42.070363pt;}
._13{margin-left:-40.997014pt;}
._15{margin-left:-39.796966pt;}
._3f{margin-left:-38.867398pt;}
._26{margin-left:-37.812420pt;}
._10{margin-left:-36.279697pt;}
._6{margin-left:-35.048530pt;}
._25{margin-left:-33.699769pt;}
._24{margin-left:-32.590182pt;}
._28{margin-left:-31.627115pt;}
._d{margin-left:-29.931252pt;}
._4e{margin-left:-28.191355pt;}
._8{margin-left:-26.819797pt;}
._7{margin-left:-25.375766pt;}
._43{margin-left:-24.272182pt;}
._c{margin-left:-23.284503pt;}
._2{margin-left:-22.308855pt;}
._9{margin-left:-21.333207pt;}
._a{margin-left:-19.750264pt;}
._0{margin-left:-17.962649pt;}
._56{margin-left:-16.970309pt;}
._4{margin-left:-15.912378pt;}
._1{margin-left:-14.764410pt;}
._b{margin-left:-13.485115pt;}
._27{margin-left:-12.371532pt;}
._44{margin-left:-11.423451pt;}
._e{margin-left:-1.028064pt;}
._3{width:1.106976pt;}
._52{width:2.103184pt;}
._f{width:3.201447pt;}
._51{width:4.419272pt;}
._1e{width:7.800527pt;}
._1f{width:9.035296pt;}
._4a{width:10.816679pt;}
._40{width:12.403160pt;}
._4f{width:13.430984pt;}
._50{width:14.826539pt;}
._57{width:16.092597pt;}
._54{width:18.883684pt;}
._55{width:20.076704pt;}
._49{width:23.265669pt;}
._47{width:24.271300pt;}
._4b{width:39.968081pt;}
._32{width:44.385511pt;}
._4d{width:48.306287pt;}
._4c{width:49.820139pt;}
._1d{width:61.179049pt;}
._1c{width:62.270707pt;}
._3e{width:107.001217pt;}
._2c{width:132.136379pt;}
._45{width:508.454781pt;}
._46{width:634.322639pt;}
._48{width:941.740578pt;}
.fs8{font-size:58.879976pt;}
.fs7{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.fs4{font-size:79.999968pt;}
.fsa{font-size:85.119966pt;}
.fs0{font-size:95.999962pt;}
.fs3{font-size:106.879957pt;}
.fs5{font-size:111.999955pt;}
.fs1{font-size:127.999949pt;}
.fs6{font-size:149.119940pt;}
.fs9{font-size:170.879932pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:43.573633pt;}
.y3{bottom:51.093470pt;}
.yfb{bottom:53.653629pt;}
.yb4{bottom:54.453629pt;}
.yb8{bottom:57.173628pt;}
.y52{bottom:59.893627pt;}
.y70{bottom:61.653626pt;}
.yc7{bottom:72.054495pt;}
.yd2{bottom:74.774494pt;}
.ye6{bottom:81.973573pt;}
.y17{bottom:85.653616pt;}
.y1a{bottom:88.373615pt;}
.y91{bottom:88.534489pt;}
.yed{bottom:89.493380pt;}
.y9c{bottom:91.254488pt;}
.yb3{bottom:92.853614pt;}
.yfa{bottom:93.173613pt;}
.y2{bottom:94.453533pt;}
.yb7{bottom:95.573612pt;}
.y7d{bottom:96.534230pt;}
.y6f{bottom:97.653612pt;}
.y86{bottom:99.254229pt;}
.yf7{bottom:99.893694pt;}
.yc6{bottom:104.054355pt;}
.y34{bottom:104.373609pt;}
.yd1{bottom:106.774354pt;}
.y3d{bottom:107.093608pt;}
.y51{bottom:109.653607pt;}
.y90{bottom:120.534348pt;}
.yec{bottom:121.493239pt;}
.y9b{bottom:123.254347pt;}
.y16{bottom:124.053601pt;}
.y19{bottom:126.773600pt;}
.y7c{bottom:128.534089pt;}
.y6e{bottom:129.653599pt;}
.ye5{bottom:129.973629pt;}
.yb2{bottom:131.253598pt;}
.y85{bottom:131.254088pt;}
.yb6{bottom:133.973597pt;}
.yc5{bottom:136.054214pt;}
.y33{bottom:136.373596pt;}
.ya2{bottom:136.533958pt;}
.y1{bottom:137.813596pt;}
.yd0{bottom:138.774213pt;}
.y3c{bottom:139.093595pt;}
.ya8{bottom:139.253957pt;}
.y62{bottom:144.533593pt;}
.yf6{bottom:147.893750pt;}
.y8f{bottom:152.534207pt;}
.y9a{bottom:155.254206pt;}
.yfd{bottom:157.493508pt;}
.y50{bottom:159.573587pt;}
.y6d{bottom:161.653586pt;}
.yd7{bottom:161.813831pt;}
.ye4{bottom:161.973488pt;}
.ydc{bottom:164.533830pt;}
.yc4{bottom:168.054073pt;}
.y32{bottom:168.373583pt;}
.ya1{bottom:168.533817pt;}
.yeb{bottom:169.493295pt;}
.ycf{bottom:170.774072pt;}
.y3b{bottom:171.093582pt;}
.ya7{bottom:171.253816pt;}
.y61{bottom:179.093579pt;}
.yf5{bottom:179.893609pt;}
.yf{bottom:180.053499pt;}
.y44{bottom:181.813622pt;}
.y8e{bottom:184.534066pt;}
.y99{bottom:187.254065pt;}
.y7b{bottom:192.534074pt;}
.yd6{bottom:193.813690pt;}
.y84{bottom:195.254073pt;}
.ydb{bottom:196.533689pt;}
.y6c{bottom:199.413649pt;}
.y31{bottom:200.373571pt;}
.ya0{bottom:200.533676pt;}
.y15{bottom:200.693570pt;}
.yfc{bottom:200.853570pt;}
.y3a{bottom:203.093569pt;}
.ya6{bottom:203.253675pt;}
.y18{bottom:203.413569pt;}
.yb1{bottom:207.893568pt;}
.y4f{bottom:209.333567pt;}
.ye3{bottom:209.973544pt;}
.yb5{bottom:210.613566pt;}
.y8d{bottom:216.533926pt;}
.yea{bottom:217.493351pt;}
.y43{bottom:217.653593pt;}
.y98{bottom:219.253925pt;}
.y6b{bottom:221.653562pt;}
.ye{bottom:223.413561pt;}
.y7a{bottom:224.533934pt;}
.yd5{bottom:225.813549pt;}
.y83{bottom:227.253933pt;}
.yf4{bottom:227.893665pt;}
.yda{bottom:228.533548pt;}
.yc3{bottom:232.054059pt;}
.y30{bottom:232.373558pt;}
.yce{bottom:234.774058pt;}
.y39{bottom:235.093557pt;}
.y60{bottom:248.533471pt;}
.y8c{bottom:248.533785pt;}
.y97{bottom:251.253784pt;}
.y42{bottom:253.493564pt;}
.y6a{bottom:253.653549pt;}
.y79{bottom:256.533793pt;}
.ye2{bottom:257.973600pt;}
.y4e{bottom:259.253547pt;}
.y82{bottom:259.253792pt;}
.y2f{bottom:264.373545pt;}
.y9f{bottom:264.533662pt;}
.ye9{bottom:265.493407pt;}
.y38{bottom:267.093544pt;}
.ya5{bottom:267.253661pt;}
.yd{bottom:269.493543pt;}
.yf3{bottom:275.893721pt;}
.y69{bottom:285.653536pt;}
.y78{bottom:288.533652pt;}
.y41{bottom:289.333535pt;}
.yd4{bottom:289.813535pt;}
.y81{bottom:291.253651pt;}
.yd9{bottom:292.533534pt;}
.yc2{bottom:296.054044pt;}
.y2e{bottom:296.373532pt;}
.ycd{bottom:298.774043pt;}
.y37{bottom:299.093531pt;}
.ye1{bottom:305.973656pt;}
.yc{bottom:307.893528pt;}
.yf2{bottom:307.893580pt;}
.y4d{bottom:309.013527pt;}
.y8b{bottom:312.533770pt;}
.ye8{bottom:313.493463pt;}
.y96{bottom:315.253769pt;}
.y5f{bottom:317.813524pt;}
.y77{bottom:320.533511pt;}
.y80{bottom:323.253510pt;}
.yc1{bottom:328.053903pt;}
.y2d{bottom:328.373519pt;}
.y68{bottom:329.173519pt;}
.ycc{bottom:330.773902pt;}
.y36{bottom:331.093518pt;}
.ye0{bottom:337.973515pt;}
.ye7{bottom:345.493322pt;}
.y5e{bottom:346.613512pt;}
.yf1{bottom:355.893636pt;}
.y4c{bottom:358.933507pt;}
.yc0{bottom:360.053763pt;}
.y2c{bottom:360.373507pt;}
.y9e{bottom:360.533506pt;}
.ycb{bottom:362.773762pt;}
.y35{bottom:363.093505pt;}
.ya4{bottom:363.253505pt;}
.y67{bottom:373.173501pt;}
.y5d{bottom:375.413501pt;}
.y8a{bottom:376.533756pt;}
.y95{bottom:379.253755pt;}
.y76{bottom:384.533497pt;}
.y7f{bottom:387.253496pt;}
.yfe{bottom:387.413496pt;}
.yf0{bottom:387.893496pt;}
.ybc{bottom:389.173740pt;}
.ybf{bottom:392.053622pt;}
.yca{bottom:394.773621pt;}
.y1e{bottom:396.533737pt;}
.y4b{bottom:401.013490pt;}
.y27{bottom:406.773488pt;}
.y74{bottom:407.573872pt;}
.y89{bottom:408.533615pt;}
.y2b{bottom:409.493487pt;}
.y94{bottom:411.253614pt;}
.y40{bottom:423.733307pt;}
.ybe{bottom:424.053481pt;}
.yc9{bottom:426.773480pt;}
.ydf{bottom:431.893478pt;}
.y59{bottom:436.213233pt;}
.y5c{bottom:438.933232pt;}
.y73{bottom:439.573731pt;}
.y88{bottom:440.533474pt;}
.y93{bottom:443.253473pt;}
.y66{bottom:443.573424pt;}
.y4a{bottom:450.933470pt;}
.ybb{bottom:453.173725pt;}
.yd3{bottom:458.453467pt;}
.y1d{bottom:460.533722pt;}
.yd8{bottom:461.173466pt;}
.y3f{bottom:468.533410pt;}
.y9d{bottom:468.533463pt;}
.ya3{bottom:471.253462pt;}
.y72{bottom:471.573590pt;}
.y58{bottom:481.013337pt;}
.y26{bottom:483.573457pt;}
.y5b{bottom:483.733336pt;}
.yba{bottom:485.173585pt;}
.y2a{bottom:486.293456pt;}
.y65{bottom:487.573456pt;}
.y1c{bottom:492.533582pt;}
.yf8{bottom:494.453453pt;}
.yde{bottom:496.373452pt;}
.yf9{bottom:497.173452pt;}
.y49{bottom:500.693450pt;}
.ybd{bottom:503.093449pt;}
.y71{bottom:503.573449pt;}
.yc8{bottom:505.813448pt;}
.y75{bottom:508.533447pt;}
.y7e{bottom:511.253446pt;}
.y25{bottom:512.053574pt;}
.y3e{bottom:513.493445pt;}
.y29{bottom:514.773573pt;}
.yb9{bottom:517.173444pt;}
.y1b{bottom:524.533441pt;}
.y57{bottom:525.813440pt;}
.y5a{bottom:528.533439pt;}
.ydd{bottom:534.773437pt;}
.y64{bottom:541.973434pt;}
.y24{bottom:544.053433pt;}
.y28{bottom:546.773432pt;}
.y87{bottom:548.533431pt;}
.y92{bottom:551.253430pt;}
.y63{bottom:565.013425pt;}
.y10{bottom:600.693410pt;}
.yac{bottom:613.813789pt;}
.yb0{bottom:616.533788pt;}
.ya{bottom:640.533394pt;}
.yb{bottom:641.493394pt;}
.y54{bottom:643.413521pt;}
.y12{bottom:645.813520pt;}
.yab{bottom:645.813648pt;}
.y56{bottom:646.133520pt;}
.y14{bottom:648.533519pt;}
.yaf{bottom:648.533647pt;}
.y46{bottom:659.413515pt;}
.yee{bottom:661.813386pt;}
.y48{bottom:662.133514pt;}
.yef{bottom:664.533385pt;}
.y20{bottom:666.133512pt;}
.y22{bottom:668.853511pt;}
.y8{bottom:669.813383pt;}
.y9{bottom:670.773382pt;}
.y53{bottom:675.413381pt;}
.y11{bottom:677.813380pt;}
.yaa{bottom:677.813508pt;}
.y55{bottom:678.133379pt;}
.y13{bottom:680.533378pt;}
.yae{bottom:680.533506pt;}
.y45{bottom:691.413374pt;}
.y47{bottom:694.133373pt;}
.y1f{bottom:698.133371pt;}
.y6{bottom:698.613371pt;}
.y7{bottom:699.573371pt;}
.y21{bottom:700.853370pt;}
.ya9{bottom:709.813367pt;}
.yad{bottom:712.533366pt;}
.y4{bottom:727.573360pt;}
.y5{bottom:728.533359pt;}
.he{height:42.549983pt;}
.hd{height:64.031224pt;}
.h9{height:66.335973pt;}
.h5{height:71.061092pt;}
.ha{height:74.916533pt;}
.hb{height:80.937468pt;}
.h10{height:81.203718pt;}
.h11{height:85.161528pt;}
.h4{height:91.103964pt;}
.h12{height:91.104284pt;}
.h2{height:91.487963pt;}
.h1{height:96.046837pt;}
.h8{height:101.856599pt;}
.h6{height:106.932145pt;}
.h3{height:121.983951pt;}
.h7{height:128.062449pt;}
.h13{height:141.514823pt;}
.hc{height:149.192753pt;}
.hf{height:170.963369pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x29{left:90.867297pt;}
.x1a{left:94.547296pt;}
.x4c{left:105.107291pt;}
.x1d{left:107.667290pt;}
.x28{left:109.427290pt;}
.x1b{left:110.387289pt;}
.x26{left:112.147288pt;}
.x49{left:124.947283pt;}
.x5d{left:127.666712pt;}
.x3{left:128.946918pt;}
.x5b{left:131.508749pt;}
.x56{left:132.467280pt;}
.x58{left:134.228748pt;}
.x53{left:135.187946pt;}
.x40{left:140.147944pt;}
.x6a{left:142.867943pt;}
.x2e{left:145.427942pt;}
.x2a{left:148.147941pt;}
.x2{left:149.267295pt;}
.x24{left:155.027938pt;}
.x37{left:161.427935pt;}
.x35{left:164.147934pt;}
.x5e{left:167.187523pt;}
.x51{left:170.227932pt;}
.x5a{left:171.667931pt;}
.x4a{left:172.947931pt;}
.x4f{left:175.028502pt;}
.x41{left:176.147665pt;}
.x33{left:177.747929pt;}
.x32{left:180.467928pt;}
.x1e{left:181.907627pt;}
.x34{left:183.667927pt;}
.x1c{left:184.627625pt;}
.x27{left:186.548035pt;}
.x30{left:189.107924pt;}
.x2c{left:191.827923pt;}
.x3c{left:198.707921pt;}
.x39{left:200.627920pt;}
.x45{left:203.507919pt;}
.x3f{left:206.867917pt;}
.x3e{left:209.587916pt;}
.x5c{left:219.669682pt;}
.x59{left:222.389681pt;}
.x25{left:224.308413pt;}
.x3d{left:226.707946pt;}
.x46{left:227.987221pt;}
.x3b{left:229.427945pt;}
.x54{left:231.187650pt;}
.x22{left:232.627901pt;}
.x20{left:235.347900pt;}
.x2f{left:243.507473pt;}
.x2b{left:246.227472pt;}
.x4d{left:253.906913pt;}
.x18{left:255.827898pt;}
.x3a{left:264.627574pt;}
.x68{left:272.787891pt;}
.x67{left:275.507890pt;}
.x57{left:276.469323pt;}
.x38{left:278.387095pt;}
.x36{left:281.107094pt;}
.x65{left:284.307886pt;}
.x64{left:287.027885pt;}
.x61{left:290.708324pt;}
.x44{left:294.065823pt;}
.x43{left:313.265679pt;}
.x1{left:317.907873pt;}
.x6d{left:321.427871pt;}
.x50{left:380.308343pt;}
.x4e{left:383.028342pt;}
.x55{left:401.107840pt;}
.x52{left:403.827838pt;}
.x19{left:411.668276pt;}
.x60{left:416.627833pt;}
.x5f{left:419.347832pt;}
.x31{left:432.947827pt;}
.x2d{left:435.667826pt;}
.xe{left:444.787822pt;}
.xd{left:445.747822pt;}
.x5{left:450.067820pt;}
.x4{left:451.027820pt;}
.x62{left:458.387817pt;}
.x6{left:462.067815pt;}
.x42{left:465.585399pt;}
.x23{left:469.747916pt;}
.xa{left:472.147811pt;}
.x9{left:473.107811pt;}
.x21{left:482.227807pt;}
.x1f{left:484.947806pt;}
.x69{left:500.467800pt;}
.x66{left:503.987798pt;}
.x14{left:516.947793pt;}
.x13{left:517.907793pt;}
.x4b{left:551.987892pt;}
.xf{left:575.347770pt;}
.x63{left:586.065950pt;}
.x10{left:590.067764pt;}
.x47{left:631.027748pt;}
.x48{left:684.307414pt;}
.x15{left:698.227721pt;}
.x16{left:704.947718pt;}
.x6c{left:769.908626pt;}
.xb{left:792.147683pt;}
.xc{left:806.867677pt;}
.x6b{left:867.987653pt;}
.x7{left:918.067633pt;}
.x17{left:926.067630pt;}
.x8{left:932.787627pt;}
.x11{left:946.067622pt;}
.x12{left:960.787616pt;}
}




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