
    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_7644683890eb366c85776c51.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_a73b180b12962fc2cd71bae3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_993e8de7cb1eab65effc05da.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857422;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_dec06f8773efb794e928ff8b.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_dc29d7e2773e67d300705cf8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_fc156b2657a5a67874bccf66.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_74a9aeee69da6b3deac3e1c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_abf69b39fdb498f79b7b1a48.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_6a157231ea6a8c5a6d890a8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_c46b09c9b29dae57ff7bb5d1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_751772f4c46012b1c83dfb48.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.752441;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_89db3ac90cbcb06c0105c705.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.107910;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_d6fd792c792074056a9c881c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.099609;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_2e9deadc0d102bd81c4bb991.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.099609;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_e5be646da8090aff6f6b242f.woff2')format("woff");}.fff{font-family:fff;line-height:1.065430;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_25a170be1ed1c0b4705d1f00.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_150a948cf4e00d8ce0495477.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.134766;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;}
.m1{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-115.380000px;}
.v2{vertical-align:-82.260000px;}
.v0{vertical-align:0.000000px;}
.ls59{letter-spacing:-1.620000px;}
.ls58{letter-spacing:-1.440000px;}
.ls49{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.666000px;}
.ls15{letter-spacing:-0.630000px;}
.ls3d{letter-spacing:-0.612000px;}
.ls3e{letter-spacing:-0.606000px;}
.ls17{letter-spacing:-0.596400px;}
.ls40{letter-spacing:-0.452400px;}
.lsb{letter-spacing:-0.443400px;}
.ls14{letter-spacing:-0.377400px;}
.lsc{letter-spacing:-0.339600px;}
.ls48{letter-spacing:-0.305400px;}
.ls3b{letter-spacing:-0.244800px;}
.ls3c{letter-spacing:-0.147000px;}
.ls11{letter-spacing:-0.090600px;}
.lsf{letter-spacing:-0.069000px;}
.ls5{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.120000px;}
.ls57{letter-spacing:0.178800px;}
.lsd{letter-spacing:0.201600px;}
.ls16{letter-spacing:0.296400px;}
.ls55{letter-spacing:0.357000px;}
.ls9{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.360104px;}
.ls3{letter-spacing:0.371686px;}
.ls10{letter-spacing:0.447600px;}
.ls39{letter-spacing:0.457800px;}
.ls45{letter-spacing:0.457920px;}
.lsa{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.570240px;}
.ls46{letter-spacing:0.610560px;}
.ls3f{letter-spacing:0.630000px;}
.lse{letter-spacing:0.642000px;}
.ls6{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.982080px;}
.ls4b{letter-spacing:0.987840px;}
.ls29{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.098000px;}
.ls3a{letter-spacing:1.290000px;}
.ls50{letter-spacing:1.398000px;}
.ls28{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.088111px;}
.ls20{letter-spacing:2.160000px;}
.ls1{letter-spacing:2.242225px;}
.ls4a{letter-spacing:3.600000px;}
.ls53{letter-spacing:5.040000px;}
.ls43{letter-spacing:6.480000px;}
.ls2b{letter-spacing:6.840000px;}
.ls42{letter-spacing:7.920000px;}
.ls44{letter-spacing:8.040000px;}
.ls2c{letter-spacing:8.280000px;}
.ls4e{letter-spacing:9.360000px;}
.ls31{letter-spacing:9.720000px;}
.ls4c{letter-spacing:12.240000px;}
.ls26{letter-spacing:12.420000px;}
.ls36{letter-spacing:12.600000px;}
.ls25{letter-spacing:13.680000px;}
.ls37{letter-spacing:14.040000px;}
.ls41{letter-spacing:15.120000px;}
.ls38{letter-spacing:15.480000px;}
.ls23{letter-spacing:16.560000px;}
.ls24{letter-spacing:16.680000px;}
.ls33{letter-spacing:18.360000px;}
.ls4d{letter-spacing:20.880000px;}
.ls2d{letter-spacing:21.240000px;}
.ls1d{letter-spacing:22.320000px;}
.ls1f{letter-spacing:22.440000px;}
.ls1e{letter-spacing:22.500000px;}
.ls2a{letter-spacing:22.680000px;}
.ls51{letter-spacing:28.080000px;}
.ls35{letter-spacing:30.060000px;}
.ls34{letter-spacing:31.320000px;}
.ls56{letter-spacing:32.400000px;}
.ls2e{letter-spacing:34.200000px;}
.ls2f{letter-spacing:34.380000px;}
.ls47{letter-spacing:41.040000px;}
.ls52{letter-spacing:42.480000px;}
.ls30{letter-spacing:42.960000px;}
.ls1c{letter-spacing:44.040000px;}
.ls1b{letter-spacing:44.100000px;}
.ls4f{letter-spacing:49.680000px;}
.ls32{letter-spacing:57.240000px;}
.ls54{letter-spacing:69.840000px;}
.ls21{letter-spacing:113.040000px;}
.ls8{letter-spacing:129.384000px;}
.ls18{letter-spacing:130.320000px;}
.ls19{letter-spacing:130.440000px;}
.ls1a{letter-spacing:130.500000px;}
.ls13{letter-spacing:327.756000px;}
.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;}
}
.wsb{word-spacing:-27.000000px;}
.ws1{word-spacing:-26.280000px;}
.ws0{word-spacing:-25.560000px;}
.wsc{word-spacing:-24.567600px;}
.wse{word-spacing:-24.480000px;}
.wsd{word-spacing:-24.029400px;}
.ws13{word-spacing:-22.968000px;}
.ws12{word-spacing:-22.590600px;}
.ws14{word-spacing:-22.338000px;}
.ws24{word-spacing:-22.320000px;}
.ws3{word-spacing:-21.978000px;}
.ws1f{word-spacing:-21.510000px;}
.ws23{word-spacing:-21.237000px;}
.ws25{word-spacing:-21.058800px;}
.ws2{word-spacing:-20.880000px;}
.ws20{word-spacing:-20.427600px;}
.ws22{word-spacing:-19.440000px;}
.ws9{word-spacing:-18.791760px;}
.ws15{word-spacing:-18.512400px;}
.ws8{word-spacing:-18.351360px;}
.wsf{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.149760px;}
.wsa{word-spacing:-18.080760px;}
.ws11{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.850000px;}
.ws7{word-spacing:-17.810160px;}
.ws6{word-spacing:-17.706360px;}
.ws10{word-spacing:-17.550000px;}
.ws18{word-spacing:-17.017800px;}
.ws17{word-spacing:-16.560000px;}
.ws1b{word-spacing:-16.413000px;}
.ws1a{word-spacing:-16.315200px;}
.ws21{word-spacing:-16.254600px;}
.ws16{word-spacing:-15.963600px;}
.ws1c{word-spacing:-15.948000px;}
.ws1d{word-spacing:-11.880000px;}
.ws1e{word-spacing:-11.274000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-15.269760px;}
._16{margin-left:-8.335680px;}
._39{margin-left:-5.405280px;}
._3{margin-left:-2.750880px;}
._1{margin-left:-1.440000px;}
._0{width:1.296000px;}
._2{width:2.453760px;}
._17{width:3.547680px;}
._18{width:5.405280px;}
._9{width:6.860640px;}
._d{width:9.017280px;}
._e{width:10.070880px;}
._2c{width:11.448480px;}
._19{width:12.688800px;}
._5{width:14.289840px;}
._2b{width:16.133760px;}
._8{width:17.569440px;}
._2d{width:18.573600px;}
._23{width:20.200800px;}
._a{width:21.265920px;}
._6{width:22.572000px;}
._7{width:23.816160px;}
._13{width:25.826400px;}
._2e{width:27.191520px;}
._1f{width:29.145600px;}
._20{width:30.418560px;}
._26{width:32.149440px;}
._29{width:33.200640px;}
._28{width:34.410240px;}
._2a{width:35.690880px;}
._24{width:37.729440px;}
._1e{width:38.889120px;}
._1d{width:40.398240px;}
._2f{width:41.455200px;}
._c{width:42.846720px;}
._b{width:44.228160px;}
._27{width:46.106880px;}
._1a{width:47.226720px;}
._1b{width:48.400800px;}
._34{width:50.258400px;}
._35{width:51.870240px;}
._36{width:53.311680px;}
._21{width:54.480960px;}
._22{width:55.976160px;}
._10{width:57.020160px;}
._f{width:58.129440px;}
._25{width:60.056160px;}
._11{width:61.399680px;}
._12{width:62.857440px;}
._1c{width:67.599840px;}
._15{width:69.981600px;}
._14{width:71.059200px;}
._30{width:73.408320px;}
._31{width:75.352320px;}
._32{width:79.194240px;}
._33{width:80.386560px;}
._38{width:96.508800px;}
._37{width:97.528320px;}
.fc5{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:30.240000px;}
.fsb{font-size:47.520000px;}
.fsd{font-size:54.720000px;}
.fs9{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fs8{font-size:96.480000px;}
.fs7{font-size:99.360000px;}
.fs3{font-size:102.240000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y32{bottom:3.600000px;}
.y7a{bottom:3.960000px;}
.y8e{bottom:6.480000px;}
.y70{bottom:6.840000px;}
.y87{bottom:9.000000px;}
.y9a{bottom:9.360000px;}
.y75{bottom:10.440000px;}
.y8b{bottom:20.160000px;}
.y95{bottom:20.205000px;}
.y79{bottom:23.040000px;}
.y98{bottom:25.200000px;}
.y7e{bottom:25.590000px;}
.y6f{bottom:28.440000px;}
.y7d{bottom:28.470000px;}
.y91{bottom:28.800000px;}
.y82{bottom:28.845000px;}
.y74{bottom:29.520000px;}
.y86{bottom:30.960000px;}
.y7b{bottom:32.400000px;}
.y71{bottom:36.360000px;}
.y83{bottom:36.405000px;}
.y8c{bottom:38.550000px;}
.y76{bottom:38.565000px;}
.y88{bottom:38.880000px;}
.y8a{bottom:38.910000px;}
.y96{bottom:38.925000px;}
.y94{bottom:41.805000px;}
.y78{bottom:42.120000px;}
.y9f{bottom:47.205000px;}
.y92{bottom:47.520000px;}
.y73{bottom:48.645000px;}
.y9e{bottom:50.085000px;}
.y6e{bottom:50.400000px;}
.y81{bottom:50.445000px;}
.y85{bottom:52.920000px;}
.y16{bottom:56.916000px;}
.y9d{bottom:72.045000px;}
.y90{bottom:72.390000px;}
.y15{bottom:80.676000px;}
.ya0{bottom:93.636000px;}
.y49{bottom:95.436000px;}
.ycd{bottom:95.796000px;}
.y2f{bottom:100.116000px;}
.y14{bottom:102.636000px;}
.y6a{bottom:117.036000px;}
.ycc{bottom:119.916000px;}
.y48{bottom:120.636000px;}
.y2e{bottom:124.236000px;}
.y13{bottom:124.596000px;}
.ycb{bottom:144.036000px;}
.y69{bottom:144.792000px;}
.y12{bottom:146.592000px;}
.y2d{bottom:162.075000px;}
.y9c{bottom:164.910000px;}
.yca{bottom:168.510000px;}
.y11{bottom:168.555000px;}
.y2c{bottom:181.875000px;}
.y47{bottom:183.315000px;}
.y68{bottom:187.635000px;}
.y10{bottom:190.515000px;}
.yc9{bottom:192.630000px;}
.y2b{bottom:202.755000px;}
.yf{bottom:212.475000px;}
.yc8{bottom:216.795000px;}
.y46{bottom:218.955000px;}
.y67{bottom:230.505000px;}
.y2a{bottom:231.225000px;}
.ye{bottom:234.465000px;}
.yc7{bottom:240.915000px;}
.y9b{bottom:252.795000px;}
.y45{bottom:254.985000px;}
.yd{bottom:256.425000px;}
.y29{bottom:258.945000px;}
.yc6{bottom:265.035000px;}
.y66{bottom:273.345000px;}
.yc{bottom:279.825000px;}
.y28{bottom:286.665000px;}
.yc5{bottom:289.155000px;}
.y44{bottom:290.985000px;}
.yb{bottom:309.345000px;}
.y65{bottom:312.945000px;}
.yc4{bottom:313.275000px;}
.y99{bottom:323.745000px;}
.y43{bottom:326.670000px;}
.yc3{bottom:337.425000px;}
.ya{bottom:338.550000px;}
.y27{bottom:343.230000px;}
.y64{bottom:345.390000px;}
.y42{bottom:348.270000px;}
.y63{bottom:361.230000px;}
.yc2{bottom:361.545000px;}
.y41{bottom:372.390000px;}
.y62{bottom:377.070000px;}
.y26{bottom:377.430000px;}
.yc1{bottom:385.665000px;}
.y61{bottom:392.910000px;}
.y97{bottom:395.025000px;}
.y40{bottom:396.510000px;}
.y60{bottom:408.780000px;}
.yc0{bottom:409.785000px;}
.y25{bottom:413.100000px;}
.y9{bottom:416.700000px;}
.y3f{bottom:420.660000px;}
.y5f{bottom:424.620000px;}
.ybf{bottom:433.905000px;}
.y93{bottom:439.305000px;}
.y5e{bottom:440.460000px;}
.y24{bottom:448.740000px;}
.y5d{bottom:456.300000px;}
.ybe{bottom:458.070000px;}
.y3e{bottom:459.180000px;}
.y8{bottom:465.300000px;}
.y5c{bottom:472.140000px;}
.ybd{bottom:482.550000px;}
.y23{bottom:484.740000px;}
.y5b{bottom:488.340000px;}
.y3d{bottom:495.210000px;}
.y5a{bottom:504.210000px;}
.ybc{bottom:506.670000px;}
.y8f{bottom:510.270000px;}
.y7{bottom:513.930000px;}
.y59{bottom:520.050000px;}
.y22{bottom:520.410000px;}
.ybb{bottom:530.790000px;}
.y3c{bottom:533.730000px;}
.y58{bottom:535.890000px;}
.y57{bottom:551.730000px;}
.yba{bottom:554.910000px;}
.y21{bottom:556.050000px;}
.y6{bottom:562.530000px;}
.y56{bottom:567.570000px;}
.y3b{bottom:569.370000px;}
.yb9{bottom:579.060000px;}
.y55{bottom:583.455000px;}
.y20{bottom:591.735000px;}
.y8d{bottom:598.500000px;}
.yb8{bottom:603.180000px;}
.y5{bottom:611.175000px;}
.y54{bottom:614.415000px;}
.y3a{bottom:619.815000px;}
.yb7{bottom:627.300000px;}
.y1f{bottom:627.375000px;}
.y53{bottom:636.735000px;}
.y39{bottom:647.895000px;}
.yb6{bottom:651.420000px;}
.y1e{bottom:657.615000px;}
.y52{bottom:658.335000px;}
.y4{bottom:659.775000px;}
.y89{bottom:664.740000px;}
.y51{bottom:675.285000px;}
.yb5{bottom:675.540000px;}
.y38{bottom:676.005000px;}
.y1d{bottom:679.965000px;}
.y50{bottom:692.565000px;}
.yb4{bottom:699.690000px;}
.y1c{bottom:701.925000px;}
.y37{bottom:703.005000px;}
.y3{bottom:708.405000px;}
.y4f{bottom:709.485000px;}
.y36{bottom:723.525000px;}
.yb3{bottom:723.810000px;}
.y1b{bottom:723.885000px;}
.y4e{bottom:726.405000px;}
.y84{bottom:735.690000px;}
.y4d{bottom:743.685000px;}
.y1a{bottom:745.845000px;}
.yb2{bottom:747.930000px;}
.y2{bottom:755.565000px;}
.y4c{bottom:760.605000px;}
.y35{bottom:764.970000px;}
.y19{bottom:767.850000px;}
.ydc{bottom:772.050000px;}
.yb1{bottom:772.410000px;}
.y4b{bottom:777.570000px;}
.y34{bottom:785.850000px;}
.y18{bottom:789.810000px;}
.ydb{bottom:796.170000px;}
.yb0{bottom:796.530000px;}
.y4a{bottom:804.930000px;}
.y33{bottom:806.370000px;}
.y80{bottom:806.610000px;}
.y1{bottom:809.970000px;}
.y17{bottom:811.770000px;}
.yda{bottom:820.290000px;}
.yaf{bottom:820.650000px;}
.y31{bottom:822.570000px;}
.y30{bottom:826.170000px;}
.yd9{bottom:844.455000px;}
.yae{bottom:844.815000px;}
.yad{bottom:868.935000px;}
.y7f{bottom:872.895000px;}
.yac{bottom:893.055000px;}
.yab{bottom:916.815000px;}
.yd8{bottom:917.175000px;}
.y7c{bottom:939.135000px;}
.yaa{bottom:940.935000px;}
.yd7{bottom:941.295000px;}
.ya9{bottom:965.085000px;}
.yd6{bottom:965.445000px;}
.y77{bottom:983.445000px;}
.ya8{bottom:989.205000px;}
.yd5{bottom:989.565000px;}
.ya7{bottom:1013.325000px;}
.yd4{bottom:1013.685000px;}
.ya6{bottom:1037.445000px;}
.yd3{bottom:1037.805000px;}
.y72{bottom:1041.405000px;}
.ya5{bottom:1061.565000px;}
.yd2{bottom:1061.925000px;}
.ya4{bottom:1086.090000px;}
.yd1{bottom:1086.450000px;}
.ya3{bottom:1110.210000px;}
.yd0{bottom:1110.570000px;}
.y6d{bottom:1112.370000px;}
.ya2{bottom:1134.330000px;}
.ycf{bottom:1134.690000px;}
.ya1{bottom:1158.450000px;}
.yce{bottom:1158.810000px;}
.y6c{bottom:1192.290000px;}
.y6b{bottom:1196.250000px;}
.he{height:17.280000px;}
.h18{height:17.316000px;}
.h14{height:41.881641px;}
.h23{height:43.560000px;}
.h1e{height:43.596000px;}
.h13{height:46.638281px;}
.h15{height:53.704687px;}
.h26{height:56.213437px;}
.h1d{height:57.240000px;}
.h6{height:57.280781px;}
.h1b{height:58.380469px;}
.hd{height:59.357813px;}
.h10{height:61.824375px;}
.h1a{height:64.978594px;}
.h12{height:65.010937px;}
.h19{height:65.520000px;}
.h1f{height:65.556000px;}
.h22{height:66.757500px;}
.h20{height:70.200000px;}
.h1c{height:70.236000px;}
.h24{height:70.560000px;}
.hf{height:70.664062px;}
.h11{height:72.223594px;}
.h28{height:73.610156px;}
.h7{height:76.317188px;}
.h27{height:81.929531px;}
.hc{height:81.970312px;}
.h2{height:84.172500px;}
.h25{height:87.156000px;}
.h21{height:87.516000px;}
.h8{height:93.392578px;}
.hb{height:94.642734px;}
.ha{height:100.136250px;}
.h5{height:103.038750px;}
.h4{height:103.148438px;}
.h9{height:108.843750px;}
.h3{height:159.850053px;}
.h0{height:893.160000px;}
.h1{height:893.250000px;}
.h16{height:1262.880000px;}
.h17{height:1263.000000px;}
.w3{width:7.200000px;}
.w7{width:7.560000px;}
.wa{width:14.760000px;}
.w9{width:50.076000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.w8{width:673.095000px;}
.w5{width:892.500000px;}
.w6{width:892.799987px;}
.w4{width:892.800000px;}
.x0{left:0.000000px;}
.x30{left:16.560000px;}
.x13{left:72.395991px;}
.xa{left:76.355991px;}
.x12{left:78.875991px;}
.x26{left:80.315991px;}
.x8{left:81.395991px;}
.x18{left:84.635991px;}
.x1c{left:86.435991px;}
.x14{left:94.355991px;}
.xf{left:100.871991px;}
.x21{left:102.671991px;}
.x2e{left:106.236000px;}
.x7{left:112.751991px;}
.x2a{left:114.911991px;}
.x1b{left:115.991991px;}
.x15{left:124.271991px;}
.x1e{left:126.071991px;}
.x2c{left:127.475987px;}
.x1d{left:131.471991px;}
.x3{left:132.911991px;}
.x2b{left:136.151991px;}
.x3b{left:139.031987px;}
.x22{left:146.591991px;}
.x38{left:149.471987px;}
.x19{left:153.434991px;}
.x1a{left:155.234991px;}
.x33{left:159.554987px;}
.x35{left:160.994987px;}
.x9{left:162.074991px;}
.x6{left:167.504991px;}
.x39{left:172.154987px;}
.x16{left:179.024991px;}
.x5{left:180.824991px;}
.x1f{left:183.704991px;}
.x4{left:193.064991px;}
.x37{left:205.634987px;}
.x17{left:208.904991px;}
.x34{left:219.314987px;}
.x2{left:223.304991px;}
.x28{left:229.064991px;}
.x11{left:230.144991px;}
.x25{left:231.269991px;}
.x29{left:235.229991px;}
.x27{left:238.109991px;}
.x3e{left:256.424987px;}
.xd{left:261.149991px;}
.x10{left:278.069991px;}
.xb{left:279.869991px;}
.x24{left:280.949991px;}
.x23{left:284.549991px;}
.x1{left:314.819991px;}
.xc{left:355.859991px;}
.x3a{left:362.669987px;}
.xe{left:368.849991px;}
.x3c{left:375.629987px;}
.x36{left:406.229987px;}
.x3d{left:432.899987px;}
.x32{left:478.259987px;}
.x20{left:550.005000px;}
.x2f{left:779.325000px;}
.x31{left:814.650000px;}
.x2d{left:821.850000px;}
@media print{
.v1{vertical-align:-102.560000pt;}
.v2{vertical-align:-73.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls59{letter-spacing:-1.440000pt;}
.ls58{letter-spacing:-1.280000pt;}
.ls49{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.592000pt;}
.ls15{letter-spacing:-0.560000pt;}
.ls3d{letter-spacing:-0.544000pt;}
.ls3e{letter-spacing:-0.538667pt;}
.ls17{letter-spacing:-0.530133pt;}
.ls40{letter-spacing:-0.402133pt;}
.lsb{letter-spacing:-0.394133pt;}
.ls14{letter-spacing:-0.335467pt;}
.lsc{letter-spacing:-0.301867pt;}
.ls48{letter-spacing:-0.271467pt;}
.ls3b{letter-spacing:-0.217600pt;}
.ls3c{letter-spacing:-0.130667pt;}
.ls11{letter-spacing:-0.080533pt;}
.lsf{letter-spacing:-0.061333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.106667pt;}
.ls57{letter-spacing:0.158933pt;}
.lsd{letter-spacing:0.179200pt;}
.ls16{letter-spacing:0.263467pt;}
.ls55{letter-spacing:0.317333pt;}
.ls9{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.320092pt;}
.ls3{letter-spacing:0.330387pt;}
.ls10{letter-spacing:0.397867pt;}
.ls39{letter-spacing:0.406933pt;}
.ls45{letter-spacing:0.407040pt;}
.lsa{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.506880pt;}
.ls46{letter-spacing:0.542720pt;}
.ls3f{letter-spacing:0.560000pt;}
.lse{letter-spacing:0.570667pt;}
.ls6{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.872960pt;}
.ls4b{letter-spacing:0.878080pt;}
.ls29{letter-spacing:0.960000pt;}
.ls4{letter-spacing:0.976000pt;}
.ls3a{letter-spacing:1.146667pt;}
.ls50{letter-spacing:1.242667pt;}
.ls28{letter-spacing:1.280000pt;}
.ls0{letter-spacing:1.856098pt;}
.ls20{letter-spacing:1.920000pt;}
.ls1{letter-spacing:1.993089pt;}
.ls4a{letter-spacing:3.200000pt;}
.ls53{letter-spacing:4.480000pt;}
.ls43{letter-spacing:5.760000pt;}
.ls2b{letter-spacing:6.080000pt;}
.ls42{letter-spacing:7.040000pt;}
.ls44{letter-spacing:7.146667pt;}
.ls2c{letter-spacing:7.360000pt;}
.ls4e{letter-spacing:8.320000pt;}
.ls31{letter-spacing:8.640000pt;}
.ls4c{letter-spacing:10.880000pt;}
.ls26{letter-spacing:11.040000pt;}
.ls36{letter-spacing:11.200000pt;}
.ls25{letter-spacing:12.160000pt;}
.ls37{letter-spacing:12.480000pt;}
.ls41{letter-spacing:13.440000pt;}
.ls38{letter-spacing:13.760000pt;}
.ls23{letter-spacing:14.720000pt;}
.ls24{letter-spacing:14.826667pt;}
.ls33{letter-spacing:16.320000pt;}
.ls4d{letter-spacing:18.560000pt;}
.ls2d{letter-spacing:18.880000pt;}
.ls1d{letter-spacing:19.840000pt;}
.ls1f{letter-spacing:19.946667pt;}
.ls1e{letter-spacing:20.000000pt;}
.ls2a{letter-spacing:20.160000pt;}
.ls51{letter-spacing:24.960000pt;}
.ls35{letter-spacing:26.720000pt;}
.ls34{letter-spacing:27.840000pt;}
.ls56{letter-spacing:28.800000pt;}
.ls2e{letter-spacing:30.400000pt;}
.ls2f{letter-spacing:30.560000pt;}
.ls47{letter-spacing:36.480000pt;}
.ls52{letter-spacing:37.760000pt;}
.ls30{letter-spacing:38.186667pt;}
.ls1c{letter-spacing:39.146667pt;}
.ls1b{letter-spacing:39.200000pt;}
.ls4f{letter-spacing:44.160000pt;}
.ls32{letter-spacing:50.880000pt;}
.ls54{letter-spacing:62.080000pt;}
.ls21{letter-spacing:100.480000pt;}
.ls8{letter-spacing:115.008000pt;}
.ls18{letter-spacing:115.840000pt;}
.ls19{letter-spacing:115.946667pt;}
.ls1a{letter-spacing:116.000000pt;}
.ls13{letter-spacing:291.338667pt;}
.wsb{word-spacing:-24.000000pt;}
.ws1{word-spacing:-23.360000pt;}
.ws0{word-spacing:-22.720000pt;}
.wsc{word-spacing:-21.837867pt;}
.wse{word-spacing:-21.760000pt;}
.wsd{word-spacing:-21.359467pt;}
.ws13{word-spacing:-20.416000pt;}
.ws12{word-spacing:-20.080533pt;}
.ws14{word-spacing:-19.856000pt;}
.ws24{word-spacing:-19.840000pt;}
.ws3{word-spacing:-19.536000pt;}
.ws1f{word-spacing:-19.120000pt;}
.ws23{word-spacing:-18.877333pt;}
.ws25{word-spacing:-18.718933pt;}
.ws2{word-spacing:-18.560000pt;}
.ws20{word-spacing:-18.157867pt;}
.ws22{word-spacing:-17.280000pt;}
.ws9{word-spacing:-16.703787pt;}
.ws15{word-spacing:-16.455467pt;}
.ws8{word-spacing:-16.312320pt;}
.wsf{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.133120pt;}
.wsa{word-spacing:-16.071787pt;}
.ws11{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.866667pt;}
.ws7{word-spacing:-15.831253pt;}
.ws6{word-spacing:-15.738987pt;}
.ws10{word-spacing:-15.600000pt;}
.ws18{word-spacing:-15.126933pt;}
.ws17{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-14.589333pt;}
.ws1a{word-spacing:-14.502400pt;}
.ws21{word-spacing:-14.448533pt;}
.ws16{word-spacing:-14.189867pt;}
.ws1c{word-spacing:-14.176000pt;}
.ws1d{word-spacing:-10.560000pt;}
.ws1e{word-spacing:-10.021333pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-13.573120pt;}
._16{margin-left:-7.409493pt;}
._39{margin-left:-4.804693pt;}
._3{margin-left:-2.445227pt;}
._1{margin-left:-1.280000pt;}
._0{width:1.152000pt;}
._2{width:2.181120pt;}
._17{width:3.153493pt;}
._18{width:4.804693pt;}
._9{width:6.098347pt;}
._d{width:8.015360pt;}
._e{width:8.951893pt;}
._2c{width:10.176427pt;}
._19{width:11.278933pt;}
._5{width:12.702080pt;}
._2b{width:14.341120pt;}
._8{width:15.617280pt;}
._2d{width:16.509867pt;}
._23{width:17.956267pt;}
._a{width:18.903040pt;}
._6{width:20.064000pt;}
._7{width:21.169920pt;}
._13{width:22.956800pt;}
._2e{width:24.170240pt;}
._1f{width:25.907200pt;}
._20{width:27.038720pt;}
._26{width:28.577280pt;}
._29{width:29.511680pt;}
._28{width:30.586880pt;}
._2a{width:31.725227pt;}
._24{width:33.537280pt;}
._1e{width:34.568107pt;}
._1d{width:35.909547pt;}
._2f{width:36.849067pt;}
._c{width:38.085973pt;}
._b{width:39.313920pt;}
._27{width:40.983893pt;}
._1a{width:41.979307pt;}
._1b{width:43.022933pt;}
._34{width:44.674133pt;}
._35{width:46.106880pt;}
._36{width:47.388160pt;}
._21{width:48.427520pt;}
._22{width:49.756587pt;}
._10{width:50.684587pt;}
._f{width:51.670613pt;}
._25{width:53.383253pt;}
._11{width:54.577493pt;}
._12{width:55.873280pt;}
._1c{width:60.088747pt;}
._15{width:62.205867pt;}
._14{width:63.163733pt;}
._30{width:65.251840pt;}
._31{width:66.979840pt;}
._32{width:70.394880pt;}
._33{width:71.454720pt;}
._38{width:85.785600pt;}
._37{width:86.691840pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:42.240000pt;}
.fsd{font-size:48.640000pt;}
.fs9{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fs8{font-size:85.760000pt;}
.fs7{font-size:88.320000pt;}
.fs3{font-size:90.880000pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:3.200000pt;}
.y7a{bottom:3.520000pt;}
.y8e{bottom:5.760000pt;}
.y70{bottom:6.080000pt;}
.y87{bottom:8.000000pt;}
.y9a{bottom:8.320000pt;}
.y75{bottom:9.280000pt;}
.y8b{bottom:17.920000pt;}
.y95{bottom:17.960000pt;}
.y79{bottom:20.480000pt;}
.y98{bottom:22.400000pt;}
.y7e{bottom:22.746667pt;}
.y6f{bottom:25.280000pt;}
.y7d{bottom:25.306667pt;}
.y91{bottom:25.600000pt;}
.y82{bottom:25.640000pt;}
.y74{bottom:26.240000pt;}
.y86{bottom:27.520000pt;}
.y7b{bottom:28.800000pt;}
.y71{bottom:32.320000pt;}
.y83{bottom:32.360000pt;}
.y8c{bottom:34.266667pt;}
.y76{bottom:34.280000pt;}
.y88{bottom:34.560000pt;}
.y8a{bottom:34.586667pt;}
.y96{bottom:34.600000pt;}
.y94{bottom:37.160000pt;}
.y78{bottom:37.440000pt;}
.y9f{bottom:41.960000pt;}
.y92{bottom:42.240000pt;}
.y73{bottom:43.240000pt;}
.y9e{bottom:44.520000pt;}
.y6e{bottom:44.800000pt;}
.y81{bottom:44.840000pt;}
.y85{bottom:47.040000pt;}
.y16{bottom:50.592000pt;}
.y9d{bottom:64.040000pt;}
.y90{bottom:64.346667pt;}
.y15{bottom:71.712000pt;}
.ya0{bottom:83.232000pt;}
.y49{bottom:84.832000pt;}
.ycd{bottom:85.152000pt;}
.y2f{bottom:88.992000pt;}
.y14{bottom:91.232000pt;}
.y6a{bottom:104.032000pt;}
.ycc{bottom:106.592000pt;}
.y48{bottom:107.232000pt;}
.y2e{bottom:110.432000pt;}
.y13{bottom:110.752000pt;}
.ycb{bottom:128.032000pt;}
.y69{bottom:128.704000pt;}
.y12{bottom:130.304000pt;}
.y2d{bottom:144.066667pt;}
.y9c{bottom:146.586667pt;}
.yca{bottom:149.786667pt;}
.y11{bottom:149.826667pt;}
.y2c{bottom:161.666667pt;}
.y47{bottom:162.946667pt;}
.y68{bottom:166.786667pt;}
.y10{bottom:169.346667pt;}
.yc9{bottom:171.226667pt;}
.y2b{bottom:180.226667pt;}
.yf{bottom:188.866667pt;}
.yc8{bottom:192.706667pt;}
.y46{bottom:194.626667pt;}
.y67{bottom:204.893333pt;}
.y2a{bottom:205.533333pt;}
.ye{bottom:208.413333pt;}
.yc7{bottom:214.146667pt;}
.y9b{bottom:224.706667pt;}
.y45{bottom:226.653333pt;}
.yd{bottom:227.933333pt;}
.y29{bottom:230.173333pt;}
.yc6{bottom:235.586667pt;}
.y66{bottom:242.973333pt;}
.yc{bottom:248.733333pt;}
.y28{bottom:254.813333pt;}
.yc5{bottom:257.026667pt;}
.y44{bottom:258.653333pt;}
.yb{bottom:274.973333pt;}
.y65{bottom:278.173333pt;}
.yc4{bottom:278.466667pt;}
.y99{bottom:287.773333pt;}
.y43{bottom:290.373333pt;}
.yc3{bottom:299.933333pt;}
.ya{bottom:300.933333pt;}
.y27{bottom:305.093333pt;}
.y64{bottom:307.013333pt;}
.y42{bottom:309.573333pt;}
.y63{bottom:321.093333pt;}
.yc2{bottom:321.373333pt;}
.y41{bottom:331.013333pt;}
.y62{bottom:335.173333pt;}
.y26{bottom:335.493333pt;}
.yc1{bottom:342.813333pt;}
.y61{bottom:349.253333pt;}
.y97{bottom:351.133333pt;}
.y40{bottom:352.453333pt;}
.y60{bottom:363.360000pt;}
.yc0{bottom:364.253333pt;}
.y25{bottom:367.200000pt;}
.y9{bottom:370.400000pt;}
.y3f{bottom:373.920000pt;}
.y5f{bottom:377.440000pt;}
.ybf{bottom:385.693333pt;}
.y93{bottom:390.493333pt;}
.y5e{bottom:391.520000pt;}
.y24{bottom:398.880000pt;}
.y5d{bottom:405.600000pt;}
.ybe{bottom:407.173333pt;}
.y3e{bottom:408.160000pt;}
.y8{bottom:413.600000pt;}
.y5c{bottom:419.680000pt;}
.ybd{bottom:428.933333pt;}
.y23{bottom:430.880000pt;}
.y5b{bottom:434.080000pt;}
.y3d{bottom:440.186667pt;}
.y5a{bottom:448.186667pt;}
.ybc{bottom:450.373333pt;}
.y8f{bottom:453.573333pt;}
.y7{bottom:456.826667pt;}
.y59{bottom:462.266667pt;}
.y22{bottom:462.586667pt;}
.ybb{bottom:471.813333pt;}
.y3c{bottom:474.426667pt;}
.y58{bottom:476.346667pt;}
.y57{bottom:490.426667pt;}
.yba{bottom:493.253333pt;}
.y21{bottom:494.266667pt;}
.y6{bottom:500.026667pt;}
.y56{bottom:504.506667pt;}
.y3b{bottom:506.106667pt;}
.yb9{bottom:514.720000pt;}
.y55{bottom:518.626667pt;}
.y20{bottom:525.986667pt;}
.y8d{bottom:532.000000pt;}
.yb8{bottom:536.160000pt;}
.y5{bottom:543.266667pt;}
.y54{bottom:546.146667pt;}
.y3a{bottom:550.946667pt;}
.yb7{bottom:557.600000pt;}
.y1f{bottom:557.666667pt;}
.y53{bottom:565.986667pt;}
.y39{bottom:575.906667pt;}
.yb6{bottom:579.040000pt;}
.y1e{bottom:584.546667pt;}
.y52{bottom:585.186667pt;}
.y4{bottom:586.466667pt;}
.y89{bottom:590.880000pt;}
.y51{bottom:600.253333pt;}
.yb5{bottom:600.480000pt;}
.y38{bottom:600.893333pt;}
.y1d{bottom:604.413333pt;}
.y50{bottom:615.613333pt;}
.yb4{bottom:621.946667pt;}
.y1c{bottom:623.933333pt;}
.y37{bottom:624.893333pt;}
.y3{bottom:629.693333pt;}
.y4f{bottom:630.653333pt;}
.y36{bottom:643.133333pt;}
.yb3{bottom:643.386667pt;}
.y1b{bottom:643.453333pt;}
.y4e{bottom:645.693333pt;}
.y84{bottom:653.946667pt;}
.y4d{bottom:661.053333pt;}
.y1a{bottom:662.973333pt;}
.yb2{bottom:664.826667pt;}
.y2{bottom:671.613333pt;}
.y4c{bottom:676.093333pt;}
.y35{bottom:679.973333pt;}
.y19{bottom:682.533333pt;}
.ydc{bottom:686.266667pt;}
.yb1{bottom:686.586667pt;}
.y4b{bottom:691.173333pt;}
.y34{bottom:698.533333pt;}
.y18{bottom:702.053333pt;}
.ydb{bottom:707.706667pt;}
.yb0{bottom:708.026667pt;}
.y4a{bottom:715.493333pt;}
.y33{bottom:716.773333pt;}
.y80{bottom:716.986667pt;}
.y1{bottom:719.973333pt;}
.y17{bottom:721.573333pt;}
.yda{bottom:729.146667pt;}
.yaf{bottom:729.466667pt;}
.y31{bottom:731.173333pt;}
.y30{bottom:734.373333pt;}
.yd9{bottom:750.626667pt;}
.yae{bottom:750.946667pt;}
.yad{bottom:772.386667pt;}
.y7f{bottom:775.906667pt;}
.yac{bottom:793.826667pt;}
.yab{bottom:814.946667pt;}
.yd8{bottom:815.266667pt;}
.y7c{bottom:834.786667pt;}
.yaa{bottom:836.386667pt;}
.yd7{bottom:836.706667pt;}
.ya9{bottom:857.853333pt;}
.yd6{bottom:858.173333pt;}
.y77{bottom:874.173333pt;}
.ya8{bottom:879.293333pt;}
.yd5{bottom:879.613333pt;}
.ya7{bottom:900.733333pt;}
.yd4{bottom:901.053333pt;}
.ya6{bottom:922.173333pt;}
.yd3{bottom:922.493333pt;}
.y72{bottom:925.693333pt;}
.ya5{bottom:943.613333pt;}
.yd2{bottom:943.933333pt;}
.ya4{bottom:965.413333pt;}
.yd1{bottom:965.733333pt;}
.ya3{bottom:986.853333pt;}
.yd0{bottom:987.173333pt;}
.y6d{bottom:988.773333pt;}
.ya2{bottom:1008.293333pt;}
.ycf{bottom:1008.613333pt;}
.ya1{bottom:1029.733333pt;}
.yce{bottom:1030.053333pt;}
.y6c{bottom:1059.813333pt;}
.y6b{bottom:1063.333333pt;}
.he{height:15.360000pt;}
.h18{height:15.392000pt;}
.h14{height:37.228125pt;}
.h23{height:38.720000pt;}
.h1e{height:38.752000pt;}
.h13{height:41.456250pt;}
.h15{height:47.737500pt;}
.h26{height:49.967500pt;}
.h1d{height:50.880000pt;}
.h6{height:50.916250pt;}
.h1b{height:51.893750pt;}
.hd{height:52.762500pt;}
.h10{height:54.955000pt;}
.h1a{height:57.758750pt;}
.h12{height:57.787500pt;}
.h19{height:58.240000pt;}
.h1f{height:58.272000pt;}
.h22{height:59.340000pt;}
.h20{height:62.400000pt;}
.h1c{height:62.432000pt;}
.h24{height:62.720000pt;}
.hf{height:62.812500pt;}
.h11{height:64.198750pt;}
.h28{height:65.431250pt;}
.h7{height:67.837500pt;}
.h27{height:72.826250pt;}
.hc{height:72.862500pt;}
.h2{height:74.820000pt;}
.h25{height:77.472000pt;}
.h21{height:77.792000pt;}
.h8{height:83.015625pt;}
.hb{height:84.126875pt;}
.ha{height:89.010000pt;}
.h5{height:91.590000pt;}
.h4{height:91.687500pt;}
.h9{height:96.750000pt;}
.h3{height:142.088936pt;}
.h0{height:793.920000pt;}
.h1{height:794.000000pt;}
.h16{height:1122.560000pt;}
.h17{height:1122.666667pt;}
.w3{width:6.400000pt;}
.w7{width:6.720000pt;}
.wa{width:13.120000pt;}
.w9{width:44.512000pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.w8{width:598.306667pt;}
.w5{width:793.333333pt;}
.w6{width:793.599988pt;}
.w4{width:793.600000pt;}
.x0{left:0.000000pt;}
.x30{left:14.720000pt;}
.x13{left:64.351992pt;}
.xa{left:67.871992pt;}
.x12{left:70.111992pt;}
.x26{left:71.391992pt;}
.x8{left:72.351992pt;}
.x18{left:75.231992pt;}
.x1c{left:76.831992pt;}
.x14{left:83.871992pt;}
.xf{left:89.663992pt;}
.x21{left:91.263992pt;}
.x2e{left:94.432000pt;}
.x7{left:100.223992pt;}
.x2a{left:102.143992pt;}
.x1b{left:103.103992pt;}
.x15{left:110.463992pt;}
.x1e{left:112.063992pt;}
.x2c{left:113.311988pt;}
.x1d{left:116.863992pt;}
.x3{left:118.143992pt;}
.x2b{left:121.023992pt;}
.x3b{left:123.583988pt;}
.x22{left:130.303992pt;}
.x38{left:132.863988pt;}
.x19{left:136.386658pt;}
.x1a{left:137.986658pt;}
.x33{left:141.826655pt;}
.x35{left:143.106655pt;}
.x9{left:144.066658pt;}
.x6{left:148.893325pt;}
.x39{left:153.026655pt;}
.x16{left:159.133325pt;}
.x5{left:160.733325pt;}
.x1f{left:163.293325pt;}
.x4{left:171.613325pt;}
.x37{left:182.786655pt;}
.x17{left:185.693325pt;}
.x34{left:194.946655pt;}
.x2{left:198.493325pt;}
.x28{left:203.613325pt;}
.x11{left:204.573325pt;}
.x25{left:205.573325pt;}
.x29{left:209.093325pt;}
.x27{left:211.653325pt;}
.x3e{left:227.933322pt;}
.xd{left:232.133325pt;}
.x10{left:247.173325pt;}
.xb{left:248.773325pt;}
.x24{left:249.733325pt;}
.x23{left:252.933325pt;}
.x1{left:279.839992pt;}
.xc{left:316.319992pt;}
.x3a{left:322.373322pt;}
.xe{left:327.866658pt;}
.x3c{left:333.893322pt;}
.x36{left:361.093322pt;}
.x3d{left:384.799988pt;}
.x32{left:425.119988pt;}
.x20{left:488.893333pt;}
.x2f{left:692.733333pt;}
.x31{left:724.133333pt;}
.x2d{left:730.533333pt;}
}




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