
    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_8140b3aa210131a72f30d337.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.208000;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_443438dedc2dbe92e150d9ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202000;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_4611aeea5efe32e84e890223.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.208000;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_e326de5a771cc3f1155134f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.208000;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_8a0a69f3d65b03b6a753f850.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.208000;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_6afc37cf4009719badbde2ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.208000;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_1531a071ce81fdcfa557e5eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.208000;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_336e986ff526ceda9221e0e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.208000;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_aa7ef89df6f4ade5afc938f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.208000;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_36942c9e09ed432ec1f8443a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.208000;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_c19fd136b08856b54ca4430b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.208000;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_5d6a43bf5f77406daa9cb84d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.208000;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_d51ec932cf3a5a3dabab233d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740723;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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:fff;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_112cd12d449d31d8f63e2c02.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.708008;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);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240000px;}
.ls1b{letter-spacing:-0.822000px;}
.ls29{letter-spacing:-0.768000px;}
.ls6{letter-spacing:-0.738000px;}
.ls15{letter-spacing:-0.535800px;}
.ls1d{letter-spacing:-0.460800px;}
.ls5{letter-spacing:-0.366000px;}
.ls8{letter-spacing:-0.204000px;}
.ls27{letter-spacing:-0.202800px;}
.ls1{letter-spacing:-0.191400px;}
.ls3{letter-spacing:-0.190200px;}
.ls17{letter-spacing:-0.150000px;}
.ls9{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.084000px;}
.lse{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.048960px;}
.ls2b{letter-spacing:-0.025920px;}
.ls4{letter-spacing:-0.017280px;}
.ls19{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.014400px;}
.ls2c{letter-spacing:0.034560px;}
.ls16{letter-spacing:0.057600px;}
.ls12{letter-spacing:0.060600px;}
.ls23{letter-spacing:0.097800px;}
.ls25{letter-spacing:0.129600px;}
.ls10{letter-spacing:0.135600px;}
.ls2a{letter-spacing:0.181440px;}
.lsf{letter-spacing:0.184200px;}
.lsa{letter-spacing:0.246240px;}
.lsb{letter-spacing:0.257760px;}
.ls1a{letter-spacing:0.259200px;}
.ls24{letter-spacing:0.270600px;}
.ls26{letter-spacing:0.319800px;}
.lsc{letter-spacing:0.335400px;}
.ls2{letter-spacing:0.354000px;}
.ls13{letter-spacing:2.010240px;}
.ls14{letter-spacing:3.450240px;}
.ls22{letter-spacing:16.865280px;}
.ls21{letter-spacing:17.585280px;}
.ls20{letter-spacing:36.305280px;}
.ls18{letter-spacing:37.025280px;}
.ls1f{letter-spacing:41.706720px;}
.ls28{letter-spacing:847.560000px;}
.ls1c{letter-spacing:847.620000px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(0,0,10),0 0.015em rgb(0,0,10),0.015em 0 rgb(0,0,10),0 -0.015em  rgb(0,0,10);}
.sc5{text-shadow:-0.015em 0 rgb(191,191,191),0 0.015em rgb(191,191,191),0.015em 0 rgb(191,191,191),0 -0.015em  rgb(191,191,191);}
.sc4{text-shadow:-0.015em 0 rgb(127,127,127),0 0.015em rgb(127,127,127),0.015em 0 rgb(127,127,127),0 -0.015em  rgb(127,127,127);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(153,153,153),0 0.015em rgb(153,153,153),0.015em 0 rgb(153,153,153),0 -0.015em  rgb(153,153,153);}
.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;}
.sc6{-webkit-text-stroke:0.015em rgb(0,0,10);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(191,191,191);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(127,127,127);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(153,153,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-66.240000px;}
.ws5{word-spacing:-36.102240px;}
.ws18{word-spacing:-19.540800px;}
.ws15{word-spacing:-18.420360px;}
.ws12{word-spacing:-18.408960px;}
.wsc{word-spacing:-18.285360px;}
.ws16{word-spacing:-18.279360px;}
.ws14{word-spacing:-18.247560px;}
.wsf{word-spacing:-18.207360px;}
.ws1a{word-spacing:-18.184320px;}
.ws10{word-spacing:-18.149760px;}
.ws19{word-spacing:-18.123840px;}
.wsd{word-spacing:-18.100800px;}
.wse{word-spacing:-18.077760px;}
.ws13{word-spacing:-17.613960px;}
.ws7{word-spacing:-12.312000px;}
.ws6{word-spacing:-12.168000px;}
.wsb{word-spacing:-11.442240px;}
.wsa{word-spacing:-11.334240px;}
.ws17{word-spacing:-11.239440px;}
.ws0{word-spacing:-8.920800px;}
.ws9{word-spacing:-8.285760px;}
.ws3{word-spacing:-8.268480px;}
.ws2{word-spacing:-8.095560px;}
.ws4{word-spacing:-7.547760px;}
.ws1{word-spacing:-4.932000px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-5.815680px;}
._11{margin-left:-4.619520px;}
._8{margin-left:-3.574080px;}
._3{margin-left:-2.231520px;}
._1{margin-left:-1.088640px;}
._0{width:1.874880px;}
._2{width:2.997600px;}
._9{width:4.072800px;}
._b{width:5.091360px;}
._5{width:6.096960px;}
._4{width:7.754880px;}
._d{width:9.244800px;}
._c{width:10.272960px;}
._18{width:11.355840px;}
._a{width:12.448800px;}
._6{width:13.947840px;}
._7{width:14.965920px;}
._1e{width:15.981120px;}
._12{width:17.023680px;}
._1f{width:19.151040px;}
._16{width:20.269440px;}
._17{width:21.366720px;}
._10{width:22.389120px;}
._e{width:24.045120px;}
._f{width:25.113120px;}
._15{width:26.214720px;}
._1a{width:27.583680px;}
._19{width:29.211840px;}
._26{width:30.230880px;}
._13{width:31.464000px;}
._14{width:32.656320px;}
._21{width:33.782400px;}
._22{width:35.219040px;}
._23{width:37.134720px;}
._20{width:38.220480px;}
._1c{width:40.090560px;}
._1b{width:41.612160px;}
._24{width:43.784640px;}
._25{width:45.022560px;}
._31{width:67.498560px;}
._32{width:69.618240px;}
._2e{width:82.932480px;}
._2f{width:84.026400px;}
._30{width:86.708160px;}
._28{width:102.340800px;}
._29{width:103.571040px;}
._34{width:144.370080px;}
._33{width:145.906080px;}
._2a{width:192.875520px;}
._2b{width:193.950720px;}
._2c{width:195.188640px;}
._27{width:259.462080px;}
._2d{width:1084.478880px;}
.fc7{color:transparent;}
.fc1{color:rgb(0,0,10);}
.fc6{color:rgb(191,191,191);}
.fc5{color:rgb(127,127,127);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(153,153,153);}
.fc0{color:rgb(166,166,166);}
.fsa{font-size:12.240000px;}
.fs4{font-size:18.000000px;}
.fse{font-size:23.760000px;}
.fs1{font-size:30.240000px;}
.fs2{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs5{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:2.100000px;}
.y5c{bottom:2.520000px;}
.yb{bottom:3.060000px;}
.y50{bottom:5.280000px;}
.y5b{bottom:13.680000px;}
.ya{bottom:16.560000px;}
.y5a{bottom:25.020000px;}
.y9{bottom:30.060000px;}
.y59{bottom:36.180000px;}
.y8{bottom:43.020000px;}
.y58{bottom:47.556000px;}
.y7{bottom:54.216000px;}
.y175{bottom:59.616000px;}
.yab{bottom:61.776000px;}
.yd0{bottom:64.116000px;}
.y6{bottom:65.556000px;}
.y17d{bottom:66.276000px;}
.y174{bottom:75.456000px;}
.y5{bottom:76.716000px;}
.y140{bottom:77.616000px;}
.y173{bottom:79.236000px;}
.yeb{bottom:79.776000px;}
.y10f{bottom:82.116000px;}
.y126{bottom:84.276000px;}
.y8b{bottom:86.616000px;}
.y4{bottom:88.056000px;}
.ycf{bottom:88.776000px;}
.y17c{bottom:91.116000px;}
.y172{bottom:91.476000px;}
.y3{bottom:99.216000px;}
.y51{bottom:101.880000px;}
.y13f{bottom:102.276000px;}
.yea{bottom:104.616000px;}
.y10e{bottom:106.776000px;}
.y125{bottom:109.116000px;}
.y8a{bottom:111.276000px;}
.y2{bottom:111.996000px;}
.yce{bottom:113.616000px;}
.y17b{bottom:115.776000px;}
.yaa{bottom:120.276000px;}
.y1ac{bottom:124.776000px;}
.y13e{bottom:127.116000px;}
.ye9{bottom:129.276000px;}
.y1{bottom:129.996000px;}
.y171{bottom:131.436000px;}
.y124{bottom:133.776000px;}
.y89{bottom:136.116000px;}
.ycd{bottom:138.276000px;}
.y10d{bottom:140.436000px;}
.y17a{bottom:140.616000px;}
.ya9{bottom:145.116000px;}
.y14d{bottom:147.276000px;}
.y1ab{bottom:149.616000px;}
.y13d{bottom:151.770000px;}
.y1b3{bottom:153.930000px;}
.ye8{bottom:154.110000px;}
.y3a{bottom:155.190000px;}
.y170{bottom:156.270000px;}
.y123{bottom:158.610000px;}
.y88{bottom:160.770000px;}
.ycc{bottom:163.110000px;}
.y10c{bottom:165.270000px;}
.ya8{bottom:169.770000px;}
.y39{bottom:171.030000px;}
.y14c{bottom:172.110000px;}
.y13c{bottom:176.610000px;}
.ye7{bottom:178.770000px;}
.y16f{bottom:181.110000px;}
.y122{bottom:183.270000px;}
.y87{bottom:185.610000px;}
.y38{bottom:186.870000px;}
.ycb{bottom:187.770000px;}
.y10b{bottom:190.110000px;}
.y156{bottom:194.430000px;}
.ya7{bottom:194.610000px;}
.y14b{bottom:196.770000px;}
.y13b{bottom:201.270000px;}
.y37{bottom:202.530000px;}
.ye6{bottom:203.610000px;}
.y16e{bottom:205.770000px;}
.y121{bottom:208.110000px;}
.yca{bottom:212.610000px;}
.y10a{bottom:214.770000px;}
.y36{bottom:218.370000px;}
.y86{bottom:219.270000px;}
.y14a{bottom:221.610000px;}
.y13a{bottom:226.110000px;}
.ye5{bottom:228.270000px;}
.y16d{bottom:230.610000px;}
.y35{bottom:234.030000px;}
.y109{bottom:239.610000px;}
.y120{bottom:241.770000px;}
.y85{bottom:244.110000px;}
.yc9{bottom:246.270000px;}
.y34{bottom:249.870000px;}
.y1a1{bottom:252.930000px;}
.yf8{bottom:253.110000px;}
.y16c{bottom:255.270000px;}
.y139{bottom:259.770000px;}
.ye4{bottom:261.930000px;}
.y108{bottom:264.270000px;}
.y33{bottom:265.530000px;}
.y11f{bottom:266.610000px;}
.y84{bottom:268.770000px;}
.yc8{bottom:271.110000px;}
.y1a0{bottom:277.770000px;}
.y16b{bottom:280.110000px;}
.y32{bottom:281.370000px;}
.y138{bottom:284.610000px;}
.ye3{bottom:286.770000px;}
.y107{bottom:289.110000px;}
.y11e{bottom:291.270000px;}
.y83{bottom:293.610000px;}
.yc7{bottom:295.770000px;}
.y31{bottom:297.030000px;}
.y194{bottom:297.930000px;}
.y1aa{bottom:300.315000px;}
.ya6{bottom:302.475000px;}
.y19f{bottom:302.655000px;}
.y149{bottom:304.815000px;}
.y137{bottom:309.315000px;}
.ye2{bottom:311.655000px;}
.y30{bottom:313.815000px;}
.y11d{bottom:316.155000px;}
.y82{bottom:318.315000px;}
.y179{bottom:322.815000px;}
.y1a9{bottom:325.155000px;}
.ya5{bottom:327.315000px;}
.yc6{bottom:329.475000px;}
.y148{bottom:329.655000px;}
.y2f{bottom:332.895000px;}
.y136{bottom:334.155000px;}
.ye1{bottom:336.315000px;}
.y184{bottom:338.475000px;}
.y11c{bottom:340.815000px;}
.y81{bottom:343.155000px;}
.y106{bottom:347.475000px;}
.y178{bottom:347.655000px;}
.y2e{bottom:351.975000px;}
.ya4{bottom:352.155000px;}
.yc5{bottom:354.315000px;}
.y135{bottom:358.815000px;}
.y16a{bottom:360.255000px;}
.ye0{bottom:361.155000px;}
.y183{bottom:363.315000px;}
.y11b{bottom:365.655000px;}
.y80{bottom:367.815000px;}
.y2d{bottom:371.235000px;}
.y105{bottom:372.315000px;}
.ya3{bottom:376.815000px;}
.yc4{bottom:379.155000px;}
.y1a8{bottom:383.655000px;}
.ydf{bottom:385.815000px;}
.y182{bottom:388.155000px;}
.y2c{bottom:390.315000px;}
.y134{bottom:392.475000px;}
.y104{bottom:397.155000px;}
.y7f{bottom:401.475000px;}
.ya2{bottom:401.655000px;}
.yc3{bottom:403.815000px;}
.y2b{bottom:410.655000px;}
.y181{bottom:412.815000px;}
.y169{bottom:414.435000px;}
.y11a{bottom:415.155000px;}
.y133{bottom:417.315000px;}
.y19e{bottom:419.475000px;}
.y103{bottom:421.815000px;}
.y7e{bottom:426.315000px;}
.yc2{bottom:428.655000px;}
.y2a{bottom:434.235000px;}
.yde{bottom:435.315000px;}
.y180{bottom:437.655000px;}
.y132{bottom:442.155000px;}
.y19d{bottom:444.315000px;}
.y102{bottom:446.655000px;}
.y119{bottom:448.815000px;}
.y7d{bottom:451.155000px;}
.y29{bottom:453.315000px;}
.ydd{bottom:460.155000px;}
.yc1{bottom:462.315000px;}
.y131{bottom:466.815000px;}
.y1b2{bottom:468.975000px;}
.y19c{bottom:469.155000px;}
.y101{bottom:471.315000px;}
.y28{bottom:472.395000px;}
.y118{bottom:473.655000px;}
.y7c{bottom:475.815000px;}
.y155{bottom:476.355000px;}
.y168{bottom:478.155000px;}
.y147{bottom:486.975000px;}
.yc0{bottom:487.155000px;}
.y27{bottom:491.475000px;}
.y130{bottom:491.655000px;}
.ydc{bottom:493.815000px;}
.y17f{bottom:495.975000px;}
.y100{bottom:496.155000px;}
.y117{bottom:498.315000px;}
.y1a7{bottom:500.475000px;}
.y7b{bottom:500.655000px;}
.y167{bottom:502.815000px;}
.ya1{bottom:509.475000px;}
.y26{bottom:510.735000px;}
.ybf{bottom:511.815000px;}
.y154{bottom:513.435000px;}
.y12f{bottom:516.315000px;}
.ydb{bottom:518.655000px;}
.yff{bottom:520.815000px;}
.y116{bottom:523.155000px;}
.y7a{bottom:525.315000px;}
.y19b{bottom:527.475000px;}
.y166{bottom:527.655000px;}
.y193{bottom:529.815000px;}
.y25{bottom:531.075000px;}
.ya0{bottom:534.315000px;}
.ybe{bottom:536.655000px;}
.y12e{bottom:541.155000px;}
.yda{bottom:543.315000px;}
.yfe{bottom:545.655000px;}
.y115{bottom:548.355000px;}
.y79{bottom:550.155000px;}
.y153{bottom:552.315000px;}
.y1b1{bottom:553.935000px;}
.y24{bottom:554.475000px;}
.y192{bottom:554.655000px;}
.y9f{bottom:559.185000px;}
.ybd{bottom:561.345000px;}
.yd9{bottom:568.185000px;}
.y177{bottom:570.345000px;}
.y23{bottom:573.765000px;}
.y78{bottom:574.845000px;}
.y152{bottom:577.185000px;}
.y165{bottom:577.725000px;}
.yfd{bottom:579.345000px;}
.y9e{bottom:583.845000px;}
.y19a{bottom:586.005000px;}
.y146{bottom:586.185000px;}
.y22{bottom:592.845000px;}
.ybc{bottom:595.005000px;}
.y17e{bottom:595.185000px;}
.y12d{bottom:599.685000px;}
.y151{bottom:601.845000px;}
.y176{bottom:604.005000px;}
.yfc{bottom:604.185000px;}
.y1a6{bottom:608.505000px;}
.y9d{bottom:608.685000px;}
.y77{bottom:610.305000px;}
.y145{bottom:610.845000px;}
.y21{bottom:611.925000px;}
.y164{bottom:613.005000px;}
.yd8{bottom:617.685000px;}
.ybb{bottom:619.845000px;}
.y12c{bottom:624.345000px;}
.y150{bottom:626.685000px;}
.yfb{bottom:628.845000px;}
.y20{bottom:631.005000px;}
.y9c{bottom:633.345000px;}
.y199{bottom:635.685000px;}
.y163{bottom:637.845000px;}
.y76{bottom:640.185000px;}
.yd7{bottom:642.345000px;}
.y144{bottom:644.505000px;}
.yba{bottom:644.685000px;}
.y12b{bottom:649.185000px;}
.y1f{bottom:651.345000px;}
.yfa{bottom:653.685000px;}
.y9b{bottom:658.185000px;}
.y162{bottom:662.685000px;}
.y75{bottom:664.845000px;}
.y114{bottom:667.005000px;}
.yd6{bottom:667.185000px;}
.y143{bottom:669.345000px;}
.y12a{bottom:673.845000px;}
.yf7{bottom:676.185000px;}
.yb9{bottom:678.345000px;}
.y9a{bottom:683.385000px;}
.y1e{bottom:685.005000px;}
.yd5{bottom:691.845000px;}
.y142{bottom:694.185000px;}
.y74{bottom:696.345000px;}
.y129{bottom:698.685000px;}
.yf6{bottom:700.845000px;}
.y198{bottom:703.005000px;}
.yb8{bottom:703.185000px;}
.y1d{bottom:709.845000px;}
.yd4{bottom:716.685000px;}
.y99{bottom:718.845000px;}
.y73{bottom:721.185000px;}
.y128{bottom:723.345000px;}
.y113{bottom:725.505000px;}
.yf5{bottom:725.685000px;}
.yb7{bottom:727.845000px;}
.y191{bottom:736.845000px;}
.y72{bottom:737.025000px;}
.yd3{bottom:741.345000px;}
.y1c{bottom:743.505000px;}
.y98{bottom:743.685000px;}
.y127{bottom:748.725000px;}
.yf4{bottom:750.345000px;}
.y71{bottom:752.685000px;}
.y161{bottom:754.845000px;}
.y14f{bottom:759.345000px;}
.y190{bottom:761.685000px;}
.yd2{bottom:766.185000px;}
.y1b{bottom:768.345000px;}
.y70{bottom:768.525000px;}
.yf3{bottom:775.185000px;}
.yb6{bottom:777.345000px;}
.y160{bottom:779.685000px;}
.y112{bottom:784.005000px;}
.y6f{bottom:784.185000px;}
.y18f{bottom:786.345000px;}
.yd1{bottom:791.385000px;}
.y14e{bottom:793.005000px;}
.y97{bottom:793.185000px;}
.yf2{bottom:799.845000px;}
.y6e{bottom:800.025000px;}
.y141{bottom:802.005000px;}
.yb5{bottom:802.185000px;}
.y1a{bottom:807.945000px;}
.y111{bottom:808.845000px;}
.y197{bottom:811.005000px;}
.y18e{bottom:811.185000px;}
.y15f{bottom:813.390000px;}
.y6d{bottom:815.730000px;}
.y96{bottom:817.890000px;}
.yf1{bottom:824.730000px;}
.yb4{bottom:826.890000px;}
.y6c{bottom:831.570000px;}
.y1b0{bottom:833.550000px;}
.y1a5{bottom:833.730000px;}
.y18d{bottom:835.890000px;}
.y15e{bottom:838.230000px;}
.y110{bottom:842.550000px;}
.y95{bottom:842.730000px;}
.y6b{bottom:847.230000px;}
.yf0{bottom:849.390000px;}
.yb3{bottom:851.730000px;}
.y19{bottom:857.490000px;}
.y1a4{bottom:858.390000px;}
.yf9{bottom:860.550000px;}
.y18c{bottom:860.730000px;}
.y94{bottom:867.390000px;}
.y6a{bottom:869.550000px;}
.y15d{bottom:871.890000px;}
.yef{bottom:874.770000px;}
.yb2{bottom:876.390000px;}
.y1af{bottom:883.230000px;}
.y69{bottom:885.390000px;}
.y1a3{bottom:892.050000px;}
.y196{bottom:894.390000px;}
.y15c{bottom:897.270000px;}
.y93{bottom:901.050000px;}
.yb1{bottom:901.230000px;}
.y18{bottom:906.990000px;}
.yee{bottom:910.050000px;}
.y68{bottom:910.230000px;}
.y1a2{bottom:916.890000px;}
.y18b{bottom:919.050000px;}
.y92{bottom:925.890000px;}
.y67{bottom:926.070000px;}
.y195{bottom:929.850000px;}
.y15b{bottom:932.550000px;}
.yed{bottom:934.890000px;}
.y52{bottom:938.310000px;}
.y66{bottom:941.730000px;}
.y18a{bottom:943.890000px;}
.y17{bottom:947.670000px;}
.y91{bottom:950.730000px;}
.y15a{bottom:957.390000px;}
.y65{bottom:957.570000px;}
.y16{bottom:958.830000px;}
.yb0{bottom:959.550000px;}
.yec{bottom:959.730000px;}
.y1ae{bottom:966.390000px;}
.y189{bottom:968.730000px;}
.y15{bottom:970.170000px;}
.y64{bottom:973.230000px;}
.y90{bottom:975.390000px;}
.y14{bottom:981.330000px;}
.y159{bottom:982.230000px;}
.yaf{bottom:984.390000px;}
.y63{bottom:989.070000px;}
.y13{bottom:992.670000px;}
.y188{bottom:993.390000px;}
.y1ad{bottom:1000.050000px;}
.y8f{bottom:1000.230000px;}
.y12{bottom:1003.830000px;}
.y62{bottom:1004.730000px;}
.yae{bottom:1009.230000px;}
.y11{bottom:1015.170000px;}
.y158{bottom:1015.890000px;}
.y187{bottom:1018.230000px;}
.y61{bottom:1020.570000px;}
.y8e{bottom:1024.890000px;}
.y10{bottom:1026.330000px;}
.yad{bottom:1033.890000px;}
.y60{bottom:1036.230000px;}
.yf{bottom:1037.670000px;}
.y186{bottom:1042.890000px;}
.y4a{bottom:1048.830000px;}
.y4f{bottom:1049.310000px;}
.y3e{bottom:1049.430000px;}
.y157{bottom:1049.550000px;}
.y47{bottom:1050.330000px;}
.y41{bottom:1050.630000px;}
.y44{bottom:1050.930000px;}
.y5f{bottom:1052.070000px;}
.ye{bottom:1057.830000px;}
.y8d{bottom:1058.550000px;}
.yac{bottom:1058.730000px;}
.y4c{bottom:1070.280000px;}
.y49{bottom:1072.080000px;}
.y4e{bottom:1072.560000px;}
.y3d{bottom:1072.680000px;}
.y46{bottom:1073.580000px;}
.y40{bottom:1073.880000px;}
.y43{bottom:1074.180000px;}
.y5e{bottom:1074.240000px;}
.y185{bottom:1078.380000px;}
.yd{bottom:1081.080000px;}
.y8c{bottom:1083.420000px;}
.y5d{bottom:1090.260000px;}
.y4b{bottom:1104.120000px;}
.y48{bottom:1105.920000px;}
.y4d{bottom:1106.400000px;}
.y3c{bottom:1106.520000px;}
.y45{bottom:1107.420000px;}
.y3f{bottom:1107.720000px;}
.y42{bottom:1108.020000px;}
.y57{bottom:1108.800000px;}
.yc{bottom:1114.920000px;}
.y56{bottom:1132.200000px;}
.y55{bottom:1144.260000px;}
.y54{bottom:1160.100000px;}
.y53{bottom:1175.760000px;}
.h15{height:11.505600px;}
.h1a{height:22.334400px;}
.h2{height:28.425600px;}
.h5{height:29.160000px;}
.h3{height:33.840000px;}
.h18{height:36.547200px;}
.h8{height:39.254400px;}
.h13{height:39.313477px;}
.h1{height:45.345600px;}
.h7{height:48.052800px;}
.h19{height:49.992188px;}
.h17{height:61.868160px;}
.h4{height:62.265600px;}
.h14{height:67.680000px;}
.h16{height:79.185600px;}
.h6{height:123.854400px;}
.h12{height:1080.000000px;}
.hf{height:1177.200000px;}
.he{height:1179.000000px;}
.h10{height:1179.480000px;}
.ha{height:1179.600000px;}
.hd{height:1180.500000px;}
.hb{height:1180.800000px;}
.hc{height:1181.100000px;}
.h11{height:1182.720000px;}
.h9{height:1185.900000px;}
.h0{height:1188.000000px;}
.w9{width:810.000000px;}
.w6{width:916.499986px;}
.w5{width:917.099986px;}
.w7{width:917.339986px;}
.w2{width:917.399986px;}
.w3{width:917.699986px;}
.w4{width:917.849986px;}
.w8{width:917.939986px;}
.wa{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:1.500014px;}
.x2{left:53.999986px;}
.x1e{left:55.799986px;}
.x18{left:96.479986px;}
.x13{left:104.160012px;}
.x19{left:117.935986px;}
.x11{left:138.995986px;}
.x4{left:228.269986px;}
.x15{left:240.329986px;}
.x1d{left:270.029986px;}
.x17{left:393.194986px;}
.x1a{left:455.654986px;}
.x16{left:456.914986px;}
.x1{left:459.074986px;}
.xb{left:555.044986px;}
.x5{left:563.504986px;}
.x10{left:612.464986px;}
.xc{left:621.644986px;}
.x7{left:625.424986px;}
.xe{left:664.844986px;}
.xd{left:673.124986px;}
.x14{left:681.689988px;}
.x9{left:704.624986px;}
.x6{left:715.064986px;}
.xf{left:727.709986px;}
.x3{left:740.669986px;}
.xa{left:748.229986px;}
.x1b{left:858.209973px;}
.x1c{left:861.089986px;}
.x8{left:864.149986px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880000pt;}
.ls1b{letter-spacing:-0.730667pt;}
.ls29{letter-spacing:-0.682667pt;}
.ls6{letter-spacing:-0.656000pt;}
.ls15{letter-spacing:-0.476267pt;}
.ls1d{letter-spacing:-0.409600pt;}
.ls5{letter-spacing:-0.325333pt;}
.ls8{letter-spacing:-0.181333pt;}
.ls27{letter-spacing:-0.180267pt;}
.ls1{letter-spacing:-0.170133pt;}
.ls3{letter-spacing:-0.169067pt;}
.ls17{letter-spacing:-0.133333pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.074667pt;}
.lse{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.043520pt;}
.ls2b{letter-spacing:-0.023040pt;}
.ls4{letter-spacing:-0.015360pt;}
.ls19{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.012800pt;}
.ls2c{letter-spacing:0.030720pt;}
.ls16{letter-spacing:0.051200pt;}
.ls12{letter-spacing:0.053867pt;}
.ls23{letter-spacing:0.086933pt;}
.ls25{letter-spacing:0.115200pt;}
.ls10{letter-spacing:0.120533pt;}
.ls2a{letter-spacing:0.161280pt;}
.lsf{letter-spacing:0.163733pt;}
.lsa{letter-spacing:0.218880pt;}
.lsb{letter-spacing:0.229120pt;}
.ls1a{letter-spacing:0.230400pt;}
.ls24{letter-spacing:0.240533pt;}
.ls26{letter-spacing:0.284267pt;}
.lsc{letter-spacing:0.298133pt;}
.ls2{letter-spacing:0.314667pt;}
.ls13{letter-spacing:1.786880pt;}
.ls14{letter-spacing:3.066880pt;}
.ls22{letter-spacing:14.991360pt;}
.ls21{letter-spacing:15.631360pt;}
.ls20{letter-spacing:32.271360pt;}
.ls18{letter-spacing:32.911360pt;}
.ls1f{letter-spacing:37.072640pt;}
.ls28{letter-spacing:753.386667pt;}
.ls1c{letter-spacing:753.440000pt;}
.ws11{word-spacing:-58.880000pt;}
.ws5{word-spacing:-32.090880pt;}
.ws18{word-spacing:-17.369600pt;}
.ws15{word-spacing:-16.373653pt;}
.ws12{word-spacing:-16.363520pt;}
.wsc{word-spacing:-16.253653pt;}
.ws16{word-spacing:-16.248320pt;}
.ws14{word-spacing:-16.220053pt;}
.wsf{word-spacing:-16.184320pt;}
.ws1a{word-spacing:-16.163840pt;}
.ws10{word-spacing:-16.133120pt;}
.ws19{word-spacing:-16.110080pt;}
.wsd{word-spacing:-16.089600pt;}
.wse{word-spacing:-16.069120pt;}
.ws13{word-spacing:-15.656853pt;}
.ws7{word-spacing:-10.944000pt;}
.ws6{word-spacing:-10.816000pt;}
.wsb{word-spacing:-10.170880pt;}
.wsa{word-spacing:-10.074880pt;}
.ws17{word-spacing:-9.990613pt;}
.ws0{word-spacing:-7.929600pt;}
.ws9{word-spacing:-7.365120pt;}
.ws3{word-spacing:-7.349760pt;}
.ws2{word-spacing:-7.196053pt;}
.ws4{word-spacing:-6.709120pt;}
.ws1{word-spacing:-4.384000pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-5.169493pt;}
._11{margin-left:-4.106240pt;}
._8{margin-left:-3.176960pt;}
._3{margin-left:-1.983573pt;}
._1{margin-left:-0.967680pt;}
._0{width:1.666560pt;}
._2{width:2.664533pt;}
._9{width:3.620267pt;}
._b{width:4.525653pt;}
._5{width:5.419520pt;}
._4{width:6.893227pt;}
._d{width:8.217600pt;}
._c{width:9.131520pt;}
._18{width:10.094080pt;}
._a{width:11.065600pt;}
._6{width:12.398080pt;}
._7{width:13.303040pt;}
._1e{width:14.205440pt;}
._12{width:15.132160pt;}
._1f{width:17.023147pt;}
._16{width:18.017280pt;}
._17{width:18.992640pt;}
._10{width:19.901440pt;}
._e{width:21.373440pt;}
._f{width:22.322773pt;}
._15{width:23.301973pt;}
._1a{width:24.518827pt;}
._19{width:25.966080pt;}
._26{width:26.871893pt;}
._13{width:27.968000pt;}
._14{width:29.027840pt;}
._21{width:30.028800pt;}
._22{width:31.305813pt;}
._23{width:33.008640pt;}
._20{width:33.973760pt;}
._1c{width:35.636053pt;}
._1b{width:36.988587pt;}
._24{width:38.919680pt;}
._25{width:40.020053pt;}
._31{width:59.998720pt;}
._32{width:61.882880pt;}
._2e{width:73.717760pt;}
._2f{width:74.690133pt;}
._30{width:77.073920pt;}
._28{width:90.969600pt;}
._29{width:92.063147pt;}
._34{width:128.328960pt;}
._33{width:129.694293pt;}
._2a{width:171.444907pt;}
._2b{width:172.400640pt;}
._2c{width:173.501013pt;}
._27{width:230.632960pt;}
._2d{width:963.981227pt;}
.fsa{font-size:10.880000pt;}
.fs4{font-size:16.000000pt;}
.fse{font-size:21.120000pt;}
.fs1{font-size:26.880000pt;}
.fs2{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs5{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:1.866667pt;}
.y5c{bottom:2.240000pt;}
.yb{bottom:2.720000pt;}
.y50{bottom:4.693333pt;}
.y5b{bottom:12.160000pt;}
.ya{bottom:14.720000pt;}
.y5a{bottom:22.240000pt;}
.y9{bottom:26.720000pt;}
.y59{bottom:32.160000pt;}
.y8{bottom:38.240000pt;}
.y58{bottom:42.272000pt;}
.y7{bottom:48.192000pt;}
.y175{bottom:52.992000pt;}
.yab{bottom:54.912000pt;}
.yd0{bottom:56.992000pt;}
.y6{bottom:58.272000pt;}
.y17d{bottom:58.912000pt;}
.y174{bottom:67.072000pt;}
.y5{bottom:68.192000pt;}
.y140{bottom:68.992000pt;}
.y173{bottom:70.432000pt;}
.yeb{bottom:70.912000pt;}
.y10f{bottom:72.992000pt;}
.y126{bottom:74.912000pt;}
.y8b{bottom:76.992000pt;}
.y4{bottom:78.272000pt;}
.ycf{bottom:78.912000pt;}
.y17c{bottom:80.992000pt;}
.y172{bottom:81.312000pt;}
.y3{bottom:88.192000pt;}
.y51{bottom:90.560000pt;}
.y13f{bottom:90.912000pt;}
.yea{bottom:92.992000pt;}
.y10e{bottom:94.912000pt;}
.y125{bottom:96.992000pt;}
.y8a{bottom:98.912000pt;}
.y2{bottom:99.552000pt;}
.yce{bottom:100.992000pt;}
.y17b{bottom:102.912000pt;}
.yaa{bottom:106.912000pt;}
.y1ac{bottom:110.912000pt;}
.y13e{bottom:112.992000pt;}
.ye9{bottom:114.912000pt;}
.y1{bottom:115.552000pt;}
.y171{bottom:116.832000pt;}
.y124{bottom:118.912000pt;}
.y89{bottom:120.992000pt;}
.ycd{bottom:122.912000pt;}
.y10d{bottom:124.832000pt;}
.y17a{bottom:124.992000pt;}
.ya9{bottom:128.992000pt;}
.y14d{bottom:130.912000pt;}
.y1ab{bottom:132.992000pt;}
.y13d{bottom:134.906667pt;}
.y1b3{bottom:136.826667pt;}
.ye8{bottom:136.986667pt;}
.y3a{bottom:137.946667pt;}
.y170{bottom:138.906667pt;}
.y123{bottom:140.986667pt;}
.y88{bottom:142.906667pt;}
.ycc{bottom:144.986667pt;}
.y10c{bottom:146.906667pt;}
.ya8{bottom:150.906667pt;}
.y39{bottom:152.026667pt;}
.y14c{bottom:152.986667pt;}
.y13c{bottom:156.986667pt;}
.ye7{bottom:158.906667pt;}
.y16f{bottom:160.986667pt;}
.y122{bottom:162.906667pt;}
.y87{bottom:164.986667pt;}
.y38{bottom:166.106667pt;}
.ycb{bottom:166.906667pt;}
.y10b{bottom:168.986667pt;}
.y156{bottom:172.826667pt;}
.ya7{bottom:172.986667pt;}
.y14b{bottom:174.906667pt;}
.y13b{bottom:178.906667pt;}
.y37{bottom:180.026667pt;}
.ye6{bottom:180.986667pt;}
.y16e{bottom:182.906667pt;}
.y121{bottom:184.986667pt;}
.yca{bottom:188.986667pt;}
.y10a{bottom:190.906667pt;}
.y36{bottom:194.106667pt;}
.y86{bottom:194.906667pt;}
.y14a{bottom:196.986667pt;}
.y13a{bottom:200.986667pt;}
.ye5{bottom:202.906667pt;}
.y16d{bottom:204.986667pt;}
.y35{bottom:208.026667pt;}
.y109{bottom:212.986667pt;}
.y120{bottom:214.906667pt;}
.y85{bottom:216.986667pt;}
.yc9{bottom:218.906667pt;}
.y34{bottom:222.106667pt;}
.y1a1{bottom:224.826667pt;}
.yf8{bottom:224.986667pt;}
.y16c{bottom:226.906667pt;}
.y139{bottom:230.906667pt;}
.ye4{bottom:232.826667pt;}
.y108{bottom:234.906667pt;}
.y33{bottom:236.026667pt;}
.y11f{bottom:236.986667pt;}
.y84{bottom:238.906667pt;}
.yc8{bottom:240.986667pt;}
.y1a0{bottom:246.906667pt;}
.y16b{bottom:248.986667pt;}
.y32{bottom:250.106667pt;}
.y138{bottom:252.986667pt;}
.ye3{bottom:254.906667pt;}
.y107{bottom:256.986667pt;}
.y11e{bottom:258.906667pt;}
.y83{bottom:260.986667pt;}
.yc7{bottom:262.906667pt;}
.y31{bottom:264.026667pt;}
.y194{bottom:264.826667pt;}
.y1aa{bottom:266.946667pt;}
.ya6{bottom:268.866667pt;}
.y19f{bottom:269.026667pt;}
.y149{bottom:270.946667pt;}
.y137{bottom:274.946667pt;}
.ye2{bottom:277.026667pt;}
.y30{bottom:278.946667pt;}
.y11d{bottom:281.026667pt;}
.y82{bottom:282.946667pt;}
.y179{bottom:286.946667pt;}
.y1a9{bottom:289.026667pt;}
.ya5{bottom:290.946667pt;}
.yc6{bottom:292.866667pt;}
.y148{bottom:293.026667pt;}
.y2f{bottom:295.906667pt;}
.y136{bottom:297.026667pt;}
.ye1{bottom:298.946667pt;}
.y184{bottom:300.866667pt;}
.y11c{bottom:302.946667pt;}
.y81{bottom:305.026667pt;}
.y106{bottom:308.866667pt;}
.y178{bottom:309.026667pt;}
.y2e{bottom:312.866667pt;}
.ya4{bottom:313.026667pt;}
.yc5{bottom:314.946667pt;}
.y135{bottom:318.946667pt;}
.y16a{bottom:320.226667pt;}
.ye0{bottom:321.026667pt;}
.y183{bottom:322.946667pt;}
.y11b{bottom:325.026667pt;}
.y80{bottom:326.946667pt;}
.y2d{bottom:329.986667pt;}
.y105{bottom:330.946667pt;}
.ya3{bottom:334.946667pt;}
.yc4{bottom:337.026667pt;}
.y1a8{bottom:341.026667pt;}
.ydf{bottom:342.946667pt;}
.y182{bottom:345.026667pt;}
.y2c{bottom:346.946667pt;}
.y134{bottom:348.866667pt;}
.y104{bottom:353.026667pt;}
.y7f{bottom:356.866667pt;}
.ya2{bottom:357.026667pt;}
.yc3{bottom:358.946667pt;}
.y2b{bottom:365.026667pt;}
.y181{bottom:366.946667pt;}
.y169{bottom:368.386667pt;}
.y11a{bottom:369.026667pt;}
.y133{bottom:370.946667pt;}
.y19e{bottom:372.866667pt;}
.y103{bottom:374.946667pt;}
.y7e{bottom:378.946667pt;}
.yc2{bottom:381.026667pt;}
.y2a{bottom:385.986667pt;}
.yde{bottom:386.946667pt;}
.y180{bottom:389.026667pt;}
.y132{bottom:393.026667pt;}
.y19d{bottom:394.946667pt;}
.y102{bottom:397.026667pt;}
.y119{bottom:398.946667pt;}
.y7d{bottom:401.026667pt;}
.y29{bottom:402.946667pt;}
.ydd{bottom:409.026667pt;}
.yc1{bottom:410.946667pt;}
.y131{bottom:414.946667pt;}
.y1b2{bottom:416.866667pt;}
.y19c{bottom:417.026667pt;}
.y101{bottom:418.946667pt;}
.y28{bottom:419.906667pt;}
.y118{bottom:421.026667pt;}
.y7c{bottom:422.946667pt;}
.y155{bottom:423.426667pt;}
.y168{bottom:425.026667pt;}
.y147{bottom:432.866667pt;}
.yc0{bottom:433.026667pt;}
.y27{bottom:436.866667pt;}
.y130{bottom:437.026667pt;}
.ydc{bottom:438.946667pt;}
.y17f{bottom:440.866667pt;}
.y100{bottom:441.026667pt;}
.y117{bottom:442.946667pt;}
.y1a7{bottom:444.866667pt;}
.y7b{bottom:445.026667pt;}
.y167{bottom:446.946667pt;}
.ya1{bottom:452.866667pt;}
.y26{bottom:453.986667pt;}
.ybf{bottom:454.946667pt;}
.y154{bottom:456.386667pt;}
.y12f{bottom:458.946667pt;}
.ydb{bottom:461.026667pt;}
.yff{bottom:462.946667pt;}
.y116{bottom:465.026667pt;}
.y7a{bottom:466.946667pt;}
.y19b{bottom:468.866667pt;}
.y166{bottom:469.026667pt;}
.y193{bottom:470.946667pt;}
.y25{bottom:472.066667pt;}
.ya0{bottom:474.946667pt;}
.ybe{bottom:477.026667pt;}
.y12e{bottom:481.026667pt;}
.yda{bottom:482.946667pt;}
.yfe{bottom:485.026667pt;}
.y115{bottom:487.426667pt;}
.y79{bottom:489.026667pt;}
.y153{bottom:490.946667pt;}
.y1b1{bottom:492.386667pt;}
.y24{bottom:492.866667pt;}
.y192{bottom:493.026667pt;}
.y9f{bottom:497.053333pt;}
.ybd{bottom:498.973333pt;}
.yd9{bottom:505.053333pt;}
.y177{bottom:506.973333pt;}
.y23{bottom:510.013333pt;}
.y78{bottom:510.973333pt;}
.y152{bottom:513.053333pt;}
.y165{bottom:513.533333pt;}
.yfd{bottom:514.973333pt;}
.y9e{bottom:518.973333pt;}
.y19a{bottom:520.893333pt;}
.y146{bottom:521.053333pt;}
.y22{bottom:526.973333pt;}
.ybc{bottom:528.893333pt;}
.y17e{bottom:529.053333pt;}
.y12d{bottom:533.053333pt;}
.y151{bottom:534.973333pt;}
.y176{bottom:536.893333pt;}
.yfc{bottom:537.053333pt;}
.y1a6{bottom:540.893333pt;}
.y9d{bottom:541.053333pt;}
.y77{bottom:542.493333pt;}
.y145{bottom:542.973333pt;}
.y21{bottom:543.933333pt;}
.y164{bottom:544.893333pt;}
.yd8{bottom:549.053333pt;}
.ybb{bottom:550.973333pt;}
.y12c{bottom:554.973333pt;}
.y150{bottom:557.053333pt;}
.yfb{bottom:558.973333pt;}
.y20{bottom:560.893333pt;}
.y9c{bottom:562.973333pt;}
.y199{bottom:565.053333pt;}
.y163{bottom:566.973333pt;}
.y76{bottom:569.053333pt;}
.yd7{bottom:570.973333pt;}
.y144{bottom:572.893333pt;}
.yba{bottom:573.053333pt;}
.y12b{bottom:577.053333pt;}
.y1f{bottom:578.973333pt;}
.yfa{bottom:581.053333pt;}
.y9b{bottom:585.053333pt;}
.y162{bottom:589.053333pt;}
.y75{bottom:590.973333pt;}
.y114{bottom:592.893333pt;}
.yd6{bottom:593.053333pt;}
.y143{bottom:594.973333pt;}
.y12a{bottom:598.973333pt;}
.yf7{bottom:601.053333pt;}
.yb9{bottom:602.973333pt;}
.y9a{bottom:607.453333pt;}
.y1e{bottom:608.893333pt;}
.yd5{bottom:614.973333pt;}
.y142{bottom:617.053333pt;}
.y74{bottom:618.973333pt;}
.y129{bottom:621.053333pt;}
.yf6{bottom:622.973333pt;}
.y198{bottom:624.893333pt;}
.yb8{bottom:625.053333pt;}
.y1d{bottom:630.973333pt;}
.yd4{bottom:637.053333pt;}
.y99{bottom:638.973333pt;}
.y73{bottom:641.053333pt;}
.y128{bottom:642.973333pt;}
.y113{bottom:644.893333pt;}
.yf5{bottom:645.053333pt;}
.yb7{bottom:646.973333pt;}
.y191{bottom:654.973333pt;}
.y72{bottom:655.133333pt;}
.yd3{bottom:658.973333pt;}
.y1c{bottom:660.893333pt;}
.y98{bottom:661.053333pt;}
.y127{bottom:665.533333pt;}
.yf4{bottom:666.973333pt;}
.y71{bottom:669.053333pt;}
.y161{bottom:670.973333pt;}
.y14f{bottom:674.973333pt;}
.y190{bottom:677.053333pt;}
.yd2{bottom:681.053333pt;}
.y1b{bottom:682.973333pt;}
.y70{bottom:683.133333pt;}
.yf3{bottom:689.053333pt;}
.yb6{bottom:690.973333pt;}
.y160{bottom:693.053333pt;}
.y112{bottom:696.893333pt;}
.y6f{bottom:697.053333pt;}
.y18f{bottom:698.973333pt;}
.yd1{bottom:703.453333pt;}
.y14e{bottom:704.893333pt;}
.y97{bottom:705.053333pt;}
.yf2{bottom:710.973333pt;}
.y6e{bottom:711.133333pt;}
.y141{bottom:712.893333pt;}
.yb5{bottom:713.053333pt;}
.y1a{bottom:718.173333pt;}
.y111{bottom:718.973333pt;}
.y197{bottom:720.893333pt;}
.y18e{bottom:721.053333pt;}
.y15f{bottom:723.013333pt;}
.y6d{bottom:725.093333pt;}
.y96{bottom:727.013333pt;}
.yf1{bottom:733.093333pt;}
.yb4{bottom:735.013333pt;}
.y6c{bottom:739.173333pt;}
.y1b0{bottom:740.933333pt;}
.y1a5{bottom:741.093333pt;}
.y18d{bottom:743.013333pt;}
.y15e{bottom:745.093333pt;}
.y110{bottom:748.933333pt;}
.y95{bottom:749.093333pt;}
.y6b{bottom:753.093333pt;}
.yf0{bottom:755.013333pt;}
.yb3{bottom:757.093333pt;}
.y19{bottom:762.213333pt;}
.y1a4{bottom:763.013333pt;}
.yf9{bottom:764.933333pt;}
.y18c{bottom:765.093333pt;}
.y94{bottom:771.013333pt;}
.y6a{bottom:772.933333pt;}
.y15d{bottom:775.013333pt;}
.yef{bottom:777.573333pt;}
.yb2{bottom:779.013333pt;}
.y1af{bottom:785.093333pt;}
.y69{bottom:787.013333pt;}
.y1a3{bottom:792.933333pt;}
.y196{bottom:795.013333pt;}
.y15c{bottom:797.573333pt;}
.y93{bottom:800.933333pt;}
.yb1{bottom:801.093333pt;}
.y18{bottom:806.213333pt;}
.yee{bottom:808.933333pt;}
.y68{bottom:809.093333pt;}
.y1a2{bottom:815.013333pt;}
.y18b{bottom:816.933333pt;}
.y92{bottom:823.013333pt;}
.y67{bottom:823.173333pt;}
.y195{bottom:826.533333pt;}
.y15b{bottom:828.933333pt;}
.yed{bottom:831.013333pt;}
.y52{bottom:834.053333pt;}
.y66{bottom:837.093333pt;}
.y18a{bottom:839.013333pt;}
.y17{bottom:842.373333pt;}
.y91{bottom:845.093333pt;}
.y15a{bottom:851.013333pt;}
.y65{bottom:851.173333pt;}
.y16{bottom:852.293333pt;}
.yb0{bottom:852.933333pt;}
.yec{bottom:853.093333pt;}
.y1ae{bottom:859.013333pt;}
.y189{bottom:861.093333pt;}
.y15{bottom:862.373333pt;}
.y64{bottom:865.093333pt;}
.y90{bottom:867.013333pt;}
.y14{bottom:872.293333pt;}
.y159{bottom:873.093333pt;}
.yaf{bottom:875.013333pt;}
.y63{bottom:879.173333pt;}
.y13{bottom:882.373333pt;}
.y188{bottom:883.013333pt;}
.y1ad{bottom:888.933333pt;}
.y8f{bottom:889.093333pt;}
.y12{bottom:892.293333pt;}
.y62{bottom:893.093333pt;}
.yae{bottom:897.093333pt;}
.y11{bottom:902.373333pt;}
.y158{bottom:903.013333pt;}
.y187{bottom:905.093333pt;}
.y61{bottom:907.173333pt;}
.y8e{bottom:911.013333pt;}
.y10{bottom:912.293333pt;}
.yad{bottom:919.013333pt;}
.y60{bottom:921.093333pt;}
.yf{bottom:922.373333pt;}
.y186{bottom:927.013333pt;}
.y4a{bottom:932.293333pt;}
.y4f{bottom:932.720000pt;}
.y3e{bottom:932.826667pt;}
.y157{bottom:932.933333pt;}
.y47{bottom:933.626667pt;}
.y41{bottom:933.893333pt;}
.y44{bottom:934.160000pt;}
.y5f{bottom:935.173333pt;}
.ye{bottom:940.293333pt;}
.y8d{bottom:940.933333pt;}
.yac{bottom:941.093333pt;}
.y4c{bottom:951.360000pt;}
.y49{bottom:952.960000pt;}
.y4e{bottom:953.386667pt;}
.y3d{bottom:953.493333pt;}
.y46{bottom:954.293333pt;}
.y40{bottom:954.560000pt;}
.y43{bottom:954.826667pt;}
.y5e{bottom:954.880000pt;}
.y185{bottom:958.560000pt;}
.yd{bottom:960.960000pt;}
.y8c{bottom:963.040000pt;}
.y5d{bottom:969.120000pt;}
.y4b{bottom:981.440000pt;}
.y48{bottom:983.040000pt;}
.y4d{bottom:983.466667pt;}
.y3c{bottom:983.573333pt;}
.y45{bottom:984.373333pt;}
.y3f{bottom:984.640000pt;}
.y42{bottom:984.906667pt;}
.y57{bottom:985.600000pt;}
.yc{bottom:991.040000pt;}
.y56{bottom:1006.400000pt;}
.y55{bottom:1017.120000pt;}
.y54{bottom:1031.200000pt;}
.y53{bottom:1045.120000pt;}
.h15{height:10.227200pt;}
.h1a{height:19.852800pt;}
.h2{height:25.267200pt;}
.h5{height:25.920000pt;}
.h3{height:30.080000pt;}
.h18{height:32.486400pt;}
.h8{height:34.892800pt;}
.h13{height:34.945312pt;}
.h1{height:40.307200pt;}
.h7{height:42.713600pt;}
.h19{height:44.437500pt;}
.h17{height:54.993920pt;}
.h4{height:55.347200pt;}
.h14{height:60.160000pt;}
.h16{height:70.387200pt;}
.h6{height:110.092800pt;}
.h12{height:960.000000pt;}
.hf{height:1046.400000pt;}
.he{height:1048.000000pt;}
.h10{height:1048.426667pt;}
.ha{height:1048.533333pt;}
.hd{height:1049.333333pt;}
.hb{height:1049.600000pt;}
.hc{height:1049.866667pt;}
.h11{height:1051.306667pt;}
.h9{height:1054.133333pt;}
.h0{height:1056.000000pt;}
.w9{width:720.000000pt;}
.w6{width:814.666655pt;}
.w5{width:815.199988pt;}
.w7{width:815.413321pt;}
.w2{width:815.466655pt;}
.w3{width:815.733321pt;}
.w4{width:815.866655pt;}
.w8{width:815.946655pt;}
.wa{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.333345pt;}
.x2{left:47.999988pt;}
.x1e{left:49.599988pt;}
.x18{left:85.759988pt;}
.x13{left:92.586677pt;}
.x19{left:104.831988pt;}
.x11{left:123.551988pt;}
.x4{left:202.906655pt;}
.x15{left:213.626655pt;}
.x1d{left:240.026655pt;}
.x17{left:349.506655pt;}
.x1a{left:405.026655pt;}
.x16{left:406.146655pt;}
.x1{left:408.066655pt;}
.xb{left:493.373321pt;}
.x5{left:500.893321pt;}
.x10{left:544.413321pt;}
.xc{left:552.573321pt;}
.x7{left:555.933321pt;}
.xe{left:590.973321pt;}
.xd{left:598.333321pt;}
.x14{left:605.946656pt;}
.x9{left:626.333321pt;}
.x6{left:635.613321pt;}
.xf{left:646.853321pt;}
.x3{left:658.373321pt;}
.xa{left:665.093321pt;}
.x1b{left:762.853309pt;}
.x1c{left:765.413321pt;}
.x8{left:768.133321pt;}
}




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