
    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_269608270d4e8b1098988674.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_af3369ffcfe63f9962336775.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_f6d5cc39c3ecd60f60c39028.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_d333f92cc704ed0df76f2fc2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.888000;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_07ff21dcdd7db93d9932fd2e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.935000;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_ca7349f254caf67461947d31.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_38d328480f2766e7cdef2e30.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.907000;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_4bb70e553dfa4b314d7fa056.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923000;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_3eecbc3059ad02be6653736f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923000;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_1f534d7190806ff0731d36e4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.388000;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_4409d68629e1067c0b1ab368.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c0f274bd3c7c2e310f7df267.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7eda0334a9bffbc7b8471872.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dc946972cb598c7687d9f2db.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923000;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);}
.v3{vertical-align:-10.218000px;}
.v4{vertical-align:-8.964000px;}
.v2{vertical-align:-4.716000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.544000px;}
.v1{vertical-align:18.654000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:4.064751px;}
.ls4{letter-spacing:4.447316px;}
.ls7{letter-spacing:4.734239px;}
.ls8{letter-spacing:5.068984px;}
.ls9{letter-spacing:7.220911px;}
.ls3{letter-spacing:21.665473px;}
.ls6{letter-spacing:32.727300px;}
.ls5{letter-spacing:32.728200px;}
.ls2{letter-spacing:51.294893px;}
.ls1{letter-spacing:52.758479px;}
.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:-41.007178px;}
.ws12{word-spacing:-32.517845px;}
.wsb{word-spacing:-21.717836px;}
.ws8{word-spacing:-21.652382px;}
.ws1a{word-spacing:-14.583285px;}
.ws11{word-spacing:-13.720706px;}
.ws1{word-spacing:-13.634628px;}
.ws2{word-spacing:-10.852373px;}
.ws4{word-spacing:-10.786918px;}
.ws22{word-spacing:-4.782060px;}
.ws34{word-spacing:-4.596522px;}
.ws1f{word-spacing:-4.510445px;}
.ws43{word-spacing:-4.495136px;}
.ws40{word-spacing:-4.112572px;}
.ws20{word-spacing:-3.652367px;}
.ws19{word-spacing:-3.586912px;}
.wsa{word-spacing:-0.086077px;}
.ws2c{word-spacing:-0.071731px;}
.ws5{word-spacing:-0.065455px;}
.ws29{word-spacing:-0.059776px;}
.ws39{word-spacing:-0.047821px;}
.ws25{word-spacing:-0.035866px;}
.ws3{word-spacing:0.000000px;}
.ws28{word-spacing:0.179408px;}
.ws26{word-spacing:0.191445px;}
.ws24{word-spacing:0.191582px;}
.ws2f{word-spacing:0.201127px;}
.ws10{word-spacing:0.209455px;}
.ws2e{word-spacing:0.211555px;}
.ws2a{word-spacing:0.239184px;}
.ws2b{word-spacing:0.263313px;}
.ws2d{word-spacing:0.277568px;}
.ws13{word-spacing:6.599243px;}
.ws21{word-spacing:6.694884px;}
.ws14{word-spacing:6.742705px;}
.ws3b{word-spacing:6.838346px;}
.wsc{word-spacing:6.933987px;}
.wsf{word-spacing:6.981808px;}
.wsd{word-spacing:7.029628px;}
.ws1d{word-spacing:7.077449px;}
.ws16{word-spacing:7.125269px;}
.ws1b{word-spacing:7.173090px;}
.ws38{word-spacing:7.220911px;}
.ws3e{word-spacing:7.268731px;}
.ws3a{word-spacing:7.316552px;}
.ws1c{word-spacing:7.412193px;}
.ws33{word-spacing:7.555655px;}
.ws1e{word-spacing:7.699117px;}
.ws36{word-spacing:7.794758px;}
.ws37{word-spacing:7.890399px;}
.ws3c{word-spacing:7.938220px;}
.ws23{word-spacing:8.033861px;}
.ws31{word-spacing:8.129502px;}
.ws35{word-spacing:8.368605px;}
.ws3d{word-spacing:14.394001px;}
.ws27{word-spacing:16.880672px;}
.ws18{word-spacing:19.845499px;}
.ws7{word-spacing:21.600018px;}
.ws9{word-spacing:21.665473px;}
.ws15{word-spacing:28.501078px;}
.wse{word-spacing:36.774041px;}
.ws30{word-spacing:37.204427px;}
.ws17{word-spacing:37.491350px;}
.ws3f{word-spacing:38.017377px;}
.ws44{word-spacing:38.065198px;}
.ws42{word-spacing:38.208659px;}
.ws32{word-spacing:38.925968px;}
.ws41{word-spacing:39.308533px;}
.ws6{word-spacing:40.009138px;}
._0{margin-left:-10.249242px;}
._18{margin-left:-8.122941px;}
._e{margin-left:-5.367277px;}
._15{margin-left:-4.016930px;}
._1{margin-left:-2.324084px;}
._4{margin-left:-1.275919px;}
._11{width:1.275919px;}
._3{width:2.324084px;}
._8{width:3.969110px;}
._7{width:4.973342px;}
._c{width:6.742705px;}
._b{width:7.861703px;}
._f{width:9.286713px;}
._d{width:10.930918px;}
._14{width:12.509872px;}
._6{width:21.665473px;}
._10{width:22.713638px;}
._5{width:28.930933px;}
._17{width:31.896340px;}
._13{width:33.284110px;}
._2{width:36.410656px;}
._a{width:38.160839px;}
._9{width:39.212892px;}
._12{width:40.504048px;}
._16{width:43.755849px;}
.fca{color:rgb(0,178,15);}
.fc9{color:rgb(51,51,255);}
.fc7{color:rgb(255,128,0);}
.fcb{color:rgb(0,128,0);}
.fc6{color:rgb(0,0,255);}
.fc8{color:rgb(153,153,255);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(110,110,255);}
.fc3{color:transparent;}
.fc2{color:rgb(240,240,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs6{font-size:123.975000px;}
.fs7{font-size:148.722600px;}
.y140{bottom:-120.244500px;}
.y10{bottom:-110.241000px;}
.y13f{bottom:-106.047000px;}
.y13e{bottom:-91.851000px;}
.y13d{bottom:-77.653500px;}
.yf{bottom:-65.529000px;}
.y13c{bottom:-63.457500px;}
.y13b{bottom:-49.260000px;}
.y13a{bottom:-35.064000px;}
.y139{bottom:-20.866500px;}
.ye{bottom:-20.817000px;}
.y79{bottom:-19.392000px;}
.y138{bottom:-6.670500px;}
.y0{bottom:0.000000px;}
.y78{bottom:5.415000px;}
.y137{bottom:7.527000px;}
.y195{bottom:8.398500px;}
.y10d{bottom:15.906000px;}
.ya6{bottom:16.404000px;}
.y5e{bottom:16.545000px;}
.y1a1{bottom:18.093000px;}
.y59{bottom:19.297500px;}
.y154{bottom:20.475000px;}
.y98{bottom:21.259500px;}
.y136{bottom:21.723000px;}
.y25{bottom:22.381500px;}
.yd{bottom:23.896500px;}
.y6f{bottom:28.911000px;}
.y123{bottom:29.083500px;}
.y77{bottom:30.222000px;}
.ya5{bottom:30.600000px;}
.y194{bottom:33.205500px;}
.y17f{bottom:33.313500px;}
.y153{bottom:34.672500px;}
.yf6{bottom:35.890500px;}
.y135{bottom:35.920500px;}
.y10c{bottom:39.802500px;}
.yab{bottom:42.705000px;}
.y1a0{bottom:42.900000px;}
.y122{bottom:43.281000px;}
.yc4{bottom:43.740000px;}
.yb8{bottom:44.035500px;}
.y58{bottom:44.104500px;}
.ya4{bottom:44.797500px;}
.y97{bottom:45.427500px;}
.y24{bottom:47.188500px;}
.y17e{bottom:47.511000px;}
.y152{bottom:48.868500px;}
.ycc{bottom:49.870500px;}
.y134{bottom:50.116500px;}
.y7a{bottom:52.834500px;}
.y76{bottom:55.029000px;}
.ydd{bottom:57.255000px;}
.y193{bottom:58.012500px;}
.ye2{bottom:58.435500px;}
.yaa{bottom:60.637500px;}
.yf5{bottom:60.697500px;}
.y6e{bottom:60.711000px;}
.y17a{bottom:61.707000px;}
.y165{bottom:62.394000px;}
.y151{bottom:63.066000px;}
.y19f{bottom:63.223500px;}
.y133{bottom:64.314000px;}
.yc3{bottom:68.547000px;}
.yc{bottom:68.608500px;}
.yfa{bottom:68.617500px;}
.y57{bottom:69.213000px;}
.ydc{bottom:71.451000px;}
.y121{bottom:71.674500px;}
.y23{bottom:71.995500px;}
.ye1{bottom:72.631500px;}
.y40{bottom:74.623500px;}
.y35{bottom:75.606000px;}
.yb7{bottom:75.834000px;}
.y179{bottom:75.904500px;}
.ya3{bottom:76.596000px;}
.y15d{bottom:76.845000px;}
.y150{bottom:77.262000px;}
.ycb{bottom:78.264000px;}
.y116{bottom:78.718500px;}
.y75{bottom:79.836000px;}
.y66{bottom:82.572000px;}
.yf9{bottom:82.815000px;}
.y192{bottom:82.849500px;}
.yf4{bottom:85.504500px;}
.ydb{bottom:85.648500px;}
.y88{bottom:85.858500px;}
.y120{bottom:85.870500px;}
.y6d{bottom:86.124000px;}
.ye0{bottom:86.829000px;}
.y164{bottom:87.201000px;}
.y19e{bottom:88.030500px;}
.y96{bottom:88.123500px;}
.y3f{bottom:88.819500px;}
.y178{bottom:90.100500px;}
.y14f{bottom:91.459500px;}
.y132{bottom:92.707500px;}
.y115{bottom:92.914500px;}
.yc2{bottom:93.655500px;}
.y8d{bottom:95.179500px;}
.y22{bottom:95.313000px;}
.y65{bottom:96.768000px;}
.yf8{bottom:97.011000px;}
.y15c{bottom:97.168500px;}
.y16d{bottom:99.652500px;}
.yda{bottom:99.844500px;}
.y11f{bottom:100.068000px;}
.y34{bottom:100.413000px;}
.ydf{bottom:101.025000px;}
.y3e{bottom:103.017000px;}
.y177{bottom:104.298000px;}
.y74{bottom:104.643000px;}
.y14e{bottom:105.655500px;}
.y6c{bottom:106.449000px;}
.y131{bottom:106.903500px;}
.y114{bottom:107.112000px;}
.y45{bottom:107.455500px;}
.y109{bottom:107.994000px;}
.y1c{bottom:109.951500px;}
.yf3{bottom:110.311500px;}
.y87{bottom:110.665500px;}
.y64{bottom:110.965500px;}
.y17d{bottom:111.022500px;}
.yd6{bottom:111.207000px;}
.yf7{bottom:111.208500px;}
.y5a{bottom:111.727500px;}
.y163{bottom:112.008000px;}
.y19d{bottom:112.837500px;}
.y95{bottom:112.930500px;}
.y53{bottom:113.238000px;}
.yb{bottom:113.320500px;}
.yca{bottom:114.322500px;}
.ya2{bottom:114.927000px;}
.y189{bottom:115.018500px;}
.yb6{bottom:115.074000px;}
.yec{bottom:115.429500px;}
.y3d{bottom:117.213000px;}
.y191{bottom:117.420000px;}
.y15b{bottom:117.492000px;}
.y14d{bottom:119.853000px;}
.y8c{bottom:119.986500px;}
.y190{bottom:121.056000px;}
.y130{bottom:121.101000px;}
.y113{bottom:121.308000px;}
.y108{bottom:122.191500px;}
.y16c{bottom:124.459500px;}
.y63{bottom:125.161500px;}
.y33{bottom:125.220000px;}
.yd5{bottom:125.404500px;}
.y4b{bottom:125.866500px;}
.y11e{bottom:128.461500px;}
.y73{bottom:129.450000px;}
.y3c{bottom:131.410500px;}
.y44{bottom:132.262500px;}
.ybe{bottom:132.990000px;}
.ye4{bottom:133.201500px;}
.y52{bottom:133.561500px;}
.y14c{bottom:134.049000px;}
.y1b{bottom:134.758500px;}
.y21{bottom:134.946000px;}
.y12f{bottom:135.297000px;}
.yb5{bottom:135.397500px;}
.y86{bottom:135.472500px;}
.y112{bottom:135.505500px;}
.y107{bottom:136.387500px;}
.yd9{bottom:136.812000px;}
.yde{bottom:137.083500px;}
.y182{bottom:137.086500px;}
.y162{bottom:137.116500px;}
.y19c{bottom:137.644500px;}
.y94{bottom:137.767500px;}
.y176{bottom:139.416000px;}
.yd4{bottom:139.602000px;}
.ya1{bottom:139.734000px;}
.yeb{bottom:140.236500px;}
.y15a{bottom:142.329000px;}
.y11d{bottom:142.657500px;}
.y188{bottom:143.412000px;}
.y8b{bottom:144.793500px;}
.y183{bottom:145.201500px;}
.y3b{bottom:145.606500px;}
.y18f{bottom:145.863000px;}
.y14b{bottom:148.246500px;}
.y16b{bottom:149.266500px;}
.y80{bottom:149.487000px;}
.y12e{bottom:149.494500px;}
.y111{bottom:149.701500px;}
.y6b{bottom:149.733000px;}
.y32{bottom:150.027000px;}
.y106{bottom:150.585000px;}
.y9d{bottom:150.642000px;}
.yce{bottom:150.775500px;}
.yd3{bottom:153.798000px;}
.y72{bottom:154.558500px;}
.y11c{bottom:156.855000px;}
.y43{bottom:157.069500px;}
.y187{bottom:157.608000px;}
.ye3{bottom:158.008500px;}
.ya{bottom:158.032500px;}
.yc9{bottom:158.044500px;}
.yb0{bottom:159.265500px;}
.y17c{bottom:159.397500px;}
.y1a{bottom:159.565500px;}
.y20{bottom:159.753000px;}
.yb4{bottom:160.204500px;}
.y85{bottom:160.279500px;}
.y62{bottom:161.220000px;}
.y4a{bottom:161.923500px;}
.y14a{bottom:162.442500px;}
.y19b{bottom:162.481500px;}
.y51{bottom:162.852000px;}
.y12d{bottom:163.690500px;}
.y110{bottom:163.899000px;}
.y181{bottom:164.136000px;}
.ybd{bottom:164.371500px;}
.ya0{bottom:164.541000px;}
.y9c{bottom:164.839500px;}
.yea{bottom:165.043500px;}
.yf2{bottom:167.995500px;}
.y2c{bottom:168.442500px;}
.y8a{bottom:169.600500px;}
.y18e{bottom:170.670000px;}
.y17b{bottom:173.595000px;}
.y31{bottom:174.834000px;}
.y149{bottom:176.640000px;}
.y93{bottom:176.704500px;}
.y50{bottom:177.049500px;}
.y12c{bottom:177.888000px;}
.y10f{bottom:178.095000px;}
.y6a{bottom:178.126500px;}
.y166{bottom:179.931000px;}
.yb3{bottom:180.528000px;}
.ycd{bottom:181.633500px;}
.y3a{bottom:181.665000px;}
.y42{bottom:181.876500px;}
.y19{bottom:181.906500px;}
.yd2{bottom:182.191500px;}
.y16a{bottom:182.485500px;}
.y2b{bottom:182.640000px;}
.y180{bottom:182.815500px;}
.yc8{bottom:182.851500px;}
.y1f{bottom:183.070500px;}
.yaf{bottom:184.072500px;}
.y159{bottom:184.204500px;}
.y84{bottom:185.086500px;}
.y7f{bottom:185.545500px;}
.y186{bottom:186.003000px;}
.y5{bottom:187.554000px;}
.y173{bottom:187.791000px;}
.y11b{bottom:188.653500px;}
.y9f{bottom:189.378000px;}
.ybc{bottom:189.777000px;}
.ye9{bottom:189.850500px;}
.y148{bottom:190.836000px;}
.yf0{bottom:191.457000px;}
.y12b{bottom:192.084000px;}
.y169{bottom:192.181500px;}
.y105{bottom:193.176000px;}
.y89{bottom:194.407500px;}
.y18d{bottom:195.507000px;}
.yc1{bottom:196.096500px;}
.yf1{bottom:196.389000px;}
.y2a{bottom:196.836000px;}
.y30{bottom:199.641000px;}
.y185{bottom:200.199000px;}
.yd8{bottom:200.221500px;}
.y61{bottom:200.853000px;}
.y9b{bottom:200.896500px;}
.y92{bottom:201.511500px;}
.y19a{bottom:201.721500px;}
.y172{bottom:201.988500px;}
.y9{bottom:202.746000px;}
.y158{bottom:202.884000px;}
.y71{bottom:202.933500px;}
.y49{bottom:204.738000px;}
.y147{bottom:205.033500px;}
.yb2{bottom:205.335000px;}
.y12a{bottom:206.281500px;}
.y41{bottom:206.713500px;}
.yc7{bottom:207.960000px;}
.yae{bottom:208.879500px;}
.y10e{bottom:209.893500px;}
.yd1{bottom:210.585000px;}
.y29{bottom:211.033500px;}
.ybb{bottom:212.193000px;}
.y4f{bottom:213.106500px;}
.y69{bottom:214.185000px;}
.y175{bottom:214.396500px;}
.ye8{bottom:214.657500px;}
.y171{bottom:216.184500px;}
.yef{bottom:216.264000px;}
.y168{bottom:216.988500px;}
.y83{bottom:218.305500px;}
.y146{bottom:219.229500px;}
.y129{bottom:220.477500px;}
.y2f{bottom:224.448000px;}
.y14{bottom:224.719500px;}
.yd0{bottom:224.782500px;}
.yd7{bottom:225.028500px;}
.y157{bottom:225.300000px;}
.y1e{bottom:225.304500px;}
.y39{bottom:225.388500px;}
.y60{bottom:225.660000px;}
.y91{bottom:226.318500px;}
.y199{bottom:226.528500px;}
.y11a{bottom:227.419500px;}
.y9e{bottom:227.709000px;}
.y184{bottom:228.592500px;}
.yad{bottom:229.203000px;}
.y104{bottom:229.233000px;}
.y48{bottom:229.545000px;}
.yb1{bottom:230.142000px;}
.y170{bottom:230.382000px;}
.y7e{bottom:231.156000px;}
.y145{bottom:233.427000px;}
.y18c{bottom:234.292500px;}
.yba{bottom:234.609000px;}
.y128{bottom:234.675000px;}
.y167{bottom:237.312000px;}
.ycf{bottom:238.978500px;}
.y70{bottom:238.992000px;}
.ye7{bottom:239.464500px;}
.yee{bottom:241.071000px;}
.y28{bottom:241.893000px;}
.y174{bottom:242.790000px;}
.y16f{bottom:244.578000px;}
.yc0{bottom:245.412000px;}
.y8{bottom:247.458000px;}
.y144{bottom:247.623000px;}
.y127{bottom:248.871000px;}
.y2e{bottom:249.255000px;}
.y13{bottom:249.526500px;}
.y7d{bottom:249.835500px;}
.y156{bottom:250.107000px;}
.y38{bottom:250.195500px;}
.y4{bottom:250.306500px;}
.y5f{bottom:250.467000px;}
.yc6{bottom:250.774500px;}
.y90{bottom:251.125500px;}
.y198{bottom:251.335500px;}
.y119{bottom:252.226500px;}
.y68{bottom:252.516000px;}
.y4e{bottom:252.648000px;}
.y9a{bottom:253.176000px;}
.y5d{bottom:253.455000px;}
.yac{bottom:254.010000px;}
.yb9{bottom:254.860500px;}
.y82{bottom:254.949000px;}
.y47{bottom:256.593000px;}
.y1d{bottom:258.523500px;}
.y18b{bottom:259.099500px;}
.y143{bottom:261.820500px;}
.yfd{bottom:262.119000px;}
.y126{bottom:263.068500px;}
.ye6{bottom:263.362500px;}
.y99{bottom:267.372000px;}
.yed{bottom:270.361500px;}
.y2d{bottom:274.062000px;}
.y12{bottom:274.333500px;}
.y7c{bottom:274.642500px;}
.y155{bottom:274.914000px;}
.y37{bottom:275.002500px;}
.y46{bottom:275.274000px;}
.yc5{bottom:275.581500px;}
.y8f{bottom:275.932500px;}
.y142{bottom:276.016500px;}
.y197{bottom:276.142500px;}
.y118{bottom:277.033500px;}
.y125{bottom:277.264500px;}
.y67{bottom:277.323000px;}
.y4d{bottom:277.455000px;}
.y27{bottom:277.960500px;}
.y5c{bottom:278.262000px;}
.y81{bottom:278.847000px;}
.ybf{bottom:279.427500px;}
.y16e{bottom:279.696000px;}
.y18a{bottom:282.415500px;}
.yfc{bottom:282.442500px;}
.y141{bottom:290.214000px;}
.y124{bottom:291.462000px;}
.y7{bottom:292.170000px;}
.y11{bottom:299.170500px;}
.y7b{bottom:299.751000px;}
.y8e{bottom:299.829000px;}
.y4c{bottom:301.353000px;}
.y117{bottom:301.870500px;}
.y196{bottom:301.888500px;}
.y5b{bottom:302.160000px;}
.y26{bottom:302.767500px;}
.ye5{bottom:304.410000px;}
.yfb{bottom:307.249500px;}
.y3{bottom:310.659000px;}
.y1{bottom:315.322500px;}
.y2{bottom:319.696500px;}
.y36{bottom:355.521000px;}
.y6{bottom:359.704500px;}
.y10b{bottom:3015.944685px;}
.y56{bottom:3019.336185px;}
.y10a{bottom:3039.841185px;}
.ya9{bottom:3042.743685px;}
.y55{bottom:3044.143185px;}
.ya8{bottom:3060.676185px;}
.y54{bottom:3069.251685px;}
.y103{bottom:3108.032685px;}
.y18{bottom:3109.990185px;}
.y102{bottom:3122.230185px;}
.y17{bottom:3134.797185px;}
.y101{bottom:3136.426185px;}
.y100{bottom:3150.623685px;}
.y16{bottom:3159.604185px;}
.y161{bottom:3179.969685px;}
.y15{bottom:3181.945185px;}
.yff{bottom:3193.214685px;}
.y160{bottom:3204.776685px;}
.yfe{bottom:3229.271685px;}
.y15f{bottom:3229.583685px;}
.y15e{bottom:3256.631685px;}
.ya7{bottom:3278.885685px;}
.h9{height:33.283138px;}
.hb{height:35.921476px;}
.ha{height:35.927476px;}
.h3{height:44.891476px;}
.h8{height:45.418410px;}
.he{height:45.490947px;}
.h7{height:50.914410px;}
.h6{height:50.920410px;}
.h5{height:55.636410px;}
.h2{height:62.233816px;}
.hf{height:70.180410px;}
.h4{height:80.887816px;}
.hc{height:88.394175px;}
.hd{height:102.767317px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x7{left:24.604500px;}
.x29{left:28.347000px;}
.x41{left:36.601500px;}
.xe{left:38.268000px;}
.x9{left:39.807000px;}
.x8{left:42.981000px;}
.x42{left:44.220000px;}
.x17{left:47.002500px;}
.x23{left:49.065000px;}
.x1a{left:50.848500px;}
.x3c{left:51.975000px;}
.x46{left:54.732000px;}
.xd{left:57.160500px;}
.x21{left:58.774500px;}
.x33{left:60.039000px;}
.x14{left:61.056000px;}
.x1b{left:63.268500px;}
.x16{left:65.775000px;}
.x12{left:69.975000px;}
.xf{left:70.995000px;}
.x11{left:72.459000px;}
.x22{left:74.244000px;}
.xa{left:75.247500px;}
.x3e{left:76.344000px;}
.x13{left:77.427000px;}
.x3d{left:78.813000px;}
.x4e{left:80.364000px;}
.x20{left:82.092000px;}
.x44{left:86.121000px;}
.x15{left:87.702000px;}
.x45{left:89.133000px;}
.x10{left:91.540500px;}
.x4d{left:92.784000px;}
.x4b{left:94.281000px;}
.x1f{left:95.421000px;}
.x1d{left:99.106500px;}
.x28{left:102.046500px;}
.x47{left:104.112000px;}
.x1e{left:105.541500px;}
.x32{left:106.740000px;}
.x31{left:117.171000px;}
.x30{left:118.744500px;}
.x36{left:121.567500px;}
.x24{left:135.741000px;}
.x1{left:136.902000px;}
.x2{left:140.604000px;}
.x50{left:144.132000px;}
.x3{left:147.489000px;}
.x4{left:158.008500px;}
.x26{left:162.723000px;}
.x4c{left:164.539500px;}
.x35{left:191.338500px;}
.x1c{left:219.202500px;}
.x25{left:234.297000px;}
.x27{left:245.040000px;}
.x6{left:262.288500px;}
.x5{left:264.232500px;}
.x19{left:279.939000px;}
.x4f{left:294.799500px;}
.x2a{left:354.331500px;}
.x43{left:362.586000px;}
.x2c{left:367.560000px;}
.x2e{left:371.037000px;}
.x2d{left:373.996500px;}
.x2b{left:383.818500px;}
.x2f{left:386.415000px;}
.x39{left:389.554500px;}
.x3b{left:395.901000px;}
.x38{left:397.029000px;}
.x40{left:404.238000px;}
.x3f{left:407.304000px;}
.x37{left:415.975500px;}
.x3a{left:447.552000px;}
.xb{left:3042.557685px;}
.xc{left:3057.199185px;}
.x48{left:3058.750185px;}
.x18{left:3075.286185px;}
.x4a{left:3092.359185px;}
.x49{left:3102.085185px;}
.x34{left:3191.377185px;}
@media print{
.v3{vertical-align:-9.082667pt;}
.v4{vertical-align:-7.968000pt;}
.v2{vertical-align:-4.192000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.928000pt;}
.v1{vertical-align:16.581333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:3.613112pt;}
.ls4{letter-spacing:3.953170pt;}
.ls7{letter-spacing:4.208213pt;}
.ls8{letter-spacing:4.505763pt;}
.ls9{letter-spacing:6.418587pt;}
.ls3{letter-spacing:19.258198pt;}
.ls6{letter-spacing:29.090933pt;}
.ls5{letter-spacing:29.091733pt;}
.ls2{letter-spacing:45.595460pt;}
.ls1{letter-spacing:46.896426pt;}
.ws0{word-spacing:-36.450825pt;}
.ws12{word-spacing:-28.904751pt;}
.wsb{word-spacing:-19.304743pt;}
.ws8{word-spacing:-19.246561pt;}
.ws1a{word-spacing:-12.962920pt;}
.ws11{word-spacing:-12.196183pt;}
.ws1{word-spacing:-12.119670pt;}
.ws2{word-spacing:-9.646553pt;}
.ws4{word-spacing:-9.588372pt;}
.ws22{word-spacing:-4.250720pt;}
.ws34{word-spacing:-4.085798pt;}
.ws1f{word-spacing:-4.009285pt;}
.ws43{word-spacing:-3.995677pt;}
.ws40{word-spacing:-3.655619pt;}
.ws20{word-spacing:-3.246548pt;}
.ws19{word-spacing:-3.188366pt;}
.wsa{word-spacing:-0.076513pt;}
.ws2c{word-spacing:-0.063761pt;}
.ws5{word-spacing:-0.058182pt;}
.ws29{word-spacing:-0.053134pt;}
.ws39{word-spacing:-0.042507pt;}
.ws25{word-spacing:-0.031881pt;}
.ws3{word-spacing:0.000000pt;}
.ws28{word-spacing:0.159474pt;}
.ws26{word-spacing:0.170173pt;}
.ws24{word-spacing:0.170295pt;}
.ws2f{word-spacing:0.178779pt;}
.ws10{word-spacing:0.186182pt;}
.ws2e{word-spacing:0.188049pt;}
.ws2a{word-spacing:0.212608pt;}
.ws2b{word-spacing:0.234056pt;}
.ws2d{word-spacing:0.246727pt;}
.ws13{word-spacing:5.865994pt;}
.ws21{word-spacing:5.951008pt;}
.ws14{word-spacing:5.993515pt;}
.ws3b{word-spacing:6.078530pt;}
.wsc{word-spacing:6.163544pt;}
.wsf{word-spacing:6.206051pt;}
.wsd{word-spacing:6.248558pt;}
.ws1d{word-spacing:6.291066pt;}
.ws16{word-spacing:6.333573pt;}
.ws1b{word-spacing:6.376080pt;}
.ws38{word-spacing:6.418587pt;}
.ws3e{word-spacing:6.461094pt;}
.ws3a{word-spacing:6.503602pt;}
.ws1c{word-spacing:6.588616pt;}
.ws33{word-spacing:6.716138pt;}
.ws1e{word-spacing:6.843659pt;}
.ws36{word-spacing:6.928674pt;}
.ws37{word-spacing:7.013688pt;}
.ws3c{word-spacing:7.056195pt;}
.ws23{word-spacing:7.141210pt;}
.ws31{word-spacing:7.226224pt;}
.ws35{word-spacing:7.438760pt;}
.ws3d{word-spacing:12.794667pt;}
.ws27{word-spacing:15.005042pt;}
.ws18{word-spacing:17.640444pt;}
.ws7{word-spacing:19.200016pt;}
.ws9{word-spacing:19.258198pt;}
.ws15{word-spacing:25.334291pt;}
.wse{word-spacing:32.688037pt;}
.ws30{word-spacing:33.070602pt;}
.ws17{word-spacing:33.325645pt;}
.ws3f{word-spacing:33.793224pt;}
.ws44{word-spacing:33.835731pt;}
.ws42{word-spacing:33.963253pt;}
.ws32{word-spacing:34.600861pt;}
.ws41{word-spacing:34.940918pt;}
.ws6{word-spacing:35.563678pt;}
._0{margin-left:-9.110437pt;}
._18{margin-left:-7.220392pt;}
._e{margin-left:-4.770913pt;}
._15{margin-left:-3.570605pt;}
._1{margin-left:-2.065853pt;}
._4{margin-left:-1.134150pt;}
._11{width:1.134150pt;}
._3{width:2.065853pt;}
._8{width:3.528098pt;}
._7{width:4.420749pt;}
._c{width:5.993515pt;}
._b{width:6.988181pt;}
._f{width:8.254856pt;}
._d{width:9.716372pt;}
._14{width:11.119886pt;}
._6{width:19.258198pt;}
._10{width:20.189901pt;}
._5{width:25.716385pt;}
._17{width:28.352302pt;}
._13{width:29.585876pt;}
._2{width:32.365027pt;}
._a{width:33.920746pt;}
._9{width:34.855904pt;}
._12{width:36.003598pt;}
._16{width:38.894088pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs6{font-size:110.200000pt;}
.fs7{font-size:132.197867pt;}
.y140{bottom:-106.884000pt;}
.y10{bottom:-97.992000pt;}
.y13f{bottom:-94.264000pt;}
.y13e{bottom:-81.645333pt;}
.y13d{bottom:-69.025333pt;}
.yf{bottom:-58.248000pt;}
.y13c{bottom:-56.406667pt;}
.y13b{bottom:-43.786667pt;}
.y13a{bottom:-31.168000pt;}
.y139{bottom:-18.548000pt;}
.ye{bottom:-18.504000pt;}
.y79{bottom:-17.237333pt;}
.y138{bottom:-5.929333pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:4.813333pt;}
.y137{bottom:6.690667pt;}
.y195{bottom:7.465333pt;}
.y10d{bottom:14.138667pt;}
.ya6{bottom:14.581333pt;}
.y5e{bottom:14.706667pt;}
.y1a1{bottom:16.082667pt;}
.y59{bottom:17.153333pt;}
.y154{bottom:18.200000pt;}
.y98{bottom:18.897333pt;}
.y136{bottom:19.309333pt;}
.y25{bottom:19.894667pt;}
.yd{bottom:21.241333pt;}
.y6f{bottom:25.698667pt;}
.y123{bottom:25.852000pt;}
.y77{bottom:26.864000pt;}
.ya5{bottom:27.200000pt;}
.y194{bottom:29.516000pt;}
.y17f{bottom:29.612000pt;}
.y153{bottom:30.820000pt;}
.yf6{bottom:31.902667pt;}
.y135{bottom:31.929333pt;}
.y10c{bottom:35.380000pt;}
.yab{bottom:37.960000pt;}
.y1a0{bottom:38.133333pt;}
.y122{bottom:38.472000pt;}
.yc4{bottom:38.880000pt;}
.yb8{bottom:39.142667pt;}
.y58{bottom:39.204000pt;}
.ya4{bottom:39.820000pt;}
.y97{bottom:40.380000pt;}
.y24{bottom:41.945333pt;}
.y17e{bottom:42.232000pt;}
.y152{bottom:43.438667pt;}
.ycc{bottom:44.329333pt;}
.y134{bottom:44.548000pt;}
.y7a{bottom:46.964000pt;}
.y76{bottom:48.914667pt;}
.ydd{bottom:50.893333pt;}
.y193{bottom:51.566667pt;}
.ye2{bottom:51.942667pt;}
.yaa{bottom:53.900000pt;}
.yf5{bottom:53.953333pt;}
.y6e{bottom:53.965333pt;}
.y17a{bottom:54.850667pt;}
.y165{bottom:55.461333pt;}
.y151{bottom:56.058667pt;}
.y19f{bottom:56.198667pt;}
.y133{bottom:57.168000pt;}
.yc3{bottom:60.930667pt;}
.yc{bottom:60.985333pt;}
.yfa{bottom:60.993333pt;}
.y57{bottom:61.522667pt;}
.ydc{bottom:63.512000pt;}
.y121{bottom:63.710667pt;}
.y23{bottom:63.996000pt;}
.ye1{bottom:64.561333pt;}
.y40{bottom:66.332000pt;}
.y35{bottom:67.205333pt;}
.yb7{bottom:67.408000pt;}
.y179{bottom:67.470667pt;}
.ya3{bottom:68.085333pt;}
.y15d{bottom:68.306667pt;}
.y150{bottom:68.677333pt;}
.ycb{bottom:69.568000pt;}
.y116{bottom:69.972000pt;}
.y75{bottom:70.965333pt;}
.y66{bottom:73.397333pt;}
.yf9{bottom:73.613333pt;}
.y192{bottom:73.644000pt;}
.yf4{bottom:76.004000pt;}
.ydb{bottom:76.132000pt;}
.y88{bottom:76.318667pt;}
.y120{bottom:76.329333pt;}
.y6d{bottom:76.554667pt;}
.ye0{bottom:77.181333pt;}
.y164{bottom:77.512000pt;}
.y19e{bottom:78.249333pt;}
.y96{bottom:78.332000pt;}
.y3f{bottom:78.950667pt;}
.y178{bottom:80.089333pt;}
.y14f{bottom:81.297333pt;}
.y132{bottom:82.406667pt;}
.y115{bottom:82.590667pt;}
.yc2{bottom:83.249333pt;}
.y8d{bottom:84.604000pt;}
.y22{bottom:84.722667pt;}
.y65{bottom:86.016000pt;}
.yf8{bottom:86.232000pt;}
.y15c{bottom:86.372000pt;}
.y16d{bottom:88.580000pt;}
.yda{bottom:88.750667pt;}
.y11f{bottom:88.949333pt;}
.y34{bottom:89.256000pt;}
.ydf{bottom:89.800000pt;}
.y3e{bottom:91.570667pt;}
.y177{bottom:92.709333pt;}
.y74{bottom:93.016000pt;}
.y14e{bottom:93.916000pt;}
.y6c{bottom:94.621333pt;}
.y131{bottom:95.025333pt;}
.y114{bottom:95.210667pt;}
.y45{bottom:95.516000pt;}
.y109{bottom:95.994667pt;}
.y1c{bottom:97.734667pt;}
.yf3{bottom:98.054667pt;}
.y87{bottom:98.369333pt;}
.y64{bottom:98.636000pt;}
.y17d{bottom:98.686667pt;}
.yd6{bottom:98.850667pt;}
.yf7{bottom:98.852000pt;}
.y5a{bottom:99.313333pt;}
.y163{bottom:99.562667pt;}
.y19d{bottom:100.300000pt;}
.y95{bottom:100.382667pt;}
.y53{bottom:100.656000pt;}
.yb{bottom:100.729333pt;}
.yca{bottom:101.620000pt;}
.ya2{bottom:102.157333pt;}
.y189{bottom:102.238667pt;}
.yb6{bottom:102.288000pt;}
.yec{bottom:102.604000pt;}
.y3d{bottom:104.189333pt;}
.y191{bottom:104.373333pt;}
.y15b{bottom:104.437333pt;}
.y14d{bottom:106.536000pt;}
.y8c{bottom:106.654667pt;}
.y190{bottom:107.605333pt;}
.y130{bottom:107.645333pt;}
.y113{bottom:107.829333pt;}
.y108{bottom:108.614667pt;}
.y16c{bottom:110.630667pt;}
.y63{bottom:111.254667pt;}
.y33{bottom:111.306667pt;}
.yd5{bottom:111.470667pt;}
.y4b{bottom:111.881333pt;}
.y11e{bottom:114.188000pt;}
.y73{bottom:115.066667pt;}
.y3c{bottom:116.809333pt;}
.y44{bottom:117.566667pt;}
.ybe{bottom:118.213333pt;}
.ye4{bottom:118.401333pt;}
.y52{bottom:118.721333pt;}
.y14c{bottom:119.154667pt;}
.y1b{bottom:119.785333pt;}
.y21{bottom:119.952000pt;}
.y12f{bottom:120.264000pt;}
.yb5{bottom:120.353333pt;}
.y86{bottom:120.420000pt;}
.y112{bottom:120.449333pt;}
.y107{bottom:121.233333pt;}
.yd9{bottom:121.610667pt;}
.yde{bottom:121.852000pt;}
.y182{bottom:121.854667pt;}
.y162{bottom:121.881333pt;}
.y19c{bottom:122.350667pt;}
.y94{bottom:122.460000pt;}
.y176{bottom:123.925333pt;}
.yd4{bottom:124.090667pt;}
.ya1{bottom:124.208000pt;}
.yeb{bottom:124.654667pt;}
.y15a{bottom:126.514667pt;}
.y11d{bottom:126.806667pt;}
.y188{bottom:127.477333pt;}
.y8b{bottom:128.705333pt;}
.y183{bottom:129.068000pt;}
.y3b{bottom:129.428000pt;}
.y18f{bottom:129.656000pt;}
.y14b{bottom:131.774667pt;}
.y16b{bottom:132.681333pt;}
.y80{bottom:132.877333pt;}
.y12e{bottom:132.884000pt;}
.y111{bottom:133.068000pt;}
.y6b{bottom:133.096000pt;}
.y32{bottom:133.357333pt;}
.y106{bottom:133.853333pt;}
.y9d{bottom:133.904000pt;}
.yce{bottom:134.022667pt;}
.yd3{bottom:136.709333pt;}
.y72{bottom:137.385333pt;}
.y11c{bottom:139.426667pt;}
.y43{bottom:139.617333pt;}
.y187{bottom:140.096000pt;}
.ye3{bottom:140.452000pt;}
.ya{bottom:140.473333pt;}
.yc9{bottom:140.484000pt;}
.yb0{bottom:141.569333pt;}
.y17c{bottom:141.686667pt;}
.y1a{bottom:141.836000pt;}
.y20{bottom:142.002667pt;}
.yb4{bottom:142.404000pt;}
.y85{bottom:142.470667pt;}
.y62{bottom:143.306667pt;}
.y4a{bottom:143.932000pt;}
.y14a{bottom:144.393333pt;}
.y19b{bottom:144.428000pt;}
.y51{bottom:144.757333pt;}
.y12d{bottom:145.502667pt;}
.y110{bottom:145.688000pt;}
.y181{bottom:145.898667pt;}
.ybd{bottom:146.108000pt;}
.ya0{bottom:146.258667pt;}
.y9c{bottom:146.524000pt;}
.yea{bottom:146.705333pt;}
.yf2{bottom:149.329333pt;}
.y2c{bottom:149.726667pt;}
.y8a{bottom:150.756000pt;}
.y18e{bottom:151.706667pt;}
.y17b{bottom:154.306667pt;}
.y31{bottom:155.408000pt;}
.y149{bottom:157.013333pt;}
.y93{bottom:157.070667pt;}
.y50{bottom:157.377333pt;}
.y12c{bottom:158.122667pt;}
.y10f{bottom:158.306667pt;}
.y6a{bottom:158.334667pt;}
.y166{bottom:159.938667pt;}
.yb3{bottom:160.469333pt;}
.ycd{bottom:161.452000pt;}
.y3a{bottom:161.480000pt;}
.y42{bottom:161.668000pt;}
.y19{bottom:161.694667pt;}
.yd2{bottom:161.948000pt;}
.y16a{bottom:162.209333pt;}
.y2b{bottom:162.346667pt;}
.y180{bottom:162.502667pt;}
.yc8{bottom:162.534667pt;}
.y1f{bottom:162.729333pt;}
.yaf{bottom:163.620000pt;}
.y159{bottom:163.737333pt;}
.y84{bottom:164.521333pt;}
.y7f{bottom:164.929333pt;}
.y186{bottom:165.336000pt;}
.y5{bottom:166.714667pt;}
.y173{bottom:166.925333pt;}
.y11b{bottom:167.692000pt;}
.y9f{bottom:168.336000pt;}
.ybc{bottom:168.690667pt;}
.ye9{bottom:168.756000pt;}
.y148{bottom:169.632000pt;}
.yf0{bottom:170.184000pt;}
.y12b{bottom:170.741333pt;}
.y169{bottom:170.828000pt;}
.y105{bottom:171.712000pt;}
.y89{bottom:172.806667pt;}
.y18d{bottom:173.784000pt;}
.yc1{bottom:174.308000pt;}
.yf1{bottom:174.568000pt;}
.y2a{bottom:174.965333pt;}
.y30{bottom:177.458667pt;}
.y185{bottom:177.954667pt;}
.yd8{bottom:177.974667pt;}
.y61{bottom:178.536000pt;}
.y9b{bottom:178.574667pt;}
.y92{bottom:179.121333pt;}
.y19a{bottom:179.308000pt;}
.y172{bottom:179.545333pt;}
.y9{bottom:180.218667pt;}
.y158{bottom:180.341333pt;}
.y71{bottom:180.385333pt;}
.y49{bottom:181.989333pt;}
.y147{bottom:182.252000pt;}
.yb2{bottom:182.520000pt;}
.y12a{bottom:183.361333pt;}
.y41{bottom:183.745333pt;}
.yc7{bottom:184.853333pt;}
.yae{bottom:185.670667pt;}
.y10e{bottom:186.572000pt;}
.yd1{bottom:187.186667pt;}
.y29{bottom:187.585333pt;}
.ybb{bottom:188.616000pt;}
.y4f{bottom:189.428000pt;}
.y69{bottom:190.386667pt;}
.y175{bottom:190.574667pt;}
.ye8{bottom:190.806667pt;}
.y171{bottom:192.164000pt;}
.yef{bottom:192.234667pt;}
.y168{bottom:192.878667pt;}
.y83{bottom:194.049333pt;}
.y146{bottom:194.870667pt;}
.y129{bottom:195.980000pt;}
.y2f{bottom:199.509333pt;}
.y14{bottom:199.750667pt;}
.yd0{bottom:199.806667pt;}
.yd7{bottom:200.025333pt;}
.y157{bottom:200.266667pt;}
.y1e{bottom:200.270667pt;}
.y39{bottom:200.345333pt;}
.y60{bottom:200.586667pt;}
.y91{bottom:201.172000pt;}
.y199{bottom:201.358667pt;}
.y11a{bottom:202.150667pt;}
.y9e{bottom:202.408000pt;}
.y184{bottom:203.193333pt;}
.yad{bottom:203.736000pt;}
.y104{bottom:203.762667pt;}
.y48{bottom:204.040000pt;}
.yb1{bottom:204.570667pt;}
.y170{bottom:204.784000pt;}
.y7e{bottom:205.472000pt;}
.y145{bottom:207.490667pt;}
.y18c{bottom:208.260000pt;}
.yba{bottom:208.541333pt;}
.y128{bottom:208.600000pt;}
.y167{bottom:210.944000pt;}
.ycf{bottom:212.425333pt;}
.y70{bottom:212.437333pt;}
.ye7{bottom:212.857333pt;}
.yee{bottom:214.285333pt;}
.y28{bottom:215.016000pt;}
.y174{bottom:215.813333pt;}
.y16f{bottom:217.402667pt;}
.yc0{bottom:218.144000pt;}
.y8{bottom:219.962667pt;}
.y144{bottom:220.109333pt;}
.y127{bottom:221.218667pt;}
.y2e{bottom:221.560000pt;}
.y13{bottom:221.801333pt;}
.y7d{bottom:222.076000pt;}
.y156{bottom:222.317333pt;}
.y38{bottom:222.396000pt;}
.y4{bottom:222.494667pt;}
.y5f{bottom:222.637333pt;}
.yc6{bottom:222.910667pt;}
.y90{bottom:223.222667pt;}
.y198{bottom:223.409333pt;}
.y119{bottom:224.201333pt;}
.y68{bottom:224.458667pt;}
.y4e{bottom:224.576000pt;}
.y9a{bottom:225.045333pt;}
.y5d{bottom:225.293333pt;}
.yac{bottom:225.786667pt;}
.yb9{bottom:226.542667pt;}
.y82{bottom:226.621333pt;}
.y47{bottom:228.082667pt;}
.y1d{bottom:229.798667pt;}
.y18b{bottom:230.310667pt;}
.y143{bottom:232.729333pt;}
.yfd{bottom:232.994667pt;}
.y126{bottom:233.838667pt;}
.ye6{bottom:234.100000pt;}
.y99{bottom:237.664000pt;}
.yed{bottom:240.321333pt;}
.y2d{bottom:243.610667pt;}
.y12{bottom:243.852000pt;}
.y7c{bottom:244.126667pt;}
.y155{bottom:244.368000pt;}
.y37{bottom:244.446667pt;}
.y46{bottom:244.688000pt;}
.yc5{bottom:244.961333pt;}
.y8f{bottom:245.273333pt;}
.y142{bottom:245.348000pt;}
.y197{bottom:245.460000pt;}
.y118{bottom:246.252000pt;}
.y125{bottom:246.457333pt;}
.y67{bottom:246.509333pt;}
.y4d{bottom:246.626667pt;}
.y27{bottom:247.076000pt;}
.y5c{bottom:247.344000pt;}
.y81{bottom:247.864000pt;}
.ybf{bottom:248.380000pt;}
.y16e{bottom:248.618667pt;}
.y18a{bottom:251.036000pt;}
.yfc{bottom:251.060000pt;}
.y141{bottom:257.968000pt;}
.y124{bottom:259.077333pt;}
.y7{bottom:259.706667pt;}
.y11{bottom:265.929333pt;}
.y7b{bottom:266.445333pt;}
.y8e{bottom:266.514667pt;}
.y4c{bottom:267.869333pt;}
.y117{bottom:268.329333pt;}
.y196{bottom:268.345333pt;}
.y5b{bottom:268.586667pt;}
.y26{bottom:269.126667pt;}
.ye5{bottom:270.586667pt;}
.yfb{bottom:273.110667pt;}
.y3{bottom:276.141333pt;}
.y1{bottom:280.286667pt;}
.y2{bottom:284.174667pt;}
.y36{bottom:316.018667pt;}
.y6{bottom:319.737333pt;}
.y10b{bottom:2680.839720pt;}
.y56{bottom:2683.854387pt;}
.y10a{bottom:2702.081053pt;}
.ya9{bottom:2704.661053pt;}
.y55{bottom:2705.905053pt;}
.ya8{bottom:2720.601053pt;}
.y54{bottom:2728.223720pt;}
.y103{bottom:2762.695720pt;}
.y18{bottom:2764.435720pt;}
.y102{bottom:2775.315720pt;}
.y17{bottom:2786.486387pt;}
.y101{bottom:2787.934387pt;}
.y100{bottom:2800.554387pt;}
.y16{bottom:2808.537053pt;}
.y161{bottom:2826.639720pt;}
.y15{bottom:2828.395720pt;}
.yff{bottom:2838.413053pt;}
.y160{bottom:2848.690387pt;}
.yfe{bottom:2870.463720pt;}
.y15f{bottom:2870.741053pt;}
.y15e{bottom:2894.783720pt;}
.ya7{bottom:2914.565053pt;}
.h9{height:29.585011pt;}
.hb{height:31.930201pt;}
.ha{height:31.935534pt;}
.h3{height:39.903534pt;}
.h8{height:40.371920pt;}
.he{height:40.436397pt;}
.h7{height:45.257253pt;}
.h6{height:45.262587pt;}
.h5{height:49.454587pt;}
.h2{height:55.318947pt;}
.hf{height:62.382587pt;}
.h4{height:71.900281pt;}
.hc{height:78.572600pt;}
.hd{height:91.348726pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x7{left:21.870667pt;}
.x29{left:25.197333pt;}
.x41{left:32.534667pt;}
.xe{left:34.016000pt;}
.x9{left:35.384000pt;}
.x8{left:38.205333pt;}
.x42{left:39.306667pt;}
.x17{left:41.780000pt;}
.x23{left:43.613333pt;}
.x1a{left:45.198667pt;}
.x3c{left:46.200000pt;}
.x46{left:48.650667pt;}
.xd{left:50.809333pt;}
.x21{left:52.244000pt;}
.x33{left:53.368000pt;}
.x14{left:54.272000pt;}
.x1b{left:56.238667pt;}
.x16{left:58.466667pt;}
.x12{left:62.200000pt;}
.xf{left:63.106667pt;}
.x11{left:64.408000pt;}
.x22{left:65.994667pt;}
.xa{left:66.886667pt;}
.x3e{left:67.861333pt;}
.x13{left:68.824000pt;}
.x3d{left:70.056000pt;}
.x4e{left:71.434667pt;}
.x20{left:72.970667pt;}
.x44{left:76.552000pt;}
.x15{left:77.957333pt;}
.x45{left:79.229333pt;}
.x10{left:81.369333pt;}
.x4d{left:82.474667pt;}
.x4b{left:83.805333pt;}
.x1f{left:84.818667pt;}
.x1d{left:88.094667pt;}
.x28{left:90.708000pt;}
.x47{left:92.544000pt;}
.x1e{left:93.814667pt;}
.x32{left:94.880000pt;}
.x31{left:104.152000pt;}
.x30{left:105.550667pt;}
.x36{left:108.060000pt;}
.x24{left:120.658667pt;}
.x1{left:121.690667pt;}
.x2{left:124.981333pt;}
.x50{left:128.117333pt;}
.x3{left:131.101333pt;}
.x4{left:140.452000pt;}
.x26{left:144.642667pt;}
.x4c{left:146.257333pt;}
.x35{left:170.078667pt;}
.x1c{left:194.846667pt;}
.x25{left:208.264000pt;}
.x27{left:217.813333pt;}
.x6{left:233.145333pt;}
.x5{left:234.873333pt;}
.x19{left:248.834667pt;}
.x4f{left:262.044000pt;}
.x2a{left:314.961333pt;}
.x43{left:322.298667pt;}
.x2c{left:326.720000pt;}
.x2e{left:329.810667pt;}
.x2d{left:332.441333pt;}
.x2b{left:341.172000pt;}
.x2f{left:343.480000pt;}
.x39{left:346.270667pt;}
.x3b{left:351.912000pt;}
.x38{left:352.914667pt;}
.x40{left:359.322667pt;}
.x3f{left:362.048000pt;}
.x37{left:369.756000pt;}
.x3a{left:397.824000pt;}
.xb{left:2704.495720pt;}
.xc{left:2717.510387pt;}
.x48{left:2718.889053pt;}
.x18{left:2733.587720pt;}
.x4a{left:2748.763720pt;}
.x49{left:2757.409053pt;}
.x34{left:2836.779720pt;}
}




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