
    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_3370daf461641a041958d440.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_e9ccab40feceed66495806ac.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_ba4679e7c31b3f59b8bd2c50.woff')format("woff");}.ff3{font-family:ff3;line-height:0.759870;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_125be30259a2811b16c78d49.woff')format("woff");}.ff4{font-family:ff4;line-height:0.963379;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_048f226ed4dd00eb419f9d20.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9bd6bd25f59edb9450555cc8.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_13b4757a5708416f1e2062bb.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_f550e29d9bada72eb08b195f.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_928f99f5683bdf9744b2fb87.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976118;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_a3c566e18a2d02577bdf9f16.woff')format("woff");}.ffa{font-family:ffa;line-height:1.130859;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_10ff39c538d203bf91d552e5.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_5f757c2a185f4234212ed099.woff')format("woff");}.ffc{font-family:ffc;line-height:0.760342;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_786d74d9d67fe6544794eda8.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bbdd970e154b2b0ccad0213f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.969806;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4e7083a7ba25a51383bcad43.woff')format("woff");}.fff{font-family:fff;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_82c8428d511295ca07c7f54d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_69cadc3b10acf87db574f0f6.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.978000px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls17{letter-spacing:-1.320000px;}
.ls9{letter-spacing:-0.840000px;}
.ls7{letter-spacing:-0.780000px;}
.ls20{letter-spacing:-0.702000px;}
.ls4{letter-spacing:-0.691200px;}
.lsa{letter-spacing:-0.489720px;}
.ls16{letter-spacing:-0.480000px;}
.ls1e{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.408000px;}
.ls6{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.324000px;}
.ls8{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.240000px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.001200px;}
.ls1c{letter-spacing:0.008400px;}
.lsd{letter-spacing:0.009000px;}
.ls0{letter-spacing:0.011400px;}
.ls1d{letter-spacing:0.013800px;}
.ls5{letter-spacing:0.016320px;}
.ls1{letter-spacing:0.025800px;}
.lsc{letter-spacing:0.026400px;}
.ls19{letter-spacing:0.331320px;}
.ls12{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.400920px;}
.ls1a{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.660000px;}
.lse{letter-spacing:1.200000px;}
.lsf{letter-spacing:2.849400px;}
.ls13{letter-spacing:4.369200px;}
.ls18{letter-spacing:5.166000px;}
.ls14{letter-spacing:11.557800px;}
.ls1b{letter-spacing:12.562800px;}
.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;}
}
.ws7{word-spacing:-17.928000px;}
.ws70{word-spacing:-16.434000px;}
.ws4b{word-spacing:-16.080000px;}
.ws4a{word-spacing:-15.900000px;}
.ws61{word-spacing:-15.600000px;}
.ws62{word-spacing:-15.360000px;}
.ws5{word-spacing:-14.940000px;}
.ws20{word-spacing:-14.880000px;}
.ws8{word-spacing:-14.700000px;}
.ws55{word-spacing:-14.460000px;}
.ws1f{word-spacing:-14.340000px;}
.ws56{word-spacing:-14.220000px;}
.ws33{word-spacing:-14.040000px;}
.ws21{word-spacing:-13.920000px;}
.ws31{word-spacing:-13.860000px;}
.ws48{word-spacing:-13.446000px;}
.ws71{word-spacing:-13.392000px;}
.ws57{word-spacing:-13.380000px;}
.ws6{word-spacing:-13.230000px;}
.ws84{word-spacing:-12.960000px;}
.ws77{word-spacing:-12.906000px;}
.wsb{word-spacing:-12.150000px;}
.ws9{word-spacing:-11.772000px;}
.ws3{word-spacing:-10.896000px;}
.ws1d{word-spacing:-10.800000px;}
.wsc{word-spacing:-10.464000px;}
.ws1{word-spacing:-9.542544px;}
.ws4{word-spacing:-9.417600px;}
.ws32{word-spacing:-8.185320px;}
.ws19{word-spacing:-4.920000px;}
.ws29{word-spacing:-3.960000px;}
.ws3d{word-spacing:-3.600000px;}
.ws43{word-spacing:-3.240000px;}
.ws74{word-spacing:-2.880000px;}
.ws36{word-spacing:-2.640000px;}
.ws37{word-spacing:-2.280000px;}
.ws58{word-spacing:-2.220000px;}
.ws59{word-spacing:-2.100000px;}
.ws17{word-spacing:-1.920000px;}
.ws6e{word-spacing:-1.782000px;}
.ws6f{word-spacing:-1.728000px;}
.ws27{word-spacing:-1.680000px;}
.ws41{word-spacing:-1.440000px;}
.ws67{word-spacing:-1.380000px;}
.ws50{word-spacing:-1.200000px;}
.ws1c{word-spacing:-1.026000px;}
.ws4f{word-spacing:-0.780000px;}
.ws51{word-spacing:-0.660000px;}
.ws6a{word-spacing:-0.540000px;}
.ws49{word-spacing:-0.486000px;}
.ws7c{word-spacing:-0.432000px;}
.ws2e{word-spacing:-0.420000px;}
.ws52{word-spacing:-0.360000px;}
.ws2b{word-spacing:-0.300000px;}
.wse{word-spacing:-0.216000px;}
.wsa{word-spacing:-0.054000px;}
.ws1e{word-spacing:-0.048000px;}
.wsd{word-spacing:0.000000px;}
.ws28{word-spacing:0.180000px;}
.ws42{word-spacing:0.240000px;}
.ws30{word-spacing:0.300000px;}
.ws0{word-spacing:0.306000px;}
.ws22{word-spacing:0.360000px;}
.ws7b{word-spacing:0.432000px;}
.ws23{word-spacing:0.480000px;}
.ws2f{word-spacing:0.660000px;}
.wsf{word-spacing:0.691200px;}
.ws85{word-spacing:0.702000px;}
.ws2a{word-spacing:0.780000px;}
.ws7d{word-spacing:0.810000px;}
.ws34{word-spacing:0.840000px;}
.ws10{word-spacing:0.864000px;}
.ws2d{word-spacing:0.900000px;}
.ws35{word-spacing:1.020000px;}
.ws5a{word-spacing:1.320000px;}
.ws83{word-spacing:1.404000px;}
.ws12{word-spacing:1.674000px;}
.ws39{word-spacing:1.680000px;}
.ws38{word-spacing:1.740000px;}
.ws25{word-spacing:1.800000px;}
.ws15{word-spacing:1.920000px;}
.ws11{word-spacing:1.944000px;}
.ws79{word-spacing:1.998000px;}
.ws65{word-spacing:2.160000px;}
.ws76{word-spacing:2.214000px;}
.ws1b{word-spacing:2.220000px;}
.ws80{word-spacing:2.268000px;}
.ws40{word-spacing:2.280000px;}
.ws81{word-spacing:2.322000px;}
.ws66{word-spacing:2.520000px;}
.ws72{word-spacing:2.820000px;}
.ws26{word-spacing:2.880000px;}
.ws78{word-spacing:2.970000px;}
.ws82{word-spacing:3.078000px;}
.ws4d{word-spacing:3.420000px;}
.ws75{word-spacing:3.480000px;}
.ws68{word-spacing:3.660000px;}
.ws47{word-spacing:3.672000px;}
.ws46{word-spacing:3.726000px;}
.ws73{word-spacing:3.840000px;}
.ws14{word-spacing:3.888000px;}
.ws13{word-spacing:3.942000px;}
.ws3c{word-spacing:4.020000px;}
.ws7f{word-spacing:4.050000px;}
.ws7e{word-spacing:4.104000px;}
.ws45{word-spacing:4.140000px;}
.ws4c{word-spacing:4.260000px;}
.ws54{word-spacing:4.440000px;}
.ws16{word-spacing:4.980000px;}
.ws5f{word-spacing:5.130000px;}
.ws60{word-spacing:5.184000px;}
.ws5e{word-spacing:5.238000px;}
.ws2c{word-spacing:5.700000px;}
.ws86{word-spacing:5.724000px;}
.ws3b{word-spacing:6.060000px;}
.ws24{word-spacing:7.080000px;}
.ws3a{word-spacing:7.140000px;}
.ws44{word-spacing:7.200000px;}
.ws1a{word-spacing:7.500000px;}
.ws69{word-spacing:7.920000px;}
.ws3e{word-spacing:8.220000px;}
.ws3f{word-spacing:8.280000px;}
.ws4e{word-spacing:8.400000px;}
.ws53{word-spacing:8.760000px;}
.ws7a{word-spacing:9.504000px;}
.ws64{word-spacing:10.320000px;}
.ws63{word-spacing:10.440000px;}
.ws18{word-spacing:10.860000px;}
.ws5c{word-spacing:11.448000px;}
.ws5d{word-spacing:11.610000px;}
.ws5b{word-spacing:11.664000px;}
.ws6c{word-spacing:12.474000px;}
.ws6d{word-spacing:12.582000px;}
.ws6b{word-spacing:12.690000px;}
.ws2{word-spacing:33.651135px;}
._f{margin-left:-27.742200px;}
._c{margin-left:-10.253400px;}
._7{margin-left:-8.792400px;}
._17{margin-left:-7.665000px;}
._b{margin-left:-5.518800px;}
._1{margin-left:-4.280400px;}
._2{margin-left:-2.478600px;}
._0{margin-left:-1.315800px;}
._3{width:1.203600px;}
._5{width:2.729400px;}
._6{width:4.363200px;}
._d{width:5.428800px;}
._9{width:6.822000px;}
._a{width:7.865400px;}
._e{width:9.180600px;}
._8{width:11.064000px;}
._10{width:12.193800px;}
._11{width:13.506000px;}
._15{width:18.342000px;}
._14{width:19.655400px;}
._12{width:21.312600px;}
._13{width:22.547400px;}
._18{width:24.967800px;}
._4{width:36.624000px;}
._16{width:43.068600px;}
.fc4{color:rgb(16,15,13);}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:21.824400px;}
.fsc{font-size:24.006600px;}
.fsa{font-size:32.736600px;}
.fsd{font-size:34.918800px;}
.fs9{font-size:34.980000px;}
.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;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.036150px;}
.yff{bottom:113.078700px;}
.y68{bottom:113.078850px;}
.y2b{bottom:117.212550px;}
.y10{bottom:117.875550px;}
.y101{bottom:120.500700px;}
.y11f{bottom:120.500850px;}
.yf{bottom:132.275550px;}
.yfe{bottom:134.078700px;}
.y67{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.y100{bottom:140.300700px;}
.y11e{bottom:140.300850px;}
.ye{bottom:146.675550px;}
.yfd{bottom:155.078700px;}
.y66{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.yd{bottom:161.075550px;}
.y13b{bottom:169.440900px;}
.y11b{bottom:176.078700px;}
.y65{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.y11a{bottom:197.078700px;}
.y64{bottom:197.078850px;}
.y37{bottom:199.392600px;}
.y27{bottom:201.212550px;}
.yfc{bottom:206.445900px;}
.y36{bottom:217.392600px;}
.y119{bottom:218.078700px;}
.y13f{bottom:218.078850px;}
.y26{bottom:222.212550px;}
.yfb{bottom:226.245900px;}
.y63{bottom:232.441050px;}
.y35{bottom:235.392600px;}
.y118{bottom:239.078700px;}
.y6f{bottom:239.078850px;}
.y25{bottom:243.212550px;}
.yfa{bottom:246.045750px;}
.y34{bottom:253.392600px;}
.y117{bottom:260.078700px;}
.y6e{bottom:260.078850px;}
.y24{bottom:264.212550px;}
.y13a{bottom:265.529250px;}
.y33{bottom:271.392600px;}
.y71{bottom:271.831650px;}
.y116{bottom:281.078700px;}
.y62{bottom:281.078850px;}
.y23{bottom:285.212550px;}
.yef{bottom:286.751250px;}
.y32{bottom:289.392600px;}
.y6d{bottom:295.441050px;}
.y115{bottom:302.078700px;}
.y61{bottom:302.078850px;}
.y85{bottom:303.476370px;}
.y22{bottom:306.212550px;}
.y31{bottom:307.392600px;}
.y91{bottom:314.934900px;}
.yf0{bottom:316.344933px;}
.ycb{bottom:319.175182px;}
.y114{bottom:323.078700px;}
.y60{bottom:323.078850px;}
.y30{bottom:325.392600px;}
.y7e{bottom:326.392650px;}
.y21{bottom:327.212550px;}
.y126{bottom:327.784200px;}
.yf1{bottom:335.262193px;}
.ydf{bottom:336.832036px;}
.y8d{bottom:337.850400px;}
.y124{bottom:341.284200px;}
.y113{bottom:344.078700px;}
.y5f{bottom:344.078850px;}
.y125{bottom:347.584200px;}
.y20{bottom:348.212550px;}
.y9d{bottom:349.307670px;}
.y139{bottom:349.529250px;}
.yf2{bottom:358.090358px;}
.y2f{bottom:360.400500px;}
.y9f{bottom:360.765480px;}
.y123{bottom:361.084200px;}
.y112{bottom:365.078700px;}
.y5e{bottom:365.078850px;}
.y1f{bottom:369.212550px;}
.ye7{bottom:369.961144px;}
.y75{bottom:372.223800px;}
.y2e{bottom:378.400500px;}
.ya5{bottom:383.681040px;}
.yf3{bottom:383.685839px;}
.ye5{bottom:385.877520px;}
.y111{bottom:386.078700px;}
.y5d{bottom:386.078850px;}
.y1e{bottom:390.212550px;}
.yba{bottom:393.625650px;}
.y73{bottom:395.139450px;}
.y2d{bottom:396.400500px;}
.yb4{bottom:406.597050px;}
.y110{bottom:407.078700px;}
.y5c{bottom:407.078850px;}
.y1d{bottom:411.212550px;}
.yf9{bottom:412.481700px;}
.y2c{bottom:414.400500px;}
.ya0{bottom:418.054530px;}
.ybe{bottom:418.058367px;}
.y10f{bottom:428.078700px;}
.y5b{bottom:428.078850px;}
.yac{bottom:429.512760px;}
.yd2{bottom:437.311660px;}
.ya8{bottom:440.970090px;}
.yd5{bottom:441.818900px;}
.y1c{bottom:443.648400px;}
.y10e{bottom:449.078700px;}
.y5a{bottom:449.078850px;}
.yb9{bottom:452.428500px;}
.yd4{bottom:456.672983px;}
.y7d{bottom:463.886280px;}
.ybc{bottom:467.601988px;}
.y10d{bottom:470.078700px;}
.y59{bottom:470.078850px;}
.yd7{bottom:475.272097px;}
.ya2{bottom:475.343580px;}
.y138{bottom:475.529250px;}
.y11d{bottom:479.460900px;}
.yd6{bottom:486.801266px;}
.y79{bottom:486.801900px;}
.y10c{bottom:491.078700px;}
.y58{bottom:491.078850px;}
.y70{bottom:498.259650px;}
.y11c{bottom:499.260900px;}
.yeb{bottom:509.715566px;}
.y9c{bottom:509.717010px;}
.y10b{bottom:512.078700px;}
.y57{bottom:512.078850px;}
.ycc{bottom:517.673754px;}
.yad{bottom:521.175300px;}
.yd1{bottom:522.042955px;}
.y1b{bottom:528.427950px;}
.yc9{bottom:531.807640px;}
.yaa{bottom:532.633050px;}
.y10a{bottom:533.078700px;}
.y56{bottom:533.078850px;}
.yab{bottom:544.090860px;}
.yf4{bottom:544.094076px;}
.y109{bottom:554.078700px;}
.y6c{bottom:554.078850px;}
.y8a{bottom:555.548010px;}
.ybd{bottom:555.550167px;}
.yae{bottom:567.006450px;}
.y55{bottom:567.513600px;}
.y1a{bottom:569.487900px;}
.yca{bottom:571.244482px;}
.y108{bottom:575.078700px;}
.y13e{bottom:575.078850px;}
.y7a{bottom:578.464380px;}
.ycf{bottom:584.412102px;}
.y19{bottom:589.287900px;}
.y6b{bottom:589.441050px;}
.yb5{bottom:589.922010px;}
.yea{bottom:595.875253px;}
.y122{bottom:596.078700px;}
.y13d{bottom:596.078850px;}
.ye4{bottom:597.483696px;}
.y54{bottom:599.811150px;}
.ya9{bottom:601.379940px;}
.y137{bottom:601.529250px;}
.y18{bottom:609.087900px;}
.yd0{bottom:612.829915px;}
.y98{bottom:612.837420px;}
.y107{bottom:617.078700px;}
.y13c{bottom:617.078850px;}
.y90{bottom:624.295290px;}
.y17{bottom:628.887900px;}
.yc4{bottom:632.329275px;}
.yb2{bottom:635.753250px;}
.y106{bottom:638.078700px;}
.y6a{bottom:638.078850px;}
.y74{bottom:647.211000px;}
.y16{bottom:648.687900px;}
.yc2{bottom:649.590021px;}
.ye6{bottom:658.664516px;}
.yb7{bottom:658.668870px;}
.y121{bottom:659.078700px;}
.y53{bottom:659.078850px;}
.y136{bottom:664.529250px;}
.yc8{bottom:667.642984px;}
.y15{bottom:668.487750px;}
.y8e{bottom:670.126890px;}
.y120{bottom:680.078700px;}
.y52{bottom:680.078850px;}
.yb6{bottom:681.584490px;}
.y14{bottom:688.287900px;}
.y8f{bottom:693.042150px;}
.y141{bottom:693.513600px;}
.yc3{bottom:694.944490px;}
.yc0{bottom:694.950492px;}
.y105{bottom:701.078700px;}
.y51{bottom:701.078850px;}
.y81{bottom:704.499990px;}
.y13{bottom:708.087750px;}
.y80{bottom:715.957800px;}
.ycd{bottom:719.773316px;}
.y104{bottom:722.078700px;}
.y50{bottom:722.078850px;}
.y140{bottom:725.811150px;}
.y78{bottom:727.415910px;}
.y135{bottom:727.529250px;}
.ybf{bottom:733.373055px;}
.y77{bottom:738.873720px;}
.y12{bottom:739.185300px;}
.yf5{bottom:740.416300px;}
.y103{bottom:743.078700px;}
.y4f{bottom:743.078850px;}
.yc5{bottom:744.824203px;}
.y94{bottom:750.331140px;}
.yc7{bottom:757.553703px;}
.y8c{bottom:761.789010px;}
.y102{bottom:764.078700px;}
.y4e{bottom:764.078850px;}
.yb0{bottom:773.246850px;}
.ydc{bottom:784.609141px;}
.y7f{bottom:784.705050px;}
.y4d{bottom:785.078850px;}
.y134{bottom:790.936950px;}
.yaf{bottom:796.162650px;}
.yf6{bottom:805.906509px;}
.y4c{bottom:806.078850px;}
.y8b{bottom:807.620250px;}
.yc{bottom:818.466750px;}
.y93{bottom:819.078000px;}
.y133{bottom:820.440900px;}
.yf7{bottom:823.330990px;}
.y4b{bottom:827.078850px;}
.y97{bottom:829.684658px;}
.ye3{bottom:831.379999px;}
.yb{bottom:836.466750px;}
.ya1{bottom:841.993500px;}
.ydd{bottom:841.996918px;}
.y4a{bottom:848.078850px;}
.y88{bottom:853.451070px;}
.ya{bottom:854.466750px;}
.yc1{bottom:858.519461px;}
.y7b{bottom:864.909630px;}
.y132{bottom:869.078700px;}
.y49{bottom:869.078850px;}
.y9{bottom:872.466750px;}
.y92{bottom:876.367590px;}
.yf8{bottom:882.256465px;}
.yde{bottom:883.666374px;}
.y72{bottom:887.824800px;}
.y131{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.ye8{bottom:896.960029px;}
.y9b{bottom:899.282550px;}
.y7{bottom:908.466750px;}
.yd3{bottom:908.717261px;}
.y96{bottom:910.740480px;}
.y130{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.yc6{bottom:914.976982px;}
.yd9{bottom:921.866876px;}
.y89{bottom:922.197930px;}
.y6{bottom:926.466750px;}
.yce{bottom:932.015667px;}
.y12f{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.y86{bottom:933.655920px;}
.y5{bottom:944.466750px;}
.ya6{bottom:945.113730px;}
.y12e{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.y76{bottom:956.572110px;}
.ye9{bottom:957.414649px;}
.ya4{bottom:968.029350px;}
.y12d{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.yed{bottom:977.688223px;}
.y4{bottom:979.474800px;}
.y82{bottom:979.487430px;}
.y9a{bottom:990.944940px;}
.yda{bottom:994.588869px;}
.y12c{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.ydb{bottom:996.827485px;}
.yd8{bottom:1000.998632px;}
.yb3{bottom:1002.403170px;}
.y95{bottom:1013.860770px;}
.y12b{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.ye0{bottom:1019.603747px;}
.y84{bottom:1025.318400px;}
.y69{bottom:1030.441050px;}
.yb8{bottom:1036.776150px;}
.y12a{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.ye1{bottom:1038.628977px;}
.yee{bottom:1040.875950px;}
.ybb{bottom:1042.998178px;}
.y83{bottom:1048.234290px;}
.y2{bottom:1049.282550px;}
.y129{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.y99{bottom:1059.691800px;}
.ye2{bottom:1068.949313px;}
.y9e{bottom:1071.149700px;}
.y128{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.y7c{bottom:1082.608020px;}
.yec{bottom:1086.846233px;}
.yb1{bottom:1094.065200px;}
.y3e{bottom:1100.078850px;}
.ya3{bottom:1105.523130px;}
.y11{bottom:1109.815500px;}
.y127{bottom:1111.570800px;}
.y87{bottom:1116.980700px;}
.y3d{bottom:1121.078850px;}
.ya7{bottom:1128.438690px;}
.y39{bottom:1155.615300px;}
.y38{bottom:1175.115300px;}
.y3c{bottom:1178.691750px;}
.h15{height:15.899416px;}
.h19{height:17.489183px;}
.h14{height:23.849125px;}
.h17{height:23.849365px;}
.h18{height:23.851165px;}
.h1a{height:25.438891px;}
.h16{height:28.808208px;}
.h7{height:34.446094px;}
.h2{height:38.039062px;}
.h11{height:38.273438px;}
.h6{height:38.531250px;}
.h10{height:42.793945px;}
.h8{height:43.004883px;}
.hf{height:43.057617px;}
.ha{height:43.321289px;}
.h9{height:45.615234px;}
.h13{height:47.343750px;}
.he{height:48.134766px;}
.hb{height:48.673828px;}
.h12{height:50.176758px;}
.h1b{height:52.078125px;}
.h5{height:52.948242px;}
.hd{height:54.082031px;}
.hc{height:54.738281px;}
.h1c{height:56.812500px;}
.h4{height:77.545898px;}
.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.068950px;}
.xc{left:108.286950px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x45{left:200.454891px;}
.x4a{left:206.216475px;}
.x1f{left:210.359001px;}
.x56{left:221.226602px;}
.x55{left:229.730940px;}
.x3b{left:244.362963px;}
.x46{left:248.930218px;}
.x24{left:251.697150px;}
.x47{left:254.469741px;}
.x1a{left:260.170350px;}
.x51{left:262.247880px;}
.x58{left:263.964352px;}
.x3f{left:265.788853px;}
.x4b{left:271.052300px;}
.x3c{left:274.809333px;}
.x44{left:277.624107px;}
.x4f{left:278.674396px;}
.x2f{left:280.180670px;}
.x2c{left:283.036938px;}
.x4c{left:284.219920px;}
.x40{left:285.924389px;}
.x41{left:287.592848px;}
.x50{left:289.333326px;}
.x52{left:293.150376px;}
.x3a{left:297.879676px;}
.x48{left:299.098011px;}
.x4{left:300.189000px;}
.x1c{left:301.890417px;}
.x15{left:303.199739px;}
.x14{left:304.615597px;}
.x1b{left:306.950951px;}
.x37{left:308.306784px;}
.x38{left:309.606900px;}
.x49{left:311.359382px;}
.x3e{left:315.692573px;}
.xb{left:317.196900px;}
.x39{left:319.275558px;}
.x2e{left:320.634923px;}
.x42{left:322.072327px;}
.x4e{left:323.194636px;}
.xe{left:334.389900px;}
.x16{left:336.239152px;}
.xd{left:338.563650px;}
.x17{left:341.182379px;}
.x54{left:343.690270px;}
.x25{left:344.742635px;}
.x10{left:345.923850px;}
.x11{left:348.466500px;}
.x31{left:349.732095px;}
.x43{left:351.198334px;}
.x53{left:352.956818px;}
.x3d{left:358.490339px;}
.x57{left:359.972747px;}
.x13{left:363.958868px;}
.x30{left:367.170000px;}
.x34{left:368.315724px;}
.x36{left:370.694559px;}
.x2a{left:372.396697px;}
.x4d{left:373.998603px;}
.x1e{left:375.539700px;}
.x1d{left:376.562602px;}
.x19{left:379.165019px;}
.x21{left:380.564700px;}
.x2d{left:382.597123px;}
.x32{left:388.917805px;}
.x28{left:389.946318px;}
.x3{left:396.050700px;}
.x26{left:399.175350px;}
.xf{left:401.270400px;}
.x27{left:405.962700px;}
.x2b{left:407.419650px;}
.x20{left:410.084997px;}
.x33{left:412.166400px;}
.x23{left:425.304750px;}
.x22{left:430.316148px;}
.x12{left:432.255600px;}
.x35{left:435.098250px;}
.x18{left:446.725177px;}
.x29{left:563.679455px;}
.x9{left:649.653300px;}
.x8{left:676.225500px;}
.x5d{left:716.477721px;}
.x5e{left:717.979229px;}
.x5c{left:721.209218px;}
.x5b{left:724.840773px;}
.x59{left:727.538550px;}
.x5a{left:738.031350px;}
.x5f{left:800.689800px;}
.x1{left:807.210300px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls17{letter-spacing:-1.173333pt;}
.ls9{letter-spacing:-0.746667pt;}
.ls7{letter-spacing:-0.693333pt;}
.ls20{letter-spacing:-0.624000pt;}
.ls4{letter-spacing:-0.614400pt;}
.lsa{letter-spacing:-0.435307pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls1e{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.362667pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.288000pt;}
.ls8{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.001067pt;}
.ls1c{letter-spacing:0.007467pt;}
.lsd{letter-spacing:0.008000pt;}
.ls0{letter-spacing:0.010133pt;}
.ls1d{letter-spacing:0.012267pt;}
.ls5{letter-spacing:0.014507pt;}
.ls1{letter-spacing:0.022933pt;}
.lsc{letter-spacing:0.023467pt;}
.ls19{letter-spacing:0.294507pt;}
.ls12{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.356373pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.586667pt;}
.lse{letter-spacing:1.066667pt;}
.lsf{letter-spacing:2.532800pt;}
.ls13{letter-spacing:3.883733pt;}
.ls18{letter-spacing:4.592000pt;}
.ls14{letter-spacing:10.273600pt;}
.ls1b{letter-spacing:11.166933pt;}
.ws7{word-spacing:-15.936000pt;}
.ws70{word-spacing:-14.608000pt;}
.ws4b{word-spacing:-14.293333pt;}
.ws4a{word-spacing:-14.133333pt;}
.ws61{word-spacing:-13.866667pt;}
.ws62{word-spacing:-13.653333pt;}
.ws5{word-spacing:-13.280000pt;}
.ws20{word-spacing:-13.226667pt;}
.ws8{word-spacing:-13.066667pt;}
.ws55{word-spacing:-12.853333pt;}
.ws1f{word-spacing:-12.746667pt;}
.ws56{word-spacing:-12.640000pt;}
.ws33{word-spacing:-12.480000pt;}
.ws21{word-spacing:-12.373333pt;}
.ws31{word-spacing:-12.320000pt;}
.ws48{word-spacing:-11.952000pt;}
.ws71{word-spacing:-11.904000pt;}
.ws57{word-spacing:-11.893333pt;}
.ws6{word-spacing:-11.760000pt;}
.ws84{word-spacing:-11.520000pt;}
.ws77{word-spacing:-11.472000pt;}
.wsb{word-spacing:-10.800000pt;}
.ws9{word-spacing:-10.464000pt;}
.ws3{word-spacing:-9.685333pt;}
.ws1d{word-spacing:-9.600000pt;}
.wsc{word-spacing:-9.301333pt;}
.ws1{word-spacing:-8.482261pt;}
.ws4{word-spacing:-8.371200pt;}
.ws32{word-spacing:-7.275840pt;}
.ws19{word-spacing:-4.373333pt;}
.ws29{word-spacing:-3.520000pt;}
.ws3d{word-spacing:-3.200000pt;}
.ws43{word-spacing:-2.880000pt;}
.ws74{word-spacing:-2.560000pt;}
.ws36{word-spacing:-2.346667pt;}
.ws37{word-spacing:-2.026667pt;}
.ws58{word-spacing:-1.973333pt;}
.ws59{word-spacing:-1.866667pt;}
.ws17{word-spacing:-1.706667pt;}
.ws6e{word-spacing:-1.584000pt;}
.ws6f{word-spacing:-1.536000pt;}
.ws27{word-spacing:-1.493333pt;}
.ws41{word-spacing:-1.280000pt;}
.ws67{word-spacing:-1.226667pt;}
.ws50{word-spacing:-1.066667pt;}
.ws1c{word-spacing:-0.912000pt;}
.ws4f{word-spacing:-0.693333pt;}
.ws51{word-spacing:-0.586667pt;}
.ws6a{word-spacing:-0.480000pt;}
.ws49{word-spacing:-0.432000pt;}
.ws7c{word-spacing:-0.384000pt;}
.ws2e{word-spacing:-0.373333pt;}
.ws52{word-spacing:-0.320000pt;}
.ws2b{word-spacing:-0.266667pt;}
.wse{word-spacing:-0.192000pt;}
.wsa{word-spacing:-0.048000pt;}
.ws1e{word-spacing:-0.042667pt;}
.wsd{word-spacing:0.000000pt;}
.ws28{word-spacing:0.160000pt;}
.ws42{word-spacing:0.213333pt;}
.ws30{word-spacing:0.266667pt;}
.ws0{word-spacing:0.272000pt;}
.ws22{word-spacing:0.320000pt;}
.ws7b{word-spacing:0.384000pt;}
.ws23{word-spacing:0.426667pt;}
.ws2f{word-spacing:0.586667pt;}
.wsf{word-spacing:0.614400pt;}
.ws85{word-spacing:0.624000pt;}
.ws2a{word-spacing:0.693333pt;}
.ws7d{word-spacing:0.720000pt;}
.ws34{word-spacing:0.746667pt;}
.ws10{word-spacing:0.768000pt;}
.ws2d{word-spacing:0.800000pt;}
.ws35{word-spacing:0.906667pt;}
.ws5a{word-spacing:1.173333pt;}
.ws83{word-spacing:1.248000pt;}
.ws12{word-spacing:1.488000pt;}
.ws39{word-spacing:1.493333pt;}
.ws38{word-spacing:1.546667pt;}
.ws25{word-spacing:1.600000pt;}
.ws15{word-spacing:1.706667pt;}
.ws11{word-spacing:1.728000pt;}
.ws79{word-spacing:1.776000pt;}
.ws65{word-spacing:1.920000pt;}
.ws76{word-spacing:1.968000pt;}
.ws1b{word-spacing:1.973333pt;}
.ws80{word-spacing:2.016000pt;}
.ws40{word-spacing:2.026667pt;}
.ws81{word-spacing:2.064000pt;}
.ws66{word-spacing:2.240000pt;}
.ws72{word-spacing:2.506667pt;}
.ws26{word-spacing:2.560000pt;}
.ws78{word-spacing:2.640000pt;}
.ws82{word-spacing:2.736000pt;}
.ws4d{word-spacing:3.040000pt;}
.ws75{word-spacing:3.093333pt;}
.ws68{word-spacing:3.253333pt;}
.ws47{word-spacing:3.264000pt;}
.ws46{word-spacing:3.312000pt;}
.ws73{word-spacing:3.413333pt;}
.ws14{word-spacing:3.456000pt;}
.ws13{word-spacing:3.504000pt;}
.ws3c{word-spacing:3.573333pt;}
.ws7f{word-spacing:3.600000pt;}
.ws7e{word-spacing:3.648000pt;}
.ws45{word-spacing:3.680000pt;}
.ws4c{word-spacing:3.786667pt;}
.ws54{word-spacing:3.946667pt;}
.ws16{word-spacing:4.426667pt;}
.ws5f{word-spacing:4.560000pt;}
.ws60{word-spacing:4.608000pt;}
.ws5e{word-spacing:4.656000pt;}
.ws2c{word-spacing:5.066667pt;}
.ws86{word-spacing:5.088000pt;}
.ws3b{word-spacing:5.386667pt;}
.ws24{word-spacing:6.293333pt;}
.ws3a{word-spacing:6.346667pt;}
.ws44{word-spacing:6.400000pt;}
.ws1a{word-spacing:6.666667pt;}
.ws69{word-spacing:7.040000pt;}
.ws3e{word-spacing:7.306667pt;}
.ws3f{word-spacing:7.360000pt;}
.ws4e{word-spacing:7.466667pt;}
.ws53{word-spacing:7.786667pt;}
.ws7a{word-spacing:8.448000pt;}
.ws64{word-spacing:9.173333pt;}
.ws63{word-spacing:9.280000pt;}
.ws18{word-spacing:9.653333pt;}
.ws5c{word-spacing:10.176000pt;}
.ws5d{word-spacing:10.320000pt;}
.ws5b{word-spacing:10.368000pt;}
.ws6c{word-spacing:11.088000pt;}
.ws6d{word-spacing:11.184000pt;}
.ws6b{word-spacing:11.280000pt;}
.ws2{word-spacing:29.912120pt;}
._f{margin-left:-24.659733pt;}
._c{margin-left:-9.114133pt;}
._7{margin-left:-7.815467pt;}
._17{margin-left:-6.813333pt;}
._b{margin-left:-4.905600pt;}
._1{margin-left:-3.804800pt;}
._2{margin-left:-2.203200pt;}
._0{margin-left:-1.169600pt;}
._3{width:1.069867pt;}
._5{width:2.426133pt;}
._6{width:3.878400pt;}
._d{width:4.825600pt;}
._9{width:6.064000pt;}
._a{width:6.991467pt;}
._e{width:8.160533pt;}
._8{width:9.834667pt;}
._10{width:10.838933pt;}
._11{width:12.005333pt;}
._15{width:16.304000pt;}
._14{width:17.471467pt;}
._12{width:18.944533pt;}
._13{width:20.042133pt;}
._18{width:22.193600pt;}
._4{width:32.554667pt;}
._16{width:38.283200pt;}
.fsb{font-size:19.399467pt;}
.fsc{font-size:21.339200pt;}
.fsa{font-size:29.099200pt;}
.fsd{font-size:31.038933pt;}
.fs9{font-size:31.093333pt;}
.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;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.698800pt;}
.yff{bottom:100.514400pt;}
.y68{bottom:100.514533pt;}
.y2b{bottom:104.188933pt;}
.y10{bottom:104.778267pt;}
.y101{bottom:107.111733pt;}
.y11f{bottom:107.111867pt;}
.yf{bottom:117.578267pt;}
.yfe{bottom:119.181067pt;}
.y67{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.y100{bottom:124.711733pt;}
.y11e{bottom:124.711867pt;}
.ye{bottom:130.378267pt;}
.yfd{bottom:137.847733pt;}
.y66{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.yd{bottom:143.178267pt;}
.y13b{bottom:150.614133pt;}
.y11b{bottom:156.514400pt;}
.y65{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.y11a{bottom:175.181067pt;}
.y64{bottom:175.181200pt;}
.y37{bottom:177.237867pt;}
.y27{bottom:178.855600pt;}
.yfc{bottom:183.507467pt;}
.y36{bottom:193.237867pt;}
.y119{bottom:193.847733pt;}
.y13f{bottom:193.847867pt;}
.y26{bottom:197.522267pt;}
.yfb{bottom:201.107467pt;}
.y63{bottom:206.614267pt;}
.y35{bottom:209.237867pt;}
.y118{bottom:212.514400pt;}
.y6f{bottom:212.514533pt;}
.y25{bottom:216.188933pt;}
.yfa{bottom:218.707333pt;}
.y34{bottom:225.237867pt;}
.y117{bottom:231.181067pt;}
.y6e{bottom:231.181200pt;}
.y24{bottom:234.855600pt;}
.y13a{bottom:236.026000pt;}
.y33{bottom:241.237867pt;}
.y71{bottom:241.628133pt;}
.y116{bottom:249.847733pt;}
.y62{bottom:249.847867pt;}
.y23{bottom:253.522267pt;}
.yef{bottom:254.890000pt;}
.y32{bottom:257.237867pt;}
.y6d{bottom:262.614267pt;}
.y115{bottom:268.514400pt;}
.y61{bottom:268.514533pt;}
.y85{bottom:269.756773pt;}
.y22{bottom:272.188933pt;}
.y31{bottom:273.237867pt;}
.y91{bottom:279.942133pt;}
.yf0{bottom:281.195496pt;}
.ycb{bottom:283.711273pt;}
.y114{bottom:287.181067pt;}
.y60{bottom:287.181200pt;}
.y30{bottom:289.237867pt;}
.y7e{bottom:290.126800pt;}
.y21{bottom:290.855600pt;}
.y126{bottom:291.363733pt;}
.yf1{bottom:298.010838pt;}
.ydf{bottom:299.406254pt;}
.y8d{bottom:300.311467pt;}
.y124{bottom:303.363733pt;}
.y113{bottom:305.847733pt;}
.y5f{bottom:305.847867pt;}
.y125{bottom:308.963733pt;}
.y20{bottom:309.522267pt;}
.y9d{bottom:310.495707pt;}
.y139{bottom:310.692667pt;}
.yf2{bottom:318.302541pt;}
.y2f{bottom:320.356000pt;}
.y9f{bottom:320.680427pt;}
.y123{bottom:320.963733pt;}
.y112{bottom:324.514400pt;}
.y5e{bottom:324.514533pt;}
.y1f{bottom:328.188933pt;}
.ye7{bottom:328.854350pt;}
.y75{bottom:330.865600pt;}
.y2e{bottom:336.356000pt;}
.ya5{bottom:341.049813pt;}
.yf3{bottom:341.054079pt;}
.ye5{bottom:343.002240pt;}
.y111{bottom:343.181067pt;}
.y5d{bottom:343.181200pt;}
.y1e{bottom:346.855600pt;}
.yba{bottom:349.889467pt;}
.y73{bottom:351.235067pt;}
.y2d{bottom:352.356000pt;}
.yb4{bottom:361.419600pt;}
.y110{bottom:361.847733pt;}
.y5c{bottom:361.847867pt;}
.y1d{bottom:365.522267pt;}
.yf9{bottom:366.650400pt;}
.y2c{bottom:368.356000pt;}
.ya0{bottom:371.604027pt;}
.ybe{bottom:371.607437pt;}
.y10f{bottom:380.514400pt;}
.y5b{bottom:380.514533pt;}
.yac{bottom:381.789120pt;}
.yd2{bottom:388.721476pt;}
.ya8{bottom:391.973413pt;}
.yd5{bottom:392.727911pt;}
.y1c{bottom:394.354133pt;}
.y10e{bottom:399.181067pt;}
.y5a{bottom:399.181200pt;}
.yb9{bottom:402.158667pt;}
.yd4{bottom:405.931541pt;}
.y7d{bottom:412.343360pt;}
.ybc{bottom:415.646211pt;}
.y10d{bottom:417.847733pt;}
.y59{bottom:417.847867pt;}
.yd7{bottom:422.464086pt;}
.ya2{bottom:422.527627pt;}
.y138{bottom:422.692667pt;}
.y11d{bottom:426.187467pt;}
.yd6{bottom:432.712237pt;}
.y79{bottom:432.712800pt;}
.y10c{bottom:436.514400pt;}
.y58{bottom:436.514533pt;}
.y70{bottom:442.897467pt;}
.y11c{bottom:443.787467pt;}
.yeb{bottom:453.080503pt;}
.y9c{bottom:453.081787pt;}
.y10b{bottom:455.181067pt;}
.y57{bottom:455.181200pt;}
.ycc{bottom:460.154448pt;}
.yad{bottom:463.266933pt;}
.yd1{bottom:464.038182pt;}
.y1b{bottom:469.713733pt;}
.yc9{bottom:472.717902pt;}
.yaa{bottom:473.451600pt;}
.y10a{bottom:473.847733pt;}
.y56{bottom:473.847867pt;}
.yab{bottom:483.636320pt;}
.yf4{bottom:483.639179pt;}
.y109{bottom:492.514400pt;}
.y6c{bottom:492.514533pt;}
.y8a{bottom:493.820453pt;}
.ybd{bottom:493.822371pt;}
.yae{bottom:504.005733pt;}
.y55{bottom:504.456533pt;}
.y1a{bottom:506.211467pt;}
.yca{bottom:507.772873pt;}
.y108{bottom:511.181067pt;}
.y13e{bottom:511.181200pt;}
.y7a{bottom:514.190560pt;}
.ycf{bottom:519.477424pt;}
.y19{bottom:523.811467pt;}
.y6b{bottom:523.947600pt;}
.yb5{bottom:524.375120pt;}
.yea{bottom:529.666892pt;}
.y122{bottom:529.847733pt;}
.y13d{bottom:529.847867pt;}
.ye4{bottom:531.096618pt;}
.y54{bottom:533.165467pt;}
.ya9{bottom:534.559947pt;}
.y137{bottom:534.692667pt;}
.y18{bottom:541.411467pt;}
.yd0{bottom:544.737702pt;}
.y98{bottom:544.744373pt;}
.y107{bottom:548.514400pt;}
.y13c{bottom:548.514533pt;}
.y90{bottom:554.929147pt;}
.y17{bottom:559.011467pt;}
.yc4{bottom:562.070467pt;}
.yb2{bottom:565.114000pt;}
.y106{bottom:567.181067pt;}
.y6a{bottom:567.181200pt;}
.y74{bottom:575.298667pt;}
.y16{bottom:576.611467pt;}
.yc2{bottom:577.413352pt;}
.ye6{bottom:585.479569pt;}
.yb7{bottom:585.483440pt;}
.y121{bottom:585.847733pt;}
.y53{bottom:585.847867pt;}
.y136{bottom:590.692667pt;}
.yc8{bottom:593.460430pt;}
.y15{bottom:594.211333pt;}
.y8e{bottom:595.668347pt;}
.y120{bottom:604.514400pt;}
.y52{bottom:604.514533pt;}
.yb6{bottom:605.852880pt;}
.y14{bottom:611.811467pt;}
.y8f{bottom:616.037467pt;}
.y141{bottom:616.456533pt;}
.yc3{bottom:617.728435pt;}
.yc0{bottom:617.733770pt;}
.y105{bottom:623.181067pt;}
.y51{bottom:623.181200pt;}
.y81{bottom:626.222213pt;}
.y13{bottom:629.411333pt;}
.y80{bottom:636.406933pt;}
.ycd{bottom:639.798503pt;}
.y104{bottom:641.847733pt;}
.y50{bottom:641.847867pt;}
.y140{bottom:645.165467pt;}
.y78{bottom:646.591920pt;}
.y135{bottom:646.692667pt;}
.ybf{bottom:651.887160pt;}
.y77{bottom:656.776640pt;}
.y12{bottom:657.053600pt;}
.yf5{bottom:658.147822pt;}
.y103{bottom:660.514400pt;}
.y4f{bottom:660.514533pt;}
.yc5{bottom:662.065958pt;}
.y94{bottom:666.961013pt;}
.yc7{bottom:673.381069pt;}
.y8c{bottom:677.145787pt;}
.y102{bottom:679.181067pt;}
.y4e{bottom:679.181200pt;}
.yb0{bottom:687.330533pt;}
.ydc{bottom:697.430347pt;}
.y7f{bottom:697.515600pt;}
.y4d{bottom:697.847867pt;}
.y134{bottom:703.055067pt;}
.yaf{bottom:707.700133pt;}
.yf6{bottom:716.361341pt;}
.y4c{bottom:716.514533pt;}
.y8b{bottom:717.884667pt;}
.yc{bottom:727.526000pt;}
.y93{bottom:728.069333pt;}
.y133{bottom:729.280800pt;}
.yf7{bottom:731.849769pt;}
.y4b{bottom:735.181200pt;}
.y97{bottom:737.497474pt;}
.ye3{bottom:739.004444pt;}
.yb{bottom:743.526000pt;}
.ya1{bottom:748.438667pt;}
.ydd{bottom:748.441705pt;}
.y4a{bottom:753.847867pt;}
.y88{bottom:758.623173pt;}
.ya{bottom:759.526000pt;}
.yc1{bottom:763.128409pt;}
.y7b{bottom:768.808560pt;}
.y132{bottom:772.514400pt;}
.y49{bottom:772.514533pt;}
.y9{bottom:775.526000pt;}
.y92{bottom:778.993413pt;}
.yf8{bottom:784.227969pt;}
.yde{bottom:785.481221pt;}
.y72{bottom:789.177600pt;}
.y131{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.ye8{bottom:797.297803pt;}
.y9b{bottom:799.362267pt;}
.y7{bottom:807.526000pt;}
.yd3{bottom:807.748677pt;}
.y96{bottom:809.547093pt;}
.y130{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.yc6{bottom:813.312873pt;}
.yd9{bottom:819.437223pt;}
.y89{bottom:819.731493pt;}
.y6{bottom:823.526000pt;}
.yce{bottom:828.458370pt;}
.y12f{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.y86{bottom:829.916373pt;}
.y5{bottom:839.526000pt;}
.ya6{bottom:840.101093pt;}
.y12e{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.y76{bottom:850.286320pt;}
.ye9{bottom:851.035244pt;}
.ya4{bottom:860.470533pt;}
.y12d{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.yed{bottom:869.056198pt;}
.y4{bottom:870.644267pt;}
.y82{bottom:870.655493pt;}
.y9a{bottom:880.839947pt;}
.yda{bottom:884.078995pt;}
.y12c{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.ydb{bottom:886.068875pt;}
.yd8{bottom:889.776561pt;}
.yb3{bottom:891.025040pt;}
.y95{bottom:901.209573pt;}
.y12b{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.ye0{bottom:906.314441pt;}
.y84{bottom:911.394133pt;}
.y69{bottom:915.947600pt;}
.yb8{bottom:921.578800pt;}
.y12a{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.ye1{bottom:923.225757pt;}
.yee{bottom:925.223067pt;}
.ybb{bottom:927.109492pt;}
.y83{bottom:931.763813pt;}
.y2{bottom:932.695600pt;}
.y129{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.y99{bottom:941.948267pt;}
.ye2{bottom:950.177167pt;}
.y9e{bottom:952.133067pt;}
.y128{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.y7c{bottom:962.318240pt;}
.yec{bottom:966.085541pt;}
.yb1{bottom:972.502400pt;}
.y3e{bottom:977.847867pt;}
.ya3{bottom:982.687227pt;}
.y11{bottom:986.502667pt;}
.y127{bottom:988.062933pt;}
.y87{bottom:992.871733pt;}
.y3d{bottom:996.514533pt;}
.ya7{bottom:1003.056613pt;}
.y39{bottom:1027.213600pt;}
.y38{bottom:1044.546933pt;}
.y3c{bottom:1047.726000pt;}
.h15{height:14.132815pt;}
.h19{height:15.545941pt;}
.h14{height:21.199222pt;}
.h17{height:21.199435pt;}
.h18{height:21.201035pt;}
.h1a{height:22.612348pt;}
.h16{height:25.607296pt;}
.h7{height:30.618750pt;}
.h2{height:33.812500pt;}
.h11{height:34.020833pt;}
.h6{height:34.250000pt;}
.h10{height:38.039062pt;}
.h8{height:38.226562pt;}
.hf{height:38.273438pt;}
.ha{height:38.507812pt;}
.h9{height:40.546875pt;}
.h13{height:42.083333pt;}
.he{height:42.786458pt;}
.hb{height:43.265625pt;}
.h12{height:44.601562pt;}
.h1b{height:46.291667pt;}
.h5{height:47.065104pt;}
.hd{height:48.072917pt;}
.hc{height:48.656250pt;}
.h1c{height:50.500000pt;}
.h4{height:68.929688pt;}
.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.172400pt;}
.xc{left:96.255067pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x45{left:178.182126pt;}
.x4a{left:183.303534pt;}
.x1f{left:186.985778pt;}
.x56{left:196.645869pt;}
.x55{left:204.205280pt;}
.x3b{left:217.211523pt;}
.x46{left:221.271305pt;}
.x24{left:223.730800pt;}
.x47{left:226.195326pt;}
.x1a{left:231.262533pt;}
.x51{left:233.109227pt;}
.x58{left:234.634979pt;}
.x3f{left:236.256759pt;}
.x4b{left:240.935378pt;}
.x3c{left:244.274963pt;}
.x44{left:246.776984pt;}
.x4f{left:247.710574pt;}
.x2f{left:249.049484pt;}
.x2c{left:251.588390pt;}
.x4c{left:252.639929pt;}
.x40{left:254.155013pt;}
.x41{left:255.638087pt;}
.x50{left:257.185179pt;}
.x52{left:260.578112pt;}
.x3a{left:264.781934pt;}
.x48{left:265.864899pt;}
.x4{left:266.834667pt;}
.x1c{left:268.347038pt;}
.x15{left:269.510879pt;}
.x14{left:270.769419pt;}
.x1b{left:272.845290pt;}
.x37{left:274.050474pt;}
.x38{left:275.206133pt;}
.x49{left:276.763895pt;}
.x3e{left:280.615621pt;}
.xb{left:281.952800pt;}
.x39{left:283.800496pt;}
.x2e{left:285.008821pt;}
.x42{left:286.286513pt;}
.x4e{left:287.284121pt;}
.xe{left:297.235467pt;}
.x16{left:298.879246pt;}
.xd{left:300.945467pt;}
.x17{left:303.273226pt;}
.x54{left:305.502463pt;}
.x25{left:306.437897pt;}
.x10{left:307.487867pt;}
.x11{left:309.748000pt;}
.x31{left:310.872973pt;}
.x43{left:312.176297pt;}
.x53{left:313.739394pt;}
.x3d{left:318.658079pt;}
.x57{left:319.975775pt;}
.x13{left:323.518994pt;}
.x30{left:326.373334pt;}
.x34{left:327.391755pt;}
.x36{left:329.506275pt;}
.x2a{left:331.019286pt;}
.x4d{left:332.443203pt;}
.x1e{left:333.813067pt;}
.x1d{left:334.722313pt;}
.x19{left:337.035572pt;}
.x21{left:338.279733pt;}
.x2d{left:340.086332pt;}
.x32{left:345.704715pt;}
.x28{left:346.618950pt;}
.x3{left:352.045067pt;}
.x26{left:354.822533pt;}
.xf{left:356.684800pt;}
.x27{left:360.855733pt;}
.x2b{left:362.150800pt;}
.x20{left:364.519997pt;}
.x33{left:366.370133pt;}
.x23{left:378.048667pt;}
.x22{left:382.503243pt;}
.x12{left:384.227200pt;}
.x35{left:386.754000pt;}
.x18{left:397.089046pt;}
.x29{left:501.048404pt;}
.x9{left:577.469600pt;}
.x8{left:601.089333pt;}
.x5d{left:636.869085pt;}
.x5e{left:638.203759pt;}
.x5c{left:641.074861pt;}
.x5b{left:644.302910pt;}
.x59{left:646.700933pt;}
.x5a{left:656.027867pt;}
.x5f{left:711.724267pt;}
.x1{left:717.520267pt;}
}




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