
    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_13e4bda8acb0906950177014.woff')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_31178e52d537e10574d9a325.woff')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_898cc0c6276c13c755a05659.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c235a3f75b1f2fc57d29ed3a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.956000;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_36e67082d88ce64574db4b88.woff')format("woff");}.ff5{font-family:ff5;line-height:0.429000;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_495916501a4948ae60657d03.woff')format("woff");}.ff6{font-family:ff6;line-height:0.727000;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_74901dc3339f3bc4e4e93202.woff')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9fc7bc27491af4c51ffe04e8.woff')format("woff");}.ff8{font-family:ff8;line-height:2.399000;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_fb96fe089e2239fb19002ea1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.106000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_35c0c2c1d136ac9baa7e1637.woff')format("woff");}.ffa{font-family:ffa;line-height:0.684000;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.274000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:40.440000px;}
.v3{vertical-align:84.288000px;}
.v6{vertical-align:125.292000px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.458387px;}
.ls6{letter-spacing:0.834017px;}
.ls1a{letter-spacing:0.840017px;}
.ls1c{letter-spacing:2.371909px;}
.ls0{letter-spacing:2.964877px;}
.ls1b{letter-spacing:2.987675px;}
.ls1{letter-spacing:2.988600px;}
.ls18{letter-spacing:2.988780px;}
.ls2{letter-spacing:2.989200px;}
.ls17{letter-spacing:2.989409px;}
.ls5{letter-spacing:2.992766px;}
.ls19{letter-spacing:2.993108px;}
.lsa{letter-spacing:7.173181px;}
.ls10{letter-spacing:13.278538px;}
.lsc{letter-spacing:13.280338px;}
.lsd{letter-spacing:13.280446px;}
.ls12{letter-spacing:13.281181px;}
.lse{letter-spacing:13.286338px;}
.lsb{letter-spacing:13.748387px;}
.lsf{letter-spacing:16.268525px;}
.ls9{letter-spacing:16.602538px;}
.ls8{letter-spacing:18.263781px;}
.ls7{letter-spacing:19.235781px;}
.ls14{letter-spacing:20.240100px;}
.ls15{letter-spacing:23.240207px;}
.ls4{letter-spacing:35.863409px;}
.ls16{letter-spacing:35.869409px;}
.ls11{letter-spacing:187.360200px;}
.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;}
}
.ws3{word-spacing:-14.943900px;}
.ws1f{word-spacing:-14.920027px;}
.ws57{word-spacing:-11.955150px;}
.wsf4{word-spacing:-11.936059px;}
.wsfd{word-spacing:-9.564150px;}
.ws73{word-spacing:-1.195512px;}
.ws7e{word-spacing:-1.075961px;}
.wsca{word-spacing:-0.956410px;}
.ws53{word-spacing:-0.896634px;}
.ws4a{word-spacing:-0.777083px;}
.ws92{word-spacing:-0.657532px;}
.ws49{word-spacing:-0.537980px;}
.ws70{word-spacing:-0.358654px;}
.ws55{word-spacing:-0.298878px;}
.ws60{word-spacing:-0.239102px;}
.wsa8{word-spacing:-0.119551px;}
.wseb{word-spacing:-0.095641px;}
.ws44{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.wsee{word-spacing:-0.047821px;}
.ws58{word-spacing:0.000000px;}
.ws54{word-spacing:0.059776px;}
.wse{word-spacing:0.161395px;}
.ws80{word-spacing:0.179327px;}
.wsd9{word-spacing:0.239102px;}
.wsd{word-spacing:0.268992px;}
.ws3d{word-spacing:0.298878px;}
.ws85{word-spacing:0.358654px;}
.wsc9{word-spacing:0.418429px;}
.wsf5{word-spacing:0.526027px;}
.wsde{word-spacing:0.537980px;}
.wsf7{word-spacing:0.573847px;}
.ws6e{word-spacing:0.597756px;}
.ws4f{word-spacing:0.657532px;}
.ws94{word-spacing:0.717307px;}
.ws8a{word-spacing:0.896634px;}
.ws3c{word-spacing:1.016185px;}
.wscc{word-spacing:1.075961px;}
.ws88{word-spacing:1.195512px;}
.ws46{word-spacing:1.255288px;}
.wsf1{word-spacing:1.338977px;}
.ws29{word-spacing:1.374839px;}
.wsa6{word-spacing:1.494390px;}
.wsc8{word-spacing:1.554166px;}
.wsc5{word-spacing:1.613941px;}
.ws64{word-spacing:1.793268px;}
.ws3b{word-spacing:1.853044px;}
.ws47{word-spacing:2.032370px;}
.wscf{word-spacing:2.092146px;}
.ws48{word-spacing:2.151922px;}
.ws39{word-spacing:2.331248px;}
.ws1d{word-spacing:2.367130px;}
.ws3a{word-spacing:2.450800px;}
.wsdf{word-spacing:2.570351px;}
.ws5d{word-spacing:2.630126px;}
.wse1{word-spacing:2.689902px;}
.wsc0{word-spacing:2.988780px;}
.ws11{word-spacing:3.012710px;}
.wsf0{word-spacing:3.060518px;}
.ws87{word-spacing:3.287658px;}
.wsa{word-spacing:3.389299px;}
.wsbd{word-spacing:3.407209px;}
.ws5c{word-spacing:3.526760px;}
.wse3{word-spacing:3.646312px;}
.ws41{word-spacing:3.765863px;}
.ws6c{word-spacing:3.885414px;}
.ws38{word-spacing:3.945190px;}
.wsc6{word-spacing:4.004965px;}
.ws2b{word-spacing:4.124516px;}
.wsfa{word-spacing:4.160392px;}
.ws56{word-spacing:4.184292px;}
.wsc3{word-spacing:4.244068px;}
.ws4e{word-spacing:4.363619px;}
.wsef{word-spacing:4.399495px;}
.ws19{word-spacing:4.465267px;}
.wse2{word-spacing:4.483170px;}
.ws9{word-spacing:4.626662px;}
.ws98{word-spacing:4.662497px;}
.wsec{word-spacing:4.780423px;}
.ws31{word-spacing:4.782048px;}
.ws9d{word-spacing:4.782060px;}
.ws17{word-spacing:4.788058px;}
.wsd5{word-spacing:4.921478px;}
.ws18{word-spacing:4.949453px;}
.ws2f{word-spacing:4.961375px;}
.ws81{word-spacing:5.021150px;}
.ws34{word-spacing:5.080926px;}
.ws37{word-spacing:5.140702px;}
.wsc2{word-spacing:5.260253px;}
.ws77{word-spacing:5.270305px;}
.ws76{word-spacing:5.296309px;}
.ws78{word-spacing:5.320028px;}
.ws14{word-spacing:5.326042px;}
.wse9{word-spacing:5.379804px;}
.wsc4{word-spacing:5.379840px;}
.ws83{word-spacing:5.439580px;}
.ws51{word-spacing:5.499355px;}
.ws1a{word-spacing:5.702630px;}
.ws2c{word-spacing:5.738458px;}
.ws100{word-spacing:5.834113px;}
.wsae{word-spacing:5.858009px;}
.wsaa{word-spacing:5.910702px;}
.ws102{word-spacing:5.944990px;}
.ws6b{word-spacing:5.949142px;}
.ws4{word-spacing:5.977560px;}
.wsb{word-spacing:6.025421px;}
.ws16{word-spacing:6.079219px;}
.ws3e{word-spacing:6.097111px;}
.ws67{word-spacing:6.216662px;}
.ws6f{word-spacing:6.276438px;}
.wsdc{word-spacing:6.336214px;}
.wscb{word-spacing:6.455765px;}
.ws1{word-spacing:6.575340px;}
.ws10{word-spacing:6.617203px;}
.wsd1{word-spacing:6.635092px;}
.ws95{word-spacing:6.694867px;}
.wsea{word-spacing:6.694884px;}
.ws1b{word-spacing:6.724800px;}
.wse5{word-spacing:6.754643px;}
.wsb1{word-spacing:6.814418px;}
.ws33{word-spacing:6.874194px;}
.ws28{word-spacing:6.933970px;}
.wsf8{word-spacing:6.933987px;}
.ws40{word-spacing:6.993745px;}
.ws26{word-spacing:7.173072px;}
.wsfc{word-spacing:7.173090px;}
.ws7d{word-spacing:7.232848px;}
.wsbe{word-spacing:7.292623px;}
.ws13{word-spacing:7.370381px;}
.wsab{word-spacing:7.412174px;}
.wse4{word-spacing:7.471950px;}
.ws8c{word-spacing:7.651277px;}
.ws7b{word-spacing:7.711052px;}
.ws89{word-spacing:7.770828px;}
.ws5e{word-spacing:8.009930px;}
.ws2a{word-spacing:8.069706px;}
.ws96{word-spacing:8.129482px;}
.wsd7{word-spacing:8.189257px;}
.ws9e{word-spacing:8.249033px;}
.ws15{word-spacing:8.284954px;}
.wsba{word-spacing:8.368584px;}
.wsf9{word-spacing:8.416426px;}
.wsd8{word-spacing:8.428360px;}
.ws52{word-spacing:8.488135px;}
.wsa3{word-spacing:8.787013px;}
.ws3f{word-spacing:8.846789px;}
.ws36{word-spacing:8.906564px;}
.ws8{word-spacing:8.930534px;}
.ws105{word-spacing:8.942452px;}
.wsce{word-spacing:8.966340px;}
.ws32{word-spacing:9.026116px;}
.ws97{word-spacing:9.085891px;}
.ws35{word-spacing:9.145667px;}
.wse6{word-spacing:9.324994px;}
.ws7{word-spacing:9.360922px;}
.ws66{word-spacing:9.384769px;}
.ws2d{word-spacing:9.504320px;}
.ws45{word-spacing:9.743423px;}
.wsc7{word-spacing:9.922750px;}
.ws62{word-spacing:10.042301px;}
.wsac{word-spacing:10.161852px;}
.ws24{word-spacing:10.520506px;}
.ws42{word-spacing:10.580281px;}
.ws25{word-spacing:10.759608px;}
.ws2e{word-spacing:10.998710px;}
.ws91{word-spacing:11.058486px;}
.wsbb{word-spacing:11.118262px;}
.ws68{word-spacing:11.178037px;}
.ws59{word-spacing:11.237813px;}
.ws6{word-spacing:11.243866px;}
.wsa4{word-spacing:11.297588px;}
.wsf3{word-spacing:11.333482px;}
.ws4d{word-spacing:11.357364px;}
.wsdd{word-spacing:11.417140px;}
.wse8{word-spacing:11.476915px;}
.wsc{word-spacing:11.620454px;}
.wsa2{word-spacing:11.656242px;}
.wsb5{word-spacing:11.716018px;}
.ws5b{word-spacing:11.835569px;}
.ws27{word-spacing:11.895344px;}
.wsa9{word-spacing:11.955120px;}
.wse0{word-spacing:12.014896px;}
.wsd2{word-spacing:12.074671px;}
.ws4b{word-spacing:12.194222px;}
.ws99{word-spacing:12.313774px;}
.ws9b{word-spacing:12.373549px;}
.wsf6{word-spacing:12.433356px;}
.wsb2{word-spacing:12.612652px;}
.ws6a{word-spacing:12.791978px;}
.wsc1{word-spacing:12.971305px;}
.ws61{word-spacing:13.210408px;}
.wsf2{word-spacing:13.246306px;}
.wsd0{word-spacing:13.389734px;}
.ws63{word-spacing:13.509286px;}
.ws72{word-spacing:13.688612px;}
.ws65{word-spacing:13.927715px;}
.wsb9{word-spacing:14.166817px;}
.wsd3{word-spacing:14.226593px;}
.ws71{word-spacing:14.286368px;}
.ws0{word-spacing:14.346180px;}
.ws43{word-spacing:14.525471px;}
.ws8e{word-spacing:14.645022px;}
.wsa1{word-spacing:14.704798px;}
.wsa0{word-spacing:14.764573px;}
.ws50{word-spacing:14.824349px;}
.wse7{word-spacing:14.884124px;}
.ws6d{word-spacing:15.003676px;}
.ws7f{word-spacing:15.029207px;}
.ws8f{word-spacing:15.123227px;}
.ws90{word-spacing:15.183002px;}
.ws8b{word-spacing:15.242778px;}
.wsf{word-spacing:15.332544px;}
.ws20{word-spacing:15.601432px;}
.wsb6{word-spacing:15.661207px;}
.ws1c{word-spacing:15.762931px;}
.ws9a{word-spacing:15.840534px;}
.wsa7{word-spacing:16.019861px;}
.wsfb{word-spacing:16.067722px;}
.ws5a{word-spacing:16.079636px;}
.ws84{word-spacing:16.258963px;}
.ws5f{word-spacing:16.378514px;}
.ws93{word-spacing:16.617617px;}
.wsa5{word-spacing:16.677392px;}
.wsed{word-spacing:16.689389px;}
.wsdb{word-spacing:16.796944px;}
.wsb7{word-spacing:16.856719px;}
.ws22{word-spacing:17.095822px;}
.wsb3{word-spacing:17.155597px;}
.ws30{word-spacing:17.275148px;}
.ws8d{word-spacing:17.334924px;}
.ws12{word-spacing:17.376883px;}
.ws75{word-spacing:17.454475px;}
.ws21{word-spacing:17.514251px;}
.wsaf{word-spacing:17.574026px;}
.wsb4{word-spacing:17.633802px;}
.ws23{word-spacing:17.693578px;}
.ws101{word-spacing:17.741443px;}
.ws103{word-spacing:17.837084px;}
.ws1e{word-spacing:17.932680px;}
.ws86{word-spacing:18.171782px;}
.wsfe{word-spacing:18.267469px;}
.ws4c{word-spacing:18.709763px;}
.ws7a{word-spacing:18.769538px;}
.ws69{word-spacing:18.948865px;}
.wscd{word-spacing:19.128192px;}
.ws82{word-spacing:20.323704px;}
.wsda{word-spacing:20.383480px;}
.wsad{word-spacing:20.562806px;}
.wsbc{word-spacing:20.742133px;}
.ws104{word-spacing:20.801961px;}
.ws2{word-spacing:20.861684px;}
.wsb0{word-spacing:21.578992px;}
.ws7c{word-spacing:22.116972px;}
.wsbf{word-spacing:22.535401px;}
.ws9c{word-spacing:23.192933px;}
.wsb8{word-spacing:29.826905px;}
.wsff{word-spacing:30.126978px;}
.ws74{word-spacing:32.278824px;}
.ws79{word-spacing:33.617620px;}
.wsd4{word-spacing:58.122651px;}
.ws9f{word-spacing:70.217846px;}
.wsd6{word-spacing:77.217984px;}
._20{margin-left:-6.419924px;}
._1{margin-left:-4.865752px;}
._2{margin-left:-3.287658px;}
._0{margin-left:-2.151927px;}
._5{margin-left:-1.070949px;}
._9{width:1.729607px;}
._3{width:3.312600px;}
._4{width:4.988116px;}
._21{width:8.118900px;}
._14{width:9.922750px;}
._7{width:12.583807px;}
._1e{width:14.166817px;}
._c{width:15.302554px;}
._d{width:16.701326px;}
._a{width:17.992461px;}
._12{width:20.742133px;}
._6{width:21.788352px;}
._16{width:23.850464px;}
._8{width:25.010129px;}
._15{width:27.138122px;}
._b{width:29.887800px;}
._11{width:31.202869px;}
._13{width:32.791808px;}
._17{width:34.669848px;}
._10{width:51.367989px;}
._1f{width:59.775750px;}
._f{width:60.792482px;}
._19{width:65.603297px;}
._1b{width:89.521678px;}
._1c{width:95.821169px;}
._e{width:103.203570px;}
._1d{width:162.950124px;}
._1a{width:203.601530px;}
._18{width:417.728510px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.894720px;}
.fs7{font-size:29.638140px;}
.fs8{font-size:34.868400px;}
.fs6{font-size:35.865600px;}
.fsb{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fsa{font-size:49.214776px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.yc7{bottom:7.228110px;}
.yc6{bottom:23.238971px;}
.yc8{bottom:46.072136px;}
.yd4{bottom:46.964276px;}
.yc9{bottom:64.121229px;}
.yd5{bottom:65.013370px;}
.yca{bottom:82.170322px;}
.yd6{bottom:83.062463px;}
.ycb{bottom:100.219415px;}
.yd7{bottom:101.111556px;}
.y34{bottom:113.332500px;}
.y14a{bottom:115.710000px;}
.y5c{bottom:117.552000px;}
.ycc{bottom:118.268508px;}
.yd8{bottom:119.160649px;}
.yd3{bottom:119.220508px;}
.y116{bottom:131.001000px;}
.y33{bottom:131.265000px;}
.y8f{bottom:131.266500px;}
.y149{bottom:133.642500px;}
.ycd{bottom:136.317601px;}
.yd9{bottom:137.209742px;}
.y5b{bottom:147.634500px;}
.y32{bottom:149.199000px;}
.ybe{bottom:149.206500px;}
.y148{bottom:151.575000px;}
.yce{bottom:154.366694px;}
.yda{bottom:155.258835px;}
.y115{bottom:155.953500px;}
.y5a{bottom:165.568500px;}
.y31{bottom:167.131500px;}
.ybd{bottom:167.139000px;}
.y147{bottom:169.507500px;}
.y8e{bottom:171.513000px;}
.ycf{bottom:172.415787px;}
.ydb{bottom:173.307928px;}
.y114{bottom:173.886000px;}
.y59{bottom:183.501000px;}
.ye9{bottom:185.064000px;}
.ybc{bottom:185.073000px;}
.y30{bottom:185.908500px;}
.y146{bottom:187.440000px;}
.y8d{bottom:189.445500px;}
.yd0{bottom:190.464880px;}
.ydc{bottom:191.357021px;}
.y113{bottom:191.818500px;}
.y58{bottom:201.433500px;}
.ye8{bottom:202.996500px;}
.ybb{bottom:203.005500px;}
.y2f{bottom:203.841000px;}
.y145{bottom:205.374000px;}
.yd1{bottom:208.513974px;}
.ydd{bottom:209.406114px;}
.y112{bottom:209.751000px;}
.y8c{bottom:211.761000px;}
.y57{bottom:219.366000px;}
.ye7{bottom:220.929000px;}
.yba{bottom:220.938000px;}
.y2e{bottom:221.773500px;}
.yd2{bottom:226.563067px;}
.yde{bottom:227.455207px;}
.y111{bottom:227.683500px;}
.y144{bottom:228.013500px;}
.y8b{bottom:229.693500px;}
.y56{bottom:237.298500px;}
.ye6{bottom:238.863000px;}
.yb9{bottom:238.870500px;}
.y2d{bottom:239.706000px;}
.y110{bottom:245.617500px;}
.y8a{bottom:247.626000px;}
.y55{bottom:255.231000px;}
.y143{bottom:256.033500px;}
.ye5{bottom:256.795500px;}
.yb8{bottom:256.803000px;}
.y2c{bottom:257.638500px;}
.y10f{bottom:263.368500px;}
.y89{bottom:265.560000px;}
.y54{bottom:273.165000px;}
.y142{bottom:273.966000px;}
.ye4{bottom:274.728000px;}
.yb7{bottom:274.735500px;}
.y2b{bottom:275.572500px;}
.y10e{bottom:281.301000px;}
.y53{bottom:291.879000px;}
.y141{bottom:291.898500px;}
.ye3{bottom:292.660500px;}
.yb6{bottom:292.669500px;}
.y88{bottom:292.737000px;}
.y2a{bottom:293.505000px;}
.y10d{bottom:299.235000px;}
.y86{bottom:302.988000px;}
.y52{bottom:309.811500px;}
.y140{bottom:309.831000px;}
.ye2{bottom:310.593000px;}
.yb5{bottom:310.602000px;}
.y29{bottom:311.437500px;}
.y87{bottom:313.098000px;}
.y10c{bottom:317.167500px;}
.y51{bottom:327.744000px;}
.y13f{bottom:327.765000px;}
.ye1{bottom:328.525500px;}
.yb4{bottom:328.543500px;}
.y28{bottom:329.370000px;}
.yfd{bottom:329.799000px;}
.y10b{bottom:335.100000px;}
.y85{bottom:341.518500px;}
.y50{bottom:345.676500px;}
.y13e{bottom:345.697500px;}
.yb3{bottom:346.476000px;}
.y27{bottom:347.302500px;}
.yfc{bottom:347.731500px;}
.y10a{bottom:353.032500px;}
.y84{bottom:359.451000px;}
.y4f{bottom:363.609000px;}
.y13d{bottom:363.630000px;}
.yb2{bottom:364.408500px;}
.y26{bottom:365.235000px;}
.yfb{bottom:365.664000px;}
.y109{bottom:370.965000px;}
.y83{bottom:377.383500px;}
.y4e{bottom:381.543000px;}
.y13c{bottom:381.562500px;}
.yb1{bottom:382.341000px;}
.y25{bottom:383.169000px;}
.yfa{bottom:383.596500px;}
.y108{bottom:388.897500px;}
.y82{bottom:395.316000px;}
.y4d{bottom:399.475500px;}
.y13b{bottom:399.495000px;}
.yb0{bottom:400.275000px;}
.y24{bottom:401.101500px;}
.yf9{bottom:401.530500px;}
.ye0{bottom:404.911500px;}
.y107{bottom:406.831500px;}
.y81{bottom:413.248500px;}
.y4c{bottom:417.408000px;}
.y13a{bottom:417.427500px;}
.yaf{bottom:418.207500px;}
.y23{bottom:419.034000px;}
.yf8{bottom:419.463000px;}
.ydf{bottom:422.844000px;}
.y106{bottom:424.764000px;}
.y4b{bottom:435.340500px;}
.y139{bottom:435.361500px;}
.y80{bottom:435.564000px;}
.yae{bottom:436.140000px;}
.y22{bottom:436.966500px;}
.yf7{bottom:437.395500px;}
.y105{bottom:442.696500px;}
.yc5{bottom:444.363000px;}
.y4a{bottom:453.273000px;}
.y138{bottom:453.294000px;}
.y7f{bottom:453.496500px;}
.yad{bottom:454.072500px;}
.y21{bottom:454.899000px;}
.yf6{bottom:455.328000px;}
.y104{bottom:460.629000px;}
.y49{bottom:471.207000px;}
.y137{bottom:471.226500px;}
.y7e{bottom:471.429000px;}
.yac{bottom:472.005000px;}
.yf5{bottom:473.260500px;}
.y103{bottom:478.561500px;}
.y20{bottom:482.604000px;}
.y48{bottom:489.139500px;}
.y136{bottom:489.159000px;}
.y7d{bottom:489.363000px;}
.yab{bottom:489.937500px;}
.yf4{bottom:491.193000px;}
.y102{bottom:496.494000px;}
.y47{bottom:507.072000px;}
.y135{bottom:507.091500px;}
.y7c{bottom:507.295500px;}
.yaa{bottom:507.871500px;}
.yf3{bottom:509.127000px;}
.y1f{bottom:521.953500px;}
.y46{bottom:525.004500px;}
.y134{bottom:525.024000px;}
.y7b{bottom:525.228000px;}
.ya9{bottom:525.804000px;}
.yf2{bottom:527.059500px;}
.y1e{bottom:536.898000px;}
.y45{bottom:542.937000px;}
.y133{bottom:542.958000px;}
.y7a{bottom:543.160500px;}
.ya8{bottom:543.736500px;}
.yf1{bottom:544.992000px;}
.y101{bottom:545.676000px;}
.y1d{bottom:552.685500px;}
.y44{bottom:560.869500px;}
.y132{bottom:560.890500px;}
.ya7{bottom:561.669000px;}
.yf0{bottom:562.924500px;}
.y100{bottom:563.608500px;}
.y1c{bottom:567.630000px;}
.y79{bottom:568.110000px;}
.y131{bottom:578.823000px;}
.y43{bottom:579.585000px;}
.ya6{bottom:579.610500px;}
.yef{bottom:580.857000px;}
.y1b{bottom:582.573000px;}
.yff{bottom:589.611000px;}
.y78{bottom:594.711000px;}
.y130{bottom:596.755500px;}
.y1a{bottom:597.517500px;}
.ya5{bottom:597.543000px;}
.yee{bottom:598.789500px;}
.y19{bottom:612.462000px;}
.y12f{bottom:614.688000px;}
.y42{bottom:615.450000px;}
.ya4{bottom:615.475500px;}
.yed{bottom:616.723500px;}
.y18{bottom:627.405000px;}
.y77{bottom:628.341000px;}
.y12e{bottom:632.622000px;}
.y41{bottom:633.382500px;}
.ya3{bottom:633.409500px;}
.yec{bottom:634.656000px;}
.y17{bottom:642.349500px;}
.y76{bottom:646.273500px;}
.y12d{bottom:650.554500px;}
.y40{bottom:651.315000px;}
.ya2{bottom:651.342000px;}
.yeb{bottom:652.588500px;}
.y16{bottom:657.292500px;}
.y75{bottom:664.206000px;}
.y12c{bottom:668.487000px;}
.y3f{bottom:669.247500px;}
.ya1{bottom:669.274500px;}
.y15{bottom:672.237000px;}
.y74{bottom:682.138500px;}
.yea{bottom:682.864500px;}
.y12b{bottom:686.419500px;}
.y14{bottom:687.181500px;}
.ya0{bottom:687.207000px;}
.y73{bottom:700.071000px;}
.y13{bottom:702.124500px;}
.y12a{bottom:704.352000px;}
.y3e{bottom:705.114000px;}
.y9f{bottom:705.139500px;}
.y12{bottom:717.069000px;}
.y72{bottom:718.005000px;}
.y129{bottom:722.284500px;}
.y3d{bottom:723.046500px;}
.y9e{bottom:723.072000px;}
.y11{bottom:732.013500px;}
.yc4{bottom:733.974000px;}
.y71{bottom:735.937500px;}
.y128{bottom:740.218500px;}
.y3c{bottom:740.979000px;}
.y9d{bottom:741.006000px;}
.y10{bottom:746.956500px;}
.yc3{bottom:751.906500px;}
.y70{bottom:753.870000px;}
.y127{bottom:758.151000px;}
.y3b{bottom:758.911500px;}
.yf{bottom:761.901000px;}
.y9c{bottom:763.675500px;}
.y6f{bottom:771.802500px;}
.y126{bottom:776.083500px;}
.y3a{bottom:776.844000px;}
.ye{bottom:776.845500px;}
.yc2{bottom:785.890500px;}
.y6e{bottom:789.735000px;}
.y9b{bottom:791.770500px;}
.yd{bottom:791.788500px;}
.y125{bottom:794.016000px;}
.y39{bottom:794.778000px;}
.yc{bottom:806.733000px;}
.y6d{bottom:807.667500px;}
.y9a{bottom:809.703000px;}
.y124{bottom:811.948500px;}
.y38{bottom:812.710500px;}
.yb{bottom:821.677500px;}
.y99{bottom:827.635500px;}
.y123{bottom:829.881000px;}
.y6c{bottom:829.983000px;}
.y37{bottom:830.643000px;}
.ya{bottom:836.620500px;}
.y98{bottom:845.568000px;}
.y6b{bottom:847.915500px;}
.y36{bottom:848.575500px;}
.y9{bottom:851.565000px;}
.y122{bottom:852.522000px;}
.yfe{bottom:857.392500px;}
.y97{bottom:863.502000px;}
.y6a{bottom:865.848000px;}
.y35{bottom:866.508000px;}
.y8{bottom:866.509500px;}
.yc1{bottom:875.428500px;}
.y121{bottom:880.542000px;}
.y96{bottom:881.434500px;}
.y69{bottom:883.782000px;}
.y120{bottom:898.474500px;}
.y95{bottom:899.367000px;}
.y68{bottom:901.714500px;}
.y158{bottom:906.745500px;}
.y11f{bottom:916.407000px;}
.y94{bottom:917.299500px;}
.y67{bottom:919.647000px;}
.y157{bottom:920.194500px;}
.y156{bottom:933.645000px;}
.y11e{bottom:934.339500px;}
.y66{bottom:937.579500px;}
.y93{bottom:938.239500px;}
.y7{bottom:941.391000px;}
.y155{bottom:947.094000px;}
.y11d{bottom:952.272000px;}
.y65{bottom:955.512000px;}
.y92{bottom:956.172000px;}
.yc0{bottom:958.159500px;}
.y6{bottom:959.884500px;}
.y154{bottom:960.543000px;}
.y160{bottom:965.139000px;}
.y11c{bottom:970.206000px;}
.y64{bottom:973.444500px;}
.y153{bottom:973.993500px;}
.y91{bottom:974.104500px;}
.y5{bottom:978.378000px;}
.y15f{bottom:978.588000px;}
.y152{bottom:987.442500px;}
.y63{bottom:991.378500px;}
.y90{bottom:992.038500px;}
.y4{bottom:996.870000px;}
.y151{bottom:1000.893000px;}
.y15e{bottom:1005.487500px;}
.y62{bottom:1009.971000px;}
.y150{bottom:1014.342000px;}
.y3{bottom:1015.363500px;}
.y15d{bottom:1018.938000px;}
.y11b{bottom:1023.589681px;}
.y14f{bottom:1027.791000px;}
.y61{bottom:1027.903500px;}
.y15c{bottom:1032.387000px;}
.y2{bottom:1034.079000px;}
.y11a{bottom:1037.259537px;}
.y14e{bottom:1041.241500px;}
.y60{bottom:1045.836000px;}
.y14d{bottom:1054.690500px;}
.y119{bottom:1058.074439px;}
.ybf{bottom:1058.421000px;}
.y15b{bottom:1059.286500px;}
.y5f{bottom:1063.768500px;}
.y14c{bottom:1068.139500px;}
.y15a{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.y14b{bottom:1081.590000px;}
.y5e{bottom:1081.701000px;}
.y159{bottom:1086.184500px;}
.y118{bottom:1087.081500px;}
.y5d{bottom:1099.635000px;}
.y117{bottom:1105.014000px;}
.h9{height:25.500442px;}
.h11{height:25.914195px;}
.hf{height:27.533832px;}
.h10{height:32.392744px;}
.h15{height:32.661470px;}
.hd{height:34.000447px;}
.h14{height:34.240447px;}
.h13{height:34.991706px;}
.h12{height:38.250662px;}
.h6{height:40.348800px;}
.h3{height:40.826735px;}
.h7{height:40.996800px;}
.hb{height:42.141798px;}
.h5{height:42.500452px;}
.h4{height:42.800452px;}
.h2{height:46.750667px;}
.h8{height:51.446231px;}
.ha{height:89.913619px;}
.h1{height:102.001340px;}
.hc{height:127.683024px;}
.he{height:251.052480px;}
.h0{height:1188.000000px;}
.w1{width:376.578720px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x33{left:11.762092px;}
.x32{left:15.317034px;}
.x30{left:22.311145px;}
.x31{left:25.484714px;}
.x2a{left:38.533123px;}
.x29{left:39.867929px;}
.x2f{left:44.975605px;}
.x2b{left:46.187827px;}
.x2e{left:47.257034px;}
.x2c{left:49.361396px;}
.x2d{left:51.867562px;}
.x27{left:65.671907px;}
.x17{left:73.446000px;}
.x37{left:77.374192px;}
.x3b{left:80.242473px;}
.x39{left:84.971260px;}
.x26{left:86.082000px;}
.x25{left:87.292500px;}
.x16{left:88.390500px;}
.x36{left:90.494639px;}
.x1{left:93.732000px;}
.x41{left:102.330000px;}
.x1d{left:103.479000px;}
.x38{left:105.087986px;}
.x4{left:108.297000px;}
.x3{left:120.588000px;}
.x42{left:123.585000px;}
.x3d{left:132.141000px;}
.x7{left:137.122500px;}
.x2{left:143.938500px;}
.x34{left:145.379578px;}
.x8{left:150.325500px;}
.x1f{left:154.792500px;}
.x28{left:162.722385px;}
.x5{left:169.380000px;}
.x1e{left:181.267500px;}
.x6{left:191.794500px;}
.x43{left:197.266500px;}
.x19{left:203.428500px;}
.x40{left:219.897000px;}
.x21{left:245.344500px;}
.x3a{left:302.456710px;}
.x20{left:325.689000px;}
.x35{left:345.015795px;}
.xb{left:361.686000px;}
.xd{left:391.626000px;}
.xa{left:412.965000px;}
.xe{left:415.654500px;}
.xc{left:420.468000px;}
.x9{left:425.230500px;}
.x18{left:439.947000px;}
.x1a{left:467.967000px;}
.x1c{left:479.922000px;}
.x1b{left:482.910000px;}
.x44{left:496.849500px;}
.x22{left:498.000000px;}
.x24{left:516.336000px;}
.x3c{left:547.851000px;}
.x3f{left:591.090000px;}
.x3e{left:599.781000px;}
.x14{left:638.955000px;}
.x12{left:649.864500px;}
.x15{left:655.431000px;}
.x11{left:659.115000px;}
.xf{left:671.439000px;}
.x10{left:673.087500px;}
.x13{left:722.326500px;}
.x23{left:837.919500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.354667pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:35.946667pt;}
.v3{vertical-align:74.922667pt;}
.v6{vertical-align:111.370667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.407455pt;}
.ls6{letter-spacing:0.741348pt;}
.ls1a{letter-spacing:0.746682pt;}
.ls1c{letter-spacing:2.108364pt;}
.ls0{letter-spacing:2.635446pt;}
.ls1b{letter-spacing:2.655711pt;}
.ls1{letter-spacing:2.656533pt;}
.ls18{letter-spacing:2.656693pt;}
.ls2{letter-spacing:2.657067pt;}
.ls17{letter-spacing:2.657253pt;}
.ls5{letter-spacing:2.660237pt;}
.ls19{letter-spacing:2.660541pt;}
.lsa{letter-spacing:6.376161pt;}
.ls10{letter-spacing:11.803145pt;}
.lsc{letter-spacing:11.804745pt;}
.lsd{letter-spacing:11.804841pt;}
.ls12{letter-spacing:11.805494pt;}
.lse{letter-spacing:11.810079pt;}
.lsb{letter-spacing:12.220788pt;}
.lsf{letter-spacing:14.460911pt;}
.ls9{letter-spacing:14.757812pt;}
.ls8{letter-spacing:16.234472pt;}
.ls7{letter-spacing:17.098472pt;}
.ls14{letter-spacing:17.991200pt;}
.ls15{letter-spacing:20.657962pt;}
.ls4{letter-spacing:31.878586pt;}
.ls16{letter-spacing:31.883919pt;}
.ls11{letter-spacing:166.542400pt;}
.ws3{word-spacing:-13.283467pt;}
.ws1f{word-spacing:-13.262246pt;}
.ws57{word-spacing:-10.626800pt;}
.wsf4{word-spacing:-10.609830pt;}
.wsfd{word-spacing:-8.501467pt;}
.ws73{word-spacing:-1.062677pt;}
.ws7e{word-spacing:-0.956410pt;}
.wsca{word-spacing:-0.850142pt;}
.ws53{word-spacing:-0.797008pt;}
.ws4a{word-spacing:-0.690740pt;}
.ws92{word-spacing:-0.584473pt;}
.ws49{word-spacing:-0.478205pt;}
.ws70{word-spacing:-0.318803pt;}
.ws55{word-spacing:-0.265669pt;}
.ws60{word-spacing:-0.212535pt;}
.wsa8{word-spacing:-0.106268pt;}
.wseb{word-spacing:-0.085014pt;}
.ws44{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.wsee{word-spacing:-0.042507pt;}
.ws58{word-spacing:0.000000pt;}
.ws54{word-spacing:0.053134pt;}
.wse{word-spacing:0.143462pt;}
.ws80{word-spacing:0.159402pt;}
.wsd9{word-spacing:0.212535pt;}
.wsd{word-spacing:0.239104pt;}
.ws3d{word-spacing:0.265669pt;}
.ws85{word-spacing:0.318803pt;}
.wsc9{word-spacing:0.371937pt;}
.wsf5{word-spacing:0.467579pt;}
.wsde{word-spacing:0.478205pt;}
.wsf7{word-spacing:0.510086pt;}
.ws6e{word-spacing:0.531339pt;}
.ws4f{word-spacing:0.584473pt;}
.ws94{word-spacing:0.637606pt;}
.ws8a{word-spacing:0.797008pt;}
.ws3c{word-spacing:0.903276pt;}
.wscc{word-spacing:0.956410pt;}
.ws88{word-spacing:1.062677pt;}
.ws46{word-spacing:1.115811pt;}
.wsf1{word-spacing:1.190202pt;}
.ws29{word-spacing:1.222079pt;}
.wsa6{word-spacing:1.328347pt;}
.wsc8{word-spacing:1.381481pt;}
.wsc5{word-spacing:1.434614pt;}
.ws64{word-spacing:1.594016pt;}
.ws3b{word-spacing:1.647150pt;}
.ws47{word-spacing:1.806551pt;}
.wscf{word-spacing:1.859685pt;}
.ws48{word-spacing:1.912819pt;}
.ws39{word-spacing:2.072221pt;}
.ws1d{word-spacing:2.104115pt;}
.ws3a{word-spacing:2.178489pt;}
.wsdf{word-spacing:2.284756pt;}
.ws5d{word-spacing:2.337890pt;}
.wse1{word-spacing:2.391024pt;}
.wsc0{word-spacing:2.656693pt;}
.ws11{word-spacing:2.677965pt;}
.wsf0{word-spacing:2.720461pt;}
.ws87{word-spacing:2.922363pt;}
.wsa{word-spacing:3.012710pt;}
.wsbd{word-spacing:3.028630pt;}
.ws5c{word-spacing:3.134898pt;}
.wse3{word-spacing:3.241166pt;}
.ws41{word-spacing:3.347434pt;}
.ws6c{word-spacing:3.453701pt;}
.ws38{word-spacing:3.506835pt;}
.wsc6{word-spacing:3.559969pt;}
.ws2b{word-spacing:3.666237pt;}
.wsfa{word-spacing:3.698126pt;}
.ws56{word-spacing:3.719371pt;}
.wsc3{word-spacing:3.772505pt;}
.ws4e{word-spacing:3.878772pt;}
.wsef{word-spacing:3.910662pt;}
.ws19{word-spacing:3.969126pt;}
.wse2{word-spacing:3.985040pt;}
.ws9{word-spacing:4.112589pt;}
.ws98{word-spacing:4.144442pt;}
.wsec{word-spacing:4.249265pt;}
.ws31{word-spacing:4.250709pt;}
.ws9d{word-spacing:4.250720pt;}
.ws17{word-spacing:4.256051pt;}
.wsd5{word-spacing:4.374647pt;}
.ws18{word-spacing:4.399514pt;}
.ws2f{word-spacing:4.410111pt;}
.ws81{word-spacing:4.463245pt;}
.ws34{word-spacing:4.516379pt;}
.ws37{word-spacing:4.569513pt;}
.wsc2{word-spacing:4.675780pt;}
.ws77{word-spacing:4.684716pt;}
.ws76{word-spacing:4.707830pt;}
.ws78{word-spacing:4.728914pt;}
.ws14{word-spacing:4.734259pt;}
.wse9{word-spacing:4.782048pt;}
.wsc4{word-spacing:4.782080pt;}
.ws83{word-spacing:4.835182pt;}
.ws51{word-spacing:4.888316pt;}
.ws1a{word-spacing:5.069005pt;}
.ws2c{word-spacing:5.100851pt;}
.ws100{word-spacing:5.185878pt;}
.wsae{word-spacing:5.207119pt;}
.wsaa{word-spacing:5.253957pt;}
.ws102{word-spacing:5.284436pt;}
.ws6b{word-spacing:5.288126pt;}
.ws4{word-spacing:5.313387pt;}
.wsb{word-spacing:5.355930pt;}
.ws16{word-spacing:5.403750pt;}
.ws3e{word-spacing:5.419654pt;}
.ws67{word-spacing:5.525922pt;}
.ws6f{word-spacing:5.579056pt;}
.wsdc{word-spacing:5.632190pt;}
.wscb{word-spacing:5.738458pt;}
.ws1{word-spacing:5.844747pt;}
.ws10{word-spacing:5.881958pt;}
.wsd1{word-spacing:5.897859pt;}
.ws95{word-spacing:5.950993pt;}
.wsea{word-spacing:5.951008pt;}
.ws1b{word-spacing:5.977600pt;}
.wse5{word-spacing:6.004127pt;}
.wsb1{word-spacing:6.057261pt;}
.ws33{word-spacing:6.110395pt;}
.ws28{word-spacing:6.163529pt;}
.wsf8{word-spacing:6.163544pt;}
.ws40{word-spacing:6.216662pt;}
.ws26{word-spacing:6.376064pt;}
.wsfc{word-spacing:6.376080pt;}
.ws7d{word-spacing:6.429198pt;}
.wsbe{word-spacing:6.482332pt;}
.ws13{word-spacing:6.551450pt;}
.wsab{word-spacing:6.588599pt;}
.wse4{word-spacing:6.641733pt;}
.ws8c{word-spacing:6.801135pt;}
.ws7b{word-spacing:6.854269pt;}
.ws89{word-spacing:6.907403pt;}
.ws5e{word-spacing:7.119938pt;}
.ws2a{word-spacing:7.173072pt;}
.ws96{word-spacing:7.226206pt;}
.wsd7{word-spacing:7.279340pt;}
.ws9e{word-spacing:7.332474pt;}
.ws15{word-spacing:7.364403pt;}
.wsba{word-spacing:7.438741pt;}
.wsf9{word-spacing:7.481267pt;}
.wsd8{word-spacing:7.491875pt;}
.ws52{word-spacing:7.545009pt;}
.wsa3{word-spacing:7.810678pt;}
.ws3f{word-spacing:7.863812pt;}
.ws36{word-spacing:7.916946pt;}
.ws8{word-spacing:7.938253pt;}
.ws105{word-spacing:7.948846pt;}
.wsce{word-spacing:7.970080pt;}
.ws32{word-spacing:8.023214pt;}
.ws97{word-spacing:8.076348pt;}
.ws35{word-spacing:8.129482pt;}
.wse6{word-spacing:8.288883pt;}
.ws7{word-spacing:8.320819pt;}
.ws66{word-spacing:8.342017pt;}
.ws2d{word-spacing:8.448285pt;}
.ws45{word-spacing:8.660820pt;}
.wsc7{word-spacing:8.820222pt;}
.ws62{word-spacing:8.926490pt;}
.wsac{word-spacing:9.032757pt;}
.ws24{word-spacing:9.351561pt;}
.ws42{word-spacing:9.404694pt;}
.ws25{word-spacing:9.564096pt;}
.ws2e{word-spacing:9.776631pt;}
.ws91{word-spacing:9.829765pt;}
.wsbb{word-spacing:9.882899pt;}
.ws68{word-spacing:9.936033pt;}
.ws59{word-spacing:9.989167pt;}
.ws6{word-spacing:9.994547pt;}
.wsa4{word-spacing:10.042301pt;}
.wsf3{word-spacing:10.074206pt;}
.ws4d{word-spacing:10.095435pt;}
.wsdd{word-spacing:10.148569pt;}
.wse8{word-spacing:10.201702pt;}
.wsc{word-spacing:10.329293pt;}
.wsa2{word-spacing:10.361104pt;}
.wsb5{word-spacing:10.414238pt;}
.ws5b{word-spacing:10.520506pt;}
.ws27{word-spacing:10.573639pt;}
.wsa9{word-spacing:10.626773pt;}
.wse0{word-spacing:10.679907pt;}
.wsd2{word-spacing:10.733041pt;}
.ws4b{word-spacing:10.839309pt;}
.ws99{word-spacing:10.945577pt;}
.ws9b{word-spacing:10.998710pt;}
.wsf6{word-spacing:11.051872pt;}
.wsb2{word-spacing:11.211246pt;}
.ws6a{word-spacing:11.370647pt;}
.wsc1{word-spacing:11.530049pt;}
.ws61{word-spacing:11.742585pt;}
.wsf2{word-spacing:11.774494pt;}
.wsd0{word-spacing:11.901986pt;}
.ws63{word-spacing:12.008254pt;}
.ws72{word-spacing:12.167655pt;}
.ws65{word-spacing:12.380191pt;}
.wsb9{word-spacing:12.592726pt;}
.wsd3{word-spacing:12.645860pt;}
.ws71{word-spacing:12.698994pt;}
.ws0{word-spacing:12.752160pt;}
.ws43{word-spacing:12.911530pt;}
.ws8e{word-spacing:13.017797pt;}
.wsa1{word-spacing:13.070931pt;}
.wsa0{word-spacing:13.124065pt;}
.ws50{word-spacing:13.177199pt;}
.wse7{word-spacing:13.230333pt;}
.ws6d{word-spacing:13.336601pt;}
.ws7f{word-spacing:13.359295pt;}
.ws8f{word-spacing:13.442868pt;}
.ws90{word-spacing:13.496002pt;}
.ws8b{word-spacing:13.549136pt;}
.wsf{word-spacing:13.628928pt;}
.ws20{word-spacing:13.867939pt;}
.wsb6{word-spacing:13.921073pt;}
.ws1c{word-spacing:14.011494pt;}
.ws9a{word-spacing:14.080475pt;}
.wsa7{word-spacing:14.239876pt;}
.wsfb{word-spacing:14.282419pt;}
.ws5a{word-spacing:14.293010pt;}
.ws84{word-spacing:14.452412pt;}
.ws5f{word-spacing:14.558679pt;}
.ws93{word-spacing:14.771215pt;}
.wsa5{word-spacing:14.824349pt;}
.wsed{word-spacing:14.835013pt;}
.wsdb{word-spacing:14.930617pt;}
.wsb7{word-spacing:14.983750pt;}
.ws22{word-spacing:15.196286pt;}
.wsb3{word-spacing:15.249420pt;}
.ws30{word-spacing:15.355687pt;}
.ws8d{word-spacing:15.408821pt;}
.ws12{word-spacing:15.446118pt;}
.ws75{word-spacing:15.515089pt;}
.ws21{word-spacing:15.568223pt;}
.wsaf{word-spacing:15.621357pt;}
.wsb4{word-spacing:15.674491pt;}
.ws23{word-spacing:15.727625pt;}
.ws101{word-spacing:15.770171pt;}
.ws103{word-spacing:15.855186pt;}
.ws1e{word-spacing:15.940160pt;}
.ws86{word-spacing:16.152695pt;}
.wsfe{word-spacing:16.237750pt;}
.ws4c{word-spacing:16.630900pt;}
.ws7a{word-spacing:16.684034pt;}
.ws69{word-spacing:16.843436pt;}
.wscd{word-spacing:17.002837pt;}
.ws82{word-spacing:18.065515pt;}
.wsda{word-spacing:18.118649pt;}
.wsad{word-spacing:18.278050pt;}
.wsbc{word-spacing:18.437452pt;}
.ws104{word-spacing:18.490632pt;}
.ws2{word-spacing:18.543719pt;}
.wsb0{word-spacing:19.181326pt;}
.ws7c{word-spacing:19.659531pt;}
.wsbf{word-spacing:20.031468pt;}
.ws9c{word-spacing:20.615940pt;}
.wsb8{word-spacing:26.512804pt;}
.wsff{word-spacing:26.779536pt;}
.ws74{word-spacing:28.692288pt;}
.ws79{word-spacing:29.882329pt;}
.wsd4{word-spacing:51.664579pt;}
.ws9f{word-spacing:62.415863pt;}
.wsd6{word-spacing:68.638208pt;}
._20{margin-left:-5.706599pt;}
._1{margin-left:-4.325113pt;}
._2{margin-left:-2.922363pt;}
._0{margin-left:-1.912824pt;}
._5{margin-left:-0.951955pt;}
._9{width:1.537428pt;}
._3{width:2.944533pt;}
._4{width:4.433881pt;}
._21{width:7.216800pt;}
._14{width:8.820222pt;}
._7{width:11.185606pt;}
._1e{width:12.592726pt;}
._c{width:13.602270pt;}
._d{width:14.845623pt;}
._a{width:15.993299pt;}
._12{width:18.437452pt;}
._6{width:19.367424pt;}
._16{width:21.200413pt;}
._8{width:22.231226pt;}
._15{width:24.122775pt;}
._b{width:26.566933pt;}
._11{width:27.735883pt;}
._13{width:29.148274pt;}
._17{width:30.817643pt;}
._10{width:45.660435pt;}
._1f{width:53.134000pt;}
._f{width:54.037761pt;}
._19{width:58.314042pt;}
._1b{width:79.574825pt;}
._1c{width:85.174373pt;}
._e{width:91.736507pt;}
._1d{width:144.844555pt;}
._1a{width:180.979137pt;}
._18{width:371.314231pt;}
.fs9{font-size:24.795307pt;}
.fs7{font-size:26.345013pt;}
.fs8{font-size:30.994133pt;}
.fs6{font-size:31.880533pt;}
.fsb{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fsa{font-size:43.746468pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:6.424987pt;}
.yc6{bottom:20.656863pt;}
.yc8{bottom:40.953010pt;}
.yd4{bottom:41.746024pt;}
.yc9{bottom:56.996648pt;}
.yd5{bottom:57.789662pt;}
.yca{bottom:73.040286pt;}
.yd6{bottom:73.833300pt;}
.ycb{bottom:89.083924pt;}
.yd7{bottom:89.876938pt;}
.y34{bottom:100.740000pt;}
.y14a{bottom:102.853333pt;}
.y5c{bottom:104.490667pt;}
.ycc{bottom:105.127563pt;}
.yd8{bottom:105.920577pt;}
.yd3{bottom:105.973785pt;}
.y116{bottom:116.445333pt;}
.y33{bottom:116.680000pt;}
.y8f{bottom:116.681333pt;}
.y149{bottom:118.793333pt;}
.ycd{bottom:121.171201pt;}
.yd9{bottom:121.964215pt;}
.y5b{bottom:131.230667pt;}
.y32{bottom:132.621333pt;}
.ybe{bottom:132.628000pt;}
.y148{bottom:134.733333pt;}
.yce{bottom:137.214839pt;}
.yda{bottom:138.007853pt;}
.y115{bottom:138.625333pt;}
.y5a{bottom:147.172000pt;}
.y31{bottom:148.561333pt;}
.ybd{bottom:148.568000pt;}
.y147{bottom:150.673333pt;}
.y8e{bottom:152.456000pt;}
.ycf{bottom:153.258478pt;}
.ydb{bottom:154.051492pt;}
.y114{bottom:154.565333pt;}
.y59{bottom:163.112000pt;}
.ye9{bottom:164.501333pt;}
.ybc{bottom:164.509333pt;}
.y30{bottom:165.252000pt;}
.y146{bottom:166.613333pt;}
.y8d{bottom:168.396000pt;}
.yd0{bottom:169.302116pt;}
.ydc{bottom:170.095130pt;}
.y113{bottom:170.505333pt;}
.y58{bottom:179.052000pt;}
.ye8{bottom:180.441333pt;}
.ybb{bottom:180.449333pt;}
.y2f{bottom:181.192000pt;}
.y145{bottom:182.554667pt;}
.yd1{bottom:185.345754pt;}
.ydd{bottom:186.138768pt;}
.y112{bottom:186.445333pt;}
.y8c{bottom:188.232000pt;}
.y57{bottom:194.992000pt;}
.ye7{bottom:196.381333pt;}
.yba{bottom:196.389333pt;}
.y2e{bottom:197.132000pt;}
.yd2{bottom:201.389393pt;}
.yde{bottom:202.182406pt;}
.y111{bottom:202.385333pt;}
.y144{bottom:202.678667pt;}
.y8b{bottom:204.172000pt;}
.y56{bottom:210.932000pt;}
.ye6{bottom:212.322667pt;}
.yb9{bottom:212.329333pt;}
.y2d{bottom:213.072000pt;}
.y110{bottom:218.326667pt;}
.y8a{bottom:220.112000pt;}
.y55{bottom:226.872000pt;}
.y143{bottom:227.585333pt;}
.ye5{bottom:228.262667pt;}
.yb8{bottom:228.269333pt;}
.y2c{bottom:229.012000pt;}
.y10f{bottom:234.105333pt;}
.y89{bottom:236.053333pt;}
.y54{bottom:242.813333pt;}
.y142{bottom:243.525333pt;}
.ye4{bottom:244.202667pt;}
.yb7{bottom:244.209333pt;}
.y2b{bottom:244.953333pt;}
.y10e{bottom:250.045333pt;}
.y53{bottom:259.448000pt;}
.y141{bottom:259.465333pt;}
.ye3{bottom:260.142667pt;}
.yb6{bottom:260.150667pt;}
.y88{bottom:260.210667pt;}
.y2a{bottom:260.893333pt;}
.y10d{bottom:265.986667pt;}
.y86{bottom:269.322667pt;}
.y52{bottom:275.388000pt;}
.y140{bottom:275.405333pt;}
.ye2{bottom:276.082667pt;}
.yb5{bottom:276.090667pt;}
.y29{bottom:276.833333pt;}
.y87{bottom:278.309333pt;}
.y10c{bottom:281.926667pt;}
.y51{bottom:291.328000pt;}
.y13f{bottom:291.346667pt;}
.ye1{bottom:292.022667pt;}
.yb4{bottom:292.038667pt;}
.y28{bottom:292.773333pt;}
.yfd{bottom:293.154667pt;}
.y10b{bottom:297.866667pt;}
.y85{bottom:303.572000pt;}
.y50{bottom:307.268000pt;}
.y13e{bottom:307.286667pt;}
.yb3{bottom:307.978667pt;}
.y27{bottom:308.713333pt;}
.yfc{bottom:309.094667pt;}
.y10a{bottom:313.806667pt;}
.y84{bottom:319.512000pt;}
.y4f{bottom:323.208000pt;}
.y13d{bottom:323.226667pt;}
.yb2{bottom:323.918667pt;}
.y26{bottom:324.653333pt;}
.yfb{bottom:325.034667pt;}
.y109{bottom:329.746667pt;}
.y83{bottom:335.452000pt;}
.y4e{bottom:339.149333pt;}
.y13c{bottom:339.166667pt;}
.yb1{bottom:339.858667pt;}
.y25{bottom:340.594667pt;}
.yfa{bottom:340.974667pt;}
.y108{bottom:345.686667pt;}
.y82{bottom:351.392000pt;}
.y4d{bottom:355.089333pt;}
.y13b{bottom:355.106667pt;}
.yb0{bottom:355.800000pt;}
.y24{bottom:356.534667pt;}
.yf9{bottom:356.916000pt;}
.ye0{bottom:359.921333pt;}
.y107{bottom:361.628000pt;}
.y81{bottom:367.332000pt;}
.y4c{bottom:371.029333pt;}
.y13a{bottom:371.046667pt;}
.yaf{bottom:371.740000pt;}
.y23{bottom:372.474667pt;}
.yf8{bottom:372.856000pt;}
.ydf{bottom:375.861333pt;}
.y106{bottom:377.568000pt;}
.y4b{bottom:386.969333pt;}
.y139{bottom:386.988000pt;}
.y80{bottom:387.168000pt;}
.yae{bottom:387.680000pt;}
.y22{bottom:388.414667pt;}
.yf7{bottom:388.796000pt;}
.y105{bottom:393.508000pt;}
.yc5{bottom:394.989333pt;}
.y4a{bottom:402.909333pt;}
.y138{bottom:402.928000pt;}
.y7f{bottom:403.108000pt;}
.yad{bottom:403.620000pt;}
.y21{bottom:404.354667pt;}
.yf6{bottom:404.736000pt;}
.y104{bottom:409.448000pt;}
.y49{bottom:418.850667pt;}
.y137{bottom:418.868000pt;}
.y7e{bottom:419.048000pt;}
.yac{bottom:419.560000pt;}
.yf5{bottom:420.676000pt;}
.y103{bottom:425.388000pt;}
.y20{bottom:428.981333pt;}
.y48{bottom:434.790667pt;}
.y136{bottom:434.808000pt;}
.y7d{bottom:434.989333pt;}
.yab{bottom:435.500000pt;}
.yf4{bottom:436.616000pt;}
.y102{bottom:441.328000pt;}
.y47{bottom:450.730667pt;}
.y135{bottom:450.748000pt;}
.y7c{bottom:450.929333pt;}
.yaa{bottom:451.441333pt;}
.yf3{bottom:452.557333pt;}
.y1f{bottom:463.958667pt;}
.y46{bottom:466.670667pt;}
.y134{bottom:466.688000pt;}
.y7b{bottom:466.869333pt;}
.ya9{bottom:467.381333pt;}
.yf2{bottom:468.497333pt;}
.y1e{bottom:477.242667pt;}
.y45{bottom:482.610667pt;}
.y133{bottom:482.629333pt;}
.y7a{bottom:482.809333pt;}
.ya8{bottom:483.321333pt;}
.yf1{bottom:484.437333pt;}
.y101{bottom:485.045333pt;}
.y1d{bottom:491.276000pt;}
.y44{bottom:498.550667pt;}
.y132{bottom:498.569333pt;}
.ya7{bottom:499.261333pt;}
.yf0{bottom:500.377333pt;}
.y100{bottom:500.985333pt;}
.y1c{bottom:504.560000pt;}
.y79{bottom:504.986667pt;}
.y131{bottom:514.509333pt;}
.y43{bottom:515.186667pt;}
.ya6{bottom:515.209333pt;}
.yef{bottom:516.317333pt;}
.y1b{bottom:517.842667pt;}
.yff{bottom:524.098667pt;}
.y78{bottom:528.632000pt;}
.y130{bottom:530.449333pt;}
.y1a{bottom:531.126667pt;}
.ya5{bottom:531.149333pt;}
.yee{bottom:532.257333pt;}
.y19{bottom:544.410667pt;}
.y12f{bottom:546.389333pt;}
.y42{bottom:547.066667pt;}
.ya4{bottom:547.089333pt;}
.yed{bottom:548.198667pt;}
.y18{bottom:557.693333pt;}
.y77{bottom:558.525333pt;}
.y12e{bottom:562.330667pt;}
.y41{bottom:563.006667pt;}
.ya3{bottom:563.030667pt;}
.yec{bottom:564.138667pt;}
.y17{bottom:570.977333pt;}
.y76{bottom:574.465333pt;}
.y12d{bottom:578.270667pt;}
.y40{bottom:578.946667pt;}
.ya2{bottom:578.970667pt;}
.yeb{bottom:580.078667pt;}
.y16{bottom:584.260000pt;}
.y75{bottom:590.405333pt;}
.y12c{bottom:594.210667pt;}
.y3f{bottom:594.886667pt;}
.ya1{bottom:594.910667pt;}
.y15{bottom:597.544000pt;}
.y74{bottom:606.345333pt;}
.yea{bottom:606.990667pt;}
.y12b{bottom:610.150667pt;}
.y14{bottom:610.828000pt;}
.ya0{bottom:610.850667pt;}
.y73{bottom:622.285333pt;}
.y13{bottom:624.110667pt;}
.y12a{bottom:626.090667pt;}
.y3e{bottom:626.768000pt;}
.y9f{bottom:626.790667pt;}
.y12{bottom:637.394667pt;}
.y72{bottom:638.226667pt;}
.y129{bottom:642.030667pt;}
.y3d{bottom:642.708000pt;}
.y9e{bottom:642.730667pt;}
.y11{bottom:650.678667pt;}
.yc4{bottom:652.421333pt;}
.y71{bottom:654.166667pt;}
.y128{bottom:657.972000pt;}
.y3c{bottom:658.648000pt;}
.y9d{bottom:658.672000pt;}
.y10{bottom:663.961333pt;}
.yc3{bottom:668.361333pt;}
.y70{bottom:670.106667pt;}
.y127{bottom:673.912000pt;}
.y3b{bottom:674.588000pt;}
.yf{bottom:677.245333pt;}
.y9c{bottom:678.822667pt;}
.y6f{bottom:686.046667pt;}
.y126{bottom:689.852000pt;}
.y3a{bottom:690.528000pt;}
.ye{bottom:690.529333pt;}
.yc2{bottom:698.569333pt;}
.y6e{bottom:701.986667pt;}
.y9b{bottom:703.796000pt;}
.yd{bottom:703.812000pt;}
.y125{bottom:705.792000pt;}
.y39{bottom:706.469333pt;}
.yc{bottom:717.096000pt;}
.y6d{bottom:717.926667pt;}
.y9a{bottom:719.736000pt;}
.y124{bottom:721.732000pt;}
.y38{bottom:722.409333pt;}
.yb{bottom:730.380000pt;}
.y99{bottom:735.676000pt;}
.y123{bottom:737.672000pt;}
.y6c{bottom:737.762667pt;}
.y37{bottom:738.349333pt;}
.ya{bottom:743.662667pt;}
.y98{bottom:751.616000pt;}
.y6b{bottom:753.702667pt;}
.y36{bottom:754.289333pt;}
.y9{bottom:756.946667pt;}
.y122{bottom:757.797333pt;}
.yfe{bottom:762.126667pt;}
.y97{bottom:767.557333pt;}
.y6a{bottom:769.642667pt;}
.y35{bottom:770.229333pt;}
.y8{bottom:770.230667pt;}
.yc1{bottom:778.158667pt;}
.y121{bottom:782.704000pt;}
.y96{bottom:783.497333pt;}
.y69{bottom:785.584000pt;}
.y120{bottom:798.644000pt;}
.y95{bottom:799.437333pt;}
.y68{bottom:801.524000pt;}
.y158{bottom:805.996000pt;}
.y11f{bottom:814.584000pt;}
.y94{bottom:815.377333pt;}
.y67{bottom:817.464000pt;}
.y157{bottom:817.950667pt;}
.y156{bottom:829.906667pt;}
.y11e{bottom:830.524000pt;}
.y66{bottom:833.404000pt;}
.y93{bottom:833.990667pt;}
.y7{bottom:836.792000pt;}
.y155{bottom:841.861333pt;}
.y11d{bottom:846.464000pt;}
.y65{bottom:849.344000pt;}
.y92{bottom:849.930667pt;}
.yc0{bottom:851.697333pt;}
.y6{bottom:853.230667pt;}
.y154{bottom:853.816000pt;}
.y160{bottom:857.901333pt;}
.y11c{bottom:862.405333pt;}
.y64{bottom:865.284000pt;}
.y153{bottom:865.772000pt;}
.y91{bottom:865.870667pt;}
.y5{bottom:869.669333pt;}
.y15f{bottom:869.856000pt;}
.y152{bottom:877.726667pt;}
.y63{bottom:881.225333pt;}
.y90{bottom:881.812000pt;}
.y4{bottom:886.106667pt;}
.y151{bottom:889.682667pt;}
.y15e{bottom:893.766667pt;}
.y62{bottom:897.752000pt;}
.y150{bottom:901.637333pt;}
.y3{bottom:902.545333pt;}
.y15d{bottom:905.722667pt;}
.y11b{bottom:909.857494pt;}
.y14f{bottom:913.592000pt;}
.y61{bottom:913.692000pt;}
.y15c{bottom:917.677333pt;}
.y2{bottom:919.181333pt;}
.y11a{bottom:922.008477pt;}
.y14e{bottom:925.548000pt;}
.y60{bottom:929.632000pt;}
.y14d{bottom:937.502667pt;}
.y119{bottom:940.510612pt;}
.ybf{bottom:940.818667pt;}
.y15b{bottom:941.588000pt;}
.y5f{bottom:945.572000pt;}
.y14c{bottom:949.457333pt;}
.y15a{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.y14b{bottom:961.413333pt;}
.y5e{bottom:961.512000pt;}
.y159{bottom:965.497333pt;}
.y118{bottom:966.294667pt;}
.y5d{bottom:977.453333pt;}
.y117{bottom:982.234667pt;}
.h9{height:22.667059pt;}
.h11{height:23.034840pt;}
.hf{height:24.474517pt;}
.h10{height:28.793550pt;}
.h15{height:29.032418pt;}
.hd{height:30.222619pt;}
.h14{height:30.435953pt;}
.h13{height:31.103739pt;}
.h12{height:34.000589pt;}
.h6{height:35.865600pt;}
.h3{height:36.290431pt;}
.h7{height:36.441600pt;}
.hb{height:37.459376pt;}
.h5{height:37.778179pt;}
.h4{height:38.044846pt;}
.h2{height:41.556149pt;}
.h8{height:45.729983pt;}
.ha{height:79.923217pt;}
.h1{height:90.667858pt;}
.hc{height:113.496021pt;}
.he{height:223.157760pt;}
.h0{height:1056.000000pt;}
.w1{width:334.736640pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x33{left:10.455193pt;}
.x32{left:13.615142pt;}
.x30{left:19.832129pt;}
.x31{left:22.653079pt;}
.x2a{left:34.251665pt;}
.x29{left:35.438159pt;}
.x2f{left:39.978316pt;}
.x2b{left:41.055846pt;}
.x2e{left:42.006252pt;}
.x2c{left:43.876796pt;}
.x2d{left:46.104500pt;}
.x27{left:58.375029pt;}
.x17{left:65.285333pt;}
.x37{left:68.777060pt;}
.x3b{left:71.326643pt;}
.x39{left:75.530009pt;}
.x26{left:76.517333pt;}
.x25{left:77.593333pt;}
.x16{left:78.569333pt;}
.x36{left:80.439679pt;}
.x1{left:83.317333pt;}
.x41{left:90.960000pt;}
.x1d{left:91.981333pt;}
.x38{left:93.411543pt;}
.x4{left:96.264000pt;}
.x3{left:107.189333pt;}
.x42{left:109.853333pt;}
.x3d{left:117.458667pt;}
.x7{left:121.886667pt;}
.x2{left:127.945333pt;}
.x34{left:129.226292pt;}
.x8{left:133.622667pt;}
.x1f{left:137.593333pt;}
.x28{left:144.642120pt;}
.x5{left:150.560000pt;}
.x1e{left:161.126667pt;}
.x6{left:170.484000pt;}
.x43{left:175.348000pt;}
.x19{left:180.825333pt;}
.x40{left:195.464000pt;}
.x21{left:218.084000pt;}
.x3a{left:268.850409pt;}
.x20{left:289.501333pt;}
.x35{left:306.680706pt;}
.xb{left:321.498667pt;}
.xd{left:348.112000pt;}
.xa{left:367.080000pt;}
.xe{left:369.470667pt;}
.xc{left:373.749333pt;}
.x9{left:377.982667pt;}
.x18{left:391.064000pt;}
.x1a{left:415.970667pt;}
.x1c{left:426.597333pt;}
.x1b{left:429.253333pt;}
.x44{left:441.644000pt;}
.x22{left:442.666667pt;}
.x24{left:458.965333pt;}
.x3c{left:486.978667pt;}
.x3f{left:525.413333pt;}
.x3e{left:533.138667pt;}
.x14{left:567.960000pt;}
.x12{left:577.657333pt;}
.x15{left:582.605333pt;}
.x11{left:585.880000pt;}
.xf{left:596.834667pt;}
.x10{left:598.300000pt;}
.x13{left:642.068000pt;}
.x23{left:744.817333pt;}
}




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