
    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_92e84c238d1a8f427d40147e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_980a065e2a966553130fbb10.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.889000;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_a1e9102836a9ceaaf3d47706.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_08177bd3948e5c4777d81faa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_8e60a709eac7558e7225a346.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.726000;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_b581d0fd11d5a81a5313da9b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.456000;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:-16.872000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003300px;}
.lse{letter-spacing:0.834017px;}
.ls4{letter-spacing:0.905660px;}
.ls6{letter-spacing:2.371909px;}
.ls5{letter-spacing:2.391527px;}
.ls7{letter-spacing:2.393660px;}
.ls8{letter-spacing:2.395613px;}
.ls1{letter-spacing:2.964877px;}
.lsd{letter-spacing:2.984725px;}
.ls3{letter-spacing:2.986766px;}
.lsc{letter-spacing:2.987675px;}
.lsa{letter-spacing:2.988532px;}
.lsb{letter-spacing:2.988780px;}
.ls9{letter-spacing:90.333094px;}
.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;}
}
.ws1{word-spacing:-16.438350px;}
.ws7{word-spacing:-14.943900px;}
.ws2e{word-spacing:-14.920027px;}
.ws5b{word-spacing:-11.955150px;}
.ws76{word-spacing:-9.564150px;}
.ws41{word-spacing:-0.836858px;}
.ws61{word-spacing:-0.777083px;}
.ws50{word-spacing:-0.717307px;}
.wsad{word-spacing:-0.657532px;}
.ws84{word-spacing:-0.298878px;}
.ws93{word-spacing:-0.239102px;}
.wsda{word-spacing:-0.143462px;}
.ws82{word-spacing:-0.119551px;}
.ws36{word-spacing:-0.059776px;}
.wsa{word-spacing:-0.053798px;}
.ws75{word-spacing:-0.007980px;}
.wsa0{word-spacing:-0.002439px;}
.ws14{word-spacing:0.000000px;}
.ws55{word-spacing:0.059776px;}
.ws25{word-spacing:0.107597px;}
.wsab{word-spacing:0.119551px;}
.ws22{word-spacing:0.161395px;}
.wsa5{word-spacing:0.239102px;}
.wsc9{word-spacing:0.298878px;}
.ws8d{word-spacing:0.418429px;}
.ws28{word-spacing:0.484186px;}
.ws1e{word-spacing:0.591782px;}
.ws70{word-spacing:0.717307px;}
.ws37{word-spacing:1.016185px;}
.ws21{word-spacing:1.129766px;}
.ws68{word-spacing:1.434614px;}
.ws9c{word-spacing:1.494390px;}
.wsca{word-spacing:1.793268px;}
.wscf{word-spacing:1.853044px;}
.wscb{word-spacing:1.912819px;}
.ws62{word-spacing:1.972595px;}
.ws64{word-spacing:2.211697px;}
.ws90{word-spacing:2.391024px;}
.wsd7{word-spacing:2.391030px;}
.ws65{word-spacing:2.450800px;}
.wsc{word-spacing:2.528525px;}
.wsb6{word-spacing:2.570351px;}
.ws8f{word-spacing:2.630126px;}
.wsbb{word-spacing:2.689902px;}
.ws85{word-spacing:2.929004px;}
.ws9f{word-spacing:2.988780px;}
.ws4b{word-spacing:3.048556px;}
.ws40{word-spacing:3.108331px;}
.ws4c{word-spacing:3.526760px;}
.ws88{word-spacing:3.586536px;}
.ws95{word-spacing:3.646312px;}
.wsbc{word-spacing:3.706087px;}
.ws49{word-spacing:3.765863px;}
.ws81{word-spacing:3.885414px;}
.wsb7{word-spacing:3.945190px;}
.ws31{word-spacing:4.004965px;}
.ws8e{word-spacing:4.423394px;}
.ws45{word-spacing:4.483170px;}
.wsaf{word-spacing:4.542946px;}
.wsd8{word-spacing:4.686419px;}
.ws86{word-spacing:4.722272px;}
.ws74{word-spacing:4.751801px;}
.ws73{word-spacing:4.782060px;}
.wsa9{word-spacing:4.841824px;}
.ws2c{word-spacing:4.841856px;}
.wsd{word-spacing:4.949453px;}
.ws1b{word-spacing:5.003251px;}
.ws48{word-spacing:5.021150px;}
.ws72{word-spacing:5.200477px;}
.ws91{word-spacing:5.320028px;}
.ws99{word-spacing:5.379804px;}
.ws43{word-spacing:5.499355px;}
.wsc3{word-spacing:5.559131px;}
.wsac{word-spacing:5.738458px;}
.wsd2{word-spacing:5.798233px;}
.wscd{word-spacing:5.858009px;}
.wsbe{word-spacing:5.929754px;}
.wsbf{word-spacing:5.930522px;}
.wsbd{word-spacing:5.941670px;}
.ws5a{word-spacing:5.976489px;}
.ws5{word-spacing:5.977560px;}
.ws77{word-spacing:5.977575px;}
.ws27{word-spacing:6.240614px;}
.wsdb{word-spacing:6.264499px;}
.wsc8{word-spacing:6.276438px;}
.wsd3{word-spacing:6.395989px;}
.wsb{word-spacing:6.402010px;}
.ws2f{word-spacing:6.515540px;}
.ws3{word-spacing:6.575340px;}
.ws83{word-spacing:6.635092px;}
.wsa6{word-spacing:6.694867px;}
.ws17{word-spacing:6.724800px;}
.wsc2{word-spacing:6.754643px;}
.ws94{word-spacing:6.874194px;}
.ws9a{word-spacing:6.933970px;}
.wsaa{word-spacing:7.173072px;}
.ws3c{word-spacing:7.292623px;}
.ws4a{word-spacing:7.412174px;}
.ws59{word-spacing:7.591501px;}
.ws26{word-spacing:7.639373px;}
.ws3d{word-spacing:7.770828px;}
.ws4e{word-spacing:7.830604px;}
.ws51{word-spacing:7.890379px;}
.ws38{word-spacing:8.069706px;}
.ws3e{word-spacing:8.129482px;}
.ws35{word-spacing:8.428360px;}
.ws56{word-spacing:8.547911px;}
.wsd1{word-spacing:8.667462px;}
.wsd6{word-spacing:8.846789px;}
.ws29{word-spacing:8.984333px;}
.ws98{word-spacing:9.026116px;}
.ws63{word-spacing:9.384769px;}
.ws4f{word-spacing:9.444545px;}
.wscc{word-spacing:9.623872px;}
.ws18{word-spacing:9.629914px;}
.wsd5{word-spacing:9.743423px;}
.wsa3{word-spacing:9.803198px;}
.ws58{word-spacing:9.982525px;}
.ws3a{word-spacing:10.042301px;}
.wsc5{word-spacing:10.102076px;}
.ws20{word-spacing:10.114099px;}
.ws6f{word-spacing:10.221628px;}
.ws3b{word-spacing:10.281403px;}
.ws1d{word-spacing:10.436890px;}
.ws4d{word-spacing:10.460730px;}
.wsb5{word-spacing:10.699832px;}
.ws30{word-spacing:10.759608px;}
.ws6b{word-spacing:10.819384px;}
.wsb3{word-spacing:10.879159px;}
.ws39{word-spacing:10.938935px;}
.ws19{word-spacing:10.974874px;}
.ws24{word-spacing:11.082470px;}
.wsc0{word-spacing:11.237813px;}
.ws71{word-spacing:11.476915px;}
.ws1a{word-spacing:11.512858px;}
.wsf{word-spacing:11.566656px;}
.ws9d{word-spacing:11.656242px;}
.wsb1{word-spacing:11.775793px;}
.ws80{word-spacing:11.955120px;}
.wsce{word-spacing:12.014896px;}
.wsdc{word-spacing:12.098612px;}
.ws67{word-spacing:12.194222px;}
.ws33{word-spacing:12.253998px;}
.ws6c{word-spacing:12.493100px;}
.ws6d{word-spacing:12.911530px;}
.ws2a{word-spacing:12.911616px;}
.ws15{word-spacing:12.965414px;}
.wsb0{word-spacing:13.150632px;}
.wsa1{word-spacing:13.389734px;}
.ws16{word-spacing:13.557197px;}
.wsb2{word-spacing:13.748388px;}
.ws5d{word-spacing:13.927715px;}
.wsb9{word-spacing:13.987490px;}
.ws6a{word-spacing:14.047266px;}
.ws32{word-spacing:14.107042px;}
.ws9e{word-spacing:14.166817px;}
.ws8c{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws47{word-spacing:14.465695px;}
.ws6{word-spacing:14.496000px;}
.ws9{word-spacing:14.496038px;}
.ws8{word-spacing:14.496542px;}
.ws2{word-spacing:14.499058px;}
.ws60{word-spacing:14.525471px;}
.ws69{word-spacing:14.764573px;}
.wsd0{word-spacing:14.943900px;}
.wsb8{word-spacing:15.063451px;}
.ws46{word-spacing:15.302554px;}
.wsb4{word-spacing:15.422105px;}
.ws12{word-spacing:15.601536px;}
.ws23{word-spacing:15.709133px;}
.wsa4{word-spacing:15.960085px;}
.wse{word-spacing:15.978125px;}
.ws10{word-spacing:16.085722px;}
.wsae{word-spacing:16.199188px;}
.ws57{word-spacing:16.318739px;}
.ws5f{word-spacing:16.378514px;}
.ws89{word-spacing:16.557841px;}
.ws13{word-spacing:16.946496px;}
.wsc7{word-spacing:16.976270px;}
.ws96{word-spacing:17.036046px;}
.ws54{word-spacing:17.275148px;}
.wsd9{word-spacing:17.358878px;}
.ws11{word-spacing:17.484480px;}
.ws52{word-spacing:17.574026px;}
.ws42{word-spacing:17.872904px;}
.ws2d{word-spacing:17.932680px;}
.ws44{word-spacing:17.992456px;}
.wsd4{word-spacing:18.231558px;}
.ws2b{word-spacing:18.237658px;}
.ws1f{word-spacing:18.721843px;}
.ws9b{word-spacing:19.427070px;}
.wsa7{word-spacing:19.606397px;}
.wsc6{word-spacing:19.785724px;}
.ws97{word-spacing:20.024826px;}
.wsc4{word-spacing:20.323704px;}
.ws3f{word-spacing:20.801909px;}
.ws4{word-spacing:20.861684px;}
.wsa8{word-spacing:20.981236px;}
.ws8b{word-spacing:21.220338px;}
.ws66{word-spacing:21.459440px;}
.wsba{word-spacing:21.638767px;}
.wsa2{word-spacing:21.937645px;}
.wsc1{word-spacing:21.997421px;}
.ws34{word-spacing:22.116972px;}
.ws1c{word-spacing:22.971917px;}
.ws92{word-spacing:23.013606px;}
.ws53{word-spacing:23.432035px;}
.ws6e{word-spacing:23.671138px;}
.ws5e{word-spacing:24.029791px;}
.ws87{word-spacing:24.149342px;}
.ws8a{word-spacing:24.448220px;}
.ws5c{word-spacing:37.837955px;}
.ws79{word-spacing:71.685273px;}
.ws78{word-spacing:75.421453px;}
.ws7b{word-spacing:75.716550px;}
.ws7c{word-spacing:244.202550px;}
.ws7f{word-spacing:265.568425px;}
.ws7d{word-spacing:313.895030px;}
.ws7a{word-spacing:368.362357px;}
.ws7e{word-spacing:392.731289px;}
._0{margin-left:-5.738472px;}
._3{margin-left:-4.542931px;}
._1{margin-left:-2.869236px;}
._2{margin-left:-1.434618px;}
._7{width:1.053450px;}
._5{width:2.988780px;}
._22{width:13.987494px;}
._a{width:15.362329px;}
._21{width:16.498069px;}
._20{width:17.574030px;}
._1d{width:18.590226px;}
._1c{width:19.845514px;}
._4{width:25.392845px;}
._8{width:28.453186px;}
._23{width:29.887875px;}
._6{width:31.920170px;}
._1e{width:33.474420px;}
._9{width:35.865360px;}
._1f{width:36.941321px;}
._c{width:82.577660px;}
._18{width:98.064597px;}
._d{width:124.635746px;}
._f{width:128.424528px;}
._e{width:142.159418px;}
._12{width:144.575700px;}
._13{width:204.576097px;}
._1a{width:209.895178px;}
._19{width:214.683935px;}
._11{width:264.139158px;}
._b{width:276.664460px;}
._1b{width:277.671412px;}
._16{width:284.012077px;}
._17{width:310.860404px;}
._15{width:324.373940px;}
._10{width:328.455935px;}
._14{width:344.001756px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:38.256600px;}
.fs2{font-size:46.027200px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y50{bottom:113.332500px;}
.y32{bottom:120.223500px;}
.y4f{bottom:131.265000px;}
.yad{bottom:131.266500px;}
.y31{bottom:135.168000px;}
.yd8{bottom:149.197500px;}
.y83{bottom:149.199000px;}
.y4e{bottom:150.852000px;}
.y30{bottom:158.773500px;}
.y82{bottom:167.131500px;}
.y4d{bottom:168.784500px;}
.y2f{bottom:173.718000px;}
.y81{bottom:185.064000px;}
.y4c{bottom:186.717000px;}
.y2e{bottom:188.662500px;}
.yac{bottom:199.084500px;}
.y80{bottom:202.996500px;}
.y2d{bottom:203.605500px;}
.y4b{bottom:204.649500px;}
.y2c{bottom:218.550000px;}
.y7f{bottom:220.929000px;}
.y4a{bottom:222.582000px;}
.y2b{bottom:233.494500px;}
.y7e{bottom:238.861500px;}
.yf4{bottom:238.863000px;}
.y49{bottom:240.516000px;}
.y2a{bottom:248.437500px;}
.yd7{bottom:256.794000px;}
.yf3{bottom:256.795500px;}
.y7d{bottom:258.249000px;}
.y48{bottom:258.448500px;}
.y29{bottom:263.382000px;}
.yd6{bottom:274.728000px;}
.y7c{bottom:276.181500px;}
.y47{bottom:276.381000px;}
.y28{bottom:278.325000px;}
.yd5{bottom:292.660500px;}
.yf2{bottom:292.752000px;}
.y27{bottom:293.269500px;}
.y7b{bottom:294.114000px;}
.y46{bottom:295.966500px;}
.yd4{bottom:310.593000px;}
.yf1{bottom:310.684500px;}
.y7a{bottom:312.046500px;}
.y45{bottom:313.899000px;}
.y26{bottom:316.875000px;}
.yd3{bottom:328.525500px;}
.yf0{bottom:328.617000px;}
.y79{bottom:331.432500px;}
.y25{bottom:331.819500px;}
.y44{bottom:331.833000px;}
.yd2{bottom:346.458000px;}
.yef{bottom:346.549500px;}
.y24{bottom:346.764000px;}
.y78{bottom:349.365000px;}
.y43{bottom:349.765500px;}
.y23{bottom:361.707000px;}
.yd1{bottom:364.392000px;}
.yee{bottom:364.483500px;}
.y77{bottom:367.299000px;}
.y42{bottom:367.698000px;}
.y22{bottom:376.651500px;}
.yd0{bottom:382.324500px;}
.yed{bottom:382.416000px;}
.y76{bottom:385.231500px;}
.y41{bottom:385.630500px;}
.y21{bottom:391.596000px;}
.ycf{bottom:400.257000px;}
.yec{bottom:400.348500px;}
.y75{bottom:403.164000px;}
.y40{bottom:403.563000px;}
.y20{bottom:406.539000px;}
.yce{bottom:418.189500px;}
.yeb{bottom:418.372500px;}
.yab{bottom:419.332500px;}
.y74{bottom:421.096500px;}
.y1f{bottom:421.483500px;}
.y3f{bottom:421.495500px;}
.ycd{bottom:436.122000px;}
.yea{bottom:436.305000px;}
.y1e{bottom:436.426500px;}
.yaa{bottom:437.266500px;}
.y3e{bottom:439.429500px;}
.y73{bottom:445.086000px;}
.y1d{bottom:451.371000px;}
.ycc{bottom:454.054500px;}
.ye9{bottom:454.237500px;}
.ya9{bottom:455.199000px;}
.y3d{bottom:457.362000px;}
.y72{bottom:463.020000px;}
.y1c{bottom:466.315500px;}
.ycb{bottom:471.988500px;}
.ye8{bottom:472.171500px;}
.ya8{bottom:473.131500px;}
.y3c{bottom:475.294500px;}
.y71{bottom:480.952500px;}
.y1b{bottom:489.921000px;}
.ye7{bottom:490.104000px;}
.ya7{bottom:491.064000px;}
.y3b{bottom:493.227000px;}
.y70{bottom:498.885000px;}
.y1a{bottom:504.865500px;}
.yca{bottom:507.853500px;}
.ye6{bottom:508.036500px;}
.ya6{bottom:508.996500px;}
.y3a{bottom:511.159500px;}
.y6f{bottom:516.817500px;}
.y19{bottom:519.808500px;}
.yc9{bottom:525.786000px;}
.ye5{bottom:525.969000px;}
.ya5{bottom:526.929000px;}
.y39{bottom:529.092000px;}
.y18{bottom:534.753000px;}
.y6e{bottom:540.807000px;}
.yc8{bottom:543.718500px;}
.ye4{bottom:543.901500px;}
.ya4{bottom:544.863000px;}
.y38{bottom:547.026000px;}
.y17{bottom:549.697500px;}
.y6d{bottom:558.741000px;}
.yc7{bottom:561.651000px;}
.ya3{bottom:562.795500px;}
.y16{bottom:564.640500px;}
.y37{bottom:564.958500px;}
.ye3{bottom:567.090000px;}
.y6c{bottom:576.673500px;}
.y15{bottom:579.585000px;}
.ya2{bottom:580.728000px;}
.y36{bottom:582.891000px;}
.yc6{bottom:584.625000px;}
.y14{bottom:594.529500px;}
.y6b{bottom:594.606000px;}
.ya1{bottom:598.660500px;}
.y35{bottom:600.823500px;}
.yc5{bottom:602.557500px;}
.y107{bottom:608.502000px;}
.y13{bottom:609.472500px;}
.ye2{bottom:610.635000px;}
.y6a{bottom:612.538500px;}
.ya0{bottom:616.593000px;}
.y34{bottom:618.756000px;}
.yc4{bottom:620.490000px;}
.y106{bottom:621.951000px;}
.y12{bottom:624.417000px;}
.y69{bottom:630.471000px;}
.y9f{bottom:634.419000px;}
.y105{bottom:635.400000px;}
.y33{bottom:636.690000px;}
.yc3{bottom:638.422500px;}
.y11{bottom:639.360000px;}
.y68{bottom:648.403500px;}
.y104{bottom:648.850500px;}
.y9e{bottom:652.351500px;}
.y10{bottom:654.304500px;}
.yc2{bottom:656.355000px;}
.y103{bottom:662.299500px;}
.y67{bottom:666.337500px;}
.yf{bottom:669.249000px;}
.y9d{bottom:670.284000px;}
.yc1{bottom:674.287500px;}
.y102{bottom:675.748500px;}
.y66{bottom:684.270000px;}
.y9c{bottom:688.216500px;}
.y101{bottom:689.199000px;}
.y100{bottom:702.648000px;}
.yc0{bottom:702.757500px;}
.y9b{bottom:706.149000px;}
.y65{bottom:715.630500px;}
.yff{bottom:716.098500px;}
.ye{bottom:722.334000px;}
.y9a{bottom:724.081500px;}
.yfe{bottom:729.547500px;}
.ybf{bottom:739.036500px;}
.yd{bottom:740.827500px;}
.y99{bottom:742.015500px;}
.yfd{bottom:742.996500px;}
.y64{bottom:756.004500px;}
.ybe{bottom:756.969000px;}
.yc{bottom:759.321000px;}
.y98{bottom:764.547000px;}
.yfc{bottom:765.189000px;}
.y63{bottom:773.938500px;}
.ybd{bottom:774.901500px;}
.yb{bottom:777.813000px;}
.yfb{bottom:787.828500px;}
.y62{bottom:791.871000px;}
.ybc{bottom:792.834000px;}
.ya{bottom:796.528500px;}
.y61{bottom:809.803500px;}
.ybb{bottom:810.766500px;}
.yfa{bottom:815.848500px;}
.y97{bottom:826.344000px;}
.y60{bottom:827.736000px;}
.yba{bottom:828.700500px;}
.yf9{bottom:833.781000px;}
.y9{bottom:834.355500px;}
.y96{bottom:836.172000px;}
.y5f{bottom:847.122000px;}
.yb9{bottom:847.603500px;}
.ye1{bottom:848.575500px;}
.y95{bottom:850.219500px;}
.yf8{bottom:851.713500px;}
.y8{bottom:852.849000px;}
.y94{bottom:864.267000px;}
.y5e{bottom:865.054500px;}
.yb8{bottom:865.537500px;}
.ye0{bottom:866.508000px;}
.yf7{bottom:869.647500px;}
.y7{bottom:871.341000px;}
.y93{bottom:878.314500px;}
.y5d{bottom:882.988500px;}
.yb7{bottom:883.470000px;}
.ydf{bottom:884.440500px;}
.yf6{bottom:887.580000px;}
.y6{bottom:889.834500px;}
.y92{bottom:892.362000px;}
.y5c{bottom:900.921000px;}
.yb6{bottom:901.402500px;}
.yde{bottom:902.373000px;}
.y91{bottom:906.409500px;}
.y5{bottom:908.550000px;}
.yf5{bottom:910.219500px;}
.y5b{bottom:918.853500px;}
.yb5{bottom:919.335000px;}
.ydd{bottom:920.307000px;}
.y90{bottom:920.457000px;}
.y8f{bottom:934.504500px;}
.y5a{bottom:936.786000px;}
.yb4{bottom:937.267500px;}
.ydc{bottom:938.239500px;}
.y8e{bottom:948.550500px;}
.y59{bottom:954.718500px;}
.yb3{bottom:955.201500px;}
.y4{bottom:955.623000px;}
.ydb{bottom:956.172000px;}
.y8d{bottom:962.598000px;}
.yb2{bottom:973.134000px;}
.y58{bottom:974.104500px;}
.y8c{bottom:976.645500px;}
.y8b{bottom:990.693000px;}
.yb1{bottom:991.066500px;}
.yda{bottom:992.037000px;}
.y57{bottom:992.038500px;}
.y3{bottom:997.465500px;}
.y8a{bottom:1004.740500px;}
.yb0{bottom:1008.999000px;}
.yd9{bottom:1009.969500px;}
.y56{bottom:1009.971000px;}
.y89{bottom:1018.788000px;}
.yaf{bottom:1026.931500px;}
.y55{bottom:1027.903500px;}
.y88{bottom:1032.835500px;}
.y2{bottom:1039.309500px;}
.yae{bottom:1044.864000px;}
.y54{bottom:1045.836000px;}
.y87{bottom:1046.883000px;}
.y86{bottom:1060.332000px;}
.y53{bottom:1063.768500px;}
.y1{bottom:1081.152000px;}
.y52{bottom:1081.701000px;}
.y85{bottom:1086.184500px;}
.y84{bottom:1099.633500px;}
.y51{bottom:1099.635000px;}
.ha{height:16.028573px;}
.h7{height:32.900573px;}
.h8{height:33.187496px;}
.h9{height:33.426599px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h2{height:55.420714px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:73.446000px;}
.x33{left:79.423500px;}
.x15{left:83.479500px;}
.x1{left:86.557500px;}
.x19{left:88.390500px;}
.x2{left:91.183500px;}
.x17{left:100.180500px;}
.x6{left:101.986500px;}
.x1e{left:109.804500px;}
.x5{left:111.037500px;}
.x18{left:113.406000px;}
.x7{left:114.457500px;}
.x3{left:175.611000px;}
.x2f{left:183.523500px;}
.x1d{left:196.636500px;}
.x32{left:219.897000px;}
.x9{left:244.354500px;}
.x8{left:248.844000px;}
.xb{left:271.089000px;}
.xa{left:282.633000px;}
.xc{left:286.914000px;}
.x4{left:318.570000px;}
.xe{left:448.575000px;}
.x1c{left:467.967000px;}
.xd{left:475.387500px;}
.x1b{left:482.910000px;}
.xf{left:486.853500px;}
.x10{left:493.921500px;}
.x30{left:504.325500px;}
.x27{left:514.317000px;}
.x31{left:525.973500px;}
.x26{left:527.337000px;}
.x23{left:529.267500px;}
.x2d{left:530.601000px;}
.x29{left:532.303500px;}
.x2a{left:538.897500px;}
.x20{left:542.838000px;}
.x25{left:545.466000px;}
.x28{left:547.182000px;}
.x24{left:558.252000px;}
.x2c{left:561.115500px;}
.x2b{left:562.353000px;}
.x21{left:565.551000px;}
.x2e{left:590.202000px;}
.x1a{left:597.949500px;}
.x1f{left:633.474000px;}
.x12{left:652.794000px;}
.x22{left:666.601500px;}
.x14{left:683.310000px;}
.x13{left:697.245000px;}
.x11{left:699.639000px;}
@media print{
.v2{vertical-align:-14.997333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002933pt;}
.lse{letter-spacing:0.741348pt;}
.ls4{letter-spacing:0.805031pt;}
.ls6{letter-spacing:2.108364pt;}
.ls5{letter-spacing:2.125802pt;}
.ls7{letter-spacing:2.127698pt;}
.ls8{letter-spacing:2.129434pt;}
.ls1{letter-spacing:2.635446pt;}
.lsd{letter-spacing:2.653089pt;}
.ls3{letter-spacing:2.654903pt;}
.lsc{letter-spacing:2.655711pt;}
.lsa{letter-spacing:2.656473pt;}
.lsb{letter-spacing:2.656693pt;}
.ls9{letter-spacing:80.296084pt;}
.ws1{word-spacing:-14.611867pt;}
.ws7{word-spacing:-13.283467pt;}
.ws2e{word-spacing:-13.262246pt;}
.ws5b{word-spacing:-10.626800pt;}
.ws76{word-spacing:-8.501467pt;}
.ws41{word-spacing:-0.743874pt;}
.ws61{word-spacing:-0.690740pt;}
.ws50{word-spacing:-0.637606pt;}
.wsad{word-spacing:-0.584473pt;}
.ws84{word-spacing:-0.265669pt;}
.ws93{word-spacing:-0.212535pt;}
.wsda{word-spacing:-0.127522pt;}
.ws82{word-spacing:-0.106268pt;}
.ws36{word-spacing:-0.053134pt;}
.wsa{word-spacing:-0.047821pt;}
.ws75{word-spacing:-0.007093pt;}
.wsa0{word-spacing:-0.002168pt;}
.ws14{word-spacing:0.000000pt;}
.ws55{word-spacing:0.053134pt;}
.ws25{word-spacing:0.095642pt;}
.wsab{word-spacing:0.106268pt;}
.ws22{word-spacing:0.143462pt;}
.wsa5{word-spacing:0.212535pt;}
.wsc9{word-spacing:0.265669pt;}
.ws8d{word-spacing:0.371937pt;}
.ws28{word-spacing:0.430387pt;}
.ws1e{word-spacing:0.526029pt;}
.ws70{word-spacing:0.637606pt;}
.ws37{word-spacing:0.903276pt;}
.ws21{word-spacing:1.004237pt;}
.ws68{word-spacing:1.275213pt;}
.ws9c{word-spacing:1.328347pt;}
.wsca{word-spacing:1.594016pt;}
.wscf{word-spacing:1.647150pt;}
.wscb{word-spacing:1.700284pt;}
.ws62{word-spacing:1.753418pt;}
.ws64{word-spacing:1.965953pt;}
.ws90{word-spacing:2.125355pt;}
.wsd7{word-spacing:2.125360pt;}
.ws65{word-spacing:2.178489pt;}
.wsc{word-spacing:2.247578pt;}
.wsb6{word-spacing:2.284756pt;}
.ws8f{word-spacing:2.337890pt;}
.wsbb{word-spacing:2.391024pt;}
.ws85{word-spacing:2.603559pt;}
.ws9f{word-spacing:2.656693pt;}
.ws4b{word-spacing:2.709827pt;}
.ws40{word-spacing:2.762961pt;}
.ws4c{word-spacing:3.134898pt;}
.ws88{word-spacing:3.188032pt;}
.ws95{word-spacing:3.241166pt;}
.wsbc{word-spacing:3.294300pt;}
.ws49{word-spacing:3.347434pt;}
.ws81{word-spacing:3.453701pt;}
.wsb7{word-spacing:3.506835pt;}
.ws31{word-spacing:3.559969pt;}
.ws8e{word-spacing:3.931906pt;}
.ws45{word-spacing:3.985040pt;}
.wsaf{word-spacing:4.038174pt;}
.wsd8{word-spacing:4.165706pt;}
.ws86{word-spacing:4.197575pt;}
.ws74{word-spacing:4.223823pt;}
.ws73{word-spacing:4.250720pt;}
.wsa9{word-spacing:4.303843pt;}
.ws2c{word-spacing:4.303872pt;}
.wsd{word-spacing:4.399514pt;}
.ws1b{word-spacing:4.447334pt;}
.ws48{word-spacing:4.463245pt;}
.ws72{word-spacing:4.622646pt;}
.ws91{word-spacing:4.728914pt;}
.ws99{word-spacing:4.782048pt;}
.ws43{word-spacing:4.888316pt;}
.wsc3{word-spacing:4.941450pt;}
.wsac{word-spacing:5.100851pt;}
.wsd2{word-spacing:5.153985pt;}
.wscd{word-spacing:5.207119pt;}
.wsbe{word-spacing:5.270893pt;}
.wsbf{word-spacing:5.271575pt;}
.wsbd{word-spacing:5.281484pt;}
.ws5a{word-spacing:5.312435pt;}
.ws5{word-spacing:5.313387pt;}
.ws77{word-spacing:5.313400pt;}
.ws27{word-spacing:5.547213pt;}
.wsdb{word-spacing:5.568443pt;}
.wsc8{word-spacing:5.579056pt;}
.wsd3{word-spacing:5.685324pt;}
.wsb{word-spacing:5.690675pt;}
.ws2f{word-spacing:5.791591pt;}
.ws3{word-spacing:5.844747pt;}
.ws83{word-spacing:5.897859pt;}
.wsa6{word-spacing:5.950993pt;}
.ws17{word-spacing:5.977600pt;}
.wsc2{word-spacing:6.004127pt;}
.ws94{word-spacing:6.110395pt;}
.ws9a{word-spacing:6.163529pt;}
.wsaa{word-spacing:6.376064pt;}
.ws3c{word-spacing:6.482332pt;}
.ws4a{word-spacing:6.588599pt;}
.ws59{word-spacing:6.748001pt;}
.ws26{word-spacing:6.790554pt;}
.ws3d{word-spacing:6.907403pt;}
.ws4e{word-spacing:6.960537pt;}
.ws51{word-spacing:7.013670pt;}
.ws38{word-spacing:7.173072pt;}
.ws3e{word-spacing:7.226206pt;}
.ws35{word-spacing:7.491875pt;}
.ws56{word-spacing:7.598143pt;}
.wsd1{word-spacing:7.704411pt;}
.wsd6{word-spacing:7.863812pt;}
.ws29{word-spacing:7.986074pt;}
.ws98{word-spacing:8.023214pt;}
.ws63{word-spacing:8.342017pt;}
.ws4f{word-spacing:8.395151pt;}
.wscc{word-spacing:8.554553pt;}
.ws18{word-spacing:8.559923pt;}
.wsd5{word-spacing:8.660820pt;}
.wsa3{word-spacing:8.713954pt;}
.ws58{word-spacing:8.873356pt;}
.ws3a{word-spacing:8.926490pt;}
.wsc5{word-spacing:8.979623pt;}
.ws20{word-spacing:8.990310pt;}
.ws6f{word-spacing:9.085891pt;}
.ws3b{word-spacing:9.139025pt;}
.ws1d{word-spacing:9.277235pt;}
.ws4d{word-spacing:9.298427pt;}
.wsb5{word-spacing:9.510962pt;}
.ws30{word-spacing:9.564096pt;}
.ws6b{word-spacing:9.617230pt;}
.wsb3{word-spacing:9.670364pt;}
.ws39{word-spacing:9.723498pt;}
.ws19{word-spacing:9.755443pt;}
.ws24{word-spacing:9.851085pt;}
.wsc0{word-spacing:9.989167pt;}
.ws71{word-spacing:10.201702pt;}
.ws1a{word-spacing:10.233651pt;}
.wsf{word-spacing:10.281472pt;}
.ws9d{word-spacing:10.361104pt;}
.wsb1{word-spacing:10.467372pt;}
.ws80{word-spacing:10.626773pt;}
.wsce{word-spacing:10.679907pt;}
.wsdc{word-spacing:10.754322pt;}
.ws67{word-spacing:10.839309pt;}
.ws33{word-spacing:10.892443pt;}
.ws6c{word-spacing:11.104978pt;}
.ws6d{word-spacing:11.476915pt;}
.ws2a{word-spacing:11.476992pt;}
.ws15{word-spacing:11.524813pt;}
.wsb0{word-spacing:11.689451pt;}
.wsa1{word-spacing:11.901986pt;}
.ws16{word-spacing:12.050842pt;}
.wsb2{word-spacing:12.220789pt;}
.ws5d{word-spacing:12.380191pt;}
.wsb9{word-spacing:12.433325pt;}
.ws6a{word-spacing:12.486459pt;}
.ws32{word-spacing:12.539593pt;}
.ws9e{word-spacing:12.592726pt;}
.ws8c{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws47{word-spacing:12.858396pt;}
.ws6{word-spacing:12.885333pt;}
.ws9{word-spacing:12.885367pt;}
.ws8{word-spacing:12.885815pt;}
.ws2{word-spacing:12.888051pt;}
.ws60{word-spacing:12.911530pt;}
.ws69{word-spacing:13.124065pt;}
.wsd0{word-spacing:13.283467pt;}
.wsb8{word-spacing:13.389734pt;}
.ws46{word-spacing:13.602270pt;}
.wsb4{word-spacing:13.708538pt;}
.ws12{word-spacing:13.868032pt;}
.ws23{word-spacing:13.963674pt;}
.wsa4{word-spacing:14.186742pt;}
.wse{word-spacing:14.202778pt;}
.ws10{word-spacing:14.298419pt;}
.wsae{word-spacing:14.399278pt;}
.ws57{word-spacing:14.505546pt;}
.ws5f{word-spacing:14.558679pt;}
.ws89{word-spacing:14.718081pt;}
.ws13{word-spacing:15.063552pt;}
.wsc7{word-spacing:15.090018pt;}
.ws96{word-spacing:15.143152pt;}
.ws54{word-spacing:15.355687pt;}
.wsd9{word-spacing:15.430114pt;}
.ws11{word-spacing:15.541760pt;}
.ws52{word-spacing:15.621357pt;}
.ws42{word-spacing:15.887026pt;}
.ws2d{word-spacing:15.940160pt;}
.ws44{word-spacing:15.993294pt;}
.wsd4{word-spacing:16.205829pt;}
.ws2b{word-spacing:16.211251pt;}
.ws1f{word-spacing:16.641638pt;}
.ws9b{word-spacing:17.268507pt;}
.wsa7{word-spacing:17.427908pt;}
.wsc6{word-spacing:17.587310pt;}
.ws97{word-spacing:17.799845pt;}
.wsc4{word-spacing:18.065515pt;}
.ws3f{word-spacing:18.490586pt;}
.ws4{word-spacing:18.543719pt;}
.wsa8{word-spacing:18.649987pt;}
.ws8b{word-spacing:18.862523pt;}
.ws66{word-spacing:19.075058pt;}
.wsba{word-spacing:19.234460pt;}
.wsa2{word-spacing:19.500129pt;}
.wsc1{word-spacing:19.553263pt;}
.ws34{word-spacing:19.659531pt;}
.ws1c{word-spacing:20.419482pt;}
.ws92{word-spacing:20.456539pt;}
.ws53{word-spacing:20.828476pt;}
.ws6e{word-spacing:21.041011pt;}
.ws5e{word-spacing:21.359814pt;}
.ws87{word-spacing:21.466082pt;}
.ws8a{word-spacing:21.731751pt;}
.ws5c{word-spacing:33.633738pt;}
.ws79{word-spacing:63.720243pt;}
.ws78{word-spacing:67.041291pt;}
.ws7b{word-spacing:67.303600pt;}
.ws7c{word-spacing:217.068933pt;}
.ws7f{word-spacing:236.060822pt;}
.ws7d{word-spacing:279.017805pt;}
.ws7a{word-spacing:327.433206pt;}
.ws7e{word-spacing:349.094479pt;}
._0{margin-left:-5.100864pt;}
._3{margin-left:-4.038161pt;}
._1{margin-left:-2.550432pt;}
._2{margin-left:-1.275216pt;}
._7{width:0.936400pt;}
._5{width:2.656693pt;}
._22{width:12.433328pt;}
._a{width:13.655404pt;}
._21{width:14.664950pt;}
._20{width:15.621360pt;}
._1d{width:16.524645pt;}
._1c{width:17.640457pt;}
._4{width:22.571418pt;}
._8{width:25.291721pt;}
._23{width:26.567000pt;}
._6{width:28.373485pt;}
._1e{width:29.755040pt;}
._9{width:31.880320pt;}
._1f{width:32.836730pt;}
._c{width:73.402364pt;}
._18{width:87.168531pt;}
._d{width:110.787330pt;}
._f{width:114.155136pt;}
._e{width:126.363927pt;}
._12{width:128.511733pt;}
._13{width:181.845420pt;}
._1a{width:186.573491pt;}
._19{width:190.830164pt;}
._11{width:234.790363pt;}
._b{width:245.923964pt;}
._1b{width:246.819033pt;}
._16{width:252.455179pt;}
._17{width:276.320359pt;}
._15{width:288.332391pt;}
._10{width:291.960831pt;}
._14{width:305.779339pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:34.005867pt;}
.fs2{font-size:40.913067pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:100.740000pt;}
.y32{bottom:106.865333pt;}
.y4f{bottom:116.680000pt;}
.yad{bottom:116.681333pt;}
.y31{bottom:120.149333pt;}
.yd8{bottom:132.620000pt;}
.y83{bottom:132.621333pt;}
.y4e{bottom:134.090667pt;}
.y30{bottom:141.132000pt;}
.y82{bottom:148.561333pt;}
.y4d{bottom:150.030667pt;}
.y2f{bottom:154.416000pt;}
.y81{bottom:164.501333pt;}
.y4c{bottom:165.970667pt;}
.y2e{bottom:167.700000pt;}
.yac{bottom:176.964000pt;}
.y80{bottom:180.441333pt;}
.y2d{bottom:180.982667pt;}
.y4b{bottom:181.910667pt;}
.y2c{bottom:194.266667pt;}
.y7f{bottom:196.381333pt;}
.y4a{bottom:197.850667pt;}
.y2b{bottom:207.550667pt;}
.y7e{bottom:212.321333pt;}
.yf4{bottom:212.322667pt;}
.y49{bottom:213.792000pt;}
.y2a{bottom:220.833333pt;}
.yd7{bottom:228.261333pt;}
.yf3{bottom:228.262667pt;}
.y7d{bottom:229.554667pt;}
.y48{bottom:229.732000pt;}
.y29{bottom:234.117333pt;}
.yd6{bottom:244.202667pt;}
.y7c{bottom:245.494667pt;}
.y47{bottom:245.672000pt;}
.y28{bottom:247.400000pt;}
.yd5{bottom:260.142667pt;}
.yf2{bottom:260.224000pt;}
.y27{bottom:260.684000pt;}
.y7b{bottom:261.434667pt;}
.y46{bottom:263.081333pt;}
.yd4{bottom:276.082667pt;}
.yf1{bottom:276.164000pt;}
.y7a{bottom:277.374667pt;}
.y45{bottom:279.021333pt;}
.y26{bottom:281.666667pt;}
.yd3{bottom:292.022667pt;}
.yf0{bottom:292.104000pt;}
.y79{bottom:294.606667pt;}
.y25{bottom:294.950667pt;}
.y44{bottom:294.962667pt;}
.yd2{bottom:307.962667pt;}
.yef{bottom:308.044000pt;}
.y24{bottom:308.234667pt;}
.y78{bottom:310.546667pt;}
.y43{bottom:310.902667pt;}
.y23{bottom:321.517333pt;}
.yd1{bottom:323.904000pt;}
.yee{bottom:323.985333pt;}
.y77{bottom:326.488000pt;}
.y42{bottom:326.842667pt;}
.y22{bottom:334.801333pt;}
.yd0{bottom:339.844000pt;}
.yed{bottom:339.925333pt;}
.y76{bottom:342.428000pt;}
.y41{bottom:342.782667pt;}
.y21{bottom:348.085333pt;}
.ycf{bottom:355.784000pt;}
.yec{bottom:355.865333pt;}
.y75{bottom:358.368000pt;}
.y40{bottom:358.722667pt;}
.y20{bottom:361.368000pt;}
.yce{bottom:371.724000pt;}
.yeb{bottom:371.886667pt;}
.yab{bottom:372.740000pt;}
.y74{bottom:374.308000pt;}
.y1f{bottom:374.652000pt;}
.y3f{bottom:374.662667pt;}
.ycd{bottom:387.664000pt;}
.yea{bottom:387.826667pt;}
.y1e{bottom:387.934667pt;}
.yaa{bottom:388.681333pt;}
.y3e{bottom:390.604000pt;}
.y73{bottom:395.632000pt;}
.y1d{bottom:401.218667pt;}
.ycc{bottom:403.604000pt;}
.ye9{bottom:403.766667pt;}
.ya9{bottom:404.621333pt;}
.y3d{bottom:406.544000pt;}
.y72{bottom:411.573333pt;}
.y1c{bottom:414.502667pt;}
.ycb{bottom:419.545333pt;}
.ye8{bottom:419.708000pt;}
.ya8{bottom:420.561333pt;}
.y3c{bottom:422.484000pt;}
.y71{bottom:427.513333pt;}
.y1b{bottom:435.485333pt;}
.ye7{bottom:435.648000pt;}
.ya7{bottom:436.501333pt;}
.y3b{bottom:438.424000pt;}
.y70{bottom:443.453333pt;}
.y1a{bottom:448.769333pt;}
.yca{bottom:451.425333pt;}
.ye6{bottom:451.588000pt;}
.ya6{bottom:452.441333pt;}
.y3a{bottom:454.364000pt;}
.y6f{bottom:459.393333pt;}
.y19{bottom:462.052000pt;}
.yc9{bottom:467.365333pt;}
.ye5{bottom:467.528000pt;}
.ya5{bottom:468.381333pt;}
.y39{bottom:470.304000pt;}
.y18{bottom:475.336000pt;}
.y6e{bottom:480.717333pt;}
.yc8{bottom:483.305333pt;}
.ye4{bottom:483.468000pt;}
.ya4{bottom:484.322667pt;}
.y38{bottom:486.245333pt;}
.y17{bottom:488.620000pt;}
.y6d{bottom:496.658667pt;}
.yc7{bottom:499.245333pt;}
.ya3{bottom:500.262667pt;}
.y16{bottom:501.902667pt;}
.y37{bottom:502.185333pt;}
.ye3{bottom:504.080000pt;}
.y6c{bottom:512.598667pt;}
.y15{bottom:515.186667pt;}
.ya2{bottom:516.202667pt;}
.y36{bottom:518.125333pt;}
.yc6{bottom:519.666667pt;}
.y14{bottom:528.470667pt;}
.y6b{bottom:528.538667pt;}
.ya1{bottom:532.142667pt;}
.y35{bottom:534.065333pt;}
.yc5{bottom:535.606667pt;}
.y107{bottom:540.890667pt;}
.y13{bottom:541.753333pt;}
.ye2{bottom:542.786667pt;}
.y6a{bottom:544.478667pt;}
.ya0{bottom:548.082667pt;}
.y34{bottom:550.005333pt;}
.yc4{bottom:551.546667pt;}
.y106{bottom:552.845333pt;}
.y12{bottom:555.037333pt;}
.y69{bottom:560.418667pt;}
.y9f{bottom:563.928000pt;}
.y105{bottom:564.800000pt;}
.y33{bottom:565.946667pt;}
.yc3{bottom:567.486667pt;}
.y11{bottom:568.320000pt;}
.y68{bottom:576.358667pt;}
.y104{bottom:576.756000pt;}
.y9e{bottom:579.868000pt;}
.y10{bottom:581.604000pt;}
.yc2{bottom:583.426667pt;}
.y103{bottom:588.710667pt;}
.y67{bottom:592.300000pt;}
.yf{bottom:594.888000pt;}
.y9d{bottom:595.808000pt;}
.yc1{bottom:599.366667pt;}
.y102{bottom:600.665333pt;}
.y66{bottom:608.240000pt;}
.y9c{bottom:611.748000pt;}
.y101{bottom:612.621333pt;}
.y100{bottom:624.576000pt;}
.yc0{bottom:624.673333pt;}
.y9b{bottom:627.688000pt;}
.y65{bottom:636.116000pt;}
.yff{bottom:636.532000pt;}
.ye{bottom:642.074667pt;}
.y9a{bottom:643.628000pt;}
.yfe{bottom:648.486667pt;}
.ybf{bottom:656.921333pt;}
.yd{bottom:658.513333pt;}
.y99{bottom:659.569333pt;}
.yfd{bottom:660.441333pt;}
.y64{bottom:672.004000pt;}
.ybe{bottom:672.861333pt;}
.yc{bottom:674.952000pt;}
.y98{bottom:679.597333pt;}
.yfc{bottom:680.168000pt;}
.y63{bottom:687.945333pt;}
.ybd{bottom:688.801333pt;}
.yb{bottom:691.389333pt;}
.yfb{bottom:700.292000pt;}
.y62{bottom:703.885333pt;}
.ybc{bottom:704.741333pt;}
.ya{bottom:708.025333pt;}
.y61{bottom:719.825333pt;}
.ybb{bottom:720.681333pt;}
.yfa{bottom:725.198667pt;}
.y97{bottom:734.528000pt;}
.y60{bottom:735.765333pt;}
.yba{bottom:736.622667pt;}
.yf9{bottom:741.138667pt;}
.y9{bottom:741.649333pt;}
.y96{bottom:743.264000pt;}
.y5f{bottom:752.997333pt;}
.yb9{bottom:753.425333pt;}
.ye1{bottom:754.289333pt;}
.y95{bottom:755.750667pt;}
.yf8{bottom:757.078667pt;}
.y8{bottom:758.088000pt;}
.y94{bottom:768.237333pt;}
.y5e{bottom:768.937333pt;}
.yb8{bottom:769.366667pt;}
.ye0{bottom:770.229333pt;}
.yf7{bottom:773.020000pt;}
.y7{bottom:774.525333pt;}
.y93{bottom:780.724000pt;}
.y5d{bottom:784.878667pt;}
.yb7{bottom:785.306667pt;}
.ydf{bottom:786.169333pt;}
.yf6{bottom:788.960000pt;}
.y6{bottom:790.964000pt;}
.y92{bottom:793.210667pt;}
.y5c{bottom:800.818667pt;}
.yb6{bottom:801.246667pt;}
.yde{bottom:802.109333pt;}
.y91{bottom:805.697333pt;}
.y5{bottom:807.600000pt;}
.yf5{bottom:809.084000pt;}
.y5b{bottom:816.758667pt;}
.yb5{bottom:817.186667pt;}
.ydd{bottom:818.050667pt;}
.y90{bottom:818.184000pt;}
.y8f{bottom:830.670667pt;}
.y5a{bottom:832.698667pt;}
.yb4{bottom:833.126667pt;}
.ydc{bottom:833.990667pt;}
.y8e{bottom:843.156000pt;}
.y59{bottom:848.638667pt;}
.yb3{bottom:849.068000pt;}
.y4{bottom:849.442667pt;}
.ydb{bottom:849.930667pt;}
.y8d{bottom:855.642667pt;}
.yb2{bottom:865.008000pt;}
.y58{bottom:865.870667pt;}
.y8c{bottom:868.129333pt;}
.y8b{bottom:880.616000pt;}
.yb1{bottom:880.948000pt;}
.yda{bottom:881.810667pt;}
.y57{bottom:881.812000pt;}
.y3{bottom:886.636000pt;}
.y8a{bottom:893.102667pt;}
.yb0{bottom:896.888000pt;}
.yd9{bottom:897.750667pt;}
.y56{bottom:897.752000pt;}
.y89{bottom:905.589333pt;}
.yaf{bottom:912.828000pt;}
.y55{bottom:913.692000pt;}
.y88{bottom:918.076000pt;}
.y2{bottom:923.830667pt;}
.yae{bottom:928.768000pt;}
.y54{bottom:929.632000pt;}
.y87{bottom:930.562667pt;}
.y86{bottom:942.517333pt;}
.y53{bottom:945.572000pt;}
.y1{bottom:961.024000pt;}
.y52{bottom:961.512000pt;}
.y85{bottom:965.497333pt;}
.y84{bottom:977.452000pt;}
.y51{bottom:977.453333pt;}
.ha{height:14.247620pt;}
.h7{height:29.244954pt;}
.h8{height:29.499997pt;}
.h9{height:29.712533pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h2{height:49.262857pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:65.285333pt;}
.x33{left:70.598667pt;}
.x15{left:74.204000pt;}
.x1{left:76.940000pt;}
.x19{left:78.569333pt;}
.x2{left:81.052000pt;}
.x17{left:89.049333pt;}
.x6{left:90.654667pt;}
.x1e{left:97.604000pt;}
.x5{left:98.700000pt;}
.x18{left:100.805333pt;}
.x7{left:101.740000pt;}
.x3{left:156.098667pt;}
.x2f{left:163.132000pt;}
.x1d{left:174.788000pt;}
.x32{left:195.464000pt;}
.x9{left:217.204000pt;}
.x8{left:221.194667pt;}
.xb{left:240.968000pt;}
.xa{left:251.229333pt;}
.xc{left:255.034667pt;}
.x4{left:283.173333pt;}
.xe{left:398.733333pt;}
.x1c{left:415.970667pt;}
.xd{left:422.566667pt;}
.x1b{left:429.253333pt;}
.xf{left:432.758667pt;}
.x10{left:439.041333pt;}
.x30{left:448.289333pt;}
.x27{left:457.170667pt;}
.x31{left:467.532000pt;}
.x26{left:468.744000pt;}
.x23{left:470.460000pt;}
.x2d{left:471.645333pt;}
.x29{left:473.158667pt;}
.x2a{left:479.020000pt;}
.x20{left:482.522667pt;}
.x25{left:484.858667pt;}
.x28{left:486.384000pt;}
.x24{left:496.224000pt;}
.x2c{left:498.769333pt;}
.x2b{left:499.869333pt;}
.x21{left:502.712000pt;}
.x2e{left:524.624000pt;}
.x1a{left:531.510667pt;}
.x1f{left:563.088000pt;}
.x12{left:580.261333pt;}
.x22{left:592.534667pt;}
.x14{left:607.386667pt;}
.x13{left:619.773333pt;}
.x11{left:621.901333pt;}
}




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