
    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_e1646a7e9821a93a88709a98.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.205000;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_56173b0b468c6c6ccf48725e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.301000;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_8e44c58b064a5dadfb3b2fb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.194000;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_842acd803930ccf431c73809.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.288000;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_2d56e620eb9c46df557285c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.205000;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_c26a8b2fa1667d8a731dff36.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.854000;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_2873678769af96d423a0a91a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.749000;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:-24.957114px;}
.v4{vertical-align:-16.177825px;}
.v5{vertical-align:-12.892783px;}
.v7{vertical-align:-10.315377px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.315377px;}
.v6{vertical-align:12.892783px;}
.v3{vertical-align:20.797595px;}
.v1{vertical-align:24.962868px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.864775px;}
.ls3{letter-spacing:2.866214px;}
.ls0{letter-spacing:20.060906px;}
.ls7{letter-spacing:20.461889px;}
.ls6{letter-spacing:23.513652px;}
.ls5{letter-spacing:27.316476px;}
.ls2{letter-spacing:41.791373px;}
.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;}
}
.ws7c{word-spacing:-0.057316px;}
.wsc3{word-spacing:-0.045853px;}
.ws52{word-spacing:0.000000px;}
.wsaf{word-spacing:9.308177px;}
.ws91{word-spacing:10.832765px;}
.ws4f{word-spacing:10.913035px;}
.ws8c{word-spacing:10.947397px;}
.wse6{word-spacing:11.062030px;}
.wse7{word-spacing:11.176662px;}
.ws51{word-spacing:11.188154px;}
.wse9{word-spacing:11.233978px;}
.wsee{word-spacing:11.291295px;}
.ws31{word-spacing:11.348611px;}
.ws4a{word-spacing:11.405927px;}
.wsc4{word-spacing:11.412960px;}
.ws0{word-spacing:11.417419px;}
.wsb0{word-spacing:11.509125px;}
.wsc8{word-spacing:11.520560px;}
.ws15{word-spacing:11.692508px;}
.ws75{word-spacing:11.749824px;}
.ws12{word-spacing:11.864457px;}
.wsd0{word-spacing:11.979089px;}
.wsde{word-spacing:12.036405px;}
.wsa4{word-spacing:12.093722px;}
.ws24{word-spacing:12.151038px;}
.ws43{word-spacing:12.208354px;}
.ws53{word-spacing:12.265670px;}
.ws8b{word-spacing:12.494935px;}
.wsc7{word-spacing:12.552251px;}
.ws44{word-spacing:12.666884px;}
.ws95{word-spacing:12.724200px;}
.ws10b{word-spacing:12.838833px;}
.wse3{word-spacing:12.896149px;}
.wsb1{word-spacing:12.930571px;}
.ws7{word-spacing:13.010781px;}
.wsc6{word-spacing:13.068097px;}
.ws4d{word-spacing:13.113983px;}
.ws9e{word-spacing:13.125414px;}
.ws2d{word-spacing:13.182730px;}
.ws6e{word-spacing:13.240046px;}
.ws4b{word-spacing:13.297362px;}
.ws63{word-spacing:13.354678px;}
.wsed{word-spacing:13.411995px;}
.ws23{word-spacing:13.526627px;}
.ws40{word-spacing:13.583943px;}
.ws22{word-spacing:13.641260px;}
.wsea{word-spacing:13.698576px;}
.ws74{word-spacing:13.755892px;}
.ws105{word-spacing:13.813208px;}
.wsab{word-spacing:13.870524px;}
.ws55{word-spacing:13.927841px;}
.ws77{word-spacing:13.985157px;}
.ws66{word-spacing:14.042473px;}
.wsc{word-spacing:14.099789px;}
.wsa3{word-spacing:14.157106px;}
.ws69{word-spacing:14.214422px;}
.wsd2{word-spacing:14.267687px;}
.ws101{word-spacing:14.267731px;}
.wsf{word-spacing:14.271738px;}
.ws5b{word-spacing:14.329054px;}
.wscd{word-spacing:14.386370px;}
.ws83{word-spacing:14.443687px;}
.ws60{word-spacing:14.501003px;}
.ws38{word-spacing:14.558319px;}
.ws34{word-spacing:14.615635px;}
.wsa1{word-spacing:14.672951px;}
.ws5c{word-spacing:14.730268px;}
.ws7f{word-spacing:14.787584px;}
.ws68{word-spacing:14.844900px;}
.wsa5{word-spacing:14.902216px;}
.wsdf{word-spacing:14.959533px;}
.wsbe{word-spacing:15.016849px;}
.ws97{word-spacing:15.074165px;}
.ws50{word-spacing:15.085666px;}
.wsa6{word-spacing:15.188797px;}
.ws78{word-spacing:15.246114px;}
.ws5a{word-spacing:15.303430px;}
.ws4e{word-spacing:15.314932px;}
.ws9f{word-spacing:15.418062px;}
.ws18{word-spacing:15.475378px;}
.ws82{word-spacing:15.532695px;}
.wsc0{word-spacing:15.542985px;}
.wsbf{word-spacing:15.590011px;}
.ws58{word-spacing:15.704643px;}
.ws103{word-spacing:15.761960px;}
.ws102{word-spacing:15.812420px;}
.wse{word-spacing:15.819276px;}
.ws96{word-spacing:15.876592px;}
.ws9c{word-spacing:15.933908px;}
.wsc2{word-spacing:15.956875px;}
.ws6f{word-spacing:15.991224px;}
.ws59{word-spacing:16.048541px;}
.ws79{word-spacing:16.105857px;}
.ws8d{word-spacing:16.163173px;}
.ws6b{word-spacing:16.220489px;}
.ws16{word-spacing:16.277806px;}
.ws2a{word-spacing:16.335122px;}
.wsc5{word-spacing:16.392438px;}
.ws84{word-spacing:16.449754px;}
.wsae{word-spacing:16.461259px;}
.ws86{word-spacing:16.507070px;}
.ws2e{word-spacing:16.564387px;}
.wsb{word-spacing:16.621703px;}
.ws85{word-spacing:16.679019px;}
.wse0{word-spacing:16.736335px;}
.ws1a{word-spacing:16.793651px;}
.wseb{word-spacing:16.850968px;}
.wsdc{word-spacing:16.908284px;}
.wsa0{word-spacing:16.965600px;}
.ws36{word-spacing:17.080233px;}
.ws2{word-spacing:17.126200px;}
.ws92{word-spacing:17.137549px;}
.ws62{word-spacing:17.194865px;}
.wsb8{word-spacing:17.309497px;}
.wsad{word-spacing:17.378320px;}
.wsd1{word-spacing:17.424130px;}
.wsca{word-spacing:17.481446px;}
.ws7b{word-spacing:17.538762px;}
.ws39{word-spacing:17.596079px;}
.ws80{word-spacing:17.653395px;}
.wsd5{word-spacing:17.710711px;}
.ws4c{word-spacing:17.745145px;}
.ws73{word-spacing:17.768027px;}
.ws14{word-spacing:17.825343px;}
.wsb2{word-spacing:17.882660px;}
.ws7e{word-spacing:17.939976px;}
.wscb{word-spacing:17.997292px;}
.ws1e{word-spacing:18.054608px;}
.ws32{word-spacing:18.169241px;}
.ws72{word-spacing:18.226557px;}
.ws3c{word-spacing:18.341189px;}
.wsac{word-spacing:18.398506px;}
.ws1c{word-spacing:18.455822px;}
.ws71{word-spacing:18.570454px;}
.ws56{word-spacing:18.685087px;}
.ws13{word-spacing:18.742403px;}
.wsb7{word-spacing:18.799719px;}
.ws27{word-spacing:19.028984px;}
.ws8f{word-spacing:19.086300px;}
.wsf5{word-spacing:19.143616px;}
.wsbc{word-spacing:19.200933px;}
.ws5f{word-spacing:19.258249px;}
.ws70{word-spacing:19.315565px;}
.ws98{word-spacing:19.372881px;}
.ws33{word-spacing:19.430197px;}
.ws1d{word-spacing:19.487514px;}
.ws2b{word-spacing:19.602146px;}
.ws5e{word-spacing:19.716779px;}
.ws89{word-spacing:19.774095px;}
.ws76{word-spacing:19.831411px;}
.ws9b{word-spacing:19.946043px;}
.ws88{word-spacing:20.003360px;}
.ws9{word-spacing:20.060676px;}
.ws87{word-spacing:20.117992px;}
.ws8a{word-spacing:20.175308px;}
.ws64{word-spacing:20.232624px;}
.ws3f{word-spacing:20.289941px;}
.ws57{word-spacing:20.404573px;}
.wsbb{word-spacing:20.461889px;}
.wsbd{word-spacing:20.519206px;}
.wsb3{word-spacing:20.576522px;}
.ws28{word-spacing:20.633838px;}
.ws1b{word-spacing:20.691154px;}
.ws8{word-spacing:20.748470px;}
.ws3a{word-spacing:20.863103px;}
.ws19{word-spacing:20.920419px;}
.wse1{word-spacing:20.977735px;}
.wse8{word-spacing:21.035052px;}
.ws81{word-spacing:21.092368px;}
.ws3d{word-spacing:21.207000px;}
.ws29{word-spacing:21.264316px;}
.ws2f{word-spacing:21.321633px;}
.wsc9{word-spacing:21.378949px;}
.ws25{word-spacing:21.436265px;}
.ws65{word-spacing:21.493581px;}
.ws106{word-spacing:21.550897px;}
.ws41{word-spacing:21.665530px;}
.ws7a{word-spacing:21.722846px;}
.wsda{word-spacing:21.780162px;}
.wsd9{word-spacing:21.894795px;}
.wsd7{word-spacing:21.952111px;}
.wsd8{word-spacing:21.961998px;}
.ws67{word-spacing:22.009427px;}
.wscc{word-spacing:22.066743px;}
.ws26{word-spacing:22.181376px;}
.wsc1{word-spacing:22.238692px;}
.ws6a{word-spacing:22.296008px;}
.wsd6{word-spacing:22.353324px;}
.ws5d{word-spacing:22.467957px;}
.ws17{word-spacing:22.525273px;}
.ws6d{word-spacing:22.582589px;}
.ws20{word-spacing:22.639906px;}
.ws10d{word-spacing:22.697222px;}
.ws90{word-spacing:22.754538px;}
.wsa2{word-spacing:22.811854px;}
.ws49{word-spacing:22.983803px;}
.ws47{word-spacing:23.041119px;}
.wsb9{word-spacing:23.098435px;}
.wsd4{word-spacing:23.327700px;}
.ws46{word-spacing:23.385016px;}
.wsa{word-spacing:23.442333px;}
.ws45{word-spacing:23.499649px;}
.ws54{word-spacing:23.556965px;}
.ws21{word-spacing:23.671597px;}
.ws2c{word-spacing:23.728914px;}
.wsdd{word-spacing:23.786230px;}
.wsaa{word-spacing:23.843546px;}
.ws6c{word-spacing:23.958179px;}
.ws93{word-spacing:24.187443px;}
.wscf{word-spacing:24.244760px;}
.wsce{word-spacing:24.302076px;}
.ws107{word-spacing:24.359392px;}
.wsd3{word-spacing:24.416708px;}
.wsd{word-spacing:24.531341px;}
.wse4{word-spacing:24.588657px;}
.wsba{word-spacing:24.645973px;}
.wse2{word-spacing:24.817922px;}
.wsff{word-spacing:24.846659px;}
.ws61{word-spacing:24.989870px;}
.ws6{word-spacing:25.276452px;}
.ws99{word-spacing:25.391084px;}
.ws94{word-spacing:25.620349px;}
.ws35{word-spacing:25.677665px;}
.ws3e{word-spacing:25.964246px;}
.ws109{word-spacing:26.136195px;}
.ws1f{word-spacing:26.480092px;}
.wsb5{word-spacing:26.537408px;}
.wsb6{word-spacing:26.546116px;}
.ws7d{word-spacing:26.823989px;}
.ws9d{word-spacing:26.881306px;}
.ws42{word-spacing:27.167887px;}
.wsa9{word-spacing:27.225203px;}
.ws30{word-spacing:27.339835px;}
.wsb4{word-spacing:27.466000px;}
.wse5{word-spacing:27.741049px;}
.wsfc{word-spacing:27.912997px;}
.ws108{word-spacing:28.486160px;}
.ws5{word-spacing:28.772741px;}
.wsfb{word-spacing:28.944689px;}
.ws9a{word-spacing:29.116638px;}
.ws11{word-spacing:29.231270px;}
.wsdb{word-spacing:29.288587px;}
.wsa7{word-spacing:29.345903px;}
.ws37{word-spacing:29.804433px;}
.ws48{word-spacing:29.861749px;}
.wsf4{word-spacing:30.033698px;}
.wsa8{word-spacing:30.492227px;}
.ws3b{word-spacing:30.664176px;}
.ws8e{word-spacing:30.721492px;}
.ws10a{word-spacing:31.008073px;}
.ws104{word-spacing:31.351970px;}
.ws4{word-spacing:33.358038px;}
.ws3{word-spacing:33.505590px;}
.ws1{word-spacing:34.252257px;}
.wsec{word-spacing:35.020208px;}
.wsf3{word-spacing:38.057968px;}
.wsf0{word-spacing:41.783522px;}
.wsef{word-spacing:44.190803px;}
.ws10c{word-spacing:46.426135px;}
.wsfa{word-spacing:47.343195px;}
.ws10{word-spacing:57.258900px;}
.wsfd{word-spacing:61.099087px;}
.ws100{word-spacing:65.684384px;}
.wsf8{word-spacing:72.218433px;}
.wsf7{word-spacing:73.192809px;}
.wsf6{word-spacing:88.152341px;}
.wsfe{word-spacing:91.935211px;}
.wsf1{word-spacing:93.081536px;}
.wsf2{word-spacing:95.775398px;}
.wsf9{word-spacing:112.855631px;}
._22{margin-left:-9.556818px;}
._16{margin-left:-6.935259px;}
._6{margin-left:-5.273095px;}
._1{margin-left:-3.438982px;}
._2{margin-left:-2.423609px;}
._0{margin-left:-1.375593px;}
._25{width:2.888745px;}
._12{width:8.571210px;}
._28{width:11.938104px;}
._a{width:14.288065px;}
._21{width:15.663655px;}
._4{width:16.736339px;}
._13{width:18.070936px;}
._11{width:19.290940px;}
._19{width:20.650165px;}
._5{width:21.722853px;}
._29{width:22.869170px;}
._8{width:23.900871px;}
._e{width:25.906930px;}
._14{width:27.683733px;}
._18{width:29.141267px;}
._1a{width:31.008073px;}
._20{width:32.039769px;}
._c{width:33.931200px;}
._10{width:35.249473px;}
._9{width:36.911644px;}
._d{width:39.834771px;}
._1e{width:40.981095px;}
._26{width:42.127419px;}
._1b{width:43.216427px;}
._f{width:44.305435px;}
._7{width:45.509085px;}
._1c{width:46.941981px;}
._24{width:48.546844px;}
._1d{width:50.667535px;}
._b{width:52.043125px;}
._23{width:53.721381px;}
._17{width:55.482098px;}
._15{width:57.316217px;}
._27{width:59.109350px;}
._1f{width:62.360044px;}
._2a{width:65.455119px;}
._3{width:66.773392px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:34.389960px;}
.fs4{font-size:40.121237px;}
.fs0{font-size:45.853088px;}
.fs3{font-size:57.316217px;}
.fs2{font-size:68.779920px;}
.fs1{font-size:137.559265px;}
.y0{bottom:0.000000px;}
.y5c{bottom:25.978650px;}
.y1{bottom:46.364895px;}
.y5d{bottom:63.612451px;}
.y5b{bottom:117.364023px;}
.y134{bottom:120.313945px;}
.y16d{bottom:120.345587px;}
.y92{bottom:123.179008px;}
.y34{bottom:124.371346px;}
.yb1{bottom:126.108794px;}
.y5a{bottom:130.975949px;}
.y110{bottom:132.609840px;}
.y10f{bottom:135.021843px;}
.y133{bottom:137.508637px;}
.y16c{bottom:137.540280px;}
.y91{bottom:140.373700px;}
.yb0{bottom:143.303486px;}
.y33{bottom:144.432540px;}
.y59{bottom:144.589313px;}
.y132{bottom:154.703330px;}
.y19e{bottom:154.734972px;}
.y16b{bottom:155.140568px;}
.y90{bottom:157.568393px;}
.y58{bottom:158.201238px;}
.yaf{bottom:160.498179px;}
.y10e{bottom:161.110888px;}
.y32{bottom:161.627232px;}
.y57{bottom:171.814602px;}
.y131{bottom:171.898022px;}
.y19d{bottom:171.932541px;}
.y16a{bottom:172.335261px;}
.y14e{bottom:174.763085px;}
.y8f{bottom:174.764523px;}
.yae{bottom:177.694309px;}
.y10d{bottom:178.307018px;}
.y31{bottom:178.821924px;}
.y56{bottom:185.426527px;}
.y130{bottom:189.092715px;}
.y19c{bottom:189.127233px;}
.yde{bottom:189.472422px;}
.y169{bottom:189.529953px;}
.y8e{bottom:191.959216px;}
.yad{bottom:194.889002px;}
.y10c{bottom:195.501711px;}
.y30{bottom:196.016617px;}
.y55{bottom:203.084347px;}
.y12f{bottom:206.287407px;}
.y19b{bottom:206.321926px;}
.y168{bottom:206.724646px;}
.y8d{bottom:209.153908px;}
.yac{bottom:212.083694px;}
.y10b{bottom:212.696403px;}
.y2f{bottom:213.212747px;}
.ydd{bottom:220.552314px;}
.y12e{bottom:223.483538px;}
.y19a{bottom:223.516618px;}
.y167{bottom:224.324934px;}
.y8c{bottom:226.348601px;}
.y14d{bottom:229.213664px;}
.yab{bottom:229.278386px;}
.y10a{bottom:229.891096px;}
.y2e{bottom:230.407440px;}
.y54{bottom:233.337226px;}
.ydc{bottom:237.747006px;}
.y12d{bottom:240.678230px;}
.y199{bottom:240.714187px;}
.y166{bottom:241.519627px;}
.y8b{bottom:243.543293px;}
.y14c{bottom:246.409794px;}
.yaa{bottom:246.473079px;}
.y2d{bottom:247.602132px;}
.y109{bottom:249.952289px;}
.y53{bottom:250.531918px;}
.ydb{bottom:254.943137px;}
.y12c{bottom:257.872923px;}
.y198{bottom:257.908880px;}
.y165{bottom:258.714319px;}
.y8a{bottom:260.737985px;}
.y14b{bottom:263.604487px;}
.y2c{bottom:264.796825px;}
.ya9{bottom:266.534272px;}
.y108{bottom:267.146982px;}
.y52{bottom:267.726610px;}
.yd9{bottom:272.137829px;}
.yda{bottom:274.664895px;}
.y197{bottom:275.103572px;}
.y164{bottom:275.909011px;}
.y89{bottom:277.934116px;}
.y14a{bottom:280.799179px;}
.y2b{bottom:281.991517px;}
.ya8{bottom:283.728965px;}
.y107{bottom:284.341674px;}
.y51{bottom:284.921303px;}
.yd8{bottom:292.197584px;}
.y196{bottom:292.301141px;}
.y163{bottom:293.105142px;}
.y12b{bottom:295.128808px;}
.y149{bottom:297.993871px;}
.y88{bottom:298.058594px;}
.y2a{bottom:299.186209px;}
.ya7{bottom:300.923657px;}
.y106{bottom:301.536366px;}
.y50{bottom:302.117433px;}
.yd7{bottom:309.393715px;}
.y195{bottom:309.495833px;}
.y162{bottom:310.703992px;}
.y12a{bottom:312.323501px;}
.y148{bottom:315.188564px;}
.y29{bottom:316.382340px;}
.ya6{bottom:318.119788px;}
.y105{bottom:318.731059px;}
.y4f{bottom:319.312126px;}
.yd6{bottom:326.588408px;}
.y194{bottom:326.690526px;}
.y161{bottom:327.898685px;}
.y129{bottom:329.518193px;}
.y147{bottom:332.383256px;}
.y28{bottom:333.577032px;}
.y87{bottom:335.314480px;}
.y103{bottom:335.927189px;}
.y4e{bottom:336.506818px;}
.y104{bottom:338.454256px;}
.yd5{bottom:343.783100px;}
.y193{bottom:343.886656px;}
.y160{bottom:345.094816px;}
.y128{bottom:346.712886px;}
.y146{bottom:349.579387px;}
.y86{bottom:352.509173px;}
.y102{bottom:353.121882px;}
.y27{bottom:353.638226px;}
.y4d{bottom:356.568012px;}
.yd3{bottom:360.977792px;}
.y192{bottom:361.081349px;}
.y15f{bottom:362.289508px;}
.yd4{bottom:363.506297px;}
.y127{bottom:363.907578px;}
.y145{bottom:366.774079px;}
.y85{bottom:369.703865px;}
.y101{bottom:370.316574px;}
.y26{bottom:370.832918px;}
.y4c{bottom:373.762704px;}
.yd2{bottom:378.172485px;}
.y191{bottom:378.277480px;}
.y15e{bottom:379.888358px;}
.y126{bottom:381.103709px;}
.y144{bottom:383.968772px;}
.ya5{bottom:386.898557px;}
.y84{bottom:386.899996px;}
.y100{bottom:387.511267px;}
.y25{bottom:388.027611px;}
.y4b{bottom:390.957397px;}
.y190{bottom:395.473610px;}
.y15d{bottom:397.084489px;}
.yd1{bottom:398.233678px;}
.y125{bottom:398.298401px;}
.y143{bottom:401.163464px;}
.y83{bottom:404.094688px;}
.yff{bottom:404.705959px;}
.y24{bottom:405.222303px;}
.ya4{bottom:406.959751px;}
.y4a{bottom:408.152089px;}
.y18f{bottom:412.669741px;}
.y15c{bottom:414.279181px;}
.yd0{bottom:415.428371px;}
.y124{bottom:415.493094px;}
.y141{bottom:418.358156px;}
.y142{bottom:420.886661px;}
.y82{bottom:421.289380px;}
.yfe{bottom:421.900651px;}
.y23{bottom:422.416996px;}
.ya3{bottom:424.154443px;}
.y49{bottom:425.346781px;}
.y18e{bottom:429.864433px;}
.y15b{bottom:431.878032px;}
.ycf{bottom:432.623063px;}
.y123{bottom:432.687786px;}
.y140{bottom:435.552849px;}
.y81{bottom:438.484073px;}
.yfc{bottom:439.096782px;}
.y22{bottom:439.611688px;}
.ya2{bottom:441.349136px;}
.yfd{bottom:441.623848px;}
.y48{bottom:442.541474px;}
.y18d{bottom:447.060564px;}
.y15a{bottom:449.074162px;}
.yce{bottom:449.819194px;}
.y122{bottom:449.882478px;}
.y13e{bottom:452.748980px;}
.y13f{bottom:455.276046px;}
.y21{bottom:456.807819px;}
.ya1{bottom:458.543828px;}
.y80{bottom:458.545266px;}
.yfb{bottom:459.156537px;}
.y47{bottom:459.737604px;}
.y18c{bottom:464.255256px;}
.y159{bottom:466.268855px;}
.ycd{bottom:467.013886px;}
.y121{bottom:469.943672px;}
.y13d{bottom:472.470738px;}
.y20{bottom:474.002511px;}
.y7f{bottom:475.739959px;}
.yfa{bottom:476.352668px;}
.y46{bottom:476.932297px;}
.y18b{bottom:481.451387px;}
.y158{bottom:483.463547px;}
.ycc{bottom:484.208579px;}
.y120{bottom:487.138364px;}
.y13c{bottom:490.003427px;}
.y1f{bottom:491.197203px;}
.y7e{bottom:492.934651px;}
.yf9{bottom:493.547360px;}
.y45{bottom:494.126989px;}
.y18a{bottom:498.647518px;}
.y157{bottom:500.658240px;}
.ycb{bottom:501.403271px;}
.y11f{bottom:504.333057px;}
.y13b{bottom:507.199558px;}
.y1e{bottom:508.391896px;}
.y7d{bottom:510.129344px;}
.yf8{bottom:510.742053px;}
.y44{bottom:511.321682px;}
.y189{bottom:515.842210px;}
.y156{bottom:518.258528px;}
.yca{bottom:518.597963px;}
.y11e{bottom:521.529187px;}
.y13a{bottom:524.394250px;}
.y1d{bottom:525.586588px;}
.y7c{bottom:527.324036px;}
.yf6{bottom:527.936745px;}
.y43{bottom:528.516374px;}
.yf7{bottom:530.463811px;}
.y188{bottom:533.038341px;}
.y155{bottom:535.453221px;}
.yc9{bottom:535.792656px;}
.y11d{bottom:538.723880px;}
.y139{bottom:541.588943px;}
.y1c{bottom:542.781281px;}
.ya0{bottom:544.518728px;}
.y7b{bottom:544.520167px;}
.yf5{bottom:545.131438px;}
.y42{bottom:545.711066px;}
.y187{bottom:550.234471px;}
.y154{bottom:552.647913px;}
.yc8{bottom:552.988786px;}
.y11c{bottom:555.918572px;}
.y138{bottom:558.783635px;}
.y1b{bottom:559.977411px;}
.y9f{bottom:561.713421px;}
.y7a{bottom:561.714859px;}
.yf3{bottom:562.326130px;}
.y41{bottom:562.907197px;}
.yf4{bottom:564.854634px;}
.y186{bottom:567.429164px;}
.y153{bottom:570.248202px;}
.yc7{bottom:573.113265px;}
.y137{bottom:575.978327px;}
.y1a{bottom:577.172104px;}
.y79{bottom:578.909552px;}
.y40{bottom:580.101889px;}
.y185{bottom:584.623856px;}
.y152{bottom:587.442894px;}
.y11b{bottom:590.307957px;}
.y136{bottom:593.174458px;}
.y19{bottom:594.366796px;}
.y9e{bottom:596.104244px;}
.y3f{bottom:597.296582px;}
.y78{bottom:598.970745px;}
.yf2{bottom:600.903800px;}
.y184{bottom:601.821425px;}
.y151{bottom:604.637586px;}
.y11a{bottom:607.502649px;}
.yc6{bottom:610.369151px;}
.y18{bottom:611.561488px;}
.y9d{bottom:613.298936px;}
.y3e{bottom:614.491274px;}
.y77{bottom:616.165437px;}
.yf1{bottom:618.099930px;}
.y183{bottom:619.016118px;}
.y150{bottom:621.832279px;}
.y119{bottom:624.698780px;}
.yc5{bottom:627.563843px;}
.y17{bottom:628.756181px;}
.y3d{bottom:631.685967px;}
.y76{bottom:633.360130px;}
.yf0{bottom:635.294623px;}
.y182{bottom:636.210810px;}
.y118{bottom:641.893472px;}
.yc4{bottom:644.758535px;}
.y16{bottom:648.882097px;}
.y75{bottom:650.554822px;}
.yef{bottom:652.489315px;}
.y181{bottom:653.405502px;}
.y117{bottom:659.088165px;}
.yc3{bottom:661.954666px;}
.y135{bottom:664.884452px;}
.y3c{bottom:666.076790px;}
.y74{bottom:667.749515px;}
.yee{bottom:669.684007px;}
.y180{bottom:670.603071px;}
.yc2{bottom:679.149358px;}
.y3b{bottom:683.271482px;}
.y9c{bottom:684.944207px;}
.y73{bottom:684.945645px;}
.y15{bottom:686.137983px;}
.yed{bottom:686.878700px;}
.y17f{bottom:687.797764px;}
.yc1{bottom:696.344051px;}
.y3a{bottom:700.466174px;}
.y9b{bottom:702.138899px;}
.y72{bottom:702.140338px;}
.y14{bottom:703.332676px;}
.y17e{bottom:704.992456px;}
.yc0{bottom:713.538743px;}
.yec{bottom:715.726374px;}
.y39{bottom:717.660867px;}
.y71{bottom:719.335030px;}
.y13{bottom:720.527368px;}
.y17d{bottom:722.190025px;}
.yeb{bottom:729.338300px;}
.ybf{bottom:730.733436px;}
.y14f{bottom:733.663221px;}
.y38{bottom:734.855559px;}
.y70{bottom:736.529723px;}
.y12{bottom:737.722060px;}
.y17c{bottom:739.384717px;}
.yea{bottom:742.951663px;}
.ybe{bottom:747.928128px;}
.y6f{bottom:753.724415px;}
.y11{bottom:754.916753px;}
.y17b{bottom:756.582286px;}
.ybd{bottom:765.124259px;}
.ye9{bottom:770.176952px;}
.y6e{bottom:770.919107px;}
.y37{bottom:772.111445px;}
.y10{bottom:772.112884px;}
.y17a{bottom:773.776979px;}
.ybc{bottom:782.318951px;}
.y9a{bottom:788.113800px;}
.y6d{bottom:788.115238px;}
.y36{bottom:789.306138px;}
.yf{bottom:789.307576px;}
.y179{bottom:790.971671px;}
.ye8{bottom:797.402242px;}
.ybb{bottom:799.513643px;}
.y99{bottom:805.308492px;}
.y6c{bottom:805.309930px;}
.ye{bottom:806.502268px;}
.y178{bottom:808.169240px;}
.ye7{bottom:811.015605px;}
.yba{bottom:816.708336px;}
.y116{bottom:819.574837px;}
.y6b{bottom:822.504623px;}
.yd{bottom:823.696961px;}
.y177{bottom:825.363933px;}
.y115{bottom:836.769529px;}
.yb9{bottom:836.834252px;}
.ye6{bottom:838.240895px;}
.y6a{bottom:839.699315px;}
.yc{bottom:840.891653px;}
.y176{bottom:842.558625px;}
.y114{bottom:853.964222px;}
.y69{bottom:856.894008px;}
.yb{bottom:858.086345px;}
.y175{bottom:859.756194px;}
.ye5{bottom:865.466184px;}
.y113{bottom:871.158914px;}
.y68{bottom:874.088700px;}
.y35{bottom:875.281038px;}
.ya{bottom:875.282476px;}
.y174{bottom:876.950886px;}
.ye4{bottom:879.078109px;}
.y112{bottom:888.353607px;}
.y98{bottom:891.283392px;}
.y67{bottom:891.284831px;}
.y9{bottom:892.477169px;}
.ye3{bottom:892.691473px;}
.y173{bottom:894.145579px;}
.ye2{bottom:906.303398px;}
.y97{bottom:908.478085px;}
.yb8{bottom:908.479523px;}
.y172{bottom:911.340271px;}
.y66{bottom:911.344586px;}
.ye1{bottom:919.916762px;}
.y96{bottom:925.674215px;}
.y171{bottom:928.537840px;}
.y65{bottom:928.539278px;}
.y8{bottom:930.890874px;}
.yb7{bottom:942.868908px;}
.y170{bottom:945.732532px;}
.y95{bottom:945.733971px;}
.y64{bottom:945.735409px;}
.y7{bottom:959.040980px;}
.yb6{bottom:960.063600px;}
.ye0{bottom:962.592105px;}
.y16f{bottom:962.927225px;}
.y63{bottom:962.930101px;}
.y111{bottom:965.457167px;}
.yb5{bottom:977.258293px;}
.y16e{bottom:980.121917px;}
.y62{bottom:980.124794px;}
.y6{bottom:993.394408px;}
.yb4{bottom:994.454423px;}
.y61{bottom:997.319486px;}
.yb3{bottom:1011.649116px;}
.ydf{bottom:1014.176182px;}
.y60{bottom:1014.514179px;}
.y5{bottom:1025.588970px;}
.yb2{bottom:1028.843808px;}
.y94{bottom:1031.708871px;}
.y5f{bottom:1031.710309px;}
.y93{bottom:1048.903563px;}
.y5e{bottom:1048.905002px;}
.y4{bottom:1105.153436px;}
.y3{bottom:1119.483065px;}
.y2{bottom:1133.812695px;}
.he{height:30.629863px;}
.hb{height:31.776323px;}
.hd{height:37.072023px;}
.h3{height:42.368254px;}
.h4{height:44.018965px;}
.h9{height:52.960184px;}
.h8{height:55.023568px;}
.h7{height:55.252833px;}
.ha{height:57.869618px;}
.h6{height:67.331121px;}
.h5{height:127.104761px;}
.h2{height:1190.491050px;}
.hc{height:1210.877400px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:856.174800px;}
.w3{width:856.176300px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:18.369990px;}
.x2{left:81.540669px;}
.x2d{left:88.704764px;}
.x5{left:91.938028px;}
.x8{left:95.870298px;}
.x13{left:97.159001px;}
.xf{left:105.515435px;}
.x3{left:110.913317px;}
.x2e{left:112.577412px;}
.xd{left:141.732879px;}
.x10{left:157.638869px;}
.x4{left:163.147499px;}
.x2b{left:169.244387px;}
.x7{left:185.314341px;}
.x2c{left:203.712878px;}
.x6{left:207.469677px;}
.x11{left:263.036364px;}
.x12{left:268.129330px;}
.x22{left:387.088411px;}
.x23{left:392.181377px;}
.xc{left:405.327298px;}
.xe{left:429.355281px;}
.x9{left:440.319324px;}
.x19{left:447.197201px;}
.xa{left:454.647515px;}
.xb{left:455.937656px;}
.x1a{left:458.244665px;}
.x1b{left:463.337631px;}
.x16{left:466.580963px;}
.x18{left:467.830832px;}
.x17{left:471.673928px;}
.x14{left:473.704786px;}
.x15{left:478.796314px;}
.x1c{left:517.966556px;}
.x1d{left:523.059522px;}
.x24{left:550.562400px;}
.x25{left:590.625818px;}
.x26{left:595.718784px;}
.x1e{left:599.364835px;}
.x1f{left:604.456363px;}
.x27{left:633.476631px;}
.x28{left:638.569597px;}
.x20{left:658.858039px;}
.x21{left:663.345487px;}
.x29{left:745.867066px;}
.x2a{left:750.960032px;}
@media print{
.v2{vertical-align:-22.184102pt;}
.v4{vertical-align:-14.380289pt;}
.v5{vertical-align:-11.460252pt;}
.v7{vertical-align:-9.169224pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.169224pt;}
.v6{vertical-align:11.460252pt;}
.v3{vertical-align:18.486751pt;}
.v1{vertical-align:22.189216pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.546467pt;}
.ls3{letter-spacing:2.547745pt;}
.ls0{letter-spacing:17.831916pt;}
.ls7{letter-spacing:18.188346pt;}
.ls6{letter-spacing:20.901024pt;}
.ls5{letter-spacing:24.281312pt;}
.ls2{letter-spacing:37.147887pt;}
.ws7c{word-spacing:-0.050948pt;}
.wsc3{word-spacing:-0.040758pt;}
.ws52{word-spacing:0.000000pt;}
.wsaf{word-spacing:8.273935pt;}
.ws91{word-spacing:9.629124pt;}
.ws4f{word-spacing:9.700476pt;}
.ws8c{word-spacing:9.731020pt;}
.wse6{word-spacing:9.832915pt;}
.wse7{word-spacing:9.934811pt;}
.ws51{word-spacing:9.945025pt;}
.wse9{word-spacing:9.985759pt;}
.wsee{word-spacing:10.036706pt;}
.ws31{word-spacing:10.087654pt;}
.ws4a{word-spacing:10.138602pt;}
.wsc4{word-spacing:10.144854pt;}
.ws0{word-spacing:10.148817pt;}
.wsb0{word-spacing:10.230333pt;}
.wsc8{word-spacing:10.240497pt;}
.ws15{word-spacing:10.393341pt;}
.ws75{word-spacing:10.444288pt;}
.ws12{word-spacing:10.546184pt;}
.wsd0{word-spacing:10.648079pt;}
.wsde{word-spacing:10.699027pt;}
.wsa4{word-spacing:10.749975pt;}
.ws24{word-spacing:10.800923pt;}
.ws43{word-spacing:10.851870pt;}
.ws53{word-spacing:10.902818pt;}
.ws8b{word-spacing:11.106609pt;}
.wsc7{word-spacing:11.157557pt;}
.ws44{word-spacing:11.259452pt;}
.ws95{word-spacing:11.310400pt;}
.ws10b{word-spacing:11.412296pt;}
.wse3{word-spacing:11.463243pt;}
.wsb1{word-spacing:11.493841pt;}
.ws7{word-spacing:11.565139pt;}
.wsc6{word-spacing:11.616087pt;}
.ws4d{word-spacing:11.656874pt;}
.ws9e{word-spacing:11.667034pt;}
.ws2d{word-spacing:11.717982pt;}
.ws6e{word-spacing:11.768930pt;}
.ws4b{word-spacing:11.819878pt;}
.ws63{word-spacing:11.870825pt;}
.wsed{word-spacing:11.921773pt;}
.ws23{word-spacing:12.023669pt;}
.ws40{word-spacing:12.074616pt;}
.ws22{word-spacing:12.125564pt;}
.wsea{word-spacing:12.176512pt;}
.ws74{word-spacing:12.227460pt;}
.ws105{word-spacing:12.278407pt;}
.wsab{word-spacing:12.329355pt;}
.ws55{word-spacing:12.380303pt;}
.ws77{word-spacing:12.431251pt;}
.ws66{word-spacing:12.482198pt;}
.wsc{word-spacing:12.533146pt;}
.wsa3{word-spacing:12.584094pt;}
.ws69{word-spacing:12.635042pt;}
.wsd2{word-spacing:12.682388pt;}
.ws101{word-spacing:12.682428pt;}
.wsf{word-spacing:12.685989pt;}
.ws5b{word-spacing:12.736937pt;}
.wscd{word-spacing:12.787885pt;}
.ws83{word-spacing:12.838833pt;}
.ws60{word-spacing:12.889780pt;}
.ws38{word-spacing:12.940728pt;}
.ws34{word-spacing:12.991676pt;}
.wsa1{word-spacing:13.042624pt;}
.ws5c{word-spacing:13.093571pt;}
.ws7f{word-spacing:13.144519pt;}
.ws68{word-spacing:13.195467pt;}
.wsa5{word-spacing:13.246415pt;}
.wsdf{word-spacing:13.297362pt;}
.wsbe{word-spacing:13.348310pt;}
.ws97{word-spacing:13.399258pt;}
.ws50{word-spacing:13.409481pt;}
.wsa6{word-spacing:13.501153pt;}
.ws78{word-spacing:13.552101pt;}
.ws5a{word-spacing:13.603049pt;}
.ws4e{word-spacing:13.613272pt;}
.ws9f{word-spacing:13.704944pt;}
.ws18{word-spacing:13.755892pt;}
.ws82{word-spacing:13.806840pt;}
.wsc0{word-spacing:13.815986pt;}
.wsbf{word-spacing:13.857787pt;}
.ws58{word-spacing:13.959683pt;}
.ws103{word-spacing:14.010631pt;}
.ws102{word-spacing:14.055485pt;}
.wse{word-spacing:14.061578pt;}
.ws96{word-spacing:14.112526pt;}
.ws9c{word-spacing:14.163474pt;}
.wsc2{word-spacing:14.183889pt;}
.ws6f{word-spacing:14.214422pt;}
.ws59{word-spacing:14.265369pt;}
.ws79{word-spacing:14.316317pt;}
.ws8d{word-spacing:14.367265pt;}
.ws6b{word-spacing:14.418213pt;}
.ws16{word-spacing:14.469160pt;}
.ws2a{word-spacing:14.520108pt;}
.wsc5{word-spacing:14.571056pt;}
.ws84{word-spacing:14.622004pt;}
.wsae{word-spacing:14.632230pt;}
.ws86{word-spacing:14.672951pt;}
.ws2e{word-spacing:14.723899pt;}
.wsb{word-spacing:14.774847pt;}
.ws85{word-spacing:14.825795pt;}
.wse0{word-spacing:14.876742pt;}
.ws1a{word-spacing:14.927690pt;}
.wseb{word-spacing:14.978638pt;}
.wsdc{word-spacing:15.029586pt;}
.wsa0{word-spacing:15.080533pt;}
.ws36{word-spacing:15.182429pt;}
.ws2{word-spacing:15.223289pt;}
.ws92{word-spacing:15.233377pt;}
.ws62{word-spacing:15.284324pt;}
.wsb8{word-spacing:15.386220pt;}
.wsad{word-spacing:15.447396pt;}
.wsd1{word-spacing:15.488115pt;}
.wsca{word-spacing:15.539063pt;}
.ws7b{word-spacing:15.590011pt;}
.ws39{word-spacing:15.640959pt;}
.ws80{word-spacing:15.691906pt;}
.wsd5{word-spacing:15.742854pt;}
.ws4c{word-spacing:15.773462pt;}
.ws73{word-spacing:15.793802pt;}
.ws14{word-spacing:15.844750pt;}
.wsb2{word-spacing:15.895697pt;}
.ws7e{word-spacing:15.946645pt;}
.wscb{word-spacing:15.997593pt;}
.ws1e{word-spacing:16.048541pt;}
.ws32{word-spacing:16.150436pt;}
.ws72{word-spacing:16.201384pt;}
.ws3c{word-spacing:16.303279pt;}
.wsac{word-spacing:16.354227pt;}
.ws1c{word-spacing:16.405175pt;}
.ws71{word-spacing:16.507070pt;}
.ws56{word-spacing:16.608966pt;}
.ws13{word-spacing:16.659914pt;}
.wsb7{word-spacing:16.710861pt;}
.ws27{word-spacing:16.914652pt;}
.ws8f{word-spacing:16.965600pt;}
.wsf5{word-spacing:17.016548pt;}
.wsbc{word-spacing:17.067496pt;}
.ws5f{word-spacing:17.118443pt;}
.ws70{word-spacing:17.169391pt;}
.ws98{word-spacing:17.220339pt;}
.ws33{word-spacing:17.271287pt;}
.ws1d{word-spacing:17.322234pt;}
.ws2b{word-spacing:17.424130pt;}
.ws5e{word-spacing:17.526025pt;}
.ws89{word-spacing:17.576973pt;}
.ws76{word-spacing:17.627921pt;}
.ws9b{word-spacing:17.729816pt;}
.ws88{word-spacing:17.780764pt;}
.ws9{word-spacing:17.831712pt;}
.ws87{word-spacing:17.882660pt;}
.ws8a{word-spacing:17.933607pt;}
.ws64{word-spacing:17.984555pt;}
.ws3f{word-spacing:18.035503pt;}
.ws57{word-spacing:18.137398pt;}
.wsbb{word-spacing:18.188346pt;}
.wsbd{word-spacing:18.239294pt;}
.wsb3{word-spacing:18.290242pt;}
.ws28{word-spacing:18.341189pt;}
.ws1b{word-spacing:18.392137pt;}
.ws8{word-spacing:18.443085pt;}
.ws3a{word-spacing:18.544980pt;}
.ws19{word-spacing:18.595928pt;}
.wse1{word-spacing:18.646876pt;}
.wse8{word-spacing:18.697824pt;}
.ws81{word-spacing:18.748771pt;}
.ws3d{word-spacing:18.850667pt;}
.ws29{word-spacing:18.901615pt;}
.ws2f{word-spacing:18.952562pt;}
.wsc9{word-spacing:19.003510pt;}
.ws25{word-spacing:19.054458pt;}
.ws65{word-spacing:19.105406pt;}
.ws106{word-spacing:19.156353pt;}
.ws41{word-spacing:19.258249pt;}
.ws7a{word-spacing:19.309197pt;}
.wsda{word-spacing:19.360144pt;}
.wsd9{word-spacing:19.462040pt;}
.wsd7{word-spacing:19.512988pt;}
.wsd8{word-spacing:19.521776pt;}
.ws67{word-spacing:19.563935pt;}
.wscc{word-spacing:19.614883pt;}
.ws26{word-spacing:19.716779pt;}
.wsc1{word-spacing:19.767726pt;}
.ws6a{word-spacing:19.818674pt;}
.wsd6{word-spacing:19.869622pt;}
.ws5d{word-spacing:19.971517pt;}
.ws17{word-spacing:20.022465pt;}
.ws6d{word-spacing:20.073413pt;}
.ws20{word-spacing:20.124361pt;}
.ws10d{word-spacing:20.175308pt;}
.ws90{word-spacing:20.226256pt;}
.wsa2{word-spacing:20.277204pt;}
.ws49{word-spacing:20.430047pt;}
.ws47{word-spacing:20.480995pt;}
.wsb9{word-spacing:20.531942pt;}
.wsd4{word-spacing:20.735733pt;}
.ws46{word-spacing:20.786681pt;}
.wsa{word-spacing:20.837629pt;}
.ws45{word-spacing:20.888577pt;}
.ws54{word-spacing:20.939524pt;}
.ws21{word-spacing:21.041420pt;}
.ws2c{word-spacing:21.092368pt;}
.wsdd{word-spacing:21.143315pt;}
.wsaa{word-spacing:21.194263pt;}
.ws6c{word-spacing:21.296159pt;}
.ws93{word-spacing:21.499950pt;}
.wscf{word-spacing:21.550897pt;}
.wsce{word-spacing:21.601845pt;}
.ws107{word-spacing:21.652793pt;}
.wsd3{word-spacing:21.703741pt;}
.wsd{word-spacing:21.805636pt;}
.wse4{word-spacing:21.856584pt;}
.wsba{word-spacing:21.907532pt;}
.wse2{word-spacing:22.060375pt;}
.wsff{word-spacing:22.085919pt;}
.ws61{word-spacing:22.213218pt;}
.ws6{word-spacing:22.467957pt;}
.ws99{word-spacing:22.569852pt;}
.ws94{word-spacing:22.773643pt;}
.ws35{word-spacing:22.824591pt;}
.ws3e{word-spacing:23.079330pt;}
.ws109{word-spacing:23.232173pt;}
.ws1f{word-spacing:23.537860pt;}
.wsb5{word-spacing:23.588807pt;}
.wsb6{word-spacing:23.596548pt;}
.ws7d{word-spacing:23.843546pt;}
.ws9d{word-spacing:23.894494pt;}
.ws42{word-spacing:24.149233pt;}
.wsa9{word-spacing:24.200180pt;}
.ws30{word-spacing:24.302076pt;}
.wsb4{word-spacing:24.414222pt;}
.wse5{word-spacing:24.658710pt;}
.wsfc{word-spacing:24.811553pt;}
.ws108{word-spacing:25.321031pt;}
.ws5{word-spacing:25.575770pt;}
.wsfb{word-spacing:25.728613pt;}
.ws9a{word-spacing:25.881456pt;}
.ws11{word-spacing:25.983352pt;}
.wsdb{word-spacing:26.034299pt;}
.wsa7{word-spacing:26.085247pt;}
.ws37{word-spacing:26.492829pt;}
.ws48{word-spacing:26.543777pt;}
.wsf4{word-spacing:26.696620pt;}
.wsa8{word-spacing:27.104202pt;}
.ws3b{word-spacing:27.257045pt;}
.ws8e{word-spacing:27.307993pt;}
.ws10a{word-spacing:27.562732pt;}
.ws104{word-spacing:27.868418pt;}
.ws4{word-spacing:29.651589pt;}
.ws3{word-spacing:29.782747pt;}
.ws1{word-spacing:30.446451pt;}
.wsec{word-spacing:31.129074pt;}
.wsf3{word-spacing:33.829305pt;}
.wsf0{word-spacing:37.140908pt;}
.wsef{word-spacing:39.280714pt;}
.ws10c{word-spacing:41.267676pt;}
.wsfa{word-spacing:42.082840pt;}
.ws10{word-spacing:50.896800pt;}
.wsfd{word-spacing:54.310299pt;}
.ws100{word-spacing:58.386119pt;}
.wsf8{word-spacing:64.194163pt;}
.wsf7{word-spacing:65.060274pt;}
.wsf6{word-spacing:78.357637pt;}
.wsfe{word-spacing:81.720188pt;}
.wsf1{word-spacing:82.739143pt;}
.wsf2{word-spacing:85.133687pt;}
.wsf9{word-spacing:100.316116pt;}
._22{margin-left:-8.494949pt;}
._16{margin-left:-6.164674pt;}
._6{margin-left:-4.687196pt;}
._1{margin-left:-3.056873pt;}
._2{margin-left:-2.154319pt;}
._0{margin-left:-1.222749pt;}
._25{width:2.567773pt;}
._12{width:7.618853pt;}
._28{width:10.611648pt;}
._a{width:12.700503pt;}
._21{width:13.923248pt;}
._4{width:14.876746pt;}
._13{width:16.063054pt;}
._11{width:17.147502pt;}
._19{width:18.355703pt;}
._5{width:19.309203pt;}
._29{width:20.328151pt;}
._8{width:21.245219pt;}
._e{width:23.028382pt;}
._14{width:24.607762pt;}
._18{width:25.903348pt;}
._1a{width:27.562732pt;}
._20{width:28.479794pt;}
._c{width:30.161067pt;}
._10{width:31.332865pt;}
._9{width:32.810350pt;}
._d{width:35.408685pt;}
._1e{width:36.427640pt;}
._26{width:37.446595pt;}
._1b{width:38.414602pt;}
._f{width:39.382609pt;}
._7{width:40.452520pt;}
._1c{width:41.726206pt;}
._24{width:43.152750pt;}
._1d{width:45.037809pt;}
._b{width:46.260555pt;}
._23{width:47.752338pt;}
._17{width:49.317420pt;}
._15{width:50.947748pt;}
._27{width:52.541645pt;}
._1f{width:55.431150pt;}
._2a{width:58.182328pt;}
._3{width:59.354127pt;}
.fs5{font-size:30.568853pt;}
.fs4{font-size:35.663321pt;}
.fs0{font-size:40.758301pt;}
.fs3{font-size:50.947748pt;}
.fs2{font-size:61.137707pt;}
.fs1{font-size:122.274902pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:23.092133pt;}
.y1{bottom:41.213240pt;}
.y5d{bottom:56.544401pt;}
.y5b{bottom:104.323576pt;}
.y134{bottom:106.945729pt;}
.y16d{bottom:106.973855pt;}
.y92{bottom:109.492452pt;}
.y34{bottom:110.552307pt;}
.yb1{bottom:112.096706pt;}
.y5a{bottom:116.423066pt;}
.y110{bottom:117.875413pt;}
.y10f{bottom:120.019416pt;}
.y133{bottom:122.229900pt;}
.y16c{bottom:122.258026pt;}
.y91{bottom:124.776623pt;}
.yb0{bottom:127.380877pt;}
.y33{bottom:128.384480pt;}
.y59{bottom:128.523833pt;}
.y132{bottom:137.514071pt;}
.y19e{bottom:137.542197pt;}
.y16b{bottom:137.902727pt;}
.y90{bottom:140.060794pt;}
.y58{bottom:140.623323pt;}
.yaf{bottom:142.665048pt;}
.y10e{bottom:143.209678pt;}
.y32{bottom:143.668651pt;}
.y57{bottom:152.724090pt;}
.y131{bottom:152.798242pt;}
.y19d{bottom:152.828925pt;}
.y16a{bottom:153.186898pt;}
.y14e{bottom:155.344965pt;}
.y8f{bottom:155.346243pt;}
.yae{bottom:157.950497pt;}
.y10d{bottom:158.495127pt;}
.y31{bottom:158.952822pt;}
.y56{bottom:164.823580pt;}
.y130{bottom:168.082413pt;}
.y19c{bottom:168.113096pt;}
.yde{bottom:168.419930pt;}
.y169{bottom:168.471069pt;}
.y8e{bottom:170.630414pt;}
.yad{bottom:173.234668pt;}
.y10c{bottom:173.779299pt;}
.y30{bottom:174.236993pt;}
.y55{bottom:180.519420pt;}
.y12f{bottom:183.366584pt;}
.y19b{bottom:183.397267pt;}
.y168{bottom:183.755240pt;}
.y8d{bottom:185.914585pt;}
.yac{bottom:188.518839pt;}
.y10b{bottom:189.063470pt;}
.y2f{bottom:189.522442pt;}
.ydd{bottom:196.046501pt;}
.y12e{bottom:198.652034pt;}
.y19a{bottom:198.681438pt;}
.y167{bottom:199.399942pt;}
.y8c{bottom:201.198756pt;}
.y14d{bottom:203.745479pt;}
.yab{bottom:203.803010pt;}
.y10a{bottom:204.347641pt;}
.y2e{bottom:204.806613pt;}
.y54{bottom:207.410867pt;}
.ydc{bottom:211.330672pt;}
.y12d{bottom:213.936205pt;}
.y199{bottom:213.968166pt;}
.y166{bottom:214.684113pt;}
.y8b{bottom:216.482927pt;}
.y14c{bottom:219.030928pt;}
.yaa{bottom:219.087181pt;}
.y2d{bottom:220.090784pt;}
.y109{bottom:222.179813pt;}
.y53{bottom:222.695038pt;}
.ydb{bottom:226.616122pt;}
.y12c{bottom:229.220376pt;}
.y198{bottom:229.252337pt;}
.y165{bottom:229.968284pt;}
.y8a{bottom:231.767098pt;}
.y14b{bottom:234.315099pt;}
.y2c{bottom:235.374955pt;}
.ya9{bottom:236.919353pt;}
.y108{bottom:237.463984pt;}
.y52{bottom:237.979209pt;}
.yd9{bottom:241.900293pt;}
.yda{bottom:244.146574pt;}
.y197{bottom:244.536508pt;}
.y164{bottom:245.252455pt;}
.y89{bottom:247.052548pt;}
.y14a{bottom:249.599270pt;}
.y2b{bottom:250.659126pt;}
.ya8{bottom:252.203524pt;}
.y107{bottom:252.748155pt;}
.y51{bottom:253.263380pt;}
.yd8{bottom:259.731186pt;}
.y196{bottom:259.823236pt;}
.y163{bottom:260.537904pt;}
.y12b{bottom:262.336719pt;}
.y149{bottom:264.883441pt;}
.y88{bottom:264.940973pt;}
.y2a{bottom:265.943297pt;}
.ya7{bottom:267.487695pt;}
.y106{bottom:268.032326pt;}
.y50{bottom:268.548830pt;}
.yd7{bottom:275.016636pt;}
.y195{bottom:275.107407pt;}
.y162{bottom:276.181327pt;}
.y12a{bottom:277.620890pt;}
.y148{bottom:280.167612pt;}
.y29{bottom:281.228747pt;}
.ya6{bottom:282.773145pt;}
.y105{bottom:283.316497pt;}
.y4f{bottom:283.833001pt;}
.yd6{bottom:290.300807pt;}
.y194{bottom:290.391578pt;}
.y161{bottom:291.465498pt;}
.y129{bottom:292.905061pt;}
.y147{bottom:295.451783pt;}
.y28{bottom:296.512918pt;}
.y87{bottom:298.057316pt;}
.y103{bottom:298.601946pt;}
.y4e{bottom:299.117172pt;}
.y104{bottom:300.848227pt;}
.yd5{bottom:305.584978pt;}
.y193{bottom:305.677028pt;}
.y160{bottom:306.750947pt;}
.y128{bottom:308.189232pt;}
.y146{bottom:310.737233pt;}
.y86{bottom:313.341487pt;}
.y102{bottom:313.886117pt;}
.y27{bottom:314.345090pt;}
.y4d{bottom:316.949344pt;}
.yd3{bottom:320.869149pt;}
.y192{bottom:320.961199pt;}
.y15f{bottom:322.035118pt;}
.yd4{bottom:323.116708pt;}
.y127{bottom:323.473403pt;}
.y145{bottom:326.021404pt;}
.y85{bottom:328.625658pt;}
.y101{bottom:329.170288pt;}
.y26{bottom:329.629261pt;}
.y4c{bottom:332.233515pt;}
.yd2{bottom:336.153320pt;}
.y191{bottom:336.246648pt;}
.y15e{bottom:337.678541pt;}
.y126{bottom:338.758852pt;}
.y144{bottom:341.305575pt;}
.ya5{bottom:343.909829pt;}
.y84{bottom:343.911107pt;}
.y100{bottom:344.454459pt;}
.y25{bottom:344.913432pt;}
.y4b{bottom:347.517686pt;}
.y190{bottom:351.532098pt;}
.y15d{bottom:352.963990pt;}
.yd1{bottom:353.985492pt;}
.y125{bottom:354.043023pt;}
.y143{bottom:356.589746pt;}
.y83{bottom:359.195278pt;}
.yff{bottom:359.738630pt;}
.y24{bottom:360.197603pt;}
.ya4{bottom:361.742001pt;}
.y4a{bottom:362.801857pt;}
.y18f{bottom:366.817547pt;}
.y15c{bottom:368.248161pt;}
.yd0{bottom:369.269663pt;}
.y124{bottom:369.327194pt;}
.y141{bottom:371.873917pt;}
.y142{bottom:374.121476pt;}
.y82{bottom:374.479449pt;}
.yfe{bottom:375.022801pt;}
.y23{bottom:375.481774pt;}
.ya3{bottom:377.026172pt;}
.y49{bottom:378.086028pt;}
.y18e{bottom:382.101718pt;}
.y15b{bottom:383.891584pt;}
.ycf{bottom:384.553834pt;}
.y123{bottom:384.611365pt;}
.y140{bottom:387.158088pt;}
.y81{bottom:389.763620pt;}
.yfc{bottom:390.308251pt;}
.y22{bottom:390.765945pt;}
.ya2{bottom:392.310343pt;}
.yfd{bottom:392.554532pt;}
.y48{bottom:393.370199pt;}
.y18d{bottom:397.387168pt;}
.y15a{bottom:399.177033pt;}
.yce{bottom:399.839283pt;}
.y122{bottom:399.895536pt;}
.y13e{bottom:402.443537pt;}
.y13f{bottom:404.689818pt;}
.y21{bottom:406.051394pt;}
.ya1{bottom:407.594514pt;}
.y80{bottom:407.595792pt;}
.yfb{bottom:408.139144pt;}
.y47{bottom:408.655648pt;}
.y18c{bottom:412.671339pt;}
.y159{bottom:414.461204pt;}
.ycd{bottom:415.123454pt;}
.y121{bottom:417.727708pt;}
.y13d{bottom:419.973989pt;}
.y20{bottom:421.335565pt;}
.y7f{bottom:422.879963pt;}
.yfa{bottom:423.424594pt;}
.y46{bottom:423.939819pt;}
.y18b{bottom:427.956788pt;}
.y158{bottom:429.745375pt;}
.ycc{bottom:430.407625pt;}
.y120{bottom:433.011879pt;}
.y13c{bottom:435.558602pt;}
.y1f{bottom:436.619736pt;}
.y7e{bottom:438.164134pt;}
.yf9{bottom:438.708765pt;}
.y45{bottom:439.223990pt;}
.y18a{bottom:443.242238pt;}
.y157{bottom:445.029546pt;}
.ycb{bottom:445.691796pt;}
.y11f{bottom:448.296050pt;}
.y13b{bottom:450.844051pt;}
.y1e{bottom:451.903907pt;}
.y7d{bottom:453.448305pt;}
.yf8{bottom:453.992936pt;}
.y44{bottom:454.508161pt;}
.y189{bottom:458.526409pt;}
.y156{bottom:460.674247pt;}
.yca{bottom:460.975967pt;}
.y11e{bottom:463.581500pt;}
.y13a{bottom:466.128222pt;}
.y1d{bottom:467.188078pt;}
.y7c{bottom:468.732476pt;}
.yf6{bottom:469.277107pt;}
.y43{bottom:469.792332pt;}
.yf7{bottom:471.523388pt;}
.y188{bottom:473.811858pt;}
.y155{bottom:475.958418pt;}
.yc9{bottom:476.260138pt;}
.y11d{bottom:478.865671pt;}
.y139{bottom:481.412394pt;}
.y1c{bottom:482.472249pt;}
.ya0{bottom:484.016647pt;}
.y7b{bottom:484.017926pt;}
.yf5{bottom:484.561278pt;}
.y42{bottom:485.076503pt;}
.y187{bottom:489.097308pt;}
.y154{bottom:491.242589pt;}
.yc8{bottom:491.545588pt;}
.y11c{bottom:494.149842pt;}
.y138{bottom:496.696565pt;}
.y1b{bottom:497.757699pt;}
.y9f{bottom:499.300819pt;}
.y7a{bottom:499.302097pt;}
.yf3{bottom:499.845449pt;}
.y41{bottom:500.361953pt;}
.yf4{bottom:502.093008pt;}
.y186{bottom:504.381479pt;}
.y153{bottom:506.887290pt;}
.yc7{bottom:509.434013pt;}
.y137{bottom:511.980736pt;}
.y1a{bottom:513.041870pt;}
.y79{bottom:514.586268pt;}
.y40{bottom:515.646124pt;}
.y185{bottom:519.665650pt;}
.y152{bottom:522.171461pt;}
.y11b{bottom:524.718184pt;}
.y136{bottom:527.266185pt;}
.y19{bottom:528.326041pt;}
.y9e{bottom:529.870439pt;}
.y3f{bottom:530.930295pt;}
.y78{bottom:532.418440pt;}
.yf2{bottom:534.136711pt;}
.y184{bottom:534.952378pt;}
.y151{bottom:537.455632pt;}
.y11a{bottom:540.002355pt;}
.yc6{bottom:542.550356pt;}
.y18{bottom:543.610212pt;}
.y9d{bottom:545.154610pt;}
.y3e{bottom:546.214466pt;}
.y77{bottom:547.702611pt;}
.yf1{bottom:549.422160pt;}
.y183{bottom:550.236549pt;}
.y150{bottom:552.739803pt;}
.y119{bottom:555.287804pt;}
.yc5{bottom:557.834527pt;}
.y17{bottom:558.894383pt;}
.y3d{bottom:561.498637pt;}
.y76{bottom:562.986782pt;}
.yf0{bottom:564.706331pt;}
.y182{bottom:565.520720pt;}
.y118{bottom:570.571975pt;}
.yc4{bottom:573.118698pt;}
.y16{bottom:576.784086pt;}
.y75{bottom:578.270953pt;}
.yef{bottom:579.990502pt;}
.y181{bottom:580.804891pt;}
.y117{bottom:585.856146pt;}
.yc3{bottom:588.404148pt;}
.y135{bottom:591.008402pt;}
.y3c{bottom:592.068257pt;}
.y74{bottom:593.555124pt;}
.yee{bottom:595.274673pt;}
.y180{bottom:596.091619pt;}
.yc2{bottom:603.688319pt;}
.y3b{bottom:607.352429pt;}
.y9c{bottom:608.839295pt;}
.y73{bottom:608.840574pt;}
.y15{bottom:609.900430pt;}
.yed{bottom:610.558844pt;}
.y17f{bottom:611.375790pt;}
.yc1{bottom:618.972490pt;}
.y3a{bottom:622.636600pt;}
.y9b{bottom:624.123466pt;}
.y72{bottom:624.124745pt;}
.y14{bottom:625.184601pt;}
.y17e{bottom:626.659961pt;}
.yc0{bottom:634.256661pt;}
.yec{bottom:636.201221pt;}
.y39{bottom:637.920771pt;}
.y71{bottom:639.408916pt;}
.y13{bottom:640.468772pt;}
.y17d{bottom:641.946689pt;}
.yeb{bottom:648.300711pt;}
.ybf{bottom:649.540832pt;}
.y14f{bottom:652.145086pt;}
.y38{bottom:653.204942pt;}
.y70{bottom:654.693087pt;}
.y12{bottom:655.752943pt;}
.y17c{bottom:657.230860pt;}
.yea{bottom:660.401478pt;}
.ybe{bottom:664.825003pt;}
.y6f{bottom:669.977258pt;}
.y11{bottom:671.037114pt;}
.y17b{bottom:672.517588pt;}
.ybd{bottom:680.110452pt;}
.ye9{bottom:684.601736pt;}
.y6e{bottom:685.261429pt;}
.y37{bottom:686.321285pt;}
.y10{bottom:686.322563pt;}
.y17a{bottom:687.801759pt;}
.ybc{bottom:695.394623pt;}
.y9a{bottom:700.545600pt;}
.y6d{bottom:700.546878pt;}
.y36{bottom:701.605456pt;}
.yf{bottom:701.606734pt;}
.y179{bottom:703.085930pt;}
.ye8{bottom:708.801993pt;}
.ybb{bottom:710.678794pt;}
.y99{bottom:715.829771pt;}
.y6c{bottom:715.831049pt;}
.ye{bottom:716.890905pt;}
.y178{bottom:718.372658pt;}
.ye7{bottom:720.902760pt;}
.yba{bottom:725.962965pt;}
.y116{bottom:728.510966pt;}
.y6b{bottom:731.115220pt;}
.yd{bottom:732.175076pt;}
.y177{bottom:733.656829pt;}
.y115{bottom:743.795137pt;}
.yb9{bottom:743.852669pt;}
.ye6{bottom:745.103017pt;}
.y6a{bottom:746.399391pt;}
.yc{bottom:747.459247pt;}
.y176{bottom:748.941000pt;}
.y114{bottom:759.079308pt;}
.y69{bottom:761.683562pt;}
.yb{bottom:762.743418pt;}
.y175{bottom:764.227728pt;}
.ye5{bottom:769.303274pt;}
.y113{bottom:774.363479pt;}
.y68{bottom:776.967733pt;}
.y35{bottom:778.027589pt;}
.ya{bottom:778.028868pt;}
.y174{bottom:779.511899pt;}
.ye4{bottom:781.402764pt;}
.y112{bottom:789.647650pt;}
.y98{bottom:792.251904pt;}
.y67{bottom:792.253183pt;}
.y9{bottom:793.313039pt;}
.ye3{bottom:793.503532pt;}
.y173{bottom:794.796070pt;}
.ye2{bottom:805.603021pt;}
.y97{bottom:807.536075pt;}
.yb8{bottom:807.537354pt;}
.y172{bottom:810.080241pt;}
.y66{bottom:810.084076pt;}
.ye1{bottom:817.703789pt;}
.y96{bottom:822.821525pt;}
.y171{bottom:825.366969pt;}
.y65{bottom:825.368247pt;}
.y8{bottom:827.458554pt;}
.yb7{bottom:838.105696pt;}
.y170{bottom:840.651140pt;}
.y95{bottom:840.652418pt;}
.y64{bottom:840.653697pt;}
.y7{bottom:852.480871pt;}
.yb6{bottom:853.389867pt;}
.ye0{bottom:855.637426pt;}
.y16f{bottom:855.935311pt;}
.y63{bottom:855.937868pt;}
.y111{bottom:858.184149pt;}
.yb5{bottom:868.674038pt;}
.y16e{bottom:871.219482pt;}
.y62{bottom:871.222039pt;}
.y6{bottom:883.017251pt;}
.yb4{bottom:883.959487pt;}
.y61{bottom:886.506210pt;}
.yb3{bottom:899.243658pt;}
.ydf{bottom:901.489939pt;}
.y60{bottom:901.790381pt;}
.y5{bottom:911.634640pt;}
.yb2{bottom:914.527829pt;}
.y94{bottom:917.074552pt;}
.y5f{bottom:917.075830pt;}
.y93{bottom:932.358723pt;}
.y5e{bottom:932.360001pt;}
.y4{bottom:982.358610pt;}
.y3{bottom:995.096058pt;}
.y2{bottom:1007.833506pt;}
.he{height:27.226545pt;}
.hb{height:28.245621pt;}
.hd{height:32.952909pt;}
.h3{height:37.660670pt;}
.h4{height:39.127969pt;}
.h9{height:47.075719pt;}
.h8{height:48.909838pt;}
.h7{height:49.113629pt;}
.ha{height:51.439660pt;}
.h6{height:59.849885pt;}
.h5{height:112.982010pt;}
.h2{height:1058.214267pt;}
.hc{height:1076.335467pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:761.044267pt;}
.w3{width:761.045600pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:16.328880pt;}
.x2{left:72.480595pt;}
.x2d{left:78.848679pt;}
.x5{left:81.722692pt;}
.x8{left:85.218043pt;}
.x13{left:86.363557pt;}
.xf{left:93.791498pt;}
.x3{left:98.589615pt;}
.x2e{left:100.068811pt;}
.xd{left:125.984782pt;}
.x10{left:140.123439pt;}
.x4{left:145.019999pt;}
.x2b{left:150.439455pt;}
.x7{left:164.723859pt;}
.x2c{left:181.078113pt;}
.x6{left:184.417491pt;}
.x11{left:233.810102pt;}
.x12{left:238.337182pt;}
.x22{left:344.078588pt;}
.x23{left:348.605668pt;}
.xc{left:360.290932pt;}
.xe{left:381.649138pt;}
.x9{left:391.394955pt;}
.x19{left:397.508623pt;}
.xa{left:404.131125pt;}
.xb{left:405.277917pt;}
.x1a{left:407.328591pt;}
.x1b{left:411.855672pt;}
.x16{left:414.738633pt;}
.x18{left:415.849628pt;}
.x17{left:419.265714pt;}
.x14{left:421.070921pt;}
.x15{left:425.596723pt;}
.x1c{left:460.414717pt;}
.x1d{left:464.941798pt;}
.x24{left:489.388800pt;}
.x25{left:525.000727pt;}
.x26{left:529.527808pt;}
.x1e{left:532.768742pt;}
.x1f{left:537.294545pt;}
.x27{left:563.090339pt;}
.x28{left:567.617419pt;}
.x20{left:585.651590pt;}
.x21{left:589.640433pt;}
.x29{left:662.992948pt;}
.x2a{left:667.520028pt;}
}




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