
    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_bb3667ea63650cf0ecf1bd28.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_c73b20d9cc93a8b14aae1da2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136230;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_a46ffe26e0857a8fdd6f5f1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_692da1b115162c32abbfdc15.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_ffd22c68c271f36ae3b9940f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_34bd7684b3b6b32994be1329.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_7344b54216358b1c63924b44.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_41c1649a51343a96f053c9a3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8b093681ed2dfc5fe5c45171.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_5f1dcae3e2cbcf53e08be0ff.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.549805;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_153d472cdd5aab5e4bb80d7c.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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);}
.vb{vertical-align:-147.600000px;}
.v5{vertical-align:-33.840000px;}
.vf{vertical-align:-31.680000px;}
.v9{vertical-align:-23.040000px;}
.v3{vertical-align:-20.160000px;}
.ve{vertical-align:-18.720000px;}
.v1{vertical-align:-17.280000px;}
.v12{vertical-align:-12.240000px;}
.v17{vertical-align:-9.360000px;}
.v15{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.280000px;}
.va{vertical-align:27.360000px;}
.v13{vertical-align:42.480000px;}
.v10{vertical-align:46.920000px;}
.v11{vertical-align:49.680000px;}
.v4{vertical-align:54.000000px;}
.vc{vertical-align:64.080000px;}
.v14{vertical-align:66.960000px;}
.v8{vertical-align:69.840000px;}
.vd{vertical-align:73.440000px;}
.v16{vertical-align:82.080000px;}
.v6{vertical-align:108.000000px;}
.v7{vertical-align:138.960000px;}
.ls3b{letter-spacing:-1.458000px;}
.ls43{letter-spacing:-0.378600px;}
.ls13{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.341400px;}
.ls14{letter-spacing:-0.331800px;}
.ls37{letter-spacing:-0.322800px;}
.ls3d{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.037440px;}
.ls35{letter-spacing:-0.028080px;}
.ls2f{letter-spacing:-0.015120px;}
.ls3a{letter-spacing:-0.009360px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.037440px;}
.ls30{letter-spacing:0.081600px;}
.ls8{letter-spacing:0.096000px;}
.ls7{letter-spacing:0.129600px;}
.ls15{letter-spacing:0.130800px;}
.ls1e{letter-spacing:0.145440px;}
.ls2{letter-spacing:0.181440px;}
.ls1a{letter-spacing:0.187200px;}
.ls28{letter-spacing:0.337680px;}
.ls31{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.369360px;}
.ls38{letter-spacing:0.369600px;}
.ls34{letter-spacing:0.378600px;}
.ls3e{letter-spacing:0.378720px;}
.ls18{letter-spacing:0.432720px;}
.ls5{letter-spacing:0.504000px;}
.ls26{letter-spacing:0.517680px;}
.ls25{letter-spacing:0.612720px;}
.ls39{letter-spacing:1.350000px;}
.ls3c{letter-spacing:1.422000px;}
.ls10{letter-spacing:2.499120px;}
.ls9{letter-spacing:2.838960px;}
.lsa{letter-spacing:3.738960px;}
.ls22{letter-spacing:4.358880px;}
.ls12{letter-spacing:5.092560px;}
.ls23{letter-spacing:5.562720px;}
.ls40{letter-spacing:5.580000px;}
.lsb{letter-spacing:5.812560px;}
.ls41{letter-spacing:6.300000px;}
.ls1f{letter-spacing:8.670240px;}
.ls42{letter-spacing:13.500000px;}
.ls21{letter-spacing:15.870240px;}
.lsf{letter-spacing:18.072720px;}
.lsc{letter-spacing:18.792720px;}
.ls20{letter-spacing:18.865440px;}
.ls27{letter-spacing:20.741040px;}
.lsd{letter-spacing:21.558960px;}
.ls2b{letter-spacing:23.592720px;}
.ls1b{letter-spacing:23.798880px;}
.ls17{letter-spacing:23.812560px;}
.ls16{letter-spacing:23.932560px;}
.ls1c{letter-spacing:24.282720px;}
.ls11{letter-spacing:24.532560px;}
.ls24{letter-spacing:24.985440px;}
.ls2e{letter-spacing:25.104240px;}
.ls29{letter-spacing:25.757040px;}
.ls2a{letter-spacing:25.781040px;}
.ls19{letter-spacing:26.733600px;}
.ls3f{letter-spacing:27.180000px;}
.ls1d{letter-spacing:29.305440px;}
.ls2d{letter-spacing:37.344240px;}
.ls2c{letter-spacing:115.233840px;}
.lse{letter-spacing:117.318960px;}
.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:-82.782000px;}
.ws1b{word-spacing:-24.300000px;}
.ws1a{word-spacing:-21.429600px;}
.ws2{word-spacing:-21.420000px;}
.ws20{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.097440px;}
.ws17{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws1c{word-spacing:-21.050640px;}
.ws3{word-spacing:-21.022560px;}
.ws19{word-spacing:-20.737200px;}
.ws9{word-spacing:-20.728200px;}
.ws16{word-spacing:-20.718600px;}
.ws5{word-spacing:-20.700000px;}
.ws21{word-spacing:-20.681400px;}
.wsc{word-spacing:-18.663600px;}
.ws6{word-spacing:-18.532800px;}
.ws18{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.243200px;}
.ws11{word-spacing:-13.228800px;}
.ws8{word-spacing:-13.147200px;}
.wsf{word-spacing:-13.132080px;}
.ws1f{word-spacing:-12.204000px;}
.ws4{word-spacing:0.000000px;}
.ws13{word-spacing:13.032000px;}
.wsd{word-spacing:13.451760px;}
.ws12{word-spacing:13.545360px;}
.ws14{word-spacing:13.602960px;}
.wsa{word-spacing:15.602880px;}
.ws10{word-spacing:65.779920px;}
.ws1e{word-spacing:90.048000px;}
.ws15{word-spacing:178.331760px;}
.wsb{word-spacing:263.471760px;}
.wse{word-spacing:574.451760px;}
._18{margin-left:-19.818720px;}
._25{margin-left:-16.858800px;}
._28{margin-left:-15.495360px;}
._23{margin-left:-13.725360px;}
._20{margin-left:-11.435040px;}
._2d{margin-left:-9.606960px;}
._24{margin-left:-8.601840px;}
._19{margin-left:-5.896800px;}
._1a{margin-left:-4.706880px;}
._f{margin-left:-2.905440px;}
._1{margin-left:-1.158720px;}
._0{width:1.392000px;}
._2f{width:2.407200px;}
._4{width:3.448800px;}
._5{width:5.291520px;}
._c{width:6.486480px;}
._2c{width:7.601040px;}
._29{width:9.140880px;}
._2{width:10.277280px;}
._e{width:11.456640px;}
._1e{width:13.617120px;}
._2e{width:14.753040px;}
._1b{width:15.849360px;}
._27{width:17.184960px;}
._22{width:18.589680px;}
._21{width:19.747440px;}
._10{width:22.155120px;}
._11{width:23.819280px;}
._16{width:25.756800px;}
._17{width:27.386160px;}
._6{width:28.894320px;}
._7{width:30.298080px;}
._3{width:31.317840px;}
._d{width:32.422800px;}
._39{width:33.759120px;}
._2b{width:34.791120px;}
._1f{width:35.970480px;}
._9{width:38.308560px;}
._1d{width:42.389520px;}
._1c{width:43.610640px;}
._34{width:44.933520px;}
._8{width:46.332000px;}
._26{width:47.910000px;}
._12{width:49.064400px;}
._13{width:50.186400px;}
._37{width:53.071200px;}
._a{width:57.558480px;}
._b{width:58.606320px;}
._32{width:61.643040px;}
._33{width:65.033280px;}
._31{width:68.658960px;}
._38{width:74.636640px;}
._14{width:79.943760px;}
._15{width:81.038880px;}
._30{width:86.204160px;}
._36{width:153.732000px;}
._35{width:155.826000px;}
._2a{width:825.609360px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y87{bottom:8.100000px;}
.y8e{bottom:8.280000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y88{bottom:21.960000px;}
.yda{bottom:22.290000px;}
.y2{bottom:24.660000px;}
.y89{bottom:36.000000px;}
.y85{bottom:36.360000px;}
.yd8{bottom:43.275000px;}
.y8{bottom:44.640000px;}
.ycd{bottom:60.840000px;}
.yce{bottom:89.970000px;}
.yf1{bottom:95.256000px;}
.y31{bottom:98.856000px;}
.y83{bottom:101.556000px;}
.ya1{bottom:113.976000px;}
.y56{bottom:118.656000px;}
.ycf{bottom:119.055000px;}
.yf0{bottom:122.976000px;}
.y30{bottom:126.576000px;}
.y82{bottom:129.276000px;}
.ycb{bottom:138.276000px;}
.ya0{bottom:141.876000px;}
.yd0{bottom:148.170000px;}
.y55{bottom:149.076000px;}
.yef{bottom:150.870000px;}
.y2f{bottom:154.470000px;}
.y81{bottom:157.170000px;}
.yca{bottom:165.990000px;}
.y9f{bottom:169.590000px;}
.yd1{bottom:177.300000px;}
.y54{bottom:177.330000px;}
.yee{bottom:178.590000px;}
.y2e{bottom:182.190000px;}
.y80{bottom:184.890000px;}
.yb3{bottom:189.570000px;}
.yc9{bottom:193.890000px;}
.yd9{bottom:196.230000px;}
.y9e{bottom:197.310000px;}
.yed{bottom:206.310000px;}
.yd2{bottom:206.385000px;}
.y53{bottom:207.750000px;}
.y2d{bottom:209.910000px;}
.y7f{bottom:212.610000px;}
.yc8{bottom:221.610000px;}
.y9d{bottom:225.030000px;}
.yec{bottom:234.030000px;}
.yd3{bottom:235.515000px;}
.y52{bottom:236.010000px;}
.y2c{bottom:237.630000px;}
.y7e{bottom:240.330000px;}
.yc7{bottom:249.330000px;}
.y9c{bottom:252.930000px;}
.yeb{bottom:261.930000px;}
.y4f{bottom:262.470000px;}
.yd4{bottom:264.630000px;}
.y2b{bottom:265.530000px;}
.y7c{bottom:269.490000px;}
.y51{bottom:274.710000px;}
.yc6{bottom:277.230000px;}
.y7d{bottom:277.770000px;}
.y9b{bottom:280.650000px;}
.y4d{bottom:289.470000px;}
.yea{bottom:289.650000px;}
.y2a{bottom:293.250000px;}
.yd5{bottom:293.760000px;}
.y7b{bottom:295.050000px;}
.yc5{bottom:301.350000px;}
.y79{bottom:301.530000px;}
.y9a{bottom:308.370000px;}
.y7a{bottom:308.730000px;}
.y50{bottom:315.210000px;}
.y75{bottom:315.570000px;}
.ye9{bottom:317.370000px;}
.y4e{bottom:320.610000px;}
.y29{bottom:320.970000px;}
.yd6{bottom:322.845000px;}
.y78{bottom:326.550000px;}
.yc4{bottom:329.070000px;}
.y99{bottom:336.090000px;}
.y76{bottom:339.915000px;}
.y77{bottom:340.095000px;}
.y4c{bottom:341.355000px;}
.ye8{bottom:345.135000px;}
.y28{bottom:348.915000px;}
.yd7{bottom:351.975000px;}
.yc3{bottom:356.835000px;}
.y74{bottom:361.335000px;}
.y98{bottom:364.035000px;}
.y4b{bottom:369.075000px;}
.ye7{bottom:373.035000px;}
.y27{bottom:376.635000px;}
.yc2{bottom:384.735000px;}
.y73{bottom:389.235000px;}
.y97{bottom:391.755000px;}
.y4a{bottom:396.975000px;}
.ye6{bottom:400.755000px;}
.y26{bottom:404.355000px;}
.yc1{bottom:412.455000px;}
.y72{bottom:417.135000px;}
.y96{bottom:419.475000px;}
.y49{bottom:424.695000px;}
.ye5{bottom:428.475000px;}
.y25{bottom:432.075000px;}
.yc0{bottom:440.175000px;}
.y71{bottom:443.775000px;}
.y95{bottom:447.375000px;}
.y48{bottom:452.415000px;}
.ye4{bottom:456.375000px;}
.y24{bottom:459.975000px;}
.y70{bottom:466.815000px;}
.ybf{bottom:467.895000px;}
.y94{bottom:475.095000px;}
.y47{bottom:480.135000px;}
.ye3{bottom:484.095000px;}
.y6f{bottom:487.515000px;}
.y23{bottom:487.695000px;}
.y93{bottom:495.435000px;}
.ybe{bottom:495.795000px;}
.y46{bottom:508.035000px;}
.ye2{bottom:511.815000px;}
.y6e{bottom:515.235000px;}
.y22{bottom:515.415000px;}
.ybd{bottom:523.515000px;}
.y92{bottom:523.875000px;}
.y45{bottom:535.755000px;}
.ye1{bottom:539.535000px;}
.y6d{bottom:541.515000px;}
.y21{bottom:543.315000px;}
.ybc{bottom:551.235000px;}
.y6c{bottom:552.135000px;}
.y91{bottom:552.495000px;}
.y44{bottom:563.475000px;}
.ye0{bottom:567.435000px;}
.y20{bottom:571.035000px;}
.ybb{bottom:578.955000px;}
.y90{bottom:580.935000px;}
.y6b{bottom:585.075000px;}
.y43{bottom:591.375000px;}
.ydf{bottom:595.155000px;}
.y1f{bottom:598.755000px;}
.y68{bottom:599.115000px;}
.yba{bottom:606.885000px;}
.y8f{bottom:609.585000px;}
.yb2{bottom:614.625000px;}
.y42{bottom:619.845000px;}
.yde{bottom:622.905000px;}
.y69{bottom:623.085000px;}
.y6a{bottom:623.265000px;}
.y1e{bottom:626.505000px;}
.yb9{bottom:634.605000px;}
.y8d{bottom:638.025000px;}
.yb1{bottom:642.525000px;}
.y67{bottom:644.145000px;}
.y41{bottom:648.105000px;}
.ydd{bottom:650.805000px;}
.y1d{bottom:654.405000px;}
.yb8{bottom:662.325000px;}
.y8c{bottom:666.645000px;}
.yb0{bottom:670.245000px;}
.y66{bottom:672.225000px;}
.y40{bottom:676.365000px;}
.ydc{bottom:678.525000px;}
.y1c{bottom:682.125000px;}
.yb7{bottom:690.225000px;}
.y8b{bottom:695.085000px;}
.yaf{bottom:697.965000px;}
.y65{bottom:699.945000px;}
.y3f{bottom:704.805000px;}
.ydb{bottom:706.245000px;}
.y1b{bottom:709.845000px;}
.yb6{bottom:717.945000px;}
.y8a{bottom:723.705000px;}
.yae{bottom:725.865000px;}
.y64{bottom:727.845000px;}
.y3e{bottom:733.965000px;}
.y1a{bottom:737.745000px;}
.yb5{bottom:745.665000px;}
.y84{bottom:752.145000px;}
.yad{bottom:753.585000px;}
.y63{bottom:755.565000px;}
.y3d{bottom:761.865000px;}
.y19{bottom:765.465000px;}
.yb4{bottom:768.885000px;}
.ycc{bottom:770.220000px;}
.yac{bottom:781.305000px;}
.y62{bottom:783.465000px;}
.y3c{bottom:789.585000px;}
.y18{bottom:793.185000px;}
.yab{bottom:801.645000px;}
.y86{bottom:808.485000px;}
.y61{bottom:811.545000px;}
.y3b{bottom:817.305000px;}
.y17{bottom:820.905000px;}
.yaa{bottom:830.265000px;}
.y60{bottom:839.625000px;}
.y3a{bottom:845.025000px;}
.y16{bottom:848.805000px;}
.ya9{bottom:858.705000px;}
.y5f{bottom:867.885000px;}
.y39{bottom:872.970000px;}
.y15{bottom:876.570000px;}
.ya8{bottom:887.370000px;}
.y5e{bottom:896.010000px;}
.y38{bottom:900.690000px;}
.y14{bottom:904.290000px;}
.ya7{bottom:915.810000px;}
.y37{bottom:928.410000px;}
.y13{bottom:932.010000px;}
.ya6{bottom:944.250000px;}
.y5d{bottom:946.950000px;}
.y36{bottom:956.310000px;}
.y12{bottom:959.910000px;}
.ya5{bottom:972.870000px;}
.y5c{bottom:974.670000px;}
.y35{bottom:984.030000px;}
.y11{bottom:987.630000px;}
.ya4{bottom:1001.310000px;}
.y5b{bottom:1002.570000px;}
.y34{bottom:1011.750000px;}
.y10{bottom:1015.350000px;}
.ya3{bottom:1029.930000px;}
.y5a{bottom:1032.990000px;}
.y33{bottom:1039.470000px;}
.yf{bottom:1043.250000px;}
.ya2{bottom:1058.370000px;}
.y59{bottom:1063.950000px;}
.y32{bottom:1067.370000px;}
.ye{bottom:1070.970000px;}
.y58{bottom:1092.030000px;}
.yd{bottom:1095.090000px;}
.y57{bottom:1122.450000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.576000px;}
.h20{height:27.720000px;}
.h24{height:27.756000px;}
.h22{height:27.900000px;}
.h23{height:27.936000px;}
.h2{height:41.400000px;}
.h4{height:53.709961px;}
.h26{height:53.853187px;}
.h21{height:55.620000px;}
.hd{height:64.208320px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.h1e{height:74.244727px;}
.hc{height:82.635820px;}
.ha{height:82.676953px;}
.h1f{height:84.060000px;}
.hb{height:84.898125px;}
.hf{height:93.287461px;}
.h9{height:96.508125px;}
.h1b{height:98.201602px;}
.h1d{height:98.381602px;}
.h15{height:99.821602px;}
.he{height:131.501602px;}
.h17{height:142.967461px;}
.h18{height:173.981602px;}
.h19{height:185.447461px;}
.h13{height:187.661602px;}
.h11{height:190.541602px;}
.h14{height:195.701602px;}
.h1a{height:198.461602px;}
.h1c{height:213.581602px;}
.h12{height:239.501602px;}
.h16{height:251.861602px;}
.h10{height:308.621602px;}
.h25{height:372.240000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:54.720000px;}
.w10{width:54.756000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.wd{width:73.260000px;}
.wf{width:73.620000px;}
.wc{width:73.836000px;}
.wb{width:74.160000px;}
.we{width:74.916000px;}
.w14{width:77.760000px;}
.w7{width:107.136000px;}
.w16{width:108.360000px;}
.w15{width:108.936000px;}
.w12{width:147.636000px;}
.wa{width:165.810000px;}
.w8{width:222.690000px;}
.w9{width:223.410000px;}
.w13{width:275.475000px;}
.w17{width:608.580000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x2b{left:10.296000px;}
.x38{left:19.800000px;}
.x7{left:25.740000px;}
.x1{left:31.860000px;}
.x3c{left:39.705000px;}
.x3b{left:46.875000px;}
.x4{left:59.970000px;}
.x3d{left:79.485000px;}
.x5{left:84.959987px;}
.x14{left:88.775987px;}
.x8{left:100.295987px;}
.x11{left:102.095987px;}
.x10{left:127.475987px;}
.x3a{left:141.480000px;}
.x2c{left:193.890000px;}
.xc{left:218.549987px;}
.x9{left:219.629987px;}
.x16{left:230.429987px;}
.x12{left:233.669987px;}
.x15{left:237.269987px;}
.x1c{left:244.829987px;}
.x2a{left:246.449987px;}
.x2f{left:268.770000px;}
.xb{left:285.194987px;}
.xd{left:287.714987px;}
.xe{left:317.774987px;}
.x3e{left:320.970000px;}
.x20{left:332.534987px;}
.x1d{left:340.094987px;}
.x30{left:343.335000px;}
.xf{left:373.574987px;}
.x1e{left:383.294987px;}
.x25{left:388.694987px;}
.x13{left:392.654987px;}
.x2d{left:417.315000px;}
.x1f{left:426.494987px;}
.x1a{left:436.574987px;}
.x19{left:443.414987px;}
.xa{left:446.474987px;}
.x27{left:485.564987px;}
.x24{left:492.764987px;}
.x28{left:499.784987px;}
.x18{left:503.384987px;}
.x34{left:510.765000px;}
.x29{left:514.724987px;}
.x21{left:529.484987px;}
.x1b{left:533.264987px;}
.x17{left:542.444987px;}
.x26{left:548.204987px;}
.x31{left:567.465000px;}
.x35{left:589.245000px;}
.x22{left:621.464987px;}
.x2e{left:641.445000px;}
.x23{left:655.124987px;}
.x32{left:697.110000px;}
.x36{left:698.910000px;}
.x39{left:751.289987px;}
.x33{left:752.550000px;}
.x37{left:754.709987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.vb{vertical-align:-131.200000pt;}
.v5{vertical-align:-30.080000pt;}
.vf{vertical-align:-28.160000pt;}
.v9{vertical-align:-20.480000pt;}
.v3{vertical-align:-17.920000pt;}
.ve{vertical-align:-16.640000pt;}
.v1{vertical-align:-15.360000pt;}
.v12{vertical-align:-10.880000pt;}
.v17{vertical-align:-8.320000pt;}
.v15{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.360000pt;}
.va{vertical-align:24.320000pt;}
.v13{vertical-align:37.760000pt;}
.v10{vertical-align:41.706667pt;}
.v11{vertical-align:44.160000pt;}
.v4{vertical-align:48.000000pt;}
.vc{vertical-align:56.960000pt;}
.v14{vertical-align:59.520000pt;}
.v8{vertical-align:62.080000pt;}
.vd{vertical-align:65.280000pt;}
.v16{vertical-align:72.960000pt;}
.v6{vertical-align:96.000000pt;}
.v7{vertical-align:123.520000pt;}
.ls3b{letter-spacing:-1.296000pt;}
.ls43{letter-spacing:-0.336533pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.303467pt;}
.ls14{letter-spacing:-0.294933pt;}
.ls37{letter-spacing:-0.286933pt;}
.ls3d{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.033280pt;}
.ls35{letter-spacing:-0.024960pt;}
.ls2f{letter-spacing:-0.013440pt;}
.ls3a{letter-spacing:-0.008320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.033280pt;}
.ls30{letter-spacing:0.072533pt;}
.ls8{letter-spacing:0.085333pt;}
.ls7{letter-spacing:0.115200pt;}
.ls15{letter-spacing:0.116267pt;}
.ls1e{letter-spacing:0.129280pt;}
.ls2{letter-spacing:0.161280pt;}
.ls1a{letter-spacing:0.166400pt;}
.ls28{letter-spacing:0.300160pt;}
.ls31{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.328320pt;}
.ls38{letter-spacing:0.328533pt;}
.ls34{letter-spacing:0.336533pt;}
.ls3e{letter-spacing:0.336640pt;}
.ls18{letter-spacing:0.384640pt;}
.ls5{letter-spacing:0.448000pt;}
.ls26{letter-spacing:0.460160pt;}
.ls25{letter-spacing:0.544640pt;}
.ls39{letter-spacing:1.200000pt;}
.ls3c{letter-spacing:1.264000pt;}
.ls10{letter-spacing:2.221440pt;}
.ls9{letter-spacing:2.523520pt;}
.lsa{letter-spacing:3.323520pt;}
.ls22{letter-spacing:3.874560pt;}
.ls12{letter-spacing:4.526720pt;}
.ls23{letter-spacing:4.944640pt;}
.ls40{letter-spacing:4.960000pt;}
.lsb{letter-spacing:5.166720pt;}
.ls41{letter-spacing:5.600000pt;}
.ls1f{letter-spacing:7.706880pt;}
.ls42{letter-spacing:12.000000pt;}
.ls21{letter-spacing:14.106880pt;}
.lsf{letter-spacing:16.064640pt;}
.lsc{letter-spacing:16.704640pt;}
.ls20{letter-spacing:16.769280pt;}
.ls27{letter-spacing:18.436480pt;}
.lsd{letter-spacing:19.163520pt;}
.ls2b{letter-spacing:20.971307pt;}
.ls1b{letter-spacing:21.154560pt;}
.ls17{letter-spacing:21.166720pt;}
.ls16{letter-spacing:21.273387pt;}
.ls1c{letter-spacing:21.584640pt;}
.ls11{letter-spacing:21.806720pt;}
.ls24{letter-spacing:22.209280pt;}
.ls2e{letter-spacing:22.314880pt;}
.ls29{letter-spacing:22.895147pt;}
.ls2a{letter-spacing:22.916480pt;}
.ls19{letter-spacing:23.763200pt;}
.ls3f{letter-spacing:24.160000pt;}
.ls1d{letter-spacing:26.049280pt;}
.ls2d{letter-spacing:33.194880pt;}
.ls2c{letter-spacing:102.430080pt;}
.lse{letter-spacing:104.283520pt;}
.ws1d{word-spacing:-73.584000pt;}
.ws1b{word-spacing:-21.600000pt;}
.ws1a{word-spacing:-19.048533pt;}
.ws2{word-spacing:-19.040000pt;}
.ws20{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.753280pt;}
.ws17{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1c{word-spacing:-18.711680pt;}
.ws3{word-spacing:-18.686720pt;}
.ws19{word-spacing:-18.433067pt;}
.ws9{word-spacing:-18.425067pt;}
.ws16{word-spacing:-18.416533pt;}
.ws5{word-spacing:-18.400000pt;}
.ws21{word-spacing:-18.383467pt;}
.wsc{word-spacing:-16.589867pt;}
.ws6{word-spacing:-16.473600pt;}
.ws18{word-spacing:-12.320000pt;}
.ws7{word-spacing:-11.771733pt;}
.ws11{word-spacing:-11.758933pt;}
.ws8{word-spacing:-11.686400pt;}
.wsf{word-spacing:-11.672960pt;}
.ws1f{word-spacing:-10.848000pt;}
.ws4{word-spacing:0.000000pt;}
.ws13{word-spacing:11.584000pt;}
.wsd{word-spacing:11.957120pt;}
.ws12{word-spacing:12.040320pt;}
.ws14{word-spacing:12.091520pt;}
.wsa{word-spacing:13.869227pt;}
.ws10{word-spacing:58.471040pt;}
.ws1e{word-spacing:80.042667pt;}
.ws15{word-spacing:158.517120pt;}
.wsb{word-spacing:234.197120pt;}
.wse{word-spacing:510.623787pt;}
._18{margin-left:-17.616640pt;}
._25{margin-left:-14.985600pt;}
._28{margin-left:-13.773653pt;}
._23{margin-left:-12.200320pt;}
._20{margin-left:-10.164480pt;}
._2d{margin-left:-8.539520pt;}
._24{margin-left:-7.646080pt;}
._19{margin-left:-5.241600pt;}
._1a{margin-left:-4.183893pt;}
._f{margin-left:-2.582613pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.237333pt;}
._2f{width:2.139733pt;}
._4{width:3.065600pt;}
._5{width:4.703573pt;}
._c{width:5.765760pt;}
._2c{width:6.756480pt;}
._29{width:8.125227pt;}
._2{width:9.135360pt;}
._e{width:10.183680pt;}
._1e{width:12.104107pt;}
._2e{width:13.113813pt;}
._1b{width:14.088320pt;}
._27{width:15.275520pt;}
._22{width:16.524160pt;}
._21{width:17.553280pt;}
._10{width:19.693440pt;}
._11{width:21.172693pt;}
._16{width:22.894933pt;}
._17{width:24.343253pt;}
._6{width:25.683840pt;}
._7{width:26.931627pt;}
._3{width:27.838080pt;}
._d{width:28.820267pt;}
._39{width:30.008107pt;}
._2b{width:30.925440pt;}
._1f{width:31.973760pt;}
._9{width:34.052053pt;}
._1d{width:37.679573pt;}
._1c{width:38.765013pt;}
._34{width:39.940907pt;}
._8{width:41.184000pt;}
._26{width:42.586667pt;}
._12{width:43.612800pt;}
._13{width:44.610133pt;}
._37{width:47.174400pt;}
._a{width:51.163093pt;}
._b{width:52.094507pt;}
._32{width:54.793813pt;}
._33{width:57.807360pt;}
._31{width:61.030187pt;}
._38{width:66.343680pt;}
._14{width:71.061120pt;}
._15{width:72.034560pt;}
._30{width:76.625920pt;}
._36{width:136.650667pt;}
._35{width:138.512000pt;}
._2a{width:733.874987pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y87{bottom:7.200000pt;}
.y8e{bottom:7.360000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y88{bottom:19.520000pt;}
.yda{bottom:19.813333pt;}
.y2{bottom:21.920000pt;}
.y89{bottom:32.000000pt;}
.y85{bottom:32.320000pt;}
.yd8{bottom:38.466667pt;}
.y8{bottom:39.680000pt;}
.ycd{bottom:54.080000pt;}
.yce{bottom:79.973333pt;}
.yf1{bottom:84.672000pt;}
.y31{bottom:87.872000pt;}
.y83{bottom:90.272000pt;}
.ya1{bottom:101.312000pt;}
.y56{bottom:105.472000pt;}
.ycf{bottom:105.826667pt;}
.yf0{bottom:109.312000pt;}
.y30{bottom:112.512000pt;}
.y82{bottom:114.912000pt;}
.ycb{bottom:122.912000pt;}
.ya0{bottom:126.112000pt;}
.yd0{bottom:131.706667pt;}
.y55{bottom:132.512000pt;}
.yef{bottom:134.106667pt;}
.y2f{bottom:137.306667pt;}
.y81{bottom:139.706667pt;}
.yca{bottom:147.546667pt;}
.y9f{bottom:150.746667pt;}
.yd1{bottom:157.600000pt;}
.y54{bottom:157.626667pt;}
.yee{bottom:158.746667pt;}
.y2e{bottom:161.946667pt;}
.y80{bottom:164.346667pt;}
.yb3{bottom:168.506667pt;}
.yc9{bottom:172.346667pt;}
.yd9{bottom:174.426667pt;}
.y9e{bottom:175.386667pt;}
.yed{bottom:183.386667pt;}
.yd2{bottom:183.453333pt;}
.y53{bottom:184.666667pt;}
.y2d{bottom:186.586667pt;}
.y7f{bottom:188.986667pt;}
.yc8{bottom:196.986667pt;}
.y9d{bottom:200.026667pt;}
.yec{bottom:208.026667pt;}
.yd3{bottom:209.346667pt;}
.y52{bottom:209.786667pt;}
.y2c{bottom:211.226667pt;}
.y7e{bottom:213.626667pt;}
.yc7{bottom:221.626667pt;}
.y9c{bottom:224.826667pt;}
.yeb{bottom:232.826667pt;}
.y4f{bottom:233.306667pt;}
.yd4{bottom:235.226667pt;}
.y2b{bottom:236.026667pt;}
.y7c{bottom:239.546667pt;}
.y51{bottom:244.186667pt;}
.yc6{bottom:246.426667pt;}
.y7d{bottom:246.906667pt;}
.y9b{bottom:249.466667pt;}
.y4d{bottom:257.306667pt;}
.yea{bottom:257.466667pt;}
.y2a{bottom:260.666667pt;}
.yd5{bottom:261.120000pt;}
.y7b{bottom:262.266667pt;}
.yc5{bottom:267.866667pt;}
.y79{bottom:268.026667pt;}
.y9a{bottom:274.106667pt;}
.y7a{bottom:274.426667pt;}
.y50{bottom:280.186667pt;}
.y75{bottom:280.506667pt;}
.ye9{bottom:282.106667pt;}
.y4e{bottom:284.986667pt;}
.y29{bottom:285.306667pt;}
.yd6{bottom:286.973333pt;}
.y78{bottom:290.266667pt;}
.yc4{bottom:292.506667pt;}
.y99{bottom:298.746667pt;}
.y76{bottom:302.146667pt;}
.y77{bottom:302.306667pt;}
.y4c{bottom:303.426667pt;}
.ye8{bottom:306.786667pt;}
.y28{bottom:310.146667pt;}
.yd7{bottom:312.866667pt;}
.yc3{bottom:317.186667pt;}
.y74{bottom:321.186667pt;}
.y98{bottom:323.586667pt;}
.y4b{bottom:328.066667pt;}
.ye7{bottom:331.586667pt;}
.y27{bottom:334.786667pt;}
.yc2{bottom:341.986667pt;}
.y73{bottom:345.986667pt;}
.y97{bottom:348.226667pt;}
.y4a{bottom:352.866667pt;}
.ye6{bottom:356.226667pt;}
.y26{bottom:359.426667pt;}
.yc1{bottom:366.626667pt;}
.y72{bottom:370.786667pt;}
.y96{bottom:372.866667pt;}
.y49{bottom:377.506667pt;}
.ye5{bottom:380.866667pt;}
.y25{bottom:384.066667pt;}
.yc0{bottom:391.266667pt;}
.y71{bottom:394.466667pt;}
.y95{bottom:397.666667pt;}
.y48{bottom:402.146667pt;}
.ye4{bottom:405.666667pt;}
.y24{bottom:408.866667pt;}
.y70{bottom:414.946667pt;}
.ybf{bottom:415.906667pt;}
.y94{bottom:422.306667pt;}
.y47{bottom:426.786667pt;}
.ye3{bottom:430.306667pt;}
.y6f{bottom:433.346667pt;}
.y23{bottom:433.506667pt;}
.y93{bottom:440.386667pt;}
.ybe{bottom:440.706667pt;}
.y46{bottom:451.586667pt;}
.ye2{bottom:454.946667pt;}
.y6e{bottom:457.986667pt;}
.y22{bottom:458.146667pt;}
.ybd{bottom:465.346667pt;}
.y92{bottom:465.666667pt;}
.y45{bottom:476.226667pt;}
.ye1{bottom:479.586667pt;}
.y6d{bottom:481.346667pt;}
.y21{bottom:482.946667pt;}
.ybc{bottom:489.986667pt;}
.y6c{bottom:490.786667pt;}
.y91{bottom:491.106667pt;}
.y44{bottom:500.866667pt;}
.ye0{bottom:504.386667pt;}
.y20{bottom:507.586667pt;}
.ybb{bottom:514.626667pt;}
.y90{bottom:516.386667pt;}
.y6b{bottom:520.066667pt;}
.y43{bottom:525.666667pt;}
.ydf{bottom:529.026667pt;}
.y1f{bottom:532.226667pt;}
.y68{bottom:532.546667pt;}
.yba{bottom:539.453333pt;}
.y8f{bottom:541.853333pt;}
.yb2{bottom:546.333333pt;}
.y42{bottom:550.973333pt;}
.yde{bottom:553.693333pt;}
.y69{bottom:553.853333pt;}
.y6a{bottom:554.013333pt;}
.y1e{bottom:556.893333pt;}
.yb9{bottom:564.093333pt;}
.y8d{bottom:567.133333pt;}
.yb1{bottom:571.133333pt;}
.y67{bottom:572.573333pt;}
.y41{bottom:576.093333pt;}
.ydd{bottom:578.493333pt;}
.y1d{bottom:581.693333pt;}
.yb8{bottom:588.733333pt;}
.y8c{bottom:592.573333pt;}
.yb0{bottom:595.773333pt;}
.y66{bottom:597.533333pt;}
.y40{bottom:601.213333pt;}
.ydc{bottom:603.133333pt;}
.y1c{bottom:606.333333pt;}
.yb7{bottom:613.533333pt;}
.y8b{bottom:617.853333pt;}
.yaf{bottom:620.413333pt;}
.y65{bottom:622.173333pt;}
.y3f{bottom:626.493333pt;}
.ydb{bottom:627.773333pt;}
.y1b{bottom:630.973333pt;}
.yb6{bottom:638.173333pt;}
.y8a{bottom:643.293333pt;}
.yae{bottom:645.213333pt;}
.y64{bottom:646.973333pt;}
.y3e{bottom:652.413333pt;}
.y1a{bottom:655.773333pt;}
.yb5{bottom:662.813333pt;}
.y84{bottom:668.573333pt;}
.yad{bottom:669.853333pt;}
.y63{bottom:671.613333pt;}
.y3d{bottom:677.213333pt;}
.y19{bottom:680.413333pt;}
.yb4{bottom:683.453333pt;}
.ycc{bottom:684.640000pt;}
.yac{bottom:694.493333pt;}
.y62{bottom:696.413333pt;}
.y3c{bottom:701.853333pt;}
.y18{bottom:705.053333pt;}
.yab{bottom:712.573333pt;}
.y86{bottom:718.653333pt;}
.y61{bottom:721.373333pt;}
.y3b{bottom:726.493333pt;}
.y17{bottom:729.693333pt;}
.yaa{bottom:738.013333pt;}
.y60{bottom:746.333333pt;}
.y3a{bottom:751.133333pt;}
.y16{bottom:754.493333pt;}
.ya9{bottom:763.293333pt;}
.y5f{bottom:771.453333pt;}
.y39{bottom:775.973333pt;}
.y15{bottom:779.173333pt;}
.ya8{bottom:788.773333pt;}
.y5e{bottom:796.453333pt;}
.y38{bottom:800.613333pt;}
.y14{bottom:803.813333pt;}
.ya7{bottom:814.053333pt;}
.y37{bottom:825.253333pt;}
.y13{bottom:828.453333pt;}
.ya6{bottom:839.333333pt;}
.y5d{bottom:841.733333pt;}
.y36{bottom:850.053333pt;}
.y12{bottom:853.253333pt;}
.ya5{bottom:864.773333pt;}
.y5c{bottom:866.373333pt;}
.y35{bottom:874.693333pt;}
.y11{bottom:877.893333pt;}
.ya4{bottom:890.053333pt;}
.y5b{bottom:891.173333pt;}
.y34{bottom:899.333333pt;}
.y10{bottom:902.533333pt;}
.ya3{bottom:915.493333pt;}
.y5a{bottom:918.213333pt;}
.y33{bottom:923.973333pt;}
.yf{bottom:927.333333pt;}
.ya2{bottom:940.773333pt;}
.y59{bottom:945.733333pt;}
.y32{bottom:948.773333pt;}
.ye{bottom:951.973333pt;}
.y58{bottom:970.693333pt;}
.yd{bottom:973.413333pt;}
.y57{bottom:997.733333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.512000pt;}
.h20{height:24.640000pt;}
.h24{height:24.672000pt;}
.h22{height:24.800000pt;}
.h23{height:24.832000pt;}
.h2{height:36.800000pt;}
.h4{height:47.742188pt;}
.h26{height:47.869500pt;}
.h21{height:49.440000pt;}
.hd{height:57.074062pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.h1e{height:65.995312pt;}
.hc{height:73.454062pt;}
.ha{height:73.490625pt;}
.h1f{height:74.720000pt;}
.hb{height:75.465000pt;}
.hf{height:82.922188pt;}
.h9{height:85.785000pt;}
.h1b{height:87.290313pt;}
.h1d{height:87.450313pt;}
.h15{height:88.730312pt;}
.he{height:116.890312pt;}
.h17{height:127.082188pt;}
.h18{height:154.650312pt;}
.h19{height:164.842187pt;}
.h13{height:166.810313pt;}
.h11{height:169.370313pt;}
.h14{height:173.956979pt;}
.h1a{height:176.410312pt;}
.h1c{height:189.850313pt;}
.h12{height:212.890312pt;}
.h16{height:223.876979pt;}
.h10{height:274.330312pt;}
.h25{height:330.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:48.640000pt;}
.w10{width:48.672000pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.wd{width:65.120000pt;}
.wf{width:65.440000pt;}
.wc{width:65.632000pt;}
.wb{width:65.920000pt;}
.we{width:66.592000pt;}
.w14{width:69.120000pt;}
.w7{width:95.232000pt;}
.w16{width:96.320000pt;}
.w15{width:96.832000pt;}
.w12{width:131.232000pt;}
.wa{width:147.386667pt;}
.w8{width:197.946667pt;}
.w9{width:198.586667pt;}
.w13{width:244.866667pt;}
.w17{width:540.960000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x2b{left:9.152000pt;}
.x38{left:17.600000pt;}
.x7{left:22.880000pt;}
.x1{left:28.320000pt;}
.x3c{left:35.293333pt;}
.x3b{left:41.666667pt;}
.x4{left:53.306667pt;}
.x3d{left:70.653333pt;}
.x5{left:75.519988pt;}
.x14{left:78.911988pt;}
.x8{left:89.151988pt;}
.x11{left:90.751988pt;}
.x10{left:113.311988pt;}
.x3a{left:125.760000pt;}
.x2c{left:172.346667pt;}
.xc{left:194.266655pt;}
.x9{left:195.226655pt;}
.x16{left:204.826655pt;}
.x12{left:207.706655pt;}
.x15{left:210.906655pt;}
.x1c{left:217.626655pt;}
.x2a{left:219.066655pt;}
.x2f{left:238.906667pt;}
.xb{left:253.506655pt;}
.xd{left:255.746655pt;}
.xe{left:282.466655pt;}
.x3e{left:285.306667pt;}
.x20{left:295.586655pt;}
.x1d{left:302.306655pt;}
.x30{left:305.186667pt;}
.xf{left:332.066655pt;}
.x1e{left:340.706655pt;}
.x25{left:345.506655pt;}
.x13{left:349.026655pt;}
.x2d{left:370.946667pt;}
.x1f{left:379.106655pt;}
.x1a{left:388.066655pt;}
.x19{left:394.146655pt;}
.xa{left:396.866655pt;}
.x27{left:431.613322pt;}
.x24{left:438.013322pt;}
.x28{left:444.253322pt;}
.x18{left:447.453322pt;}
.x34{left:454.013333pt;}
.x29{left:457.533322pt;}
.x21{left:470.653322pt;}
.x1b{left:474.013322pt;}
.x17{left:482.173322pt;}
.x26{left:487.293322pt;}
.x31{left:504.413333pt;}
.x35{left:523.773333pt;}
.x22{left:552.413322pt;}
.x2e{left:570.173333pt;}
.x23{left:582.333322pt;}
.x32{left:619.653333pt;}
.x36{left:621.253333pt;}
.x39{left:667.813322pt;}
.x33{left:668.933333pt;}
.x37{left:670.853322pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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