
    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_dc0f263e27bcd6def19133d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_1f31ca18b3c2c278ba975893.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_cb930ede4b2c7d53a58990f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3dcb620b9aed2077c669f962.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.006000;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_f570029ec9728bba41e9fc53.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_95071ed3fb64697b1e34948b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_e081a0a33d66fd6c169cb770.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;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_2f35fb8b97c5ff32e237264b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006000;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_aff38f1a7f229b27cf5032b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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_d4b589ab92abc4ff3c788164.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_e486326da7d52d88d4d6ad77.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.770000;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_ac42a811a2ed66a17c08bd3a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.724000;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_4414026ff084e574a061b8ff.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006000;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_0682829b36671065166da4fb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940000;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_c8f83ce5bb3d2737e19da170.woff2')format("woff");}.fff{font-family:fff;line-height:0.714000;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_0682829b36671065166da4fb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.940000;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_c8f83ce5bb3d2737e19da170.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.714000;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:ff12;src:url('chunks/assets/font_0c1db3496e2c6b63a9e1a7cd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.714000;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:ff13;src:url('chunks/assets/font_3b482f7d0e3058bdf5e6fb17.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.772000;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:ff14;src:url('chunks/assets/font_8fa8915ca831c1ee425232a0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.950195;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:ff15;src:url('chunks/assets/font_be5434419d3ad6358c7684b0.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_250352ac90eef860b6f5f084.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.972656;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.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.986000px;}
.ls12{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-0.960000px;}
.ls8{letter-spacing:-0.918000px;}
.lsf{letter-spacing:-0.798000px;}
.ls6{letter-spacing:-0.714000px;}
.ls4{letter-spacing:-0.306000px;}
.ls14{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.204000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.168000px;}
.ls2{letter-spacing:0.420000px;}
.lsc{letter-spacing:0.714000px;}
.ls7{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.840000px;}
.lsa{letter-spacing:0.882000px;}
.ls9{letter-spacing:0.924000px;}
.ls10{letter-spacing:0.966000px;}
.ls11{letter-spacing:1.050000px;}
.ls0{letter-spacing:3.240000px;}
.lsd{letter-spacing:4.212000px;}
.ls1{letter-spacing:2828.016000px;}
.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;}
}
.ws42{word-spacing:-48.000000px;}
.ws58{word-spacing:-47.760000px;}
.ws57{word-spacing:-47.040000px;}
.ws41{word-spacing:-46.560000px;}
.ws3{word-spacing:-24.486000px;}
.wse{word-spacing:-20.706000px;}
.ws1{word-spacing:-20.604000px;}
.ws17{word-spacing:-19.992000px;}
.ws31{word-spacing:-11.178000px;}
.ws18{word-spacing:-11.070000px;}
.ws2{word-spacing:-10.638000px;}
.ws0{word-spacing:-9.936000px;}
.ws32{word-spacing:-9.456000px;}
.ws1c{word-spacing:-9.282000px;}
.ws25{word-spacing:-8.694000px;}
.wsf{word-spacing:-8.568000px;}
.ws22{word-spacing:-7.770000px;}
.ws21{word-spacing:-2.106000px;}
.ws5d{word-spacing:-2.064000px;}
.ws46{word-spacing:-1.920000px;}
.ws43{word-spacing:-1.872000px;}
.ws44{word-spacing:-1.824000px;}
.ws52{word-spacing:-1.728000px;}
.ws53{word-spacing:-1.680000px;}
.ws5b{word-spacing:-1.488000px;}
.ws4f{word-spacing:-1.440000px;}
.ws33{word-spacing:-1.350000px;}
.ws62{word-spacing:-1.296000px;}
.ws61{word-spacing:-1.248000px;}
.ws30{word-spacing:-1.050000px;}
.ws56{word-spacing:-1.008000px;}
.ws2e{word-spacing:-0.966000px;}
.ws2f{word-spacing:-0.882000px;}
.ws5a{word-spacing:-0.768000px;}
.ws12{word-spacing:-0.720000px;}
.ws48{word-spacing:-0.480000px;}
.ws34{word-spacing:-0.432000px;}
.wsc{word-spacing:-0.420000px;}
.ws35{word-spacing:-0.378000px;}
.ws1f{word-spacing:-0.270000px;}
.ws2c{word-spacing:-0.252000px;}
.ws45{word-spacing:-0.192000px;}
.ws47{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws4b{word-spacing:0.048000px;}
.ws59{word-spacing:0.144000px;}
.wsb{word-spacing:0.204000px;}
.ws64{word-spacing:0.240000px;}
.ws40{word-spacing:0.288000px;}
.ws3f{word-spacing:0.336000px;}
.ws13{word-spacing:0.432000px;}
.ws15{word-spacing:0.504000px;}
.ws50{word-spacing:0.528000px;}
.ws16{word-spacing:0.546000px;}
.ws4c{word-spacing:0.576000px;}
.wsd{word-spacing:0.714000px;}
.wsa{word-spacing:0.918000px;}
.ws5c{word-spacing:1.056000px;}
.ws3b{word-spacing:1.242000px;}
.ws2b{word-spacing:1.296000px;}
.ws5e{word-spacing:1.392000px;}
.ws3a{word-spacing:1.512000px;}
.ws7{word-spacing:1.536000px;}
.ws2d{word-spacing:1.596000px;}
.ws39{word-spacing:1.620000px;}
.ws51{word-spacing:1.728000px;}
.ws4e{word-spacing:2.112000px;}
.ws5{word-spacing:2.784000px;}
.ws29{word-spacing:2.808000px;}
.ws2a{word-spacing:2.970000px;}
.ws38{word-spacing:3.132000px;}
.ws14{word-spacing:3.186000px;}
.ws37{word-spacing:3.294000px;}
.ws49{word-spacing:3.360000px;}
.ws28{word-spacing:3.996000px;}
.ws54{word-spacing:4.416000px;}
.ws3c{word-spacing:4.482000px;}
.ws3d{word-spacing:4.536000px;}
.ws3e{word-spacing:4.752000px;}
.ws6{word-spacing:4.800000px;}
.ws9{word-spacing:4.896000px;}
.ws8{word-spacing:5.088000px;}
.ws36{word-spacing:5.400000px;}
.ws5f{word-spacing:5.712000px;}
.ws63{word-spacing:5.808000px;}
.ws55{word-spacing:6.480000px;}
.ws60{word-spacing:6.528000px;}
.ws20{word-spacing:7.830000px;}
.ws4a{word-spacing:8.592000px;}
.ws4d{word-spacing:9.984000px;}
.ws23{word-spacing:37.535400px;}
.ws24{word-spacing:85.990800px;}
.ws27{word-spacing:99.246000px;}
.ws1d{word-spacing:120.036000px;}
.ws26{word-spacing:179.340000px;}
.ws19{word-spacing:228.328800px;}
.ws1e{word-spacing:231.042000px;}
.ws10{word-spacing:340.413556px;}
.ws1b{word-spacing:434.544600px;}
.ws1a{word-spacing:813.300600px;}
.ws11{word-spacing:1858.645817px;}
._12{margin-left:-1063.619797px;}
._e{margin-left:-507.682690px;}
._f{margin-left:-498.757389px;}
._2e{margin-left:-23.685600px;}
._7{margin-left:-13.809600px;}
._2f{margin-left:-12.263400px;}
._30{margin-left:-9.113400px;}
._5{margin-left:-6.256800px;}
._2d{margin-left:-4.862400px;}
._c{margin-left:-3.729600px;}
._8{margin-left:-2.616600px;}
._1{margin-left:-1.368000px;}
._4{width:1.003200px;}
._0{width:2.064000px;}
._3{width:3.273600px;}
._2{width:5.059200px;}
._13{width:6.967800px;}
._6{width:8.046000px;}
._14{width:9.156600px;}
._34{width:10.944000px;}
._d{width:12.479400px;}
._32{width:13.940400px;}
._33{width:15.403200px;}
._27{width:29.050800px;}
._a{width:30.480000px;}
._9{width:34.032000px;}
._26{width:36.069600px;}
._24{width:38.602800px;}
._28{width:78.564000px;}
._2a{width:87.570000px;}
._2c{width:88.578000px;}
._2b{width:107.940000px;}
._16{width:176.928000px;}
._1b{width:180.444600px;}
._29{width:182.952000px;}
._1a{width:221.751600px;}
._15{width:235.416600px;}
._25{width:251.286000px;}
._18{width:283.626000px;}
._1e{width:335.454000px;}
._22{width:337.554000px;}
._20{width:353.262000px;}
._11{width:354.411511px;}
._21{width:367.458000px;}
._1d{width:369.852000px;}
._19{width:393.372000px;}
._1f{width:398.496000px;}
._1c{width:467.292000px;}
._17{width:818.034000px;}
._10{width:1214.739914px;}
._23{width:1537.454400px;}
._b{width:1539.470400px;}
._31{width:1541.102400px;}
.fc6{color:rgb(68,143,255);}
.fc4{color:rgb(0,103,104);}
.fc3{color:rgb(0,93,145);}
.fc2{color:rgb(77,77,79);}
.fc5{color:rgb(76,76,76);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.486000px;}
.fsd{font-size:32.105400px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:38.526000px;}
.fs3{font-size:42.000000px;}
.fsb{font-size:44.947200px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:51.368400px;}
.fs1{font-size:54.000000px;}
.fsc{font-size:57.789600px;}
.fs0{font-size:59.400000px;}
.fs7{font-size:60.000000px;}
.fsf{font-size:64.210200px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:102.000000px;}
.fse{font-size:128.420400px;}
.y0{bottom:0.000000px;}
.y62{bottom:3.860399px;}
.y38{bottom:34.158750px;}
.y4{bottom:71.658750px;}
.ya6{bottom:100.608300px;}
.y127{bottom:101.010600px;}
.y48{bottom:103.938000px;}
.yc{bottom:106.042350px;}
.ye8{bottom:109.153350px;}
.y2d{bottom:111.339450px;}
.yb{bottom:116.842350px;}
.y126{bottom:117.510600px;}
.ya5{bottom:118.603800px;}
.y8b{bottom:120.564150px;}
.y47{bottom:121.933500px;}
.ye7{bottom:125.653350px;}
.ya{bottom:127.642350px;}
.y2c{bottom:129.334950px;}
.y125{bottom:134.010600px;}
.ya4{bottom:136.599300px;}
.y9{bottom:138.442350px;}
.y8a{bottom:138.559650px;}
.y46{bottom:139.929000px;}
.ye6{bottom:142.153350px;}
.y2b{bottom:147.330450px;}
.y124{bottom:150.510600px;}
.ya3{bottom:154.594800px;}
.y89{bottom:156.555150px;}
.ye5{bottom:158.653350px;}
.y45{bottom:162.429000px;}
.y123{bottom:167.010600px;}
.y2a{bottom:169.830450px;}
.ya2{bottom:172.590300px;}
.y88{bottom:174.550650px;}
.ye4{bottom:175.153350px;}
.y8{bottom:176.242350px;}
.y122{bottom:183.510600px;}
.y7{bottom:188.842350px;}
.ya1{bottom:190.585800px;}
.ye3{bottom:191.653350px;}
.y87{bottom:192.546150px;}
.y61{bottom:196.051350px;}
.y121{bottom:200.010600px;}
.y6{bottom:201.442350px;}
.ye2{bottom:208.153350px;}
.ya0{bottom:208.581300px;}
.y5{bottom:214.042350px;}
.y86{bottom:215.050650px;}
.y120{bottom:216.510600px;}
.y44{bottom:218.724000px;}
.y29{bottom:226.156800px;}
.y9f{bottom:226.576800px;}
.ye1{bottom:229.153350px;}
.y11f{bottom:233.010600px;}
.y85{bottom:233.046150px;}
.y43{bottom:236.719500px;}
.y28{bottom:244.152300px;}
.y9e{bottom:244.572300px;}
.y11e{bottom:249.510600px;}
.y84{bottom:251.041650px;}
.y42{bottom:254.715000px;}
.y27{bottom:262.147800px;}
.y11d{bottom:266.010600px;}
.y9d{bottom:267.072300px;}
.y83{bottom:269.037150px;}
.y41{bottom:272.710500px;}
.y26{bottom:280.143300px;}
.y11c{bottom:282.510600px;}
.ye0{bottom:285.413850px;}
.y82{bottom:287.032650px;}
.y40{bottom:290.706000px;}
.y25{bottom:298.138800px;}
.y11b{bottom:299.010600px;}
.ydf{bottom:303.409350px;}
.y81{bottom:305.028150px;}
.y3f{bottom:308.701500px;}
.y11a{bottom:315.510600px;}
.y24{bottom:316.134300px;}
.yde{bottom:321.404850px;}
.y80{bottom:323.023650px;}
.y9c{bottom:323.335800px;}
.y3e{bottom:326.697000px;}
.y119{bottom:332.010600px;}
.y23{bottom:334.129800px;}
.ydd{bottom:339.400350px;}
.y7f{bottom:341.019150px;}
.y9b{bottom:341.331300px;}
.y3d{bottom:344.692500px;}
.y118{bottom:348.510600px;}
.y22{bottom:352.125300px;}
.y7e{bottom:359.014650px;}
.y9a{bottom:359.326800px;}
.y3c{bottom:362.688000px;}
.ydc{bottom:363.407850px;}
.y117{bottom:365.010600px;}
.y21{bottom:370.120800px;}
.y99{bottom:377.322300px;}
.y3b{bottom:380.683500px;}
.ydb{bottom:381.418350px;}
.y116{bottom:381.510600px;}
.y7d{bottom:381.519150px;}
.y20{bottom:388.116300px;}
.y115{bottom:398.010600px;}
.y3a{bottom:398.679000px;}
.yda{bottom:399.413850px;}
.y7c{bottom:399.514650px;}
.y98{bottom:399.826800px;}
.y1f{bottom:406.111800px;}
.y114{bottom:414.510600px;}
.y7b{bottom:417.510150px;}
.y97{bottom:417.822300px;}
.yd9{bottom:423.416850px;}
.y1e{bottom:424.107300px;}
.y113{bottom:431.010600px;}
.y7a{bottom:440.014650px;}
.y4a{bottom:440.105850px;}
.yd8{bottom:441.412350px;}
.y1d{bottom:442.102800px;}
.y112{bottom:447.510600px;}
.y49{bottom:455.110350px;}
.y79{bottom:458.010150px;}
.yd7{bottom:459.407850px;}
.y1c{bottom:460.098300px;}
.y111{bottom:464.010600px;}
.yb7{bottom:466.912500px;}
.y58{bottom:470.833500px;}
.y1b{bottom:478.093800px;}
.y110{bottom:480.510600px;}
.yb6{bottom:481.140000px;}
.yd6{bottom:483.410850px;}
.y78{bottom:488.007150px;}
.yb5{bottom:495.367500px;}
.y1a{bottom:496.089300px;}
.y10f{bottom:497.010600px;}
.yd5{bottom:501.406350px;}
.y77{bottom:506.002650px;}
.yb4{bottom:509.595000px;}
.y10e{bottom:513.510600px;}
.y19{bottom:514.084800px;}
.yb3{bottom:523.822500px;}
.y76{bottom:523.998150px;}
.yd4{bottom:525.409350px;}
.y10d{bottom:530.010600px;}
.y18{bottom:532.080300px;}
.yb2{bottom:538.050000px;}
.yd3{bottom:543.404850px;}
.y10c{bottom:546.510600px;}
.yb1{bottom:552.277500px;}
.y75{bottom:553.998150px;}
.y17{bottom:554.580300px;}
.y51{bottom:555.677400px;}
.y4d{bottom:562.356724px;}
.y10b{bottom:563.010600px;}
.y53{bottom:565.424554px;}
.yb0{bottom:566.505000px;}
.yd2{bottom:567.407850px;}
.y10a{bottom:579.510600px;}
.yaf{bottom:580.732500px;}
.yae{bottom:582.360000px;}
.yd1{bottom:585.403350px;}
.y52{bottom:594.113805px;}
.yad{bottom:594.960000px;}
.y109{bottom:596.010600px;}
.yd0{bottom:609.403350px;}
.y74{bottom:610.324500px;}
.y16{bottom:610.830300px;}
.y108{bottom:612.510600px;}
.y59{bottom:615.242550px;}
.yac{bottom:616.684500px;}
.y15{bottom:627.330300px;}
.y73{bottom:628.320000px;}
.y107{bottom:629.010600px;}
.y5d{bottom:632.894100px;}
.yab{bottom:640.649700px;}
.y4c{bottom:641.399850px;}
.y14{bottom:643.830300px;}
.y106{bottom:645.510600px;}
.y72{bottom:646.315500px;}
.yaa{bottom:655.654200px;}
.y105{bottom:662.010600px;}
.y71{bottom:664.311000px;}
.ycf{bottom:665.662350px;}
.y60{bottom:666.884850px;}
.y13{bottom:678.330300px;}
.y104{bottom:678.510600px;}
.y70{bottom:682.306500px;}
.yce{bottom:683.657850px;}
.ya9{bottom:693.874200px;}
.y103{bottom:695.010600px;}
.y6f{bottom:700.302000px;}
.ycd{bottom:701.653350px;}
.y12{bottom:703.830300px;}
.ya8{bottom:708.878700px;}
.y102{bottom:711.510600px;}
.y6e{bottom:718.297500px;}
.y11{bottom:720.330300px;}
.ya7{bottom:723.883200px;}
.ycc{bottom:724.153350px;}
.y101{bottom:728.010600px;}
.y2f{bottom:730.155900px;}
.y6d{bottom:736.293000px;}
.y10{bottom:736.830300px;}
.y100{bottom:744.510600px;}
.y2e{bottom:745.031550px;}
.yf{bottom:753.330300px;}
.y6c{bottom:754.288500px;}
.y50{bottom:754.405441px;}
.yff{bottom:761.010600px;}
.ye{bottom:769.830300px;}
.y6b{bottom:772.284000px;}
.y4f{bottom:774.236700px;}
.yfe{bottom:777.510600px;}
.ycb{bottom:780.488850px;}
.yd{bottom:786.330300px;}
.y6a{bottom:790.279500px;}
.y54{bottom:790.809300px;}
.yfd{bottom:794.010600px;}
.y5f{bottom:796.418100px;}
.yca{bottom:798.484350px;}
.y69{bottom:808.275000px;}
.yfc{bottom:810.510600px;}
.y4b{bottom:813.711600px;}
.y4e{bottom:813.984300px;}
.yc9{bottom:816.479850px;}
.y68{bottom:826.270500px;}
.yfb{bottom:827.010600px;}
.yc8{bottom:834.475350px;}
.y5b{bottom:842.463176px;}
.yfa{bottom:843.510600px;}
.y67{bottom:844.266000px;}
.yc7{bottom:852.470850px;}
.y37{bottom:853.158150px;}
.yf9{bottom:860.010600px;}
.y66{bottom:862.261500px;}
.y5a{bottom:862.376550px;}
.y36{bottom:869.658150px;}
.yc6{bottom:870.466350px;}
.yf8{bottom:876.510600px;}
.y65{bottom:880.257000px;}
.yc5{bottom:888.461850px;}
.yf7{bottom:893.010600px;}
.y35{bottom:893.658150px;}
.y64{bottom:898.252500px;}
.yc4{bottom:906.457350px;}
.yf6{bottom:909.510600px;}
.y34{bottom:910.158150px;}
.y63{bottom:916.248000px;}
.yc3{bottom:924.452850px;}
.yf5{bottom:926.010600px;}
.y33{bottom:941.658150px;}
.yc2{bottom:942.448350px;}
.yf4{bottom:942.510600px;}
.yf3{bottom:959.010600px;}
.yc1{bottom:960.443850px;}
.y96{bottom:965.341500px;}
.y5c{bottom:975.283215px;}
.yf2{bottom:975.510600px;}
.y32{bottom:977.658150px;}
.yc0{bottom:978.439350px;}
.y95{bottom:979.569000px;}
.yf1{bottom:992.010600px;}
.y94{bottom:993.796500px;}
.ybf{bottom:996.434850px;}
.y93{bottom:1008.024000px;}
.y31{bottom:1008.258150px;}
.yf0{bottom:1008.510600px;}
.ybe{bottom:1014.430350px;}
.y92{bottom:1022.251500px;}
.yef{bottom:1025.010600px;}
.ybd{bottom:1032.425850px;}
.y91{bottom:1036.479000px;}
.y30{bottom:1038.858150px;}
.yee{bottom:1041.510600px;}
.ybc{bottom:1050.421350px;}
.y90{bottom:1050.706500px;}
.yed{bottom:1058.010600px;}
.y8f{bottom:1064.934000px;}
.ybb{bottom:1068.416850px;}
.yec{bottom:1074.510600px;}
.y8e{bottom:1079.161500px;}
.y57{bottom:1086.076050px;}
.yba{bottom:1086.412350px;}
.yeb{bottom:1091.010600px;}
.y56{bottom:1097.872500px;}
.y5e{bottom:1098.741000px;}
.y8d{bottom:1100.886000px;}
.y3{bottom:1103.536350px;}
.yb9{bottom:1104.407850px;}
.yea{bottom:1107.510600px;}
.y55{bottom:1120.567200px;}
.yb8{bottom:1122.403350px;}
.ye9{bottom:1124.010600px;}
.y8c{bottom:1124.860350px;}
.y2{bottom:1136.650650px;}
.y1{bottom:1154.470650px;}
.y39{bottom:1175.538600px;}
.h10{height:23.469047px;}
.h6{height:27.540000px;}
.hc{height:28.162506px;}
.h14{height:32.130000px;}
.h5{height:32.172000px;}
.he{height:32.856403px;}
.h4{height:36.768000px;}
.hd{height:37.550300px;}
.hf{height:41.261774px;}
.h3{height:41.310000px;}
.h8{height:41.364000px;}
.h15{height:42.240000px;}
.h2{height:45.500400px;}
.h13{height:45.846083px;}
.hb{height:49.713864px;}
.h9{height:63.840000px;}
.h7{height:78.030000px;}
.ha{height:78.132000px;}
.h12{height:91.692166px;}
.h11{height:665.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:752.092500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6{left:-337.606350px;}
.x7{left:-270.843300px;}
.x0{left:0.000000px;}
.x16{left:11.321400px;}
.x3{left:81.000000px;}
.x2{left:93.000000px;}
.x18{left:278.890184px;}
.x4{left:288.000000px;}
.x5{left:306.000000px;}
.x19{left:361.321500px;}
.xa{left:365.400186px;}
.xd{left:384.164673px;}
.x15{left:386.209634px;}
.x17{left:402.428850px;}
.xc{left:440.586000px;}
.xb{left:484.942500px;}
.x9{left:498.919500px;}
.xe{left:500.248500px;}
.xf{left:701.599786px;}
.x1{left:717.106200px;}
.x8{left:718.459500px;}
.x10{left:726.619050px;}
.x11{left:737.292300px;}
.x14{left:745.961400px;}
.x12{left:749.901600px;}
.x13{left:814.824750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.432000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.853333pt;}
.ls8{letter-spacing:-0.816000pt;}
.lsf{letter-spacing:-0.709333pt;}
.ls6{letter-spacing:-0.634667pt;}
.ls4{letter-spacing:-0.272000pt;}
.ls14{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.181333pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.149333pt;}
.ls2{letter-spacing:0.373333pt;}
.lsc{letter-spacing:0.634667pt;}
.ls7{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.746667pt;}
.lsa{letter-spacing:0.784000pt;}
.ls9{letter-spacing:0.821333pt;}
.ls10{letter-spacing:0.858667pt;}
.ls11{letter-spacing:0.933333pt;}
.ls0{letter-spacing:2.880000pt;}
.lsd{letter-spacing:3.744000pt;}
.ls1{letter-spacing:2513.792000pt;}
.ws42{word-spacing:-42.666667pt;}
.ws58{word-spacing:-42.453333pt;}
.ws57{word-spacing:-41.813333pt;}
.ws41{word-spacing:-41.386667pt;}
.ws3{word-spacing:-21.765333pt;}
.wse{word-spacing:-18.405333pt;}
.ws1{word-spacing:-18.314667pt;}
.ws17{word-spacing:-17.770667pt;}
.ws31{word-spacing:-9.936000pt;}
.ws18{word-spacing:-9.840000pt;}
.ws2{word-spacing:-9.456000pt;}
.ws0{word-spacing:-8.832000pt;}
.ws32{word-spacing:-8.405333pt;}
.ws1c{word-spacing:-8.250667pt;}
.ws25{word-spacing:-7.728000pt;}
.wsf{word-spacing:-7.616000pt;}
.ws22{word-spacing:-6.906667pt;}
.ws21{word-spacing:-1.872000pt;}
.ws5d{word-spacing:-1.834667pt;}
.ws46{word-spacing:-1.706667pt;}
.ws43{word-spacing:-1.664000pt;}
.ws44{word-spacing:-1.621333pt;}
.ws52{word-spacing:-1.536000pt;}
.ws53{word-spacing:-1.493333pt;}
.ws5b{word-spacing:-1.322667pt;}
.ws4f{word-spacing:-1.280000pt;}
.ws33{word-spacing:-1.200000pt;}
.ws62{word-spacing:-1.152000pt;}
.ws61{word-spacing:-1.109333pt;}
.ws30{word-spacing:-0.933333pt;}
.ws56{word-spacing:-0.896000pt;}
.ws2e{word-spacing:-0.858667pt;}
.ws2f{word-spacing:-0.784000pt;}
.ws5a{word-spacing:-0.682667pt;}
.ws12{word-spacing:-0.640000pt;}
.ws48{word-spacing:-0.426667pt;}
.ws34{word-spacing:-0.384000pt;}
.wsc{word-spacing:-0.373333pt;}
.ws35{word-spacing:-0.336000pt;}
.ws1f{word-spacing:-0.240000pt;}
.ws2c{word-spacing:-0.224000pt;}
.ws45{word-spacing:-0.170667pt;}
.ws47{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.042667pt;}
.ws59{word-spacing:0.128000pt;}
.wsb{word-spacing:0.181333pt;}
.ws64{word-spacing:0.213333pt;}
.ws40{word-spacing:0.256000pt;}
.ws3f{word-spacing:0.298667pt;}
.ws13{word-spacing:0.384000pt;}
.ws15{word-spacing:0.448000pt;}
.ws50{word-spacing:0.469333pt;}
.ws16{word-spacing:0.485333pt;}
.ws4c{word-spacing:0.512000pt;}
.wsd{word-spacing:0.634667pt;}
.wsa{word-spacing:0.816000pt;}
.ws5c{word-spacing:0.938667pt;}
.ws3b{word-spacing:1.104000pt;}
.ws2b{word-spacing:1.152000pt;}
.ws5e{word-spacing:1.237333pt;}
.ws3a{word-spacing:1.344000pt;}
.ws7{word-spacing:1.365333pt;}
.ws2d{word-spacing:1.418667pt;}
.ws39{word-spacing:1.440000pt;}
.ws51{word-spacing:1.536000pt;}
.ws4e{word-spacing:1.877333pt;}
.ws5{word-spacing:2.474667pt;}
.ws29{word-spacing:2.496000pt;}
.ws2a{word-spacing:2.640000pt;}
.ws38{word-spacing:2.784000pt;}
.ws14{word-spacing:2.832000pt;}
.ws37{word-spacing:2.928000pt;}
.ws49{word-spacing:2.986667pt;}
.ws28{word-spacing:3.552000pt;}
.ws54{word-spacing:3.925333pt;}
.ws3c{word-spacing:3.984000pt;}
.ws3d{word-spacing:4.032000pt;}
.ws3e{word-spacing:4.224000pt;}
.ws6{word-spacing:4.266667pt;}
.ws9{word-spacing:4.352000pt;}
.ws8{word-spacing:4.522667pt;}
.ws36{word-spacing:4.800000pt;}
.ws5f{word-spacing:5.077333pt;}
.ws63{word-spacing:5.162667pt;}
.ws55{word-spacing:5.760000pt;}
.ws60{word-spacing:5.802667pt;}
.ws20{word-spacing:6.960000pt;}
.ws4a{word-spacing:7.637333pt;}
.ws4d{word-spacing:8.874667pt;}
.ws23{word-spacing:33.364800pt;}
.ws24{word-spacing:76.436267pt;}
.ws27{word-spacing:88.218667pt;}
.ws1d{word-spacing:106.698667pt;}
.ws26{word-spacing:159.413333pt;}
.ws19{word-spacing:202.958933pt;}
.ws1e{word-spacing:205.370667pt;}
.ws10{word-spacing:302.589828pt;}
.ws1b{word-spacing:386.261867pt;}
.ws1a{word-spacing:722.933867pt;}
.ws11{word-spacing:1652.129615pt;}
._12{margin-left:-945.439819pt;}
._e{margin-left:-451.273502pt;}
._f{margin-left:-443.339901pt;}
._2e{margin-left:-21.053867pt;}
._7{margin-left:-12.275200pt;}
._2f{margin-left:-10.900800pt;}
._30{margin-left:-8.100800pt;}
._5{margin-left:-5.561600pt;}
._2d{margin-left:-4.322133pt;}
._c{margin-left:-3.315200pt;}
._8{margin-left:-2.325867pt;}
._1{margin-left:-1.216000pt;}
._4{width:0.891733pt;}
._0{width:1.834667pt;}
._3{width:2.909867pt;}
._2{width:4.497067pt;}
._13{width:6.193600pt;}
._6{width:7.152000pt;}
._14{width:8.139200pt;}
._34{width:9.728000pt;}
._d{width:11.092800pt;}
._32{width:12.391467pt;}
._33{width:13.691733pt;}
._27{width:25.822933pt;}
._a{width:27.093333pt;}
._9{width:30.250667pt;}
._26{width:32.061867pt;}
._24{width:34.313600pt;}
._28{width:69.834667pt;}
._2a{width:77.840000pt;}
._2c{width:78.736000pt;}
._2b{width:95.946667pt;}
._16{width:157.269333pt;}
._1b{width:160.395200pt;}
._29{width:162.624000pt;}
._1a{width:197.112533pt;}
._15{width:209.259200pt;}
._25{width:223.365333pt;}
._18{width:252.112000pt;}
._1e{width:298.181333pt;}
._22{width:300.048000pt;}
._20{width:314.010667pt;}
._11{width:315.032454pt;}
._21{width:326.629333pt;}
._1d{width:328.757333pt;}
._19{width:349.664000pt;}
._1f{width:354.218667pt;}
._1c{width:415.370667pt;}
._17{width:727.141333pt;}
._10{width:1079.768813pt;}
._23{width:1366.626133pt;}
._b{width:1368.418133pt;}
._31{width:1369.868800pt;}
.fs8{font-size:21.765333pt;}
.fsd{font-size:28.538133pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:34.245333pt;}
.fs3{font-size:37.333333pt;}
.fsb{font-size:39.953067pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:45.660800pt;}
.fs1{font-size:48.000000pt;}
.fsc{font-size:51.368533pt;}
.fs0{font-size:52.800000pt;}
.fs7{font-size:53.333333pt;}
.fsf{font-size:57.075733pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:90.666667pt;}
.fse{font-size:114.151467pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:3.431466pt;}
.y38{bottom:30.363333pt;}
.y4{bottom:63.696667pt;}
.ya6{bottom:89.429600pt;}
.y127{bottom:89.787200pt;}
.y48{bottom:92.389333pt;}
.yc{bottom:94.259867pt;}
.ye8{bottom:97.025200pt;}
.y2d{bottom:98.968400pt;}
.yb{bottom:103.859867pt;}
.y126{bottom:104.453867pt;}
.ya5{bottom:105.425600pt;}
.y8b{bottom:107.168133pt;}
.y47{bottom:108.385333pt;}
.ye7{bottom:111.691867pt;}
.ya{bottom:113.459867pt;}
.y2c{bottom:114.964400pt;}
.y125{bottom:119.120533pt;}
.ya4{bottom:121.421600pt;}
.y9{bottom:123.059867pt;}
.y8a{bottom:123.164133pt;}
.y46{bottom:124.381333pt;}
.ye6{bottom:126.358533pt;}
.y2b{bottom:130.960400pt;}
.y124{bottom:133.787200pt;}
.ya3{bottom:137.417600pt;}
.y89{bottom:139.160133pt;}
.ye5{bottom:141.025200pt;}
.y45{bottom:144.381333pt;}
.y123{bottom:148.453867pt;}
.y2a{bottom:150.960400pt;}
.ya2{bottom:153.413600pt;}
.y88{bottom:155.156133pt;}
.ye4{bottom:155.691867pt;}
.y8{bottom:156.659867pt;}
.y122{bottom:163.120533pt;}
.y7{bottom:167.859867pt;}
.ya1{bottom:169.409600pt;}
.ye3{bottom:170.358533pt;}
.y87{bottom:171.152133pt;}
.y61{bottom:174.267867pt;}
.y121{bottom:177.787200pt;}
.y6{bottom:179.059867pt;}
.ye2{bottom:185.025200pt;}
.ya0{bottom:185.405600pt;}
.y5{bottom:190.259867pt;}
.y86{bottom:191.156133pt;}
.y120{bottom:192.453867pt;}
.y44{bottom:194.421333pt;}
.y29{bottom:201.028267pt;}
.y9f{bottom:201.401600pt;}
.ye1{bottom:203.691867pt;}
.y11f{bottom:207.120533pt;}
.y85{bottom:207.152133pt;}
.y43{bottom:210.417333pt;}
.y28{bottom:217.024267pt;}
.y9e{bottom:217.397600pt;}
.y11e{bottom:221.787200pt;}
.y84{bottom:223.148133pt;}
.y42{bottom:226.413333pt;}
.y27{bottom:233.020267pt;}
.y11d{bottom:236.453867pt;}
.y9d{bottom:237.397600pt;}
.y83{bottom:239.144133pt;}
.y41{bottom:242.409333pt;}
.y26{bottom:249.016267pt;}
.y11c{bottom:251.120533pt;}
.ye0{bottom:253.701200pt;}
.y82{bottom:255.140133pt;}
.y40{bottom:258.405333pt;}
.y25{bottom:265.012267pt;}
.y11b{bottom:265.787200pt;}
.ydf{bottom:269.697200pt;}
.y81{bottom:271.136133pt;}
.y3f{bottom:274.401333pt;}
.y11a{bottom:280.453867pt;}
.y24{bottom:281.008267pt;}
.yde{bottom:285.693200pt;}
.y80{bottom:287.132133pt;}
.y9c{bottom:287.409600pt;}
.y3e{bottom:290.397333pt;}
.y119{bottom:295.120533pt;}
.y23{bottom:297.004267pt;}
.ydd{bottom:301.689200pt;}
.y7f{bottom:303.128133pt;}
.y9b{bottom:303.405600pt;}
.y3d{bottom:306.393333pt;}
.y118{bottom:309.787200pt;}
.y22{bottom:313.000267pt;}
.y7e{bottom:319.124133pt;}
.y9a{bottom:319.401600pt;}
.y3c{bottom:322.389333pt;}
.ydc{bottom:323.029200pt;}
.y117{bottom:324.453867pt;}
.y21{bottom:328.996267pt;}
.y99{bottom:335.397600pt;}
.y3b{bottom:338.385333pt;}
.ydb{bottom:339.038533pt;}
.y116{bottom:339.120533pt;}
.y7d{bottom:339.128133pt;}
.y20{bottom:344.992267pt;}
.y115{bottom:353.787200pt;}
.y3a{bottom:354.381333pt;}
.yda{bottom:355.034533pt;}
.y7c{bottom:355.124133pt;}
.y98{bottom:355.401600pt;}
.y1f{bottom:360.988267pt;}
.y114{bottom:368.453867pt;}
.y7b{bottom:371.120133pt;}
.y97{bottom:371.397600pt;}
.yd9{bottom:376.370533pt;}
.y1e{bottom:376.984267pt;}
.y113{bottom:383.120533pt;}
.y7a{bottom:391.124133pt;}
.y4a{bottom:391.205200pt;}
.yd8{bottom:392.366533pt;}
.y1d{bottom:392.980267pt;}
.y112{bottom:397.787200pt;}
.y49{bottom:404.542533pt;}
.y79{bottom:407.120133pt;}
.yd7{bottom:408.362533pt;}
.y1c{bottom:408.976267pt;}
.y111{bottom:412.453867pt;}
.yb7{bottom:415.033333pt;}
.y58{bottom:418.518667pt;}
.y1b{bottom:424.972267pt;}
.y110{bottom:427.120533pt;}
.yb6{bottom:427.680000pt;}
.yd6{bottom:429.698533pt;}
.y78{bottom:433.784133pt;}
.yb5{bottom:440.326667pt;}
.y1a{bottom:440.968267pt;}
.y10f{bottom:441.787200pt;}
.yd5{bottom:445.694533pt;}
.y77{bottom:449.780133pt;}
.yb4{bottom:452.973333pt;}
.y10e{bottom:456.453867pt;}
.y19{bottom:456.964267pt;}
.yb3{bottom:465.620000pt;}
.y76{bottom:465.776133pt;}
.yd4{bottom:467.030533pt;}
.y10d{bottom:471.120533pt;}
.y18{bottom:472.960267pt;}
.yb2{bottom:478.266667pt;}
.yd3{bottom:483.026533pt;}
.y10c{bottom:485.787200pt;}
.yb1{bottom:490.913333pt;}
.y75{bottom:492.442800pt;}
.y17{bottom:492.960267pt;}
.y51{bottom:493.935467pt;}
.y4d{bottom:499.872644pt;}
.y10b{bottom:500.453867pt;}
.y53{bottom:502.599603pt;}
.yb0{bottom:503.560000pt;}
.yd2{bottom:504.362533pt;}
.y10a{bottom:515.120533pt;}
.yaf{bottom:516.206667pt;}
.yae{bottom:517.653333pt;}
.yd1{bottom:520.358533pt;}
.y52{bottom:528.101160pt;}
.yad{bottom:528.853333pt;}
.y109{bottom:529.787200pt;}
.yd0{bottom:541.691867pt;}
.y74{bottom:542.510667pt;}
.y16{bottom:542.960267pt;}
.y108{bottom:544.453867pt;}
.y59{bottom:546.882267pt;}
.yac{bottom:548.164000pt;}
.y15{bottom:557.626933pt;}
.y73{bottom:558.506667pt;}
.y107{bottom:559.120533pt;}
.y5d{bottom:562.572533pt;}
.yab{bottom:569.466400pt;}
.y4c{bottom:570.133200pt;}
.y14{bottom:572.293600pt;}
.y106{bottom:573.787200pt;}
.y72{bottom:574.502667pt;}
.yaa{bottom:582.803733pt;}
.y105{bottom:588.453867pt;}
.y71{bottom:590.498667pt;}
.ycf{bottom:591.699867pt;}
.y60{bottom:592.786533pt;}
.y13{bottom:602.960267pt;}
.y104{bottom:603.120533pt;}
.y70{bottom:606.494667pt;}
.yce{bottom:607.695867pt;}
.ya9{bottom:616.777067pt;}
.y103{bottom:617.787200pt;}
.y6f{bottom:622.490667pt;}
.ycd{bottom:623.691867pt;}
.y12{bottom:625.626933pt;}
.ya8{bottom:630.114400pt;}
.y102{bottom:632.453867pt;}
.y6e{bottom:638.486667pt;}
.y11{bottom:640.293600pt;}
.ya7{bottom:643.451733pt;}
.ycc{bottom:643.691867pt;}
.y101{bottom:647.120533pt;}
.y2f{bottom:649.027467pt;}
.y6d{bottom:654.482667pt;}
.y10{bottom:654.960267pt;}
.y100{bottom:661.787200pt;}
.y2e{bottom:662.250267pt;}
.yf{bottom:669.626933pt;}
.y6c{bottom:670.478667pt;}
.y50{bottom:670.582615pt;}
.yff{bottom:676.453867pt;}
.ye{bottom:684.293600pt;}
.y6b{bottom:686.474667pt;}
.y4f{bottom:688.210400pt;}
.yfe{bottom:691.120533pt;}
.ycb{bottom:693.767867pt;}
.yd{bottom:698.960267pt;}
.y6a{bottom:702.470667pt;}
.y54{bottom:702.941600pt;}
.yfd{bottom:705.787200pt;}
.y5f{bottom:707.927200pt;}
.yca{bottom:709.763867pt;}
.y69{bottom:718.466667pt;}
.yfc{bottom:720.453867pt;}
.y4b{bottom:723.299200pt;}
.y4e{bottom:723.541600pt;}
.yc9{bottom:725.759867pt;}
.y68{bottom:734.462667pt;}
.yfb{bottom:735.120533pt;}
.yc8{bottom:741.755867pt;}
.y5b{bottom:748.856156pt;}
.yfa{bottom:749.787200pt;}
.y67{bottom:750.458667pt;}
.yc7{bottom:757.751867pt;}
.y37{bottom:758.362800pt;}
.yf9{bottom:764.453867pt;}
.y66{bottom:766.454667pt;}
.y5a{bottom:766.556933pt;}
.y36{bottom:773.029467pt;}
.yc6{bottom:773.747867pt;}
.yf8{bottom:779.120533pt;}
.y65{bottom:782.450667pt;}
.yc5{bottom:789.743867pt;}
.yf7{bottom:793.787200pt;}
.y35{bottom:794.362800pt;}
.y64{bottom:798.446667pt;}
.yc4{bottom:805.739867pt;}
.yf6{bottom:808.453867pt;}
.y34{bottom:809.029467pt;}
.y63{bottom:814.442667pt;}
.yc3{bottom:821.735867pt;}
.yf5{bottom:823.120533pt;}
.y33{bottom:837.029467pt;}
.yc2{bottom:837.731867pt;}
.yf4{bottom:837.787200pt;}
.yf3{bottom:852.453867pt;}
.yc1{bottom:853.727867pt;}
.y96{bottom:858.081333pt;}
.y5c{bottom:866.918414pt;}
.yf2{bottom:867.120533pt;}
.y32{bottom:869.029467pt;}
.yc0{bottom:869.723867pt;}
.y95{bottom:870.728000pt;}
.yf1{bottom:881.787200pt;}
.y94{bottom:883.374667pt;}
.ybf{bottom:885.719867pt;}
.y93{bottom:896.021333pt;}
.y31{bottom:896.229467pt;}
.yf0{bottom:896.453867pt;}
.ybe{bottom:901.715867pt;}
.y92{bottom:908.668000pt;}
.yef{bottom:911.120533pt;}
.ybd{bottom:917.711867pt;}
.y91{bottom:921.314667pt;}
.y30{bottom:923.429467pt;}
.yee{bottom:925.787200pt;}
.ybc{bottom:933.707867pt;}
.y90{bottom:933.961333pt;}
.yed{bottom:940.453867pt;}
.y8f{bottom:946.608000pt;}
.ybb{bottom:949.703867pt;}
.yec{bottom:955.120533pt;}
.y8e{bottom:959.254667pt;}
.y57{bottom:965.400933pt;}
.yba{bottom:965.699867pt;}
.yeb{bottom:969.787200pt;}
.y56{bottom:975.886667pt;}
.y5e{bottom:976.658667pt;}
.y8d{bottom:978.565333pt;}
.y3{bottom:980.921200pt;}
.yb9{bottom:981.695867pt;}
.yea{bottom:984.453867pt;}
.y55{bottom:996.059733pt;}
.yb8{bottom:997.691867pt;}
.ye9{bottom:999.120533pt;}
.y8c{bottom:999.875867pt;}
.y2{bottom:1010.356133pt;}
.y1{bottom:1026.196133pt;}
.y39{bottom:1044.923200pt;}
.h10{height:20.861375pt;}
.h6{height:24.480000pt;}
.hc{height:25.033339pt;}
.h14{height:28.560000pt;}
.h5{height:28.597333pt;}
.he{height:29.205692pt;}
.h4{height:32.682667pt;}
.hd{height:33.378045pt;}
.hf{height:36.677133pt;}
.h3{height:36.720000pt;}
.h8{height:36.768000pt;}
.h15{height:37.546667pt;}
.h2{height:40.444800pt;}
.h13{height:40.752074pt;}
.hb{height:44.190101pt;}
.h9{height:56.746667pt;}
.h7{height:69.360000pt;}
.ha{height:69.450667pt;}
.h12{height:81.504147pt;}
.h11{height:591.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:668.526667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6{left:-300.094533pt;}
.x7{left:-240.749600pt;}
.x0{left:0.000000pt;}
.x16{left:10.063467pt;}
.x3{left:72.000000pt;}
.x2{left:82.666667pt;}
.x18{left:247.902386pt;}
.x4{left:256.000000pt;}
.x5{left:272.000000pt;}
.x19{left:321.174667pt;}
.xa{left:324.800166pt;}
.xd{left:341.479709pt;}
.x15{left:343.297452pt;}
.x17{left:357.714533pt;}
.xc{left:391.632000pt;}
.xb{left:431.060000pt;}
.x9{left:443.484000pt;}
.xe{left:444.665333pt;}
.xf{left:623.644254pt;}
.x1{left:637.427733pt;}
.x8{left:638.630667pt;}
.x10{left:645.883600pt;}
.x11{left:655.370933pt;}
.x14{left:663.076800pt;}
.x12{left:666.579200pt;}
.x13{left:724.288667pt;}
}




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