
    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_5068cadd557309c62c1d8c23.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_bf4b0f44bbf1daf6a538d666.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_bca68e10b78aa0f8b068da19.woff')format("woff");}.ff3{font-family:ff3;line-height:0.944402;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_90f80f6a91b946e7ffdb5ec1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_d59cd3012670cbbe690be798.woff')format("woff");}.ff5{font-family:ff5;line-height:1.046875;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_5ddb59b27902e9cb2c531b52.woff')format("woff");}.ff6{font-family:ff6;line-height:1.032715;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_7a87133ce69ad7f1416e78ba.woff')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_b6b0dd52a9b363c6fa3aa850.woff')format("woff");}.ff8{font-family:ff8;line-height:0.973633;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_e5299318f6e115d436b0ca54.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976111;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_891211d518378c66445ed59d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_4f48adff7307c01da10a8be9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.710938;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_93e5e595c34087899db29b83.woff')format("woff");}.ffc{font-family:ffc;line-height:0.936043;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_2d4aec2a2ecb0ee9a808cc6a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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_558a8837b8a4ec0d365b7413.woff')format("woff");}.ffe{font-family:ffe;line-height:0.976092;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v2{vertical-align:-21.978600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls2b{letter-spacing:-3.672000px;}
.ls11{letter-spacing:-3.540000px;}
.ls17{letter-spacing:-3.240000px;}
.ls35{letter-spacing:-1.560000px;}
.ls9{letter-spacing:-1.350000px;}
.ls36{letter-spacing:-1.320000px;}
.ls34{letter-spacing:-1.260000px;}
.ls22{letter-spacing:-1.200000px;}
.ls27{letter-spacing:-0.960000px;}
.lsc{letter-spacing:-0.918000px;}
.lse{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.840000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.691200px;}
.ls1d{letter-spacing:-0.660000px;}
.ls10{letter-spacing:-0.480000px;}
.ls2a{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.420000px;}
.ls4{letter-spacing:-0.408000px;}
.ls37{letter-spacing:-0.378000px;}
.ls14{letter-spacing:-0.360000px;}
.ls38{letter-spacing:-0.324000px;}
.ls5{letter-spacing:-0.306000px;}
.lsd{letter-spacing:-0.300000px;}
.ls28{letter-spacing:-0.240000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.007200px;}
.ls30{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.432000px;}
.ls19{letter-spacing:1.020000px;}
.ls29{letter-spacing:1.096200px;}
.ls2d{letter-spacing:1.680000px;}
.ls1f{letter-spacing:1.733400px;}
.ls24{letter-spacing:1.740000px;}
.ls21{letter-spacing:1.980000px;}
.ls23{letter-spacing:2.352000px;}
.ls33{letter-spacing:2.358000px;}
.ls31{letter-spacing:2.484000px;}
.ls20{letter-spacing:2.646000px;}
.lsa{letter-spacing:2.700000px;}
.ls7{letter-spacing:2.862000px;}
.ls12{letter-spacing:3.240000px;}
.ls25{letter-spacing:3.540000px;}
.lsb{letter-spacing:3.834000px;}
.ls2c{letter-spacing:4.374000px;}
.ls15{letter-spacing:4.401000px;}
.ls16{letter-spacing:4.811400px;}
.ls18{letter-spacing:6.210000px;}
.ls1a{letter-spacing:9.540000px;}
.ls32{letter-spacing:10.200000px;}
.ls2f{letter-spacing:10.800000px;}
.ls1e{letter-spacing:12.177000px;}
.ls2e{letter-spacing:18.540000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws55{word-spacing:-60.000000px;}
.ws28{word-spacing:-17.928000px;}
.ws34{word-spacing:-16.434000px;}
.ws36{word-spacing:-15.300000px;}
.ws88{word-spacing:-15.060000px;}
.ws7{word-spacing:-14.940000px;}
.ws51{word-spacing:-14.880000px;}
.ws39{word-spacing:-14.820000px;}
.ws29{word-spacing:-14.700000px;}
.ws79{word-spacing:-14.640000px;}
.ws66{word-spacing:-14.520000px;}
.ws7c{word-spacing:-14.460000px;}
.ws2a{word-spacing:-14.400000px;}
.ws3a{word-spacing:-14.340000px;}
.ws67{word-spacing:-14.280000px;}
.ws54{word-spacing:-14.220000px;}
.ws92{word-spacing:-13.740000px;}
.ws8e{word-spacing:-13.680000px;}
.ws4c{word-spacing:-13.446000px;}
.ws9a{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.230000px;}
.ws9c{word-spacing:-13.068000px;}
.ws76{word-spacing:-13.014000px;}
.ws5c{word-spacing:-12.528000px;}
.ws9{word-spacing:-12.366000px;}
.wsd{word-spacing:-12.150000px;}
.wsc{word-spacing:-12.042000px;}
.wsa{word-spacing:-11.448000px;}
.ws35{word-spacing:-11.400000px;}
.wsb{word-spacing:-11.232000px;}
.wse{word-spacing:-10.992000px;}
.ws5{word-spacing:-10.896000px;}
.ws26{word-spacing:-10.800000px;}
.ws27{word-spacing:-10.704000px;}
.ws4b{word-spacing:-10.206000px;}
.ws6{word-spacing:-9.892800px;}
.ws77{word-spacing:-9.774000px;}
.ws4{word-spacing:-9.618000px;}
.ws3{word-spacing:-9.542544px;}
.ws74{word-spacing:-6.156000px;}
.ws75{word-spacing:-6.048000px;}
.ws22{word-spacing:-3.834000px;}
.ws93{word-spacing:-3.540000px;}
.ws19{word-spacing:-2.862000px;}
.ws20{word-spacing:-2.700000px;}
.ws83{word-spacing:-2.592000px;}
.ws84{word-spacing:-2.538000px;}
.ws59{word-spacing:-2.520000px;}
.ws69{word-spacing:-2.280000px;}
.ws16{word-spacing:-2.268000px;}
.ws81{word-spacing:-1.944000px;}
.ws4a{word-spacing:-1.920000px;}
.ws6a{word-spacing:-1.800000px;}
.ws53{word-spacing:-1.782000px;}
.ws3b{word-spacing:-1.740000px;}
.ws78{word-spacing:-1.620000px;}
.ws7b{word-spacing:-1.512000px;}
.ws5d{word-spacing:-1.458000px;}
.ws1d{word-spacing:-1.404000px;}
.ws1c{word-spacing:-1.350000px;}
.ws8c{word-spacing:-1.320000px;}
.ws50{word-spacing:-1.020000px;}
.ws15{word-spacing:-0.918000px;}
.ws41{word-spacing:-0.660000px;}
.ws82{word-spacing:-0.648000px;}
.ws8f{word-spacing:-0.540000px;}
.ws45{word-spacing:-0.480000px;}
.ws1b{word-spacing:-0.432000px;}
.ws38{word-spacing:-0.420000px;}
.ws86{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.216000px;}
.ws44{word-spacing:-0.180000px;}
.wsf{word-spacing:0.000000px;}
.ws46{word-spacing:0.060000px;}
.ws6e{word-spacing:0.180000px;}
.ws1{word-spacing:0.204000px;}
.ws71{word-spacing:0.240000px;}
.ws32{word-spacing:0.300000px;}
.ws0{word-spacing:0.306000px;}
.ws9e{word-spacing:0.324000px;}
.ws9b{word-spacing:0.378000px;}
.ws68{word-spacing:0.420000px;}
.ws1a{word-spacing:0.432000px;}
.ws37{word-spacing:0.480000px;}
.ws87{word-spacing:0.486000px;}
.ws2b{word-spacing:0.660000px;}
.ws13{word-spacing:0.691200px;}
.ws57{word-spacing:0.720000px;}
.ws10{word-spacing:0.726000px;}
.ws24{word-spacing:0.756000px;}
.ws5a{word-spacing:0.840000px;}
.ws33{word-spacing:0.900000px;}
.ws25{word-spacing:0.918000px;}
.ws94{word-spacing:0.960000px;}
.ws73{word-spacing:1.080000px;}
.ws72{word-spacing:1.134000px;}
.ws65{word-spacing:1.200000px;}
.ws91{word-spacing:1.260000px;}
.ws99{word-spacing:1.320000px;}
.ws1e{word-spacing:1.350000px;}
.ws31{word-spacing:1.560000px;}
.ws61{word-spacing:1.674000px;}
.ws60{word-spacing:1.728000px;}
.ws6f{word-spacing:1.800000px;}
.ws63{word-spacing:1.920000px;}
.ws40{word-spacing:1.980000px;}
.ws2c{word-spacing:2.160000px;}
.ws6b{word-spacing:2.400000px;}
.ws89{word-spacing:2.484000px;}
.ws62{word-spacing:2.646000px;}
.ws1f{word-spacing:2.700000px;}
.ws2e{word-spacing:2.760000px;}
.ws17{word-spacing:2.862000px;}
.ws18{word-spacing:2.916000px;}
.ws47{word-spacing:2.940000px;}
.ws98{word-spacing:3.120000px;}
.ws3d{word-spacing:3.180000px;}
.ws3c{word-spacing:3.240000px;}
.ws9f{word-spacing:3.294000px;}
.ws43{word-spacing:3.480000px;}
.ws6c{word-spacing:3.600000px;}
.ws23{word-spacing:3.780000px;}
.ws21{word-spacing:3.834000px;}
.ws7d{word-spacing:3.840000px;}
.ws80{word-spacing:4.140000px;}
.ws7a{word-spacing:4.320000px;}
.ws49{word-spacing:4.374000px;}
.ws96{word-spacing:4.380000px;}
.ws48{word-spacing:4.428000px;}
.ws4e{word-spacing:4.752000px;}
.ws4d{word-spacing:4.860000px;}
.ws64{word-spacing:4.920000px;}
.ws6d{word-spacing:4.980000px;}
.ws30{word-spacing:5.280000px;}
.ws3e{word-spacing:5.520000px;}
.ws9d{word-spacing:5.562000px;}
.ws3f{word-spacing:5.580000px;}
.ws85{word-spacing:5.640000px;}
.ws42{word-spacing:5.880000px;}
.ws52{word-spacing:5.940000px;}
.ws97{word-spacing:6.000000px;}
.ws4f{word-spacing:6.156000px;}
.ws14{word-spacing:6.264000px;}
.ws8d{word-spacing:6.420000px;}
.ws95{word-spacing:7.260000px;}
.ws7f{word-spacing:7.320000px;}
.ws2f{word-spacing:7.680000px;}
.ws56{word-spacing:7.860000px;}
.ws90{word-spacing:8.760000px;}
.ws58{word-spacing:9.600000px;}
.ws8b{word-spacing:10.080000px;}
.ws8a{word-spacing:10.260000px;}
.ws2d{word-spacing:10.680000px;}
.ws70{word-spacing:11.580000px;}
.ws5f{word-spacing:12.096000px;}
.ws5e{word-spacing:12.258000px;}
.ws5b{word-spacing:16.320000px;}
.ws7e{word-spacing:18.720000px;}
.ws2{word-spacing:33.651135px;}
.ws11{word-spacing:36.384000px;}
._1f{margin-left:-14.520600px;}
._20{margin-left:-12.918600px;}
._4{margin-left:-11.094600px;}
._0{margin-left:-9.067800px;}
._7{margin-left:-7.490880px;}
._3{margin-left:-6.069000px;}
._b{margin-left:-4.619400px;}
._6{margin-left:-2.976000px;}
._1{margin-left:-1.499400px;}
._2{width:1.785000px;}
._a{width:3.240000px;}
._c{width:4.249800px;}
._1e{width:5.272200px;}
._9{width:6.274800px;}
._8{width:7.576200px;}
._d{width:8.840400px;}
._e{width:9.842400px;}
._10{width:11.619600px;}
._11{width:13.565400px;}
._21{width:15.036000px;}
._1a{width:16.500000px;}
._22{width:18.378000px;}
._f{width:24.894000px;}
._5{width:36.369600px;}
._23{width:43.090800px;}
._1d{width:57.840000px;}
._1b{width:61.080000px;}
._13{width:62.460000px;}
._17{width:64.200000px;}
._1c{width:66.900000px;}
._19{width:76.620000px;}
._18{width:79.035000px;}
._12{width:82.560000px;}
._16{width:84.240000px;}
._14{width:108.600000px;}
._15{width:117.360000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3e{bottom:71.212050px;}
.y3f{bottom:75.040050px;}
.y3d{bottom:80.698950px;}
.y128{bottom:112.790850px;}
.yf8{bottom:113.066850px;}
.y6d{bottom:113.078700px;}
.y98{bottom:113.078850px;}
.y13{bottom:117.205050px;}
.yd5{bottom:119.931750px;}
.yc3{bottom:120.491850px;}
.yae{bottom:120.984750px;}
.y12{bottom:131.601450px;}
.y127{bottom:133.796850px;}
.yf7{bottom:134.072850px;}
.y6c{bottom:134.078700px;}
.y97{bottom:134.078850px;}
.yd4{bottom:139.736250px;}
.yc2{bottom:140.296350px;}
.yad{bottom:140.789250px;}
.y11{bottom:145.997850px;}
.y126{bottom:154.802850px;}
.y6b{bottom:155.078700px;}
.y96{bottom:155.078850px;}
.yd3{bottom:159.540750px;}
.yc1{bottom:160.100850px;}
.y10{bottom:160.397850px;}
.yac{bottom:160.593750px;}
.y125{bottom:175.808850px;}
.y6a{bottom:176.078700px;}
.y95{bottom:176.078850px;}
.yf6{bottom:190.441050px;}
.y124{bottom:196.814850px;}
.y69{bottom:197.078700px;}
.y94{bottom:197.078850px;}
.y3a{bottom:203.467800px;}
.y123{bottom:217.820850px;}
.y68{bottom:218.078700px;}
.y93{bottom:218.078850px;}
.y39{bottom:221.463300px;}
.y122{bottom:238.826850px;}
.y67{bottom:239.078700px;}
.y92{bottom:239.078850px;}
.y38{bottom:239.458800px;}
.y29{bottom:239.827950px;}
.ye0{bottom:253.441050px;}
.y37{bottom:257.454300px;}
.y121{bottom:259.832850px;}
.y9f{bottom:260.078700px;}
.y91{bottom:260.078850px;}
.yf5{bottom:265.529400px;}
.y66{bottom:273.513450px;}
.y36{bottom:275.449800px;}
.y28{bottom:280.806900px;}
.y120{bottom:280.838850px;}
.y9e{bottom:281.078700px;}
.y90{bottom:281.078850px;}
.ybc{bottom:285.926100px;}
.yc6{bottom:289.858950px;}
.yd2{bottom:291.633450px;}
.y35{bottom:293.445300px;}
.y27{bottom:300.611400px;}
.y11f{bottom:301.844850px;}
.yf4{bottom:302.072850px;}
.y9d{bottom:302.078700px;}
.y8f{bottom:302.078850px;}
.ybb{bottom:305.730600px;}
.y65{bottom:305.811000px;}
.ya8{bottom:306.335550px;}
.yc5{bottom:309.663450px;}
.yd1{bottom:311.437950px;}
.y34{bottom:311.440800px;}
.y26{bottom:320.415900px;}
.y11e{bottom:322.850850px;}
.yf3{bottom:323.072850px;}
.y9c{bottom:323.078700px;}
.y8e{bottom:323.078850px;}
.yba{bottom:325.535100px;}
.ya7{bottom:326.140050px;}
.yb5{bottom:326.941800px;}
.y33{bottom:329.436300px;}
.yc4{bottom:329.467950px;}
.yd0{bottom:331.242450px;}
.y25{bottom:340.220400px;}
.yca{bottom:341.201700px;}
.ycd{bottom:343.650750px;}
.y11d{bottom:343.856850px;}
.yf2{bottom:344.072850px;}
.y9b{bottom:344.078700px;}
.y8d{bottom:344.078850px;}
.yb9{bottom:345.339600px;}
.ya6{bottom:345.944550px;}
.yb4{bottom:346.746300px;}
.y32{bottom:347.431800px;}
.ycf{bottom:351.046950px;}
.y24{bottom:360.024900px;}
.yc9{bottom:361.006200px;}
.ycc{bottom:363.455250px;}
.y11c{bottom:364.862850px;}
.yf1{bottom:365.072850px;}
.y64{bottom:365.078700px;}
.y8c{bottom:365.078850px;}
.y31{bottom:365.427300px;}
.ya5{bottom:365.749050px;}
.yb8{bottom:368.275350px;}
.yce{bottom:370.851450px;}
.y23{bottom:379.829400px;}
.yc8{bottom:380.810700px;}
.ycb{bottom:383.259750px;}
.y11b{bottom:385.868850px;}
.yf0{bottom:386.072850px;}
.y63{bottom:386.078700px;}
.yb3{bottom:386.078850px;}
.yb7{bottom:388.079850px;}
.ydb{bottom:395.275200px;}
.y22{bottom:399.633900px;}
.y30{bottom:400.432800px;}
.y8b{bottom:400.441050px;}
.yc7{bottom:400.615200px;}
.y11a{bottom:406.874850px;}
.y62{bottom:407.078700px;}
.yb2{bottom:407.078850px;}
.yb6{bottom:407.884350px;}
.ya1{bottom:408.269550px;}
.yda{bottom:415.079700px;}
.y2f{bottom:418.428300px;}
.y21{bottom:419.438400px;}
.y119{bottom:427.880850px;}
.ya0{bottom:428.074050px;}
.y61{bottom:428.078700px;}
.yb1{bottom:428.078850px;}
.yef{bottom:433.529400px;}
.yd9{bottom:434.884200px;}
.y2e{bottom:436.423800px;}
.y20{bottom:439.242900px;}
.y118{bottom:448.886850px;}
.y60{bottom:449.078700px;}
.y8a{bottom:449.078850px;}
.ya4{bottom:453.978450px;}
.y1f{bottom:459.047400px;}
.y117{bottom:469.892850px;}
.yee{bottom:470.048850px;}
.y5f{bottom:470.078700px;}
.y89{bottom:470.078850px;}
.y2d{bottom:471.429300px;}
.ya3{bottom:473.782950px;}
.y1e{bottom:478.851900px;}
.y2c{bottom:489.429300px;}
.y116{bottom:490.898850px;}
.yed{bottom:491.054850px;}
.y5e{bottom:491.078700px;}
.y88{bottom:491.078850px;}
.ya2{bottom:493.587450px;}
.y1d{bottom:498.656400px;}
.y2b{bottom:507.429300px;}
.y115{bottom:511.904850px;}
.yec{bottom:512.060850px;}
.y5d{bottom:512.078700px;}
.y87{bottom:512.078850px;}
.y1c{bottom:518.460900px;}
.y2a{bottom:525.433950px;}
.y114{bottom:532.910850px;}
.yeb{bottom:533.066850px;}
.y5c{bottom:533.078700px;}
.y86{bottom:533.078850px;}
.y1b{bottom:538.265400px;}
.ydf{bottom:545.208600px;}
.y113{bottom:553.916850px;}
.yea{bottom:554.072850px;}
.y5b{bottom:554.078700px;}
.yb0{bottom:554.078850px;}
.y1a{bottom:558.069900px;}
.y85{bottom:568.441050px;}
.y112{bottom:574.922850px;}
.y5a{bottom:575.078700px;}
.yaf{bottom:575.078850px;}
.y19{bottom:577.874400px;}
.yde{bottom:592.157400px;}
.y111{bottom:595.928850px;}
.y59{bottom:596.078700px;}
.yc0{bottom:596.078850px;}
.y18{bottom:597.678900px;}
.ye9{bottom:601.529400px;}
.ydd{bottom:611.961900px;}
.y110{bottom:616.934850px;}
.y58{bottom:617.078700px;}
.y84{bottom:617.078850px;}
.y17{bottom:617.483400px;}
.ydc{bottom:631.766400px;}
.y16{bottom:637.287900px;}
.y10f{bottom:637.940850px;}
.ye8{bottom:638.054850px;}
.y57{bottom:638.078700px;}
.y83{bottom:638.078850px;}
.yd8{bottom:649.395900px;}
.ybf{bottom:653.422800px;}
.y10e{bottom:658.946850px;}
.ye7{bottom:659.060850px;}
.y56{bottom:659.078700px;}
.y82{bottom:659.078850px;}
.y15{bottom:668.385300px;}
.yd7{bottom:669.200400px;}
.ybe{bottom:673.227300px;}
.y10d{bottom:679.952850px;}
.ye6{bottom:680.066850px;}
.y55{bottom:680.078700px;}
.y81{bottom:680.078850px;}
.yd6{bottom:689.004900px;}
.ybd{bottom:693.031800px;}
.y10c{bottom:700.958850px;}
.ye5{bottom:701.072850px;}
.y54{bottom:701.078700px;}
.y80{bottom:701.078850px;}
.y10b{bottom:721.964850px;}
.y53{bottom:722.078700px;}
.y7f{bottom:722.078850px;}
.y10a{bottom:742.970850px;}
.y52{bottom:743.078700px;}
.y7e{bottom:743.078850px;}
.yf{bottom:747.666900px;}
.ye4{bottom:748.529400px;}
.y109{bottom:763.976850px;}
.y51{bottom:764.078700px;}
.y7d{bottom:764.078850px;}
.ye{bottom:765.666900px;}
.yd{bottom:783.666900px;}
.y108{bottom:784.982850px;}
.y50{bottom:785.078700px;}
.y7c{bottom:785.078850px;}
.yc{bottom:801.666900px;}
.y107{bottom:805.988850px;}
.y4f{bottom:806.078700px;}
.y7b{bottom:806.078850px;}
.ye3{bottom:811.529250px;}
.yb{bottom:819.666900px;}
.y106{bottom:826.994850px;}
.y4e{bottom:827.078700px;}
.y7a{bottom:827.078850px;}
.ya{bottom:837.666900px;}
.y105{bottom:848.000850px;}
.y4d{bottom:848.078700px;}
.y79{bottom:848.078850px;}
.y9{bottom:855.666900px;}
.y104{bottom:869.006850px;}
.y4c{bottom:869.078700px;}
.y78{bottom:869.078850px;}
.y8{bottom:873.666900px;}
.ye2{bottom:874.529250px;}
.y103{bottom:890.012850px;}
.y4b{bottom:890.078700px;}
.y77{bottom:890.078850px;}
.y7{bottom:891.666900px;}
.y102{bottom:911.018850px;}
.y4a{bottom:911.078700px;}
.y76{bottom:911.078850px;}
.y6{bottom:926.674800px;}
.y101{bottom:932.024850px;}
.y49{bottom:932.078700px;}
.y75{bottom:932.078850px;}
.ye1{bottom:937.937100px;}
.y5{bottom:946.474800px;}
.y100{bottom:953.030850px;}
.y48{bottom:953.078700px;}
.yab{bottom:953.078850px;}
.y74{bottom:967.441050px;}
.yff{bottom:974.036850px;}
.y47{bottom:974.078700px;}
.yaa{bottom:974.078850px;}
.y4{bottom:983.288550px;}
.yfe{bottom:995.042850px;}
.y46{bottom:995.078700px;}
.ya9{bottom:995.078850px;}
.yfd{bottom:1016.048850px;}
.y45{bottom:1016.078700px;}
.y73{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yfc{bottom:1037.054850px;}
.y44{bottom:1037.078700px;}
.y72{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.yfb{bottom:1058.060850px;}
.y43{bottom:1058.078700px;}
.y71{bottom:1058.078850px;}
.yfa{bottom:1079.066850px;}
.y42{bottom:1079.078700px;}
.y70{bottom:1079.078850px;}
.y9a{bottom:1092.029250px;}
.yf9{bottom:1100.072850px;}
.y6f{bottom:1100.078850px;}
.y14{bottom:1109.815500px;}
.y41{bottom:1111.570800px;}
.y6e{bottom:1121.078850px;}
.y99{bottom:1124.326650px;}
.y3c{bottom:1159.189500px;}
.y3b{bottom:1178.689500px;}
.y40{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.hd{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:43.004883px;}
.hc{height:43.057617px;}
.hb{height:43.321289px;}
.ha{height:44.138672px;}
.h12{height:44.162672px;}
.h9{height:45.615234px;}
.h11{height:45.674913px;}
.hf{height:49.042969px;}
.h10{height:50.176758px;}
.h4{height:53.947266px;}
.he{height:54.738281px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.065500px;}
.xc{left:108.285450px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x4{left:300.189000px;}
.xb{left:317.199000px;}
.xf{left:351.219000px;}
.x3{left:396.050700px;}
.xd{left:570.174000px;}
.xe{left:621.204000px;}
.x9{left:648.915600px;}
.x8{left:675.639600px;}
.x10{left:800.519850px;}
.x1{left:807.081450px;}
@media print{
.v2{vertical-align:-19.536533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls2b{letter-spacing:-3.264000pt;}
.ls11{letter-spacing:-3.146667pt;}
.ls17{letter-spacing:-2.880000pt;}
.ls35{letter-spacing:-1.386667pt;}
.ls9{letter-spacing:-1.200000pt;}
.ls36{letter-spacing:-1.173333pt;}
.ls34{letter-spacing:-1.120000pt;}
.ls22{letter-spacing:-1.066667pt;}
.ls27{letter-spacing:-0.853333pt;}
.lsc{letter-spacing:-0.816000pt;}
.lse{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.746667pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.614400pt;}
.ls1d{letter-spacing:-0.586667pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls2a{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:-0.362667pt;}
.ls37{letter-spacing:-0.336000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls38{letter-spacing:-0.288000pt;}
.ls5{letter-spacing:-0.272000pt;}
.lsd{letter-spacing:-0.266667pt;}
.ls28{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.006400pt;}
.ls30{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.906667pt;}
.ls29{letter-spacing:0.974400pt;}
.ls2d{letter-spacing:1.493333pt;}
.ls1f{letter-spacing:1.540800pt;}
.ls24{letter-spacing:1.546667pt;}
.ls21{letter-spacing:1.760000pt;}
.ls23{letter-spacing:2.090667pt;}
.ls33{letter-spacing:2.096000pt;}
.ls31{letter-spacing:2.208000pt;}
.ls20{letter-spacing:2.352000pt;}
.lsa{letter-spacing:2.400000pt;}
.ls7{letter-spacing:2.544000pt;}
.ls12{letter-spacing:2.880000pt;}
.ls25{letter-spacing:3.146667pt;}
.lsb{letter-spacing:3.408000pt;}
.ls2c{letter-spacing:3.888000pt;}
.ls15{letter-spacing:3.912000pt;}
.ls16{letter-spacing:4.276800pt;}
.ls18{letter-spacing:5.520000pt;}
.ls1a{letter-spacing:8.480000pt;}
.ls32{letter-spacing:9.066667pt;}
.ls2f{letter-spacing:9.600000pt;}
.ls1e{letter-spacing:10.824000pt;}
.ls2e{letter-spacing:16.480000pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws55{word-spacing:-53.333333pt;}
.ws28{word-spacing:-15.936000pt;}
.ws34{word-spacing:-14.608000pt;}
.ws36{word-spacing:-13.600000pt;}
.ws88{word-spacing:-13.386667pt;}
.ws7{word-spacing:-13.280000pt;}
.ws51{word-spacing:-13.226667pt;}
.ws39{word-spacing:-13.173333pt;}
.ws29{word-spacing:-13.066667pt;}
.ws79{word-spacing:-13.013333pt;}
.ws66{word-spacing:-12.906667pt;}
.ws7c{word-spacing:-12.853333pt;}
.ws2a{word-spacing:-12.800000pt;}
.ws3a{word-spacing:-12.746667pt;}
.ws67{word-spacing:-12.693333pt;}
.ws54{word-spacing:-12.640000pt;}
.ws92{word-spacing:-12.213333pt;}
.ws8e{word-spacing:-12.160000pt;}
.ws4c{word-spacing:-11.952000pt;}
.ws9a{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.760000pt;}
.ws9c{word-spacing:-11.616000pt;}
.ws76{word-spacing:-11.568000pt;}
.ws5c{word-spacing:-11.136000pt;}
.ws9{word-spacing:-10.992000pt;}
.wsd{word-spacing:-10.800000pt;}
.wsc{word-spacing:-10.704000pt;}
.wsa{word-spacing:-10.176000pt;}
.ws35{word-spacing:-10.133333pt;}
.wsb{word-spacing:-9.984000pt;}
.wse{word-spacing:-9.770667pt;}
.ws5{word-spacing:-9.685333pt;}
.ws26{word-spacing:-9.600000pt;}
.ws27{word-spacing:-9.514667pt;}
.ws4b{word-spacing:-9.072000pt;}
.ws6{word-spacing:-8.793600pt;}
.ws77{word-spacing:-8.688000pt;}
.ws4{word-spacing:-8.549333pt;}
.ws3{word-spacing:-8.482261pt;}
.ws74{word-spacing:-5.472000pt;}
.ws75{word-spacing:-5.376000pt;}
.ws22{word-spacing:-3.408000pt;}
.ws93{word-spacing:-3.146667pt;}
.ws19{word-spacing:-2.544000pt;}
.ws20{word-spacing:-2.400000pt;}
.ws83{word-spacing:-2.304000pt;}
.ws84{word-spacing:-2.256000pt;}
.ws59{word-spacing:-2.240000pt;}
.ws69{word-spacing:-2.026667pt;}
.ws16{word-spacing:-2.016000pt;}
.ws81{word-spacing:-1.728000pt;}
.ws4a{word-spacing:-1.706667pt;}
.ws6a{word-spacing:-1.600000pt;}
.ws53{word-spacing:-1.584000pt;}
.ws3b{word-spacing:-1.546667pt;}
.ws78{word-spacing:-1.440000pt;}
.ws7b{word-spacing:-1.344000pt;}
.ws5d{word-spacing:-1.296000pt;}
.ws1d{word-spacing:-1.248000pt;}
.ws1c{word-spacing:-1.200000pt;}
.ws8c{word-spacing:-1.173333pt;}
.ws50{word-spacing:-0.906667pt;}
.ws15{word-spacing:-0.816000pt;}
.ws41{word-spacing:-0.586667pt;}
.ws82{word-spacing:-0.576000pt;}
.ws8f{word-spacing:-0.480000pt;}
.ws45{word-spacing:-0.426667pt;}
.ws1b{word-spacing:-0.384000pt;}
.ws38{word-spacing:-0.373333pt;}
.ws86{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.192000pt;}
.ws44{word-spacing:-0.160000pt;}
.wsf{word-spacing:0.000000pt;}
.ws46{word-spacing:0.053333pt;}
.ws6e{word-spacing:0.160000pt;}
.ws1{word-spacing:0.181333pt;}
.ws71{word-spacing:0.213333pt;}
.ws32{word-spacing:0.266667pt;}
.ws0{word-spacing:0.272000pt;}
.ws9e{word-spacing:0.288000pt;}
.ws9b{word-spacing:0.336000pt;}
.ws68{word-spacing:0.373333pt;}
.ws1a{word-spacing:0.384000pt;}
.ws37{word-spacing:0.426667pt;}
.ws87{word-spacing:0.432000pt;}
.ws2b{word-spacing:0.586667pt;}
.ws13{word-spacing:0.614400pt;}
.ws57{word-spacing:0.640000pt;}
.ws10{word-spacing:0.645333pt;}
.ws24{word-spacing:0.672000pt;}
.ws5a{word-spacing:0.746667pt;}
.ws33{word-spacing:0.800000pt;}
.ws25{word-spacing:0.816000pt;}
.ws94{word-spacing:0.853333pt;}
.ws73{word-spacing:0.960000pt;}
.ws72{word-spacing:1.008000pt;}
.ws65{word-spacing:1.066667pt;}
.ws91{word-spacing:1.120000pt;}
.ws99{word-spacing:1.173333pt;}
.ws1e{word-spacing:1.200000pt;}
.ws31{word-spacing:1.386667pt;}
.ws61{word-spacing:1.488000pt;}
.ws60{word-spacing:1.536000pt;}
.ws6f{word-spacing:1.600000pt;}
.ws63{word-spacing:1.706667pt;}
.ws40{word-spacing:1.760000pt;}
.ws2c{word-spacing:1.920000pt;}
.ws6b{word-spacing:2.133333pt;}
.ws89{word-spacing:2.208000pt;}
.ws62{word-spacing:2.352000pt;}
.ws1f{word-spacing:2.400000pt;}
.ws2e{word-spacing:2.453333pt;}
.ws17{word-spacing:2.544000pt;}
.ws18{word-spacing:2.592000pt;}
.ws47{word-spacing:2.613333pt;}
.ws98{word-spacing:2.773333pt;}
.ws3d{word-spacing:2.826667pt;}
.ws3c{word-spacing:2.880000pt;}
.ws9f{word-spacing:2.928000pt;}
.ws43{word-spacing:3.093333pt;}
.ws6c{word-spacing:3.200000pt;}
.ws23{word-spacing:3.360000pt;}
.ws21{word-spacing:3.408000pt;}
.ws7d{word-spacing:3.413333pt;}
.ws80{word-spacing:3.680000pt;}
.ws7a{word-spacing:3.840000pt;}
.ws49{word-spacing:3.888000pt;}
.ws96{word-spacing:3.893333pt;}
.ws48{word-spacing:3.936000pt;}
.ws4e{word-spacing:4.224000pt;}
.ws4d{word-spacing:4.320000pt;}
.ws64{word-spacing:4.373333pt;}
.ws6d{word-spacing:4.426667pt;}
.ws30{word-spacing:4.693333pt;}
.ws3e{word-spacing:4.906667pt;}
.ws9d{word-spacing:4.944000pt;}
.ws3f{word-spacing:4.960000pt;}
.ws85{word-spacing:5.013333pt;}
.ws42{word-spacing:5.226667pt;}
.ws52{word-spacing:5.280000pt;}
.ws97{word-spacing:5.333333pt;}
.ws4f{word-spacing:5.472000pt;}
.ws14{word-spacing:5.568000pt;}
.ws8d{word-spacing:5.706667pt;}
.ws95{word-spacing:6.453333pt;}
.ws7f{word-spacing:6.506667pt;}
.ws2f{word-spacing:6.826667pt;}
.ws56{word-spacing:6.986667pt;}
.ws90{word-spacing:7.786667pt;}
.ws58{word-spacing:8.533333pt;}
.ws8b{word-spacing:8.960000pt;}
.ws8a{word-spacing:9.120000pt;}
.ws2d{word-spacing:9.493333pt;}
.ws70{word-spacing:10.293333pt;}
.ws5f{word-spacing:10.752000pt;}
.ws5e{word-spacing:10.896000pt;}
.ws5b{word-spacing:14.506667pt;}
.ws7e{word-spacing:16.640000pt;}
.ws2{word-spacing:29.912120pt;}
.ws11{word-spacing:32.341333pt;}
._1f{margin-left:-12.907200pt;}
._20{margin-left:-11.483200pt;}
._4{margin-left:-9.861867pt;}
._0{margin-left:-8.060267pt;}
._7{margin-left:-6.658560pt;}
._3{margin-left:-5.394667pt;}
._b{margin-left:-4.106133pt;}
._6{margin-left:-2.645333pt;}
._1{margin-left:-1.332800pt;}
._2{width:1.586667pt;}
._a{width:2.880000pt;}
._c{width:3.777600pt;}
._1e{width:4.686400pt;}
._9{width:5.577600pt;}
._8{width:6.734400pt;}
._d{width:7.858133pt;}
._e{width:8.748800pt;}
._10{width:10.328533pt;}
._11{width:12.058133pt;}
._21{width:13.365333pt;}
._1a{width:14.666667pt;}
._22{width:16.336000pt;}
._f{width:22.128000pt;}
._5{width:32.328533pt;}
._23{width:38.302933pt;}
._1d{width:51.413333pt;}
._1b{width:54.293333pt;}
._13{width:55.520000pt;}
._17{width:57.066667pt;}
._1c{width:59.466667pt;}
._19{width:68.106667pt;}
._18{width:70.253333pt;}
._12{width:73.386667pt;}
._16{width:74.880000pt;}
._14{width:96.533333pt;}
._15{width:104.320000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3e{bottom:63.299600pt;}
.y3f{bottom:66.702267pt;}
.y3d{bottom:71.732400pt;}
.y128{bottom:100.258533pt;}
.yf8{bottom:100.503867pt;}
.y6d{bottom:100.514400pt;}
.y98{bottom:100.514533pt;}
.y13{bottom:104.182267pt;}
.yd5{bottom:106.606000pt;}
.yc3{bottom:107.103867pt;}
.yae{bottom:107.542000pt;}
.y12{bottom:116.979067pt;}
.y127{bottom:118.930533pt;}
.yf7{bottom:119.175867pt;}
.y6c{bottom:119.181067pt;}
.y97{bottom:119.181200pt;}
.yd4{bottom:124.210000pt;}
.yc2{bottom:124.707867pt;}
.yad{bottom:125.146000pt;}
.y11{bottom:129.775867pt;}
.y126{bottom:137.602533pt;}
.y6b{bottom:137.847733pt;}
.y96{bottom:137.847867pt;}
.yd3{bottom:141.814000pt;}
.yc1{bottom:142.311867pt;}
.y10{bottom:142.575867pt;}
.yac{bottom:142.750000pt;}
.y125{bottom:156.274533pt;}
.y6a{bottom:156.514400pt;}
.y95{bottom:156.514533pt;}
.yf6{bottom:169.280933pt;}
.y124{bottom:174.946533pt;}
.y69{bottom:175.181067pt;}
.y94{bottom:175.181200pt;}
.y3a{bottom:180.860267pt;}
.y123{bottom:193.618533pt;}
.y68{bottom:193.847733pt;}
.y93{bottom:193.847867pt;}
.y39{bottom:196.856267pt;}
.y122{bottom:212.290533pt;}
.y67{bottom:212.514400pt;}
.y92{bottom:212.514533pt;}
.y38{bottom:212.852267pt;}
.y29{bottom:213.180400pt;}
.ye0{bottom:225.280933pt;}
.y37{bottom:228.848267pt;}
.y121{bottom:230.962533pt;}
.y9f{bottom:231.181067pt;}
.y91{bottom:231.181200pt;}
.yf5{bottom:236.026133pt;}
.y66{bottom:243.123067pt;}
.y36{bottom:244.844267pt;}
.y28{bottom:249.606133pt;}
.y120{bottom:249.634533pt;}
.y9e{bottom:249.847733pt;}
.y90{bottom:249.847867pt;}
.ybc{bottom:254.156533pt;}
.yc6{bottom:257.652400pt;}
.yd2{bottom:259.229733pt;}
.y35{bottom:260.840267pt;}
.y27{bottom:267.210133pt;}
.y11f{bottom:268.306533pt;}
.yf4{bottom:268.509200pt;}
.y9d{bottom:268.514400pt;}
.y8f{bottom:268.514533pt;}
.ybb{bottom:271.760533pt;}
.y65{bottom:271.832000pt;}
.ya8{bottom:272.298267pt;}
.yc5{bottom:275.256400pt;}
.yd1{bottom:276.833733pt;}
.y34{bottom:276.836267pt;}
.y26{bottom:284.814133pt;}
.y11e{bottom:286.978533pt;}
.yf3{bottom:287.175867pt;}
.y9c{bottom:287.181067pt;}
.y8e{bottom:287.181200pt;}
.yba{bottom:289.364533pt;}
.ya7{bottom:289.902267pt;}
.yb5{bottom:290.614933pt;}
.y33{bottom:292.832267pt;}
.yc4{bottom:292.860400pt;}
.yd0{bottom:294.437733pt;}
.y25{bottom:302.418133pt;}
.yca{bottom:303.290400pt;}
.ycd{bottom:305.467333pt;}
.y11d{bottom:305.650533pt;}
.yf2{bottom:305.842533pt;}
.y9b{bottom:305.847733pt;}
.y8d{bottom:305.847867pt;}
.yb9{bottom:306.968533pt;}
.ya6{bottom:307.506267pt;}
.yb4{bottom:308.218933pt;}
.y32{bottom:308.828267pt;}
.ycf{bottom:312.041733pt;}
.y24{bottom:320.022133pt;}
.yc9{bottom:320.894400pt;}
.ycc{bottom:323.071333pt;}
.y11c{bottom:324.322533pt;}
.yf1{bottom:324.509200pt;}
.y64{bottom:324.514400pt;}
.y8c{bottom:324.514533pt;}
.y31{bottom:324.824267pt;}
.ya5{bottom:325.110267pt;}
.yb8{bottom:327.355867pt;}
.yce{bottom:329.645733pt;}
.y23{bottom:337.626133pt;}
.yc8{bottom:338.498400pt;}
.ycb{bottom:340.675333pt;}
.y11b{bottom:342.994533pt;}
.yf0{bottom:343.175867pt;}
.y63{bottom:343.181067pt;}
.yb3{bottom:343.181200pt;}
.yb7{bottom:344.959867pt;}
.ydb{bottom:351.355733pt;}
.y22{bottom:355.230133pt;}
.y30{bottom:355.940267pt;}
.y8b{bottom:355.947600pt;}
.yc7{bottom:356.102400pt;}
.y11a{bottom:361.666533pt;}
.y62{bottom:361.847733pt;}
.yb2{bottom:361.847867pt;}
.yb6{bottom:362.563867pt;}
.ya1{bottom:362.906267pt;}
.yda{bottom:368.959733pt;}
.y2f{bottom:371.936267pt;}
.y21{bottom:372.834133pt;}
.y119{bottom:380.338533pt;}
.ya0{bottom:380.510267pt;}
.y61{bottom:380.514400pt;}
.yb1{bottom:380.514533pt;}
.yef{bottom:385.359467pt;}
.yd9{bottom:386.563733pt;}
.y2e{bottom:387.932267pt;}
.y20{bottom:390.438133pt;}
.y118{bottom:399.010533pt;}
.y60{bottom:399.181067pt;}
.y8a{bottom:399.181200pt;}
.ya4{bottom:403.536400pt;}
.y1f{bottom:408.042133pt;}
.y117{bottom:417.682533pt;}
.yee{bottom:417.821200pt;}
.y5f{bottom:417.847733pt;}
.y89{bottom:417.847867pt;}
.y2d{bottom:419.048267pt;}
.ya3{bottom:421.140400pt;}
.y1e{bottom:425.646133pt;}
.y2c{bottom:435.048267pt;}
.y116{bottom:436.354533pt;}
.yed{bottom:436.493200pt;}
.y5e{bottom:436.514400pt;}
.y88{bottom:436.514533pt;}
.ya2{bottom:438.744400pt;}
.y1d{bottom:443.250133pt;}
.y2b{bottom:451.048267pt;}
.y115{bottom:455.026533pt;}
.yec{bottom:455.165200pt;}
.y5d{bottom:455.181067pt;}
.y87{bottom:455.181200pt;}
.y1c{bottom:460.854133pt;}
.y2a{bottom:467.052400pt;}
.y114{bottom:473.698533pt;}
.yeb{bottom:473.837200pt;}
.y5c{bottom:473.847733pt;}
.y86{bottom:473.847867pt;}
.y1b{bottom:478.458133pt;}
.ydf{bottom:484.629867pt;}
.y113{bottom:492.370533pt;}
.yea{bottom:492.509200pt;}
.y5b{bottom:492.514400pt;}
.yb0{bottom:492.514533pt;}
.y1a{bottom:496.062133pt;}
.y85{bottom:505.280933pt;}
.y112{bottom:511.042533pt;}
.y5a{bottom:511.181067pt;}
.yaf{bottom:511.181200pt;}
.y19{bottom:513.666133pt;}
.yde{bottom:526.362133pt;}
.y111{bottom:529.714533pt;}
.y59{bottom:529.847733pt;}
.yc0{bottom:529.847867pt;}
.y18{bottom:531.270133pt;}
.ye9{bottom:534.692800pt;}
.ydd{bottom:543.966133pt;}
.y110{bottom:548.386533pt;}
.y58{bottom:548.514400pt;}
.y84{bottom:548.514533pt;}
.y17{bottom:548.874133pt;}
.ydc{bottom:561.570133pt;}
.y16{bottom:566.478133pt;}
.y10f{bottom:567.058533pt;}
.ye8{bottom:567.159867pt;}
.y57{bottom:567.181067pt;}
.y83{bottom:567.181200pt;}
.yd8{bottom:577.240800pt;}
.ybf{bottom:580.820267pt;}
.y10e{bottom:585.730533pt;}
.ye7{bottom:585.831867pt;}
.y56{bottom:585.847733pt;}
.y82{bottom:585.847867pt;}
.y15{bottom:594.120267pt;}
.yd7{bottom:594.844800pt;}
.ybe{bottom:598.424267pt;}
.y10d{bottom:604.402533pt;}
.ye6{bottom:604.503867pt;}
.y55{bottom:604.514400pt;}
.y81{bottom:604.514533pt;}
.yd6{bottom:612.448800pt;}
.ybd{bottom:616.028267pt;}
.y10c{bottom:623.074533pt;}
.ye5{bottom:623.175867pt;}
.y54{bottom:623.181067pt;}
.y80{bottom:623.181200pt;}
.y10b{bottom:641.746533pt;}
.y53{bottom:641.847733pt;}
.y7f{bottom:641.847867pt;}
.y10a{bottom:660.418533pt;}
.y52{bottom:660.514400pt;}
.y7e{bottom:660.514533pt;}
.yf{bottom:664.592800pt;}
.ye4{bottom:665.359467pt;}
.y109{bottom:679.090533pt;}
.y51{bottom:679.181067pt;}
.y7d{bottom:679.181200pt;}
.ye{bottom:680.592800pt;}
.yd{bottom:696.592800pt;}
.y108{bottom:697.762533pt;}
.y50{bottom:697.847733pt;}
.y7c{bottom:697.847867pt;}
.yc{bottom:712.592800pt;}
.y107{bottom:716.434533pt;}
.y4f{bottom:716.514400pt;}
.y7b{bottom:716.514533pt;}
.ye3{bottom:721.359333pt;}
.yb{bottom:728.592800pt;}
.y106{bottom:735.106533pt;}
.y4e{bottom:735.181067pt;}
.y7a{bottom:735.181200pt;}
.ya{bottom:744.592800pt;}
.y105{bottom:753.778533pt;}
.y4d{bottom:753.847733pt;}
.y79{bottom:753.847867pt;}
.y9{bottom:760.592800pt;}
.y104{bottom:772.450533pt;}
.y4c{bottom:772.514400pt;}
.y78{bottom:772.514533pt;}
.y8{bottom:776.592800pt;}
.ye2{bottom:777.359333pt;}
.y103{bottom:791.122533pt;}
.y4b{bottom:791.181067pt;}
.y77{bottom:791.181200pt;}
.y7{bottom:792.592800pt;}
.y102{bottom:809.794533pt;}
.y4a{bottom:809.847733pt;}
.y76{bottom:809.847867pt;}
.y6{bottom:823.710933pt;}
.y101{bottom:828.466533pt;}
.y49{bottom:828.514400pt;}
.y75{bottom:828.514533pt;}
.ye1{bottom:833.721867pt;}
.y5{bottom:841.310933pt;}
.y100{bottom:847.138533pt;}
.y48{bottom:847.181067pt;}
.yab{bottom:847.181200pt;}
.y74{bottom:859.947600pt;}
.yff{bottom:865.810533pt;}
.y47{bottom:865.847733pt;}
.yaa{bottom:865.847867pt;}
.y4{bottom:874.034267pt;}
.yfe{bottom:884.482533pt;}
.y46{bottom:884.514400pt;}
.ya9{bottom:884.514533pt;}
.yfd{bottom:903.154533pt;}
.y45{bottom:903.181067pt;}
.y73{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yfc{bottom:921.826533pt;}
.y44{bottom:921.847733pt;}
.y72{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.yfb{bottom:940.498533pt;}
.y43{bottom:940.514400pt;}
.y71{bottom:940.514533pt;}
.yfa{bottom:959.170533pt;}
.y42{bottom:959.181067pt;}
.y70{bottom:959.181200pt;}
.y9a{bottom:970.692667pt;}
.yf9{bottom:977.842533pt;}
.y6f{bottom:977.847867pt;}
.y14{bottom:986.502667pt;}
.y41{bottom:988.062933pt;}
.y6e{bottom:996.514533pt;}
.y99{bottom:999.401467pt;}
.y3c{bottom:1030.390667pt;}
.y3b{bottom:1047.724000pt;}
.y40{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.hd{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:38.226562pt;}
.hc{height:38.273438pt;}
.hb{height:38.507812pt;}
.ha{height:39.234375pt;}
.h12{height:39.255708pt;}
.h9{height:40.546875pt;}
.h11{height:40.599923pt;}
.hf{height:43.593750pt;}
.h10{height:44.601562pt;}
.h4{height:47.953125pt;}
.he{height:48.656250pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.169333pt;}
.xc{left:96.253733pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x4{left:266.834667pt;}
.xb{left:281.954667pt;}
.xf{left:312.194667pt;}
.x3{left:352.045067pt;}
.xd{left:506.821333pt;}
.xe{left:552.181333pt;}
.x9{left:576.813867pt;}
.x8{left:600.568533pt;}
.x10{left:711.573200pt;}
.x1{left:717.405733pt;}
}




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