
    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_f69f784723f08b4e23673896.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_d34f64ffe96e24face2ac30c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_4158c68b0762c17838fc6526.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.160000;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_73ea9be7f73ce7432785d4b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.243000;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_06bd678852910c97bc0ab640.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_06bd678852910c97bc0ab640.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_46d0117bf9deb8a1d231f60c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.184000;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_7ef56b9676a48c1c88f5bd53.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.028000;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_413491efa0c8e8a4611b323d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.178000;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_7ef56b9676a48c1c88f5bd53.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.028000;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_413491efa0c8e8a4611b323d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.178000;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_7ef56b9676a48c1c88f5bd53.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.028000;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_7f7cd70db4fc17e7d07ee690.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.178000;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_d46d065e58d1f0710d3beadf.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.164000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-3.834000px;}
.ls30{letter-spacing:-3.120000px;}
.ls2f{letter-spacing:-2.970000px;}
.ls2c{letter-spacing:-1.800000px;}
.lsd{letter-spacing:-1.444800px;}
.lse{letter-spacing:-0.600000px;}
.ls21{letter-spacing:-0.378000px;}
.ls1d{letter-spacing:-0.300000px;}
.ls1b{letter-spacing:-0.240000px;}
.ls1a{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.102000px;}
.lsf{letter-spacing:-0.060000px;}
.lsb{letter-spacing:-0.051000px;}
.ls9{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.022200px;}
.ls14{letter-spacing:0.030000px;}
.ls2{letter-spacing:0.051000px;}
.ls1c{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.090000px;}
.ls3{letter-spacing:0.102000px;}
.ls5{letter-spacing:0.120000px;}
.ls27{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.255000px;}
.ls26{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.300000px;}
.ls2d{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.357000px;}
.ls11{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.390000px;}
.ls13{letter-spacing:0.420000px;}
.ls18{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.600000px;}
.ls28{letter-spacing:0.618000px;}
.ls17{letter-spacing:0.648000px;}
.ls29{letter-spacing:0.660000px;}
.ls2e{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.732600px;}
.ls20{letter-spacing:0.780000px;}
.ls16{letter-spacing:0.960000px;}
.ls2b{letter-spacing:1.020000px;}
.ls1e{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.200000px;}
.ls23{letter-spacing:1.500000px;}
.ls32{letter-spacing:1.512000px;}
.ls31{letter-spacing:1.651200px;}
.lsa{letter-spacing:2.373600px;}
.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;}
}
.ws0{word-spacing:-13.777200px;}
.ws72{word-spacing:-13.054800px;}
.ws62{word-spacing:-12.900000px;}
.ws1{word-spacing:-12.660000px;}
.ws49{word-spacing:-12.600000px;}
.ws4a{word-spacing:-12.540000px;}
.ws37{word-spacing:-12.420000px;}
.ws63{word-spacing:-12.240000px;}
.ws73{word-spacing:-11.094000px;}
.ws7e{word-spacing:-10.965000px;}
.ws61{word-spacing:-10.740000px;}
.ws71{word-spacing:-10.140000px;}
.ws70{word-spacing:-9.828000px;}
.ws60{word-spacing:-8.964000px;}
.ws6d{word-spacing:-2.100000px;}
.ws34{word-spacing:-2.040000px;}
.ws6a{word-spacing:-1.980000px;}
.ws1a{word-spacing:-1.920000px;}
.ws18{word-spacing:-1.860000px;}
.ws2e{word-spacing:-1.800000px;}
.ws25{word-spacing:-1.740000px;}
.ws5{word-spacing:-1.683000px;}
.ws6{word-spacing:-1.632000px;}
.ws27{word-spacing:-1.620000px;}
.ws4e{word-spacing:-1.560000px;}
.wsd{word-spacing:-1.479000px;}
.ws79{word-spacing:-1.380000px;}
.ws59{word-spacing:-1.320000px;}
.ws39{word-spacing:-1.260000px;}
.ws8{word-spacing:-1.224000px;}
.ws23{word-spacing:-1.200000px;}
.ws48{word-spacing:-1.140000px;}
.ws2c{word-spacing:-1.080000px;}
.ws47{word-spacing:-1.020000px;}
.ws35{word-spacing:-0.960000px;}
.ws15{word-spacing:-0.840000px;}
.ws17{word-spacing:-0.780000px;}
.ws2{word-spacing:-0.754800px;}
.ws5b{word-spacing:-0.720000px;}
.ws65{word-spacing:-0.660000px;}
.ws1e{word-spacing:-0.648000px;}
.ws3d{word-spacing:-0.600000px;}
.ws69{word-spacing:-0.420000px;}
.wse{word-spacing:-0.408000px;}
.ws58{word-spacing:-0.360000px;}
.ws1b{word-spacing:-0.240000px;}
.ws7d{word-spacing:-0.206400px;}
.ws7{word-spacing:-0.204000px;}
.ws42{word-spacing:-0.180000px;}
.ws3e{word-spacing:-0.060000px;}
.ws3{word-spacing:-0.044400px;}
.ws4{word-spacing:0.000000px;}
.ws30{word-spacing:0.060000px;}
.ws4c{word-spacing:0.120000px;}
.ws22{word-spacing:0.180000px;}
.ws12{word-spacing:0.255000px;}
.ws2f{word-spacing:0.300000px;}
.ws9{word-spacing:0.306000px;}
.ws5f{word-spacing:0.360000px;}
.ws19{word-spacing:0.420000px;}
.ws24{word-spacing:0.480000px;}
.ws4f{word-spacing:0.540000px;}
.ws5d{word-spacing:0.600000px;}
.ws14{word-spacing:0.720000px;}
.ws44{word-spacing:0.780000px;}
.ws10{word-spacing:0.816000px;}
.ws77{word-spacing:0.840000px;}
.wsf{word-spacing:0.867000px;}
.ws76{word-spacing:0.900000px;}
.ws26{word-spacing:0.960000px;}
.ws52{word-spacing:1.020000px;}
.ws45{word-spacing:1.080000px;}
.ws6c{word-spacing:1.140000px;}
.ws40{word-spacing:1.200000px;}
.ws3a{word-spacing:1.320000px;}
.ws6f{word-spacing:1.380000px;}
.ws11{word-spacing:1.444800px;}
.ws2d{word-spacing:1.560000px;}
.ws50{word-spacing:1.620000px;}
.wsc{word-spacing:1.632000px;}
.ws4d{word-spacing:1.740000px;}
.ws43{word-spacing:1.800000px;}
.ws29{word-spacing:1.860000px;}
.ws13{word-spacing:1.920000px;}
.ws41{word-spacing:1.980000px;}
.ws56{word-spacing:2.040000px;}
.ws32{word-spacing:2.100000px;}
.wsb{word-spacing:2.142000px;}
.ws5a{word-spacing:2.160000px;}
.ws21{word-spacing:2.280000px;}
.ws1d{word-spacing:2.400000px;}
.ws1c{word-spacing:2.460000px;}
.ws2a{word-spacing:2.520000px;}
.ws53{word-spacing:2.580000px;}
.ws75{word-spacing:2.640000px;}
.ws20{word-spacing:2.700000px;}
.ws66{word-spacing:2.880000px;}
.ws2b{word-spacing:2.940000px;}
.wsa{word-spacing:2.958000px;}
.ws36{word-spacing:3.000000px;}
.ws57{word-spacing:3.060000px;}
.ws68{word-spacing:3.180000px;}
.ws33{word-spacing:3.300000px;}
.ws55{word-spacing:3.360000px;}
.ws54{word-spacing:3.420000px;}
.ws67{word-spacing:3.540000px;}
.ws3b{word-spacing:3.720000px;}
.ws3c{word-spacing:4.020000px;}
.ws51{word-spacing:4.080000px;}
.ws7a{word-spacing:4.140000px;}
.ws5c{word-spacing:4.260000px;}
.ws16{word-spacing:4.320000px;}
.ws31{word-spacing:4.440000px;}
.ws28{word-spacing:4.500000px;}
.ws7c{word-spacing:4.800000px;}
.ws3f{word-spacing:5.040000px;}
.ws7b{word-spacing:5.520000px;}
.ws78{word-spacing:6.060000px;}
.ws46{word-spacing:6.360000px;}
.ws6b{word-spacing:8.100000px;}
.ws38{word-spacing:1259.928000px;}
.ws74{word-spacing:1262.520000px;}
.ws64{word-spacing:1263.438000px;}
.ws7f{word-spacing:1450.494000px;}
.ws5e{word-spacing:1452.222000px;}
.ws1f{word-spacing:1452.654000px;}
.ws6e{word-spacing:1452.870000px;}
.ws4b{word-spacing:1453.572000px;}
._c{margin-left:-1263.005640px;}
._7{margin-left:-1260.379800px;}
._8{margin-left:-1259.206800px;}
._b{margin-left:-278.321400px;}
._a{margin-left:-113.057400px;}
._e{margin-left:-8.451840px;}
._3{margin-left:-6.480000px;}
._4{margin-left:-4.679400px;}
._1{margin-left:-3.369600px;}
._0{margin-left:-1.920000px;}
._2{width:1.929600px;}
._5{width:3.226500px;}
._6{width:4.506840px;}
._9{width:6.378000px;}
._d{width:7.470000px;}
.fc2{color:transparent;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:22.200000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:51.600000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y6e{bottom:-446.215200px;}
.y66{bottom:-427.139700px;}
.y74{bottom:-427.126200px;}
.y6d{bottom:-423.710700px;}
.y6c{bottom:-401.206200px;}
.y65{bottom:-392.255700px;}
.y73{bottom:-392.242200px;}
.y6b{bottom:-378.701700px;}
.y64{bottom:-357.371700px;}
.y72{bottom:-357.358200px;}
.y6a{bottom:-356.197200px;}
.y69{bottom:-333.692700px;}
.y63{bottom:-322.487700px;}
.y71{bottom:-322.474200px;}
.y68{bottom:-311.188200px;}
.y62{bottom:-287.738700px;}
.y70{bottom:-287.725200px;}
.y6f{bottom:-264.329700px;}
.y61{bottom:-252.854700px;}
.y67{bottom:-160.528200px;}
.y60{bottom:-113.467200px;}
.yf8{bottom:-9.014400px;}
.yfe{bottom:-9.009150px;}
.y0{bottom:0.000000px;}
.y12e{bottom:59.432100px;}
.y127{bottom:59.440500px;}
.y27{bottom:64.842450px;}
.y12d{bottom:76.834200px;}
.y126{bottom:76.842600px;}
.y26{bottom:83.442450px;}
.y12c{bottom:94.236300px;}
.y125{bottom:94.242600px;}
.y25{bottom:102.042450px;}
.y12b{bottom:111.638400px;}
.y124{bottom:111.640500px;}
.y24{bottom:120.642450px;}
.ybe{bottom:125.863950px;}
.yc9{bottom:127.256400px;}
.ycf{bottom:127.262250px;}
.y12a{bottom:129.040500px;}
.y123{bottom:129.042600px;}
.y23{bottom:139.242450px;}
.y122{bottom:146.436300px;}
.y129{bottom:146.442600px;}
.ybd{bottom:148.368450px;}
.y22{bottom:157.842450px;}
.yc8{bottom:162.140400px;}
.yce{bottom:162.146250px;}
.y121{bottom:163.838400px;}
.y128{bottom:163.842600px;}
.ybc{bottom:164.865450px;}
.y5f{bottom:169.618500px;}
.y21{bottom:176.442450px;}
.ybb{bottom:187.369950px;}
.y51{bottom:188.265900px;}
.y5e{bottom:188.271750px;}
.y58{bottom:191.689800px;}
.y20{bottom:195.042450px;}
.yc7{bottom:197.024400px;}
.ycd{bottom:197.030250px;}
.y120{bottom:198.642600px;}
.yba{bottom:203.866950px;}
.y75{bottom:212.722500px;}
.y1f{bottom:213.642450px;}
.y57{bottom:214.194300px;}
.y50{bottom:223.149900px;}
.y5d{bottom:223.155750px;}
.yc2{bottom:226.344450px;}
.yb9{bottom:226.371450px;}
.yc6{bottom:231.908400px;}
.ycc{bottom:231.914250px;}
.y1e{bottom:232.242450px;}
.y56{bottom:236.698800px;}
.y98{bottom:240.378000px;}
.yc1{bottom:248.848950px;}
.yb8{bottom:248.875950px;}
.y1d{bottom:250.842450px;}
.y11f{bottom:250.842600px;}
.y4f{bottom:258.033900px;}
.y5c{bottom:258.039750px;}
.y55{bottom:259.203300px;}
.y90{bottom:259.458600px;}
.y9e{bottom:259.464450px;}
.y97{bottom:262.882500px;}
.yc5{bottom:266.657400px;}
.ycb{bottom:266.663250px;}
.y1c{bottom:269.442450px;}
.y11e{bottom:269.442600px;}
.yc0{bottom:271.353450px;}
.yb7{bottom:271.380450px;}
.y54{bottom:281.707800px;}
.y96{bottom:285.387000px;}
.y45{bottom:288.042450px;}
.y11d{bottom:288.042600px;}
.y4e{bottom:292.917900px;}
.y5b{bottom:292.923750px;}
.ybf{bottom:293.857950px;}
.yb6{bottom:293.884950px;}
.y8f{bottom:294.342600px;}
.y9d{bottom:294.348450px;}
.yc4{bottom:301.541400px;}
.y53{bottom:304.212300px;}
.y1b{bottom:306.642450px;}
.y11c{bottom:306.642600px;}
.yf7{bottom:306.643500px;}
.y95{bottom:307.891500px;}
.y44{bottom:325.242450px;}
.y11b{bottom:325.242600px;}
.y4d{bottom:327.666900px;}
.y5a{bottom:327.672750px;}
.y8e{bottom:329.226600px;}
.y9c{bottom:329.232450px;}
.y94{bottom:330.396000px;}
.yf6{bottom:332.513250px;}
.yfd{bottom:332.518500px;}
.yec{bottom:335.238150px;}
.y43{bottom:343.842450px;}
.y11a{bottom:343.842600px;}
.y59{bottom:351.068250px;}
.y93{bottom:352.900500px;}
.y1a{bottom:355.841700px;}
.yeb{bottom:357.742650px;}
.y49{bottom:362.442450px;}
.y119{bottom:362.442600px;}
.y4c{bottom:362.550900px;}
.y8d{bottom:364.110600px;}
.y9b{bottom:364.116450px;}
.yc3{bottom:364.356900px;}
.yf5{bottom:367.397250px;}
.yfc{bottom:367.402500px;}
.y19{bottom:373.092450px;}
.y92{bottom:375.405000px;}
.yea{bottom:380.247150px;}
.y42{bottom:381.042450px;}
.y118{bottom:381.042600px;}
.y18{bottom:390.342450px;}
.yca{bottom:393.873000px;}
.yf0{bottom:396.730650px;}
.ye9{bottom:396.744150px;}
.y8c{bottom:398.859600px;}
.y9a{bottom:398.865450px;}
.y48{bottom:399.642450px;}
.y117{bottom:399.642600px;}
.yf4{bottom:402.281250px;}
.yfb{bottom:402.286500px;}
.yd0{bottom:418.242450px;}
.y116{bottom:418.242600px;}
.yef{bottom:419.235150px;}
.ye8{bottom:419.248650px;}
.y99{bottom:422.260950px;}
.y17{bottom:425.129700px;}
.y8b{bottom:433.743600px;}
.y41{bottom:436.842450px;}
.y115{bottom:436.842600px;}
.yf3{bottom:437.030250px;}
.yfa{bottom:437.035500px;}
.yee{bottom:441.739650px;}
.ye7{bottom:441.753150px;}
.y16{bottom:442.380450px;}
.y52{bottom:454.877250px;}
.y40{bottom:455.442450px;}
.y114{bottom:455.442600px;}
.yaf{bottom:456.411450px;}
.y15{bottom:459.631200px;}
.yed{bottom:464.244150px;}
.ye6{bottom:464.257650px;}
.yf2{bottom:471.914250px;}
.y3f{bottom:474.042450px;}
.y113{bottom:474.042600px;}
.y14{bottom:476.881950px;}
.yae{bottom:478.915950px;}
.y7c{bottom:492.523050px;}
.y89{bottom:492.536550px;}
.y3e{bottom:492.642450px;}
.y112{bottom:492.642600px;}
.y13{bottom:494.132700px;}
.y83{bottom:495.952050px;}
.ya5{bottom:497.974050px;}
.yb5{bottom:497.979900px;}
.yad{bottom:501.420450px;}
.y4b{bottom:501.938400px;}
.y3d{bottom:511.242450px;}
.y111{bottom:511.242600px;}
.y12{bottom:511.383450px;}
.yac{bottom:517.917450px;}
.y82{bottom:518.456550px;}
.y91{bottom:526.069950px;}
.y7b{bottom:527.407050px;}
.y88{bottom:527.420550px;}
.y11{bottom:528.634200px;}
.y3c{bottom:529.842450px;}
.y110{bottom:529.842600px;}
.ya4{bottom:532.858050px;}
.yb4{bottom:532.863900px;}
.yf1{bottom:534.729750px;}
.yab{bottom:540.421950px;}
.y81{bottom:540.961050px;}
.y10{bottom:545.884950px;}
.y3b{bottom:548.442450px;}
.y10f{bottom:548.442600px;}
.yaa{bottom:556.918950px;}
.y7a{bottom:562.291050px;}
.y87{bottom:562.304550px;}
.yf{bottom:563.135700px;}
.y80{bottom:563.465550px;}
.yf9{bottom:564.245550px;}
.y3a{bottom:567.042450px;}
.y10e{bottom:567.042600px;}
.ya3{bottom:567.742050px;}
.yb3{bottom:567.747900px;}
.y8a{bottom:573.131100px;}
.ya9{bottom:579.423450px;}
.ye{bottom:580.386450px;}
.yd7{bottom:582.756750px;}
.ye3{bottom:582.762750px;}
.y39{bottom:585.642450px;}
.y7f{bottom:585.970050px;}
.ya8{bottom:595.920450px;}
.y79{bottom:597.175050px;}
.y86{bottom:597.188550px;}
.yd{bottom:597.637200px;}
.ya2{bottom:602.626050px;}
.yb2{bottom:602.631900px;}
.y38{bottom:604.242450px;}
.y10d{bottom:604.242600px;}
.y7e{bottom:608.474550px;}
.yc{bottom:614.887950px;}
.ya7{bottom:618.424950px;}
.yd6{bottom:622.149750px;}
.ye2{bottom:622.155750px;}
.y37{bottom:622.842450px;}
.ydd{bottom:629.713650px;}
.y78{bottom:631.924050px;}
.y85{bottom:631.937550px;}
.yb{bottom:632.138700px;}
.ya1{bottom:637.375050px;}
.yb1{bottom:637.380900px;}
.y36{bottom:641.442450px;}
.ydc{bottom:646.210650px;}
.ya{bottom:649.389450px;}
.ye5{bottom:652.218150px;}
.y84{bottom:655.333050px;}
.yd5{bottom:657.033750px;}
.ye1{bottom:657.039750px;}
.y35{bottom:660.042450px;}
.y10c{bottom:660.042600px;}
.yb0{bottom:660.776400px;}
.y9{bottom:666.640200px;}
.y77{bottom:666.808050px;}
.ydb{bottom:668.715150px;}
.ya0{bottom:672.259050px;}
.y34{bottom:678.642450px;}
.y10b{bottom:678.642600px;}
.y8{bottom:683.890950px;}
.yda{bottom:685.212150px;}
.ye4{bottom:691.219650px;}
.yd4{bottom:691.917750px;}
.ye0{bottom:691.923750px;}
.y142{bottom:696.297600px;}
.y33{bottom:697.242450px;}
.y10a{bottom:697.242600px;}
.y7{bottom:701.141700px;}
.yd9{bottom:707.716650px;}
.y141{bottom:713.548350px;}
.y32{bottom:715.842450px;}
.y109{bottom:715.842600px;}
.y6{bottom:718.392450px;}
.yd3{bottom:726.666750px;}
.ydf{bottom:726.672750px;}
.y31{bottom:734.442450px;}
.y108{bottom:734.442600px;}
.y5{bottom:735.642450px;}
.yde{bottom:750.068250px;}
.y30{bottom:753.042450px;}
.y107{bottom:753.042600px;}
.y7d{bottom:759.134550px;}
.yd2{bottom:761.550750px;}
.ya6{bottom:764.585400px;}
.y137{bottom:765.281400px;}
.y140{bottom:765.287850px;}
.y4a{bottom:771.642450px;}
.y106{bottom:771.642600px;}
.y136{bottom:782.683500px;}
.y13f{bottom:782.689950px;}
.y4{bottom:788.445300px;}
.y2f{bottom:790.242450px;}
.y105{bottom:790.242600px;}
.y135{bottom:800.085600px;}
.y13e{bottom:800.092050px;}
.y76{bottom:806.195550px;}
.y47{bottom:808.842450px;}
.y104{bottom:808.842600px;}
.y9f{bottom:811.646550px;}
.y134{bottom:817.487700px;}
.y13d{bottom:817.494150px;}
.y46{bottom:827.442450px;}
.y103{bottom:827.442600px;}
.y133{bottom:834.889800px;}
.y13c{bottom:834.896250px;}
.y3{bottom:835.453200px;}
.y2e{bottom:846.042450px;}
.y102{bottom:846.042600px;}
.y132{bottom:852.291900px;}
.y13b{bottom:852.298350px;}
.yd8{bottom:853.877250px;}
.y29{bottom:857.391000px;}
.y2d{bottom:864.642450px;}
.y101{bottom:864.642600px;}
.y28{bottom:864.889050px;}
.y2{bottom:865.453200px;}
.y13a{bottom:869.681100px;}
.y131{bottom:869.694000px;}
.y2c{bottom:883.242450px;}
.y100{bottom:883.242600px;}
.y139{bottom:887.083200px;}
.y130{bottom:887.096100px;}
.y1{bottom:895.453200px;}
.yd1{bottom:900.938250px;}
.y2b{bottom:901.842450px;}
.yff{bottom:901.842600px;}
.y138{bottom:904.485300px;}
.y12f{bottom:904.498200px;}
.y2a{bottom:955.942350px;}
.h8{height:15.295800px;}
.h5{height:45.696000px;}
.h12{height:46.078800px;}
.h10{height:46.233600px;}
.h13{height:46.242000px;}
.h11{height:46.258800px;}
.h14{height:46.302000px;}
.h15{height:46.614000px;}
.h4{height:48.762000px;}
.hc{height:49.248000px;}
.hb{height:50.556000px;}
.h9{height:50.868000px;}
.ha{height:56.520000px;}
.h6{height:56.700000px;}
.h7{height:58.620000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.hd{height:354.354000px;}
.he{height:391.500000px;}
.hf{height:616.329000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:509.644500px;}
.w3{width:509.826000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x15{left:9.816150px;}
.x13{left:11.319000px;}
.x17{left:17.743050px;}
.x4{left:25.546350px;}
.x3{left:28.615500px;}
.x1{left:72.283500px;}
.x5{left:80.787450px;}
.x32{left:85.041600px;}
.x1b{left:88.677000px;}
.x2{left:93.537750px;}
.x12{left:96.532500px;}
.x1e{left:98.494200px;}
.x1c{left:99.997050px;}
.x6{left:102.042450px;}
.xb{left:106.348650px;}
.x9{left:107.851500px;}
.x29{left:108.994050px;}
.x28{left:110.496900px;}
.xd{left:114.271200px;}
.x2b{left:116.916600px;}
.x16{left:127.835550px;}
.x20{left:161.563650px;}
.xe{left:169.418100px;}
.x24{left:173.257650px;}
.x2c{left:176.084550px;}
.x26{left:185.982900px;}
.x30{left:188.809800px;}
.x1f{left:216.513600px;}
.x23{left:222.755400px;}
.xc{left:224.368050px;}
.x2a{left:225.582300px;}
.x27{left:273.838950px;}
.x31{left:276.665850px;}
.x14{left:334.923150px;}
.x18{left:337.274550px;}
.x19{left:345.185550px;}
.x34{left:353.406600px;}
.x35{left:361.917150px;}
.x33{left:366.164700px;}
.x36{left:374.675250px;}
.x1a{left:397.687050px;}
.x1d{left:423.601200px;}
.x21{left:425.947650px;}
.x2d{left:428.939550px;}
.xa{left:431.455650px;}
.xf{left:433.802100px;}
.x2e{left:436.445550px;}
.x10{left:441.717900px;}
.x22{left:486.370050px;}
.x25{left:490.380900px;}
.x2f{left:493.207800px;}
.x11{left:494.224500px;}
.x8{left:651.223500px;}
.x7{left:654.292650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-3.408000pt;}
.ls30{letter-spacing:-2.773333pt;}
.ls2f{letter-spacing:-2.640000pt;}
.ls2c{letter-spacing:-1.600000pt;}
.lsd{letter-spacing:-1.284267pt;}
.lse{letter-spacing:-0.533333pt;}
.ls21{letter-spacing:-0.336000pt;}
.ls1d{letter-spacing:-0.266667pt;}
.ls1b{letter-spacing:-0.213333pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.090667pt;}
.lsf{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:-0.045333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.019733pt;}
.ls14{letter-spacing:0.026667pt;}
.ls2{letter-spacing:0.045333pt;}
.ls1c{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.080000pt;}
.ls3{letter-spacing:0.090667pt;}
.ls5{letter-spacing:0.106667pt;}
.ls27{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.226667pt;}
.ls26{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.266667pt;}
.ls2d{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.317333pt;}
.ls11{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.346667pt;}
.ls13{letter-spacing:0.373333pt;}
.ls18{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.533333pt;}
.ls28{letter-spacing:0.549333pt;}
.ls17{letter-spacing:0.576000pt;}
.ls29{letter-spacing:0.586667pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.651200pt;}
.ls20{letter-spacing:0.693333pt;}
.ls16{letter-spacing:0.853333pt;}
.ls2b{letter-spacing:0.906667pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.066667pt;}
.ls23{letter-spacing:1.333333pt;}
.ls32{letter-spacing:1.344000pt;}
.ls31{letter-spacing:1.467733pt;}
.lsa{letter-spacing:2.109867pt;}
.ws0{word-spacing:-12.246400pt;}
.ws72{word-spacing:-11.604267pt;}
.ws62{word-spacing:-11.466667pt;}
.ws1{word-spacing:-11.253333pt;}
.ws49{word-spacing:-11.200000pt;}
.ws4a{word-spacing:-11.146667pt;}
.ws37{word-spacing:-11.040000pt;}
.ws63{word-spacing:-10.880000pt;}
.ws73{word-spacing:-9.861333pt;}
.ws7e{word-spacing:-9.746667pt;}
.ws61{word-spacing:-9.546667pt;}
.ws71{word-spacing:-9.013333pt;}
.ws70{word-spacing:-8.736000pt;}
.ws60{word-spacing:-7.968000pt;}
.ws6d{word-spacing:-1.866667pt;}
.ws34{word-spacing:-1.813333pt;}
.ws6a{word-spacing:-1.760000pt;}
.ws1a{word-spacing:-1.706667pt;}
.ws18{word-spacing:-1.653333pt;}
.ws2e{word-spacing:-1.600000pt;}
.ws25{word-spacing:-1.546667pt;}
.ws5{word-spacing:-1.496000pt;}
.ws6{word-spacing:-1.450667pt;}
.ws27{word-spacing:-1.440000pt;}
.ws4e{word-spacing:-1.386667pt;}
.wsd{word-spacing:-1.314667pt;}
.ws79{word-spacing:-1.226667pt;}
.ws59{word-spacing:-1.173333pt;}
.ws39{word-spacing:-1.120000pt;}
.ws8{word-spacing:-1.088000pt;}
.ws23{word-spacing:-1.066667pt;}
.ws48{word-spacing:-1.013333pt;}
.ws2c{word-spacing:-0.960000pt;}
.ws47{word-spacing:-0.906667pt;}
.ws35{word-spacing:-0.853333pt;}
.ws15{word-spacing:-0.746667pt;}
.ws17{word-spacing:-0.693333pt;}
.ws2{word-spacing:-0.670933pt;}
.ws5b{word-spacing:-0.640000pt;}
.ws65{word-spacing:-0.586667pt;}
.ws1e{word-spacing:-0.576000pt;}
.ws3d{word-spacing:-0.533333pt;}
.ws69{word-spacing:-0.373333pt;}
.wse{word-spacing:-0.362667pt;}
.ws58{word-spacing:-0.320000pt;}
.ws1b{word-spacing:-0.213333pt;}
.ws7d{word-spacing:-0.183467pt;}
.ws7{word-spacing:-0.181333pt;}
.ws42{word-spacing:-0.160000pt;}
.ws3e{word-spacing:-0.053333pt;}
.ws3{word-spacing:-0.039467pt;}
.ws4{word-spacing:0.000000pt;}
.ws30{word-spacing:0.053333pt;}
.ws4c{word-spacing:0.106667pt;}
.ws22{word-spacing:0.160000pt;}
.ws12{word-spacing:0.226667pt;}
.ws2f{word-spacing:0.266667pt;}
.ws9{word-spacing:0.272000pt;}
.ws5f{word-spacing:0.320000pt;}
.ws19{word-spacing:0.373333pt;}
.ws24{word-spacing:0.426667pt;}
.ws4f{word-spacing:0.480000pt;}
.ws5d{word-spacing:0.533333pt;}
.ws14{word-spacing:0.640000pt;}
.ws44{word-spacing:0.693333pt;}
.ws10{word-spacing:0.725333pt;}
.ws77{word-spacing:0.746667pt;}
.wsf{word-spacing:0.770667pt;}
.ws76{word-spacing:0.800000pt;}
.ws26{word-spacing:0.853333pt;}
.ws52{word-spacing:0.906667pt;}
.ws45{word-spacing:0.960000pt;}
.ws6c{word-spacing:1.013333pt;}
.ws40{word-spacing:1.066667pt;}
.ws3a{word-spacing:1.173333pt;}
.ws6f{word-spacing:1.226667pt;}
.ws11{word-spacing:1.284267pt;}
.ws2d{word-spacing:1.386667pt;}
.ws50{word-spacing:1.440000pt;}
.wsc{word-spacing:1.450667pt;}
.ws4d{word-spacing:1.546667pt;}
.ws43{word-spacing:1.600000pt;}
.ws29{word-spacing:1.653333pt;}
.ws13{word-spacing:1.706667pt;}
.ws41{word-spacing:1.760000pt;}
.ws56{word-spacing:1.813333pt;}
.ws32{word-spacing:1.866667pt;}
.wsb{word-spacing:1.904000pt;}
.ws5a{word-spacing:1.920000pt;}
.ws21{word-spacing:2.026667pt;}
.ws1d{word-spacing:2.133333pt;}
.ws1c{word-spacing:2.186667pt;}
.ws2a{word-spacing:2.240000pt;}
.ws53{word-spacing:2.293333pt;}
.ws75{word-spacing:2.346667pt;}
.ws20{word-spacing:2.400000pt;}
.ws66{word-spacing:2.560000pt;}
.ws2b{word-spacing:2.613333pt;}
.wsa{word-spacing:2.629333pt;}
.ws36{word-spacing:2.666667pt;}
.ws57{word-spacing:2.720000pt;}
.ws68{word-spacing:2.826667pt;}
.ws33{word-spacing:2.933333pt;}
.ws55{word-spacing:2.986667pt;}
.ws54{word-spacing:3.040000pt;}
.ws67{word-spacing:3.146667pt;}
.ws3b{word-spacing:3.306667pt;}
.ws3c{word-spacing:3.573333pt;}
.ws51{word-spacing:3.626667pt;}
.ws7a{word-spacing:3.680000pt;}
.ws5c{word-spacing:3.786667pt;}
.ws16{word-spacing:3.840000pt;}
.ws31{word-spacing:3.946667pt;}
.ws28{word-spacing:4.000000pt;}
.ws7c{word-spacing:4.266667pt;}
.ws3f{word-spacing:4.480000pt;}
.ws7b{word-spacing:4.906667pt;}
.ws78{word-spacing:5.386667pt;}
.ws46{word-spacing:5.653333pt;}
.ws6b{word-spacing:7.200000pt;}
.ws38{word-spacing:1119.936000pt;}
.ws74{word-spacing:1122.240000pt;}
.ws64{word-spacing:1123.056000pt;}
.ws7f{word-spacing:1289.328000pt;}
.ws5e{word-spacing:1290.864000pt;}
.ws1f{word-spacing:1291.248000pt;}
.ws6e{word-spacing:1291.440000pt;}
.ws4b{word-spacing:1292.064000pt;}
._c{margin-left:-1122.671680pt;}
._7{margin-left:-1120.337600pt;}
._8{margin-left:-1119.294933pt;}
._b{margin-left:-247.396800pt;}
._a{margin-left:-100.495467pt;}
._e{margin-left:-7.512747pt;}
._3{margin-left:-5.760000pt;}
._4{margin-left:-4.159467pt;}
._1{margin-left:-2.995200pt;}
._0{margin-left:-1.706667pt;}
._2{width:1.715200pt;}
._5{width:2.868000pt;}
._6{width:4.006080pt;}
._9{width:5.669333pt;}
._d{width:6.640000pt;}
.fs5{font-size:19.733333pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:45.866667pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y6e{bottom:-396.635733pt;}
.y66{bottom:-379.679733pt;}
.y74{bottom:-379.667733pt;}
.y6d{bottom:-376.631733pt;}
.y6c{bottom:-356.627733pt;}
.y65{bottom:-348.671733pt;}
.y73{bottom:-348.659733pt;}
.y6b{bottom:-336.623733pt;}
.y64{bottom:-317.663733pt;}
.y72{bottom:-317.651733pt;}
.y6a{bottom:-316.619733pt;}
.y69{bottom:-296.615733pt;}
.y63{bottom:-286.655733pt;}
.y71{bottom:-286.643733pt;}
.y68{bottom:-276.611733pt;}
.y62{bottom:-255.767733pt;}
.y70{bottom:-255.755733pt;}
.y6f{bottom:-234.959733pt;}
.y61{bottom:-224.759733pt;}
.y67{bottom:-142.691733pt;}
.y60{bottom:-100.859733pt;}
.yf8{bottom:-8.012800pt;}
.yfe{bottom:-8.008133pt;}
.y0{bottom:0.000000pt;}
.y12e{bottom:52.828533pt;}
.y127{bottom:52.836000pt;}
.y27{bottom:57.637733pt;}
.y12d{bottom:68.297067pt;}
.y126{bottom:68.304533pt;}
.y26{bottom:74.171067pt;}
.y12c{bottom:83.765600pt;}
.y125{bottom:83.771200pt;}
.y25{bottom:90.704400pt;}
.y12b{bottom:99.234133pt;}
.y124{bottom:99.236000pt;}
.y24{bottom:107.237733pt;}
.ybe{bottom:111.879067pt;}
.yc9{bottom:113.116800pt;}
.ycf{bottom:113.122000pt;}
.y12a{bottom:114.702667pt;}
.y123{bottom:114.704533pt;}
.y23{bottom:123.771067pt;}
.y122{bottom:130.165600pt;}
.y129{bottom:130.171200pt;}
.ybd{bottom:131.883067pt;}
.y22{bottom:140.304400pt;}
.yc8{bottom:144.124800pt;}
.yce{bottom:144.130000pt;}
.y121{bottom:145.634133pt;}
.y128{bottom:145.637867pt;}
.ybc{bottom:146.547067pt;}
.y5f{bottom:150.772000pt;}
.y21{bottom:156.837733pt;}
.ybb{bottom:166.551067pt;}
.y51{bottom:167.347467pt;}
.y5e{bottom:167.352667pt;}
.y58{bottom:170.390933pt;}
.y20{bottom:173.371067pt;}
.yc7{bottom:175.132800pt;}
.ycd{bottom:175.138000pt;}
.y120{bottom:176.571200pt;}
.yba{bottom:181.215067pt;}
.y75{bottom:189.086667pt;}
.y1f{bottom:189.904400pt;}
.y57{bottom:190.394933pt;}
.y50{bottom:198.355467pt;}
.y5d{bottom:198.360667pt;}
.yc2{bottom:201.195067pt;}
.yb9{bottom:201.219067pt;}
.yc6{bottom:206.140800pt;}
.ycc{bottom:206.146000pt;}
.y1e{bottom:206.437733pt;}
.y56{bottom:210.398933pt;}
.y98{bottom:213.669333pt;}
.yc1{bottom:221.199067pt;}
.yb8{bottom:221.223067pt;}
.y1d{bottom:222.971067pt;}
.y11f{bottom:222.971200pt;}
.y4f{bottom:229.363467pt;}
.y5c{bottom:229.368667pt;}
.y55{bottom:230.402933pt;}
.y90{bottom:230.629867pt;}
.y9e{bottom:230.635067pt;}
.y97{bottom:233.673333pt;}
.yc5{bottom:237.028800pt;}
.ycb{bottom:237.034000pt;}
.y1c{bottom:239.504400pt;}
.y11e{bottom:239.504533pt;}
.yc0{bottom:241.203067pt;}
.yb7{bottom:241.227067pt;}
.y54{bottom:250.406933pt;}
.y96{bottom:253.677333pt;}
.y45{bottom:256.037733pt;}
.y11d{bottom:256.037867pt;}
.y4e{bottom:260.371467pt;}
.y5b{bottom:260.376667pt;}
.ybf{bottom:261.207067pt;}
.yb6{bottom:261.231067pt;}
.y8f{bottom:261.637867pt;}
.y9d{bottom:261.643067pt;}
.yc4{bottom:268.036800pt;}
.y53{bottom:270.410933pt;}
.y1b{bottom:272.571067pt;}
.y11c{bottom:272.571200pt;}
.yf7{bottom:272.572000pt;}
.y95{bottom:273.681333pt;}
.y44{bottom:289.104400pt;}
.y11b{bottom:289.104533pt;}
.y4d{bottom:291.259467pt;}
.y5a{bottom:291.264667pt;}
.y8e{bottom:292.645867pt;}
.y9c{bottom:292.651067pt;}
.y94{bottom:293.685333pt;}
.yf6{bottom:295.567333pt;}
.yfd{bottom:295.572000pt;}
.yec{bottom:297.989467pt;}
.y43{bottom:305.637733pt;}
.y11a{bottom:305.637867pt;}
.y59{bottom:312.060667pt;}
.y93{bottom:313.689333pt;}
.y1a{bottom:316.303733pt;}
.yeb{bottom:317.993467pt;}
.y49{bottom:322.171067pt;}
.y119{bottom:322.171200pt;}
.y4c{bottom:322.267467pt;}
.y8d{bottom:323.653867pt;}
.y9b{bottom:323.659067pt;}
.yc3{bottom:323.872800pt;}
.yf5{bottom:326.575333pt;}
.yfc{bottom:326.580000pt;}
.y19{bottom:331.637733pt;}
.y92{bottom:333.693333pt;}
.yea{bottom:337.997467pt;}
.y42{bottom:338.704400pt;}
.y118{bottom:338.704533pt;}
.y18{bottom:346.971067pt;}
.yca{bottom:350.109333pt;}
.yf0{bottom:352.649467pt;}
.ye9{bottom:352.661467pt;}
.y8c{bottom:354.541867pt;}
.y9a{bottom:354.547067pt;}
.y48{bottom:355.237733pt;}
.y117{bottom:355.237867pt;}
.yf4{bottom:357.583333pt;}
.yfb{bottom:357.588000pt;}
.yd0{bottom:371.771067pt;}
.y116{bottom:371.771200pt;}
.yef{bottom:372.653467pt;}
.ye8{bottom:372.665467pt;}
.y99{bottom:375.343067pt;}
.y17{bottom:377.893067pt;}
.y8b{bottom:385.549867pt;}
.y41{bottom:388.304400pt;}
.y115{bottom:388.304533pt;}
.yf3{bottom:388.471333pt;}
.yfa{bottom:388.476000pt;}
.yee{bottom:392.657467pt;}
.ye7{bottom:392.669467pt;}
.y16{bottom:393.227067pt;}
.y52{bottom:404.335333pt;}
.y40{bottom:404.837733pt;}
.y114{bottom:404.837867pt;}
.yaf{bottom:405.699067pt;}
.y15{bottom:408.561067pt;}
.yed{bottom:412.661467pt;}
.ye6{bottom:412.673467pt;}
.yf2{bottom:419.479333pt;}
.y3f{bottom:421.371067pt;}
.y113{bottom:421.371200pt;}
.y14{bottom:423.895067pt;}
.yae{bottom:425.703067pt;}
.y7c{bottom:437.798267pt;}
.y89{bottom:437.810267pt;}
.y3e{bottom:437.904400pt;}
.y112{bottom:437.904533pt;}
.y13{bottom:439.229067pt;}
.y83{bottom:440.846267pt;}
.ya5{bottom:442.643600pt;}
.yb5{bottom:442.648800pt;}
.yad{bottom:445.707067pt;}
.y4b{bottom:446.167467pt;}
.y3d{bottom:454.437733pt;}
.y111{bottom:454.437867pt;}
.y12{bottom:454.563067pt;}
.yac{bottom:460.371067pt;}
.y82{bottom:460.850267pt;}
.y91{bottom:467.617733pt;}
.y7b{bottom:468.806267pt;}
.y88{bottom:468.818267pt;}
.y11{bottom:469.897067pt;}
.y3c{bottom:470.971067pt;}
.y110{bottom:470.971200pt;}
.ya4{bottom:473.651600pt;}
.yb4{bottom:473.656800pt;}
.yf1{bottom:475.315333pt;}
.yab{bottom:480.375067pt;}
.y81{bottom:480.854267pt;}
.y10{bottom:485.231067pt;}
.y3b{bottom:487.504400pt;}
.y10f{bottom:487.504533pt;}
.yaa{bottom:495.039067pt;}
.y7a{bottom:499.814267pt;}
.y87{bottom:499.826267pt;}
.yf{bottom:500.565067pt;}
.y80{bottom:500.858267pt;}
.yf9{bottom:501.551600pt;}
.y3a{bottom:504.037733pt;}
.y10e{bottom:504.037867pt;}
.ya3{bottom:504.659600pt;}
.yb3{bottom:504.664800pt;}
.y8a{bottom:509.449867pt;}
.ya9{bottom:515.043067pt;}
.ye{bottom:515.899067pt;}
.yd7{bottom:518.006000pt;}
.ye3{bottom:518.011333pt;}
.y39{bottom:520.571067pt;}
.y7f{bottom:520.862267pt;}
.ya8{bottom:529.707067pt;}
.y79{bottom:530.822267pt;}
.y86{bottom:530.834267pt;}
.yd{bottom:531.233067pt;}
.ya2{bottom:535.667600pt;}
.yb2{bottom:535.672800pt;}
.y38{bottom:537.104400pt;}
.y10d{bottom:537.104533pt;}
.y7e{bottom:540.866267pt;}
.yc{bottom:546.567067pt;}
.ya7{bottom:549.711067pt;}
.yd6{bottom:553.022000pt;}
.ye2{bottom:553.027333pt;}
.y37{bottom:553.637733pt;}
.ydd{bottom:559.745467pt;}
.y78{bottom:561.710267pt;}
.y85{bottom:561.722267pt;}
.yb{bottom:561.901067pt;}
.ya1{bottom:566.555600pt;}
.yb1{bottom:566.560800pt;}
.y36{bottom:570.171067pt;}
.ydc{bottom:574.409467pt;}
.ya{bottom:577.235067pt;}
.ye5{bottom:579.749467pt;}
.y84{bottom:582.518267pt;}
.yd5{bottom:584.030000pt;}
.ye1{bottom:584.035333pt;}
.y35{bottom:586.704400pt;}
.y10c{bottom:586.704533pt;}
.yb0{bottom:587.356800pt;}
.y9{bottom:592.569067pt;}
.y77{bottom:592.718267pt;}
.ydb{bottom:594.413467pt;}
.ya0{bottom:597.563600pt;}
.y34{bottom:603.237733pt;}
.y10b{bottom:603.237867pt;}
.y8{bottom:607.903067pt;}
.yda{bottom:609.077467pt;}
.ye4{bottom:614.417467pt;}
.yd4{bottom:615.038000pt;}
.ye0{bottom:615.043333pt;}
.y142{bottom:618.931200pt;}
.y33{bottom:619.771067pt;}
.y10a{bottom:619.771200pt;}
.y7{bottom:623.237067pt;}
.yd9{bottom:629.081467pt;}
.y141{bottom:634.265200pt;}
.y32{bottom:636.304400pt;}
.y109{bottom:636.304533pt;}
.y6{bottom:638.571067pt;}
.yd3{bottom:645.926000pt;}
.ydf{bottom:645.931333pt;}
.y31{bottom:652.837733pt;}
.y108{bottom:652.837867pt;}
.y5{bottom:653.904400pt;}
.yde{bottom:666.727333pt;}
.y30{bottom:669.371067pt;}
.y107{bottom:669.371200pt;}
.y7d{bottom:674.786267pt;}
.yd2{bottom:676.934000pt;}
.ya6{bottom:679.631467pt;}
.y137{bottom:680.250133pt;}
.y140{bottom:680.255867pt;}
.y4a{bottom:685.904400pt;}
.y106{bottom:685.904533pt;}
.y136{bottom:695.718667pt;}
.y13f{bottom:695.724400pt;}
.y4{bottom:700.840267pt;}
.y2f{bottom:702.437733pt;}
.y105{bottom:702.437867pt;}
.y135{bottom:711.187200pt;}
.y13e{bottom:711.192933pt;}
.y76{bottom:716.618267pt;}
.y47{bottom:718.971067pt;}
.y104{bottom:718.971200pt;}
.y9f{bottom:721.463600pt;}
.y134{bottom:726.655733pt;}
.y13d{bottom:726.661467pt;}
.y46{bottom:735.504400pt;}
.y103{bottom:735.504533pt;}
.y133{bottom:742.124267pt;}
.y13c{bottom:742.130000pt;}
.y3{bottom:742.625067pt;}
.y2e{bottom:752.037733pt;}
.y102{bottom:752.037867pt;}
.y132{bottom:757.592800pt;}
.y13b{bottom:757.598533pt;}
.yd8{bottom:759.002000pt;}
.y29{bottom:762.125333pt;}
.y2d{bottom:768.571067pt;}
.y101{bottom:768.571200pt;}
.y28{bottom:768.790267pt;}
.y2{bottom:769.291733pt;}
.y13a{bottom:773.049867pt;}
.y131{bottom:773.061333pt;}
.y2c{bottom:785.104400pt;}
.y100{bottom:785.104533pt;}
.y139{bottom:788.518400pt;}
.y130{bottom:788.529867pt;}
.y1{bottom:795.958400pt;}
.yd1{bottom:800.834000pt;}
.y2b{bottom:801.637733pt;}
.yff{bottom:801.637867pt;}
.y138{bottom:803.986933pt;}
.y12f{bottom:803.998400pt;}
.y2a{bottom:849.726533pt;}
.h8{height:13.596267pt;}
.h5{height:40.618667pt;}
.h12{height:40.958933pt;}
.h10{height:41.096533pt;}
.h13{height:41.104000pt;}
.h11{height:41.118933pt;}
.h14{height:41.157333pt;}
.h15{height:41.434667pt;}
.h4{height:43.344000pt;}
.hc{height:43.776000pt;}
.hb{height:44.938667pt;}
.h9{height:45.216000pt;}
.ha{height:50.240000pt;}
.h6{height:50.400000pt;}
.h7{height:52.106667pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.hd{height:314.981333pt;}
.he{height:348.000000pt;}
.hf{height:547.848000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:453.017333pt;}
.w3{width:453.178667pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x15{left:8.725467pt;}
.x13{left:10.061333pt;}
.x17{left:15.771600pt;}
.x4{left:22.707867pt;}
.x3{left:25.436000pt;}
.x1{left:64.252000pt;}
.x5{left:71.811067pt;}
.x32{left:75.592533pt;}
.x1b{left:78.824000pt;}
.x2{left:83.144667pt;}
.x12{left:85.806667pt;}
.x1e{left:87.550400pt;}
.x1c{left:88.886267pt;}
.x6{left:90.704400pt;}
.xb{left:94.532133pt;}
.x9{left:95.868000pt;}
.x29{left:96.883600pt;}
.x28{left:98.219467pt;}
.xd{left:101.574400pt;}
.x2b{left:103.925867pt;}
.x16{left:113.631600pt;}
.x20{left:143.612133pt;}
.xe{left:150.593867pt;}
.x24{left:154.006800pt;}
.x2c{left:156.519600pt;}
.x26{left:165.318133pt;}
.x30{left:167.830933pt;}
.x1f{left:192.456533pt;}
.x23{left:198.004800pt;}
.xc{left:199.438267pt;}
.x2a{left:200.517600pt;}
.x27{left:243.412400pt;}
.x31{left:245.925200pt;}
.x14{left:297.709467pt;}
.x18{left:299.799600pt;}
.x19{left:306.831600pt;}
.x34{left:314.139200pt;}
.x35{left:321.704133pt;}
.x33{left:325.479733pt;}
.x36{left:333.044667pt;}
.x1a{left:353.499600pt;}
.x1d{left:376.534400pt;}
.x21{left:378.620133pt;}
.x2d{left:381.279600pt;}
.xa{left:383.516133pt;}
.xf{left:385.601867pt;}
.x2e{left:387.951600pt;}
.x10{left:392.638133pt;}
.x22{left:432.328933pt;}
.x25{left:435.894133pt;}
.x2f{left:438.406933pt;}
.x11{left:439.310667pt;}
.x8{left:578.865333pt;}
.x7{left:581.593467pt;}
}




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