
    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_11e77de12eee0c44349a2ca0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_dd865a51500fae7df036d214.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_df2ebfce47dd50f4d7dd6ea9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_66b087ab1fc6ea5ea6b230f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910000;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_8fa579a9e2f2a210e71ecd2b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.760000;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_04f8de23e9aa5f1300f2871f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.106000;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_4c2fb491b812ec6e90ccf8e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.482000;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-32.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.880000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.002338px;}
.lsb{letter-spacing:0.004200px;}
.lsd{letter-spacing:10.110538px;}
.lsf{letter-spacing:10.114200px;}
.lse{letter-spacing:10.116538px;}
.lsc{letter-spacing:10.120200px;}
.ls6{letter-spacing:14.078100px;}
.ls8{letter-spacing:16.976100px;}
.lsa{letter-spacing:18.230100px;}
.ls1{letter-spacing:18.748200px;}
.ls2{letter-spacing:18.750538px;}
.ls3{letter-spacing:18.754200px;}
.ls9{letter-spacing:24.680100px;}
.ls5{letter-spacing:27.440100px;}
.ls4{letter-spacing:29.886540px;}
.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;}
}
.ws1d{word-spacing:-15.278643px;}
.ws7{word-spacing:-14.943900px;}
.ws6b{word-spacing:-3.586536px;}
.ws10f{word-spacing:-3.347434px;}
.ws15{word-spacing:-3.287658px;}
.ws43{word-spacing:-3.227882px;}
.wsc4{word-spacing:-3.108331px;}
.wsd{word-spacing:-3.048556px;}
.ws8b{word-spacing:-2.809453px;}
.ws104{word-spacing:-2.778592px;}
.ws76{word-spacing:-2.689902px;}
.ws51{word-spacing:-2.651066px;}
.ws52{word-spacing:-2.630126px;}
.wsb{word-spacing:-2.510575px;}
.wsc1{word-spacing:-2.177903px;}
.wsc2{word-spacing:-2.151922px;}
.wse{word-spacing:-2.092146px;}
.ws103{word-spacing:-2.070671px;}
.ws101{word-spacing:-2.069798px;}
.ws102{word-spacing:-2.046592px;}
.ws2c{word-spacing:-1.912819px;}
.ws82{word-spacing:-1.793268px;}
.ws42{word-spacing:-1.630986px;}
.wsc3{word-spacing:-1.554166px;}
.wsc5{word-spacing:-1.434614px;}
.ws89{word-spacing:-1.374839px;}
.ws5{word-spacing:-1.315063px;}
.ws27{word-spacing:-1.075961px;}
.wsa3{word-spacing:-1.016185px;}
.wsb0{word-spacing:-0.956410px;}
.ws88{word-spacing:-0.903025px;}
.ws2e{word-spacing:-0.896634px;}
.ws2f{word-spacing:-0.836858px;}
.ws92{word-spacing:-0.798055px;}
.ws50{word-spacing:-0.777083px;}
.wsd1{word-spacing:-0.743392px;}
.wscf{word-spacing:-0.737291px;}
.wsd0{word-spacing:-0.735866px;}
.wsd2{word-spacing:-0.717307px;}
.wsf8{word-spacing:-0.680969px;}
.ws49{word-spacing:-0.657532px;}
.ws66{word-spacing:-0.485066px;}
.ws64{word-spacing:-0.484064px;}
.ws1{word-spacing:-0.478205px;}
.ws65{word-spacing:-0.477866px;}
.ws2{word-spacing:-0.469252px;}
.ws57{word-spacing:-0.358654px;}
.ws8f{word-spacing:-0.298878px;}
.wsa8{word-spacing:-0.239102px;}
.wsaa{word-spacing:-0.237866px;}
.wsa9{word-spacing:-0.233392px;}
.ws75{word-spacing:-0.166618px;}
.ws74{word-spacing:-0.119551px;}
.ws19{word-spacing:-0.059776px;}
.wsf5{word-spacing:-0.000934px;}
.ws0{word-spacing:0.000000px;}
.ws81{word-spacing:0.030608px;}
.ws80{word-spacing:0.059776px;}
.wsad{word-spacing:0.067133px;}
.wsac{word-spacing:0.073074px;}
.wsfa{word-spacing:0.116674px;}
.ws16{word-spacing:0.239102px;}
.wsca{word-spacing:0.244464px;}
.wsa2{word-spacing:0.260134px;}
.wsa1{word-spacing:0.263992px;}
.wscb{word-spacing:0.269945px;}
.wscc{word-spacing:0.272134px;}
.wscd{word-spacing:0.275992px;}
.wsf{word-spacing:0.298878px;}
.ws9b{word-spacing:0.657532px;}
.ws9c{word-spacing:0.658108px;}
.ws9d{word-spacing:0.662134px;}
.wsa{word-spacing:0.717307px;}
.ws99{word-spacing:0.756608px;}
.ws9a{word-spacing:0.777083px;}
.ws2d{word-spacing:0.896634px;}
.wsfb{word-spacing:1.075961px;}
.ws36{word-spacing:1.255288px;}
.wsb2{word-spacing:1.262134px;}
.wse4{word-spacing:1.308608px;}
.wse2{word-spacing:1.312175px;}
.wse3{word-spacing:1.315063px;}
.ws6a{word-spacing:1.374839px;}
.ws11{word-spacing:1.434614px;}
.wsd3{word-spacing:1.494390px;}
.wsd4{word-spacing:1.512934px;}
.ws60{word-spacing:1.613941px;}
.wsb1{word-spacing:1.731570px;}
.wsc{word-spacing:1.733492px;}
.wsb7{word-spacing:1.793268px;}
.ws69{word-spacing:1.833570px;}
.wsb5{word-spacing:1.853044px;}
.wsde{word-spacing:1.912819px;}
.ws7b{word-spacing:1.972595px;}
.ws8e{word-spacing:2.023792px;}
.ws8d{word-spacing:2.029963px;}
.ws8c{word-spacing:2.032370px;}
.ws37{word-spacing:2.151922px;}
.wsa6{word-spacing:2.211697px;}
.wsb6{word-spacing:2.312975px;}
.wsae{word-spacing:2.331248px;}
.ws7a{word-spacing:2.453975px;}
.ws6e{word-spacing:2.510575px;}
.ws6d{word-spacing:2.514608px;}
.ws6c{word-spacing:2.515525px;}
.ws10{word-spacing:2.570351px;}
.ws38{word-spacing:2.643570px;}
.ws28{word-spacing:2.809453px;}
.ws17{word-spacing:2.869229px;}
.wsfc{word-spacing:2.929004px;}
.ws31{word-spacing:2.988780px;}
.ws30{word-spacing:3.020134px;}
.wsb9{word-spacing:3.033266px;}
.ws29{word-spacing:3.048556px;}
.ws25{word-spacing:3.066509px;}
.ws2a{word-spacing:3.108331px;}
.ws59{word-spacing:3.137910px;}
.ws58{word-spacing:3.155666px;}
.ws5a{word-spacing:3.168107px;}
.ws3{word-spacing:3.222659px;}
.ws4{word-spacing:3.227882px;}
.wsc8{word-spacing:3.287658px;}
.wsdb{word-spacing:3.325250px;}
.wsda{word-spacing:3.329459px;}
.wsdc{word-spacing:3.347434px;}
.ws1e{word-spacing:3.407209px;}
.ws9{word-spacing:3.526760px;}
.wsa0{word-spacing:3.586536px;}
.ws9e{word-spacing:3.646312px;}
.ws4f{word-spacing:3.825638px;}
.ws4e{word-spacing:3.834608px;}
.ws4d{word-spacing:3.842134px;}
.ws73{word-spacing:4.244068px;}
.ws4c{word-spacing:4.313975px;}
.ws26{word-spacing:4.363619px;}
.ws84{word-spacing:4.374437px;}
.ws83{word-spacing:4.423394px;}
.wsba{word-spacing:4.519902px;}
.wsbc{word-spacing:4.532134px;}
.wsbb{word-spacing:4.534108px;}
.ws24{word-spacing:4.542946px;}
.ws6f{word-spacing:4.602721px;}
.ws6{word-spacing:4.662497px;}
.wsbf{word-spacing:4.782048px;}
.wsbd{word-spacing:4.841824px;}
.wsbe{word-spacing:4.842934px;}
.ws5e{word-spacing:4.891085px;}
.ws5d{word-spacing:4.899516px;}
.ws5f{word-spacing:4.901599px;}
.ws21{word-spacing:5.080926px;}
.ws9f{word-spacing:5.200477px;}
.ws22{word-spacing:5.320028px;}
.ws46{word-spacing:5.439580px;}
.wsaf{word-spacing:5.559131px;}
.wsa7{word-spacing:5.678682px;}
.wsdd{word-spacing:5.798233px;}
.ws1f{word-spacing:5.858009px;}
.ws41{word-spacing:5.880934px;}
.ws40{word-spacing:5.886617px;}
.ws7e{word-spacing:5.917784px;}
.ws4b{word-spacing:5.977560px;}
.wsfe{word-spacing:6.026717px;}
.ws100{word-spacing:6.037336px;}
.ws20{word-spacing:6.216662px;}
.wsa5{word-spacing:6.395989px;}
.ws70{word-spacing:6.426821px;}
.ws71{word-spacing:6.426919px;}
.ws72{word-spacing:6.455765px;}
.wsff{word-spacing:6.495570px;}
.ws86{word-spacing:6.635092px;}
.ws61{word-spacing:6.694867px;}
.ws85{word-spacing:6.709014px;}
.ws62{word-spacing:6.711188px;}
.wsb8{word-spacing:6.754643px;}
.ws13{word-spacing:6.814418px;}
.ws48{word-spacing:6.993745px;}
.ws47{word-spacing:7.053521px;}
.ws14{word-spacing:7.173072px;}
.wsf2{word-spacing:7.232848px;}
.wsc9{word-spacing:7.292623px;}
.ws5b{word-spacing:7.395266px;}
.ws5c{word-spacing:7.412174px;}
.ws78{word-spacing:7.465792px;}
.ws79{word-spacing:7.467007px;}
.ws77{word-spacing:7.471950px;}
.wsf7{word-spacing:7.491886px;}
.ws23{word-spacing:7.531726px;}
.wsb3{word-spacing:7.591501px;}
.ws63{word-spacing:7.651277px;}
.ws3e{word-spacing:7.689266px;}
.ws3f{word-spacing:7.711052px;}
.wsdf{word-spacing:7.752608px;}
.wsce{word-spacing:7.770828px;}
.ws3a{word-spacing:7.801228px;}
.ws39{word-spacing:7.830604px;}
.ws1a{word-spacing:7.953031px;}
.wsa4{word-spacing:8.041014px;}
.ws98{word-spacing:8.157570px;}
.ws54{word-spacing:8.177992px;}
.ws53{word-spacing:8.189257px;}
.wse1{word-spacing:8.547911px;}
.ws7f{word-spacing:8.667462px;}
.ws1c{word-spacing:8.750674px;}
.ws3b{word-spacing:8.787013px;}
.ws3d{word-spacing:8.810134px;}
.ws7d{word-spacing:8.846789px;}
.ws3c{word-spacing:9.272975px;}
.wsfd{word-spacing:9.444545px;}
.wsf4{word-spacing:9.703261px;}
.ws94{word-spacing:9.720911px;}
.ws93{word-spacing:9.721710px;}
.wsf3{word-spacing:9.722683px;}
.ws95{word-spacing:9.743423px;}
.wsf9{word-spacing:10.042301px;}
.wsc7{word-spacing:10.102076px;}
.ws12{word-spacing:10.221628px;}
.wsd9{word-spacing:10.321792px;}
.wsd7{word-spacing:10.321808px;}
.wsd8{word-spacing:10.334134px;}
.wsc0{word-spacing:10.341179px;}
.ws7c{word-spacing:10.460730px;}
.ws4a{word-spacing:10.640057px;}
.ws90{word-spacing:11.232871px;}
.ws91{word-spacing:11.237813px;}
.wsf6{word-spacing:11.297588px;}
.wsb4{word-spacing:11.536691px;}
.ws56{word-spacing:11.656242px;}
.ws8{word-spacing:12.014896px;}
.ws55{word-spacing:12.119975px;}
.ws96{word-spacing:12.194222px;}
.wsab{word-spacing:12.433325px;}
.ws2b{word-spacing:12.493100px;}
.ws18{word-spacing:12.807886px;}
.ws67{word-spacing:13.090856px;}
.ws68{word-spacing:13.114108px;}
.ws8a{word-spacing:14.286368px;}
.ws35{word-spacing:14.515213px;}
.ws32{word-spacing:14.517871px;}
.ws33{word-spacing:14.519945px;}
.ws34{word-spacing:14.525471px;}
.ws87{word-spacing:14.942400px;}
.wsc6{word-spacing:15.601432px;}
.wse0{word-spacing:16.139412px;}
.ws97{word-spacing:16.438290px;}
.wsd6{word-spacing:17.514251px;}
.wsd5{word-spacing:17.960975px;}
.ws1b{word-spacing:18.709763px;}
.ws45{word-spacing:20.311808px;}
.ws44{word-spacing:20.323704px;}
.wse5{word-spacing:56.779896px;}
.wse6{word-spacing:56.786820px;}
.wsed{word-spacing:56.787000px;}
.wsf1{word-spacing:114.948479px;}
.ws107{word-spacing:118.477200px;}
.ws108{word-spacing:122.297400px;}
.wsee{word-spacing:128.099111px;}
.ws10a{word-spacing:144.836279px;}
.wsea{word-spacing:148.365000px;}
.wseb{word-spacing:152.191200px;}
.ws106{word-spacing:152.193000px;}
.wsf0{word-spacing:157.986911px;}
.ws105{word-spacing:178.251000px;}
.ws10e{word-spacing:214.706516px;}
.wsec{word-spacing:215.308800px;}
.ws109{word-spacing:215.313000px;}
.ws10c{word-spacing:216.721950px;}
.ws10d{word-spacing:218.781079px;}
.wsef{word-spacing:225.234461px;}
.ws10b{word-spacing:500.610608px;}
.wse8{word-spacing:527.150975px;}
.wse9{word-spacing:530.496608px;}
.wse7{word-spacing:540.480934px;}
._30{margin-left:-255.651649px;}
._2e{margin-left:-235.149350px;}
._2f{margin-left:-187.775082px;}
._31{margin-left:-185.974275px;}
._2c{margin-left:-160.987213px;}
._1{margin-left:-7.746948px;}
._5{margin-left:-6.209897px;}
._3{margin-left:-4.853772px;}
._4{margin-left:-3.215934px;}
._0{margin-left:-1.721544px;}
._2{width:3.043234px;}
._6{width:5.280767px;}
._7{width:13.569061px;}
._2d{width:27.062360px;}
._9{width:71.730720px;}
._a{width:74.996954px;}
._1c{width:91.736954px;}
._26{width:121.622954px;}
._20{width:129.892379px;}
._28{width:133.419139px;}
._29{width:137.244778px;}
._f{width:143.043011px;}
._1f{width:159.780179px;}
._c{width:163.306939px;}
._d{width:167.132578px;}
._15{width:172.930811px;}
._22{width:186.320545px;}
._1e{width:189.667979px;}
._19{width:193.194739px;}
._21{width:202.818611px;}
._36{width:207.943967px;}
._24{width:210.350336px;}
._34{width:211.890195px;}
._10{width:216.208345px;}
._25{width:220.273086px;}
._35{width:221.444594px;}
._32{width:223.523277px;}
._33{width:225.647027px;}
._12{width:230.255611px;}
._23{width:232.766186px;}
._13{width:240.178361px;}
._2a{width:246.096145px;}
._1a{width:249.850166px;}
._8{width:254.823383px;}
._e{width:260.143411px;}
._11{width:270.066161px;}
._17{width:291.090365px;}
._16{width:393.964172px;}
._18{width:427.139630px;}
._2b{width:470.663033px;}
._1b{width:500.549033px;}
._14{width:555.257455px;}
._b{width:890.178235px;}
._1d{width:906.915403px;}
._27{width:936.803203px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:21.227400px;}
.fs5{font-size:21.426660px;}
.fs7{font-size:21.630240px;}
.fsa{font-size:23.586000px;}
.fs6{font-size:23.807400px;}
.fs8{font-size:24.033600px;}
.fs4{font-size:31.567200px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y16c{bottom:5.507700px;}
.y13f{bottom:5.559400px;}
.y15d{bottom:5.612221px;}
.y125{bottom:7.322111px;}
.y16b{bottom:13.062590px;}
.y13e{bottom:13.185208px;}
.y15c{bottom:13.310484px;}
.y124{bottom:18.111681px;}
.y16d{bottom:20.393478px;}
.y14b{bottom:20.506402px;}
.y15e{bottom:23.568675px;}
.y149{bottom:28.055533px;}
.y152{bottom:28.077980px;}
.y148{bottom:36.471821px;}
.y140{bottom:41.817782px;}
.y147{bottom:44.888109px;}
.y130{bottom:45.407224px;}
.y126{bottom:45.689771px;}
.y153{bottom:46.727402px;}
.y15f{bottom:47.688187px;}
.y14c{bottom:52.750055px;}
.y146{bottom:53.304397px;}
.y16e{bottom:56.370511px;}
.y154{bottom:65.376825px;}
.y127{bottom:66.817723px;}
.y160{bottom:71.807699px;}
.y141{bottom:73.763548px;}
.y12e{bottom:74.214965px;}
.y131{bottom:76.927185px;}
.y155{bottom:84.026248px;}
.y14d{bottom:84.993709px;}
.y128{bottom:87.945675px;}
.y172{bottom:91.070521px;}
.y145{bottom:91.925393px;}
.y16f{bottom:92.347544px;}
.y165{bottom:92.798799px;}
.y161{bottom:95.927210px;}
.y156{bottom:102.675671px;}
.y142{bottom:105.709313px;}
.y132{bottom:108.447146px;}
.y129{bottom:109.073627px;}
.y14e{bottom:117.237362px;}
.y162{bottom:120.046722px;}
.y157{bottom:121.325094px;}
.y170{bottom:128.324577px;}
.y12a{bottom:130.201579px;}
.y2f{bottom:135.000000px;}
.y143{bottom:137.655078px;}
.y133{bottom:139.967108px;}
.y158{bottom:139.974517px;}
.y163{bottom:144.166234px;}
.y14f{bottom:149.481016px;}
.y2e{bottom:149.944500px;}
.y176{bottom:150.228079px;}
.y12b{bottom:151.329531px;}
.y57{bottom:151.438500px;}
.y169{bottom:153.079011px;}
.y175{bottom:158.566098px;}
.y159{bottom:158.623940px;}
.y168{bottom:161.575264px;}
.y171{bottom:164.301610px;}
.y174{bottom:166.904118px;}
.y56{bottom:167.877000px;}
.y164{bottom:168.285745px;}
.y144{bottom:169.600843px;}
.y167{bottom:170.071517px;}
.y134{bottom:171.487069px;}
.y12c{bottom:172.457483px;}
.y2d{bottom:173.098500px;}
.y173{bottom:175.242137px;}
.y13a{bottom:175.308938px;}
.y15a{bottom:177.273363px;}
.y166{bottom:178.567770px;}
.y150{bottom:181.724669px;}
.y109{bottom:183.519000px;}
.y55{bottom:184.315500px;}
.y139{bottom:186.887689px;}
.y2c{bottom:189.537000px;}
.y8d{bottom:190.138500px;}
.y12d{bottom:193.585435px;}
.y138{bottom:198.466439px;}
.y54{bottom:200.754000px;}
.y12f{bottom:202.626866px;}
.y11c{bottom:205.884762px;}
.y8c{bottom:206.577000px;}
.y2b{bottom:209.890500px;}
.y137{bottom:210.045189px;}
.y10b{bottom:216.674333px;}
.y53{bottom:217.192500px;}
.y108{bottom:218.671500px;}
.y136{bottom:221.623940px;}
.y8b{bottom:223.015500px;}
.y2a{bottom:226.329000px;}
.y10c{bottom:232.572112px;}
.y135{bottom:233.202690px;}
.y52{bottom:233.629500px;}
.yb6{bottom:233.631000px;}
.y114{bottom:234.278079px;}
.y107{bottom:235.110000px;}
.y11d{bottom:236.112839px;}
.y8a{bottom:239.454000px;}
.y29{bottom:242.767500px;}
.ye1{bottom:242.974500px;}
.y51{bottom:250.068000px;}
.y106{bottom:251.547000px;}
.y115{bottom:256.351148px;}
.ye0{bottom:259.413000px;}
.y11e{bottom:259.466484px;}
.y10d{bottom:259.693809px;}
.y89{bottom:261.715500px;}
.y50{bottom:266.506500px;}
.y28{bottom:266.902500px;}
.y105{bottom:267.985500px;}
.y112{bottom:272.777616px;}
.y88{bottom:278.154000px;}
.y116{bottom:278.424218px;}
.y179{bottom:278.601000px;}
.ydf{bottom:281.086500px;}
.y11f{bottom:282.820129px;}
.y4f{bottom:282.945000px;}
.y27{bottom:283.341000px;}
.y104{bottom:284.424000px;}
.y10e{bottom:286.815506px;}
.y87{bottom:294.592500px;}
.y178{bottom:295.039500px;}
.yde{bottom:297.525000px;}
.y4e{bottom:299.383500px;}
.y117{bottom:300.497287px;}
.y103{bottom:300.862500px;}
.y26{bottom:304.533000px;}
.y120{bottom:306.173773px;}
.y86{bottom:311.031000px;}
.y10f{bottom:313.937204px;}
.ydd{bottom:313.963500px;}
.y4d{bottom:315.822000px;}
.y102{bottom:317.301000px;}
.y118{bottom:322.570357px;}
.y177{bottom:325.972500px;}
.y85{bottom:327.469500px;}
.y121{bottom:329.527418px;}
.y4c{bottom:332.260500px;}
.y101{bottom:333.739500px;}
.ydc{bottom:335.635500px;}
.y25{bottom:339.196500px;}
.y110{bottom:341.058901px;}
.y119{bottom:344.643427px;}
.y16a{bottom:345.400500px;}
.y4b{bottom:348.699000px;}
.y84{bottom:349.731000px;}
.y100{bottom:350.178000px;}
.ydb{bottom:352.074000px;}
.y122{bottom:352.881062px;}
.y24{bottom:355.635000px;}
.y4a{bottom:365.137500px;}
.yb5{bottom:365.836500px;}
.y83{bottom:366.169500px;}
.y11a{bottom:366.716496px;}
.y111{bottom:368.180598px;}
.yda{bottom:368.512500px;}
.y23{bottom:372.073500px;}
.yff{bottom:374.119500px;}
.y123{bottom:376.234707px;}
.y49{bottom:381.576000px;}
.yb4{bottom:382.275000px;}
.yfe{bottom:382.338000px;}
.y82{bottom:382.608000px;}
.y22{bottom:388.512000px;}
.y11b{bottom:388.789566px;}
.yd9{bottom:394.296000px;}
.y13c{bottom:395.589000px;}
.y48{bottom:398.013000px;}
.yb3{bottom:398.713500px;}
.y81{bottom:399.046500px;}
.y113{bottom:401.189518px;}
.y21{bottom:405.040500px;}
.yd8{bottom:410.734500px;}
.y13b{bottom:412.026000px;}
.y47{bottom:414.451500px;}
.yb2{bottom:415.152000px;}
.y80{bottom:415.485000px;}
.y20{bottom:421.479000px;}
.y46{bottom:430.890000px;}
.yb1{bottom:431.590500px;}
.y7f{bottom:431.923500px;}
.yd7{bottom:433.903500px;}
.y1f{bottom:437.917500px;}
.y10a{bottom:438.477000px;}
.y45{bottom:447.328500px;}
.y7e{bottom:448.362000px;}
.y1e{bottom:454.356000px;}
.yb0{bottom:454.612500px;}
.y44{bottom:463.767000px;}
.y7d{bottom:470.623500px;}
.yd6{bottom:470.709000px;}
.y1d{bottom:470.794500px;}
.yaf{bottom:475.533000px;}
.y43{bottom:480.205500px;}
.y7c{bottom:487.062000px;}
.yd5{bottom:487.147500px;}
.y1c{bottom:487.231500px;}
.y42{bottom:496.644000px;}
.y7b{bottom:503.500500px;}
.yd4{bottom:503.586000px;}
.y1b{bottom:503.670000px;}
.ye5{bottom:504.336000px;}
.yfd{bottom:511.504500px;}
.yae{bottom:512.179500px;}
.y41{bottom:513.082500px;}
.y7a{bottom:519.939000px;}
.yd3{bottom:520.024500px;}
.y1a{bottom:520.108500px;}
.ye4{bottom:520.773000px;}
.yad{bottom:528.618000px;}
.y40{bottom:529.521000px;}
.y79{bottom:536.377500px;}
.yd2{bottom:536.463000px;}
.y19{bottom:536.547000px;}
.ye3{bottom:537.211500px;}
.y15b{bottom:540.298500px;}
.yac{bottom:545.055000px;}
.y3f{bottom:545.959500px;}
.yfc{bottom:546.655500px;}
.y78{bottom:552.816000px;}
.yd1{bottom:552.901500px;}
.y18{bottom:552.985500px;}
.ye2{bottom:553.650000px;}
.y151{bottom:559.725000px;}
.yab{bottom:562.194000px;}
.y3e{bottom:562.396500px;}
.yfb{bottom:563.094000px;}
.y17{bottom:569.424000px;}
.yd0{bottom:570.088500px;}
.yaa{bottom:578.632500px;}
.y3d{bottom:578.835000px;}
.y77{bottom:579.336000px;}
.yfa{bottom:579.532500px;}
.y16{bottom:585.862500px;}
.ycf{bottom:586.527000px;}
.ya9{bottom:595.071000px;}
.y3c{bottom:595.273500px;}
.y76{bottom:595.774500px;}
.yf9{bottom:595.971000px;}
.y15{bottom:602.391000px;}
.ya8{bottom:611.509500px;}
.y3b{bottom:611.712000px;}
.y75{bottom:612.211500px;}
.yf8{bottom:612.409500px;}
.y14{bottom:618.829500px;}
.ya7{bottom:627.948000px;}
.y3a{bottom:628.150500px;}
.yf7{bottom:628.848000px;}
.y74{bottom:629.694000px;}
.y13{bottom:635.268000px;}
.yce{bottom:636.291000px;}
.ya6{bottom:644.385000px;}
.yf6{bottom:645.286500px;}
.y73{bottom:646.132500px;}
.y39{bottom:651.225000px;}
.y12{bottom:651.705000px;}
.ya5{bottom:660.823500px;}
.yf5{bottom:661.725000px;}
.y72{bottom:662.571000px;}
.y38{bottom:667.663500px;}
.y11{bottom:668.143500px;}
.ycd{bottom:671.442000px;}
.ya4{bottom:677.262000px;}
.yf4{bottom:678.163500px;}
.y71{bottom:679.009500px;}
.y10{bottom:684.582000px;}
.y37{bottom:687.504000px;}
.ycc{bottom:687.880500px;}
.ya3{bottom:693.700500px;}
.y70{bottom:695.448000px;}
.yf{bottom:701.020500px;}
.yf3{bottom:702.103500px;}
.y36{bottom:703.942500px;}
.ycb{bottom:704.319000px;}
.ya2{bottom:710.139000px;}
.yf2{bottom:710.323500px;}
.y6f{bottom:711.886500px;}
.ye{bottom:717.549000px;}
.yca{bottom:720.757500px;}
.y35{bottom:723.783000px;}
.ya1{bottom:726.577500px;}
.y6e{bottom:728.325000px;}
.yd{bottom:733.987500px;}
.yc9{bottom:737.196000px;}
.y34{bottom:740.220000px;}
.ya0{bottom:743.016000px;}
.y6d{bottom:744.763500px;}
.yc{bottom:750.426000px;}
.yc8{bottom:753.633000px;}
.y14a{bottom:758.209500px;}
.y9f{bottom:759.454500px;}
.y33{bottom:760.060500px;}
.y6c{bottom:761.200500px;}
.yb{bottom:766.864500px;}
.yc7{bottom:770.071500px;}
.y9e{bottom:775.893000px;}
.y32{bottom:776.499000px;}
.y13d{bottom:777.636000px;}
.y6b{bottom:777.639000px;}
.ya{bottom:783.303000px;}
.yc6{bottom:786.510000px;}
.y9d{bottom:793.030500px;}
.y6a{bottom:794.077500px;}
.y31{bottom:796.339500px;}
.y9{bottom:799.741500px;}
.yc5{bottom:802.948500px;}
.y9c{bottom:809.469000px;}
.y69{bottom:810.516000px;}
.y30{bottom:812.778000px;}
.y8{bottom:816.180000px;}
.y9b{bottom:825.907500px;}
.yc4{bottom:826.890000px;}
.y68{bottom:827.998500px;}
.y7{bottom:832.617000px;}
.yc3{bottom:835.110000px;}
.yf1{bottom:839.490000px;}
.y9a{bottom:842.346000px;}
.y67{bottom:844.437000px;}
.y6{bottom:849.055500px;}
.y99{bottom:858.784500px;}
.y66{bottom:860.875500px;}
.yf0{bottom:874.641000px;}
.y98{bottom:875.223000px;}
.y65{bottom:877.314000px;}
.yc2{bottom:883.077000px;}
.yef{bottom:891.079500px;}
.y64{bottom:893.752500px;}
.y97{bottom:898.243500px;}
.yee{bottom:907.518000px;}
.y63{bottom:910.189500px;}
.yc1{bottom:918.229500px;}
.y5{bottom:919.267500px;}
.yed{bottom:923.956500px;}
.y62{bottom:926.628000px;}
.yc0{bottom:934.666500px;}
.y96{bottom:934.890000px;}
.y4{bottom:935.706000px;}
.yec{bottom:940.395000px;}
.y61{bottom:943.066500px;}
.ybf{bottom:951.105000px;}
.y95{bottom:951.327000px;}
.yeb{bottom:956.833500px;}
.y60{bottom:959.505000px;}
.y3{bottom:959.769000px;}
.ybe{bottom:967.543500px;}
.y94{bottom:967.765500px;}
.yea{bottom:973.270500px;}
.y5f{bottom:975.943500px;}
.ybd{bottom:983.982000px;}
.y93{bottom:984.204000px;}
.ye9{bottom:989.709000px;}
.y5e{bottom:992.382000px;}
.ybc{bottom:1000.420500px;}
.y92{bottom:1000.642500px;}
.y2{bottom:1000.762500px;}
.ye8{bottom:1006.147500px;}
.y5d{bottom:1009.864500px;}
.ybb{bottom:1016.859000px;}
.y91{bottom:1017.081000px;}
.y1{bottom:1024.674000px;}
.y5c{bottom:1026.303000px;}
.ye7{bottom:1030.089000px;}
.yba{bottom:1033.297500px;}
.y90{bottom:1033.519500px;}
.ye6{bottom:1038.309000px;}
.y5b{bottom:1042.741500px;}
.yb9{bottom:1049.736000px;}
.y8f{bottom:1049.958000px;}
.y5a{bottom:1059.180000px;}
.yb8{bottom:1073.677500px;}
.y59{bottom:1075.617000px;}
.y8e{bottom:1075.618500px;}
.yb7{bottom:1081.896000px;}
.y58{bottom:1092.055500px;}
.h13{height:19.720255px;}
.hd{height:19.905367px;}
.h10{height:20.094493px;}
.h14{height:21.038712px;}
.he{height:21.236201px;}
.h11{height:21.437971px;}
.hb{height:29.325929px;}
.h7{height:37.013299px;}
.h4{height:41.125613px;}
.h6{height:42.141798px;}
.h5{height:42.620003px;}
.h3{height:51.144346px;}
.h2{height:52.002346px;}
.h1{height:61.373044px;}
.h9{height:75.494003px;}
.h8{height:75.500003px;}
.h12{height:188.922017px;}
.hc{height:190.695414px;}
.hf{height:192.507258px;}
.ha{height:412.864449px;}
.h0{height:1188.000000px;}
.w2{width:362.873135px;}
.w3{width:362.875440px;}
.w4{width:362.879823px;}
.w1{width:755.993227px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2d{left:8.414428px;}
.x1c{left:11.674932px;}
.x3a{left:15.338271px;}
.x1b{left:16.471666px;}
.x1a{left:21.490358px;}
.x33{left:36.797439px;}
.x2b{left:39.864122px;}
.x38{left:42.874674px;}
.x3b{left:51.426693px;}
.x7{left:81.000000px;}
.xa{left:87.724500px;}
.x12{left:89.967000px;}
.x8{left:95.944500px;}
.xb{left:100.426500px;}
.x1d{left:103.010511px;}
.x3c{left:110.373267px;}
.x1{left:120.903000px;}
.x9{left:170.284500px;}
.x24{left:171.317846px;}
.x34{left:177.569813px;}
.x2c{left:179.311571px;}
.x39{left:181.025314px;}
.x15{left:183.661500px;}
.x19{left:208.106186px;}
.x6{left:231.241500px;}
.x27{left:232.469751px;}
.x30{left:233.878500px;}
.x17{left:236.665500px;}
.x3{left:241.495500px;}
.x14{left:248.292000px;}
.x16{left:249.532500px;}
.x18{left:253.276500px;}
.x35{left:255.026538px;}
.x2e{left:256.039287px;}
.x37{left:277.561500px;}
.x2{left:281.640000px;}
.x26{left:302.127541px;}
.x2f{left:315.539188px;}
.x5{left:322.734000px;}
.x1f{left:329.693352px;}
.x28{left:332.578792px;}
.x1e{left:413.556062px;}
.x25{left:424.609143px;}
.x4{left:441.085500px;}
.x22{left:458.505218px;}
.x31{left:474.123000px;}
.xf{left:479.250000px;}
.xc{left:485.974500px;}
.xe{left:494.194500px;}
.xd{left:498.676500px;}
.x10{left:506.020500px;}
.x21{left:523.144317px;}
.x13{left:537.534000px;}
.x23{left:550.814941px;}
.x36{left:622.126500px;}
.x32{left:632.590500px;}
.x20{left:636.542889px;}
.x11{left:650.656500px;}
.x29{left:685.059509px;}
.x2a{left:696.866382px;}
@media print{
.v2{vertical-align:-29.226667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.226667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002079pt;}
.lsb{letter-spacing:0.003733pt;}
.lsd{letter-spacing:8.987145pt;}
.lsf{letter-spacing:8.990400pt;}
.lse{letter-spacing:8.992479pt;}
.lsc{letter-spacing:8.995733pt;}
.ls6{letter-spacing:12.513867pt;}
.ls8{letter-spacing:15.089867pt;}
.lsa{letter-spacing:16.204533pt;}
.ls1{letter-spacing:16.665067pt;}
.ls2{letter-spacing:16.667145pt;}
.ls3{letter-spacing:16.670400pt;}
.ls9{letter-spacing:21.937867pt;}
.ls5{letter-spacing:24.391200pt;}
.ls4{letter-spacing:26.565813pt;}
.ws1d{word-spacing:-13.581016pt;}
.ws7{word-spacing:-13.283467pt;}
.ws6b{word-spacing:-3.188032pt;}
.ws10f{word-spacing:-2.975497pt;}
.ws15{word-spacing:-2.922363pt;}
.ws43{word-spacing:-2.869229pt;}
.wsc4{word-spacing:-2.762961pt;}
.wsd{word-spacing:-2.709827pt;}
.ws8b{word-spacing:-2.497292pt;}
.ws104{word-spacing:-2.469859pt;}
.ws76{word-spacing:-2.391024pt;}
.ws51{word-spacing:-2.356503pt;}
.ws52{word-spacing:-2.337890pt;}
.wsb{word-spacing:-2.231622pt;}
.wsc1{word-spacing:-1.935914pt;}
.wsc2{word-spacing:-1.912819pt;}
.wse{word-spacing:-1.859685pt;}
.ws103{word-spacing:-1.840596pt;}
.ws101{word-spacing:-1.839821pt;}
.ws102{word-spacing:-1.819193pt;}
.ws2c{word-spacing:-1.700284pt;}
.ws82{word-spacing:-1.594016pt;}
.ws42{word-spacing:-1.449765pt;}
.wsc3{word-spacing:-1.381481pt;}
.wsc5{word-spacing:-1.275213pt;}
.ws89{word-spacing:-1.222079pt;}
.ws5{word-spacing:-1.168945pt;}
.ws27{word-spacing:-0.956410pt;}
.wsa3{word-spacing:-0.903276pt;}
.wsb0{word-spacing:-0.850142pt;}
.ws88{word-spacing:-0.802689pt;}
.ws2e{word-spacing:-0.797008pt;}
.ws2f{word-spacing:-0.743874pt;}
.ws92{word-spacing:-0.709382pt;}
.ws50{word-spacing:-0.690740pt;}
.wsd1{word-spacing:-0.660793pt;}
.wscf{word-spacing:-0.655370pt;}
.wsd0{word-spacing:-0.654103pt;}
.wsd2{word-spacing:-0.637606pt;}
.wsf8{word-spacing:-0.605306pt;}
.ws49{word-spacing:-0.584473pt;}
.ws66{word-spacing:-0.431170pt;}
.ws64{word-spacing:-0.430279pt;}
.ws1{word-spacing:-0.425071pt;}
.ws65{word-spacing:-0.424770pt;}
.ws2{word-spacing:-0.417113pt;}
.ws57{word-spacing:-0.318803pt;}
.ws8f{word-spacing:-0.265669pt;}
.wsa8{word-spacing:-0.212535pt;}
.wsaa{word-spacing:-0.211437pt;}
.wsa9{word-spacing:-0.207459pt;}
.ws75{word-spacing:-0.148105pt;}
.ws74{word-spacing:-0.106268pt;}
.ws19{word-spacing:-0.053134pt;}
.wsf5{word-spacing:-0.000830pt;}
.ws0{word-spacing:0.000000pt;}
.ws81{word-spacing:0.027207pt;}
.ws80{word-spacing:0.053134pt;}
.wsad{word-spacing:0.059674pt;}
.wsac{word-spacing:0.064955pt;}
.wsfa{word-spacing:0.103710pt;}
.ws16{word-spacing:0.212535pt;}
.wsca{word-spacing:0.217301pt;}
.wsa2{word-spacing:0.231230pt;}
.wsa1{word-spacing:0.234659pt;}
.wscb{word-spacing:0.239951pt;}
.wscc{word-spacing:0.241897pt;}
.wscd{word-spacing:0.245326pt;}
.wsf{word-spacing:0.265669pt;}
.ws9b{word-spacing:0.584473pt;}
.ws9c{word-spacing:0.584985pt;}
.ws9d{word-spacing:0.588563pt;}
.wsa{word-spacing:0.637606pt;}
.ws99{word-spacing:0.672541pt;}
.ws9a{word-spacing:0.690740pt;}
.ws2d{word-spacing:0.797008pt;}
.wsfb{word-spacing:0.956410pt;}
.ws36{word-spacing:1.115811pt;}
.wsb2{word-spacing:1.121897pt;}
.wse4{word-spacing:1.163207pt;}
.wse2{word-spacing:1.166378pt;}
.wse3{word-spacing:1.168945pt;}
.ws6a{word-spacing:1.222079pt;}
.ws11{word-spacing:1.275213pt;}
.wsd3{word-spacing:1.328347pt;}
.wsd4{word-spacing:1.344830pt;}
.ws60{word-spacing:1.434614pt;}
.wsb1{word-spacing:1.539173pt;}
.wsc{word-spacing:1.540882pt;}
.wsb7{word-spacing:1.594016pt;}
.ws69{word-spacing:1.629840pt;}
.wsb5{word-spacing:1.647150pt;}
.wsde{word-spacing:1.700284pt;}
.ws7b{word-spacing:1.753418pt;}
.ws8e{word-spacing:1.798926pt;}
.ws8d{word-spacing:1.804412pt;}
.ws8c{word-spacing:1.806551pt;}
.ws37{word-spacing:1.912819pt;}
.wsa6{word-spacing:1.965953pt;}
.wsb6{word-spacing:2.055978pt;}
.wsae{word-spacing:2.072221pt;}
.ws7a{word-spacing:2.181311pt;}
.ws6e{word-spacing:2.231622pt;}
.ws6d{word-spacing:2.235207pt;}
.ws6c{word-spacing:2.236022pt;}
.ws10{word-spacing:2.284756pt;}
.ws38{word-spacing:2.349840pt;}
.ws28{word-spacing:2.497292pt;}
.ws17{word-spacing:2.550426pt;}
.wsfc{word-spacing:2.603559pt;}
.ws31{word-spacing:2.656693pt;}
.ws30{word-spacing:2.684563pt;}
.wsb9{word-spacing:2.696237pt;}
.ws29{word-spacing:2.709827pt;}
.ws25{word-spacing:2.725786pt;}
.ws2a{word-spacing:2.762961pt;}
.ws59{word-spacing:2.789253pt;}
.ws58{word-spacing:2.805037pt;}
.ws5a{word-spacing:2.816095pt;}
.ws3{word-spacing:2.864586pt;}
.ws4{word-spacing:2.869229pt;}
.wsc8{word-spacing:2.922363pt;}
.wsdb{word-spacing:2.955778pt;}
.wsda{word-spacing:2.959519pt;}
.wsdc{word-spacing:2.975497pt;}
.ws1e{word-spacing:3.028630pt;}
.ws9{word-spacing:3.134898pt;}
.wsa0{word-spacing:3.188032pt;}
.ws9e{word-spacing:3.241166pt;}
.ws4f{word-spacing:3.400567pt;}
.ws4e{word-spacing:3.408541pt;}
.ws4d{word-spacing:3.415230pt;}
.ws73{word-spacing:3.772505pt;}
.ws4c{word-spacing:3.834644pt;}
.ws26{word-spacing:3.878772pt;}
.ws84{word-spacing:3.888388pt;}
.ws83{word-spacing:3.931906pt;}
.wsba{word-spacing:4.017691pt;}
.wsbc{word-spacing:4.028563pt;}
.wsbb{word-spacing:4.030318pt;}
.ws24{word-spacing:4.038174pt;}
.ws6f{word-spacing:4.091308pt;}
.ws6{word-spacing:4.144442pt;}
.wsbf{word-spacing:4.250709pt;}
.wsbd{word-spacing:4.303843pt;}
.wsbe{word-spacing:4.304830pt;}
.ws5e{word-spacing:4.347631pt;}
.ws5d{word-spacing:4.355125pt;}
.ws5f{word-spacing:4.356977pt;}
.ws21{word-spacing:4.516379pt;}
.ws9f{word-spacing:4.622646pt;}
.ws22{word-spacing:4.728914pt;}
.ws46{word-spacing:4.835182pt;}
.wsaf{word-spacing:4.941450pt;}
.wsa7{word-spacing:5.047717pt;}
.wsdd{word-spacing:5.153985pt;}
.ws1f{word-spacing:5.207119pt;}
.ws41{word-spacing:5.227497pt;}
.ws40{word-spacing:5.232548pt;}
.ws7e{word-spacing:5.260253pt;}
.ws4b{word-spacing:5.313387pt;}
.wsfe{word-spacing:5.357082pt;}
.ws100{word-spacing:5.366521pt;}
.ws20{word-spacing:5.525922pt;}
.wsa5{word-spacing:5.685324pt;}
.ws70{word-spacing:5.712730pt;}
.ws71{word-spacing:5.712817pt;}
.ws72{word-spacing:5.738458pt;}
.wsff{word-spacing:5.773840pt;}
.ws86{word-spacing:5.897859pt;}
.ws61{word-spacing:5.950993pt;}
.ws85{word-spacing:5.963568pt;}
.ws62{word-spacing:5.965501pt;}
.wsb8{word-spacing:6.004127pt;}
.ws13{word-spacing:6.057261pt;}
.ws48{word-spacing:6.216662pt;}
.ws47{word-spacing:6.269796pt;}
.ws14{word-spacing:6.376064pt;}
.wsf2{word-spacing:6.429198pt;}
.wsc9{word-spacing:6.482332pt;}
.ws5b{word-spacing:6.573570pt;}
.ws5c{word-spacing:6.588599pt;}
.ws78{word-spacing:6.636259pt;}
.ws79{word-spacing:6.637340pt;}
.ws77{word-spacing:6.641733pt;}
.wsf7{word-spacing:6.659454pt;}
.ws23{word-spacing:6.694867pt;}
.wsb3{word-spacing:6.748001pt;}
.ws63{word-spacing:6.801135pt;}
.ws3e{word-spacing:6.834903pt;}
.ws3f{word-spacing:6.854269pt;}
.wsdf{word-spacing:6.891207pt;}
.wsce{word-spacing:6.907403pt;}
.ws3a{word-spacing:6.934425pt;}
.ws39{word-spacing:6.960537pt;}
.ws1a{word-spacing:7.069361pt;}
.wsa4{word-spacing:7.147568pt;}
.ws98{word-spacing:7.251173pt;}
.ws54{word-spacing:7.269326pt;}
.ws53{word-spacing:7.279340pt;}
.wse1{word-spacing:7.598143pt;}
.ws7f{word-spacing:7.704411pt;}
.ws1c{word-spacing:7.778377pt;}
.ws3b{word-spacing:7.810678pt;}
.ws3d{word-spacing:7.831230pt;}
.ws7d{word-spacing:7.863812pt;}
.ws3c{word-spacing:8.242644pt;}
.wsfd{word-spacing:8.395151pt;}
.wsf4{word-spacing:8.625121pt;}
.ws94{word-spacing:8.640810pt;}
.ws93{word-spacing:8.641520pt;}
.wsf3{word-spacing:8.642385pt;}
.ws95{word-spacing:8.660820pt;}
.wsf9{word-spacing:8.926490pt;}
.wsc7{word-spacing:8.979623pt;}
.ws12{word-spacing:9.085891pt;}
.wsd9{word-spacing:9.174926pt;}
.wsd7{word-spacing:9.174941pt;}
.wsd8{word-spacing:9.185897pt;}
.wsc0{word-spacing:9.192159pt;}
.ws7c{word-spacing:9.298427pt;}
.ws4a{word-spacing:9.457828pt;}
.ws90{word-spacing:9.984774pt;}
.ws91{word-spacing:9.989167pt;}
.wsf6{word-spacing:10.042301pt;}
.wsb4{word-spacing:10.254836pt;}
.ws56{word-spacing:10.361104pt;}
.ws8{word-spacing:10.679907pt;}
.ws55{word-spacing:10.773311pt;}
.ws96{word-spacing:10.839309pt;}
.wsab{word-spacing:11.051844pt;}
.ws2b{word-spacing:11.104978pt;}
.ws18{word-spacing:11.384787pt;}
.ws67{word-spacing:11.636317pt;}
.ws68{word-spacing:11.656985pt;}
.ws8a{word-spacing:12.698994pt;}
.ws35{word-spacing:12.902412pt;}
.ws32{word-spacing:12.904774pt;}
.ws33{word-spacing:12.906618pt;}
.ws34{word-spacing:12.911530pt;}
.ws87{word-spacing:13.282133pt;}
.wsc6{word-spacing:13.867939pt;}
.wse0{word-spacing:14.346144pt;}
.ws97{word-spacing:14.611813pt;}
.wsd6{word-spacing:15.568223pt;}
.wsd5{word-spacing:15.965311pt;}
.ws1b{word-spacing:16.630900pt;}
.ws45{word-spacing:18.054941pt;}
.ws44{word-spacing:18.065515pt;}
.wse5{word-spacing:50.471019pt;}
.wse6{word-spacing:50.477173pt;}
.wsed{word-spacing:50.477333pt;}
.wsf1{word-spacing:102.176426pt;}
.ws107{word-spacing:105.313067pt;}
.ws108{word-spacing:108.708800pt;}
.wsee{word-spacing:113.865876pt;}
.ws10a{word-spacing:128.743359pt;}
.wsea{word-spacing:131.880000pt;}
.wseb{word-spacing:135.281067pt;}
.ws106{word-spacing:135.282667pt;}
.wsf0{word-spacing:140.432810pt;}
.ws105{word-spacing:158.445333pt;}
.ws10e{word-spacing:190.850236pt;}
.wsec{word-spacing:191.385600pt;}
.ws109{word-spacing:191.389333pt;}
.ws10c{word-spacing:192.641733pt;}
.ws10d{word-spacing:194.472070pt;}
.wsef{word-spacing:200.208410pt;}
.ws10b{word-spacing:444.987207pt;}
.wse8{word-spacing:468.578644pt;}
.wse9{word-spacing:471.552541pt;}
.wse7{word-spacing:480.427497pt;}
._30{margin-left:-227.245910pt;}
._2e{margin-left:-209.021645pt;}
._2f{margin-left:-166.911184pt;}
._31{margin-left:-165.310467pt;}
._2c{margin-left:-143.099745pt;}
._1{margin-left:-6.886176pt;}
._5{margin-left:-5.519908pt;}
._3{margin-left:-4.314464pt;}
._4{margin-left:-2.858608pt;}
._0{margin-left:-1.530261pt;}
._2{width:2.705097pt;}
._6{width:4.694015pt;}
._7{width:12.061388pt;}
._2d{width:24.055431pt;}
._9{width:63.760640pt;}
._a{width:66.663959pt;}
._1c{width:81.543959pt;}
._26{width:108.109293pt;}
._20{width:115.459892pt;}
._28{width:118.594790pt;}
._29{width:121.995358pt;}
._f{width:127.149343pt;}
._1f{width:142.026826pt;}
._c{width:145.161724pt;}
._d{width:148.562291pt;}
._15{width:153.716276pt;}
._22{width:165.618262pt;}
._1e{width:168.593759pt;}
._19{width:171.728657pt;}
._21{width:180.283210pt;}
._36{width:184.839082pt;}
._24{width:186.978077pt;}
._34{width:188.346840pt;}
._10{width:192.185196pt;}
._25{width:195.798299pt;}
._35{width:196.839639pt;}
._32{width:198.687358pt;}
._33{width:200.575135pt;}
._12{width:204.671654pt;}
._23{width:206.903277pt;}
._13{width:213.491876pt;}
._2a{width:218.752129pt;}
._1a{width:222.089037pt;}
._8{width:226.509674pt;}
._e{width:231.238588pt;}
._11{width:240.058810pt;}
._17{width:258.746991pt;}
._16{width:350.190375pt;}
._18{width:379.679671pt;}
._2b{width:418.367140pt;}
._1b{width:444.932474pt;}
._14{width:493.562182pt;}
._b{width:791.269542pt;}
._1d{width:806.147025pt;}
._27{width:832.713958pt;}
.fs9{font-size:18.868800pt;}
.fs5{font-size:19.045920pt;}
.fs7{font-size:19.226880pt;}
.fsa{font-size:20.965333pt;}
.fs6{font-size:21.162133pt;}
.fs8{font-size:21.363200pt;}
.fs4{font-size:28.059733pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y16c{bottom:4.895733pt;}
.y13f{bottom:4.941689pt;}
.y15d{bottom:4.988641pt;}
.y125{bottom:6.508543pt;}
.y16b{bottom:11.611191pt;}
.y13e{bottom:11.720185pt;}
.y15c{bottom:11.831541pt;}
.y124{bottom:16.099272pt;}
.y16d{bottom:18.127536pt;}
.y14b{bottom:18.227913pt;}
.y15e{bottom:20.949933pt;}
.y149{bottom:24.938251pt;}
.y152{bottom:24.958204pt;}
.y148{bottom:32.419396pt;}
.y140{bottom:37.171362pt;}
.y147{bottom:39.900541pt;}
.y130{bottom:40.361977pt;}
.y126{bottom:40.613130pt;}
.y153{bottom:41.535469pt;}
.y15f{bottom:42.389499pt;}
.y14c{bottom:46.888938pt;}
.y146{bottom:47.381686pt;}
.y16e{bottom:50.107121pt;}
.y154{bottom:58.112734pt;}
.y127{bottom:59.393532pt;}
.y160{bottom:63.829065pt;}
.y141{bottom:65.567598pt;}
.y12e{bottom:65.968858pt;}
.y131{bottom:68.379720pt;}
.y155{bottom:74.689998pt;}
.y14d{bottom:75.549963pt;}
.y128{bottom:78.173934pt;}
.y172{bottom:80.951574pt;}
.y145{bottom:81.711461pt;}
.y16f{bottom:82.086706pt;}
.y165{bottom:82.487821pt;}
.y161{bottom:85.268631pt;}
.y156{bottom:91.267263pt;}
.y142{bottom:93.963833pt;}
.y132{bottom:96.397463pt;}
.y129{bottom:96.954335pt;}
.y14e{bottom:104.210989pt;}
.y162{bottom:106.708197pt;}
.y157{bottom:107.844528pt;}
.y170{bottom:114.066291pt;}
.y12a{bottom:115.734737pt;}
.y2f{bottom:120.000000pt;}
.y143{bottom:122.360069pt;}
.y133{bottom:124.415207pt;}
.y158{bottom:124.421793pt;}
.y163{bottom:128.147763pt;}
.y14f{bottom:132.872014pt;}
.y2e{bottom:133.284000pt;}
.y176{bottom:133.536070pt;}
.y12b{bottom:134.515139pt;}
.y57{bottom:134.612000pt;}
.y169{bottom:136.070232pt;}
.y175{bottom:140.947643pt;}
.y159{bottom:140.999058pt;}
.y168{bottom:143.622457pt;}
.y171{bottom:146.045876pt;}
.y174{bottom:148.359216pt;}
.y56{bottom:149.224000pt;}
.y164{bottom:149.587329pt;}
.y144{bottom:150.756305pt;}
.y167{bottom:151.174682pt;}
.y134{bottom:152.432950pt;}
.y12c{bottom:153.295541pt;}
.y2d{bottom:153.865333pt;}
.y173{bottom:155.770789pt;}
.y13a{bottom:155.830167pt;}
.y15a{bottom:157.576323pt;}
.y166{bottom:158.726907pt;}
.y150{bottom:161.533039pt;}
.y109{bottom:163.128000pt;}
.y55{bottom:163.836000pt;}
.y139{bottom:166.122390pt;}
.y2c{bottom:168.477333pt;}
.y8d{bottom:169.012000pt;}
.y12d{bottom:172.075943pt;}
.y138{bottom:176.414612pt;}
.y54{bottom:178.448000pt;}
.y12f{bottom:180.112770pt;}
.y11c{bottom:183.008678pt;}
.y8c{bottom:183.624000pt;}
.y2b{bottom:186.569333pt;}
.y137{bottom:186.706835pt;}
.y10b{bottom:192.599407pt;}
.y53{bottom:193.060000pt;}
.y108{bottom:194.374667pt;}
.y136{bottom:196.999057pt;}
.y8b{bottom:198.236000pt;}
.y2a{bottom:201.181333pt;}
.y10c{bottom:206.730766pt;}
.y135{bottom:207.291280pt;}
.y52{bottom:207.670667pt;}
.yb6{bottom:207.672000pt;}
.y114{bottom:208.247181pt;}
.y107{bottom:208.986667pt;}
.y11d{bottom:209.878079pt;}
.y8a{bottom:212.848000pt;}
.y29{bottom:215.793333pt;}
.ye1{bottom:215.977333pt;}
.y51{bottom:222.282667pt;}
.y106{bottom:223.597333pt;}
.y115{bottom:227.867687pt;}
.ye0{bottom:230.589333pt;}
.y11e{bottom:230.636875pt;}
.y10d{bottom:230.838942pt;}
.y89{bottom:232.636000pt;}
.y50{bottom:236.894667pt;}
.y28{bottom:237.246667pt;}
.y105{bottom:238.209333pt;}
.y112{bottom:242.468992pt;}
.y88{bottom:247.248000pt;}
.y116{bottom:247.488194pt;}
.y179{bottom:247.645333pt;}
.ydf{bottom:249.854667pt;}
.y11f{bottom:251.395670pt;}
.y4f{bottom:251.506667pt;}
.y27{bottom:251.858667pt;}
.y104{bottom:252.821333pt;}
.y10e{bottom:254.947117pt;}
.y87{bottom:261.860000pt;}
.y178{bottom:262.257333pt;}
.yde{bottom:264.466667pt;}
.y4e{bottom:266.118667pt;}
.y117{bottom:267.108700pt;}
.y103{bottom:267.433333pt;}
.y26{bottom:270.696000pt;}
.y120{bottom:272.154465pt;}
.y86{bottom:276.472000pt;}
.y10f{bottom:279.055292pt;}
.ydd{bottom:279.078667pt;}
.y4d{bottom:280.730667pt;}
.y102{bottom:282.045333pt;}
.y118{bottom:286.729206pt;}
.y177{bottom:289.753333pt;}
.y85{bottom:291.084000pt;}
.y121{bottom:292.913260pt;}
.y4c{bottom:295.342667pt;}
.y101{bottom:296.657333pt;}
.ydc{bottom:298.342667pt;}
.y25{bottom:301.508000pt;}
.y110{bottom:303.163467pt;}
.y119{bottom:306.349712pt;}
.y16a{bottom:307.022667pt;}
.y4b{bottom:309.954667pt;}
.y84{bottom:310.872000pt;}
.y100{bottom:311.269333pt;}
.ydb{bottom:312.954667pt;}
.y122{bottom:313.672055pt;}
.y24{bottom:316.120000pt;}
.y4a{bottom:324.566667pt;}
.yb5{bottom:325.188000pt;}
.y83{bottom:325.484000pt;}
.y11a{bottom:325.970219pt;}
.y111{bottom:327.271643pt;}
.yda{bottom:327.566667pt;}
.y23{bottom:330.732000pt;}
.yff{bottom:332.550667pt;}
.y123{bottom:334.430851pt;}
.y49{bottom:339.178667pt;}
.yb4{bottom:339.800000pt;}
.yfe{bottom:339.856000pt;}
.y82{bottom:340.096000pt;}
.y22{bottom:345.344000pt;}
.y11b{bottom:345.590725pt;}
.yd9{bottom:350.485333pt;}
.y13c{bottom:351.634667pt;}
.y48{bottom:353.789333pt;}
.yb3{bottom:354.412000pt;}
.y81{bottom:354.708000pt;}
.y113{bottom:356.612905pt;}
.y21{bottom:360.036000pt;}
.yd8{bottom:365.097333pt;}
.y13b{bottom:366.245333pt;}
.y47{bottom:368.401333pt;}
.yb2{bottom:369.024000pt;}
.y80{bottom:369.320000pt;}
.y20{bottom:374.648000pt;}
.y46{bottom:383.013333pt;}
.yb1{bottom:383.636000pt;}
.y7f{bottom:383.932000pt;}
.yd7{bottom:385.692000pt;}
.y1f{bottom:389.260000pt;}
.y10a{bottom:389.757333pt;}
.y45{bottom:397.625333pt;}
.y7e{bottom:398.544000pt;}
.y1e{bottom:403.872000pt;}
.yb0{bottom:404.100000pt;}
.y44{bottom:412.237333pt;}
.y7d{bottom:418.332000pt;}
.yd6{bottom:418.408000pt;}
.y1d{bottom:418.484000pt;}
.yaf{bottom:422.696000pt;}
.y43{bottom:426.849333pt;}
.y7c{bottom:432.944000pt;}
.yd5{bottom:433.020000pt;}
.y1c{bottom:433.094667pt;}
.y42{bottom:441.461333pt;}
.y7b{bottom:447.556000pt;}
.yd4{bottom:447.632000pt;}
.y1b{bottom:447.706667pt;}
.ye5{bottom:448.298667pt;}
.yfd{bottom:454.670667pt;}
.yae{bottom:455.270667pt;}
.y41{bottom:456.073333pt;}
.y7a{bottom:462.168000pt;}
.yd3{bottom:462.244000pt;}
.y1a{bottom:462.318667pt;}
.ye4{bottom:462.909333pt;}
.yad{bottom:469.882667pt;}
.y40{bottom:470.685333pt;}
.y79{bottom:476.780000pt;}
.yd2{bottom:476.856000pt;}
.y19{bottom:476.930667pt;}
.ye3{bottom:477.521333pt;}
.y15b{bottom:480.265333pt;}
.yac{bottom:484.493333pt;}
.y3f{bottom:485.297333pt;}
.yfc{bottom:485.916000pt;}
.y78{bottom:491.392000pt;}
.yd1{bottom:491.468000pt;}
.y18{bottom:491.542667pt;}
.ye2{bottom:492.133333pt;}
.y151{bottom:497.533333pt;}
.yab{bottom:499.728000pt;}
.y3e{bottom:499.908000pt;}
.yfb{bottom:500.528000pt;}
.y17{bottom:506.154667pt;}
.yd0{bottom:506.745333pt;}
.yaa{bottom:514.340000pt;}
.y3d{bottom:514.520000pt;}
.y77{bottom:514.965333pt;}
.yfa{bottom:515.140000pt;}
.y16{bottom:520.766667pt;}
.ycf{bottom:521.357333pt;}
.ya9{bottom:528.952000pt;}
.y3c{bottom:529.132000pt;}
.y76{bottom:529.577333pt;}
.yf9{bottom:529.752000pt;}
.y15{bottom:535.458667pt;}
.ya8{bottom:543.564000pt;}
.y3b{bottom:543.744000pt;}
.y75{bottom:544.188000pt;}
.yf8{bottom:544.364000pt;}
.y14{bottom:550.070667pt;}
.ya7{bottom:558.176000pt;}
.y3a{bottom:558.356000pt;}
.yf7{bottom:558.976000pt;}
.y74{bottom:559.728000pt;}
.y13{bottom:564.682667pt;}
.yce{bottom:565.592000pt;}
.ya6{bottom:572.786667pt;}
.yf6{bottom:573.588000pt;}
.y73{bottom:574.340000pt;}
.y39{bottom:578.866667pt;}
.y12{bottom:579.293333pt;}
.ya5{bottom:587.398667pt;}
.yf5{bottom:588.200000pt;}
.y72{bottom:588.952000pt;}
.y38{bottom:593.478667pt;}
.y11{bottom:593.905333pt;}
.ycd{bottom:596.837333pt;}
.ya4{bottom:602.010667pt;}
.yf4{bottom:602.812000pt;}
.y71{bottom:603.564000pt;}
.y10{bottom:608.517333pt;}
.y37{bottom:611.114667pt;}
.ycc{bottom:611.449333pt;}
.ya3{bottom:616.622667pt;}
.y70{bottom:618.176000pt;}
.yf{bottom:623.129333pt;}
.yf3{bottom:624.092000pt;}
.y36{bottom:625.726667pt;}
.ycb{bottom:626.061333pt;}
.ya2{bottom:631.234667pt;}
.yf2{bottom:631.398667pt;}
.y6f{bottom:632.788000pt;}
.ye{bottom:637.821333pt;}
.yca{bottom:640.673333pt;}
.y35{bottom:643.362667pt;}
.ya1{bottom:645.846667pt;}
.y6e{bottom:647.400000pt;}
.yd{bottom:652.433333pt;}
.yc9{bottom:655.285333pt;}
.y34{bottom:657.973333pt;}
.ya0{bottom:660.458667pt;}
.y6d{bottom:662.012000pt;}
.yc{bottom:667.045333pt;}
.yc8{bottom:669.896000pt;}
.y14a{bottom:673.964000pt;}
.y9f{bottom:675.070667pt;}
.y33{bottom:675.609333pt;}
.y6c{bottom:676.622667pt;}
.yb{bottom:681.657333pt;}
.yc7{bottom:684.508000pt;}
.y9e{bottom:689.682667pt;}
.y32{bottom:690.221333pt;}
.y13d{bottom:691.232000pt;}
.y6b{bottom:691.234667pt;}
.ya{bottom:696.269333pt;}
.yc6{bottom:699.120000pt;}
.y9d{bottom:704.916000pt;}
.y6a{bottom:705.846667pt;}
.y31{bottom:707.857333pt;}
.y9{bottom:710.881333pt;}
.yc5{bottom:713.732000pt;}
.y9c{bottom:719.528000pt;}
.y69{bottom:720.458667pt;}
.y30{bottom:722.469333pt;}
.y8{bottom:725.493333pt;}
.y9b{bottom:734.140000pt;}
.yc4{bottom:735.013333pt;}
.y68{bottom:735.998667pt;}
.y7{bottom:740.104000pt;}
.yc3{bottom:742.320000pt;}
.yf1{bottom:746.213333pt;}
.y9a{bottom:748.752000pt;}
.y67{bottom:750.610667pt;}
.y6{bottom:754.716000pt;}
.y99{bottom:763.364000pt;}
.y66{bottom:765.222667pt;}
.yf0{bottom:777.458667pt;}
.y98{bottom:777.976000pt;}
.y65{bottom:779.834667pt;}
.yc2{bottom:784.957333pt;}
.yef{bottom:792.070667pt;}
.y64{bottom:794.446667pt;}
.y97{bottom:798.438667pt;}
.yee{bottom:806.682667pt;}
.y63{bottom:809.057333pt;}
.yc1{bottom:816.204000pt;}
.y5{bottom:817.126667pt;}
.yed{bottom:821.294667pt;}
.y62{bottom:823.669333pt;}
.yc0{bottom:830.814667pt;}
.y96{bottom:831.013333pt;}
.y4{bottom:831.738667pt;}
.yec{bottom:835.906667pt;}
.y61{bottom:838.281333pt;}
.ybf{bottom:845.426667pt;}
.y95{bottom:845.624000pt;}
.yeb{bottom:850.518667pt;}
.y60{bottom:852.893333pt;}
.y3{bottom:853.128000pt;}
.ybe{bottom:860.038667pt;}
.y94{bottom:860.236000pt;}
.yea{bottom:865.129333pt;}
.y5f{bottom:867.505333pt;}
.ybd{bottom:874.650667pt;}
.y93{bottom:874.848000pt;}
.ye9{bottom:879.741333pt;}
.y5e{bottom:882.117333pt;}
.ybc{bottom:889.262667pt;}
.y92{bottom:889.460000pt;}
.y2{bottom:889.566667pt;}
.ye8{bottom:894.353333pt;}
.y5d{bottom:897.657333pt;}
.ybb{bottom:903.874667pt;}
.y91{bottom:904.072000pt;}
.y1{bottom:910.821333pt;}
.y5c{bottom:912.269333pt;}
.ye7{bottom:915.634667pt;}
.yba{bottom:918.486667pt;}
.y90{bottom:918.684000pt;}
.ye6{bottom:922.941333pt;}
.y5b{bottom:926.881333pt;}
.yb9{bottom:933.098667pt;}
.y8f{bottom:933.296000pt;}
.y5a{bottom:941.493333pt;}
.yb8{bottom:954.380000pt;}
.y59{bottom:956.104000pt;}
.y8e{bottom:956.105333pt;}
.yb7{bottom:961.685333pt;}
.y58{bottom:970.716000pt;}
.h13{height:17.529115pt;}
.hd{height:17.693660pt;}
.h10{height:17.861772pt;}
.h14{height:18.701077pt;}
.he{height:18.876623pt;}
.h11{height:19.055974pt;}
.hb{height:26.067492pt;}
.h7{height:32.900710pt;}
.h4{height:36.556100pt;}
.h6{height:37.459376pt;}
.h5{height:37.884447pt;}
.h3{height:45.461641pt;}
.h2{height:46.224307pt;}
.h1{height:54.553817pt;}
.h9{height:67.105780pt;}
.h8{height:67.111114pt;}
.h12{height:167.930682pt;}
.hc{height:169.507035pt;}
.hf{height:171.117563pt;}
.ha{height:366.990622pt;}
.h0{height:1056.000000pt;}
.w2{width:322.553898pt;}
.w3{width:322.555947pt;}
.w4{width:322.559843pt;}
.w1{width:671.993980pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:7.479491pt;}
.x1c{left:10.377717pt;}
.x3a{left:13.634018pt;}
.x1b{left:14.641481pt;}
.x1a{left:19.102540pt;}
.x33{left:32.708834pt;}
.x2b{left:35.434775pt;}
.x38{left:38.110822pt;}
.x3b{left:45.712616pt;}
.x7{left:72.000000pt;}
.xa{left:77.977333pt;}
.x12{left:79.970667pt;}
.x8{left:85.284000pt;}
.xb{left:89.268000pt;}
.x1d{left:91.564898pt;}
.x3c{left:98.109570pt;}
.x1{left:107.469333pt;}
.x9{left:151.364000pt;}
.x24{left:152.282530pt;}
.x34{left:157.839833pt;}
.x2c{left:159.388063pt;}
.x39{left:160.911390pt;}
.x15{left:163.254667pt;}
.x19{left:184.983276pt;}
.x6{left:205.548000pt;}
.x27{left:206.639778pt;}
.x30{left:207.892000pt;}
.x17{left:210.369333pt;}
.x3{left:214.662667pt;}
.x14{left:220.704000pt;}
.x16{left:221.806667pt;}
.x18{left:225.134667pt;}
.x35{left:226.690256pt;}
.x2e{left:227.590478pt;}
.x37{left:246.721333pt;}
.x2{left:250.346667pt;}
.x26{left:268.557815pt;}
.x2f{left:280.479278pt;}
.x5{left:286.874667pt;}
.x1f{left:293.060758pt;}
.x28{left:295.625593pt;}
.x1e{left:367.605389pt;}
.x25{left:377.430349pt;}
.x4{left:392.076000pt;}
.x22{left:407.560194pt;}
.x31{left:421.442667pt;}
.xf{left:426.000000pt;}
.xc{left:431.977333pt;}
.xe{left:439.284000pt;}
.xd{left:443.268000pt;}
.x10{left:449.796000pt;}
.x21{left:465.017171pt;}
.x13{left:477.808000pt;}
.x23{left:489.613281pt;}
.x36{left:553.001333pt;}
.x32{left:562.302667pt;}
.x20{left:565.815901pt;}
.x11{left:578.361333pt;}
.x29{left:608.941786pt;}
.x2a{left:619.436784pt;}
}




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