
    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_650140ecc837f7a5fd3363c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_45b34fd3b7236ffb465a0a8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_3f9f3474eb6b2b5de8be201a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_cc9f88ecb22fc70db746e1f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_cb909ca29fa8f3b61a6c18f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_fc499ba758fbe7b1b8b342f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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;}
.m4{transform:matrix(0.000000,-0.260712,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.260712,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.260712,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.228524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228524,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.239729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239729,0.000000,0.000000,0.250000,0,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);}
.m6{transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252437,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.272876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272876,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);}
.v2{vertical-align:-23.576257px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.778627px;}
.v1{vertical-align:29.157362px;}
.lsb{letter-spacing:-1.422000px;}
.lsc{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.810000px;}
.ls6{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.507000px;}
.lsa{letter-spacing:-0.486600px;}
.ls24{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.250800px;}
.ls26{letter-spacing:-0.015840px;}
.lsd{letter-spacing:-0.015600px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.lse{letter-spacing:0.015600px;}
.ls3{letter-spacing:0.015840px;}
.ls0{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.020400px;}
.ls16{letter-spacing:0.027293px;}
.ls19{letter-spacing:0.028463px;}
.ls17{letter-spacing:0.053877px;}
.ls11{letter-spacing:0.250800px;}
.ls13{letter-spacing:0.457800px;}
.ls15{letter-spacing:0.466800px;}
.ls8{letter-spacing:0.498000px;}
.ls12{letter-spacing:0.507000px;}
.ls18{letter-spacing:0.548760px;}
.ls21{letter-spacing:0.621120px;}
.ls9{letter-spacing:0.630000px;}
.ls1e{letter-spacing:0.665280px;}
.ls2{letter-spacing:0.720000px;}
.ls10{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.188000px;}
.ls1f{letter-spacing:3.960000px;}
.ls22{letter-spacing:15.480000px;}
.ls14{letter-spacing:26.386560px;}
.ls1a{letter-spacing:26.506560px;}
.ls1d{letter-spacing:31.429440px;}
.ls1b{letter-spacing:33.586560px;}
.ls1c{letter-spacing:33.706560px;}
.ls20{letter-spacing:57.240000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-60.480000px;}
.ws7{word-spacing:-29.880000px;}
.ws14{word-spacing:-18.234680px;}
.wse{word-spacing:-17.017800px;}
.ws11{word-spacing:-15.586800px;}
.ws8{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.633400px;}
.ws1c{word-spacing:-14.613000px;}
.ws5{word-spacing:-14.310000px;}
.ws1b{word-spacing:-14.239304px;}
.wsd{word-spacing:-14.184000px;}
.ws9{word-spacing:-13.698000px;}
.ws3{word-spacing:-13.680000px;}
.ws1a{word-spacing:-13.128057px;}
.ws19{word-spacing:-13.114411px;}
.ws18{word-spacing:-13.040069px;}
.ws4{word-spacing:-12.870000px;}
.ws2{word-spacing:-12.600000px;}
.ws1e{word-spacing:-12.545280px;}
.ws13{word-spacing:-12.156332px;}
.wsc{word-spacing:-12.130800px;}
.wsb{word-spacing:-11.895600px;}
.ws1{word-spacing:-11.880000px;}
.wsa{word-spacing:-11.864400px;}
.ws1f{word-spacing:-11.864160px;}
.ws12{word-spacing:-10.130459px;}
.ws15{word-spacing:-8.693380px;}
.wsf{word-spacing:0.000000px;}
.ws6{word-spacing:29.773080px;}
.ws17{word-spacing:234.857976px;}
.ws16{word-spacing:442.007579px;}
._2a{margin-left:-13.167060px;}
._2b{margin-left:-8.833854px;}
._2f{margin-left:-4.411227px;}
._12{margin-left:-3.087536px;}
._0{margin-left:-2.056199px;}
._2{margin-left:-1.026588px;}
._1{width:1.450794px;}
._3{width:2.604851px;}
._11{width:3.701448px;}
._6{width:5.135664px;}
._4{width:6.163848px;}
._10{width:7.170631px;}
._5{width:8.348999px;}
._9{width:10.234154px;}
._7{width:11.406248px;}
._8{width:12.612738px;}
._20{width:14.091598px;}
._25{width:16.394345px;}
._16{width:17.478599px;}
._17{width:18.930603px;}
._15{width:20.321401px;}
._14{width:22.127040px;}
._23{width:23.227134px;}
._2e{width:24.726548px;}
._f{width:25.768796px;}
._26{width:27.393608px;}
._1f{width:28.849202px;}
._e{width:29.854233px;}
._d{width:30.922284px;}
._24{width:31.940474px;}
._13{width:33.445858px;}
._1c{width:34.690615px;}
._1a{width:35.969046px;}
._1b{width:37.255196px;}
._c{width:40.553647px;}
._b{width:41.668546px;}
._a{width:43.041643px;}
._1d{width:44.271602px;}
._36{width:46.287360px;}
._27{width:47.621366px;}
._19{width:48.626404px;}
._18{width:51.380289px;}
._39{width:56.738646px;}
._3a{width:58.041120px;}
._29{width:62.101448px;}
._28{width:63.140999px;}
._2c{width:69.068160px;}
._2d{width:71.668800px;}
._1e{width:73.725703px;}
._34{width:77.958720px;}
._35{width:79.039196px;}
._33{width:86.304960px;}
._32{width:87.701537px;}
._22{width:89.048742px;}
._21{width:90.348609px;}
._3b{width:91.970400px;}
._38{width:100.494478px;}
._37{width:102.113280px;}
._30{width:447.512226px;}
._31{width:460.065814px;}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(44,31,209);}
.fc3{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:18.720000px;}
.fsa{font-size:34.773518px;}
.fs7{font-size:40.521835px;}
.fs9{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs6{font-size:48.625327px;}
.fsb{font-size:52.160277px;}
.fsd{font-size:52.457642px;}
.fse{font-size:52.512229px;}
.fs2{font-size:54.720000px;}
.fsf{font-size:54.762174px;}
.fs10{font-size:54.819100px;}
.fs0{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs8{font-size:72.938720px;}
.fs12{font-size:77.771379px;}
.fs11{font-size:97.153655px;}
.fs3{font-size:119.520000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.520000px;}
.y10a{bottom:3.390417px;}
.y109{bottom:3.390422px;}
.y108{bottom:3.390427px;}
.y107{bottom:3.390432px;}
.y106{bottom:3.390437px;}
.y105{bottom:3.390442px;}
.y104{bottom:3.390446px;}
.y103{bottom:3.390451px;}
.y102{bottom:3.390456px;}
.y101{bottom:3.390461px;}
.y100{bottom:3.390466px;}
.yff{bottom:3.390470px;}
.yfe{bottom:3.390475px;}
.yfd{bottom:3.390480px;}
.yfc{bottom:3.390485px;}
.y72{bottom:3.600000px;}
.y75{bottom:7.920000px;}
.yc{bottom:8.280000px;}
.y9{bottom:9.396000px;}
.yda{bottom:9.613082px;}
.y4{bottom:12.276000px;}
.y96{bottom:14.630825px;}
.y7{bottom:16.560000px;}
.y3{bottom:19.116000px;}
.yd9{bottom:20.045053px;}
.yb{bottom:22.320000px;}
.y6{bottom:30.240000px;}
.y8d{bottom:32.095589px;}
.ya{bottom:36.000000px;}
.yd3{bottom:42.418152px;}
.y114{bottom:43.821768px;}
.y5{bottom:43.920000px;}
.y74{bottom:49.320000px;}
.y10e{bottom:49.599693px;}
.ydc{bottom:51.699133px;}
.yd2{bottom:52.850994px;}
.y11b{bottom:52.891051px;}
.ydb{bottom:62.131106px;}
.y113{bottom:65.441442px;}
.yd1{bottom:71.958889px;}
.y95{bottom:73.906209px;}
.ye0{bottom:75.992588px;}
.yd0{bottom:78.426703px;}
.yfa{bottom:80.316000px;}
.y136{bottom:81.036000px;}
.ye6{bottom:82.308261px;}
.y112{bottom:86.048414px;}
.ydf{bottom:86.424561px;}
.y94{bottom:88.493952px;}
.yb5{bottom:88.596000px;}
.ye5{bottom:92.740234px;}
.y42{bottom:93.276000px;}
.ycf{bottom:95.535146px;}
.y10d{bottom:96.636512px;}
.yf9{bottom:98.316000px;}
.yeb{bottom:99.364552px;}
.y135{bottom:99.396000px;}
.y92{bottom:100.645317px;}
.yb4{bottom:106.596000px;}
.y41{bottom:107.316000px;}
.ye4{bottom:107.444967px;}
.y111{bottom:107.919130px;}
.yea{bottom:109.796525px;}
.y10c{bottom:113.070856px;}
.yc5{bottom:113.769359px;}
.y70{bottom:115.236000px;}
.yf8{bottom:116.676000px;}
.y134{bottom:117.396000px;}
.ye3{bottom:117.876940px;}
.y40{bottom:120.996000px;}
.yc7{bottom:123.727541px;}
.y91{bottom:124.340295px;}
.yb3{bottom:124.596000px;}
.yc6{bottom:126.870182px;}
.y110{bottom:129.453985px;}
.yde{bottom:132.633850px;}
.yc4{bottom:134.633303px;}
.yf7{bottom:134.712000px;}
.y6f{bottom:135.432000px;}
.ye2{bottom:136.776195px;}
.y90{bottom:138.928037px;}
.yd5{bottom:140.036198px;}
.yb2{bottom:142.992000px;}
.ydd{bottom:143.065823px;}
.yd4{bottom:144.817510px;}
.yc3{bottom:145.065275px;}
.ye1{bottom:147.208167px;}
.y3f{bottom:148.392000px;}
.yc9{bottom:150.989770px;}
.y10f{bottom:151.324700px;}
.yf6{bottom:152.715000px;}
.y133{bottom:153.795000px;}
.y6e{bottom:155.235000px;}
.ycb{bottom:156.301373px;}
.yb1{bottom:160.995000px;}
.yc8{bottom:161.421742px;}
.y3e{bottom:162.435000px;}
.yd6{bottom:163.916719px;}
.yca{bottom:166.733346px;}
.yf5{bottom:170.715000px;}
.y132{bottom:171.795000px;}
.y10b{bottom:173.184011px;}
.ye8{bottom:173.301149px;}
.y93{bottom:174.399541px;}
.y6d{bottom:175.035000px;}
.y3d{bottom:176.115000px;}
.yb0{bottom:178.995000px;}
.ye7{bottom:185.784744px;}
.yce{bottom:187.501663px;}
.yf4{bottom:189.075000px;}
.y3c{bottom:189.795000px;}
.y6c{bottom:194.835000px;}
.y8b{bottom:196.721833px;}
.yaf{bottom:196.995000px;}
.yd7{bottom:197.881477px;}
.y88{bottom:202.800049px;}
.y8f{bottom:202.800072px;}
.ycd{bottom:203.827708px;}
.y3b{bottom:203.835000px;}
.yf3{bottom:207.075000px;}
.y131{bottom:207.795000px;}
.y8c{bottom:208.878267px;}
.y8a{bottom:208.878288px;}
.y11a{bottom:209.805110px;}
.ycc{bottom:214.259681px;}
.y6b{bottom:214.635000px;}
.y87{bottom:214.956502px;}
.y8e{bottom:214.956523px;}
.yd8{bottom:215.050768px;}
.yae{bottom:215.355000px;}
.y3a{bottom:218.235000px;}
.y89{bottom:221.034738px;}
.yf2{bottom:225.075000px;}
.y130{bottom:226.155000px;}
.ye9{bottom:230.572672px;}
.yad{bottom:233.355000px;}
.y6a{bottom:234.435000px;}
.y39{bottom:235.155000px;}
.yf1{bottom:243.435000px;}
.y86{bottom:243.458336px;}
.y38{bottom:250.635000px;}
.yac{bottom:251.355000px;}
.y166{bottom:253.875000px;}
.y69{bottom:254.235000px;}
.yf0{bottom:258.555000px;}
.y12f{bottom:260.715000px;}
.y37{bottom:266.145000px;}
.y165{bottom:268.305000px;}
.yab{bottom:269.745000px;}
.yef{bottom:271.545000px;}
.y68{bottom:274.065000px;}
.y36{bottom:281.625000px;}
.y164{bottom:285.585000px;}
.y12e{bottom:286.665000px;}
.yaa{bottom:287.745000px;}
.yee{bottom:288.825000px;}
.y67{bottom:293.865000px;}
.y163{bottom:302.865000px;}
.ya9{bottom:305.745000px;}
.yed{bottom:306.105000px;}
.y66{bottom:313.665000px;}
.y162{bottom:320.145000px;}
.y12d{bottom:323.025000px;}
.ya8{bottom:323.745000px;}
.yec{bottom:326.265000px;}
.yc2{bottom:326.324980px;}
.y35{bottom:328.425000px;}
.y65{bottom:333.465000px;}
.y161{bottom:337.425000px;}
.y12c{bottom:341.025000px;}
.ya7{bottom:342.105000px;}
.y34{bottom:346.425000px;}
.y64{bottom:353.265000px;}
.y160{bottom:354.705000px;}
.ya6{bottom:360.105000px;}
.y33{bottom:364.425000px;}
.y12b{bottom:367.305000px;}
.y15f{bottom:371.985000px;}
.y63{bottom:373.065000px;}
.ya5{bottom:378.105000px;}
.y32{bottom:382.785000px;}
.y15e{bottom:389.265000px;}
.y62{bottom:392.865000px;}
.ya4{bottom:396.105000px;}
.y31{bottom:400.830000px;}
.y12a{bottom:403.350000px;}
.y15d{bottom:406.230000px;}
.y61{bottom:412.710000px;}
.ya3{bottom:414.510000px;}
.y30{bottom:418.830000px;}
.y15c{bottom:420.630000px;}
.y129{bottom:421.350000px;}
.y60{bottom:432.510000px;}
.y2f{bottom:436.830000px;}
.y128{bottom:439.710000px;}
.ya2{bottom:450.510000px;}
.y5f{bottom:452.310000px;}
.y2e{bottom:455.190000px;}
.y127{bottom:457.710000px;}
.y15b{bottom:464.550000px;}
.ya1{bottom:468.510000px;}
.y5e{bottom:472.110000px;}
.y2d{bottom:473.190000px;}
.y126{bottom:475.710000px;}
.y15a{bottom:478.230000px;}
.ya0{bottom:486.870000px;}
.y159{bottom:491.910000px;}
.y5d{bottom:492.270000px;}
.y125{bottom:493.710000px;}
.y2c{bottom:495.150000px;}
.y9f{bottom:504.870000px;}
.y158{bottom:505.590000px;}
.y5c{bottom:512.070000px;}
.y157{bottom:519.630000px;}
.y9e{bottom:522.870000px;}
.y124{bottom:530.070000px;}
.y5b{bottom:531.870000px;}
.y156{bottom:533.340000px;}
.y2b{bottom:535.500000px;}
.y9d{bottom:541.260000px;}
.y155{bottom:547.020000px;}
.y123{bottom:548.100000px;}
.y5a{bottom:551.700000px;}
.y9c{bottom:559.260000px;}
.y154{bottom:561.060000px;}
.y122{bottom:566.100000px;}
.y2a{bottom:570.420000px;}
.y59{bottom:571.500000px;}
.y153{bottom:574.740000px;}
.yc1{bottom:576.900000px;}
.y9b{bottom:577.260000px;}
.y121{bottom:584.460000px;}
.y29{bottom:585.900000px;}
.y58{bottom:591.300000px;}
.y9a{bottom:595.260000px;}
.yc0{bottom:595.980000px;}
.y152{bottom:598.140000px;}
.y28{bottom:601.740000px;}
.y120{bottom:602.460000px;}
.y57{bottom:611.100000px;}
.ybf{bottom:613.260000px;}
.y27{bottom:617.220000px;}
.y99{bottom:618.660000px;}
.y11f{bottom:620.460000px;}
.y56{bottom:630.900000px;}
.y26{bottom:632.700000px;}
.y98{bottom:635.940000px;}
.ybe{bottom:645.300000px;}
.y151{bottom:646.380000px;}
.y11e{bottom:646.740000px;}
.y25{bottom:648.180000px;}
.y55{bottom:650.700000px;}
.y97{bottom:653.220000px;}
.ybd{bottom:657.180000px;}
.y150{bottom:660.420000px;}
.y24{bottom:663.660000px;}
.y54{bottom:670.530000px;}
.y14f{bottom:674.130000px;}
.y85{bottom:679.124959px;}
.y23{bottom:679.170000px;}
.y11d{bottom:687.810000px;}
.y53{bottom:688.530000px;}
.y22{bottom:694.650000px;}
.y14e{bottom:701.850000px;}
.y52{bottom:706.890000px;}
.y119{bottom:708.299919px;}
.y11c{bottom:708.330000px;}
.y14d{bottom:715.530000px;}
.y21{bottom:716.250000px;}
.y51{bottom:724.890000px;}
.y14c{bottom:729.210000px;}
.y20{bottom:731.730000px;}
.y50{bottom:742.890000px;}
.y14b{bottom:743.250000px;}
.y1f{bottom:753.330000px;}
.y14a{bottom:756.930000px;}
.y4f{bottom:760.890000px;}
.y1e{bottom:768.810000px;}
.y149{bottom:770.610000px;}
.y4e{bottom:779.250000px;}
.ybc{bottom:782.850000px;}
.y1d{bottom:784.290000px;}
.ybb{bottom:794.730000px;}
.y4d{bottom:797.250000px;}
.y148{bottom:798.330000px;}
.y1c{bottom:799.815000px;}
.y147{bottom:812.055000px;}
.y1b{bottom:815.295000px;}
.y146{bottom:825.735000px;}
.y1a{bottom:830.775000px;}
.y4c{bottom:833.295000px;}
.y145{bottom:839.775000px;}
.y19{bottom:846.255000px;}
.y4b{bottom:851.655000px;}
.y144{bottom:853.455000px;}
.y18{bottom:861.735000px;}
.y143{bottom:867.135000px;}
.y4a{bottom:869.655000px;}
.y17{bottom:877.215000px;}
.y142{bottom:881.175000px;}
.y49{bottom:887.655000px;}
.y16{bottom:892.695000px;}
.y141{bottom:894.855000px;}
.y48{bottom:906.015000px;}
.y15{bottom:908.535000px;}
.y140{bottom:922.215000px;}
.y14{bottom:924.015000px;}
.yba{bottom:935.205000px;}
.y13f{bottom:936.285000px;}
.y13{bottom:939.525000px;}
.y47{bottom:942.045000px;}
.y118{bottom:943.485000px;}
.yb9{bottom:947.085000px;}
.y84{bottom:947.805000px;}
.y13e{bottom:949.965000px;}
.y12{bottom:955.005000px;}
.y46{bottom:960.045000px;}
.y117{bottom:963.645000px;}
.y83{bottom:965.805000px;}
.y11{bottom:970.485000px;}
.y13d{bottom:977.685000px;}
.y45{bottom:978.405000px;}
.y116{bottom:980.925000px;}
.y82{bottom:984.165000px;}
.y10{bottom:985.965000px;}
.y13c{bottom:991.365000px;}
.y44{bottom:996.405000px;}
.yfb{bottom:1000.949919px;}
.y115{bottom:1001.085000px;}
.yf{bottom:1001.445000px;}
.y81{bottom:1002.165000px;}
.y13b{bottom:1005.045000px;}
.y43{bottom:1014.405000px;}
.ye{bottom:1016.925000px;}
.y80{bottom:1020.165000px;}
.y13a{bottom:1028.445000px;}
.yd{bottom:1032.405000px;}
.y7f{bottom:1038.525000px;}
.y7e{bottom:1056.525000px;}
.y71{bottom:1060.485000px;}
.y139{bottom:1064.445000px;}
.y7d{bottom:1074.570000px;}
.y138{bottom:1082.850000px;}
.y7c{bottom:1092.570000px;}
.y137{bottom:1100.850000px;}
.y73{bottom:1104.450000px;}
.y7b{bottom:1110.930000px;}
.yb8{bottom:1118.850000px;}
.y7a{bottom:1128.930000px;}
.yb7{bottom:1136.850000px;}
.y79{bottom:1146.930000px;}
.yb6{bottom:1155.210000px;}
.y78{bottom:1173.210000px;}
.y77{bottom:1214.640000px;}
.y2{bottom:1217.520000px;}
.y76{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.h1f{height:13.208203px;}
.hf{height:19.116000px;}
.h1a{height:24.535026px;}
.h16{height:28.590846px;}
.h18{height:29.158594px;}
.hc{height:33.180469px;}
.hd{height:33.528516px;}
.h15{height:34.308397px;}
.h29{height:34.595859px;}
.h5{height:36.150469px;}
.h1e{height:36.802539px;}
.h21{height:37.012350px;}
.h22{height:37.050864px;}
.h9{height:38.207812px;}
.hb{height:38.608594px;}
.h23{height:38.638351px;}
.h24{height:38.678515px;}
.h1d{height:39.313653px;}
.h7{height:41.227031px;}
.h8{height:41.627812px;}
.h3{height:42.229688px;}
.h2{height:42.672656px;}
.h13{height:44.031094px;}
.h28{height:44.798906px;}
.he{height:46.009688px;}
.h10{height:46.736719px;}
.h6{height:47.160000px;}
.h17{height:51.463111px;}
.h1b{height:53.692388px;}
.h1c{height:54.683425px;}
.h27{height:54.872873px;}
.h4{height:55.080000px;}
.h26{height:68.548355px;}
.h11{height:82.800000px;}
.ha{height:83.453906px;}
.h12{height:100.546875px;}
.h20{height:186.151627px;}
.h25{height:232.579309px;}
.h19{height:248.402660px;}
.h14{height:258.512086px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:194.505000px;}
.w3{width:242.745000px;}
.wa{width:284.394188px;}
.w9{width:289.041062px;}
.w8{width:337.346222px;}
.w7{width:350.263664px;}
.w4{width:708.765000px;}
.w5{width:730.365000px;}
.w6{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:5.753328px;}
.x37{left:6.955219px;}
.x5{left:10.830000px;}
.x1a{left:12.574419px;}
.x4e{left:18.968814px;}
.x38{left:20.852126px;}
.x36{left:22.854656px;}
.x1c{left:25.494933px;}
.x34{left:26.946728px;}
.x19{left:31.895478px;}
.x1b{left:35.089395px;}
.xd{left:45.000000px;}
.x45{left:62.092162px;}
.x6{left:70.236000px;}
.x12{left:71.430478px;}
.x2f{left:75.345073px;}
.x2e{left:78.436270px;}
.x22{left:79.595987px;}
.x7{left:81.036000px;}
.x4d{left:83.479159px;}
.x2c{left:86.279487px;}
.x51{left:87.923672px;}
.x21{left:89.315987px;}
.xb{left:92.196000px;}
.x46{left:96.306991px;}
.x16{left:100.550008px;}
.x3f{left:101.564639px;}
.x44{left:108.555000px;}
.x50{left:110.729990px;}
.x47{left:113.414405px;}
.x17{left:117.451167px;}
.x1f{left:118.750409px;}
.x15{left:127.270093px;}
.x53{left:130.031987px;}
.xe{left:131.439000px;}
.x31{left:133.565326px;}
.x33{left:137.892204px;}
.x23{left:147.671987px;}
.x2a{left:150.396089px;}
.x1e{left:157.451129px;}
.x29{left:159.343880px;}
.x48{left:164.742106px;}
.x11{left:166.754987px;}
.x55{left:173.594987px;}
.x10{left:174.674987px;}
.x8{left:182.595000px;}
.x54{left:186.194987px;}
.x49{left:198.967852px;}
.x32{left:206.383367px;}
.x14{left:211.764829px;}
.x13{left:215.756532px;}
.x2d{left:224.640530px;}
.x1d{left:230.479395px;}
.x2b{left:232.698320px;}
.x4a{left:250.295553px;}
.x30{left:252.274599px;}
.xc{left:261.834000px;}
.x4b{left:267.408426px;}
.x18{left:281.498003px;}
.x4c{left:284.504922px;}
.x3b{left:290.553048px;}
.x3d{left:291.876150px;}
.x39{left:294.192555px;}
.x3a{left:298.714134px;}
.x3e{left:303.676752px;}
.x3c{left:305.444851px;}
.x1{left:380.670000px;}
.x52{left:395.099987px;}
.x4f{left:397.619987px;}
.x20{left:420.659987px;}
.x2{left:425.700000px;}
.x3{left:439.020000px;}
.xf{left:446.579987px;}
.x9{left:457.380000px;}
.xa{left:468.180000px;}
.x4{left:469.980000px;}
.x28{left:471.404959px;}
.x27{left:477.179987px;}
.x56{left:489.449987px;}
.x41{left:499.529987px;}
.x58{left:548.489987px;}
.x57{left:575.534987px;}
.x42{left:584.534987px;}
.x25{left:633.494987px;}
.x43{left:639.974987px;}
.x26{left:778.649987px;}
.x24{left:780.449987px;}
.x40{left:808.889987px;}
.x59{left:822.929987px;}
@media print{
.v2{vertical-align:-20.956673pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.136557pt;}
.v1{vertical-align:25.917655pt;}
.lsb{letter-spacing:-1.264000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.720000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.450667pt;}
.lsa{letter-spacing:-0.432533pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.222933pt;}
.ls26{letter-spacing:-0.014080pt;}
.lsd{letter-spacing:-0.013867pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.lse{letter-spacing:0.013867pt;}
.ls3{letter-spacing:0.014080pt;}
.ls0{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.018133pt;}
.ls16{letter-spacing:0.024261pt;}
.ls19{letter-spacing:0.025300pt;}
.ls17{letter-spacing:0.047891pt;}
.ls11{letter-spacing:0.222933pt;}
.ls13{letter-spacing:0.406933pt;}
.ls15{letter-spacing:0.414933pt;}
.ls8{letter-spacing:0.442667pt;}
.ls12{letter-spacing:0.450667pt;}
.ls18{letter-spacing:0.487787pt;}
.ls21{letter-spacing:0.552107pt;}
.ls9{letter-spacing:0.560000pt;}
.ls1e{letter-spacing:0.591360pt;}
.ls2{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.056000pt;}
.ls1f{letter-spacing:3.520000pt;}
.ls22{letter-spacing:13.760000pt;}
.ls14{letter-spacing:23.454720pt;}
.ls1a{letter-spacing:23.561387pt;}
.ls1d{letter-spacing:27.937280pt;}
.ls1b{letter-spacing:29.854720pt;}
.ls1c{letter-spacing:29.961387pt;}
.ls20{letter-spacing:50.880000pt;}
.ws1d{word-spacing:-53.760000pt;}
.ws7{word-spacing:-26.560000pt;}
.ws14{word-spacing:-16.208604pt;}
.wse{word-spacing:-15.126933pt;}
.ws11{word-spacing:-13.854933pt;}
.ws8{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.007467pt;}
.ws1c{word-spacing:-12.989333pt;}
.ws5{word-spacing:-12.720000pt;}
.ws1b{word-spacing:-12.657159pt;}
.wsd{word-spacing:-12.608000pt;}
.ws9{word-spacing:-12.176000pt;}
.ws3{word-spacing:-12.160000pt;}
.ws1a{word-spacing:-11.669384pt;}
.ws19{word-spacing:-11.657254pt;}
.ws18{word-spacing:-11.591173pt;}
.ws4{word-spacing:-11.440000pt;}
.ws2{word-spacing:-11.200000pt;}
.ws1e{word-spacing:-11.151360pt;}
.ws13{word-spacing:-10.805628pt;}
.wsc{word-spacing:-10.782933pt;}
.wsb{word-spacing:-10.573867pt;}
.ws1{word-spacing:-10.560000pt;}
.wsa{word-spacing:-10.546133pt;}
.ws1f{word-spacing:-10.545920pt;}
.ws12{word-spacing:-9.004852pt;}
.ws15{word-spacing:-7.727448pt;}
.wsf{word-spacing:0.000000pt;}
.ws6{word-spacing:26.464960pt;}
.ws17{word-spacing:208.762645pt;}
.ws16{word-spacing:392.895626pt;}
._2a{margin-left:-11.704053pt;}
._2b{margin-left:-7.852314pt;}
._2f{margin-left:-3.921091pt;}
._12{margin-left:-2.744476pt;}
._0{margin-left:-1.827732pt;}
._2{margin-left:-0.912522pt;}
._1{width:1.289595pt;}
._3{width:2.315423pt;}
._11{width:3.290176pt;}
._6{width:4.565035pt;}
._4{width:5.478976pt;}
._10{width:6.373894pt;}
._5{width:7.421332pt;}
._9{width:9.097026pt;}
._7{width:10.138887pt;}
._8{width:11.211323pt;}
._20{width:12.525865pt;}
._25{width:14.572751pt;}
._16{width:15.536532pt;}
._17{width:16.827203pt;}
._15{width:18.063468pt;}
._14{width:19.668480pt;}
._23{width:20.646341pt;}
._2e{width:21.979154pt;}
._f{width:22.905597pt;}
._26{width:24.349873pt;}
._1f{width:25.643735pt;}
._e{width:26.537096pt;}
._d{width:27.486474pt;}
._24{width:28.391532pt;}
._13{width:29.729651pt;}
._1c{width:30.836102pt;}
._1a{width:31.972485pt;}
._1b{width:33.115730pt;}
._c{width:36.047686pt;}
._b{width:37.038707pt;}
._a{width:38.259238pt;}
._1d{width:39.352535pt;}
._36{width:41.144320pt;}
._27{width:42.330103pt;}
._19{width:43.223470pt;}
._18{width:45.671368pt;}
._39{width:50.434352pt;}
._3a{width:51.592107pt;}
._29{width:55.201287pt;}
._28{width:56.125332pt;}
._2c{width:61.393920pt;}
._2d{width:63.705600pt;}
._1e{width:65.533958pt;}
._34{width:69.296640pt;}
._35{width:70.257063pt;}
._33{width:76.715520pt;}
._32{width:77.956922pt;}
._22{width:79.154437pt;}
._21{width:80.309874pt;}
._3b{width:81.751467pt;}
._38{width:89.328425pt;}
._37{width:90.767360pt;}
._30{width:397.788646pt;}
._31{width:408.947390pt;}
.fsc{font-size:16.640000pt;}
.fsa{font-size:30.909794pt;}
.fs7{font-size:36.019409pt;}
.fs9{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs6{font-size:43.222513pt;}
.fsb{font-size:46.364691pt;}
.fsd{font-size:46.629015pt;}
.fse{font-size:46.677537pt;}
.fs2{font-size:48.640000pt;}
.fsf{font-size:48.677488pt;}
.fs10{font-size:48.728089pt;}
.fs0{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs8{font-size:64.834418pt;}
.fs12{font-size:69.130115pt;}
.fs11{font-size:86.358804pt;}
.fs3{font-size:106.240000pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.240000pt;}
.y10a{bottom:3.013704pt;}
.y109{bottom:3.013709pt;}
.y108{bottom:3.013713pt;}
.y107{bottom:3.013717pt;}
.y106{bottom:3.013722pt;}
.y105{bottom:3.013726pt;}
.y104{bottom:3.013730pt;}
.y103{bottom:3.013734pt;}
.y102{bottom:3.013739pt;}
.y101{bottom:3.013743pt;}
.y100{bottom:3.013747pt;}
.yff{bottom:3.013752pt;}
.yfe{bottom:3.013756pt;}
.yfd{bottom:3.013760pt;}
.yfc{bottom:3.013764pt;}
.y72{bottom:3.200000pt;}
.y75{bottom:7.040000pt;}
.yc{bottom:7.360000pt;}
.y9{bottom:8.352000pt;}
.yda{bottom:8.544962pt;}
.y4{bottom:10.912000pt;}
.y96{bottom:13.005178pt;}
.y7{bottom:14.720000pt;}
.y3{bottom:16.992000pt;}
.yd9{bottom:17.817825pt;}
.yb{bottom:19.840000pt;}
.y6{bottom:26.880000pt;}
.y8d{bottom:28.529412pt;}
.ya{bottom:32.000000pt;}
.yd3{bottom:37.705024pt;}
.y114{bottom:38.952683pt;}
.y5{bottom:39.040000pt;}
.y74{bottom:43.840000pt;}
.y10e{bottom:44.088616pt;}
.ydc{bottom:45.954785pt;}
.yd2{bottom:46.978661pt;}
.y11b{bottom:47.014268pt;}
.ydb{bottom:55.227650pt;}
.y113{bottom:58.170171pt;}
.yd1{bottom:63.963457pt;}
.y95{bottom:65.694408pt;}
.ye0{bottom:67.548967pt;}
.yd0{bottom:69.712625pt;}
.yfa{bottom:71.392000pt;}
.y136{bottom:72.032000pt;}
.ye6{bottom:73.162899pt;}
.y112{bottom:76.487479pt;}
.ydf{bottom:76.821832pt;}
.y94{bottom:78.661290pt;}
.yb5{bottom:78.752000pt;}
.ye5{bottom:82.435763pt;}
.y42{bottom:82.912000pt;}
.ycf{bottom:84.920130pt;}
.y10d{bottom:85.899121pt;}
.yf9{bottom:87.392000pt;}
.yeb{bottom:88.324046pt;}
.y135{bottom:88.352000pt;}
.y92{bottom:89.462504pt;}
.yb4{bottom:94.752000pt;}
.y41{bottom:95.392000pt;}
.ye4{bottom:95.506637pt;}
.y111{bottom:95.928116pt;}
.yea{bottom:97.596911pt;}
.y10c{bottom:100.507428pt;}
.yc5{bottom:101.128319pt;}
.y70{bottom:102.432000pt;}
.yf8{bottom:103.712000pt;}
.y134{bottom:104.352000pt;}
.ye3{bottom:104.779502pt;}
.y40{bottom:107.552000pt;}
.yc7{bottom:109.980036pt;}
.y91{bottom:110.524706pt;}
.yb3{bottom:110.752000pt;}
.yc6{bottom:112.773495pt;}
.y110{bottom:115.070209pt;}
.yde{bottom:117.896755pt;}
.yc4{bottom:119.674047pt;}
.yf7{bottom:119.744000pt;}
.y6f{bottom:120.384000pt;}
.ye2{bottom:121.578840pt;}
.y90{bottom:123.491589pt;}
.yd5{bottom:124.476621pt;}
.yb2{bottom:127.104000pt;}
.ydd{bottom:127.169620pt;}
.yd4{bottom:128.726675pt;}
.yc3{bottom:128.946911pt;}
.ye1{bottom:130.851704pt;}
.y3f{bottom:131.904000pt;}
.yc9{bottom:134.213129pt;}
.y10f{bottom:134.510844pt;}
.yf6{bottom:135.746667pt;}
.y133{bottom:136.706667pt;}
.y6e{bottom:137.986667pt;}
.ycb{bottom:138.934554pt;}
.yb1{bottom:143.106667pt;}
.yc8{bottom:143.485993pt;}
.y3e{bottom:144.386667pt;}
.yd6{bottom:145.703750pt;}
.yca{bottom:148.207419pt;}
.yf5{bottom:151.746667pt;}
.y132{bottom:152.706667pt;}
.y10b{bottom:153.941343pt;}
.ye8{bottom:154.045466pt;}
.y93{bottom:155.021814pt;}
.y6d{bottom:155.586667pt;}
.y3d{bottom:156.546667pt;}
.yb0{bottom:159.106667pt;}
.ye7{bottom:165.141994pt;}
.yce{bottom:166.668145pt;}
.yf4{bottom:168.066667pt;}
.y3c{bottom:168.706667pt;}
.y6c{bottom:173.186667pt;}
.y8b{bottom:174.863852pt;}
.yaf{bottom:175.106667pt;}
.yd7{bottom:175.894646pt;}
.y88{bottom:180.266710pt;}
.y8f{bottom:180.266731pt;}
.ycd{bottom:181.180185pt;}
.y3b{bottom:181.186667pt;}
.yf3{bottom:184.066667pt;}
.y131{bottom:184.706667pt;}
.y8c{bottom:185.669571pt;}
.y8a{bottom:185.669590pt;}
.y11a{bottom:186.493431pt;}
.ycc{bottom:190.453050pt;}
.y6b{bottom:190.786667pt;}
.y87{bottom:191.072446pt;}
.y8e{bottom:191.072465pt;}
.yd8{bottom:191.156238pt;}
.yae{bottom:191.426667pt;}
.y3a{bottom:193.986667pt;}
.y89{bottom:196.475323pt;}
.yf2{bottom:200.066667pt;}
.y130{bottom:201.026667pt;}
.ye9{bottom:204.953486pt;}
.yad{bottom:207.426667pt;}
.y6a{bottom:208.386667pt;}
.y39{bottom:209.026667pt;}
.yf1{bottom:216.386667pt;}
.y86{bottom:216.407410pt;}
.y38{bottom:222.786667pt;}
.yac{bottom:223.426667pt;}
.y166{bottom:225.666667pt;}
.y69{bottom:225.986667pt;}
.yf0{bottom:229.826667pt;}
.y12f{bottom:231.746667pt;}
.y37{bottom:236.573333pt;}
.y165{bottom:238.493333pt;}
.yab{bottom:239.773333pt;}
.yef{bottom:241.373333pt;}
.y68{bottom:243.613333pt;}
.y36{bottom:250.333333pt;}
.y164{bottom:253.853333pt;}
.y12e{bottom:254.813333pt;}
.yaa{bottom:255.773333pt;}
.yee{bottom:256.733333pt;}
.y67{bottom:261.213333pt;}
.y163{bottom:269.213333pt;}
.ya9{bottom:271.773333pt;}
.yed{bottom:272.093333pt;}
.y66{bottom:278.813333pt;}
.y162{bottom:284.573333pt;}
.y12d{bottom:287.133333pt;}
.ya8{bottom:287.773333pt;}
.yec{bottom:290.013333pt;}
.yc2{bottom:290.066649pt;}
.y35{bottom:291.933333pt;}
.y65{bottom:296.413333pt;}
.y161{bottom:299.933333pt;}
.y12c{bottom:303.133333pt;}
.ya7{bottom:304.093333pt;}
.y34{bottom:307.933333pt;}
.y64{bottom:314.013333pt;}
.y160{bottom:315.293333pt;}
.ya6{bottom:320.093333pt;}
.y33{bottom:323.933333pt;}
.y12b{bottom:326.493333pt;}
.y15f{bottom:330.653333pt;}
.y63{bottom:331.613333pt;}
.ya5{bottom:336.093333pt;}
.y32{bottom:340.253333pt;}
.y15e{bottom:346.013333pt;}
.y62{bottom:349.213333pt;}
.ya4{bottom:352.093333pt;}
.y31{bottom:356.293333pt;}
.y12a{bottom:358.533333pt;}
.y15d{bottom:361.093333pt;}
.y61{bottom:366.853333pt;}
.ya3{bottom:368.453333pt;}
.y30{bottom:372.293333pt;}
.y15c{bottom:373.893333pt;}
.y129{bottom:374.533333pt;}
.y60{bottom:384.453333pt;}
.y2f{bottom:388.293333pt;}
.y128{bottom:390.853333pt;}
.ya2{bottom:400.453333pt;}
.y5f{bottom:402.053333pt;}
.y2e{bottom:404.613333pt;}
.y127{bottom:406.853333pt;}
.y15b{bottom:412.933333pt;}
.ya1{bottom:416.453333pt;}
.y5e{bottom:419.653333pt;}
.y2d{bottom:420.613333pt;}
.y126{bottom:422.853333pt;}
.y15a{bottom:425.093333pt;}
.ya0{bottom:432.773333pt;}
.y159{bottom:437.253333pt;}
.y5d{bottom:437.573333pt;}
.y125{bottom:438.853333pt;}
.y2c{bottom:440.133333pt;}
.y9f{bottom:448.773333pt;}
.y158{bottom:449.413333pt;}
.y5c{bottom:455.173333pt;}
.y157{bottom:461.893333pt;}
.y9e{bottom:464.773333pt;}
.y124{bottom:471.173333pt;}
.y5b{bottom:472.773333pt;}
.y156{bottom:474.080000pt;}
.y2b{bottom:476.000000pt;}
.y9d{bottom:481.120000pt;}
.y155{bottom:486.240000pt;}
.y123{bottom:487.200000pt;}
.y5a{bottom:490.400000pt;}
.y9c{bottom:497.120000pt;}
.y154{bottom:498.720000pt;}
.y122{bottom:503.200000pt;}
.y2a{bottom:507.040000pt;}
.y59{bottom:508.000000pt;}
.y153{bottom:510.880000pt;}
.yc1{bottom:512.800000pt;}
.y9b{bottom:513.120000pt;}
.y121{bottom:519.520000pt;}
.y29{bottom:520.800000pt;}
.y58{bottom:525.600000pt;}
.y9a{bottom:529.120000pt;}
.yc0{bottom:529.760000pt;}
.y152{bottom:531.680000pt;}
.y28{bottom:534.880000pt;}
.y120{bottom:535.520000pt;}
.y57{bottom:543.200000pt;}
.ybf{bottom:545.120000pt;}
.y27{bottom:548.640000pt;}
.y99{bottom:549.920000pt;}
.y11f{bottom:551.520000pt;}
.y56{bottom:560.800000pt;}
.y26{bottom:562.400000pt;}
.y98{bottom:565.280000pt;}
.ybe{bottom:573.600000pt;}
.y151{bottom:574.560000pt;}
.y11e{bottom:574.880000pt;}
.y25{bottom:576.160000pt;}
.y55{bottom:578.400000pt;}
.y97{bottom:580.640000pt;}
.ybd{bottom:584.160000pt;}
.y150{bottom:587.040000pt;}
.y24{bottom:589.920000pt;}
.y54{bottom:596.026667pt;}
.y14f{bottom:599.226667pt;}
.y85{bottom:603.666630pt;}
.y23{bottom:603.706667pt;}
.y11d{bottom:611.386667pt;}
.y53{bottom:612.026667pt;}
.y22{bottom:617.466667pt;}
.y14e{bottom:623.866667pt;}
.y52{bottom:628.346667pt;}
.y119{bottom:629.599928pt;}
.y11c{bottom:629.626667pt;}
.y14d{bottom:636.026667pt;}
.y21{bottom:636.666667pt;}
.y51{bottom:644.346667pt;}
.y14c{bottom:648.186667pt;}
.y20{bottom:650.426667pt;}
.y50{bottom:660.346667pt;}
.y14b{bottom:660.666667pt;}
.y1f{bottom:669.626667pt;}
.y14a{bottom:672.826667pt;}
.y4f{bottom:676.346667pt;}
.y1e{bottom:683.386667pt;}
.y149{bottom:684.986667pt;}
.y4e{bottom:692.666667pt;}
.ybc{bottom:695.866667pt;}
.y1d{bottom:697.146667pt;}
.ybb{bottom:706.426667pt;}
.y4d{bottom:708.666667pt;}
.y148{bottom:709.626667pt;}
.y1c{bottom:710.946667pt;}
.y147{bottom:721.826667pt;}
.y1b{bottom:724.706667pt;}
.y146{bottom:733.986667pt;}
.y1a{bottom:738.466667pt;}
.y4c{bottom:740.706667pt;}
.y145{bottom:746.466667pt;}
.y19{bottom:752.226667pt;}
.y4b{bottom:757.026667pt;}
.y144{bottom:758.626667pt;}
.y18{bottom:765.986667pt;}
.y143{bottom:770.786667pt;}
.y4a{bottom:773.026667pt;}
.y17{bottom:779.746667pt;}
.y142{bottom:783.266667pt;}
.y49{bottom:789.026667pt;}
.y16{bottom:793.506667pt;}
.y141{bottom:795.426667pt;}
.y48{bottom:805.346667pt;}
.y15{bottom:807.586667pt;}
.y140{bottom:819.746667pt;}
.y14{bottom:821.346667pt;}
.yba{bottom:831.293333pt;}
.y13f{bottom:832.253333pt;}
.y13{bottom:835.133333pt;}
.y47{bottom:837.373333pt;}
.y118{bottom:838.653333pt;}
.yb9{bottom:841.853333pt;}
.y84{bottom:842.493333pt;}
.y13e{bottom:844.413333pt;}
.y12{bottom:848.893333pt;}
.y46{bottom:853.373333pt;}
.y117{bottom:856.573333pt;}
.y83{bottom:858.493333pt;}
.y11{bottom:862.653333pt;}
.y13d{bottom:869.053333pt;}
.y45{bottom:869.693333pt;}
.y116{bottom:871.933333pt;}
.y82{bottom:874.813333pt;}
.y10{bottom:876.413333pt;}
.y13c{bottom:881.213333pt;}
.y44{bottom:885.693333pt;}
.yfb{bottom:889.733261pt;}
.y115{bottom:889.853333pt;}
.yf{bottom:890.173333pt;}
.y81{bottom:890.813333pt;}
.y13b{bottom:893.373333pt;}
.y43{bottom:901.693333pt;}
.ye{bottom:903.933333pt;}
.y80{bottom:906.813333pt;}
.y13a{bottom:914.173333pt;}
.yd{bottom:917.693333pt;}
.y7f{bottom:923.133333pt;}
.y7e{bottom:939.133333pt;}
.y71{bottom:942.653333pt;}
.y139{bottom:946.173333pt;}
.y7d{bottom:955.173333pt;}
.y138{bottom:962.533333pt;}
.y7c{bottom:971.173333pt;}
.y137{bottom:978.533333pt;}
.y73{bottom:981.733333pt;}
.y7b{bottom:987.493333pt;}
.yb8{bottom:994.533333pt;}
.y7a{bottom:1003.493333pt;}
.yb7{bottom:1010.533333pt;}
.y79{bottom:1019.493333pt;}
.yb6{bottom:1026.853333pt;}
.y78{bottom:1042.853333pt;}
.y77{bottom:1079.680000pt;}
.y2{bottom:1082.240000pt;}
.y76{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.h1f{height:11.740625pt;}
.hf{height:16.992000pt;}
.h1a{height:21.808912pt;}
.h16{height:25.414085pt;}
.h18{height:25.918750pt;}
.hc{height:29.493750pt;}
.hd{height:29.803125pt;}
.h15{height:30.496353pt;}
.h29{height:30.751875pt;}
.h5{height:32.133750pt;}
.h1e{height:32.713368pt;}
.h21{height:32.899867pt;}
.h22{height:32.934102pt;}
.h9{height:33.962500pt;}
.hb{height:34.318750pt;}
.h23{height:34.345201pt;}
.h24{height:34.380902pt;}
.h1d{height:34.945470pt;}
.h7{height:36.646250pt;}
.h8{height:37.002500pt;}
.h3{height:37.537500pt;}
.h2{height:37.931250pt;}
.h13{height:39.138750pt;}
.h28{height:39.821250pt;}
.he{height:40.897500pt;}
.h10{height:41.543750pt;}
.h6{height:41.920000pt;}
.h17{height:45.744987pt;}
.h1b{height:47.726567pt;}
.h1c{height:48.607489pt;}
.h27{height:48.775887pt;}
.h4{height:48.960000pt;}
.h26{height:60.931871pt;}
.h11{height:73.600000pt;}
.ha{height:74.181250pt;}
.h12{height:89.375000pt;}
.h20{height:165.468113pt;}
.h25{height:206.737163pt;}
.h19{height:220.802365pt;}
.h14{height:229.788521pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:172.893333pt;}
.w3{width:215.773333pt;}
.wa{width:252.794834pt;}
.w9{width:256.925388pt;}
.w8{width:299.863308pt;}
.w7{width:311.345479pt;}
.w4{width:630.013333pt;}
.w5{width:649.213333pt;}
.w6{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:5.114070pt;}
.x37{left:6.182417pt;}
.x5{left:9.626667pt;}
.x1a{left:11.177261pt;}
.x4e{left:16.861168pt;}
.x38{left:18.535223pt;}
.x36{left:20.315250pt;}
.x1c{left:22.662163pt;}
.x34{left:23.952647pt;}
.x19{left:28.351536pt;}
.x1b{left:31.190573pt;}
.xd{left:40.000000pt;}
.x45{left:55.193033pt;}
.x6{left:62.432000pt;}
.x12{left:63.493758pt;}
.x2f{left:66.973398pt;}
.x2e{left:69.721129pt;}
.x22{left:70.751988pt;}
.x7{left:72.032000pt;}
.x4d{left:74.203697pt;}
.x2c{left:76.692877pt;}
.x51{left:78.154375pt;}
.x21{left:79.391988pt;}
.xb{left:81.952000pt;}
.x46{left:85.606214pt;}
.x16{left:89.377785pt;}
.x3f{left:90.279679pt;}
.x44{left:96.493333pt;}
.x50{left:98.426658pt;}
.x47{left:100.812804pt;}
.x17{left:104.401037pt;}
.x1f{left:105.555919pt;}
.x15{left:113.128971pt;}
.x53{left:115.583988pt;}
.xe{left:116.834667pt;}
.x31{left:118.724734pt;}
.x33{left:122.570848pt;}
.x23{left:131.263988pt;}
.x2a{left:133.685412pt;}
.x1e{left:139.956559pt;}
.x29{left:141.639005pt;}
.x48{left:146.437427pt;}
.x11{left:148.226655pt;}
.x55{left:154.306655pt;}
.x10{left:155.266655pt;}
.x8{left:162.306667pt;}
.x54{left:165.506655pt;}
.x49{left:176.860312pt;}
.x32{left:183.451882pt;}
.x14{left:188.235404pt;}
.x13{left:191.783584pt;}
.x2d{left:199.680471pt;}
.x1d{left:204.870573pt;}
.x2b{left:206.842951pt;}
.x4a{left:222.484936pt;}
.x30{left:224.244088pt;}
.xc{left:232.741333pt;}
.x4b{left:237.696378pt;}
.x18{left:250.220447pt;}
.x4c{left:252.893264pt;}
.x3b{left:258.269376pt;}
.x3d{left:259.445467pt;}
.x39{left:261.504493pt;}
.x3a{left:265.523674pt;}
.x3e{left:269.934890pt;}
.x3c{left:271.506534pt;}
.x1{left:338.373333pt;}
.x52{left:351.199988pt;}
.x4f{left:353.439988pt;}
.x20{left:373.919988pt;}
.x2{left:378.400000pt;}
.x3{left:390.240000pt;}
.xf{left:396.959988pt;}
.x9{left:406.560000pt;}
.xa{left:416.160000pt;}
.x4{left:417.760000pt;}
.x28{left:419.026630pt;}
.x27{left:424.159988pt;}
.x56{left:435.066655pt;}
.x41{left:444.026655pt;}
.x58{left:487.546655pt;}
.x57{left:511.586655pt;}
.x42{left:519.586655pt;}
.x25{left:563.106655pt;}
.x43{left:568.866655pt;}
.x26{left:692.133322pt;}
.x24{left:693.733322pt;}
.x40{left:719.013322pt;}
.x59{left:731.493322pt;}
}




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