
    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_128182888756a85038fd986f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_fad6f5c2fc12209f005cb5fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_8e74f050e9cb99bf147ebfd8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104492;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_3c417af8c6c06c3b1a91e95e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_fe70996dcf225bfc540ac1da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_e9987b19934203a90e8a322d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115723;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_d3344cdf6bba731142a0e0f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_0c5bc66dc712680d8943f39e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.119629;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_29812e7d3b6b41b3412c81b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914551;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.640000px;}
.v2{vertical-align:-8.220000px;}
.v1{vertical-align:-6.780000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.v6{vertical-align:41.880000px;}
.v5{vertical-align:100.368000px;}
.ls31{letter-spacing:-1.440000px;}
.ls2f{letter-spacing:-0.367800px;}
.ls17{letter-spacing:-0.350400px;}
.ls18{letter-spacing:-0.341400px;}
.ls24{letter-spacing:-0.331800px;}
.ls4{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.259800px;}
.ls2d{letter-spacing:-0.229800px;}
.ls23{letter-spacing:-0.205800px;}
.lsb{letter-spacing:-0.178800px;}
.ls28{letter-spacing:-0.124200px;}
.ls1f{letter-spacing:-0.117600px;}
.ls16{letter-spacing:-0.037440px;}
.lsf{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.028080px;}
.ls15{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000011px;}
.lsa{letter-spacing:0.017280px;}
.ls2a{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.034560px;}
.ls3{letter-spacing:0.036000px;}
.ls29{letter-spacing:0.037440px;}
.ls30{letter-spacing:0.076200px;}
.ls5{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.301200px;}
.ls2c{letter-spacing:0.341400px;}
.ls0{letter-spacing:15.733440px;}
.ls22{letter-spacing:27.936000px;}
.ls21{letter-spacing:28.080000px;}
.ls20{letter-spacing:28.920000px;}
.ls2e{letter-spacing:30.240000px;}
.ls6{letter-spacing:97.560000px;}
.ls9{letter-spacing:99.525600px;}
.ls7{letter-spacing:99.576000px;}
.lse{letter-spacing:101.793600px;}
.lsd{letter-spacing:101.844000px;}
.ls25{letter-spacing:317.668128px;}
.ls11{letter-spacing:317.728080px;}
.ls1b{letter-spacing:317.788080px;}
.ls13{letter-spacing:327.069360px;}
.ls26{letter-spacing:327.129360px;}
.ls1a{letter-spacing:419.510640px;}
.ls1e{letter-spacing:437.634624px;}
.ls19{letter-spacing:437.690640px;}
.ls1d{letter-spacing:495.922560px;}
.ls27{letter-spacing:496.042560px;}
.ls12{letter-spacing:496.342560px;}
.ls1c{letter-spacing:549.322560px;}
.ls10{letter-spacing:549.622560px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(169,169,162),0 0.015em rgb(169,169,162),0.015em 0 rgb(169,169,162),0 -0.015em  rgb(169,169,162);}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(29,39,105),0 0.015em rgb(29,39,105),0.015em 0 rgb(29,39,105),0 -0.015em  rgb(29,39,105);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(169,169,162);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(29,39,105);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-67.900032px;}
.ws4f{word-spacing:-67.852080px;}
.ws36{word-spacing:-61.906032px;}
.ws3b{word-spacing:-61.858080px;}
.ws5{word-spacing:-49.918032px;}
.ws4{word-spacing:-49.870080px;}
.ws3{word-spacing:-46.081872px;}
.ws58{word-spacing:-30.064032px;}
.ws8{word-spacing:-30.024000px;}
.ws10{word-spacing:-29.988000px;}
.wsb{word-spacing:-28.422720px;}
.ws37{word-spacing:-28.216920px;}
.wsd{word-spacing:-26.621280px;}
.ws47{word-spacing:-23.760120px;}
.ws45{word-spacing:-23.759952px;}
.ws35{word-spacing:-23.458752px;}
.ws9{word-spacing:-23.418720px;}
.ws3a{word-spacing:-23.390640px;}
.wsc{word-spacing:-21.634560px;}
.ws1{word-spacing:-20.016000px;}
.ws68{word-spacing:-13.410720px;}
.ws7{word-spacing:-0.900000px;}
.ws6{word-spacing:-0.622848px;}
.ws67{word-spacing:-0.576000px;}
.ws4b{word-spacing:-0.084240px;}
.ws0{word-spacing:0.000000px;}
.ws61{word-spacing:0.144000px;}
.ws63{word-spacing:0.216000px;}
.ws2{word-spacing:0.588000px;}
.ws65{word-spacing:0.900000px;}
.ws60{word-spacing:1.076016px;}
.ws66{word-spacing:1.236000px;}
.ws59{word-spacing:1.272000px;}
.ws64{word-spacing:1.404000px;}
.ws50{word-spacing:2.304000px;}
.wse{word-spacing:2.664000px;}
.wsa{word-spacing:2.856000px;}
.ws43{word-spacing:3.685680px;}
.ws62{word-spacing:3.780000px;}
.ws38{word-spacing:117.690336px;}
.ws26{word-spacing:139.481760px;}
.ws24{word-spacing:146.681760px;}
.ws22{word-spacing:180.407280px;}
.ws12{word-spacing:182.553600px;}
.ws44{word-spacing:184.275648px;}
.ws3c{word-spacing:184.335648px;}
.ws13{word-spacing:184.490640px;}
.ws2b{word-spacing:184.550640px;}
.ws1a{word-spacing:194.387520px;}
.ws28{word-spacing:203.484000px;}
.ws2a{word-spacing:211.047600px;}
.ws11{word-spacing:211.227600px;}
.ws1c{word-spacing:218.343360px;}
.ws14{word-spacing:219.708480px;}
.ws18{word-spacing:224.626800px;}
.ws29{word-spacing:236.170560px;}
.ws1f{word-spacing:245.501760px;}
.ws25{word-spacing:274.666800px;}
.ws27{word-spacing:276.484800px;}
.ws23{word-spacing:290.838720px;}
.ws15{word-spacing:294.309360px;}
.ws2f{word-spacing:294.369360px;}
.ws1b{word-spacing:300.329760px;}
.ws32{word-spacing:303.582624px;}
.ws19{word-spacing:303.650640px;}
.ws2e{word-spacing:303.710640px;}
.ws1d{word-spacing:323.201280px;}
.ws20{word-spacing:335.212320px;}
.ws4e{word-spacing:382.897440px;}
.ws57{word-spacing:382.957440px;}
.ws5f{word-spacing:383.077440px;}
.ws5e{word-spacing:387.397440px;}
.ws49{word-spacing:411.697440px;}
.ws53{word-spacing:411.757440px;}
.ws5c{word-spacing:411.877440px;}
.ws4c{word-spacing:418.573920px;}
.ws55{word-spacing:418.753920px;}
.ws4a{word-spacing:430.417440px;}
.ws54{word-spacing:430.477440px;}
.ws5d{word-spacing:430.597440px;}
.ws4d{word-spacing:434.737440px;}
.ws56{word-spacing:434.797440px;}
.ws46{word-spacing:434.817792px;}
.ws51{word-spacing:434.877792px;}
.ws5a{word-spacing:434.917440px;}
.ws21{word-spacing:443.358720px;}
.ws48{word-spacing:464.977440px;}
.ws52{word-spacing:465.037440px;}
.ws5b{word-spacing:465.157440px;}
.ws40{word-spacing:465.498720px;}
.ws31{word-spacing:465.618720px;}
.ws33{word-spacing:465.659040px;}
.ws16{word-spacing:466.398720px;}
.ws42{word-spacing:467.658720px;}
.ws34{word-spacing:467.699040px;}
.ws3f{word-spacing:488.538720px;}
.ws3d{word-spacing:488.579040px;}
.ws2c{word-spacing:488.658720px;}
.ws30{word-spacing:491.343840px;}
.ws1e{word-spacing:491.643840px;}
.ws3e{word-spacing:495.543744px;}
.ws2d{word-spacing:495.543840px;}
.ws41{word-spacing:495.663840px;}
.ws17{word-spacing:495.963840px;}
.ws39{word-spacing:1070.581200px;}
._4{margin-left:-11.355120px;}
._1b{margin-left:-9.687600px;}
._1c{margin-left:-8.327088px;}
._1e{margin-left:-7.086240px;}
._9{margin-left:-6.048000px;}
._a{margin-left:-4.281984px;}
._8{margin-left:-3.132000px;}
._5{margin-left:-1.297728px;}
._2{width:1.080000px;}
._6{width:2.379168px;}
._0{width:4.320000px;}
._e{width:5.844096px;}
._1{width:7.203600px;}
._b{width:8.354880px;}
._1d{width:10.199520px;}
._3{width:27.711936px;}
._d{width:29.595168px;}
._7{width:31.297728px;}
._c{width:32.343456px;}
._10{width:60.781440px;}
._f{width:97.560000px;}
._14{width:317.390688px;}
._15{width:327.321648px;}
._12{width:339.695760px;}
._11{width:344.370720px;}
._17{width:353.646480px;}
._16{width:358.293792px;}
._1a{width:419.510640px;}
._19{width:428.870640px;}
._18{width:491.340000px;}
._13{width:495.912720px;}
.fca{color:rgb(191,137,0);}
.fc9{color:rgb(232,90,111);}
.fcc{color:rgb(30,147,203);}
.fc8{color:rgb(192,0,0);}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(128,118,103);}
.fc4{color:rgb(169,169,162);}
.fc3{color:rgb(29,39,105);}
.fcb{color:rgb(78,95,206);}
.fc2{color:rgb(230,51,42);}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(234,232,229);}
.fs5{font-size:41.760000px;}
.fs19{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:72.000000px;}
.fs18{font-size:72.144000px;}
.fs14{font-size:77.760000px;}
.fs12{font-size:84.240000px;}
.fs17{font-size:84.384000px;}
.fs7{font-size:95.760000px;}
.fs15{font-size:95.904000px;}
.fse{font-size:102.240000px;}
.fsd{font-size:102.384000px;}
.fsb{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs10{font-size:138.384000px;}
.fsf{font-size:149.760000px;}
.fs11{font-size:149.904000px;}
.fs13{font-size:185.760000px;}
.fs16{font-size:185.904000px;}
.fs8{font-size:203.760000px;}
.fs9{font-size:203.904000px;}
.fs2{font-size:216.000000px;}
.fs3{font-size:216.144000px;}
.fs0{font-size:288.000000px;}
.fs1{font-size:288.144000px;}
.fs6{font-size:959.880000px;}
.y0{bottom:0.000000px;}
.y106{bottom:18.216000px;}
.y8{bottom:19.764000px;}
.y109{bottom:54.936000px;}
.y108{bottom:69.336000px;}
.yb9{bottom:80.310000px;}
.y5d{bottom:80.460000px;}
.ya7{bottom:80.490000px;}
.y9e{bottom:80.535000px;}
.ybe{bottom:80.850000px;}
.yf2{bottom:81.000000px;}
.y107{bottom:83.736000px;}
.y97{bottom:84.852000px;}
.y8c{bottom:86.040000px;}
.y8b{bottom:86.148000px;}
.y92{bottom:91.008000px;}
.y93{bottom:91.404000px;}
.y8d{bottom:93.168000px;}
.y98{bottom:93.744000px;}
.y41{bottom:103.140000px;}
.ybd{bottom:108.180000px;}
.yd1{bottom:108.828000px;}
.yf1{bottom:108.900000px;}
.y96{bottom:110.052000px;}
.y95{bottom:111.240000px;}
.y8a{bottom:111.348000px;}
.y2e{bottom:119.196000px;}
.y25{bottom:123.984000px;}
.y79{bottom:133.920000px;}
.y16{bottom:134.820000px;}
.ybb{bottom:136.800000px;}
.yef{bottom:137.520000px;}
.yd0{bottom:141.228000px;}
.y6a{bottom:144.360000px;}
.yb0{bottom:147.348000px;}
.y1f{bottom:147.852000px;}
.y51{bottom:151.590000px;}
.y40{bottom:153.000000px;}
.yc0{bottom:157.755000px;}
.yda{bottom:162.360000px;}
.y86{bottom:163.155000px;}
.yf8{bottom:163.650000px;}
.yb8{bottom:165.420000px;}
.yed{bottom:166.140000px;}
.y15{bottom:167.220000px;}
.y78{bottom:168.015000px;}
.y24{bottom:169.020000px;}
.y69{bottom:176.370000px;}
.yaa{bottom:180.075000px;}
.y74{bottom:180.180000px;}
.y1e{bottom:180.255000px;}
.y65{bottom:180.360000px;}
.y3f{bottom:180.570000px;}
.y2d{bottom:183.990000px;}
.y4c{bottom:186.015000px;}
.ybc{bottom:188.490000px;}
.ybf{bottom:189.030000px;}
.y8f{bottom:189.105000px;}
.yf0{bottom:189.360000px;}
.yf3{bottom:189.900000px;}
.y85{bottom:190.695000px;}
.ya6{bottom:193.860000px;}
.yeb{bottom:194.760000px;}
.y77{bottom:200.880000px;}
.y104{bottom:202.500000px;}
.y90{bottom:203.220000px;}
.y91{bottom:203.760000px;}
.y8e{bottom:203.835000px;}
.y94{bottom:204.300000px;}
.y68{bottom:205.125000px;}
.ycf{bottom:206.025000px;}
.y3e{bottom:208.110000px;}
.ya9{bottom:208.695000px;}
.y4b{bottom:209.055000px;}
.y2c{bottom:216.390000px;}
.yba{bottom:217.110000px;}
.yee{bottom:217.980000px;}
.yb7{bottom:222.480000px;}
.ye9{bottom:223.380000px;}
.yc6{bottom:229.935000px;}
.y76{bottom:233.715000px;}
.y67{bottom:233.895000px;}
.y103{bottom:234.900000px;}
.y3d{bottom:235.650000px;}
.yce{bottom:238.470000px;}
.y1d{bottom:238.860000px;}
.y14{bottom:241.485000px;}
.ya8{bottom:245.730000px;}
.y84{bottom:245.775000px;}
.yd8{bottom:246.210000px;}
.yec{bottom:246.600000px;}
.y2f{bottom:248.835000px;}
.yff{bottom:249.225000px;}
.yb5{bottom:251.100000px;}
.ye6{bottom:252.000000px;}
.y4a{bottom:255.135000px;}
.y75{bottom:260.640000px;}
.y66{bottom:260.820000px;}
.y73{bottom:262.335000px;}
.y64{bottom:262.515000px;}
.y22{bottom:262.770000px;}
.y3c{bottom:263.190000px;}
.y1c{bottom:263.340000px;}
.ycd{bottom:270.870000px;}
.yad{bottom:272.445000px;}
.y83{bottom:273.345000px;}
.y13{bottom:273.885000px;}
.ya5{bottom:274.350000px;}
.yea{bottom:275.220000px;}
.y49{bottom:278.175000px;}
.yd7{bottom:278.610000px;}
.yb4{bottom:279.720000px;}
.ye4{bottom:280.620000px;}
.y2b{bottom:281.235000px;}
.yfe{bottom:281.625000px;}
.y1b{bottom:287.820000px;}
.y3b{bottom:290.730000px;}
.y72{bottom:290.955000px;}
.y63{bottom:291.135000px;}
.ya{bottom:294.660000px;}
.yc5{bottom:294.765000px;}
.yac{bottom:301.245000px;}
.y82{bottom:301.605000px;}
.ya4{bottom:302.970000px;}
.ycc{bottom:303.270000px;}
.ye8{bottom:303.840000px;}
.y89{bottom:305.250000px;}
.y12{bottom:306.285000px;}
.yb3{bottom:308.340000px;}
.ye2{bottom:309.240000px;}
.yd9{bottom:311.010000px;}
.y2a{bottom:313.635000px;}
.yfd{bottom:314.070000px;}
.y55{bottom:314.355000px;}
.yaf{bottom:315.795000px;}
.y3a{bottom:318.315000px;}
.y105{bottom:319.110000px;}
.y71{bottom:319.575000px;}
.y62{bottom:319.755000px;}
.y48{bottom:324.285000px;}
.y99{bottom:328.395000px;}
.y81{bottom:329.145000px;}
.yab{bottom:330.045000px;}
.y88{bottom:330.450000px;}
.ya3{bottom:331.590000px;}
.ye7{bottom:332.100000px;}
.yb6{bottom:332.130000px;}
.ye5{bottom:332.460000px;}
.ycb{bottom:335.670000px;}
.yb2{bottom:336.960000px;}
.ye0{bottom:337.860000px;}
.yd6{bottom:343.410000px;}
.y9{bottom:343.950000px;}
.yae{bottom:344.595000px;}
.y39{bottom:345.855000px;}
.y29{bottom:346.035000px;}
.y47{bottom:347.325000px;}
.y70{bottom:348.195000px;}
.y61{bottom:348.375000px;}
.y1a{bottom:349.350000px;}
.y87{bottom:355.680000px;}
.yf7{bottom:357.840000px;}
.yc4{bottom:359.565000px;}
.ya2{bottom:360.210000px;}
.ye3{bottom:361.080000px;}
.y50{bottom:364.965000px;}
.yb1{bottom:365.580000px;}
.y21{bottom:366.195000px;}
.yde{bottom:366.480000px;}
.y23{bottom:367.455000px;}
.yca{bottom:368.070000px;}
.y46{bottom:370.365000px;}
.y38{bottom:373.395000px;}
.yd5{bottom:375.840000px;}
.y11{bottom:376.590000px;}
.y4{bottom:376.740000px;}
.y6f{bottom:376.815000px;}
.y60{bottom:376.995000px;}
.y54{bottom:378.465000px;}
.yfc{bottom:378.870000px;}
.y19{bottom:379.980000px;}
.y6c{bottom:380.520000px;}
.y5c{bottom:380.700000px;}
.y80{bottom:383.505000px;}
.ya1{bottom:388.830000px;}
.ye1{bottom:389.700000px;}
.yf6{bottom:390.240000px;}
.yc3{bottom:391.965000px;}
.y45{bottom:393.405000px;}
.y9d{bottom:394.200000px;}
.ydc{bottom:395.100000px;}
.y4f{bottom:397.365000px;}
.yc9{bottom:400.500000px;}
.y37{bottom:400.935000px;}
.y6e{bottom:405.435000px;}
.y5f{bottom:405.615000px;}
.yd4{bottom:408.240000px;}
.y10{bottom:408.990000px;}
.y28{bottom:410.865000px;}
.yfb{bottom:411.270000px;}
.y53{bottom:411.585000px;}
.ya0{bottom:417.450000px;}
.ydf{bottom:418.320000px;}
.yf5{bottom:422.640000px;}
.y36{bottom:428.475000px;}
.yc8{bottom:432.900000px;}
.y6d{bottom:434.055000px;}
.y5e{bottom:434.235000px;}
.y18{bottom:434.880000px;}
.y3{bottom:435.060000px;}
.y7f{bottom:438.630000px;}
.y44{bottom:439.485000px;}
.yd3{bottom:440.640000px;}
.yf{bottom:441.390000px;}
.y27{bottom:443.265000px;}
.yfa{bottom:443.670000px;}
.y9f{bottom:446.115000px;}
.ydd{bottom:446.940000px;}
.yf4{bottom:455.040000px;}
.y102{bottom:456.480000px;}
.yc2{bottom:456.810000px;}
.y6b{bottom:460.980000px;}
.y5b{bottom:461.160000px;}
.y4e{bottom:462.210000px;}
.y43{bottom:462.525000px;}
.y20{bottom:464.580000px;}
.yc7{bottom:465.300000px;}
.y7e{bottom:466.170000px;}
.y17{bottom:467.280000px;}
.yd2{bottom:473.040000px;}
.ye{bottom:473.790000px;}
.y9c{bottom:474.735000px;}
.y9b{bottom:474.990000px;}
.ydb{bottom:475.590000px;}
.y26{bottom:475.665000px;}
.yf9{bottom:476.100000px;}
.y52{bottom:476.385000px;}
.y101{bottom:480.960000px;}
.yc1{bottom:489.210000px;}
.y7d{bottom:493.710000px;}
.y4d{bottom:494.610000px;}
.y2{bottom:500.070000px;}
.y9a{bottom:500.190000px;}
.y100{bottom:505.440000px;}
.yd{bottom:506.235000px;}
.y42{bottom:508.650000px;}
.y35{bottom:511.125000px;}
.y7{bottom:536.250000px;}
.y34{bottom:538.665000px;}
.y10a{bottom:550.110000px;}
.y33{bottom:566.205000px;}
.y7c{bottom:570.270000px;}
.yc{bottom:571.530000px;}
.y1{bottom:577.830000px;}
.y5a{bottom:579.165000px;}
.y57{bottom:580.425000px;}
.y6{bottom:590.250000px;}
.y32{bottom:593.745000px;}
.y5{bottom:608.250000px;}
.y7b{bottom:620.490000px;}
.y31{bottom:621.330000px;}
.yb{bottom:626.610000px;}
.y59{bottom:629.385000px;}
.y56{bottom:635.505000px;}
.y7a{bottom:670.710000px;}
.y58{bottom:679.650000px;}
.y30{bottom:693.150000px;}
.h6{height:43.554375px;}
.h26{height:50.312812px;}
.h5{height:62.327813px;}
.h22{height:63.879258px;}
.h1d{height:75.093750px;}
.h24{height:75.243937px;}
.h1e{height:75.519844px;}
.h17{height:81.101250px;}
.h21{height:85.699688px;}
.h18{height:85.847344px;}
.h15{height:87.859687px;}
.h1c{height:88.009875px;}
.h23{height:89.299687px;}
.h11{height:91.656562px;}
.he{height:96.820312px;}
.h25{height:96.949406px;}
.hd{height:97.716797px;}
.h8{height:99.874688px;}
.h19{height:100.024875px;}
.h10{height:106.633125px;}
.hf{height:106.783312px;}
.hc{height:112.640625px;}
.hb{height:112.790813px;}
.h13{height:125.275359px;}
.h20{height:129.739687px;}
.h12{height:135.573750px;}
.h14{height:135.704109px;}
.h16{height:168.163594px;}
.h1a{height:168.293953px;}
.h1b{height:176.580000px;}
.h9{height:184.458516px;}
.ha{height:184.588875px;}
.h1f{height:188.227688px;}
.h4{height:193.242023px;}
.h3{height:225.281250px;}
.h1{height:260.718750px;}
.h2{height:260.849109px;}
.h0{height:810.000000px;}
.h7{height:868.953867px;}
.w7{width:82.440000px;}
.w6{width:106.560000px;}
.w5{width:106.740000px;}
.w3{width:117.900000px;}
.w2{width:198.000000px;}
.w4{width:209.160000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1b{left:1.290000px;}
.x2e{left:5.655000px;}
.x2b{left:6.945000px;}
.x56{left:8.490000px;}
.x5f{left:10.290000px;}
.x24{left:11.310000px;}
.x58{left:44.850000px;}
.x2f{left:54.645000px;}
.x26{left:60.270000px;}
.x3c{left:80.279979px;}
.x3d{left:106.811979px;}
.x3{left:126.071979px;}
.xc{left:129.059979px;}
.x1{left:145.943979px;}
.x31{left:179.099979px;}
.x18{left:207.389979px;}
.x6e{left:212.939979px;}
.x4c{left:217.544979px;}
.x12{left:219.989979px;}
.x11{left:222.479979px;}
.x3b{left:226.649979px;}
.x61{left:239.504979px;}
.x7f{left:241.229979px;}
.x4d{left:242.744979px;}
.x13{left:253.829979px;}
.x17{left:256.499979px;}
.x15{left:258.449979px;}
.x6{left:260.789979px;}
.x7{left:262.544979px;}
.x16{left:271.439979px;}
.x70{left:274.754979px;}
.x8{left:282.029979px;}
.x7d{left:283.289979px;}
.x7b{left:292.754979px;}
.x10{left:294.629979px;}
.xd{left:337.934979px;}
.xb{left:358.589979px;}
.x32{left:366.329979px;}
.x33{left:390.629979px;}
.x22{left:398.264979px;}
.x27{left:399.344979px;}
.x1f{left:403.664979px;}
.x1d{left:404.744979px;}
.x20{left:405.824979px;}
.x21{left:407.624979px;}
.x1e{left:409.424979px;}
.x29{left:410.579979px;}
.x19{left:416.444979px;}
.x2c{left:428.579979px;}
.x60{left:443.624979px;}
.x50{left:455.549979px;}
.x45{left:460.469979px;}
.x51{left:468.974979px;}
.x37{left:471.674979px;}
.x48{left:480.989979px;}
.x49{left:483.329979px;}
.x54{left:489.494979px;}
.x5a{left:491.834979px;}
.xe{left:555.044979px;}
.x55{left:556.920000px;}
.x9{left:580.934979px;}
.x4{left:588.029979px;}
.x57{left:594.749979px;}
.x5{left:599.609979px;}
.x30{left:605.264979px;}
.x28{left:608.909979px;}
.x80{left:614.414979px;}
.x46{left:630.720000px;}
.x52{left:639.180000px;}
.x3a{left:666.284979px;}
.x41{left:668.054979px;}
.x43{left:709.124979px;}
.x5c{left:711.074979px;}
.x5b{left:712.874979px;}
.x44{left:719.204979px;}
.x59{left:722.594979px;}
.x2a{left:808.920000px;}
.x1a{left:814.860000px;}
.x40{left:826.889979px;}
.x6f{left:834.014979px;}
.x4a{left:839.700000px;}
.xa{left:843.404979px;}
.x5d{left:848.160000px;}
.x47{left:852.659979px;}
.x62{left:859.349979px;}
.x53{left:861.149979px;}
.x7e{left:877.469979px;}
.x65{left:879.869979px;}
.x69{left:882.209979px;}
.x4b{left:887.219979px;}
.x7c{left:889.559979px;}
.x5e{left:895.709979px;}
.x38{left:908.924979px;}
.x71{left:913.394979px;}
.x74{left:933.914979px;}
.x77{left:936.254979px;}
.x66{left:947.160000px;}
.x35{left:948.209979px;}
.x34{left:953.969979px;}
.x82{left:958.709979px;}
.x81{left:969.329979px;}
.x4f{left:971.564979px;}
.x67{left:985.139979px;}
.x4e{left:993.164979px;}
.x75{left:1001.160000px;}
.x23{left:1012.680000px;}
.x2d{left:1017.900000px;}
.x63{left:1029.420000px;}
.x1c{left:1031.369979px;}
.x2{left:1039.064979px;}
.xf{left:1047.314979px;}
.x42{left:1064.909979px;}
.x25{left:1065.929979px;}
.x72{left:1083.420000px;}
.x6b{left:1101.419979px;}
.x6a{left:1103.219979px;}
.x68{left:1112.969979px;}
.x36{left:1144.589979px;}
.x78{left:1155.449979px;}
.x76{left:1166.969979px;}
.x14{left:1177.529979px;}
.x39{left:1199.774979px;}
.x6c{left:1238.400000px;}
.x64{left:1251.539979px;}
.x6d{left:1286.099979px;}
.x79{left:1292.400000px;}
.x3e{left:1299.314979px;}
.x73{left:1305.569979px;}
.x3f{left:1314.074979px;}
.x7a{left:1340.129979px;}
@media print{
.v3{vertical-align:-21.013333pt;}
.v2{vertical-align:-7.306667pt;}
.v1{vertical-align:-6.026667pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.v6{vertical-align:37.226667pt;}
.v5{vertical-align:89.216000pt;}
.ls31{letter-spacing:-1.280000pt;}
.ls2f{letter-spacing:-0.326933pt;}
.ls17{letter-spacing:-0.311467pt;}
.ls18{letter-spacing:-0.303467pt;}
.ls24{letter-spacing:-0.294933pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.230933pt;}
.ls2d{letter-spacing:-0.204267pt;}
.ls23{letter-spacing:-0.182933pt;}
.lsb{letter-spacing:-0.158933pt;}
.ls28{letter-spacing:-0.110400pt;}
.ls1f{letter-spacing:-0.104533pt;}
.ls16{letter-spacing:-0.033280pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.024960pt;}
.ls15{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000010pt;}
.lsa{letter-spacing:0.015360pt;}
.ls2a{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.030720pt;}
.ls3{letter-spacing:0.032000pt;}
.ls29{letter-spacing:0.033280pt;}
.ls30{letter-spacing:0.067733pt;}
.ls5{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.267733pt;}
.ls2c{letter-spacing:0.303467pt;}
.ls0{letter-spacing:13.985280pt;}
.ls22{letter-spacing:24.832000pt;}
.ls21{letter-spacing:24.960000pt;}
.ls20{letter-spacing:25.706667pt;}
.ls2e{letter-spacing:26.880000pt;}
.ls6{letter-spacing:86.720000pt;}
.ls9{letter-spacing:88.467200pt;}
.ls7{letter-spacing:88.512000pt;}
.lse{letter-spacing:90.483200pt;}
.lsd{letter-spacing:90.528000pt;}
.ls25{letter-spacing:282.371669pt;}
.ls11{letter-spacing:282.424960pt;}
.ls1b{letter-spacing:282.478293pt;}
.ls13{letter-spacing:290.728320pt;}
.ls26{letter-spacing:290.781653pt;}
.ls1a{letter-spacing:372.898347pt;}
.ls1e{letter-spacing:389.008555pt;}
.ls19{letter-spacing:389.058347pt;}
.ls1d{letter-spacing:440.820053pt;}
.ls27{letter-spacing:440.926720pt;}
.ls12{letter-spacing:441.193387pt;}
.ls1c{letter-spacing:488.286720pt;}
.ls10{letter-spacing:488.553387pt;}
.wsf{word-spacing:-60.355584pt;}
.ws4f{word-spacing:-60.312960pt;}
.ws36{word-spacing:-55.027584pt;}
.ws3b{word-spacing:-54.984960pt;}
.ws5{word-spacing:-44.371584pt;}
.ws4{word-spacing:-44.328960pt;}
.ws3{word-spacing:-40.961664pt;}
.ws58{word-spacing:-26.723584pt;}
.ws8{word-spacing:-26.688000pt;}
.ws10{word-spacing:-26.656000pt;}
.wsb{word-spacing:-25.264640pt;}
.ws37{word-spacing:-25.081707pt;}
.wsd{word-spacing:-23.663360pt;}
.ws47{word-spacing:-21.120107pt;}
.ws45{word-spacing:-21.119957pt;}
.ws35{word-spacing:-20.852224pt;}
.ws9{word-spacing:-20.816640pt;}
.ws3a{word-spacing:-20.791680pt;}
.wsc{word-spacing:-19.230720pt;}
.ws1{word-spacing:-17.792000pt;}
.ws68{word-spacing:-11.920640pt;}
.ws7{word-spacing:-0.800000pt;}
.ws6{word-spacing:-0.553643pt;}
.ws67{word-spacing:-0.512000pt;}
.ws4b{word-spacing:-0.074880pt;}
.ws0{word-spacing:0.000000pt;}
.ws61{word-spacing:0.128000pt;}
.ws63{word-spacing:0.192000pt;}
.ws2{word-spacing:0.522667pt;}
.ws65{word-spacing:0.800000pt;}
.ws60{word-spacing:0.956459pt;}
.ws66{word-spacing:1.098667pt;}
.ws59{word-spacing:1.130667pt;}
.ws64{word-spacing:1.248000pt;}
.ws50{word-spacing:2.048000pt;}
.wse{word-spacing:2.368000pt;}
.wsa{word-spacing:2.538667pt;}
.ws43{word-spacing:3.276160pt;}
.ws62{word-spacing:3.360000pt;}
.ws38{word-spacing:104.613632pt;}
.ws26{word-spacing:123.983787pt;}
.ws24{word-spacing:130.383787pt;}
.ws22{word-spacing:160.362027pt;}
.ws12{word-spacing:162.269867pt;}
.ws44{word-spacing:163.800576pt;}
.ws3c{word-spacing:163.853909pt;}
.ws13{word-spacing:163.991680pt;}
.ws2b{word-spacing:164.045013pt;}
.ws1a{word-spacing:172.788907pt;}
.ws28{word-spacing:180.874667pt;}
.ws2a{word-spacing:187.597867pt;}
.ws11{word-spacing:187.757867pt;}
.ws1c{word-spacing:194.082987pt;}
.ws14{word-spacing:195.296427pt;}
.ws18{word-spacing:199.668267pt;}
.ws29{word-spacing:209.929387pt;}
.ws1f{word-spacing:218.223787pt;}
.ws25{word-spacing:244.148267pt;}
.ws27{word-spacing:245.764267pt;}
.ws23{word-spacing:258.523307pt;}
.ws15{word-spacing:261.608320pt;}
.ws2f{word-spacing:261.661653pt;}
.ws1b{word-spacing:266.959787pt;}
.ws32{word-spacing:269.851221pt;}
.ws19{word-spacing:269.911680pt;}
.ws2e{word-spacing:269.965013pt;}
.ws1d{word-spacing:287.290027pt;}
.ws20{word-spacing:297.966507pt;}
.ws4e{word-spacing:340.353280pt;}
.ws57{word-spacing:340.406613pt;}
.ws5f{word-spacing:340.513280pt;}
.ws5e{word-spacing:344.353280pt;}
.ws49{word-spacing:365.953280pt;}
.ws53{word-spacing:366.006613pt;}
.ws5c{word-spacing:366.113280pt;}
.ws4c{word-spacing:372.065707pt;}
.ws55{word-spacing:372.225707pt;}
.ws4a{word-spacing:382.593280pt;}
.ws54{word-spacing:382.646613pt;}
.ws5d{word-spacing:382.753280pt;}
.ws4d{word-spacing:386.433280pt;}
.ws56{word-spacing:386.486613pt;}
.ws46{word-spacing:386.504704pt;}
.ws51{word-spacing:386.558037pt;}
.ws5a{word-spacing:386.593280pt;}
.ws21{word-spacing:394.096640pt;}
.ws48{word-spacing:413.313280pt;}
.ws52{word-spacing:413.366613pt;}
.ws5b{word-spacing:413.473280pt;}
.ws40{word-spacing:413.776640pt;}
.ws31{word-spacing:413.883307pt;}
.ws33{word-spacing:413.919147pt;}
.ws16{word-spacing:414.576640pt;}
.ws42{word-spacing:415.696640pt;}
.ws34{word-spacing:415.732480pt;}
.ws3f{word-spacing:434.256640pt;}
.ws3d{word-spacing:434.292480pt;}
.ws2c{word-spacing:434.363307pt;}
.ws30{word-spacing:436.750080pt;}
.ws1e{word-spacing:437.016747pt;}
.ws3e{word-spacing:440.483328pt;}
.ws2d{word-spacing:440.483413pt;}
.ws41{word-spacing:440.590080pt;}
.ws17{word-spacing:440.856747pt;}
.ws39{word-spacing:951.627733pt;}
._4{margin-left:-10.093440pt;}
._1b{margin-left:-8.611200pt;}
._1c{margin-left:-7.401856pt;}
._1e{margin-left:-6.298880pt;}
._9{margin-left:-5.376000pt;}
._a{margin-left:-3.806208pt;}
._8{margin-left:-2.784000pt;}
._5{margin-left:-1.153536pt;}
._2{width:0.960000pt;}
._6{width:2.114816pt;}
._0{width:3.840000pt;}
._e{width:5.194752pt;}
._1{width:6.403200pt;}
._b{width:7.426560pt;}
._1d{width:9.066240pt;}
._3{width:24.632832pt;}
._d{width:26.306816pt;}
._7{width:27.820203pt;}
._c{width:28.749739pt;}
._10{width:54.027947pt;}
._f{width:86.720000pt;}
._14{width:282.125056pt;}
._15{width:290.952576pt;}
._12{width:301.951787pt;}
._11{width:306.107307pt;}
._17{width:314.352427pt;}
._16{width:318.483371pt;}
._1a{width:372.898347pt;}
._19{width:381.218347pt;}
._18{width:436.746667pt;}
._13{width:440.811307pt;}
.fs5{font-size:37.120000pt;}
.fs19{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:64.000000pt;}
.fs18{font-size:64.128000pt;}
.fs14{font-size:69.120000pt;}
.fs12{font-size:74.880000pt;}
.fs17{font-size:75.008000pt;}
.fs7{font-size:85.120000pt;}
.fs15{font-size:85.248000pt;}
.fse{font-size:90.880000pt;}
.fsd{font-size:91.008000pt;}
.fsb{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs10{font-size:123.008000pt;}
.fsf{font-size:133.120000pt;}
.fs11{font-size:133.248000pt;}
.fs13{font-size:165.120000pt;}
.fs16{font-size:165.248000pt;}
.fs8{font-size:181.120000pt;}
.fs9{font-size:181.248000pt;}
.fs2{font-size:192.000000pt;}
.fs3{font-size:192.128000pt;}
.fs0{font-size:256.000000pt;}
.fs1{font-size:256.128000pt;}
.fs6{font-size:853.226667pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:16.192000pt;}
.y8{bottom:17.568000pt;}
.y109{bottom:48.832000pt;}
.y108{bottom:61.632000pt;}
.yb9{bottom:71.386667pt;}
.y5d{bottom:71.520000pt;}
.ya7{bottom:71.546667pt;}
.y9e{bottom:71.586667pt;}
.ybe{bottom:71.866667pt;}
.yf2{bottom:72.000000pt;}
.y107{bottom:74.432000pt;}
.y97{bottom:75.424000pt;}
.y8c{bottom:76.480000pt;}
.y8b{bottom:76.576000pt;}
.y92{bottom:80.896000pt;}
.y93{bottom:81.248000pt;}
.y8d{bottom:82.816000pt;}
.y98{bottom:83.328000pt;}
.y41{bottom:91.680000pt;}
.ybd{bottom:96.160000pt;}
.yd1{bottom:96.736000pt;}
.yf1{bottom:96.800000pt;}
.y96{bottom:97.824000pt;}
.y95{bottom:98.880000pt;}
.y8a{bottom:98.976000pt;}
.y2e{bottom:105.952000pt;}
.y25{bottom:110.208000pt;}
.y79{bottom:119.040000pt;}
.y16{bottom:119.840000pt;}
.ybb{bottom:121.600000pt;}
.yef{bottom:122.240000pt;}
.yd0{bottom:125.536000pt;}
.y6a{bottom:128.320000pt;}
.yb0{bottom:130.976000pt;}
.y1f{bottom:131.424000pt;}
.y51{bottom:134.746667pt;}
.y40{bottom:136.000000pt;}
.yc0{bottom:140.226667pt;}
.yda{bottom:144.320000pt;}
.y86{bottom:145.026667pt;}
.yf8{bottom:145.466667pt;}
.yb8{bottom:147.040000pt;}
.yed{bottom:147.680000pt;}
.y15{bottom:148.640000pt;}
.y78{bottom:149.346667pt;}
.y24{bottom:150.240000pt;}
.y69{bottom:156.773333pt;}
.yaa{bottom:160.066667pt;}
.y74{bottom:160.160000pt;}
.y1e{bottom:160.226667pt;}
.y65{bottom:160.320000pt;}
.y3f{bottom:160.506667pt;}
.y2d{bottom:163.546667pt;}
.y4c{bottom:165.346667pt;}
.ybc{bottom:167.546667pt;}
.ybf{bottom:168.026667pt;}
.y8f{bottom:168.093333pt;}
.yf0{bottom:168.320000pt;}
.yf3{bottom:168.800000pt;}
.y85{bottom:169.506667pt;}
.ya6{bottom:172.320000pt;}
.yeb{bottom:173.120000pt;}
.y77{bottom:178.560000pt;}
.y104{bottom:180.000000pt;}
.y90{bottom:180.640000pt;}
.y91{bottom:181.120000pt;}
.y8e{bottom:181.186667pt;}
.y94{bottom:181.600000pt;}
.y68{bottom:182.333333pt;}
.ycf{bottom:183.133333pt;}
.y3e{bottom:184.986667pt;}
.ya9{bottom:185.506667pt;}
.y4b{bottom:185.826667pt;}
.y2c{bottom:192.346667pt;}
.yba{bottom:192.986667pt;}
.yee{bottom:193.760000pt;}
.yb7{bottom:197.760000pt;}
.ye9{bottom:198.560000pt;}
.yc6{bottom:204.386667pt;}
.y76{bottom:207.746667pt;}
.y67{bottom:207.906667pt;}
.y103{bottom:208.800000pt;}
.y3d{bottom:209.466667pt;}
.yce{bottom:211.973333pt;}
.y1d{bottom:212.320000pt;}
.y14{bottom:214.653333pt;}
.ya8{bottom:218.426667pt;}
.y84{bottom:218.466667pt;}
.yd8{bottom:218.853333pt;}
.yec{bottom:219.200000pt;}
.y2f{bottom:221.186667pt;}
.yff{bottom:221.533333pt;}
.yb5{bottom:223.200000pt;}
.ye6{bottom:224.000000pt;}
.y4a{bottom:226.786667pt;}
.y75{bottom:231.680000pt;}
.y66{bottom:231.840000pt;}
.y73{bottom:233.186667pt;}
.y64{bottom:233.346667pt;}
.y22{bottom:233.573333pt;}
.y3c{bottom:233.946667pt;}
.y1c{bottom:234.080000pt;}
.ycd{bottom:240.773333pt;}
.yad{bottom:242.173333pt;}
.y83{bottom:242.973333pt;}
.y13{bottom:243.453333pt;}
.ya5{bottom:243.866667pt;}
.yea{bottom:244.640000pt;}
.y49{bottom:247.266667pt;}
.yd7{bottom:247.653333pt;}
.yb4{bottom:248.640000pt;}
.ye4{bottom:249.440000pt;}
.y2b{bottom:249.986667pt;}
.yfe{bottom:250.333333pt;}
.y1b{bottom:255.840000pt;}
.y3b{bottom:258.426667pt;}
.y72{bottom:258.626667pt;}
.y63{bottom:258.786667pt;}
.ya{bottom:261.920000pt;}
.yc5{bottom:262.013333pt;}
.yac{bottom:267.773333pt;}
.y82{bottom:268.093333pt;}
.ya4{bottom:269.306667pt;}
.ycc{bottom:269.573333pt;}
.ye8{bottom:270.080000pt;}
.y89{bottom:271.333333pt;}
.y12{bottom:272.253333pt;}
.yb3{bottom:274.080000pt;}
.ye2{bottom:274.880000pt;}
.yd9{bottom:276.453333pt;}
.y2a{bottom:278.786667pt;}
.yfd{bottom:279.173333pt;}
.y55{bottom:279.426667pt;}
.yaf{bottom:280.706667pt;}
.y3a{bottom:282.946667pt;}
.y105{bottom:283.653333pt;}
.y71{bottom:284.066667pt;}
.y62{bottom:284.226667pt;}
.y48{bottom:288.253333pt;}
.y99{bottom:291.906667pt;}
.y81{bottom:292.573333pt;}
.yab{bottom:293.373333pt;}
.y88{bottom:293.733333pt;}
.ya3{bottom:294.746667pt;}
.ye7{bottom:295.200000pt;}
.yb6{bottom:295.226667pt;}
.ye5{bottom:295.520000pt;}
.ycb{bottom:298.373333pt;}
.yb2{bottom:299.520000pt;}
.ye0{bottom:300.320000pt;}
.yd6{bottom:305.253333pt;}
.y9{bottom:305.733333pt;}
.yae{bottom:306.306667pt;}
.y39{bottom:307.426667pt;}
.y29{bottom:307.586667pt;}
.y47{bottom:308.733333pt;}
.y70{bottom:309.506667pt;}
.y61{bottom:309.666667pt;}
.y1a{bottom:310.533333pt;}
.y87{bottom:316.160000pt;}
.yf7{bottom:318.080000pt;}
.yc4{bottom:319.613333pt;}
.ya2{bottom:320.186667pt;}
.ye3{bottom:320.960000pt;}
.y50{bottom:324.413333pt;}
.yb1{bottom:324.960000pt;}
.y21{bottom:325.506667pt;}
.yde{bottom:325.760000pt;}
.y23{bottom:326.626667pt;}
.yca{bottom:327.173333pt;}
.y46{bottom:329.213333pt;}
.y38{bottom:331.906667pt;}
.yd5{bottom:334.080000pt;}
.y11{bottom:334.746667pt;}
.y4{bottom:334.880000pt;}
.y6f{bottom:334.946667pt;}
.y60{bottom:335.106667pt;}
.y54{bottom:336.413333pt;}
.yfc{bottom:336.773333pt;}
.y19{bottom:337.760000pt;}
.y6c{bottom:338.240000pt;}
.y5c{bottom:338.400000pt;}
.y80{bottom:340.893333pt;}
.ya1{bottom:345.626667pt;}
.ye1{bottom:346.400000pt;}
.yf6{bottom:346.880000pt;}
.yc3{bottom:348.413333pt;}
.y45{bottom:349.693333pt;}
.y9d{bottom:350.400000pt;}
.ydc{bottom:351.200000pt;}
.y4f{bottom:353.213333pt;}
.yc9{bottom:356.000000pt;}
.y37{bottom:356.386667pt;}
.y6e{bottom:360.386667pt;}
.y5f{bottom:360.546667pt;}
.yd4{bottom:362.880000pt;}
.y10{bottom:363.546667pt;}
.y28{bottom:365.213333pt;}
.yfb{bottom:365.573333pt;}
.y53{bottom:365.853333pt;}
.ya0{bottom:371.066667pt;}
.ydf{bottom:371.840000pt;}
.yf5{bottom:375.680000pt;}
.y36{bottom:380.866667pt;}
.yc8{bottom:384.800000pt;}
.y6d{bottom:385.826667pt;}
.y5e{bottom:385.986667pt;}
.y18{bottom:386.560000pt;}
.y3{bottom:386.720000pt;}
.y7f{bottom:389.893333pt;}
.y44{bottom:390.653333pt;}
.yd3{bottom:391.680000pt;}
.yf{bottom:392.346667pt;}
.y27{bottom:394.013333pt;}
.yfa{bottom:394.373333pt;}
.y9f{bottom:396.546667pt;}
.ydd{bottom:397.280000pt;}
.yf4{bottom:404.480000pt;}
.y102{bottom:405.760000pt;}
.yc2{bottom:406.053333pt;}
.y6b{bottom:409.760000pt;}
.y5b{bottom:409.920000pt;}
.y4e{bottom:410.853333pt;}
.y43{bottom:411.133333pt;}
.y20{bottom:412.960000pt;}
.yc7{bottom:413.600000pt;}
.y7e{bottom:414.373333pt;}
.y17{bottom:415.360000pt;}
.yd2{bottom:420.480000pt;}
.ye{bottom:421.146667pt;}
.y9c{bottom:421.986667pt;}
.y9b{bottom:422.213333pt;}
.ydb{bottom:422.746667pt;}
.y26{bottom:422.813333pt;}
.yf9{bottom:423.200000pt;}
.y52{bottom:423.453333pt;}
.y101{bottom:427.520000pt;}
.yc1{bottom:434.853333pt;}
.y7d{bottom:438.853333pt;}
.y4d{bottom:439.653333pt;}
.y2{bottom:444.506667pt;}
.y9a{bottom:444.613333pt;}
.y100{bottom:449.280000pt;}
.yd{bottom:449.986667pt;}
.y42{bottom:452.133333pt;}
.y35{bottom:454.333333pt;}
.y7{bottom:476.666667pt;}
.y34{bottom:478.813333pt;}
.y10a{bottom:488.986667pt;}
.y33{bottom:503.293333pt;}
.y7c{bottom:506.906667pt;}
.yc{bottom:508.026667pt;}
.y1{bottom:513.626667pt;}
.y5a{bottom:514.813333pt;}
.y57{bottom:515.933333pt;}
.y6{bottom:524.666667pt;}
.y32{bottom:527.773333pt;}
.y5{bottom:540.666667pt;}
.y7b{bottom:551.546667pt;}
.y31{bottom:552.293333pt;}
.yb{bottom:556.986667pt;}
.y59{bottom:559.453333pt;}
.y56{bottom:564.893333pt;}
.y7a{bottom:596.186667pt;}
.y58{bottom:604.133333pt;}
.y30{bottom:616.133333pt;}
.h6{height:38.715000pt;}
.h26{height:44.722500pt;}
.h5{height:55.402500pt;}
.h22{height:56.781562pt;}
.h1d{height:66.750000pt;}
.h24{height:66.883500pt;}
.h1e{height:67.128750pt;}
.h17{height:72.090000pt;}
.h21{height:76.177500pt;}
.h18{height:76.308750pt;}
.h15{height:78.097500pt;}
.h1c{height:78.231000pt;}
.h23{height:79.377500pt;}
.h11{height:81.472500pt;}
.he{height:86.062500pt;}
.h25{height:86.177250pt;}
.hd{height:86.859375pt;}
.h8{height:88.777500pt;}
.h19{height:88.911000pt;}
.h10{height:94.785000pt;}
.hf{height:94.918500pt;}
.hc{height:100.125000pt;}
.hb{height:100.258500pt;}
.h13{height:111.355875pt;}
.h20{height:115.324167pt;}
.h12{height:120.510000pt;}
.h14{height:120.625875pt;}
.h16{height:149.478750pt;}
.h1a{height:149.594625pt;}
.h1b{height:156.960000pt;}
.h9{height:163.963125pt;}
.ha{height:164.079000pt;}
.h1f{height:167.313500pt;}
.h4{height:171.770687pt;}
.h3{height:200.250000pt;}
.h1{height:231.750000pt;}
.h2{height:231.865875pt;}
.h0{height:720.000000pt;}
.h7{height:772.403438pt;}
.w7{width:73.280000pt;}
.w6{width:94.720000pt;}
.w5{width:94.880000pt;}
.w3{width:104.800000pt;}
.w2{width:176.000000pt;}
.w4{width:185.920000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:1.146667pt;}
.x2e{left:5.026667pt;}
.x2b{left:6.173333pt;}
.x56{left:7.546667pt;}
.x5f{left:9.146667pt;}
.x24{left:10.053333pt;}
.x58{left:39.866667pt;}
.x2f{left:48.573333pt;}
.x26{left:53.573333pt;}
.x3c{left:71.359981pt;}
.x3d{left:94.943981pt;}
.x3{left:112.063981pt;}
.xc{left:114.719981pt;}
.x1{left:129.727981pt;}
.x31{left:159.199981pt;}
.x18{left:184.346648pt;}
.x6e{left:189.279981pt;}
.x4c{left:193.373314pt;}
.x12{left:195.546648pt;}
.x11{left:197.759981pt;}
.x3b{left:201.466648pt;}
.x61{left:212.893314pt;}
.x7f{left:214.426648pt;}
.x4d{left:215.773314pt;}
.x13{left:225.626648pt;}
.x17{left:227.999981pt;}
.x15{left:229.733314pt;}
.x6{left:231.813314pt;}
.x7{left:233.373314pt;}
.x16{left:241.279981pt;}
.x70{left:244.226648pt;}
.x8{left:250.693314pt;}
.x7d{left:251.813314pt;}
.x7b{left:260.226648pt;}
.x10{left:261.893314pt;}
.xd{left:300.386648pt;}
.xb{left:318.746648pt;}
.x32{left:325.626648pt;}
.x33{left:347.226648pt;}
.x22{left:354.013314pt;}
.x27{left:354.973314pt;}
.x1f{left:358.813314pt;}
.x1d{left:359.773314pt;}
.x20{left:360.733314pt;}
.x21{left:362.333314pt;}
.x1e{left:363.933314pt;}
.x29{left:364.959981pt;}
.x19{left:370.173314pt;}
.x2c{left:380.959981pt;}
.x60{left:394.333314pt;}
.x50{left:404.933314pt;}
.x45{left:409.306648pt;}
.x51{left:416.866648pt;}
.x37{left:419.266648pt;}
.x48{left:427.546648pt;}
.x49{left:429.626648pt;}
.x54{left:435.106648pt;}
.x5a{left:437.186648pt;}
.xe{left:493.373314pt;}
.x55{left:495.040000pt;}
.x9{left:516.386648pt;}
.x4{left:522.693314pt;}
.x57{left:528.666648pt;}
.x5{left:532.986648pt;}
.x30{left:538.013314pt;}
.x28{left:541.253314pt;}
.x80{left:546.146648pt;}
.x46{left:560.640000pt;}
.x52{left:568.160000pt;}
.x3a{left:592.253314pt;}
.x41{left:593.826648pt;}
.x43{left:630.333314pt;}
.x5c{left:632.066648pt;}
.x5b{left:633.666648pt;}
.x44{left:639.293314pt;}
.x59{left:642.306648pt;}
.x2a{left:719.040000pt;}
.x1a{left:724.320000pt;}
.x40{left:735.013314pt;}
.x6f{left:741.346648pt;}
.x4a{left:746.400000pt;}
.xa{left:749.693314pt;}
.x5d{left:753.920000pt;}
.x47{left:757.919981pt;}
.x62{left:763.866648pt;}
.x53{left:765.466648pt;}
.x7e{left:779.973314pt;}
.x65{left:782.106648pt;}
.x69{left:784.186648pt;}
.x4b{left:788.639981pt;}
.x7c{left:790.719981pt;}
.x5e{left:796.186648pt;}
.x38{left:807.933314pt;}
.x71{left:811.906648pt;}
.x74{left:830.146648pt;}
.x77{left:832.226648pt;}
.x66{left:841.920000pt;}
.x35{left:842.853314pt;}
.x34{left:847.973314pt;}
.x82{left:852.186648pt;}
.x81{left:861.626648pt;}
.x4f{left:863.613314pt;}
.x67{left:875.679981pt;}
.x4e{left:882.813314pt;}
.x75{left:889.920000pt;}
.x23{left:900.160000pt;}
.x2d{left:904.800000pt;}
.x63{left:915.040000pt;}
.x1c{left:916.773314pt;}
.x2{left:923.613314pt;}
.xf{left:930.946648pt;}
.x42{left:946.586648pt;}
.x25{left:947.493314pt;}
.x72{left:963.040000pt;}
.x6b{left:979.039981pt;}
.x6a{left:980.639981pt;}
.x68{left:989.306648pt;}
.x36{left:1017.413314pt;}
.x78{left:1027.066648pt;}
.x76{left:1037.306648pt;}
.x14{left:1046.693314pt;}
.x39{left:1066.466648pt;}
.x6c{left:1100.800000pt;}
.x64{left:1112.479981pt;}
.x6d{left:1143.199981pt;}
.x79{left:1148.800000pt;}
.x3e{left:1154.946648pt;}
.x73{left:1160.506648pt;}
.x3f{left:1168.066648pt;}
.x7a{left:1191.226648pt;}
}




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