
    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_7a5b32cd15ea0c00398d6ab9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_edd5edf4421318115ed055b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.016000;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_79309e0d86bb19a36876db00.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.875000;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_edd5edf4421318115ed055b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.016000;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_1d7fd79fcedb7674180c8b51.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.016000;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_d48936369c47f8e970f7cce1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.016000;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_6c2400f816a6e31021f1b333.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.007000;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_aabececbcbfe4b7ebd061554.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.928200;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_e00c58cffe433bfe0d2b9232.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_22b95df479ef5ac4ee884813.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929000;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_6f31c542b7f37634728ee58e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.717000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-23.856000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.976000px;}
.ls11{letter-spacing:-3.312000px;}
.lsb{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.209880px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000264px;}
.ls3{letter-spacing:2.160000px;}
.ls0{letter-spacing:2.520000px;}
.ls7{letter-spacing:1524.412800px;}
.ls2{letter-spacing:1526.044800px;}
.lsf{letter-spacing:1526.908800px;}
.ls6{letter-spacing:1527.004800px;}
.ls9{letter-spacing:1527.052800px;}
.lsc{letter-spacing:1527.100800px;}
.ls10{letter-spacing:1527.196800px;}
.lse{letter-spacing:1529.068800px;}
.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;}
}
.ws5{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.040000px;}
.ws3{word-spacing:-13.752000px;}
.ws10{word-spacing:-13.608000px;}
.ws0{word-spacing:-9.600000px;}
.ws4{word-spacing:-8.395200px;}
.wse{word-spacing:-8.185320px;}
.wsb{word-spacing:-2.160000px;}
.ws2{word-spacing:-1.260000px;}
.wsa{word-spacing:-1.080000px;}
.ws8{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.209880px;}
.ws9{word-spacing:0.360000px;}
.wsc{word-spacing:0.432000px;}
.ws7{word-spacing:0.648000px;}
.wsd{word-spacing:0.936000px;}
.ws11{word-spacing:3.312000px;}
._0{margin-left:-2888.504400px;}
._6{margin-left:-14.400000px;}
._a{margin-left:-13.320000px;}
._18{margin-left:-6.825600px;}
._2{margin-left:-5.306400px;}
._7{margin-left:-3.744000px;}
._3{margin-left:-2.534400px;}
._1{margin-left:-1.252800px;}
._4{width:1.879200px;}
._15{width:2.952000px;}
._19{width:5.860800px;}
._9{width:8.352000px;}
._c{width:10.483200px;}
._8{width:11.592000px;}
._b{width:13.032000px;}
._d{width:14.587200px;}
._10{width:16.848000px;}
._11{width:18.288000px;}
._e{width:22.766400px;}
._5{width:25.704000px;}
._f{width:31.680000px;}
._17{width:33.192000px;}
._14{width:36.936000px;}
._13{width:50.184000px;}
._16{width:54.144000px;}
._12{width:68.184000px;}
.fc6{color:rgb(244,151,70);}
.fc5{color:rgb(137,169,62);}
.fc4{color:rgb(0,59,112);}
.fc3{color:transparent;}
.fc1{color:rgb(87,87,86);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.976000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:216.000000px;}
.fs1{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:39.023700px;}
.y2f{bottom:86.444700px;}
.y153{bottom:90.250650px;}
.y59{bottom:90.370800px;}
.y97{bottom:98.680800px;}
.y163{bottom:100.658550px;}
.y2e{bottom:107.450700px;}
.y152{bottom:111.256650px;}
.y58{bottom:111.376800px;}
.y96{bottom:119.686800px;}
.y162{bottom:121.664550px;}
.y118{bottom:128.150850px;}
.y2d{bottom:128.376600px;}
.y57{bottom:132.382800px;}
.y95{bottom:140.662800px;}
.y151{bottom:140.758650px;}
.ybc{bottom:140.916600px;}
.y161{bottom:142.670550px;}
.y117{bottom:149.156850px;}
.y2c{bottom:149.382600px;}
.y181{bottom:152.393400px;}
.y56{bottom:153.388800px;}
.ye6{bottom:154.216350px;}
.y94{bottom:161.668800px;}
.y150{bottom:161.764650px;}
.ybb{bottom:161.922600px;}
.y160{bottom:163.676550px;}
.y116{bottom:170.162850px;}
.y2b{bottom:170.388600px;}
.y180{bottom:173.399400px;}
.ye5{bottom:175.222350px;}
.y55{bottom:178.642800px;}
.y93{bottom:182.674800px;}
.yba{bottom:182.928600px;}
.y15f{bottom:184.682550px;}
.y115{bottom:191.168850px;}
.y14f{bottom:191.266650px;}
.y2a{bottom:191.394600px;}
.y17f{bottom:194.405400px;}
.ye4{bottom:196.198350px;}
.y54{bottom:199.648800px;}
.y92{bottom:203.680800px;}
.yb9{bottom:203.934600px;}
.y15e{bottom:205.688550px;}
.y114{bottom:212.174850px;}
.y14e{bottom:212.272650px;}
.y29{bottom:212.400600px;}
.y17e{bottom:215.411400px;}
.ye3{bottom:217.204350px;}
.y53{bottom:220.654800px;}
.y91{bottom:224.686800px;}
.yb8{bottom:224.940600px;}
.y15d{bottom:226.694550px;}
.y113{bottom:233.180850px;}
.y14d{bottom:233.278650px;}
.y28{bottom:233.406600px;}
.y13c{bottom:233.424600px;}
.ye2{bottom:238.210350px;}
.y52{bottom:241.660800px;}
.y17d{bottom:244.913400px;}
.y90{bottom:245.686800px;}
.yb7{bottom:245.946600px;}
.y112{bottom:254.186850px;}
.y14c{bottom:254.284650px;}
.y27{bottom:254.412600px;}
.y13b{bottom:254.430600px;}
.y15c{bottom:256.196550px;}
.ye1{bottom:259.216350px;}
.y51{bottom:262.666800px;}
.y8f{bottom:266.682750px;}
.yb6{bottom:271.200600px;}
.y111{bottom:275.192850px;}
.y14b{bottom:275.290650px;}
.y26{bottom:275.418600px;}
.y13a{bottom:275.436600px;}
.y15b{bottom:277.202550px;}
.ye0{bottom:280.222350px;}
.y8e{bottom:287.688750px;}
.y50{bottom:287.920800px;}
.yb5{bottom:292.206600px;}
.y14a{bottom:296.296650px;}
.y25{bottom:296.424600px;}
.y139{bottom:296.442600px;}
.ydf{bottom:301.076250px;}
.y182{bottom:304.218150px;}
.y110{bottom:304.694850px;}
.y15a{bottom:306.704550px;}
.y8d{bottom:308.694750px;}
.y4f{bottom:308.926800px;}
.y149{bottom:317.302650px;}
.y24{bottom:317.430600px;}
.y138{bottom:317.448600px;}
.yb4{bottom:321.684600px;}
.yde{bottom:322.082250px;}
.y10f{bottom:325.672800px;}
.y159{bottom:327.710550px;}
.y4e{bottom:329.932800px;}
.y197{bottom:334.044600px;}
.y8c{bottom:338.190750px;}
.y148{bottom:338.308650px;}
.y23{bottom:338.436600px;}
.y137{bottom:338.454600px;}
.yb3{bottom:342.690600px;}
.ydd{bottom:343.088250px;}
.y10e{bottom:346.678800px;}
.y4d{bottom:350.938800px;}
.y196{bottom:355.050600px;}
.y158{bottom:357.188550px;}
.y8b{bottom:359.192700px;}
.y147{bottom:359.314650px;}
.y22{bottom:359.442600px;}
.y136{bottom:363.608550px;}
.yb2{bottom:363.696600px;}
.ydc{bottom:364.094250px;}
.y10d{bottom:367.684800px;}
.y4c{bottom:371.944800px;}
.y195{bottom:376.056600px;}
.y157{bottom:378.194550px;}
.y8a{bottom:380.198700px;}
.y146{bottom:380.320650px;}
.y21{bottom:380.448600px;}
.y135{bottom:384.614550px;}
.yb1{bottom:384.702600px;}
.ydb{bottom:385.100250px;}
.y10c{bottom:388.690800px;}
.y194{bottom:397.062600px;}
.y4b{bottom:397.198800px;}
.y156{bottom:399.200550px;}
.y145{bottom:401.326650px;}
.y20{bottom:401.454600px;}
.y134{bottom:405.620550px;}
.yb0{bottom:405.696600px;}
.yda{bottom:406.106250px;}
.y89{bottom:409.686600px;}
.y193{bottom:418.068600px;}
.y4a{bottom:418.154700px;}
.y10b{bottom:418.192800px;}
.y155{bottom:420.206550px;}
.y144{bottom:422.332650px;}
.y133{bottom:426.626550px;}
.y1f{bottom:426.640650px;}
.yaf{bottom:426.702600px;}
.yd9{bottom:427.112250px;}
.y88{bottom:430.692600px;}
.y192{bottom:439.074600px;}
.y49{bottom:439.160700px;}
.y10a{bottom:439.198800px;}
.y154{bottom:441.212550px;}
.y143{bottom:443.338650px;}
.y1e{bottom:447.646650px;}
.yae{bottom:447.690600px;}
.yd8{bottom:448.118250px;}
.y132{bottom:451.880550px;}
.y17c{bottom:454.890750px;}
.y191{bottom:460.080600px;}
.y48{bottom:460.166700px;}
.y109{bottom:460.178700px;}
.y87{bottom:460.194600px;}
.y1d{bottom:468.652650px;}
.yad{bottom:468.696600px;}
.y131{bottom:472.886550px;}
.y17b{bottom:475.896750px;}
.yd7{bottom:477.620250px;}
.y190{bottom:481.086600px;}
.y47{bottom:481.172700px;}
.y108{bottom:481.184700px;}
.y86{bottom:481.200600px;}
.y1c{bottom:489.658650px;}
.yac{bottom:489.702600px;}
.y1ad{bottom:493.602600px;}
.y130{bottom:493.892550px;}
.y17a{bottom:496.902750px;}
.yd6{bottom:498.626250px;}
.y18f{bottom:502.092600px;}
.y46{bottom:502.178700px;}
.y107{bottom:502.190700px;}
.y85{bottom:502.206600px;}
.y142{bottom:508.312650px;}
.yab{bottom:510.660600px;}
.y1b{bottom:510.664650px;}
.y12f{bottom:514.898550px;}
.y1ac{bottom:518.856600px;}
.yd5{bottom:519.632250px;}
.y106{bottom:523.196700px;}
.y179{bottom:526.404750px;}
.y18e{bottom:527.346600px;}
.y45{bottom:527.432700px;}
.yaa{bottom:531.666600px;}
.y84{bottom:531.702600px;}
.y12e{bottom:535.904550px;}
.y1a{bottom:535.918650px;}
.yd4{bottom:540.638250px;}
.y1ab{bottom:544.110600px;}
.y18d{bottom:548.352600px;}
.y44{bottom:548.438700px;}
.y105{bottom:548.450700px;}
.ya9{bottom:552.672600px;}
.y83{bottom:552.696600px;}
.y178{bottom:555.906750px;}
.y12d{bottom:556.910550px;}
.y19{bottom:556.924650px;}
.yd3{bottom:561.644250px;}
.y1aa{bottom:565.116600px;}
.y104{bottom:569.358600px;}
.y43{bottom:569.444700px;}
.ya8{bottom:573.678600px;}
.y82{bottom:573.702600px;}
.y12c{bottom:577.916550px;}
.y18{bottom:577.930650px;}
.yd2{bottom:582.650250px;}
.y177{bottom:585.408750px;}
.y1a9{bottom:586.122600px;}
.y103{bottom:590.364600px;}
.y42{bottom:590.450700px;}
.y18c{bottom:594.612600px;}
.y81{bottom:594.654600px;}
.ya7{bottom:594.684600px;}
.y12b{bottom:598.922550px;}
.y17{bottom:598.936650px;}
.yd1{bottom:603.656250px;}
.y102{bottom:611.370600px;}
.y1a8{bottom:611.376600px;}
.y41{bottom:611.390550px;}
.y176{bottom:614.910750px;}
.y18b{bottom:615.618600px;}
.y80{bottom:615.660600px;}
.ya6{bottom:615.690600px;}
.y12a{bottom:619.928550px;}
.y16{bottom:619.942650px;}
.yd0{bottom:624.662250px;}
.y101{bottom:632.376600px;}
.y40{bottom:632.396550px;}
.y18a{bottom:636.624600px;}
.y1a7{bottom:636.630600px;}
.y7f{bottom:636.666600px;}
.ya5{bottom:636.696600px;}
.y129{bottom:640.934550px;}
.y15{bottom:640.948650px;}
.y175{bottom:644.412750px;}
.ycf{bottom:645.668250px;}
.y189{bottom:657.630600px;}
.y1a6{bottom:657.636600px;}
.y7e{bottom:657.672600px;}
.ya4{bottom:657.702600px;}
.y100{bottom:661.878600px;}
.y3f{bottom:661.898550px;}
.y64{bottom:661.918650px;}
.y128{bottom:661.940550px;}
.y14{bottom:661.954650px;}
.yf8{bottom:666.662250px;}
.yce{bottom:666.674250px;}
.y73{bottom:674.394600px;}
.y1a5{bottom:678.642600px;}
.y7d{bottom:678.678600px;}
.ya3{bottom:678.696600px;}
.yff{bottom:682.884600px;}
.y3e{bottom:682.904550px;}
.y13{bottom:682.914600px;}
.y63{bottom:682.924650px;}
.y127{bottom:682.946550px;}
.yf7{bottom:687.668250px;}
.ycd{bottom:687.680250px;}
.y174{bottom:690.924750px;}
.y72{bottom:695.400600px;}
.y1a4{bottom:699.648600px;}
.y7c{bottom:699.684600px;}
.ya2{bottom:699.702600px;}
.yfe{bottom:703.890600px;}
.y12{bottom:703.920600px;}
.y62{bottom:703.930650px;}
.y126{bottom:703.952550px;}
.y3d{bottom:708.158550px;}
.yf6{bottom:708.674250px;}
.ycc{bottom:708.686250px;}
.y173{bottom:711.930750px;}
.y71{bottom:716.406600px;}
.y7b{bottom:720.690600px;}
.ya1{bottom:720.704550px;}
.yfd{bottom:724.896600px;}
.y1a3{bottom:724.902600px;}
.y11{bottom:724.926600px;}
.y61{bottom:724.936650px;}
.y125{bottom:724.958550px;}
.y3c{bottom:729.164550px;}
.yf5{bottom:729.680250px;}
.ycb{bottom:729.692250px;}
.y172{bottom:732.936750px;}
.y70{bottom:737.412600px;}
.y7a{bottom:741.696600px;}
.ya0{bottom:741.710550px;}
.y188{bottom:745.902600px;}
.y1a2{bottom:745.908600px;}
.y10{bottom:745.932600px;}
.y60{bottom:745.942650px;}
.y3b{bottom:750.170550px;}
.y124{bottom:750.176550px;}
.yf4{bottom:750.686250px;}
.yca{bottom:750.698250px;}
.yfc{bottom:754.398600px;}
.y6f{bottom:758.418600px;}
.y171{bottom:762.438750px;}
.y79{bottom:762.702600px;}
.y187{bottom:766.908600px;}
.y1a1{bottom:766.914600px;}
.yf{bottom:766.938600px;}
.y5f{bottom:766.948650px;}
.y9f{bottom:771.164550px;}
.y3a{bottom:771.176550px;}
.y123{bottom:771.182550px;}
.yf3{bottom:771.692250px;}
.yc9{bottom:771.704250px;}
.yfb{bottom:775.404600px;}
.y170{bottom:783.444750px;}
.y78{bottom:783.702600px;}
.y186{bottom:787.914600px;}
.y6e{bottom:787.920600px;}
.ye{bottom:787.944600px;}
.y5e{bottom:787.954650px;}
.y4{bottom:792.005400px;}
.y1a0{bottom:792.168600px;}
.y9e{bottom:792.170550px;}
.y39{bottom:792.182550px;}
.y122{bottom:792.188550px;}
.yf2{bottom:792.698250px;}
.yc8{bottom:792.710250px;}
.yfa{bottom:796.410600px;}
.y77{bottom:804.700650px;}
.y5d{bottom:808.920600px;}
.y6d{bottom:808.926600px;}
.yd{bottom:808.950600px;}
.y16f{bottom:812.946750px;}
.y185{bottom:813.168600px;}
.y19f{bottom:813.174600px;}
.y9d{bottom:813.176550px;}
.y38{bottom:813.188550px;}
.y121{bottom:813.194550px;}
.yf1{bottom:813.704250px;}
.yc7{bottom:813.716250px;}
.yf9{bottom:817.416600px;}
.y6c{bottom:829.932600px;}
.y76{bottom:829.954650px;}
.y16e{bottom:833.942700px;}
.y184{bottom:834.174600px;}
.y19e{bottom:834.180600px;}
.y9c{bottom:834.182550px;}
.y37{bottom:834.194550px;}
.y120{bottom:834.200550px;}
.yf0{bottom:834.710250px;}
.y5c{bottom:838.422600px;}
.yc{bottom:838.452600px;}
.yc6{bottom:843.218250px;}
.y6b{bottom:850.938600px;}
.y75{bottom:850.956600px;}
.y16d{bottom:854.948700px;}
.y183{bottom:855.180600px;}
.y19d{bottom:855.186600px;}
.y9b{bottom:855.188550px;}
.y36{bottom:855.200550px;}
.y11f{bottom:855.206550px;}
.y5b{bottom:859.428600px;}
.yb{bottom:859.458600px;}
.y3{bottom:864.014400px;}
.yef{bottom:864.212250px;}
.yc5{bottom:864.224250px;}
.y6a{bottom:871.944600px;}
.y9a{bottom:876.194550px;}
.y35{bottom:876.206550px;}
.y11e{bottom:876.212550px;}
.ya{bottom:880.434600px;}
.y19c{bottom:880.440600px;}
.y74{bottom:880.458600px;}
.y16c{bottom:884.450700px;}
.yee{bottom:885.218250px;}
.yc4{bottom:885.230250px;}
.y69{bottom:892.950600px;}
.y34{bottom:897.200550px;}
.y11d{bottom:901.394850px;}
.y9{bottom:901.440600px;}
.y19b{bottom:901.446600px;}
.y16b{bottom:905.438700px;}
.yc3{bottom:906.200250px;}
.yed{bottom:906.224250px;}
.y68{bottom:913.956600px;}
.y33{bottom:918.206550px;}
.y11c{bottom:922.400850px;}
.y8{bottom:922.446600px;}
.y19a{bottom:922.452600px;}
.y16a{bottom:926.444700px;}
.yc2{bottom:927.206250px;}
.yec{bottom:927.230250px;}
.y2{bottom:936.023400px;}
.y32{bottom:939.194700px;}
.y99{bottom:939.204600px;}
.y11b{bottom:943.406850px;}
.y7{bottom:943.452600px;}
.y67{bottom:943.458600px;}
.y169{bottom:947.450700px;}
.yc1{bottom:948.212250px;}
.yeb{bottom:948.218250px;}
.y199{bottom:964.296600px;}
.y66{bottom:964.408650px;}
.y11a{bottom:964.412850px;}
.y31{bottom:964.448700px;}
.y6{bottom:964.458600px;}
.y168{bottom:968.456700px;}
.yc0{bottom:969.218250px;}
.yea{bottom:969.224250px;}
.y198{bottom:985.302600px;}
.y65{bottom:985.414650px;}
.y119{bottom:985.418850px;}
.y30{bottom:985.454700px;}
.y98{bottom:985.462800px;}
.y5{bottom:985.464600px;}
.ybf{bottom:990.224250px;}
.ye9{bottom:990.230250px;}
.y141{bottom:1009.865850px;}
.ye8{bottom:1011.214350px;}
.ybe{bottom:1011.230250px;}
.y167{bottom:1030.826550px;}
.y140{bottom:1030.871850px;}
.ye7{bottom:1032.220350px;}
.ybd{bottom:1032.236250px;}
.y5a{bottom:1050.438600px;}
.y166{bottom:1051.832550px;}
.y13f{bottom:1051.877850px;}
.y165{bottom:1072.838550px;}
.y13e{bottom:1072.883850px;}
.y164{bottom:1093.844550px;}
.y13d{bottom:1093.889850px;}
.h2{height:38.784000px;}
.hb{height:52.056000px;}
.h1f{height:52.560000px;}
.h24{height:52.728000px;}
.h4{height:58.176000px;}
.h18{height:58.183200px;}
.h12{height:58.192200px;}
.h14{height:58.200000px;}
.h13{height:58.207800px;}
.h17{height:58.216200px;}
.ha{height:58.224000px;}
.h16{height:58.232400px;}
.h9{height:58.247400px;}
.h1a{height:58.248000px;}
.h1d{height:58.263600px;}
.h11{height:58.272000px;}
.h21{height:58.280400px;}
.h22{height:58.288200px;}
.h5{height:58.296000px;}
.h1b{height:58.320000px;}
.hf{height:58.336200px;}
.h6{height:58.360200px;}
.h19{height:58.368000px;}
.hd{height:58.376400px;}
.h15{height:58.392000px;}
.h10{height:58.399800px;}
.hc{height:58.440600px;}
.h7{height:58.447800px;}
.h1e{height:58.456200px;}
.h8{height:58.496400px;}
.h20{height:58.568400px;}
.h23{height:58.576200px;}
.h1c{height:58.784400px;}
.he{height:187.272000px;}
.h3{height:218.484000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:83.891400px;}
.x2{left:85.353750px;}
.x7{left:86.726100px;}
.x3{left:106.935600px;}
.xb{left:115.045350px;}
.x8{left:127.384500px;}
.xa{left:129.051150px;}
.x5{left:457.100550px;}
.x4{left:478.358550px;}
.xc{left:487.105350px;}
.x9{left:499.085850px;}
.x1{left:802.929450px;}
@media print{
.v1{vertical-align:-21.205333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.ls11{letter-spacing:-2.944000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.186560pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000235pt;}
.ls3{letter-spacing:1.920000pt;}
.ls0{letter-spacing:2.240000pt;}
.ls7{letter-spacing:1355.033600pt;}
.ls2{letter-spacing:1356.484267pt;}
.lsf{letter-spacing:1357.252267pt;}
.ls6{letter-spacing:1357.337600pt;}
.ls9{letter-spacing:1357.380267pt;}
.lsc{letter-spacing:1357.422933pt;}
.ls10{letter-spacing:1357.508267pt;}
.lse{letter-spacing:1359.172267pt;}
.ws5{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.480000pt;}
.ws3{word-spacing:-12.224000pt;}
.ws10{word-spacing:-12.096000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws4{word-spacing:-7.462400pt;}
.wse{word-spacing:-7.275840pt;}
.wsb{word-spacing:-1.920000pt;}
.ws2{word-spacing:-1.120000pt;}
.wsa{word-spacing:-0.960000pt;}
.ws8{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.186560pt;}
.ws9{word-spacing:0.320000pt;}
.wsc{word-spacing:0.384000pt;}
.ws7{word-spacing:0.576000pt;}
.wsd{word-spacing:0.832000pt;}
.ws11{word-spacing:2.944000pt;}
._0{margin-left:-2567.559467pt;}
._6{margin-left:-12.800000pt;}
._a{margin-left:-11.840000pt;}
._18{margin-left:-6.067200pt;}
._2{margin-left:-4.716800pt;}
._7{margin-left:-3.328000pt;}
._3{margin-left:-2.252800pt;}
._1{margin-left:-1.113600pt;}
._4{width:1.670400pt;}
._15{width:2.624000pt;}
._19{width:5.209600pt;}
._9{width:7.424000pt;}
._c{width:9.318400pt;}
._8{width:10.304000pt;}
._b{width:11.584000pt;}
._d{width:12.966400pt;}
._10{width:14.976000pt;}
._11{width:16.256000pt;}
._e{width:20.236800pt;}
._5{width:22.848000pt;}
._f{width:28.160000pt;}
._17{width:29.504000pt;}
._14{width:32.832000pt;}
._13{width:44.608000pt;}
._16{width:48.128000pt;}
._12{width:60.608000pt;}
.fs3{font-size:37.312000pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:192.000000pt;}
.fs1{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:34.687733pt;}
.y2f{bottom:76.839733pt;}
.y153{bottom:80.222800pt;}
.y59{bottom:80.329600pt;}
.y97{bottom:87.716267pt;}
.y163{bottom:89.474267pt;}
.y2e{bottom:95.511733pt;}
.y152{bottom:98.894800pt;}
.y58{bottom:99.001600pt;}
.y96{bottom:106.388267pt;}
.y162{bottom:108.146267pt;}
.y118{bottom:113.911867pt;}
.y2d{bottom:114.112533pt;}
.y57{bottom:117.673600pt;}
.y95{bottom:125.033600pt;}
.y151{bottom:125.118800pt;}
.ybc{bottom:125.259200pt;}
.y161{bottom:126.818267pt;}
.y117{bottom:132.583867pt;}
.y2c{bottom:132.784533pt;}
.y181{bottom:135.460800pt;}
.y56{bottom:136.345600pt;}
.ye6{bottom:137.081200pt;}
.y94{bottom:143.705600pt;}
.y150{bottom:143.790800pt;}
.ybb{bottom:143.931200pt;}
.y160{bottom:145.490267pt;}
.y116{bottom:151.255867pt;}
.y2b{bottom:151.456533pt;}
.y180{bottom:154.132800pt;}
.ye5{bottom:155.753200pt;}
.y55{bottom:158.793600pt;}
.y93{bottom:162.377600pt;}
.yba{bottom:162.603200pt;}
.y15f{bottom:164.162267pt;}
.y115{bottom:169.927867pt;}
.y14f{bottom:170.014800pt;}
.y2a{bottom:170.128533pt;}
.y17f{bottom:172.804800pt;}
.ye4{bottom:174.398533pt;}
.y54{bottom:177.465600pt;}
.y92{bottom:181.049600pt;}
.yb9{bottom:181.275200pt;}
.y15e{bottom:182.834267pt;}
.y114{bottom:188.599867pt;}
.y14e{bottom:188.686800pt;}
.y29{bottom:188.800533pt;}
.y17e{bottom:191.476800pt;}
.ye3{bottom:193.070533pt;}
.y53{bottom:196.137600pt;}
.y91{bottom:199.721600pt;}
.yb8{bottom:199.947200pt;}
.y15d{bottom:201.506267pt;}
.y113{bottom:207.271867pt;}
.y14d{bottom:207.358800pt;}
.y28{bottom:207.472533pt;}
.y13c{bottom:207.488533pt;}
.ye2{bottom:211.742533pt;}
.y52{bottom:214.809600pt;}
.y17d{bottom:217.700800pt;}
.y90{bottom:218.388267pt;}
.yb7{bottom:218.619200pt;}
.y112{bottom:225.943867pt;}
.y14c{bottom:226.030800pt;}
.y27{bottom:226.144533pt;}
.y13b{bottom:226.160533pt;}
.y15c{bottom:227.730267pt;}
.ye1{bottom:230.414533pt;}
.y51{bottom:233.481600pt;}
.y8f{bottom:237.051333pt;}
.yb6{bottom:241.067200pt;}
.y111{bottom:244.615867pt;}
.y14b{bottom:244.702800pt;}
.y26{bottom:244.816533pt;}
.y13a{bottom:244.832533pt;}
.y15b{bottom:246.402267pt;}
.ye0{bottom:249.086533pt;}
.y8e{bottom:255.723333pt;}
.y50{bottom:255.929600pt;}
.yb5{bottom:259.739200pt;}
.y14a{bottom:263.374800pt;}
.y25{bottom:263.488533pt;}
.y139{bottom:263.504533pt;}
.ydf{bottom:267.623333pt;}
.y182{bottom:270.416133pt;}
.y110{bottom:270.839867pt;}
.y15a{bottom:272.626267pt;}
.y8d{bottom:274.395333pt;}
.y4f{bottom:274.601600pt;}
.y149{bottom:282.046800pt;}
.y24{bottom:282.160533pt;}
.y138{bottom:282.176533pt;}
.yb4{bottom:285.941867pt;}
.yde{bottom:286.295333pt;}
.y10f{bottom:289.486933pt;}
.y159{bottom:291.298267pt;}
.y4e{bottom:293.273600pt;}
.y197{bottom:296.928533pt;}
.y8c{bottom:300.614000pt;}
.y148{bottom:300.718800pt;}
.y23{bottom:300.832533pt;}
.y137{bottom:300.848533pt;}
.yb3{bottom:304.613867pt;}
.ydd{bottom:304.967333pt;}
.y10e{bottom:308.158933pt;}
.y4d{bottom:311.945600pt;}
.y196{bottom:315.600533pt;}
.y158{bottom:317.500933pt;}
.y8b{bottom:319.282400pt;}
.y147{bottom:319.390800pt;}
.y22{bottom:319.504533pt;}
.y136{bottom:323.207600pt;}
.yb2{bottom:323.285867pt;}
.ydc{bottom:323.639333pt;}
.y10d{bottom:326.830933pt;}
.y4c{bottom:330.617600pt;}
.y195{bottom:334.272533pt;}
.y157{bottom:336.172933pt;}
.y8a{bottom:337.954400pt;}
.y146{bottom:338.062800pt;}
.y21{bottom:338.176533pt;}
.y135{bottom:341.879600pt;}
.yb1{bottom:341.957867pt;}
.ydb{bottom:342.311333pt;}
.y10c{bottom:345.502933pt;}
.y194{bottom:352.944533pt;}
.y4b{bottom:353.065600pt;}
.y156{bottom:354.844933pt;}
.y145{bottom:356.734800pt;}
.y20{bottom:356.848533pt;}
.y134{bottom:360.551600pt;}
.yb0{bottom:360.619200pt;}
.yda{bottom:360.983333pt;}
.y89{bottom:364.165867pt;}
.y193{bottom:371.616533pt;}
.y4a{bottom:371.693067pt;}
.y10b{bottom:371.726933pt;}
.y155{bottom:373.516933pt;}
.y144{bottom:375.406800pt;}
.y133{bottom:379.223600pt;}
.y1f{bottom:379.236133pt;}
.yaf{bottom:379.291200pt;}
.yd9{bottom:379.655333pt;}
.y88{bottom:382.837867pt;}
.y192{bottom:390.288533pt;}
.y49{bottom:390.365067pt;}
.y10a{bottom:390.398933pt;}
.y154{bottom:392.188933pt;}
.y143{bottom:394.078800pt;}
.y1e{bottom:397.908133pt;}
.yae{bottom:397.947200pt;}
.yd8{bottom:398.327333pt;}
.y132{bottom:401.671600pt;}
.y17c{bottom:404.347333pt;}
.y191{bottom:408.960533pt;}
.y48{bottom:409.037067pt;}
.y109{bottom:409.047733pt;}
.y87{bottom:409.061867pt;}
.y1d{bottom:416.580133pt;}
.yad{bottom:416.619200pt;}
.y131{bottom:420.343600pt;}
.y17b{bottom:423.019333pt;}
.yd7{bottom:424.551333pt;}
.y190{bottom:427.632533pt;}
.y47{bottom:427.709067pt;}
.y108{bottom:427.719733pt;}
.y86{bottom:427.733867pt;}
.y1c{bottom:435.252133pt;}
.yac{bottom:435.291200pt;}
.y1ad{bottom:438.757867pt;}
.y130{bottom:439.015600pt;}
.y17a{bottom:441.691333pt;}
.yd6{bottom:443.223333pt;}
.y18f{bottom:446.304533pt;}
.y46{bottom:446.381067pt;}
.y107{bottom:446.391733pt;}
.y85{bottom:446.405867pt;}
.y142{bottom:451.833467pt;}
.yab{bottom:453.920533pt;}
.y1b{bottom:453.924133pt;}
.y12f{bottom:457.687600pt;}
.y1ac{bottom:461.205867pt;}
.yd5{bottom:461.895333pt;}
.y106{bottom:465.063733pt;}
.y179{bottom:467.915333pt;}
.y18e{bottom:468.752533pt;}
.y45{bottom:468.829067pt;}
.yaa{bottom:472.592533pt;}
.y84{bottom:472.624533pt;}
.y12e{bottom:476.359600pt;}
.y1a{bottom:476.372133pt;}
.yd4{bottom:480.567333pt;}
.y1ab{bottom:483.653867pt;}
.y18d{bottom:487.424533pt;}
.y44{bottom:487.501067pt;}
.y105{bottom:487.511733pt;}
.ya9{bottom:491.264533pt;}
.y83{bottom:491.285867pt;}
.y178{bottom:494.139333pt;}
.y12d{bottom:495.031600pt;}
.y19{bottom:495.044133pt;}
.yd3{bottom:499.239333pt;}
.y1aa{bottom:502.325867pt;}
.y104{bottom:506.096533pt;}
.y43{bottom:506.173067pt;}
.ya8{bottom:509.936533pt;}
.y82{bottom:509.957867pt;}
.y12c{bottom:513.703600pt;}
.y18{bottom:513.716133pt;}
.yd2{bottom:517.911333pt;}
.y177{bottom:520.363333pt;}
.y1a9{bottom:520.997867pt;}
.y103{bottom:524.768533pt;}
.y42{bottom:524.845067pt;}
.y18c{bottom:528.544533pt;}
.y81{bottom:528.581867pt;}
.ya7{bottom:528.608533pt;}
.y12b{bottom:532.375600pt;}
.y17{bottom:532.388133pt;}
.yd1{bottom:536.583333pt;}
.y102{bottom:543.440533pt;}
.y1a8{bottom:543.445867pt;}
.y41{bottom:543.458267pt;}
.y176{bottom:546.587333pt;}
.y18b{bottom:547.216533pt;}
.y80{bottom:547.253867pt;}
.ya6{bottom:547.280533pt;}
.y12a{bottom:551.047600pt;}
.y16{bottom:551.060133pt;}
.yd0{bottom:555.255333pt;}
.y101{bottom:562.112533pt;}
.y40{bottom:562.130267pt;}
.y18a{bottom:565.888533pt;}
.y1a7{bottom:565.893867pt;}
.y7f{bottom:565.925867pt;}
.ya5{bottom:565.952533pt;}
.y129{bottom:569.719600pt;}
.y15{bottom:569.732133pt;}
.y175{bottom:572.811333pt;}
.ycf{bottom:573.927333pt;}
.y189{bottom:584.560533pt;}
.y1a6{bottom:584.565867pt;}
.y7e{bottom:584.597867pt;}
.ya4{bottom:584.624533pt;}
.y100{bottom:588.336533pt;}
.y3f{bottom:588.354267pt;}
.y64{bottom:588.372133pt;}
.y128{bottom:588.391600pt;}
.y14{bottom:588.404133pt;}
.yf8{bottom:592.588667pt;}
.yce{bottom:592.599333pt;}
.y73{bottom:599.461867pt;}
.y1a5{bottom:603.237867pt;}
.y7d{bottom:603.269867pt;}
.ya3{bottom:603.285867pt;}
.yff{bottom:607.008533pt;}
.y3e{bottom:607.026267pt;}
.y13{bottom:607.035200pt;}
.y63{bottom:607.044133pt;}
.y127{bottom:607.063600pt;}
.yf7{bottom:611.260667pt;}
.ycd{bottom:611.271333pt;}
.y174{bottom:614.155333pt;}
.y72{bottom:618.133867pt;}
.y1a4{bottom:621.909867pt;}
.y7c{bottom:621.941867pt;}
.ya2{bottom:621.957867pt;}
.yfe{bottom:625.680533pt;}
.y12{bottom:625.707200pt;}
.y62{bottom:625.716133pt;}
.y126{bottom:625.735600pt;}
.y3d{bottom:629.474267pt;}
.yf6{bottom:629.932667pt;}
.ycc{bottom:629.943333pt;}
.y173{bottom:632.827333pt;}
.y71{bottom:636.805867pt;}
.y7b{bottom:640.613867pt;}
.ya1{bottom:640.626267pt;}
.yfd{bottom:644.352533pt;}
.y1a3{bottom:644.357867pt;}
.y11{bottom:644.379200pt;}
.y61{bottom:644.388133pt;}
.y125{bottom:644.407600pt;}
.y3c{bottom:648.146267pt;}
.yf5{bottom:648.604667pt;}
.ycb{bottom:648.615333pt;}
.y172{bottom:651.499333pt;}
.y70{bottom:655.477867pt;}
.y7a{bottom:659.285867pt;}
.ya0{bottom:659.298267pt;}
.y188{bottom:663.024533pt;}
.y1a2{bottom:663.029867pt;}
.y10{bottom:663.051200pt;}
.y60{bottom:663.060133pt;}
.y3b{bottom:666.818267pt;}
.y124{bottom:666.823600pt;}
.yf4{bottom:667.276667pt;}
.yca{bottom:667.287333pt;}
.yfc{bottom:670.576533pt;}
.y6f{bottom:674.149867pt;}
.y171{bottom:677.723333pt;}
.y79{bottom:677.957867pt;}
.y187{bottom:681.696533pt;}
.y1a1{bottom:681.701867pt;}
.yf{bottom:681.723200pt;}
.y5f{bottom:681.732133pt;}
.y9f{bottom:685.479600pt;}
.y3a{bottom:685.490267pt;}
.y123{bottom:685.495600pt;}
.yf3{bottom:685.948667pt;}
.yc9{bottom:685.959333pt;}
.yfb{bottom:689.248533pt;}
.y170{bottom:696.395333pt;}
.y78{bottom:696.624533pt;}
.y186{bottom:700.368533pt;}
.y6e{bottom:700.373867pt;}
.ye{bottom:700.395200pt;}
.y5e{bottom:700.404133pt;}
.y4{bottom:704.004800pt;}
.y1a0{bottom:704.149867pt;}
.y9e{bottom:704.151600pt;}
.y39{bottom:704.162267pt;}
.y122{bottom:704.167600pt;}
.yf2{bottom:704.620667pt;}
.yc8{bottom:704.631333pt;}
.yfa{bottom:707.920533pt;}
.y77{bottom:715.289467pt;}
.y5d{bottom:719.040533pt;}
.y6d{bottom:719.045867pt;}
.yd{bottom:719.067200pt;}
.y16f{bottom:722.619333pt;}
.y185{bottom:722.816533pt;}
.y19f{bottom:722.821867pt;}
.y9d{bottom:722.823600pt;}
.y38{bottom:722.834267pt;}
.y121{bottom:722.839600pt;}
.yf1{bottom:723.292667pt;}
.yc7{bottom:723.303333pt;}
.yf9{bottom:726.592533pt;}
.y6c{bottom:737.717867pt;}
.y76{bottom:737.737467pt;}
.y16e{bottom:741.282400pt;}
.y184{bottom:741.488533pt;}
.y19e{bottom:741.493867pt;}
.y9c{bottom:741.495600pt;}
.y37{bottom:741.506267pt;}
.y120{bottom:741.511600pt;}
.yf0{bottom:741.964667pt;}
.y5c{bottom:745.264533pt;}
.yc{bottom:745.291200pt;}
.yc6{bottom:749.527333pt;}
.y6b{bottom:756.389867pt;}
.y75{bottom:756.405867pt;}
.y16d{bottom:759.954400pt;}
.y183{bottom:760.160533pt;}
.y19d{bottom:760.165867pt;}
.y9b{bottom:760.167600pt;}
.y36{bottom:760.178267pt;}
.y11f{bottom:760.183600pt;}
.y5b{bottom:763.936533pt;}
.yb{bottom:763.963200pt;}
.y3{bottom:768.012800pt;}
.yef{bottom:768.188667pt;}
.yc5{bottom:768.199333pt;}
.y6a{bottom:775.061867pt;}
.y9a{bottom:778.839600pt;}
.y35{bottom:778.850267pt;}
.y11e{bottom:778.855600pt;}
.ya{bottom:782.608533pt;}
.y19c{bottom:782.613867pt;}
.y74{bottom:782.629867pt;}
.y16c{bottom:786.178400pt;}
.yee{bottom:786.860667pt;}
.yc4{bottom:786.871333pt;}
.y69{bottom:793.733867pt;}
.y34{bottom:797.511600pt;}
.y11d{bottom:801.239867pt;}
.y9{bottom:801.280533pt;}
.y19b{bottom:801.285867pt;}
.y16b{bottom:804.834400pt;}
.yc3{bottom:805.511333pt;}
.yed{bottom:805.532667pt;}
.y68{bottom:812.405867pt;}
.y33{bottom:816.183600pt;}
.y11c{bottom:819.911867pt;}
.y8{bottom:819.952533pt;}
.y19a{bottom:819.957867pt;}
.y16a{bottom:823.506400pt;}
.yc2{bottom:824.183333pt;}
.yec{bottom:824.204667pt;}
.y2{bottom:832.020800pt;}
.y32{bottom:834.839733pt;}
.y99{bottom:834.848533pt;}
.y11b{bottom:838.583867pt;}
.y7{bottom:838.624533pt;}
.y67{bottom:838.629867pt;}
.y169{bottom:842.178400pt;}
.yc1{bottom:842.855333pt;}
.yeb{bottom:842.860667pt;}
.y199{bottom:857.152533pt;}
.y66{bottom:857.252133pt;}
.y11a{bottom:857.255867pt;}
.y31{bottom:857.287733pt;}
.y6{bottom:857.296533pt;}
.y168{bottom:860.850400pt;}
.yc0{bottom:861.527333pt;}
.yea{bottom:861.532667pt;}
.y198{bottom:875.824533pt;}
.y65{bottom:875.924133pt;}
.y119{bottom:875.927867pt;}
.y30{bottom:875.959733pt;}
.y98{bottom:875.966933pt;}
.y5{bottom:875.968533pt;}
.ybf{bottom:880.199333pt;}
.ye9{bottom:880.204667pt;}
.y141{bottom:897.658533pt;}
.ye8{bottom:898.857200pt;}
.ybe{bottom:898.871333pt;}
.y167{bottom:916.290267pt;}
.y140{bottom:916.330533pt;}
.ye7{bottom:917.529200pt;}
.ybd{bottom:917.543333pt;}
.y5a{bottom:933.723200pt;}
.y166{bottom:934.962267pt;}
.y13f{bottom:935.002533pt;}
.y165{bottom:953.634267pt;}
.y13e{bottom:953.674533pt;}
.y164{bottom:972.306267pt;}
.y13d{bottom:972.346533pt;}
.h2{height:34.474667pt;}
.hb{height:46.272000pt;}
.h1f{height:46.720000pt;}
.h24{height:46.869333pt;}
.h4{height:51.712000pt;}
.h18{height:51.718400pt;}
.h12{height:51.726400pt;}
.h14{height:51.733333pt;}
.h13{height:51.740267pt;}
.h17{height:51.747733pt;}
.ha{height:51.754667pt;}
.h16{height:51.762133pt;}
.h9{height:51.775467pt;}
.h1a{height:51.776000pt;}
.h1d{height:51.789867pt;}
.h11{height:51.797333pt;}
.h21{height:51.804800pt;}
.h22{height:51.811733pt;}
.h5{height:51.818667pt;}
.h1b{height:51.840000pt;}
.hf{height:51.854400pt;}
.h6{height:51.875733pt;}
.h19{height:51.882667pt;}
.hd{height:51.890133pt;}
.h15{height:51.904000pt;}
.h10{height:51.910933pt;}
.hc{height:51.947200pt;}
.h7{height:51.953600pt;}
.h1e{height:51.961067pt;}
.h8{height:51.996800pt;}
.h20{height:52.060800pt;}
.h23{height:52.067733pt;}
.h1c{height:52.252800pt;}
.he{height:166.464000pt;}
.h3{height:194.208000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:74.570133pt;}
.x2{left:75.870000pt;}
.x7{left:77.089867pt;}
.x3{left:95.053867pt;}
.xb{left:102.262533pt;}
.x8{left:113.230667pt;}
.xa{left:114.712133pt;}
.x5{left:406.311600pt;}
.x4{left:425.207600pt;}
.xc{left:432.982533pt;}
.x9{left:443.631867pt;}
.x1{left:713.715067pt;}
}




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