
    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_b2b32170725bb0422068024e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.988000;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_d9bb02c4c28089328b9511a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.967000;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_1192aff15f61c83e3c713ac3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_1220fa0faddd2e49a17713fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102000;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_f1629591a0324638b296b362.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.988000;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_252ea42f9bf9f4a1c4382270.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_3214aa909c21bdd4b9d2bf1a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.987000;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);}
.v2{vertical-align:-14.010000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.788000px;}
.v1{vertical-align:18.360000px;}
.lsd{letter-spacing:-1.881000px;}
.ls7{letter-spacing:-1.425000px;}
.ls9{letter-spacing:-0.285000px;}
.lsf{letter-spacing:-0.240000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.840000px;}
.ls4{letter-spacing:1.710000px;}
.ls3{letter-spacing:3.990000px;}
.lsc{letter-spacing:4.845000px;}
.ls5{letter-spacing:11.400000px;}
.ls6{letter-spacing:11.519700px;}
.ls2{letter-spacing:87.589200px;}
.lsb{letter-spacing:87.591000px;}
.lsa{letter-spacing:87.609600px;}
.ls8{letter-spacing:87.615600px;}
.lse{letter-spacing:87.621600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-12.825000px;}
.ws80{word-spacing:-12.540000px;}
.wscb{word-spacing:-10.944000px;}
.ws44{word-spacing:-10.800000px;}
.wse2{word-spacing:-10.560000px;}
.ws66{word-spacing:-6.327000px;}
.ws96{word-spacing:-4.959000px;}
.ws84{word-spacing:-4.788000px;}
.ws89{word-spacing:-4.332000px;}
.wsb6{word-spacing:-3.420000px;}
.ws41{word-spacing:-3.363000px;}
.ws70{word-spacing:-3.306000px;}
.ws23{word-spacing:-3.192000px;}
.wsc8{word-spacing:-2.964000px;}
.wsab{word-spacing:-2.907000px;}
.ws7d{word-spacing:-2.850000px;}
.ws57{word-spacing:-2.793000px;}
.ws10{word-spacing:-2.736000px;}
.ws47{word-spacing:-2.679000px;}
.ws4b{word-spacing:-2.565000px;}
.ws3b{word-spacing:-2.508000px;}
.wsbe{word-spacing:-2.394000px;}
.ws54{word-spacing:-2.337000px;}
.wsb7{word-spacing:-2.280000px;}
.ws51{word-spacing:-2.223000px;}
.ws3f{word-spacing:-2.166000px;}
.ws61{word-spacing:-2.109000px;}
.ws4f{word-spacing:-2.052000px;}
.wsa1{word-spacing:-1.995000px;}
.ws18{word-spacing:-1.938000px;}
.wsb8{word-spacing:-1.881000px;}
.wsb{word-spacing:-1.824000px;}
.ws4c{word-spacing:-1.800000px;}
.ws5b{word-spacing:-1.710000px;}
.ws8e{word-spacing:-1.653000px;}
.ws88{word-spacing:-1.596000px;}
.ws6b{word-spacing:-1.539000px;}
.ws36{word-spacing:-1.482000px;}
.ws2a{word-spacing:-1.425000px;}
.wsc6{word-spacing:-1.368000px;}
.ws9a{word-spacing:-1.311000px;}
.wsd5{word-spacing:-1.254000px;}
.ws40{word-spacing:-1.197000px;}
.ws11{word-spacing:-1.140000px;}
.ws83{word-spacing:-1.083000px;}
.wsdb{word-spacing:-1.026000px;}
.wse1{word-spacing:-0.960000px;}
.wsc0{word-spacing:-0.855000px;}
.ws7{word-spacing:-0.798000px;}
.wsdf{word-spacing:-0.741000px;}
.ws3e{word-spacing:-0.684000px;}
.ws6{word-spacing:-0.627000px;}
.ws1d{word-spacing:-0.576000px;}
.wse{word-spacing:-0.570000px;}
.wsa{word-spacing:-0.513000px;}
.wse3{word-spacing:-0.480000px;}
.ws8c{word-spacing:-0.456000px;}
.ws3{word-spacing:-0.399000px;}
.wsc9{word-spacing:-0.342000px;}
.ws63{word-spacing:-0.285000px;}
.ws94{word-spacing:-0.228000px;}
.ws29{word-spacing:-0.171000px;}
.wsc{word-spacing:-0.114000px;}
.ws3a{word-spacing:-0.057000px;}
.wsca{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws4e{word-spacing:0.114000px;}
.ws4{word-spacing:0.171000px;}
.ws8a{word-spacing:0.285000px;}
.ws68{word-spacing:0.342000px;}
.ws31{word-spacing:0.399000px;}
.wsba{word-spacing:0.432000px;}
.wsa8{word-spacing:0.513000px;}
.ws53{word-spacing:0.570000px;}
.ws38{word-spacing:0.684000px;}
.ws67{word-spacing:0.741000px;}
.ws9f{word-spacing:0.798000px;}
.ws3d{word-spacing:0.855000px;}
.ws7e{word-spacing:0.912000px;}
.ws91{word-spacing:0.969000px;}
.ws1b{word-spacing:1.008000px;}
.wsa2{word-spacing:1.026000px;}
.ws34{word-spacing:1.083000px;}
.ws24{word-spacing:1.140000px;}
.ws9b{word-spacing:1.197000px;}
.wsac{word-spacing:1.254000px;}
.ws1c{word-spacing:1.296000px;}
.ws15{word-spacing:1.311000px;}
.ws4a{word-spacing:1.368000px;}
.ws45{word-spacing:1.425000px;}
.wsad{word-spacing:1.482000px;}
.wsb1{word-spacing:1.539000px;}
.ws93{word-spacing:1.596000px;}
.ws3c{word-spacing:1.653000px;}
.ws59{word-spacing:1.767000px;}
.ws8f{word-spacing:1.824000px;}
.ws9c{word-spacing:1.881000px;}
.wsdc{word-spacing:1.938000px;}
.ws76{word-spacing:1.995000px;}
.ws5{word-spacing:2.052000px;}
.ws72{word-spacing:2.166000px;}
.wsde{word-spacing:2.223000px;}
.ws8b{word-spacing:2.280000px;}
.ws1a{word-spacing:2.394000px;}
.wsb4{word-spacing:2.565000px;}
.ws5e{word-spacing:2.622000px;}
.ws48{word-spacing:2.736000px;}
.ws50{word-spacing:2.793000px;}
.ws2e{word-spacing:2.850000px;}
.wsc2{word-spacing:2.907000px;}
.ws9d{word-spacing:2.964000px;}
.ws9{word-spacing:3.021000px;}
.ws62{word-spacing:3.078000px;}
.ws87{word-spacing:3.192000px;}
.wsb9{word-spacing:3.249000px;}
.ws43{word-spacing:3.363000px;}
.ws85{word-spacing:3.420000px;}
.ws35{word-spacing:3.477000px;}
.wsa7{word-spacing:3.534000px;}
.wsc7{word-spacing:3.591000px;}
.ws7f{word-spacing:3.696000px;}
.ws74{word-spacing:3.705000px;}
.ws98{word-spacing:3.762000px;}
.ws1f{word-spacing:3.819000px;}
.ws7a{word-spacing:3.876000px;}
.ws81{word-spacing:3.990000px;}
.ws8d{word-spacing:4.047000px;}
.ws75{word-spacing:4.104000px;}
.ws12{word-spacing:4.161000px;}
.ws52{word-spacing:4.218000px;}
.ws39{word-spacing:4.275000px;}
.ws46{word-spacing:4.332000px;}
.ws56{word-spacing:4.389000px;}
.ws5a{word-spacing:4.446000px;}
.ws5f{word-spacing:4.503000px;}
.wsd{word-spacing:4.560000px;}
.wscf{word-spacing:4.617000px;}
.ws6f{word-spacing:4.731000px;}
.ws64{word-spacing:4.845000px;}
.ws14{word-spacing:4.902000px;}
.ws27{word-spacing:4.959000px;}
.ws20{word-spacing:5.073000px;}
.wse0{word-spacing:5.130000px;}
.ws49{word-spacing:5.187000px;}
.ws78{word-spacing:5.244000px;}
.wsc1{word-spacing:5.301000px;}
.wsbf{word-spacing:5.358000px;}
.ws9e{word-spacing:5.415000px;}
.ws2b{word-spacing:5.472000px;}
.wsbd{word-spacing:5.529000px;}
.ws55{word-spacing:5.586000px;}
.ws79{word-spacing:5.643000px;}
.ws2d{word-spacing:5.700000px;}
.ws65{word-spacing:5.757000px;}
.wsd6{word-spacing:5.814000px;}
.ws99{word-spacing:5.871000px;}
.ws7c{word-spacing:5.928000px;}
.ws6a{word-spacing:5.985000px;}
.ws8{word-spacing:6.099000px;}
.wsa3{word-spacing:6.156000px;}
.wsbc{word-spacing:6.213000px;}
.wscc{word-spacing:6.270000px;}
.wsa4{word-spacing:6.327000px;}
.ws17{word-spacing:6.384000px;}
.ws32{word-spacing:6.441000px;}
.ws25{word-spacing:6.498000px;}
.wsd2{word-spacing:6.555000px;}
.ws22{word-spacing:6.612000px;}
.ws21{word-spacing:6.840000px;}
.wscd{word-spacing:6.897000px;}
.wsc4{word-spacing:6.954000px;}
.ws90{word-spacing:7.068000px;}
.wsce{word-spacing:7.125000px;}
.ws2f{word-spacing:7.467000px;}
.ws33{word-spacing:7.524000px;}
.ws92{word-spacing:7.638000px;}
.wsa0{word-spacing:7.695000px;}
.wsaa{word-spacing:7.752000px;}
.wsd4{word-spacing:7.809000px;}
.wsdd{word-spacing:7.923000px;}
.wsb3{word-spacing:8.037000px;}
.ws13{word-spacing:8.094000px;}
.ws77{word-spacing:8.151000px;}
.wsbb{word-spacing:8.208000px;}
.wsa6{word-spacing:8.265000px;}
.wsb5{word-spacing:8.322000px;}
.ws69{word-spacing:8.436000px;}
.wsd7{word-spacing:8.493000px;}
.wsa5{word-spacing:8.607000px;}
.ws19{word-spacing:8.664000px;}
.ws58{word-spacing:8.835000px;}
.wsaf{word-spacing:8.892000px;}
.ws26{word-spacing:9.120000px;}
.ws95{word-spacing:9.348000px;}
.ws37{word-spacing:9.462000px;}
.ws82{word-spacing:9.633000px;}
.ws71{word-spacing:9.690000px;}
.ws4d{word-spacing:9.747000px;}
.wsa9{word-spacing:9.861000px;}
.wsb0{word-spacing:9.975000px;}
.ws73{word-spacing:10.089000px;}
.ws42{word-spacing:10.203000px;}
.wsc5{word-spacing:10.317000px;}
.ws86{word-spacing:10.374000px;}
.ws2c{word-spacing:10.431000px;}
.wsd9{word-spacing:10.602000px;}
.wsae{word-spacing:11.058000px;}
.ws5c{word-spacing:11.400000px;}
.wsd0{word-spacing:11.457000px;}
.ws6d{word-spacing:11.514000px;}
.ws1e{word-spacing:11.628000px;}
.ws97{word-spacing:11.970000px;}
.ws30{word-spacing:12.027000px;}
.ws2{word-spacing:12.198000px;}
.wsda{word-spacing:12.540000px;}
.ws5d{word-spacing:12.768000px;}
.wsf{word-spacing:12.825000px;}
.ws6c{word-spacing:14.079000px;}
.wsd8{word-spacing:14.307000px;}
.wsc3{word-spacing:14.820000px;}
.wsd3{word-spacing:14.877000px;}
.ws60{word-spacing:15.333000px;}
.wsb2{word-spacing:15.618000px;}
.ws6e{word-spacing:16.359000px;}
.ws28{word-spacing:16.815000px;}
.ws7b{word-spacing:17.043000px;}
.wsd1{word-spacing:18.582000px;}
.ws16{word-spacing:20.805000px;}
._c{margin-left:-20.112000px;}
._7{margin-left:-12.912000px;}
._10{margin-left:-9.065700px;}
._5{margin-left:-7.764000px;}
._14{margin-left:-6.270000px;}
._3{margin-left:-5.029200px;}
._a{margin-left:-3.518400px;}
._2{margin-left:-2.364000px;}
._1{margin-left:-1.200000px;}
._6{width:1.088700px;}
._4{width:2.364000px;}
._8{width:4.185300px;}
._13{width:7.125000px;}
._d{width:10.203000px;}
._f{width:11.400000px;}
._b{width:89.997600px;}
._9{width:196.373400px;}
._e{width:655.584000px;}
._12{width:665.424000px;}
._16{width:667.008000px;}
._15{width:668.064000px;}
._11{width:672.144000px;}
._0{width:1629.504000px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.060000px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:22.500000px;}
.y2e{bottom:37.500000px;}
.y2d{bottom:52.500000px;}
.y2a{bottom:57.565800px;}
.y29{bottom:71.068800px;}
.ya0{bottom:83.400900px;}
.y9f{bottom:99.900900px;}
.y87{bottom:99.921450px;}
.y62{bottom:100.223100px;}
.y2c{bottom:102.923100px;}
.yb6{bottom:109.697100px;}
.y9e{bottom:109.793100px;}
.yc1{bottom:114.173100px;}
.y88{bottom:116.421450px;}
.y2b{bottom:119.423100px;}
.y61{bottom:119.717100px;}
.yfc{bottom:126.707850px;}
.yb5{bottom:129.191100px;}
.y9d{bottom:129.287100px;}
.yc0{bottom:130.673100px;}
.y60{bottom:139.211100px;}
.yfb{bottom:143.207850px;}
.ybf{bottom:147.173100px;}
.yb4{bottom:148.685100px;}
.yb0{bottom:148.757100px;}
.y9c{bottom:148.781100px;}
.y86{bottom:148.877100px;}
.y5f{bottom:158.705100px;}
.yfa{bottom:159.707850px;}
.ybe{bottom:163.673100px;}
.y27{bottom:167.939850px;}
.yb3{bottom:168.179100px;}
.yaf{bottom:168.251100px;}
.y9b{bottom:168.275100px;}
.y85{bottom:168.371100px;}
.yf9{bottom:176.207850px;}
.y5e{bottom:178.199100px;}
.ybd{bottom:180.173100px;}
.y26{bottom:184.439850px;}
.yb2{bottom:187.673100px;}
.yae{bottom:187.745100px;}
.y9a{bottom:187.769100px;}
.y84{bottom:187.865100px;}
.yf8{bottom:192.707850px;}
.ybc{bottom:196.673100px;}
.y5d{bottom:197.693100px;}
.y25{bottom:200.939850px;}
.yad{bottom:207.239100px;}
.y99{bottom:207.263100px;}
.y83{bottom:207.359100px;}
.yf7{bottom:209.207850px;}
.ybb{bottom:213.173100px;}
.y5c{bottom:217.187100px;}
.y24{bottom:217.439850px;}
.yf6{bottom:225.707850px;}
.yb1{bottom:226.673100px;}
.yac{bottom:226.733100px;}
.y98{bottom:226.757100px;}
.y82{bottom:226.853100px;}
.yba{bottom:229.673100px;}
.y5b{bottom:236.681100px;}
.yf5{bottom:242.207850px;}
.yab{bottom:246.227100px;}
.y97{bottom:246.251100px;}
.y81{bottom:246.347100px;}
.y5a{bottom:256.175100px;}
.yf4{bottom:258.707850px;}
.yb9{bottom:265.673100px;}
.y23{bottom:265.703850px;}
.yaa{bottom:265.721100px;}
.y96{bottom:265.745100px;}
.y80{bottom:265.841100px;}
.yf3{bottom:275.207850px;}
.y59{bottom:275.669100px;}
.y22{bottom:285.197850px;}
.ya9{bottom:285.215100px;}
.y95{bottom:285.239100px;}
.y7f{bottom:285.335100px;}
.yf2{bottom:291.707850px;}
.y58{bottom:295.163100px;}
.y21{bottom:304.691850px;}
.ya8{bottom:304.709100px;}
.y94{bottom:304.733100px;}
.y7e{bottom:304.829100px;}
.yf1{bottom:308.207850px;}
.yb8{bottom:314.642850px;}
.y57{bottom:314.657100px;}
.y20{bottom:324.185850px;}
.ya7{bottom:324.203100px;}
.y93{bottom:324.227100px;}
.y7d{bottom:324.323100px;}
.yf0{bottom:324.707850px;}
.yb7{bottom:334.136850px;}
.y56{bottom:334.151100px;}
.yef{bottom:341.207850px;}
.y1f{bottom:343.679850px;}
.ya6{bottom:343.697100px;}
.y92{bottom:343.721100px;}
.y7c{bottom:343.817100px;}
.y55{bottom:353.645100px;}
.yee{bottom:357.707850px;}
.y1e{bottom:363.173850px;}
.ya5{bottom:363.191100px;}
.y91{bottom:363.215100px;}
.y7b{bottom:363.311100px;}
.y54{bottom:373.139100px;}
.yed{bottom:374.207850px;}
.y1d{bottom:382.667850px;}
.ya4{bottom:382.685100px;}
.y90{bottom:382.709100px;}
.y7a{bottom:382.805100px;}
.yec{bottom:390.707850px;}
.y53{bottom:392.633100px;}
.ya3{bottom:402.179100px;}
.y8f{bottom:402.203100px;}
.y1c{bottom:402.285600px;}
.y79{bottom:402.299100px;}
.yeb{bottom:407.207850px;}
.y52{bottom:412.127100px;}
.ya2{bottom:421.673100px;}
.y8e{bottom:421.697100px;}
.y1b{bottom:421.779600px;}
.y78{bottom:421.793100px;}
.yea{bottom:423.707850px;}
.y51{bottom:431.621100px;}
.ye9{bottom:440.207850px;}
.y8d{bottom:441.191100px;}
.y1a{bottom:441.273600px;}
.y77{bottom:441.287100px;}
.y50{bottom:451.115100px;}
.ye8{bottom:456.707850px;}
.ya1{bottom:460.673100px;}
.y8c{bottom:460.685100px;}
.y19{bottom:460.767600px;}
.y76{bottom:460.781100px;}
.y4f{bottom:470.609100px;}
.ye7{bottom:473.207850px;}
.y8b{bottom:480.179100px;}
.y18{bottom:480.261600px;}
.y75{bottom:480.275100px;}
.ye6{bottom:489.707850px;}
.y4e{bottom:490.103100px;}
.y8a{bottom:499.673100px;}
.y17{bottom:499.755600px;}
.y74{bottom:499.769100px;}
.ye5{bottom:506.207850px;}
.y4d{bottom:509.597100px;}
.y16{bottom:519.249600px;}
.y73{bottom:519.263100px;}
.ye4{bottom:522.707850px;}
.y4c{bottom:529.091100px;}
.y89{bottom:538.673100px;}
.y15{bottom:538.743600px;}
.y72{bottom:538.757100px;}
.ye3{bottom:539.207850px;}
.y4b{bottom:548.585100px;}
.ye2{bottom:555.707850px;}
.y14{bottom:558.237600px;}
.y71{bottom:558.251100px;}
.y4a{bottom:568.079100px;}
.ye1{bottom:572.207850px;}
.y70{bottom:577.745100px;}
.y49{bottom:587.573100px;}
.ye0{bottom:588.707850px;}
.y6f{bottom:597.239100px;}
.ydf{bottom:605.207850px;}
.y13{bottom:606.986850px;}
.y48{bottom:607.067100px;}
.y6e{bottom:616.733100px;}
.yde{bottom:621.707850px;}
.y12{bottom:626.480850px;}
.y47{bottom:626.561100px;}
.y6d{bottom:636.227100px;}
.ydd{bottom:638.207850px;}
.y46{bottom:646.055100px;}
.ydc{bottom:654.707850px;}
.y6c{bottom:655.721100px;}
.y11{bottom:665.483100px;}
.y45{bottom:665.549100px;}
.ydb{bottom:671.207850px;}
.y6b{bottom:675.215100px;}
.y10{bottom:684.977100px;}
.y44{bottom:685.043100px;}
.yda{bottom:687.707850px;}
.y6a{bottom:694.709100px;}
.yd9{bottom:704.207850px;}
.yf{bottom:704.471100px;}
.y43{bottom:704.537100px;}
.y69{bottom:714.203100px;}
.yd8{bottom:720.707850px;}
.ye{bottom:723.965100px;}
.y42{bottom:724.031100px;}
.y68{bottom:733.697100px;}
.yd7{bottom:737.207850px;}
.yd{bottom:743.459100px;}
.y41{bottom:743.525100px;}
.y67{bottom:753.191100px;}
.yd6{bottom:753.707850px;}
.yc{bottom:762.953100px;}
.y40{bottom:763.019100px;}
.yd5{bottom:770.207850px;}
.y66{bottom:772.685100px;}
.yb{bottom:782.447100px;}
.y3f{bottom:782.513100px;}
.yd4{bottom:786.707850px;}
.y65{bottom:792.179100px;}
.ya{bottom:801.941100px;}
.y3e{bottom:802.007100px;}
.yd3{bottom:803.207850px;}
.y64{bottom:811.673100px;}
.yd2{bottom:819.707850px;}
.y9{bottom:821.435100px;}
.y3d{bottom:821.501100px;}
.yd1{bottom:836.207850px;}
.y8{bottom:840.929100px;}
.y3c{bottom:840.995100px;}
.y63{bottom:850.673100px;}
.yd0{bottom:852.707850px;}
.y7{bottom:860.423100px;}
.y3b{bottom:860.489100px;}
.ycf{bottom:869.207850px;}
.y3a{bottom:879.983100px;}
.yce{bottom:885.707850px;}
.y6{bottom:889.673100px;}
.y39{bottom:899.477100px;}
.ycd{bottom:902.207850px;}
.y5{bottom:909.173100px;}
.ycc{bottom:918.707850px;}
.y38{bottom:918.971100px;}
.ycb{bottom:935.207850px;}
.y37{bottom:938.465100px;}
.yca{bottom:951.707850px;}
.y36{bottom:957.959100px;}
.y4{bottom:967.667100px;}
.yc9{bottom:968.207850px;}
.y35{bottom:977.453100px;}
.yc8{bottom:984.707850px;}
.y34{bottom:996.947100px;}
.yc7{bottom:1001.207850px;}
.y3{bottom:1006.673100px;}
.y33{bottom:1016.441100px;}
.yc6{bottom:1017.707850px;}
.yc5{bottom:1034.207850px;}
.y32{bottom:1035.935100px;}
.y2{bottom:1045.673100px;}
.yc4{bottom:1050.707850px;}
.y31{bottom:1055.429100px;}
.yc3{bottom:1067.207850px;}
.y30{bottom:1074.923100px;}
.y28{bottom:1074.923250px;}
.yc2{bottom:1083.707850px;}
.y1{bottom:1130.598450px;}
.h9{height:32.550000px;}
.ha{height:34.945312px;}
.h2{height:37.200000px;}
.hb{height:42.351000px;}
.h7{height:42.672000px;}
.h5{height:50.673000px;}
.h8{height:53.496000px;}
.h6{height:55.023000px;}
.hd{height:55.461000px;}
.h3{height:55.800000px;}
.hc{height:66.870000px;}
.h4{height:98.076000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535400px;}
.x4{left:83.448900px;}
.x3{left:102.048750px;}
.x1{left:113.102400px;}
.x8{left:165.826800px;}
.x9{left:191.334300px;}
.x5{left:488.850000px;}
.x7{left:600.675000px;}
.x6{left:707.085000px;}
@media print{
.v2{vertical-align:-12.453333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.256000pt;}
.v1{vertical-align:16.320000pt;}
.lsd{letter-spacing:-1.672000pt;}
.ls7{letter-spacing:-1.266667pt;}
.ls9{letter-spacing:-0.253333pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.746667pt;}
.ls4{letter-spacing:1.520000pt;}
.ls3{letter-spacing:3.546667pt;}
.lsc{letter-spacing:4.306667pt;}
.ls5{letter-spacing:10.133333pt;}
.ls6{letter-spacing:10.239733pt;}
.ls2{letter-spacing:77.857067pt;}
.lsb{letter-spacing:77.858667pt;}
.lsa{letter-spacing:77.875200pt;}
.ls8{letter-spacing:77.880533pt;}
.lse{letter-spacing:77.885867pt;}
.ws0{word-spacing:-11.400000pt;}
.ws80{word-spacing:-11.146667pt;}
.wscb{word-spacing:-9.728000pt;}
.ws44{word-spacing:-9.600000pt;}
.wse2{word-spacing:-9.386667pt;}
.ws66{word-spacing:-5.624000pt;}
.ws96{word-spacing:-4.408000pt;}
.ws84{word-spacing:-4.256000pt;}
.ws89{word-spacing:-3.850667pt;}
.wsb6{word-spacing:-3.040000pt;}
.ws41{word-spacing:-2.989333pt;}
.ws70{word-spacing:-2.938667pt;}
.ws23{word-spacing:-2.837333pt;}
.wsc8{word-spacing:-2.634667pt;}
.wsab{word-spacing:-2.584000pt;}
.ws7d{word-spacing:-2.533333pt;}
.ws57{word-spacing:-2.482667pt;}
.ws10{word-spacing:-2.432000pt;}
.ws47{word-spacing:-2.381333pt;}
.ws4b{word-spacing:-2.280000pt;}
.ws3b{word-spacing:-2.229333pt;}
.wsbe{word-spacing:-2.128000pt;}
.ws54{word-spacing:-2.077333pt;}
.wsb7{word-spacing:-2.026667pt;}
.ws51{word-spacing:-1.976000pt;}
.ws3f{word-spacing:-1.925333pt;}
.ws61{word-spacing:-1.874667pt;}
.ws4f{word-spacing:-1.824000pt;}
.wsa1{word-spacing:-1.773333pt;}
.ws18{word-spacing:-1.722667pt;}
.wsb8{word-spacing:-1.672000pt;}
.wsb{word-spacing:-1.621333pt;}
.ws4c{word-spacing:-1.600000pt;}
.ws5b{word-spacing:-1.520000pt;}
.ws8e{word-spacing:-1.469333pt;}
.ws88{word-spacing:-1.418667pt;}
.ws6b{word-spacing:-1.368000pt;}
.ws36{word-spacing:-1.317333pt;}
.ws2a{word-spacing:-1.266667pt;}
.wsc6{word-spacing:-1.216000pt;}
.ws9a{word-spacing:-1.165333pt;}
.wsd5{word-spacing:-1.114667pt;}
.ws40{word-spacing:-1.064000pt;}
.ws11{word-spacing:-1.013333pt;}
.ws83{word-spacing:-0.962667pt;}
.wsdb{word-spacing:-0.912000pt;}
.wse1{word-spacing:-0.853333pt;}
.wsc0{word-spacing:-0.760000pt;}
.ws7{word-spacing:-0.709333pt;}
.wsdf{word-spacing:-0.658667pt;}
.ws3e{word-spacing:-0.608000pt;}
.ws6{word-spacing:-0.557333pt;}
.ws1d{word-spacing:-0.512000pt;}
.wse{word-spacing:-0.506667pt;}
.wsa{word-spacing:-0.456000pt;}
.wse3{word-spacing:-0.426667pt;}
.ws8c{word-spacing:-0.405333pt;}
.ws3{word-spacing:-0.354667pt;}
.wsc9{word-spacing:-0.304000pt;}
.ws63{word-spacing:-0.253333pt;}
.ws94{word-spacing:-0.202667pt;}
.ws29{word-spacing:-0.152000pt;}
.wsc{word-spacing:-0.101333pt;}
.ws3a{word-spacing:-0.050667pt;}
.wsca{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.101333pt;}
.ws4{word-spacing:0.152000pt;}
.ws8a{word-spacing:0.253333pt;}
.ws68{word-spacing:0.304000pt;}
.ws31{word-spacing:0.354667pt;}
.wsba{word-spacing:0.384000pt;}
.wsa8{word-spacing:0.456000pt;}
.ws53{word-spacing:0.506667pt;}
.ws38{word-spacing:0.608000pt;}
.ws67{word-spacing:0.658667pt;}
.ws9f{word-spacing:0.709333pt;}
.ws3d{word-spacing:0.760000pt;}
.ws7e{word-spacing:0.810667pt;}
.ws91{word-spacing:0.861333pt;}
.ws1b{word-spacing:0.896000pt;}
.wsa2{word-spacing:0.912000pt;}
.ws34{word-spacing:0.962667pt;}
.ws24{word-spacing:1.013333pt;}
.ws9b{word-spacing:1.064000pt;}
.wsac{word-spacing:1.114667pt;}
.ws1c{word-spacing:1.152000pt;}
.ws15{word-spacing:1.165333pt;}
.ws4a{word-spacing:1.216000pt;}
.ws45{word-spacing:1.266667pt;}
.wsad{word-spacing:1.317333pt;}
.wsb1{word-spacing:1.368000pt;}
.ws93{word-spacing:1.418667pt;}
.ws3c{word-spacing:1.469333pt;}
.ws59{word-spacing:1.570667pt;}
.ws8f{word-spacing:1.621333pt;}
.ws9c{word-spacing:1.672000pt;}
.wsdc{word-spacing:1.722667pt;}
.ws76{word-spacing:1.773333pt;}
.ws5{word-spacing:1.824000pt;}
.ws72{word-spacing:1.925333pt;}
.wsde{word-spacing:1.976000pt;}
.ws8b{word-spacing:2.026667pt;}
.ws1a{word-spacing:2.128000pt;}
.wsb4{word-spacing:2.280000pt;}
.ws5e{word-spacing:2.330667pt;}
.ws48{word-spacing:2.432000pt;}
.ws50{word-spacing:2.482667pt;}
.ws2e{word-spacing:2.533333pt;}
.wsc2{word-spacing:2.584000pt;}
.ws9d{word-spacing:2.634667pt;}
.ws9{word-spacing:2.685333pt;}
.ws62{word-spacing:2.736000pt;}
.ws87{word-spacing:2.837333pt;}
.wsb9{word-spacing:2.888000pt;}
.ws43{word-spacing:2.989333pt;}
.ws85{word-spacing:3.040000pt;}
.ws35{word-spacing:3.090667pt;}
.wsa7{word-spacing:3.141333pt;}
.wsc7{word-spacing:3.192000pt;}
.ws7f{word-spacing:3.285333pt;}
.ws74{word-spacing:3.293333pt;}
.ws98{word-spacing:3.344000pt;}
.ws1f{word-spacing:3.394667pt;}
.ws7a{word-spacing:3.445333pt;}
.ws81{word-spacing:3.546667pt;}
.ws8d{word-spacing:3.597333pt;}
.ws75{word-spacing:3.648000pt;}
.ws12{word-spacing:3.698667pt;}
.ws52{word-spacing:3.749333pt;}
.ws39{word-spacing:3.800000pt;}
.ws46{word-spacing:3.850667pt;}
.ws56{word-spacing:3.901333pt;}
.ws5a{word-spacing:3.952000pt;}
.ws5f{word-spacing:4.002667pt;}
.wsd{word-spacing:4.053333pt;}
.wscf{word-spacing:4.104000pt;}
.ws6f{word-spacing:4.205333pt;}
.ws64{word-spacing:4.306667pt;}
.ws14{word-spacing:4.357333pt;}
.ws27{word-spacing:4.408000pt;}
.ws20{word-spacing:4.509333pt;}
.wse0{word-spacing:4.560000pt;}
.ws49{word-spacing:4.610667pt;}
.ws78{word-spacing:4.661333pt;}
.wsc1{word-spacing:4.712000pt;}
.wsbf{word-spacing:4.762667pt;}
.ws9e{word-spacing:4.813333pt;}
.ws2b{word-spacing:4.864000pt;}
.wsbd{word-spacing:4.914667pt;}
.ws55{word-spacing:4.965333pt;}
.ws79{word-spacing:5.016000pt;}
.ws2d{word-spacing:5.066667pt;}
.ws65{word-spacing:5.117333pt;}
.wsd6{word-spacing:5.168000pt;}
.ws99{word-spacing:5.218667pt;}
.ws7c{word-spacing:5.269333pt;}
.ws6a{word-spacing:5.320000pt;}
.ws8{word-spacing:5.421333pt;}
.wsa3{word-spacing:5.472000pt;}
.wsbc{word-spacing:5.522667pt;}
.wscc{word-spacing:5.573333pt;}
.wsa4{word-spacing:5.624000pt;}
.ws17{word-spacing:5.674667pt;}
.ws32{word-spacing:5.725333pt;}
.ws25{word-spacing:5.776000pt;}
.wsd2{word-spacing:5.826667pt;}
.ws22{word-spacing:5.877333pt;}
.ws21{word-spacing:6.080000pt;}
.wscd{word-spacing:6.130667pt;}
.wsc4{word-spacing:6.181333pt;}
.ws90{word-spacing:6.282667pt;}
.wsce{word-spacing:6.333333pt;}
.ws2f{word-spacing:6.637333pt;}
.ws33{word-spacing:6.688000pt;}
.ws92{word-spacing:6.789333pt;}
.wsa0{word-spacing:6.840000pt;}
.wsaa{word-spacing:6.890667pt;}
.wsd4{word-spacing:6.941333pt;}
.wsdd{word-spacing:7.042667pt;}
.wsb3{word-spacing:7.144000pt;}
.ws13{word-spacing:7.194667pt;}
.ws77{word-spacing:7.245333pt;}
.wsbb{word-spacing:7.296000pt;}
.wsa6{word-spacing:7.346667pt;}
.wsb5{word-spacing:7.397333pt;}
.ws69{word-spacing:7.498667pt;}
.wsd7{word-spacing:7.549333pt;}
.wsa5{word-spacing:7.650667pt;}
.ws19{word-spacing:7.701333pt;}
.ws58{word-spacing:7.853333pt;}
.wsaf{word-spacing:7.904000pt;}
.ws26{word-spacing:8.106667pt;}
.ws95{word-spacing:8.309333pt;}
.ws37{word-spacing:8.410667pt;}
.ws82{word-spacing:8.562667pt;}
.ws71{word-spacing:8.613333pt;}
.ws4d{word-spacing:8.664000pt;}
.wsa9{word-spacing:8.765333pt;}
.wsb0{word-spacing:8.866667pt;}
.ws73{word-spacing:8.968000pt;}
.ws42{word-spacing:9.069333pt;}
.wsc5{word-spacing:9.170667pt;}
.ws86{word-spacing:9.221333pt;}
.ws2c{word-spacing:9.272000pt;}
.wsd9{word-spacing:9.424000pt;}
.wsae{word-spacing:9.829333pt;}
.ws5c{word-spacing:10.133333pt;}
.wsd0{word-spacing:10.184000pt;}
.ws6d{word-spacing:10.234667pt;}
.ws1e{word-spacing:10.336000pt;}
.ws97{word-spacing:10.640000pt;}
.ws30{word-spacing:10.690667pt;}
.ws2{word-spacing:10.842667pt;}
.wsda{word-spacing:11.146667pt;}
.ws5d{word-spacing:11.349333pt;}
.wsf{word-spacing:11.400000pt;}
.ws6c{word-spacing:12.514667pt;}
.wsd8{word-spacing:12.717333pt;}
.wsc3{word-spacing:13.173333pt;}
.wsd3{word-spacing:13.224000pt;}
.ws60{word-spacing:13.629333pt;}
.wsb2{word-spacing:13.882667pt;}
.ws6e{word-spacing:14.541333pt;}
.ws28{word-spacing:14.946667pt;}
.ws7b{word-spacing:15.149333pt;}
.wsd1{word-spacing:16.517333pt;}
.ws16{word-spacing:18.493333pt;}
._c{margin-left:-17.877333pt;}
._7{margin-left:-11.477333pt;}
._10{margin-left:-8.058400pt;}
._5{margin-left:-6.901333pt;}
._14{margin-left:-5.573333pt;}
._3{margin-left:-4.470400pt;}
._a{margin-left:-3.127467pt;}
._2{margin-left:-2.101333pt;}
._1{margin-left:-1.066667pt;}
._6{width:0.967733pt;}
._4{width:2.101333pt;}
._8{width:3.720267pt;}
._13{width:6.333333pt;}
._d{width:9.069333pt;}
._f{width:10.133333pt;}
._b{width:79.997867pt;}
._9{width:174.554133pt;}
._e{width:582.741333pt;}
._12{width:591.488000pt;}
._16{width:592.896000pt;}
._15{width:593.834667pt;}
._11{width:597.461333pt;}
._0{width:1448.448000pt;}
.fs4{font-size:29.386667pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:20.000000pt;}
.y2e{bottom:33.333333pt;}
.y2d{bottom:46.666667pt;}
.y2a{bottom:51.169600pt;}
.y29{bottom:63.172267pt;}
.ya0{bottom:74.134133pt;}
.y9f{bottom:88.800800pt;}
.y87{bottom:88.819067pt;}
.y62{bottom:89.087200pt;}
.y2c{bottom:91.487200pt;}
.yb6{bottom:97.508533pt;}
.y9e{bottom:97.593867pt;}
.yc1{bottom:101.487200pt;}
.y88{bottom:103.485733pt;}
.y2b{bottom:106.153867pt;}
.y61{bottom:106.415200pt;}
.yfc{bottom:112.629200pt;}
.yb5{bottom:114.836533pt;}
.y9d{bottom:114.921867pt;}
.yc0{bottom:116.153867pt;}
.y60{bottom:123.743200pt;}
.yfb{bottom:127.295867pt;}
.ybf{bottom:130.820533pt;}
.yb4{bottom:132.164533pt;}
.yb0{bottom:132.228533pt;}
.y9c{bottom:132.249867pt;}
.y86{bottom:132.335200pt;}
.y5f{bottom:141.071200pt;}
.yfa{bottom:141.962533pt;}
.ybe{bottom:145.487200pt;}
.y27{bottom:149.279867pt;}
.yb3{bottom:149.492533pt;}
.yaf{bottom:149.556533pt;}
.y9b{bottom:149.577867pt;}
.y85{bottom:149.663200pt;}
.yf9{bottom:156.629200pt;}
.y5e{bottom:158.399200pt;}
.ybd{bottom:160.153867pt;}
.y26{bottom:163.946533pt;}
.yb2{bottom:166.820533pt;}
.yae{bottom:166.884533pt;}
.y9a{bottom:166.905867pt;}
.y84{bottom:166.991200pt;}
.yf8{bottom:171.295867pt;}
.ybc{bottom:174.820533pt;}
.y5d{bottom:175.727200pt;}
.y25{bottom:178.613200pt;}
.yad{bottom:184.212533pt;}
.y99{bottom:184.233867pt;}
.y83{bottom:184.319200pt;}
.yf7{bottom:185.962533pt;}
.ybb{bottom:189.487200pt;}
.y5c{bottom:193.055200pt;}
.y24{bottom:193.279867pt;}
.yf6{bottom:200.629200pt;}
.yb1{bottom:201.487200pt;}
.yac{bottom:201.540533pt;}
.y98{bottom:201.561867pt;}
.y82{bottom:201.647200pt;}
.yba{bottom:204.153867pt;}
.y5b{bottom:210.383200pt;}
.yf5{bottom:215.295867pt;}
.yab{bottom:218.868533pt;}
.y97{bottom:218.889867pt;}
.y81{bottom:218.975200pt;}
.y5a{bottom:227.711200pt;}
.yf4{bottom:229.962533pt;}
.yb9{bottom:236.153867pt;}
.y23{bottom:236.181200pt;}
.yaa{bottom:236.196533pt;}
.y96{bottom:236.217867pt;}
.y80{bottom:236.303200pt;}
.yf3{bottom:244.629200pt;}
.y59{bottom:245.039200pt;}
.y22{bottom:253.509200pt;}
.ya9{bottom:253.524533pt;}
.y95{bottom:253.545867pt;}
.y7f{bottom:253.631200pt;}
.yf2{bottom:259.295867pt;}
.y58{bottom:262.367200pt;}
.y21{bottom:270.837200pt;}
.ya8{bottom:270.852533pt;}
.y94{bottom:270.873867pt;}
.y7e{bottom:270.959200pt;}
.yf1{bottom:273.962533pt;}
.yb8{bottom:279.682533pt;}
.y57{bottom:279.695200pt;}
.y20{bottom:288.165200pt;}
.ya7{bottom:288.180533pt;}
.y93{bottom:288.201867pt;}
.y7d{bottom:288.287200pt;}
.yf0{bottom:288.629200pt;}
.yb7{bottom:297.010533pt;}
.y56{bottom:297.023200pt;}
.yef{bottom:303.295867pt;}
.y1f{bottom:305.493200pt;}
.ya6{bottom:305.508533pt;}
.y92{bottom:305.529867pt;}
.y7c{bottom:305.615200pt;}
.y55{bottom:314.351200pt;}
.yee{bottom:317.962533pt;}
.y1e{bottom:322.821200pt;}
.ya5{bottom:322.836533pt;}
.y91{bottom:322.857867pt;}
.y7b{bottom:322.943200pt;}
.y54{bottom:331.679200pt;}
.yed{bottom:332.629200pt;}
.y1d{bottom:340.149200pt;}
.ya4{bottom:340.164533pt;}
.y90{bottom:340.185867pt;}
.y7a{bottom:340.271200pt;}
.yec{bottom:347.295867pt;}
.y53{bottom:349.007200pt;}
.ya3{bottom:357.492533pt;}
.y8f{bottom:357.513867pt;}
.y1c{bottom:357.587200pt;}
.y79{bottom:357.599200pt;}
.yeb{bottom:361.962533pt;}
.y52{bottom:366.335200pt;}
.ya2{bottom:374.820533pt;}
.y8e{bottom:374.841867pt;}
.y1b{bottom:374.915200pt;}
.y78{bottom:374.927200pt;}
.yea{bottom:376.629200pt;}
.y51{bottom:383.663200pt;}
.ye9{bottom:391.295867pt;}
.y8d{bottom:392.169867pt;}
.y1a{bottom:392.243200pt;}
.y77{bottom:392.255200pt;}
.y50{bottom:400.991200pt;}
.ye8{bottom:405.962533pt;}
.ya1{bottom:409.487200pt;}
.y8c{bottom:409.497867pt;}
.y19{bottom:409.571200pt;}
.y76{bottom:409.583200pt;}
.y4f{bottom:418.319200pt;}
.ye7{bottom:420.629200pt;}
.y8b{bottom:426.825867pt;}
.y18{bottom:426.899200pt;}
.y75{bottom:426.911200pt;}
.ye6{bottom:435.295867pt;}
.y4e{bottom:435.647200pt;}
.y8a{bottom:444.153867pt;}
.y17{bottom:444.227200pt;}
.y74{bottom:444.239200pt;}
.ye5{bottom:449.962533pt;}
.y4d{bottom:452.975200pt;}
.y16{bottom:461.555200pt;}
.y73{bottom:461.567200pt;}
.ye4{bottom:464.629200pt;}
.y4c{bottom:470.303200pt;}
.y89{bottom:478.820533pt;}
.y15{bottom:478.883200pt;}
.y72{bottom:478.895200pt;}
.ye3{bottom:479.295867pt;}
.y4b{bottom:487.631200pt;}
.ye2{bottom:493.962533pt;}
.y14{bottom:496.211200pt;}
.y71{bottom:496.223200pt;}
.y4a{bottom:504.959200pt;}
.ye1{bottom:508.629200pt;}
.y70{bottom:513.551200pt;}
.y49{bottom:522.287200pt;}
.ye0{bottom:523.295867pt;}
.y6f{bottom:530.879200pt;}
.ydf{bottom:537.962533pt;}
.y13{bottom:539.543867pt;}
.y48{bottom:539.615200pt;}
.y6e{bottom:548.207200pt;}
.yde{bottom:552.629200pt;}
.y12{bottom:556.871867pt;}
.y47{bottom:556.943200pt;}
.y6d{bottom:565.535200pt;}
.ydd{bottom:567.295867pt;}
.y46{bottom:574.271200pt;}
.ydc{bottom:581.962533pt;}
.y6c{bottom:582.863200pt;}
.y11{bottom:591.540533pt;}
.y45{bottom:591.599200pt;}
.ydb{bottom:596.629200pt;}
.y6b{bottom:600.191200pt;}
.y10{bottom:608.868533pt;}
.y44{bottom:608.927200pt;}
.yda{bottom:611.295867pt;}
.y6a{bottom:617.519200pt;}
.yd9{bottom:625.962533pt;}
.yf{bottom:626.196533pt;}
.y43{bottom:626.255200pt;}
.y69{bottom:634.847200pt;}
.yd8{bottom:640.629200pt;}
.ye{bottom:643.524533pt;}
.y42{bottom:643.583200pt;}
.y68{bottom:652.175200pt;}
.yd7{bottom:655.295867pt;}
.yd{bottom:660.852533pt;}
.y41{bottom:660.911200pt;}
.y67{bottom:669.503200pt;}
.yd6{bottom:669.962533pt;}
.yc{bottom:678.180533pt;}
.y40{bottom:678.239200pt;}
.yd5{bottom:684.629200pt;}
.y66{bottom:686.831200pt;}
.yb{bottom:695.508533pt;}
.y3f{bottom:695.567200pt;}
.yd4{bottom:699.295867pt;}
.y65{bottom:704.159200pt;}
.ya{bottom:712.836533pt;}
.y3e{bottom:712.895200pt;}
.yd3{bottom:713.962533pt;}
.y64{bottom:721.487200pt;}
.yd2{bottom:728.629200pt;}
.y9{bottom:730.164533pt;}
.y3d{bottom:730.223200pt;}
.yd1{bottom:743.295867pt;}
.y8{bottom:747.492533pt;}
.y3c{bottom:747.551200pt;}
.y63{bottom:756.153867pt;}
.yd0{bottom:757.962533pt;}
.y7{bottom:764.820533pt;}
.y3b{bottom:764.879200pt;}
.ycf{bottom:772.629200pt;}
.y3a{bottom:782.207200pt;}
.yce{bottom:787.295867pt;}
.y6{bottom:790.820533pt;}
.y39{bottom:799.535200pt;}
.ycd{bottom:801.962533pt;}
.y5{bottom:808.153867pt;}
.ycc{bottom:816.629200pt;}
.y38{bottom:816.863200pt;}
.ycb{bottom:831.295867pt;}
.y37{bottom:834.191200pt;}
.yca{bottom:845.962533pt;}
.y36{bottom:851.519200pt;}
.y4{bottom:860.148533pt;}
.yc9{bottom:860.629200pt;}
.y35{bottom:868.847200pt;}
.yc8{bottom:875.295867pt;}
.y34{bottom:886.175200pt;}
.yc7{bottom:889.962533pt;}
.y3{bottom:894.820533pt;}
.y33{bottom:903.503200pt;}
.yc6{bottom:904.629200pt;}
.yc5{bottom:919.295867pt;}
.y32{bottom:920.831200pt;}
.y2{bottom:929.487200pt;}
.yc4{bottom:933.962533pt;}
.y31{bottom:938.159200pt;}
.yc3{bottom:948.629200pt;}
.y30{bottom:955.487200pt;}
.y28{bottom:955.487333pt;}
.yc2{bottom:963.295867pt;}
.y1{bottom:1004.976400pt;}
.h9{height:28.933333pt;}
.ha{height:31.062500pt;}
.h2{height:33.066667pt;}
.hb{height:37.645333pt;}
.h7{height:37.930667pt;}
.h5{height:45.042667pt;}
.h8{height:47.552000pt;}
.h6{height:48.909333pt;}
.hd{height:49.298667pt;}
.h3{height:49.600000pt;}
.hc{height:59.440000pt;}
.h4{height:87.178667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031467pt;}
.x4{left:74.176800pt;}
.x3{left:90.710000pt;}
.x1{left:100.535467pt;}
.x8{left:147.401600pt;}
.x9{left:170.074933pt;}
.x5{left:434.533333pt;}
.x7{left:533.933333pt;}
.x6{left:628.520000pt;}
}




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