
    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_64ebec4f818a77a94887831a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_21a245e6ecfa156721a480fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893000;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_c081a16169bb9b31b70ca3ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_20694eb4d47f56f93e6b3d48.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_e507457a50310a0855b7911c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5dd4b46f75cfb68828584c4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.677000;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_0119a26c847ec9a40e905089.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.497000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0d1fa514e6250a8f7c242bf9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.677000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_295cd09b6d14cf09307b3d02.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5430bb5ce22cd517aff0f0e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.656000;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001002px;}
.lsf{letter-spacing:0.004200px;}
.ls11{letter-spacing:0.834017px;}
.ls4{letter-spacing:2.964877px;}
.ls6{letter-spacing:2.984725px;}
.lsa{letter-spacing:2.987108px;}
.ls12{letter-spacing:2.987675px;}
.lsc{letter-spacing:2.988017px;}
.ls7{letter-spacing:2.988780px;}
.ls5{letter-spacing:2.989492px;}
.lsb{letter-spacing:2.990725px;}
.ls9{letter-spacing:2.992766px;}
.ls3{letter-spacing:14.911559px;}
.ls10{letter-spacing:15.570538px;}
.lse{letter-spacing:16.818538px;}
.lsd{letter-spacing:17.694538px;}
.ls0{letter-spacing:20.918338px;}
.ls1{letter-spacing:20.924338px;}
.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;}
}
.ws4{word-spacing:-59.775600px;}
.ws5d{word-spacing:-17.932680px;}
.ws7{word-spacing:-14.943900px;}
.ws24{word-spacing:-14.920027px;}
.ws5b{word-spacing:-11.955150px;}
.ws84{word-spacing:-1.195515px;}
.ws93{word-spacing:-1.016185px;}
.ws76{word-spacing:-0.956410px;}
.ws3e{word-spacing:-0.896634px;}
.ws136{word-spacing:-0.765130px;}
.ws2d{word-spacing:-0.717307px;}
.ws125{word-spacing:-0.526027px;}
.ws50{word-spacing:-0.418429px;}
.wsc1{word-spacing:-0.239102px;}
.ws6e{word-spacing:-0.059776px;}
.ws8{word-spacing:-0.053798px;}
.ws109{word-spacing:-0.047821px;}
.ws5c{word-spacing:-0.002745px;}
.ws62{word-spacing:0.000000px;}
.ws88{word-spacing:0.029590px;}
.ws123{word-spacing:0.047821px;}
.ws145{word-spacing:0.095641px;}
.ws127{word-spacing:0.143462px;}
.ws9a{word-spacing:0.179327px;}
.ws144{word-spacing:0.191282px;}
.ws48{word-spacing:0.358654px;}
.ws154{word-spacing:0.526027px;}
.ws70{word-spacing:0.537980px;}
.ws10{word-spacing:0.537984px;}
.ws2c{word-spacing:0.597756px;}
.ws132{word-spacing:0.621668px;}
.ws8f{word-spacing:0.657532px;}
.wsa2{word-spacing:0.765130px;}
.ws9b{word-spacing:0.896634px;}
.ws3d{word-spacing:0.956410px;}
.ws14c{word-spacing:1.024033px;}
.ws36{word-spacing:1.075961px;}
.wsfc{word-spacing:1.243336px;}
.wsca{word-spacing:1.255288px;}
.wsc{word-spacing:1.344960px;}
.ws148{word-spacing:1.386797px;}
.ws1d{word-spacing:1.452557px;}
.wse4{word-spacing:1.554166px;}
.wsc2{word-spacing:1.793268px;}
.ws153{word-spacing:1.817183px;}
.wsc9{word-spacing:1.853044px;}
.ws124{word-spacing:2.008465px;}
.ws9f{word-spacing:2.032370px;}
.ws35{word-spacing:2.151922px;}
.ws119{word-spacing:2.199748px;}
.ws97{word-spacing:2.271473px;}
.ws2a{word-spacing:2.331248px;}
.ws2b{word-spacing:2.391024px;}
.ws114{word-spacing:2.391030px;}
.wscd{word-spacing:2.450800px;}
.ws73{word-spacing:2.570351px;}
.wsc8{word-spacing:2.749678px;}
.ws1a{word-spacing:2.797517px;}
.wsda{word-spacing:2.809453px;}
.ws29{word-spacing:2.869229px;}
.wsf3{word-spacing:2.964877px;}
.ws7e{word-spacing:2.988780px;}
.ws139{word-spacing:3.060518px;}
.ws22{word-spacing:3.066509px;}
.ws8b{word-spacing:3.108331px;}
.ws138{word-spacing:3.108339px;}
.ws3c{word-spacing:3.168107px;}
.ws79{word-spacing:3.227882px;}
.wsa7{word-spacing:3.407209px;}
.ws34{word-spacing:3.526760px;}
.wsac{word-spacing:3.586536px;}
.ws13c{word-spacing:3.634366px;}
.ws113{word-spacing:3.730007px;}
.wsd6{word-spacing:3.765863px;}
.ws1b{word-spacing:3.819686px;}
.wsb7{word-spacing:3.825638px;}
.wsf7{word-spacing:3.873469px;}
.ws118{word-spacing:4.160392px;}
.ws111{word-spacing:4.447316px;}
.ws99{word-spacing:4.483170px;}
.ws94{word-spacing:4.602721px;}
.ws7a{word-spacing:4.662497px;}
.ws85{word-spacing:4.734239px;}
.wsb2{word-spacing:4.782048px;}
.ws61{word-spacing:4.782060px;}
.ws6b{word-spacing:4.841824px;}
.wsd1{word-spacing:4.961375px;}
.ws9{word-spacing:5.003251px;}
.wsb0{word-spacing:5.021150px;}
.ws95{word-spacing:5.200477px;}
.ws140{word-spacing:5.308087px;}
.wsb3{word-spacing:5.439580px;}
.wscb{word-spacing:5.499355px;}
.wsf{word-spacing:5.541235px;}
.ws56{word-spacing:5.559131px;}
.wsec{word-spacing:5.642831px;}
.ws53{word-spacing:5.738458px;}
.ws12c{word-spacing:5.738472px;}
.ws4c{word-spacing:5.858009px;}
.ws5a{word-spacing:5.912406px;}
.wsd7{word-spacing:5.917784px;}
.ws87{word-spacing:5.918127px;}
.ws86{word-spacing:5.918406px;}
.ws5e{word-spacing:5.920518px;}
.ws59{word-spacing:5.926052px;}
.ws89{word-spacing:5.927270px;}
.ws6{word-spacing:5.974001px;}
.ws3{word-spacing:5.977560px;}
.wsf9{word-spacing:5.977575px;}
.ws5{word-spacing:5.978759px;}
.ws14a{word-spacing:6.025396px;}
.wsb{word-spacing:6.186816px;}
.wse3{word-spacing:6.276438px;}
.ws74{word-spacing:6.395989px;}
.ws78{word-spacing:6.455765px;}
.ws8e{word-spacing:6.515540px;}
.ws1{word-spacing:6.575340px;}
.ws30{word-spacing:6.694867px;}
.ws1f{word-spacing:6.724800px;}
.ws2e{word-spacing:6.754643px;}
.ws68{word-spacing:6.814418px;}
.wsa8{word-spacing:6.874194px;}
.ws31{word-spacing:6.933970px;}
.wscf{word-spacing:6.933987px;}
.ws27{word-spacing:6.993745px;}
.ws8d{word-spacing:7.053521px;}
.ws150{word-spacing:7.077449px;}
.wsde{word-spacing:7.113296px;}
.wsd4{word-spacing:7.292623px;}
.ws13b{word-spacing:7.316552px;}
.ws28{word-spacing:7.352399px;}
.ws9d{word-spacing:7.412174px;}
.ws121{word-spacing:7.507834px;}
.wsbd{word-spacing:7.531726px;}
.ws1c{word-spacing:7.531776px;}
.wsf6{word-spacing:7.555655px;}
.wse{word-spacing:7.746970px;}
.wse2{word-spacing:7.830604px;}
.wsa{word-spacing:7.908365px;}
.wseb{word-spacing:7.938220px;}
.wsd5{word-spacing:8.069706px;}
.wsf8{word-spacing:8.177323px;}
.wsd2{word-spacing:8.308808px;}
.wse7{word-spacing:8.359459px;}
.ws9e{word-spacing:8.368584px;}
.wsce{word-spacing:8.416426px;}
.ws96{word-spacing:8.428360px;}
.ws6a{word-spacing:8.488135px;}
.ws39{word-spacing:8.787013px;}
.wsc3{word-spacing:8.846789px;}
.ws51{word-spacing:9.026116px;}
.wsfd{word-spacing:9.181555px;}
.wsb1{word-spacing:9.205442px;}
.ws92{word-spacing:9.265218px;}
.ws128{word-spacing:9.325017px;}
.ws4f{word-spacing:9.384769px;}
.wsdb{word-spacing:9.444545px;}
.ws14f{word-spacing:9.516299px;}
.ws17{word-spacing:9.522317px;}
.ws107{word-spacing:9.527732px;}
.wsa6{word-spacing:9.564096px;}
.ws159{word-spacing:9.564120px;}
.ws77{word-spacing:9.683647px;}
.ws158{word-spacing:9.803223px;}
.ws81{word-spacing:9.862974px;}
.wsa1{word-spacing:9.922750px;}
.wsd8{word-spacing:10.102076px;}
.ws8c{word-spacing:10.341179px;}
.ws13{word-spacing:10.383091px;}
.wsb8{word-spacing:10.400954px;}
.ws33{word-spacing:10.460730px;}
.ws104{word-spacing:10.472711px;}
.ws21{word-spacing:10.490688px;}
.ws149{word-spacing:10.568353px;}
.ws91{word-spacing:10.580281px;}
.ws142{word-spacing:10.616173px;}
.wsad{word-spacing:10.640057px;}
.wsc6{word-spacing:10.699832px;}
.ws15{word-spacing:10.813478px;}
.ws4b{word-spacing:10.879159px;}
.ws60{word-spacing:10.938935px;}
.wsfb{word-spacing:10.998738px;}
.ws15d{word-spacing:11.046559px;}
.wsdd{word-spacing:11.058486px;}
.wsd9{word-spacing:11.118262px;}
.wsa9{word-spacing:11.297588px;}
.ws37{word-spacing:11.357364px;}
.ws19{word-spacing:11.405261px;}
.wse0{word-spacing:11.417140px;}
.ws26{word-spacing:11.476915px;}
.ws135{word-spacing:11.620406px;}
.ws4d{word-spacing:11.656242px;}
.ws69{word-spacing:11.775793px;}
.ws120{word-spacing:11.811688px;}
.wsc0{word-spacing:11.859509px;}
.ws49{word-spacing:11.895344px;}
.ws83{word-spacing:11.955120px;}
.ws146{word-spacing:12.002971px;}
.ws75{word-spacing:12.014896px;}
.ws147{word-spacing:12.050791px;}
.ws1e{word-spacing:12.158438px;}
.wsc5{word-spacing:12.373549px;}
.ws67{word-spacing:12.433325px;}
.ws155{word-spacing:12.433356px;}
.ws40{word-spacing:12.552876px;}
.ws133{word-spacing:12.576818px;}
.ws3a{word-spacing:12.612652px;}
.wsdf{word-spacing:12.732203px;}
.ws38{word-spacing:12.911530px;}
.ws14d{word-spacing:12.959383px;}
.wsa5{word-spacing:13.270183px;}
.wsbe{word-spacing:13.628837px;}
.wsab{word-spacing:13.688612px;}
.ws65{word-spacing:13.748388px;}
.ws151{word-spacing:13.867974px;}
.ws129{word-spacing:13.915795px;}
.wse5{word-spacing:13.963615px;}
.ws54{word-spacing:14.047266px;}
.ws7d{word-spacing:14.226593px;}
.ws6c{word-spacing:14.286368px;}
.ws0{word-spacing:14.346180px;}
.ws12{word-spacing:14.364173px;}
.ws57{word-spacing:14.405920px;}
.ws80{word-spacing:14.465695px;}
.wsbf{word-spacing:14.728745px;}
.ws12f{word-spacing:14.776565px;}
.wsf4{word-spacing:14.872207px;}
.ws52{word-spacing:14.884124px;}
.ws13a{word-spacing:14.967848px;}
.ws131{word-spacing:15.159130px;}
.ws72{word-spacing:15.242778px;}
.wsea{word-spacing:15.254771px;}
.wse1{word-spacing:15.362329px;}
.ws43{word-spacing:15.422105px;}
.wsf2{word-spacing:15.446054px;}
.wsb9{word-spacing:15.481880px;}
.ws13d{word-spacing:15.541695px;}
.ws115{word-spacing:15.685157px;}
.ws4a{word-spacing:15.720983px;}
.wsba{word-spacing:16.019861px;}
.ws117{word-spacing:16.067722px;}
.ws14b{word-spacing:16.115542px;}
.wsd3{word-spacing:16.139412px;}
.ws3f{word-spacing:16.199188px;}
.wsaf{word-spacing:16.258963px;}
.wsae{word-spacing:16.318739px;}
.ws110{word-spacing:16.354645px;}
.ws9c{word-spacing:16.378514px;}
.ws90{word-spacing:16.438290px;}
.ws46{word-spacing:16.498066px;}
.wsc7{word-spacing:16.557841px;}
.ws134{word-spacing:16.689389px;}
.wsa0{word-spacing:16.737168px;}
.ws98{word-spacing:16.796944px;}
.ws130{word-spacing:16.928492px;}
.ws25{word-spacing:16.976270px;}
.wsd0{word-spacing:17.155597px;}
.wsbc{word-spacing:17.334924px;}
.ws12b{word-spacing:17.358878px;}
.wsb5{word-spacing:17.394700px;}
.ws106{word-spacing:17.406698px;}
.wsa4{word-spacing:17.514251px;}
.ws82{word-spacing:17.574026px;}
.ws12d{word-spacing:17.645801px;}
.wse6{word-spacing:17.741443px;}
.ws11{word-spacing:17.753472px;}
.wsbb{word-spacing:17.872904px;}
.ws12e{word-spacing:17.884904px;}
.ws23{word-spacing:17.932680px;}
.wsfa{word-spacing:17.932725px;}
.ws44{word-spacing:17.992456px;}
.wsc4{word-spacing:18.231558px;}
.wsd{word-spacing:18.237658px;}
.ws6f{word-spacing:18.351109px;}
.ws45{word-spacing:18.410885px;}
.ws7b{word-spacing:18.470660px;}
.ws10e{word-spacing:18.793496px;}
.ws14{word-spacing:18.829440px;}
.wsdc{word-spacing:18.889090px;}
.ws12a{word-spacing:18.984778px;}
.ws18{word-spacing:19.098432px;}
.ws47{word-spacing:19.187968px;}
.wsb6{word-spacing:19.247743px;}
.ws112{word-spacing:19.271702px;}
.ws3b{word-spacing:19.307519px;}
.ws58{word-spacing:19.367294px;}
.ws122{word-spacing:19.415164px;}
.wsf5{word-spacing:19.462984px;}
.ws16{word-spacing:19.582618px;}
.wscc{word-spacing:19.606397px;}
.ws152{word-spacing:19.893370px;}
.ws137{word-spacing:20.132473px;}
.wse8{word-spacing:20.275934px;}
.ws32{word-spacing:20.682358px;}
.ws42{word-spacing:20.801909px;}
.ws2{word-spacing:20.861684px;}
.wsa3{word-spacing:20.921460px;}
.ws10d{word-spacing:20.993243px;}
.ws41{word-spacing:21.041011px;}
.wsaa{word-spacing:21.100787px;}
.ws14e{word-spacing:21.423629px;}
.ws108{word-spacing:21.471449px;}
.ws2f{word-spacing:21.638767px;}
.ws66{word-spacing:21.997421px;}
.ws156{word-spacing:22.284400px;}
.ws143{word-spacing:22.523503px;}
.ws6d{word-spacing:22.595177px;}
.ws103{word-spacing:22.714785px;}
.ws55{word-spacing:22.834279px;}
.ws7f{word-spacing:23.133157px;}
.ws4e{word-spacing:23.372260px;}
.ws13f{word-spacing:23.575556px;}
.ws7c{word-spacing:23.611362px;}
.wsff{word-spacing:23.776423px;}
.ws20{word-spacing:23.886490px;}
.wsed{word-spacing:24.196423px;}
.ws141{word-spacing:24.197224px;}
.wsb4{word-spacing:24.747098px;}
.ws8a{word-spacing:24.806874px;}
.ws15a{word-spacing:24.914533px;}
.ws13e{word-spacing:25.344918px;}
.ws102{word-spacing:26.014406px;}
.ws126{word-spacing:26.062227px;}
.ws10c{word-spacing:26.444792px;}
.wse9{word-spacing:27.162101px;}
.ws116{word-spacing:27.640307px;}
.wsf1{word-spacing:27.927230px;}
.ws11e{word-spacing:28.022872px;}
.ws10a{word-spacing:29.170566px;}
.ws10b{word-spacing:29.505310px;}
.ws63{word-spacing:29.648698px;}
.ws10f{word-spacing:30.700825px;}
.wsfe{word-spacing:30.844287px;}
.wsef{word-spacing:32.661470px;}
.ws105{word-spacing:33.378779px;}
.ws64{word-spacing:33.773214px;}
.ws71{word-spacing:34.610072px;}
.ws100{word-spacing:35.674168px;}
.wsee{word-spacing:36.104553px;}
.ws11f{word-spacing:36.200194px;}
.ws101{word-spacing:37.921736px;}
.wsf0{word-spacing:39.834560px;}
.ws11d{word-spacing:39.930201px;}
.ws15b{word-spacing:40.264945px;}
.ws11a{word-spacing:40.551869px;}
.ws15c{word-spacing:48.442268px;}
.ws11b{word-spacing:54.419843px;}
.ws157{word-spacing:54.563305px;}
.ws5f{word-spacing:55.113103px;}
.ws11c{word-spacing:66.327172px;}
._7{margin-left:-3092.105675px;}
._a{margin-left:-8.619608px;}
._9{margin-left:-5.977560px;}
._5{margin-left:-4.949453px;}
._4{margin-left:-3.347463px;}
._1{margin-left:-2.301369px;}
._2{margin-left:-1.195527px;}
._c{width:1.405948px;}
._6{width:2.988780px;}
._17{width:13.007080px;}
._15{width:15.356378px;}
._b{width:17.155597px;}
._11{width:22.236523px;}
._e{width:25.536200px;}
._3{width:30.180902px;}
._d{width:32.338615px;}
._8{width:34.699744px;}
._18{width:39.259379px;}
._10{width:40.743151px;}
._16{width:45.637008px;}
._14{width:47.550725px;}
._f{width:53.367790px;}
._12{width:65.473240px;}
._13{width:68.907486px;}
._0{width:102.049277px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y5d{bottom:188.167500px;}
.y133{bottom:201.618000px;}
.y5c{bottom:206.100000px;}
.y175{bottom:206.101500px;}
.y132{bottom:215.067000px;}
.y174{bottom:219.550500px;}
.y8f{bottom:224.032500px;}
.y131{bottom:228.780000px;}
.y5b{bottom:229.816500px;}
.y173{bottom:233.001000px;}
.y32{bottom:234.793500px;}
.y8e{bottom:241.965000px;}
.yb2{bottom:241.966500px;}
.y130{bottom:242.229000px;}
.y172{bottom:246.450000px;}
.y5a{bottom:247.749000px;}
.y31{bottom:252.726000px;}
.y12f{bottom:255.678000px;}
.y8d{bottom:259.899000px;}
.y12e{bottom:269.128500px;}
.y30{bottom:270.658500px;}
.y171{bottom:273.349500px;}
.y59{bottom:277.293000px;}
.yd2{bottom:277.362000px;}
.y8c{bottom:277.831500px;}
.yb1{bottom:278.179500px;}
.y12d{bottom:282.577500px;}
.y170{bottom:286.798500px;}
.y2f{bottom:288.591000px;}
.y58{bottom:295.225500px;}
.yd1{bottom:295.294500px;}
.y8b{bottom:295.764000px;}
.yb0{bottom:296.113500px;}
.y12c{bottom:296.290500px;}
.y16f{bottom:300.247500px;}
.y2e{bottom:307.260000px;}
.y12b{bottom:309.739500px;}
.y57{bottom:313.158000px;}
.yd0{bottom:313.228500px;}
.y8a{bottom:313.696500px;}
.y16e{bottom:313.698000px;}
.yaf{bottom:314.046000px;}
.y12a{bottom:323.190000px;}
.y2d{bottom:325.192500px;}
.y16d{bottom:327.147000px;}
.y56{bottom:331.092000px;}
.ycf{bottom:331.161000px;}
.y89{bottom:331.629000px;}
.yae{bottom:331.978500px;}
.y129{bottom:336.639000px;}
.y16c{bottom:340.597500px;}
.y2c{bottom:343.125000px;}
.y55{bottom:349.024500px;}
.yce{bottom:349.093500px;}
.y88{bottom:349.561500px;}
.yf1{bottom:349.563000px;}
.yad{bottom:349.911000px;}
.y128{bottom:350.088000px;}
.y16b{bottom:354.046500px;}
.y2b{bottom:361.057500px;}
.y127{bottom:363.538500px;}
.y54{bottom:366.957000px;}
.ycd{bottom:367.026000px;}
.yf0{bottom:367.495500px;}
.yac{bottom:367.843500px;}
.y87{bottom:373.278000px;}
.y126{bottom:377.250000px;}
.y2a{bottom:378.990000px;}
.y16a{bottom:380.946000px;}
.y53{bottom:384.889500px;}
.ycc{bottom:384.958500px;}
.yef{bottom:385.428000px;}
.yab{bottom:385.776000px;}
.y125{bottom:390.700500px;}
.y86{bottom:391.210500px;}
.y169{bottom:394.395000px;}
.y29{bottom:396.922500px;}
.y52{bottom:402.822000px;}
.ycb{bottom:402.892500px;}
.yee{bottom:403.360500px;}
.yaa{bottom:403.710000px;}
.y124{bottom:404.149500px;}
.y168{bottom:407.844000px;}
.y28{bottom:414.856500px;}
.y123{bottom:417.598500px;}
.y51{bottom:420.754500px;}
.yca{bottom:420.825000px;}
.yed{bottom:421.293000px;}
.y167{bottom:421.294500px;}
.ya9{bottom:421.642500px;}
.y122{bottom:431.049000px;}
.y27{bottom:432.789000px;}
.y166{bottom:434.743500px;}
.y50{bottom:438.688500px;}
.yc9{bottom:438.757500px;}
.yec{bottom:439.225500px;}
.ya8{bottom:439.575000px;}
.y121{bottom:444.498000px;}
.y165{bottom:448.194000px;}
.y26{bottom:450.721500px;}
.y4f{bottom:456.621000px;}
.yc8{bottom:456.690000px;}
.yeb{bottom:457.159500px;}
.ya7{bottom:457.507500px;}
.y120{bottom:458.211000px;}
.y164{bottom:461.643000px;}
.y25{bottom:468.654000px;}
.y11f{bottom:471.660000px;}
.y85{bottom:474.553500px;}
.yc7{bottom:474.622500px;}
.y4e{bottom:474.732000px;}
.yea{bottom:475.092000px;}
.ya6{bottom:475.440000px;}
.y11e{bottom:485.110500px;}
.y24{bottom:486.586500px;}
.y163{bottom:488.542500px;}
.y84{bottom:492.486000px;}
.yc6{bottom:492.555000px;}
.y4d{bottom:492.666000px;}
.ye9{bottom:493.024500px;}
.ya5{bottom:493.372500px;}
.y11d{bottom:498.559500px;}
.y162{bottom:501.991500px;}
.y23{bottom:504.519000px;}
.y83{bottom:510.418500px;}
.yc5{bottom:510.489000px;}
.y4c{bottom:510.598500px;}
.ye8{bottom:510.957000px;}
.y11c{bottom:512.008500px;}
.y161{bottom:515.440500px;}
.y22{bottom:522.453000px;}
.y11b{bottom:525.459000px;}
.ya4{bottom:526.831500px;}
.y82{bottom:528.352500px;}
.yc4{bottom:528.421500px;}
.y4b{bottom:528.531000px;}
.ye7{bottom:528.889500px;}
.y160{bottom:528.891000px;}
.y11a{bottom:539.170500px;}
.y21{bottom:540.385500px;}
.y15f{bottom:542.340000px;}
.y81{bottom:546.285000px;}
.y4a{bottom:546.463500px;}
.y119{bottom:552.621000px;}
.ye6{bottom:555.318000px;}
.y15e{bottom:555.790500px;}
.yc3{bottom:555.997500px;}
.y80{bottom:564.217500px;}
.y49{bottom:564.396000px;}
.y118{bottom:566.070000px;}
.y20{bottom:567.438000px;}
.y15d{bottom:569.239500px;}
.yc2{bottom:569.448000px;}
.y117{bottom:579.783000px;}
.y7f{bottom:582.330000px;}
.y48{bottom:582.508500px;}
.y15c{bottom:582.688500px;}
.yc1{bottom:582.897000px;}
.ye5{bottom:588.703500px;}
.y116{bottom:593.232000px;}
.y15b{bottom:596.139000px;}
.y7e{bottom:600.262500px;}
.y47{bottom:600.441000px;}
.ye4{bottom:606.636000px;}
.y115{bottom:606.681000px;}
.y15a{bottom:609.588000px;}
.y7d{bottom:618.195000px;}
.y46{bottom:618.373500px;}
.y114{bottom:620.131500px;}
.y1f{bottom:620.806500px;}
.y159{bottom:623.037000px;}
.ye3{bottom:624.568500px;}
.y113{bottom:633.580500px;}
.y1e{bottom:635.751000px;}
.y7c{bottom:636.127500px;}
.y45{bottom:636.307500px;}
.y158{bottom:636.487500px;}
.ye2{bottom:642.501000px;}
.y112{bottom:647.031000px;}
.y157{bottom:649.936500px;}
.y1d{bottom:651.430500px;}
.y7b{bottom:654.060000px;}
.y44{bottom:654.240000px;}
.ye1{bottom:660.435000px;}
.y111{bottom:660.480000px;}
.y156{bottom:663.387000px;}
.y1c{bottom:666.375000px;}
.y7a{bottom:671.992500px;}
.y43{bottom:672.172500px;}
.y110{bottom:673.929000px;}
.y155{bottom:676.836000px;}
.ye0{bottom:678.367500px;}
.y1b{bottom:681.318000px;}
.y10f{bottom:687.642000px;}
.y79{bottom:689.926500px;}
.y42{bottom:690.105000px;}
.y154{bottom:690.285000px;}
.y1a{bottom:696.262500px;}
.ydf{bottom:696.300000px;}
.y10e{bottom:701.091000px;}
.y153{bottom:703.735500px;}
.y78{bottom:707.859000px;}
.y41{bottom:708.037500px;}
.y19{bottom:711.207000px;}
.y10d{bottom:714.541500px;}
.yde{bottom:714.864000px;}
.y152{bottom:717.184500px;}
.y77{bottom:725.791500px;}
.y40{bottom:725.970000px;}
.y18{bottom:726.150000px;}
.y10c{bottom:728.253000px;}
.y151{bottom:730.633500px;}
.ydd{bottom:732.796500px;}
.y17{bottom:741.094500px;}
.y10b{bottom:741.703500px;}
.y76{bottom:743.724000px;}
.y3f{bottom:743.904000px;}
.y150{bottom:744.084000px;}
.ydc{bottom:750.729000px;}
.y10a{bottom:755.152500px;}
.y16{bottom:756.037500px;}
.y14f{bottom:757.533000px;}
.y75{bottom:761.656500px;}
.ya3{bottom:761.667000px;}
.y3e{bottom:761.836500px;}
.y109{bottom:768.601500px;}
.ydb{bottom:768.661500px;}
.y15{bottom:770.982000px;}
.y74{bottom:779.589000px;}
.ya2{bottom:779.599500px;}
.y3d{bottom:779.769000px;}
.y108{bottom:782.052000px;}
.y14e{bottom:784.432500px;}
.y14{bottom:785.926500px;}
.yda{bottom:786.595500px;}
.y107{bottom:795.763500px;}
.y73{bottom:797.523000px;}
.ya1{bottom:797.532000px;}
.y3c{bottom:797.701500px;}
.y14d{bottom:797.881500px;}
.y13{bottom:800.869500px;}
.yd9{bottom:804.528000px;}
.y106{bottom:809.214000px;}
.y14c{bottom:811.332000px;}
.y72{bottom:815.455500px;}
.ya0{bottom:815.464500px;}
.y3b{bottom:815.634000px;}
.y12{bottom:815.814000px;}
.yc0{bottom:816.283500px;}
.yd8{bottom:822.460500px;}
.y105{bottom:822.663000px;}
.y14b{bottom:824.781000px;}
.y11{bottom:830.758500px;}
.y71{bottom:833.388000px;}
.y9f{bottom:833.397000px;}
.y3a{bottom:833.746500px;}
.ybf{bottom:834.216000px;}
.y104{bottom:836.112000px;}
.y14a{bottom:838.230000px;}
.yd7{bottom:840.393000px;}
.y10{bottom:845.701500px;}
.y103{bottom:849.562500px;}
.y70{bottom:851.320500px;}
.y9e{bottom:851.331000px;}
.y39{bottom:851.679000px;}
.y149{bottom:851.680500px;}
.ybe{bottom:852.148500px;}
.yd6{bottom:858.325500px;}
.yf{bottom:860.646000px;}
.y102{bottom:863.011500px;}
.y148{bottom:865.129500px;}
.y6f{bottom:869.253000px;}
.y9d{bottom:869.263500px;}
.y38{bottom:869.611500px;}
.ybd{bottom:870.081000px;}
.ye{bottom:875.590500px;}
.y101{bottom:876.724500px;}
.y147{bottom:878.578500px;}
.y6e{bottom:887.187000px;}
.y9c{bottom:887.196000px;}
.y37{bottom:887.545500px;}
.ybc{bottom:888.013500px;}
.y100{bottom:890.173500px;}
.yd{bottom:890.533500px;}
.y146{bottom:892.029000px;}
.yd5{bottom:892.537500px;}
.yff{bottom:903.624000px;}
.y9b{bottom:905.128500px;}
.y6d{bottom:905.298000px;}
.yc{bottom:905.478000px;}
.ybb{bottom:905.946000px;}
.yd4{bottom:905.988000px;}
.yfe{bottom:917.073000px;}
.y145{bottom:918.928500px;}
.yd3{bottom:919.437000px;}
.yb{bottom:920.422500px;}
.y9a{bottom:923.061000px;}
.y6c{bottom:923.230500px;}
.y36{bottom:923.410500px;}
.yba{bottom:923.880000px;}
.yfd{bottom:930.522000px;}
.y144{bottom:932.377500px;}
.ya{bottom:935.365500px;}
.y99{bottom:940.993500px;}
.y6b{bottom:941.164500px;}
.y35{bottom:941.343000px;}
.yb9{bottom:941.812500px;}
.y143{bottom:945.826500px;}
.y9{bottom:950.310000px;}
.yfc{bottom:955.554000px;}
.y98{bottom:958.927500px;}
.y6a{bottom:959.097000px;}
.y34{bottom:959.275500px;}
.y142{bottom:959.277000px;}
.yb8{bottom:959.745000px;}
.y8{bottom:965.253000px;}
.y141{bottom:972.726000px;}
.y97{bottom:976.860000px;}
.y69{bottom:977.029500px;}
.y33{bottom:977.208000px;}
.yb7{bottom:977.677500px;}
.y7{bottom:980.197500px;}
.y140{bottom:986.175000px;}
.yfb{bottom:987.595500px;}
.y68{bottom:994.962000px;}
.y96{bottom:995.140500px;}
.y6{bottom:995.142000px;}
.yb6{bottom:995.610000px;}
.y13f{bottom:999.625500px;}
.yfa{bottom:1005.528000px;}
.y67{bottom:1012.894500px;}
.y95{bottom:1013.074500px;}
.yb5{bottom:1013.544000px;}
.yf9{bottom:1023.460500px;}
.y13e{bottom:1026.525000px;}
.y5{bottom:1029.862500px;}
.y66{bottom:1030.827000px;}
.y94{bottom:1031.007000px;}
.yb4{bottom:1031.476500px;}
.y13d{bottom:1039.974000px;}
.yf8{bottom:1041.393000px;}
.y4{bottom:1048.356000px;}
.y65{bottom:1048.761000px;}
.y93{bottom:1048.939500px;}
.y13c{bottom:1053.423000px;}
.yf7{bottom:1059.325500px;}
.y64{bottom:1066.693500px;}
.y92{bottom:1066.872000px;}
.y13b{bottom:1066.873500px;}
.y3{bottom:1067.070000px;}
.yf6{bottom:1077.259500px;}
.y13a{bottom:1080.322500px;}
.y63{bottom:1084.626000px;}
.y91{bottom:1084.804500px;}
.yb3{bottom:1084.806000px;}
.y139{bottom:1093.771500px;}
.yf5{bottom:1095.192000px;}
.y90{bottom:1102.737000px;}
.y62{bottom:1102.738500px;}
.y138{bottom:1107.222000px;}
.yf4{bottom:1113.124500px;}
.y2{bottom:1114.144500px;}
.y61{bottom:1120.671000px;}
.yf3{bottom:1131.057000px;}
.y137{bottom:1134.120000px;}
.y60{bottom:1138.603500px;}
.y136{bottom:1147.570500px;}
.yf2{bottom:1148.989500px;}
.y1{bottom:1155.987000px;}
.y5f{bottom:1156.536000px;}
.y135{bottom:1161.019500px;}
.y5e{bottom:1174.468500px;}
.y134{bottom:1174.470000px;}
.ha{height:32.804932px;}
.h8{height:34.765576px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.h4{height:43.456861px;}
.h9{height:43.750861px;}
.h5{height:44.831700px;}
.h3{height:47.802722px;}
.h2{height:104.296729px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:60.903000px;}
.xd{left:63.079500px;}
.x12{left:66.880500px;}
.x6{left:75.846000px;}
.x2{left:84.039000px;}
.x13{left:88.291500px;}
.x1{left:91.032000px;}
.x10{left:180.336000px;}
.x8{left:190.885500px;}
.x11{left:207.354000px;}
.x3{left:225.034500px;}
.x5{left:293.188500px;}
.x4{left:358.386000px;}
.x9{left:455.422500px;}
.xb{left:465.766500px;}
.xa{left:470.367000px;}
.x14{left:482.812500px;}
.xe{left:489.786000px;}
.xc{left:542.047500px;}
.xf{left:587.236500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000891pt;}
.lsf{letter-spacing:0.003733pt;}
.ls11{letter-spacing:0.741348pt;}
.ls4{letter-spacing:2.635446pt;}
.ls6{letter-spacing:2.653089pt;}
.lsa{letter-spacing:2.655207pt;}
.ls12{letter-spacing:2.655711pt;}
.lsc{letter-spacing:2.656015pt;}
.ls7{letter-spacing:2.656693pt;}
.ls5{letter-spacing:2.657326pt;}
.lsb{letter-spacing:2.658422pt;}
.ls9{letter-spacing:2.660237pt;}
.ls3{letter-spacing:13.254719pt;}
.ls10{letter-spacing:13.840479pt;}
.lse{letter-spacing:14.949812pt;}
.lsd{letter-spacing:15.728479pt;}
.ls0{letter-spacing:18.594079pt;}
.ls1{letter-spacing:18.599412pt;}
.ws4{word-spacing:-53.133867pt;}
.ws5d{word-spacing:-15.940160pt;}
.ws7{word-spacing:-13.283467pt;}
.ws24{word-spacing:-13.262246pt;}
.ws5b{word-spacing:-10.626800pt;}
.ws84{word-spacing:-1.062680pt;}
.ws93{word-spacing:-0.903276pt;}
.ws76{word-spacing:-0.850142pt;}
.ws3e{word-spacing:-0.797008pt;}
.ws136{word-spacing:-0.680115pt;}
.ws2d{word-spacing:-0.637606pt;}
.ws125{word-spacing:-0.467579pt;}
.ws50{word-spacing:-0.371937pt;}
.wsc1{word-spacing:-0.212535pt;}
.ws6e{word-spacing:-0.053134pt;}
.ws8{word-spacing:-0.047821pt;}
.ws109{word-spacing:-0.042507pt;}
.ws5c{word-spacing:-0.002440pt;}
.ws62{word-spacing:0.000000pt;}
.ws88{word-spacing:0.026302pt;}
.ws123{word-spacing:0.042507pt;}
.ws145{word-spacing:0.085014pt;}
.ws127{word-spacing:0.127522pt;}
.ws9a{word-spacing:0.159402pt;}
.ws144{word-spacing:0.170029pt;}
.ws48{word-spacing:0.318803pt;}
.ws154{word-spacing:0.467579pt;}
.ws70{word-spacing:0.478205pt;}
.ws10{word-spacing:0.478208pt;}
.ws2c{word-spacing:0.531339pt;}
.ws132{word-spacing:0.552594pt;}
.ws8f{word-spacing:0.584473pt;}
.wsa2{word-spacing:0.680115pt;}
.ws9b{word-spacing:0.797008pt;}
.ws3d{word-spacing:0.850142pt;}
.ws14c{word-spacing:0.910251pt;}
.ws36{word-spacing:0.956410pt;}
.wsfc{word-spacing:1.105187pt;}
.wsca{word-spacing:1.115811pt;}
.wsc{word-spacing:1.195520pt;}
.ws148{word-spacing:1.232709pt;}
.ws1d{word-spacing:1.291162pt;}
.wse4{word-spacing:1.381481pt;}
.wsc2{word-spacing:1.594016pt;}
.ws153{word-spacing:1.615274pt;}
.wsc9{word-spacing:1.647150pt;}
.ws124{word-spacing:1.785302pt;}
.ws9f{word-spacing:1.806551pt;}
.ws35{word-spacing:1.912819pt;}
.ws119{word-spacing:1.955331pt;}
.ws97{word-spacing:2.019087pt;}
.ws2a{word-spacing:2.072221pt;}
.ws2b{word-spacing:2.125355pt;}
.ws114{word-spacing:2.125360pt;}
.wscd{word-spacing:2.178489pt;}
.ws73{word-spacing:2.284756pt;}
.wsc8{word-spacing:2.444158pt;}
.ws1a{word-spacing:2.486682pt;}
.wsda{word-spacing:2.497292pt;}
.ws29{word-spacing:2.550426pt;}
.wsf3{word-spacing:2.635446pt;}
.ws7e{word-spacing:2.656693pt;}
.ws139{word-spacing:2.720461pt;}
.ws22{word-spacing:2.725786pt;}
.ws8b{word-spacing:2.762961pt;}
.ws138{word-spacing:2.762968pt;}
.ws3c{word-spacing:2.816095pt;}
.ws79{word-spacing:2.869229pt;}
.wsa7{word-spacing:3.028630pt;}
.ws34{word-spacing:3.134898pt;}
.wsac{word-spacing:3.188032pt;}
.ws13c{word-spacing:3.230547pt;}
.ws113{word-spacing:3.315562pt;}
.wsd6{word-spacing:3.347434pt;}
.ws1b{word-spacing:3.395277pt;}
.wsb7{word-spacing:3.400567pt;}
.wsf7{word-spacing:3.443083pt;}
.ws118{word-spacing:3.698126pt;}
.ws111{word-spacing:3.953170pt;}
.ws99{word-spacing:3.985040pt;}
.ws94{word-spacing:4.091308pt;}
.ws7a{word-spacing:4.144442pt;}
.ws85{word-spacing:4.208213pt;}
.wsb2{word-spacing:4.250709pt;}
.ws61{word-spacing:4.250720pt;}
.ws6b{word-spacing:4.303843pt;}
.wsd1{word-spacing:4.410111pt;}
.ws9{word-spacing:4.447334pt;}
.wsb0{word-spacing:4.463245pt;}
.ws95{word-spacing:4.622646pt;}
.ws140{word-spacing:4.718299pt;}
.wsb3{word-spacing:4.835182pt;}
.wscb{word-spacing:4.888316pt;}
.wsf{word-spacing:4.925542pt;}
.ws56{word-spacing:4.941450pt;}
.wsec{word-spacing:5.015850pt;}
.ws53{word-spacing:5.100851pt;}
.ws12c{word-spacing:5.100864pt;}
.ws4c{word-spacing:5.207119pt;}
.ws5a{word-spacing:5.255472pt;}
.wsd7{word-spacing:5.260253pt;}
.ws87{word-spacing:5.260557pt;}
.ws86{word-spacing:5.260805pt;}
.ws5e{word-spacing:5.262683pt;}
.ws59{word-spacing:5.267602pt;}
.ws89{word-spacing:5.268685pt;}
.ws6{word-spacing:5.310223pt;}
.ws3{word-spacing:5.313387pt;}
.wsf9{word-spacing:5.313400pt;}
.ws5{word-spacing:5.314452pt;}
.ws14a{word-spacing:5.355907pt;}
.wsb{word-spacing:5.499392pt;}
.wse3{word-spacing:5.579056pt;}
.ws74{word-spacing:5.685324pt;}
.ws78{word-spacing:5.738458pt;}
.ws8e{word-spacing:5.791591pt;}
.ws1{word-spacing:5.844747pt;}
.ws30{word-spacing:5.950993pt;}
.ws1f{word-spacing:5.977600pt;}
.ws2e{word-spacing:6.004127pt;}
.ws68{word-spacing:6.057261pt;}
.wsa8{word-spacing:6.110395pt;}
.ws31{word-spacing:6.163529pt;}
.wscf{word-spacing:6.163544pt;}
.ws27{word-spacing:6.216662pt;}
.ws8d{word-spacing:6.269796pt;}
.ws150{word-spacing:6.291066pt;}
.wsde{word-spacing:6.322930pt;}
.wsd4{word-spacing:6.482332pt;}
.ws13b{word-spacing:6.503602pt;}
.ws28{word-spacing:6.535466pt;}
.ws9d{word-spacing:6.588599pt;}
.ws121{word-spacing:6.673630pt;}
.wsbd{word-spacing:6.694867pt;}
.ws1c{word-spacing:6.694912pt;}
.wsf6{word-spacing:6.716138pt;}
.wse{word-spacing:6.886195pt;}
.wse2{word-spacing:6.960537pt;}
.wsa{word-spacing:7.029658pt;}
.wseb{word-spacing:7.056195pt;}
.wsd5{word-spacing:7.173072pt;}
.wsf8{word-spacing:7.268731pt;}
.wsd2{word-spacing:7.385607pt;}
.wse7{word-spacing:7.430630pt;}
.ws9e{word-spacing:7.438741pt;}
.wsce{word-spacing:7.481267pt;}
.ws96{word-spacing:7.491875pt;}
.ws6a{word-spacing:7.545009pt;}
.ws39{word-spacing:7.810678pt;}
.wsc3{word-spacing:7.863812pt;}
.ws51{word-spacing:8.023214pt;}
.wsfd{word-spacing:8.161382pt;}
.wsb1{word-spacing:8.182615pt;}
.ws92{word-spacing:8.235749pt;}
.ws128{word-spacing:8.288904pt;}
.ws4f{word-spacing:8.342017pt;}
.wsdb{word-spacing:8.395151pt;}
.ws14f{word-spacing:8.458933pt;}
.ws17{word-spacing:8.464282pt;}
.ws107{word-spacing:8.469095pt;}
.wsa6{word-spacing:8.501419pt;}
.ws159{word-spacing:8.501440pt;}
.ws77{word-spacing:8.607686pt;}
.ws158{word-spacing:8.713976pt;}
.ws81{word-spacing:8.767088pt;}
.wsa1{word-spacing:8.820222pt;}
.wsd8{word-spacing:8.979623pt;}
.ws8c{word-spacing:9.192159pt;}
.ws13{word-spacing:9.229414pt;}
.wsb8{word-spacing:9.245293pt;}
.ws33{word-spacing:9.298427pt;}
.ws104{word-spacing:9.309077pt;}
.ws21{word-spacing:9.325056pt;}
.ws149{word-spacing:9.394091pt;}
.ws91{word-spacing:9.404694pt;}
.ws142{word-spacing:9.436598pt;}
.wsad{word-spacing:9.457828pt;}
.wsc6{word-spacing:9.510962pt;}
.ws15{word-spacing:9.611981pt;}
.ws4b{word-spacing:9.670364pt;}
.ws60{word-spacing:9.723498pt;}
.wsfb{word-spacing:9.776656pt;}
.ws15d{word-spacing:9.819163pt;}
.wsdd{word-spacing:9.829765pt;}
.wsd9{word-spacing:9.882899pt;}
.wsa9{word-spacing:10.042301pt;}
.ws37{word-spacing:10.095435pt;}
.ws19{word-spacing:10.138010pt;}
.wse0{word-spacing:10.148569pt;}
.ws26{word-spacing:10.201702pt;}
.ws135{word-spacing:10.329250pt;}
.ws4d{word-spacing:10.361104pt;}
.ws69{word-spacing:10.467372pt;}
.ws120{word-spacing:10.499278pt;}
.wsc0{word-spacing:10.541786pt;}
.ws49{word-spacing:10.573639pt;}
.ws83{word-spacing:10.626773pt;}
.ws146{word-spacing:10.669307pt;}
.ws75{word-spacing:10.679907pt;}
.ws147{word-spacing:10.711814pt;}
.ws1e{word-spacing:10.807501pt;}
.wsc5{word-spacing:10.998710pt;}
.ws67{word-spacing:11.051844pt;}
.ws155{word-spacing:11.051872pt;}
.ws40{word-spacing:11.158112pt;}
.ws133{word-spacing:11.179394pt;}
.ws3a{word-spacing:11.211246pt;}
.wsdf{word-spacing:11.317514pt;}
.ws38{word-spacing:11.476915pt;}
.ws14d{word-spacing:11.519451pt;}
.wsa5{word-spacing:11.795718pt;}
.wsbe{word-spacing:12.114522pt;}
.wsab{word-spacing:12.167655pt;}
.ws65{word-spacing:12.220789pt;}
.ws151{word-spacing:12.327088pt;}
.ws129{word-spacing:12.369595pt;}
.wse5{word-spacing:12.412102pt;}
.ws54{word-spacing:12.486459pt;}
.ws7d{word-spacing:12.645860pt;}
.ws6c{word-spacing:12.698994pt;}
.ws0{word-spacing:12.752160pt;}
.ws12{word-spacing:12.768154pt;}
.ws57{word-spacing:12.805262pt;}
.ws80{word-spacing:12.858396pt;}
.wsbf{word-spacing:13.092218pt;}
.ws12f{word-spacing:13.134725pt;}
.wsf4{word-spacing:13.219739pt;}
.ws52{word-spacing:13.230333pt;}
.ws13a{word-spacing:13.304754pt;}
.ws131{word-spacing:13.474782pt;}
.ws72{word-spacing:13.549136pt;}
.wsea{word-spacing:13.559797pt;}
.wse1{word-spacing:13.655404pt;}
.ws43{word-spacing:13.708538pt;}
.wsf2{word-spacing:13.729826pt;}
.wsb9{word-spacing:13.761671pt;}
.ws13d{word-spacing:13.814840pt;}
.ws115{word-spacing:13.942362pt;}
.ws4a{word-spacing:13.974207pt;}
.wsba{word-spacing:14.239876pt;}
.ws117{word-spacing:14.282419pt;}
.ws14b{word-spacing:14.324926pt;}
.wsd3{word-spacing:14.346144pt;}
.ws3f{word-spacing:14.399278pt;}
.wsaf{word-spacing:14.452412pt;}
.wsae{word-spacing:14.505546pt;}
.ws110{word-spacing:14.537462pt;}
.ws9c{word-spacing:14.558679pt;}
.ws90{word-spacing:14.611813pt;}
.ws46{word-spacing:14.664947pt;}
.wsc7{word-spacing:14.718081pt;}
.ws134{word-spacing:14.835013pt;}
.wsa0{word-spacing:14.877483pt;}
.ws98{word-spacing:14.930617pt;}
.ws130{word-spacing:15.047549pt;}
.ws25{word-spacing:15.090018pt;}
.wsd0{word-spacing:15.249420pt;}
.wsbc{word-spacing:15.408821pt;}
.ws12b{word-spacing:15.430114pt;}
.wsb5{word-spacing:15.461955pt;}
.ws106{word-spacing:15.472621pt;}
.wsa4{word-spacing:15.568223pt;}
.ws82{word-spacing:15.621357pt;}
.ws12d{word-spacing:15.685157pt;}
.wse6{word-spacing:15.770171pt;}
.ws11{word-spacing:15.780864pt;}
.wsbb{word-spacing:15.887026pt;}
.ws12e{word-spacing:15.897693pt;}
.ws23{word-spacing:15.940160pt;}
.wsfa{word-spacing:15.940200pt;}
.ws44{word-spacing:15.993294pt;}
.wsc4{word-spacing:16.205829pt;}
.wsd{word-spacing:16.211251pt;}
.ws6f{word-spacing:16.312097pt;}
.ws45{word-spacing:16.365231pt;}
.ws7b{word-spacing:16.418365pt;}
.ws10e{word-spacing:16.705330pt;}
.ws14{word-spacing:16.737280pt;}
.wsdc{word-spacing:16.790302pt;}
.ws12a{word-spacing:16.875358pt;}
.ws18{word-spacing:16.976384pt;}
.ws47{word-spacing:17.055971pt;}
.wsb6{word-spacing:17.109105pt;}
.ws112{word-spacing:17.130402pt;}
.ws3b{word-spacing:17.162239pt;}
.ws58{word-spacing:17.215373pt;}
.ws122{word-spacing:17.257923pt;}
.wsf5{word-spacing:17.300430pt;}
.ws16{word-spacing:17.406771pt;}
.wscc{word-spacing:17.427908pt;}
.ws152{word-spacing:17.682995pt;}
.ws137{word-spacing:17.895531pt;}
.wse8{word-spacing:18.023053pt;}
.ws32{word-spacing:18.384318pt;}
.ws42{word-spacing:18.490586pt;}
.ws2{word-spacing:18.543719pt;}
.wsa3{word-spacing:18.596853pt;}
.ws10d{word-spacing:18.660661pt;}
.ws41{word-spacing:18.703121pt;}
.wsaa{word-spacing:18.756255pt;}
.ws14e{word-spacing:19.043226pt;}
.ws108{word-spacing:19.085733pt;}
.ws2f{word-spacing:19.234460pt;}
.ws66{word-spacing:19.553263pt;}
.ws156{word-spacing:19.808355pt;}
.ws143{word-spacing:20.020891pt;}
.ws6d{word-spacing:20.084602pt;}
.ws103{word-spacing:20.190920pt;}
.ws55{word-spacing:20.297137pt;}
.ws7f{word-spacing:20.562806pt;}
.ws4e{word-spacing:20.775342pt;}
.ws13f{word-spacing:20.956050pt;}
.ws7c{word-spacing:20.987877pt;}
.wsff{word-spacing:21.134598pt;}
.ws20{word-spacing:21.232435pt;}
.wsed{word-spacing:21.507932pt;}
.ws141{word-spacing:21.508643pt;}
.wsb4{word-spacing:21.997421pt;}
.ws8a{word-spacing:22.050555pt;}
.ws15a{word-spacing:22.146251pt;}
.ws13e{word-spacing:22.528816pt;}
.ws102{word-spacing:23.123917pt;}
.ws126{word-spacing:23.166424pt;}
.ws10c{word-spacing:23.506482pt;}
.wse9{word-spacing:24.144090pt;}
.ws116{word-spacing:24.569162pt;}
.wsf1{word-spacing:24.824205pt;}
.ws11e{word-spacing:24.909219pt;}
.ws10a{word-spacing:25.929392pt;}
.ws10b{word-spacing:26.226942pt;}
.ws63{word-spacing:26.354398pt;}
.ws10f{word-spacing:27.289622pt;}
.wsfe{word-spacing:27.417144pt;}
.wsef{word-spacing:29.032418pt;}
.ws105{word-spacing:29.670026pt;}
.ws64{word-spacing:30.020635pt;}
.ws71{word-spacing:30.764509pt;}
.ws100{word-spacing:31.710371pt;}
.wsee{word-spacing:32.092936pt;}
.ws11f{word-spacing:32.177950pt;}
.ws101{word-spacing:33.708210pt;}
.wsf0{word-spacing:35.408498pt;}
.ws11d{word-spacing:35.493512pt;}
.ws15b{word-spacing:35.791062pt;}
.ws11a{word-spacing:36.046106pt;}
.ws15c{word-spacing:43.059794pt;}
.ws11b{word-spacing:48.373194pt;}
.ws157{word-spacing:48.500715pt;}
.ws5f{word-spacing:48.989425pt;}
.ws11c{word-spacing:58.957486pt;}
._7{margin-left:-2748.538378pt;}
._a{margin-left:-7.661874pt;}
._9{margin-left:-5.313387pt;}
._5{margin-left:-4.399514pt;}
._4{margin-left:-2.975523pt;}
._1{margin-left:-2.045661pt;}
._2{margin-left:-1.062691pt;}
._c{width:1.249731pt;}
._6{width:2.656693pt;}
._17{width:11.561849pt;}
._15{width:13.650114pt;}
._b{width:15.249420pt;}
._11{width:19.765798pt;}
._e{width:22.698845pt;}
._3{width:26.827469pt;}
._d{width:28.745435pt;}
._8{width:30.844217pt;}
._18{width:34.897226pt;}
._10{width:36.216134pt;}
._16{width:40.566229pt;}
._14{width:42.267311pt;}
._f{width:47.438035pt;}
._12{width:58.198435pt;}
._13{width:61.251099pt;}
._0{width:90.710468pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:167.260000pt;}
.y133{bottom:179.216000pt;}
.y5c{bottom:183.200000pt;}
.y175{bottom:183.201333pt;}
.y132{bottom:191.170667pt;}
.y174{bottom:195.156000pt;}
.y8f{bottom:199.140000pt;}
.y131{bottom:203.360000pt;}
.y5b{bottom:204.281333pt;}
.y173{bottom:207.112000pt;}
.y32{bottom:208.705333pt;}
.y8e{bottom:215.080000pt;}
.yb2{bottom:215.081333pt;}
.y130{bottom:215.314667pt;}
.y172{bottom:219.066667pt;}
.y5a{bottom:220.221333pt;}
.y31{bottom:224.645333pt;}
.y12f{bottom:227.269333pt;}
.y8d{bottom:231.021333pt;}
.y12e{bottom:239.225333pt;}
.y30{bottom:240.585333pt;}
.y171{bottom:242.977333pt;}
.y59{bottom:246.482667pt;}
.yd2{bottom:246.544000pt;}
.y8c{bottom:246.961333pt;}
.yb1{bottom:247.270667pt;}
.y12d{bottom:251.180000pt;}
.y170{bottom:254.932000pt;}
.y2f{bottom:256.525333pt;}
.y58{bottom:262.422667pt;}
.yd1{bottom:262.484000pt;}
.y8b{bottom:262.901333pt;}
.yb0{bottom:263.212000pt;}
.y12c{bottom:263.369333pt;}
.y16f{bottom:266.886667pt;}
.y2e{bottom:273.120000pt;}
.y12b{bottom:275.324000pt;}
.y57{bottom:278.362667pt;}
.yd0{bottom:278.425333pt;}
.y8a{bottom:278.841333pt;}
.y16e{bottom:278.842667pt;}
.yaf{bottom:279.152000pt;}
.y12a{bottom:287.280000pt;}
.y2d{bottom:289.060000pt;}
.y16d{bottom:290.797333pt;}
.y56{bottom:294.304000pt;}
.ycf{bottom:294.365333pt;}
.y89{bottom:294.781333pt;}
.yae{bottom:295.092000pt;}
.y129{bottom:299.234667pt;}
.y16c{bottom:302.753333pt;}
.y2c{bottom:305.000000pt;}
.y55{bottom:310.244000pt;}
.yce{bottom:310.305333pt;}
.y88{bottom:310.721333pt;}
.yf1{bottom:310.722667pt;}
.yad{bottom:311.032000pt;}
.y128{bottom:311.189333pt;}
.y16b{bottom:314.708000pt;}
.y2b{bottom:320.940000pt;}
.y127{bottom:323.145333pt;}
.y54{bottom:326.184000pt;}
.ycd{bottom:326.245333pt;}
.yf0{bottom:326.662667pt;}
.yac{bottom:326.972000pt;}
.y87{bottom:331.802667pt;}
.y126{bottom:335.333333pt;}
.y2a{bottom:336.880000pt;}
.y16a{bottom:338.618667pt;}
.y53{bottom:342.124000pt;}
.ycc{bottom:342.185333pt;}
.yef{bottom:342.602667pt;}
.yab{bottom:342.912000pt;}
.y125{bottom:347.289333pt;}
.y86{bottom:347.742667pt;}
.y169{bottom:350.573333pt;}
.y29{bottom:352.820000pt;}
.y52{bottom:358.064000pt;}
.ycb{bottom:358.126667pt;}
.yee{bottom:358.542667pt;}
.yaa{bottom:358.853333pt;}
.y124{bottom:359.244000pt;}
.y168{bottom:362.528000pt;}
.y28{bottom:368.761333pt;}
.y123{bottom:371.198667pt;}
.y51{bottom:374.004000pt;}
.yca{bottom:374.066667pt;}
.yed{bottom:374.482667pt;}
.y167{bottom:374.484000pt;}
.ya9{bottom:374.793333pt;}
.y122{bottom:383.154667pt;}
.y27{bottom:384.701333pt;}
.y166{bottom:386.438667pt;}
.y50{bottom:389.945333pt;}
.yc9{bottom:390.006667pt;}
.yec{bottom:390.422667pt;}
.ya8{bottom:390.733333pt;}
.y121{bottom:395.109333pt;}
.y165{bottom:398.394667pt;}
.y26{bottom:400.641333pt;}
.y4f{bottom:405.885333pt;}
.yc8{bottom:405.946667pt;}
.yeb{bottom:406.364000pt;}
.ya7{bottom:406.673333pt;}
.y120{bottom:407.298667pt;}
.y164{bottom:410.349333pt;}
.y25{bottom:416.581333pt;}
.y11f{bottom:419.253333pt;}
.y85{bottom:421.825333pt;}
.yc7{bottom:421.886667pt;}
.y4e{bottom:421.984000pt;}
.yea{bottom:422.304000pt;}
.ya6{bottom:422.613333pt;}
.y11e{bottom:431.209333pt;}
.y24{bottom:432.521333pt;}
.y163{bottom:434.260000pt;}
.y84{bottom:437.765333pt;}
.yc6{bottom:437.826667pt;}
.y4d{bottom:437.925333pt;}
.ye9{bottom:438.244000pt;}
.ya5{bottom:438.553333pt;}
.y11d{bottom:443.164000pt;}
.y162{bottom:446.214667pt;}
.y23{bottom:448.461333pt;}
.y83{bottom:453.705333pt;}
.yc5{bottom:453.768000pt;}
.y4c{bottom:453.865333pt;}
.ye8{bottom:454.184000pt;}
.y11c{bottom:455.118667pt;}
.y161{bottom:458.169333pt;}
.y22{bottom:464.402667pt;}
.y11b{bottom:467.074667pt;}
.ya4{bottom:468.294667pt;}
.y82{bottom:469.646667pt;}
.yc4{bottom:469.708000pt;}
.y4b{bottom:469.805333pt;}
.ye7{bottom:470.124000pt;}
.y160{bottom:470.125333pt;}
.y11a{bottom:479.262667pt;}
.y21{bottom:480.342667pt;}
.y15f{bottom:482.080000pt;}
.y81{bottom:485.586667pt;}
.y4a{bottom:485.745333pt;}
.y119{bottom:491.218667pt;}
.ye6{bottom:493.616000pt;}
.y15e{bottom:494.036000pt;}
.yc3{bottom:494.220000pt;}
.y80{bottom:501.526667pt;}
.y49{bottom:501.685333pt;}
.y118{bottom:503.173333pt;}
.y20{bottom:504.389333pt;}
.y15d{bottom:505.990667pt;}
.yc2{bottom:506.176000pt;}
.y117{bottom:515.362667pt;}
.y7f{bottom:517.626667pt;}
.y48{bottom:517.785333pt;}
.y15c{bottom:517.945333pt;}
.yc1{bottom:518.130667pt;}
.ye5{bottom:523.292000pt;}
.y116{bottom:527.317333pt;}
.y15b{bottom:529.901333pt;}
.y7e{bottom:533.566667pt;}
.y47{bottom:533.725333pt;}
.ye4{bottom:539.232000pt;}
.y115{bottom:539.272000pt;}
.y15a{bottom:541.856000pt;}
.y7d{bottom:549.506667pt;}
.y46{bottom:549.665333pt;}
.y114{bottom:551.228000pt;}
.y1f{bottom:551.828000pt;}
.y159{bottom:553.810667pt;}
.ye3{bottom:555.172000pt;}
.y113{bottom:563.182667pt;}
.y1e{bottom:565.112000pt;}
.y7c{bottom:565.446667pt;}
.y45{bottom:565.606667pt;}
.y158{bottom:565.766667pt;}
.ye2{bottom:571.112000pt;}
.y112{bottom:575.138667pt;}
.y157{bottom:577.721333pt;}
.y1d{bottom:579.049333pt;}
.y7b{bottom:581.386667pt;}
.y44{bottom:581.546667pt;}
.ye1{bottom:587.053333pt;}
.y111{bottom:587.093333pt;}
.y156{bottom:589.677333pt;}
.y1c{bottom:592.333333pt;}
.y7a{bottom:597.326667pt;}
.y43{bottom:597.486667pt;}
.y110{bottom:599.048000pt;}
.y155{bottom:601.632000pt;}
.ye0{bottom:602.993333pt;}
.y1b{bottom:605.616000pt;}
.y10f{bottom:611.237333pt;}
.y79{bottom:613.268000pt;}
.y42{bottom:613.426667pt;}
.y154{bottom:613.586667pt;}
.y1a{bottom:618.900000pt;}
.ydf{bottom:618.933333pt;}
.y10e{bottom:623.192000pt;}
.y153{bottom:625.542667pt;}
.y78{bottom:629.208000pt;}
.y41{bottom:629.366667pt;}
.y19{bottom:632.184000pt;}
.y10d{bottom:635.148000pt;}
.yde{bottom:635.434667pt;}
.y152{bottom:637.497333pt;}
.y77{bottom:645.148000pt;}
.y40{bottom:645.306667pt;}
.y18{bottom:645.466667pt;}
.y10c{bottom:647.336000pt;}
.y151{bottom:649.452000pt;}
.ydd{bottom:651.374667pt;}
.y17{bottom:658.750667pt;}
.y10b{bottom:659.292000pt;}
.y76{bottom:661.088000pt;}
.y3f{bottom:661.248000pt;}
.y150{bottom:661.408000pt;}
.ydc{bottom:667.314667pt;}
.y10a{bottom:671.246667pt;}
.y16{bottom:672.033333pt;}
.y14f{bottom:673.362667pt;}
.y75{bottom:677.028000pt;}
.ya3{bottom:677.037333pt;}
.y3e{bottom:677.188000pt;}
.y109{bottom:683.201333pt;}
.ydb{bottom:683.254667pt;}
.y15{bottom:685.317333pt;}
.y74{bottom:692.968000pt;}
.ya2{bottom:692.977333pt;}
.y3d{bottom:693.128000pt;}
.y108{bottom:695.157333pt;}
.y14e{bottom:697.273333pt;}
.y14{bottom:698.601333pt;}
.yda{bottom:699.196000pt;}
.y107{bottom:707.345333pt;}
.y73{bottom:708.909333pt;}
.ya1{bottom:708.917333pt;}
.y3c{bottom:709.068000pt;}
.y14d{bottom:709.228000pt;}
.y13{bottom:711.884000pt;}
.yd9{bottom:715.136000pt;}
.y106{bottom:719.301333pt;}
.y14c{bottom:721.184000pt;}
.y72{bottom:724.849333pt;}
.ya0{bottom:724.857333pt;}
.y3b{bottom:725.008000pt;}
.y12{bottom:725.168000pt;}
.yc0{bottom:725.585333pt;}
.yd8{bottom:731.076000pt;}
.y105{bottom:731.256000pt;}
.y14b{bottom:733.138667pt;}
.y11{bottom:738.452000pt;}
.y71{bottom:740.789333pt;}
.y9f{bottom:740.797333pt;}
.y3a{bottom:741.108000pt;}
.ybf{bottom:741.525333pt;}
.y104{bottom:743.210667pt;}
.y14a{bottom:745.093333pt;}
.yd7{bottom:747.016000pt;}
.y10{bottom:751.734667pt;}
.y103{bottom:755.166667pt;}
.y70{bottom:756.729333pt;}
.y9e{bottom:756.738667pt;}
.y39{bottom:757.048000pt;}
.y149{bottom:757.049333pt;}
.ybe{bottom:757.465333pt;}
.yd6{bottom:762.956000pt;}
.yf{bottom:765.018667pt;}
.y102{bottom:767.121333pt;}
.y148{bottom:769.004000pt;}
.y6f{bottom:772.669333pt;}
.y9d{bottom:772.678667pt;}
.y38{bottom:772.988000pt;}
.ybd{bottom:773.405333pt;}
.ye{bottom:778.302667pt;}
.y101{bottom:779.310667pt;}
.y147{bottom:780.958667pt;}
.y6e{bottom:788.610667pt;}
.y9c{bottom:788.618667pt;}
.y37{bottom:788.929333pt;}
.ybc{bottom:789.345333pt;}
.y100{bottom:791.265333pt;}
.yd{bottom:791.585333pt;}
.y146{bottom:792.914667pt;}
.yd5{bottom:793.366667pt;}
.yff{bottom:803.221333pt;}
.y9b{bottom:804.558667pt;}
.y6d{bottom:804.709333pt;}
.yc{bottom:804.869333pt;}
.ybb{bottom:805.285333pt;}
.yd4{bottom:805.322667pt;}
.yfe{bottom:815.176000pt;}
.y145{bottom:816.825333pt;}
.yd3{bottom:817.277333pt;}
.yb{bottom:818.153333pt;}
.y9a{bottom:820.498667pt;}
.y6c{bottom:820.649333pt;}
.y36{bottom:820.809333pt;}
.yba{bottom:821.226667pt;}
.yfd{bottom:827.130667pt;}
.y144{bottom:828.780000pt;}
.ya{bottom:831.436000pt;}
.y99{bottom:836.438667pt;}
.y6b{bottom:836.590667pt;}
.y35{bottom:836.749333pt;}
.yb9{bottom:837.166667pt;}
.y143{bottom:840.734667pt;}
.y9{bottom:844.720000pt;}
.yfc{bottom:849.381333pt;}
.y98{bottom:852.380000pt;}
.y6a{bottom:852.530667pt;}
.y34{bottom:852.689333pt;}
.y142{bottom:852.690667pt;}
.yb8{bottom:853.106667pt;}
.y8{bottom:858.002667pt;}
.y141{bottom:864.645333pt;}
.y97{bottom:868.320000pt;}
.y69{bottom:868.470667pt;}
.y33{bottom:868.629333pt;}
.yb7{bottom:869.046667pt;}
.y7{bottom:871.286667pt;}
.y140{bottom:876.600000pt;}
.yfb{bottom:877.862667pt;}
.y68{bottom:884.410667pt;}
.y96{bottom:884.569333pt;}
.y6{bottom:884.570667pt;}
.yb6{bottom:884.986667pt;}
.y13f{bottom:888.556000pt;}
.yfa{bottom:893.802667pt;}
.y67{bottom:900.350667pt;}
.y95{bottom:900.510667pt;}
.yb5{bottom:900.928000pt;}
.yf9{bottom:909.742667pt;}
.y13e{bottom:912.466667pt;}
.y5{bottom:915.433333pt;}
.y66{bottom:916.290667pt;}
.y94{bottom:916.450667pt;}
.yb4{bottom:916.868000pt;}
.y13d{bottom:924.421333pt;}
.yf8{bottom:925.682667pt;}
.y4{bottom:931.872000pt;}
.y65{bottom:932.232000pt;}
.y93{bottom:932.390667pt;}
.y13c{bottom:936.376000pt;}
.yf7{bottom:941.622667pt;}
.y64{bottom:948.172000pt;}
.y92{bottom:948.330667pt;}
.y13b{bottom:948.332000pt;}
.y3{bottom:948.506667pt;}
.yf6{bottom:957.564000pt;}
.y13a{bottom:960.286667pt;}
.y63{bottom:964.112000pt;}
.y91{bottom:964.270667pt;}
.yb3{bottom:964.272000pt;}
.y139{bottom:972.241333pt;}
.yf5{bottom:973.504000pt;}
.y90{bottom:980.210667pt;}
.y62{bottom:980.212000pt;}
.y138{bottom:984.197333pt;}
.yf4{bottom:989.444000pt;}
.y2{bottom:990.350667pt;}
.y61{bottom:996.152000pt;}
.yf3{bottom:1005.384000pt;}
.y137{bottom:1008.106667pt;}
.y60{bottom:1012.092000pt;}
.y136{bottom:1020.062667pt;}
.yf2{bottom:1021.324000pt;}
.y1{bottom:1027.544000pt;}
.y5f{bottom:1028.032000pt;}
.y135{bottom:1032.017333pt;}
.y5e{bottom:1043.972000pt;}
.y134{bottom:1043.973333pt;}
.ha{height:29.159939pt;}
.h8{height:30.902734pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.h4{height:38.628321pt;}
.h9{height:38.889654pt;}
.h5{height:39.850400pt;}
.h3{height:42.491308pt;}
.h2{height:92.708203pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:54.136000pt;}
.xd{left:56.070667pt;}
.x12{left:59.449333pt;}
.x6{left:67.418667pt;}
.x2{left:74.701333pt;}
.x13{left:78.481333pt;}
.x1{left:80.917333pt;}
.x10{left:160.298667pt;}
.x8{left:169.676000pt;}
.x11{left:184.314667pt;}
.x3{left:200.030667pt;}
.x5{left:260.612000pt;}
.x4{left:318.565333pt;}
.x9{left:404.820000pt;}
.xb{left:414.014667pt;}
.xa{left:418.104000pt;}
.x14{left:429.166667pt;}
.xe{left:435.365333pt;}
.xc{left:481.820000pt;}
.xf{left:521.988000pt;}
}




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