
    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_eaab184e3b0baceeac298ecc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c4f8773869bb142d3428453b.woff')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_385d8cf1ec4f0c78bb4181bf.woff')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_8034badd40f6094c66ca6a43.woff')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_39e80389ad8ee25a43ffaeab.woff')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_45182de77c3d29d9d5c7b9e6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_47b64526307d03ff6c327a01.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914551;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_af2013929cc1ca54188a38a5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.927246;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_9a6e03608ed91526574b3076.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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;}
.m1{transform:matrix(0.234923,-0.085505,0.085505,0.234923,0,0);-ms-transform:matrix(0.234923,-0.085505,0.085505,0.234923,0,0);-webkit-transform:matrix(0.234923,-0.085505,0.085505,0.234923,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);}
.v1{vertical-align:-26.342408px;}
.v4{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.690000px;}
.v2{vertical-align:35.123211px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.964877px;}
.ls1{letter-spacing:2.987108px;}
.ls5{letter-spacing:2.988780px;}
.ls9{letter-spacing:2.989200px;}
.ls6{letter-spacing:2.993675px;}
.ls2{letter-spacing:17.932766px;}
.ls3{letter-spacing:17.934017px;}
.ls7{letter-spacing:27.738600px;}
.ls8{letter-spacing:30.852600px;}
.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;}
}
.ws1c{word-spacing:-14.920027px;}
.ws9e{word-spacing:-12.197941px;}
.ws4b{word-spacing:-11.955150px;}
.ws9d{word-spacing:-10.965792px;}
.ws6b{word-spacing:-2.986750px;}
.wsee{word-spacing:-1.135736px;}
.ws26{word-spacing:-0.956410px;}
.ws61{word-spacing:-0.836858px;}
.ws7c{word-spacing:-0.777083px;}
.ws3e{word-spacing:-0.717307px;}
.ws80{word-spacing:-0.537980px;}
.ws105{word-spacing:-0.478206px;}
.ws87{word-spacing:-0.418429px;}
.wsaa{word-spacing:-0.239102px;}
.ws3{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws5e{word-spacing:0.000000px;}
.ws8e{word-spacing:0.358654px;}
.wsec{word-spacing:0.418429px;}
.wsdf{word-spacing:0.478205px;}
.ws25{word-spacing:0.537980px;}
.ws2c{word-spacing:0.597756px;}
.wsa3{word-spacing:0.657532px;}
.ws11{word-spacing:0.699379px;}
.ws88{word-spacing:0.717307px;}
.wsbf{word-spacing:0.836858px;}
.ws1a{word-spacing:0.860774px;}
.wse1{word-spacing:1.315063px;}
.wsf9{word-spacing:1.434614px;}
.ws4f{word-spacing:1.494390px;}
.ws106{word-spacing:1.625900px;}
.ws7a{word-spacing:1.733492px;}
.ws9f{word-spacing:1.972595px;}
.wse5{word-spacing:2.032370px;}
.ws62{word-spacing:2.151922px;}
.ws8d{word-spacing:2.211697px;}
.wsfe{word-spacing:2.247568px;}
.ws10a{word-spacing:2.343209px;}
.wsea{word-spacing:2.391024px;}
.ws3c{word-spacing:2.510575px;}
.wsd1{word-spacing:2.570351px;}
.ws69{word-spacing:2.749678px;}
.wsda{word-spacing:2.809453px;}
.wscd{word-spacing:2.929004px;}
.wsb0{word-spacing:2.988780px;}
.wsc1{word-spacing:3.048556px;}
.ws86{word-spacing:3.108331px;}
.wsd2{word-spacing:3.227882px;}
.ws17{word-spacing:3.335501px;}
.wsd7{word-spacing:3.407209px;}
.ws5c{word-spacing:3.466985px;}
.wsc2{word-spacing:3.526760px;}
.wsa6{word-spacing:3.825638px;}
.wsf0{word-spacing:3.885414px;}
.ws10b{word-spacing:3.969110px;}
.ws75{word-spacing:4.004965px;}
.ws27{word-spacing:4.064741px;}
.wsce{word-spacing:4.160392px;}
.ws6e{word-spacing:4.184292px;}
.ws2f{word-spacing:4.244068px;}
.ws57{word-spacing:4.303843px;}
.wsc5{word-spacing:4.363619px;}
.ws24{word-spacing:4.423394px;}
.ws3b{word-spacing:4.483170px;}
.wsbb{word-spacing:4.722272px;}
.ws36{word-spacing:4.734239px;}
.ws101{word-spacing:4.779959px;}
.wsd0{word-spacing:4.782060px;}
.wsc6{word-spacing:4.841824px;}
.wse{word-spacing:4.895654px;}
.wsf1{word-spacing:4.901599px;}
.wsc8{word-spacing:4.961375px;}
.wscf{word-spacing:4.973342px;}
.wse7{word-spacing:5.080926px;}
.ws107{word-spacing:5.116804px;}
.ws104{word-spacing:5.164625px;}
.ws56{word-spacing:5.200477px;}
.ws83{word-spacing:5.320028px;}
.wsbe{word-spacing:5.439580px;}
.ws12{word-spacing:5.487437px;}
.wseb{word-spacing:5.499355px;}
.wsdb{word-spacing:5.559131px;}
.ws95{word-spacing:5.738458px;}
.wsa9{word-spacing:5.798233px;}
.ws40{word-spacing:5.917784px;}
.ws10{word-spacing:5.917824px;}
.ws4a{word-spacing:5.929754px;}
.wsb2{word-spacing:5.937803px;}
.wsb1{word-spacing:5.947153px;}
.ws2{word-spacing:5.977560px;}
.ws37{word-spacing:5.977575px;}
.wsfd{word-spacing:6.073216px;}
.ws5d{word-spacing:6.097111px;}
.ws94{word-spacing:6.156887px;}
.ws78{word-spacing:6.216662px;}
.ws102{word-spacing:6.312319px;}
.ws53{word-spacing:6.336214px;}
.ws1f{word-spacing:6.455765px;}
.ws1{word-spacing:6.575340px;}
.ws76{word-spacing:6.635092px;}
.ws18{word-spacing:6.724800px;}
.ws7f{word-spacing:6.754643px;}
.ws42{word-spacing:6.874194px;}
.ws7{word-spacing:7.047590px;}
.wscc{word-spacing:7.053521px;}
.ws8c{word-spacing:7.113296px;}
.ws16{word-spacing:7.208986px;}
.wsbc{word-spacing:7.232848px;}
.wsfa{word-spacing:7.364372px;}
.wsd8{word-spacing:7.471950px;}
.wsba{word-spacing:7.591501px;}
.wsf6{word-spacing:8.069706px;}
.wsd3{word-spacing:8.189257px;}
.ws85{word-spacing:8.249033px;}
.ws55{word-spacing:8.308808px;}
.wsd{word-spacing:8.338752px;}
.wsc9{word-spacing:8.368584px;}
.wsae{word-spacing:8.428360px;}
.wse9{word-spacing:8.488135px;}
.wsf7{word-spacing:8.547911px;}
.ws2e{word-spacing:8.607686px;}
.wsb7{word-spacing:8.667462px;}
.ws68{word-spacing:8.846789px;}
.wsb6{word-spacing:8.906564px;}
.wsd5{word-spacing:9.026116px;}
.wsa5{word-spacing:9.085891px;}
.ws41{word-spacing:9.145667px;}
.ws84{word-spacing:9.205442px;}
.ws96{word-spacing:9.265218px;}
.wse6{word-spacing:9.324994px;}
.wse2{word-spacing:9.444545px;}
.ws91{word-spacing:9.504320px;}
.ws28{word-spacing:9.564096px;}
.ws29{word-spacing:9.623872px;}
.wsf2{word-spacing:9.743423px;}
.ws3f{word-spacing:9.803198px;}
.ws108{word-spacing:9.803223px;}
.ws46{word-spacing:9.862974px;}
.ws34{word-spacing:9.922750px;}
.wsb{word-spacing:10.060301px;}
.ws82{word-spacing:10.102076px;}
.wsed{word-spacing:10.221628px;}
.wsd9{word-spacing:10.281403px;}
.wsff{word-spacing:10.350725px;}
.ws100{word-spacing:10.377070px;}
.ws73{word-spacing:10.400954px;}
.wsc4{word-spacing:10.460730px;}
.ws3d{word-spacing:10.580281px;}
.wsbd{word-spacing:10.759608px;}
.ws5b{word-spacing:10.819384px;}
.ws70{word-spacing:10.938935px;}
.ws65{word-spacing:10.998710px;}
.ws92{word-spacing:11.058486px;}
.wsa4{word-spacing:11.118262px;}
.wsad{word-spacing:11.178037px;}
.wsf5{word-spacing:11.476915px;}
.ws21{word-spacing:11.656242px;}
.wsd6{word-spacing:11.716018px;}
.wsaf{word-spacing:11.775793px;}
.ws66{word-spacing:11.835569px;}
.ws74{word-spacing:11.895344px;}
.wsf8{word-spacing:12.074671px;}
.wsb3{word-spacing:12.253998px;}
.ws30{word-spacing:12.313774px;}
.wsa2{word-spacing:12.373549px;}
.ws13{word-spacing:12.373632px;}
.ws7d{word-spacing:12.433325px;}
.ws33{word-spacing:12.493100px;}
.ws7e{word-spacing:12.552876px;}
.wsef{word-spacing:12.612652px;}
.ws64{word-spacing:12.672427px;}
.ws2b{word-spacing:12.732203px;}
.ws54{word-spacing:12.791978px;}
.wsc0{word-spacing:12.851754px;}
.wsc7{word-spacing:12.911530px;}
.ws35{word-spacing:13.102844px;}
.ws60{word-spacing:13.210408px;}
.ws44{word-spacing:13.270183px;}
.ws4c{word-spacing:13.449510px;}
.wsfc{word-spacing:13.485409px;}
.ws6c{word-spacing:13.509286px;}
.ws7b{word-spacing:13.569061px;}
.wsb5{word-spacing:13.628837px;}
.ws58{word-spacing:13.688612px;}
.wsd4{word-spacing:13.748388px;}
.wsdc{word-spacing:13.808164px;}
.wsf3{word-spacing:13.867939px;}
.ws89{word-spacing:13.927715px;}
.ws50{word-spacing:13.987490px;}
.wsf{word-spacing:14.041382px;}
.ws3a{word-spacing:14.107042px;}
.ws109{word-spacing:14.107077px;}
.wscb{word-spacing:14.166817px;}
.ws19{word-spacing:14.256576px;}
.ws6a{word-spacing:14.286368px;}
.ws32{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws99{word-spacing:14.405920px;}
.ws103{word-spacing:14.441821px;}
.ws14{word-spacing:14.471770px;}
.ws90{word-spacing:14.645022px;}
.ws2d{word-spacing:14.704798px;}
.ws6f{word-spacing:14.824349px;}
.ws8b{word-spacing:14.943900px;}
.wsab{word-spacing:15.183002px;}
.ws51{word-spacing:15.302554px;}
.wsb9{word-spacing:15.541656px;}
.ws39{word-spacing:15.661207px;}
.wsca{word-spacing:15.720983px;}
.ws49{word-spacing:15.780758px;}
.ws48{word-spacing:15.840534px;}
.ws5f{word-spacing:15.960085px;}
.ws1d{word-spacing:16.079636px;}
.wsac{word-spacing:16.139412px;}
.ws5{word-spacing:16.408512px;}
.ws22{word-spacing:16.438290px;}
.ws15{word-spacing:16.516109px;}
.wsf4{word-spacing:16.617617px;}
.ws93{word-spacing:16.677392px;}
.ws77{word-spacing:16.916495px;}
.ws45{word-spacing:16.976270px;}
.ws43{word-spacing:17.036046px;}
.wsa8{word-spacing:17.095822px;}
.wse8{word-spacing:17.155597px;}
.ws6{word-spacing:17.323085px;}
.ws71{word-spacing:17.514251px;}
.ws52{word-spacing:17.574026px;}
.ws59{word-spacing:17.633802px;}
.ws5a{word-spacing:17.693578px;}
.wsa7{word-spacing:17.813129px;}
.ws1b{word-spacing:17.932680px;}
.ws8a{word-spacing:18.052231px;}
.ws9a{word-spacing:18.112007px;}
.wsc3{word-spacing:18.709763px;}
.ws79{word-spacing:18.769538px;}
.ws8f{word-spacing:19.008641px;}
.ws9{word-spacing:19.152230px;}
.wse0{word-spacing:19.247743px;}
.wse3{word-spacing:19.307519px;}
.ws38{word-spacing:19.427070px;}
.ws1e{word-spacing:19.486846px;}
.ws97{word-spacing:19.606397px;}
.ws4e{word-spacing:19.965050px;}
.ws20{word-spacing:20.144377px;}
.ws47{word-spacing:20.323704px;}
.wsa{word-spacing:20.550989px;}
.ws98{word-spacing:20.742133px;}
.ws23{word-spacing:20.861684px;}
.ws4d{word-spacing:20.981236px;}
.wsde{word-spacing:21.220338px;}
.wsc{word-spacing:21.304166px;}
.ws72{word-spacing:21.698543px;}
.ws31{word-spacing:21.758318px;}
.ws2a{word-spacing:21.877870px;}
.wsdd{word-spacing:21.997421px;}
.ws6d{word-spacing:22.176748px;}
.ws81{word-spacing:22.535401px;}
.wsa0{word-spacing:22.595177px;}
.ws8{word-spacing:22.649126px;}
.wsa1{word-spacing:22.714728px;}
.wse4{word-spacing:22.774504px;}
.ws67{word-spacing:23.192933px;}
.ws63{word-spacing:23.252708px;}
.wsb8{word-spacing:23.730913px;}
.wsb4{word-spacing:24.089567px;}
.wsfb{word-spacing:25.679662px;}
.ws9b{word-spacing:77.921049px;}
.ws9c{word-spacing:144.304980px;}
._1{margin-left:-10.042326px;}
._5{margin-left:-5.433337px;}
._0{margin-left:-3.586545px;}
._4{margin-left:-2.277715px;}
._2{margin-left:-1.183561px;}
._7{width:1.023889px;}
._6{width:2.988780px;}
._12{width:4.061939px;}
._3{width:5.484223px;}
._13{width:14.585283px;}
._a{width:17.932680px;}
._e{width:19.128192px;}
._10{width:24.765410px;}
._c{width:26.241488px;}
._9{width:29.887800px;}
._f{width:31.184102px;}
._8{width:33.659905px;}
._d{width:34.675431px;}
._11{width:48.058717px;}
._b{width:1468.747899px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,47,62);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:35.865600px;}
.fs6{font-size:39.469144px;}
.fs5{font-size:39.513612px;}
.fs9{font-size:39.513616px;}
.fsa{font-size:41.842800px;}
.fs7{font-size:43.904013px;}
.fs4{font-size:47.820600px;}
.fs8{font-size:52.684816px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.yca{bottom:9.085509px;}
.yc7{bottom:10.127779px;}
.ybb{bottom:20.736106px;}
.yc9{bottom:21.160034px;}
.yc6{bottom:22.202304px;}
.yc8{bottom:24.778458px;}
.ybd{bottom:25.899389px;}
.yb8{bottom:32.809709px;}
.yba{bottom:63.542518px;}
.yc3{bottom:70.128120px;}
.yb9{bottom:75.616122px;}
.yc0{bottom:88.787326px;}
.yc5{bottom:95.372928px;}
.ybf{bottom:96.470528px;}
.yc2{bottom:98.986636px;}
.ybc{bottom:104.153731px;}
.yc1{bottom:107.516602px;}
.yc4{bottom:108.544132px;}
.ybe{bottom:109.641732px;}
.y37{bottom:165.826500px;}
.y174{bottom:167.988000px;}
.y36{bottom:179.275500px;}
.y173{bottom:181.437000px;}
.y116{bottom:183.495000px;}
.y62{bottom:183.759000px;}
.y35{bottom:192.726000px;}
.y172{bottom:194.887500px;}
.y115{bottom:198.289500px;}
.y61{bottom:201.691500px;}
.y171{bottom:208.336500px;}
.y60{bottom:219.624000px;}
.y170{bottom:221.785500px;}
.y34{bottom:222.355500px;}
.y114{bottom:223.591500px;}
.y16f{bottom:235.236000px;}
.y5f{bottom:237.556500px;}
.yb6{bottom:238.120500px;}
.y33{bottom:240.288000px;}
.y113{bottom:241.524000px;}
.y16e{bottom:248.685000px;}
.y5e{bottom:255.489000px;}
.y83{bottom:255.490500px;}
.yb5{bottom:256.053000px;}
.y32{bottom:258.220500px;}
.y112{bottom:259.456500px;}
.y16d{bottom:262.134000px;}
.y5d{bottom:273.423000px;}
.yb4{bottom:273.985500px;}
.y16c{bottom:275.584500px;}
.y31{bottom:276.153000px;}
.y111{bottom:277.389000px;}
.y16b{bottom:289.033500px;}
.y5c{bottom:291.355500px;}
.yb3{bottom:291.918000px;}
.y30{bottom:294.087000px;}
.y110{bottom:295.321500px;}
.y16a{bottom:302.482500px;}
.y82{bottom:309.288000px;}
.yb2{bottom:309.850500px;}
.y5b{bottom:310.977000px;}
.y2f{bottom:312.019500px;}
.y10f{bottom:313.254000px;}
.y169{bottom:315.933000px;}
.y81{bottom:327.220500px;}
.yb1{bottom:327.783000px;}
.y5a{bottom:328.911000px;}
.y168{bottom:329.382000px;}
.y2e{bottom:329.952000px;}
.y10e{bottom:331.188000px;}
.y167{bottom:342.832500px;}
.y136{bottom:345.153000px;}
.y80{bottom:345.154500px;}
.yb0{bottom:345.717000px;}
.y59{bottom:346.843500px;}
.y2d{bottom:347.884500px;}
.y10d{bottom:349.120500px;}
.y166{bottom:356.281500px;}
.y7f{bottom:363.087000px;}
.yaf{bottom:363.649500px;}
.y58{bottom:364.776000px;}
.y2c{bottom:365.817000px;}
.y10c{bottom:367.053000px;}
.y165{bottom:369.730500px;}
.yec{bottom:370.750500px;}
.y7e{bottom:381.019500px;}
.yae{bottom:381.582000px;}
.y57{bottom:382.708500px;}
.y164{bottom:383.181000px;}
.y2b{bottom:383.749500px;}
.y10b{bottom:384.985500px;}
.y163{bottom:396.630000px;}
.y7d{bottom:398.952000px;}
.yad{bottom:399.514500px;}
.y56{bottom:400.641000px;}
.y2a{bottom:401.683500px;}
.y10a{bottom:402.918000px;}
.yeb{bottom:402.960000px;}
.y162{bottom:410.079000px;}
.y7c{bottom:416.884500px;}
.yac{bottom:417.447000px;}
.y55{bottom:418.575000px;}
.y29{bottom:419.773500px;}
.y109{bottom:420.852000px;}
.yea{bottom:420.892500px;}
.y161{bottom:423.529500px;}
.y135{bottom:435.273000px;}
.yab{bottom:435.381000px;}
.y54{bottom:436.507500px;}
.y160{bottom:436.978500px;}
.y28{bottom:437.706000px;}
.ye9{bottom:438.825000px;}
.y7b{bottom:439.480500px;}
.y108{bottom:443.376000px;}
.y15f{bottom:450.429000px;}
.y134{bottom:453.205500px;}
.yaa{bottom:453.313500px;}
.y53{bottom:454.440000px;}
.y27{bottom:455.638500px;}
.ye8{bottom:456.757500px;}
.y15e{bottom:463.878000px;}
.y7a{bottom:467.239500px;}
.y107{bottom:470.706000px;}
.y133{bottom:471.139500px;}
.ya9{bottom:471.246000px;}
.y52{bottom:472.372500px;}
.y26{bottom:473.571000px;}
.ye7{bottom:474.691500px;}
.y15d{bottom:477.327000px;}
.y79{bottom:485.172000px;}
.y106{bottom:488.638500px;}
.y132{bottom:489.072000px;}
.ya8{bottom:489.178500px;}
.y51{bottom:490.305000px;}
.y15c{bottom:490.777500px;}
.y25{bottom:491.505000px;}
.ye6{bottom:492.624000px;}
.y78{bottom:503.104500px;}
.y15b{bottom:504.226500px;}
.y105{bottom:506.571000px;}
.y131{bottom:507.004500px;}
.ya7{bottom:507.111000px;}
.y50{bottom:508.237500px;}
.y24{bottom:509.437500px;}
.ye5{bottom:510.556500px;}
.y15a{bottom:517.675500px;}
.y77{bottom:521.037000px;}
.y104{bottom:524.505000px;}
.y130{bottom:524.937000px;}
.ya6{bottom:525.043500px;}
.y4f{bottom:526.171500px;}
.y23{bottom:527.370000px;}
.ye4{bottom:528.489000px;}
.y159{bottom:531.126000px;}
.y76{bottom:538.969500px;}
.y103{bottom:542.437500px;}
.y12f{bottom:542.869500px;}
.ya5{bottom:542.977500px;}
.y4e{bottom:544.104000px;}
.y158{bottom:544.575000px;}
.y22{bottom:545.302500px;}
.ye3{bottom:546.421500px;}
.y157{bottom:558.025500px;}
.y102{bottom:560.370000px;}
.y12e{bottom:560.802000px;}
.ya4{bottom:561.472500px;}
.y75{bottom:561.567000px;}
.y4d{bottom:562.036500px;}
.y21{bottom:563.235000px;}
.ye2{bottom:564.354000px;}
.y101{bottom:578.302500px;}
.y12d{bottom:578.736000px;}
.ya3{bottom:579.405000px;}
.y156{bottom:579.472500px;}
.y20{bottom:581.167500px;}
.ye1{bottom:582.288000px;}
.y74{bottom:589.324500px;}
.y4c{bottom:594.814500px;}
.y100{bottom:596.235000px;}
.y12c{bottom:596.668500px;}
.ya2{bottom:597.339000px;}
.y1f{bottom:599.101500px;}
.ye0{bottom:600.220500px;}
.y155{bottom:601.006500px;}
.y73{bottom:607.257000px;}
.yff{bottom:614.167500px;}
.y12b{bottom:614.601000px;}
.y1e{bottom:617.034000px;}
.ydf{bottom:618.153000px;}
.y154{bottom:618.939000px;}
.ya1{bottom:621.949500px;}
.y4b{bottom:624.442500px;}
.y72{bottom:625.189500px;}
.yfe{bottom:632.101500px;}
.y12a{bottom:632.533500px;}
.y1d{bottom:634.966500px;}
.yde{bottom:636.579000px;}
.y153{bottom:636.871500px;}
.y4a{bottom:642.375000px;}
.y71{bottom:643.122000px;}
.yfd{bottom:650.034000px;}
.y129{bottom:650.466000px;}
.y1c{bottom:652.899000px;}
.ydd{bottom:654.511500px;}
.ya0{bottom:654.756000px;}
.y152{bottom:654.805500px;}
.y49{bottom:660.307500px;}
.y70{bottom:661.056000px;}
.yfc{bottom:667.966500px;}
.y128{bottom:668.400000px;}
.ydc{bottom:672.444000px;}
.y9f{bottom:672.688500px;}
.y151{bottom:672.738000px;}
.y1b{bottom:676.485000px;}
.y48{bottom:678.240000px;}
.y6f{bottom:678.988500px;}
.yfb{bottom:685.899000px;}
.y127{bottom:686.788500px;}
.ydb{bottom:690.376500px;}
.y9e{bottom:690.621000px;}
.y150{bottom:690.670500px;}
.y47{bottom:696.172500px;}
.y6e{bottom:696.921000px;}
.y1a{bottom:703.683000px;}
.yfa{bottom:703.717500px;}
.y126{bottom:704.721000px;}
.yda{bottom:708.309000px;}
.y9d{bottom:708.553500px;}
.y14f{bottom:708.603000px;}
.y46{bottom:714.106500px;}
.y6d{bottom:714.853500px;}
.y19{bottom:718.785000px;}
.yf9{bottom:721.650000px;}
.y125{bottom:722.653500px;}
.yd9{bottom:726.241500px;}
.y9c{bottom:726.487500px;}
.y14e{bottom:726.535500px;}
.y45{bottom:732.039000px;}
.y6c{bottom:732.786000px;}
.y18{bottom:733.728000px;}
.yf8{bottom:739.582500px;}
.y124{bottom:740.586000px;}
.yd8{bottom:744.175500px;}
.y9b{bottom:744.420000px;}
.y14d{bottom:744.468000px;}
.y17{bottom:748.672500px;}
.y44{bottom:749.971500px;}
.y6b{bottom:750.720000px;}
.yf7{bottom:757.515000px;}
.y123{bottom:758.518500px;}
.yd7{bottom:762.108000px;}
.y9a{bottom:762.352500px;}
.y14c{bottom:762.402000px;}
.y16{bottom:763.617000px;}
.y43{bottom:767.904000px;}
.y6a{bottom:768.652500px;}
.yf6{bottom:775.447500px;}
.y122{bottom:776.451000px;}
.y15{bottom:778.560000px;}
.yd6{bottom:780.040500px;}
.y99{bottom:780.285000px;}
.y14b{bottom:780.334500px;}
.y42{bottom:785.836500px;}
.y69{bottom:786.585000px;}
.yf5{bottom:793.380000px;}
.y14{bottom:793.504500px;}
.y121{bottom:795.067500px;}
.yd5{bottom:797.973000px;}
.y98{bottom:798.217500px;}
.y14a{bottom:798.267000px;}
.y41{bottom:803.769000px;}
.y68{bottom:804.517500px;}
.y13{bottom:808.449000px;}
.yf4{bottom:811.314000px;}
.y120{bottom:813.001500px;}
.yd4{bottom:815.905500px;}
.y97{bottom:816.150000px;}
.y149{bottom:816.199500px;}
.y40{bottom:821.703000px;}
.y67{bottom:822.450000px;}
.y12{bottom:823.392000px;}
.yf3{bottom:829.246500px;}
.y11f{bottom:830.934000px;}
.yd3{bottom:833.839500px;}
.y96{bottom:834.084000px;}
.y148{bottom:834.132000px;}
.y11{bottom:838.336500px;}
.y3f{bottom:839.635500px;}
.y66{bottom:840.382500px;}
.yf2{bottom:847.179000px;}
.y11e{bottom:848.866500px;}
.yd2{bottom:851.772000px;}
.y95{bottom:852.016500px;}
.y147{bottom:852.064500px;}
.y10{bottom:853.281000px;}
.y65{bottom:858.316500px;}
.y3e{bottom:859.257000px;}
.yf1{bottom:865.111500px;}
.y11d{bottom:866.799000px;}
.yf{bottom:868.224000px;}
.yd1{bottom:869.704500px;}
.y94{bottom:869.949000px;}
.y146{bottom:874.333500px;}
.y64{bottom:876.249000px;}
.y3d{bottom:877.191000px;}
.yf0{bottom:883.044000px;}
.ye{bottom:883.168500px;}
.y11c{bottom:884.731500px;}
.yd0{bottom:887.637000px;}
.y93{bottom:887.881500px;}
.y3c{bottom:895.123500px;}
.y145{bottom:895.867500px;}
.yd{bottom:898.111500px;}
.yef{bottom:900.978000px;}
.y11b{bottom:902.664000px;}
.ycf{bottom:905.569500px;}
.y63{bottom:905.631000px;}
.y92{bottom:906.378000px;}
.yc{bottom:913.056000px;}
.y144{bottom:913.800000px;}
.yee{bottom:918.910500px;}
.y11a{bottom:920.598000px;}
.yce{bottom:923.502000px;}
.y91{bottom:924.310500px;}
.yb{bottom:928.000500px;}
.y3b{bottom:930.988500px;}
.y143{bottom:931.732500px;}
.yed{bottom:936.843000px;}
.y119{bottom:938.530500px;}
.ycd{bottom:941.436000px;}
.y90{bottom:942.243000px;}
.ya{bottom:942.943500px;}
.y3a{bottom:948.921000px;}
.y142{bottom:949.665000px;}
.y118{bottom:956.463000px;}
.y9{bottom:957.888000px;}
.ycc{bottom:959.368500px;}
.y8f{bottom:960.175500px;}
.y39{bottom:966.853500px;}
.y141{bottom:967.599000px;}
.y8{bottom:972.832500px;}
.y8e{bottom:978.108000px;}
.y38{bottom:984.787500px;}
.y140{bottom:985.531500px;}
.y117{bottom:987.526500px;}
.y7{bottom:987.775500px;}
.ycb{bottom:989.217000px;}
.y8d{bottom:996.042000px;}
.y6{bottom:1002.720000px;}
.y13f{bottom:1003.464000px;}
.y8c{bottom:1013.974500px;}
.yb7{bottom:1016.827541px;}
.y13e{bottom:1021.396500px;}
.y8b{bottom:1031.907000px;}
.y5{bottom:1032.264000px;}
.y13d{bottom:1039.329000px;}
.y8a{bottom:1049.839500px;}
.y4{bottom:1050.757500px;}
.y13c{bottom:1057.263000px;}
.y89{bottom:1067.772000px;}
.y3{bottom:1069.471500px;}
.y13b{bottom:1075.195500px;}
.y88{bottom:1085.704500px;}
.y13a{bottom:1093.128000px;}
.y87{bottom:1103.638500px;}
.y2{bottom:1103.790000px;}
.y139{bottom:1111.060500px;}
.y86{bottom:1121.571000px;}
.y138{bottom:1128.249000px;}
.y85{bottom:1139.503500px;}
.y1{bottom:1145.632500px;}
.y137{bottom:1146.181500px;}
.y84{bottom:1164.114000px;}
.h17{height:24.675533px;}
.hd{height:28.284646px;}
.hf{height:28.734616px;}
.hc{height:28.766990px;}
.he{height:28.786284px;}
.h13{height:28.786286px;}
.h10{height:31.963322px;}
.h14{height:31.984760px;}
.h1a{height:32.804932px;}
.h18{height:32.900573px;}
.h1b{height:33.134573px;}
.h19{height:33.140573px;}
.ha{height:33.187496px;}
.h9{height:37.336090px;}
.h8{height:37.605082px;}
.h12{height:38.381711px;}
.h5{height:41.006062px;}
.h6{height:41.125613px;}
.h7{height:44.831700px;}
.h4{height:45.238339px;}
.h3{height:45.568339px;}
.h15{height:50.477846px;}
.h16{height:50.483846px;}
.h11{height:73.479197px;}
.h2{height:98.701718px;}
.hb{height:153.547059px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:645.652796px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:9.782061px;}
.x1a{left:15.012812px;}
.x16{left:47.940822px;}
.x15{left:53.137274px;}
.xb{left:61.653000px;}
.x3{left:65.904000px;}
.xd{left:73.608000px;}
.xa{left:76.597500px;}
.x2{left:85.078500px;}
.x11{left:99.162000px;}
.x12{left:108.442500px;}
.x13{left:123.903561px;}
.x22{left:146.274962px;}
.x1{left:149.727000px;}
.x26{left:161.971500px;}
.x7{left:170.668500px;}
.xc{left:191.262000px;}
.x17{left:198.860867px;}
.x9{left:202.686000px;}
.x4{left:214.702500px;}
.x8{left:255.325500px;}
.x20{left:261.120603px;}
.x21{left:263.834421px;}
.x18{left:301.486498px;}
.x25{left:326.193251px;}
.x24{left:332.761478px;}
.x1c{left:366.700587px;}
.x1d{left:378.565556px;}
.x1e{left:392.587325px;}
.x1b{left:434.639138px;}
.xe{left:455.422500px;}
.x2a{left:461.400000px;}
.x27{left:467.377500px;}
.xf{left:470.367000px;}
.x2b{left:482.812500px;}
.x1f{left:489.176154px;}
.x19{left:502.080137px;}
.x10{left:518.128500px;}
.x2f{left:527.490000px;}
.x5{left:532.305000px;}
.x23{left:557.227375px;}
.x28{left:586.032000px;}
.x29{left:601.498500px;}
.x2d{left:642.460500px;}
.x6{left:644.463000px;}
.x2e{left:711.726000px;}
.x2c{left:728.917500px;}
@media print{
.v1{vertical-align:-23.415474pt;}
.v4{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.280000pt;}
.v2{vertical-align:31.220632pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.635446pt;}
.ls1{letter-spacing:2.655207pt;}
.ls5{letter-spacing:2.656693pt;}
.ls9{letter-spacing:2.657067pt;}
.ls6{letter-spacing:2.661044pt;}
.ls2{letter-spacing:15.940237pt;}
.ls3{letter-spacing:15.941348pt;}
.ls7{letter-spacing:24.656533pt;}
.ls8{letter-spacing:27.424533pt;}
.ws1c{word-spacing:-13.262246pt;}
.ws9e{word-spacing:-10.842614pt;}
.ws4b{word-spacing:-10.626800pt;}
.ws9d{word-spacing:-9.747371pt;}
.ws6b{word-spacing:-2.654889pt;}
.wsee{word-spacing:-1.009543pt;}
.ws26{word-spacing:-0.850142pt;}
.ws61{word-spacing:-0.743874pt;}
.ws7c{word-spacing:-0.690740pt;}
.ws3e{word-spacing:-0.637606pt;}
.ws80{word-spacing:-0.478205pt;}
.ws105{word-spacing:-0.425072pt;}
.ws87{word-spacing:-0.371937pt;}
.wsaa{word-spacing:-0.212535pt;}
.ws3{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws5e{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.318803pt;}
.wsec{word-spacing:0.371937pt;}
.wsdf{word-spacing:0.425071pt;}
.ws25{word-spacing:0.478205pt;}
.ws2c{word-spacing:0.531339pt;}
.wsa3{word-spacing:0.584473pt;}
.ws11{word-spacing:0.621670pt;}
.ws88{word-spacing:0.637606pt;}
.wsbf{word-spacing:0.743874pt;}
.ws1a{word-spacing:0.765133pt;}
.wse1{word-spacing:1.168945pt;}
.wsf9{word-spacing:1.275213pt;}
.ws4f{word-spacing:1.328347pt;}
.ws106{word-spacing:1.445245pt;}
.ws7a{word-spacing:1.540882pt;}
.ws9f{word-spacing:1.753418pt;}
.wse5{word-spacing:1.806551pt;}
.ws62{word-spacing:1.912819pt;}
.ws8d{word-spacing:1.965953pt;}
.wsfe{word-spacing:1.997838pt;}
.ws10a{word-spacing:2.082853pt;}
.wsea{word-spacing:2.125355pt;}
.ws3c{word-spacing:2.231622pt;}
.wsd1{word-spacing:2.284756pt;}
.ws69{word-spacing:2.444158pt;}
.wsda{word-spacing:2.497292pt;}
.wscd{word-spacing:2.603559pt;}
.wsb0{word-spacing:2.656693pt;}
.wsc1{word-spacing:2.709827pt;}
.ws86{word-spacing:2.762961pt;}
.wsd2{word-spacing:2.869229pt;}
.ws17{word-spacing:2.964890pt;}
.wsd7{word-spacing:3.028630pt;}
.ws5c{word-spacing:3.081764pt;}
.wsc2{word-spacing:3.134898pt;}
.wsa6{word-spacing:3.400567pt;}
.wsf0{word-spacing:3.453701pt;}
.ws10b{word-spacing:3.528098pt;}
.ws75{word-spacing:3.559969pt;}
.ws27{word-spacing:3.613103pt;}
.wsce{word-spacing:3.698126pt;}
.ws6e{word-spacing:3.719371pt;}
.ws2f{word-spacing:3.772505pt;}
.ws57{word-spacing:3.825638pt;}
.wsc5{word-spacing:3.878772pt;}
.ws24{word-spacing:3.931906pt;}
.ws3b{word-spacing:3.985040pt;}
.wsbb{word-spacing:4.197575pt;}
.ws36{word-spacing:4.208213pt;}
.ws101{word-spacing:4.248852pt;}
.wsd0{word-spacing:4.250720pt;}
.wsc6{word-spacing:4.303843pt;}
.wse{word-spacing:4.351693pt;}
.wsf1{word-spacing:4.356977pt;}
.wsc8{word-spacing:4.410111pt;}
.wscf{word-spacing:4.420749pt;}
.wse7{word-spacing:4.516379pt;}
.ws107{word-spacing:4.548270pt;}
.ws104{word-spacing:4.590778pt;}
.ws56{word-spacing:4.622646pt;}
.ws83{word-spacing:4.728914pt;}
.wsbe{word-spacing:4.835182pt;}
.ws12{word-spacing:4.877722pt;}
.wseb{word-spacing:4.888316pt;}
.wsdb{word-spacing:4.941450pt;}
.ws95{word-spacing:5.100851pt;}
.wsa9{word-spacing:5.153985pt;}
.ws40{word-spacing:5.260253pt;}
.ws10{word-spacing:5.260288pt;}
.ws4a{word-spacing:5.270893pt;}
.wsb2{word-spacing:5.278047pt;}
.wsb1{word-spacing:5.286358pt;}
.ws2{word-spacing:5.313387pt;}
.ws37{word-spacing:5.313400pt;}
.wsfd{word-spacing:5.398414pt;}
.ws5d{word-spacing:5.419654pt;}
.ws94{word-spacing:5.472788pt;}
.ws78{word-spacing:5.525922pt;}
.ws102{word-spacing:5.610950pt;}
.ws53{word-spacing:5.632190pt;}
.ws1f{word-spacing:5.738458pt;}
.ws1{word-spacing:5.844747pt;}
.ws76{word-spacing:5.897859pt;}
.ws18{word-spacing:5.977600pt;}
.ws7f{word-spacing:6.004127pt;}
.ws42{word-spacing:6.110395pt;}
.ws7{word-spacing:6.264525pt;}
.wscc{word-spacing:6.269796pt;}
.ws8c{word-spacing:6.322930pt;}
.ws16{word-spacing:6.407987pt;}
.wsbc{word-spacing:6.429198pt;}
.wsfa{word-spacing:6.546109pt;}
.wsd8{word-spacing:6.641733pt;}
.wsba{word-spacing:6.748001pt;}
.wsf6{word-spacing:7.173072pt;}
.wsd3{word-spacing:7.279340pt;}
.ws85{word-spacing:7.332474pt;}
.ws55{word-spacing:7.385607pt;}
.wsd{word-spacing:7.412224pt;}
.wsc9{word-spacing:7.438741pt;}
.wsae{word-spacing:7.491875pt;}
.wse9{word-spacing:7.545009pt;}
.wsf7{word-spacing:7.598143pt;}
.ws2e{word-spacing:7.651277pt;}
.wsb7{word-spacing:7.704411pt;}
.ws68{word-spacing:7.863812pt;}
.wsb6{word-spacing:7.916946pt;}
.wsd5{word-spacing:8.023214pt;}
.wsa5{word-spacing:8.076348pt;}
.ws41{word-spacing:8.129482pt;}
.ws84{word-spacing:8.182615pt;}
.ws96{word-spacing:8.235749pt;}
.wse6{word-spacing:8.288883pt;}
.wse2{word-spacing:8.395151pt;}
.ws91{word-spacing:8.448285pt;}
.ws28{word-spacing:8.501419pt;}
.ws29{word-spacing:8.554553pt;}
.wsf2{word-spacing:8.660820pt;}
.ws3f{word-spacing:8.713954pt;}
.ws108{word-spacing:8.713976pt;}
.ws46{word-spacing:8.767088pt;}
.ws34{word-spacing:8.820222pt;}
.wsb{word-spacing:8.942490pt;}
.ws82{word-spacing:8.979623pt;}
.wsed{word-spacing:9.085891pt;}
.wsd9{word-spacing:9.139025pt;}
.wsff{word-spacing:9.200645pt;}
.ws100{word-spacing:9.224062pt;}
.ws73{word-spacing:9.245293pt;}
.wsc4{word-spacing:9.298427pt;}
.ws3d{word-spacing:9.404694pt;}
.wsbd{word-spacing:9.564096pt;}
.ws5b{word-spacing:9.617230pt;}
.ws70{word-spacing:9.723498pt;}
.ws65{word-spacing:9.776631pt;}
.ws92{word-spacing:9.829765pt;}
.wsa4{word-spacing:9.882899pt;}
.wsad{word-spacing:9.936033pt;}
.wsf5{word-spacing:10.201702pt;}
.ws21{word-spacing:10.361104pt;}
.wsd6{word-spacing:10.414238pt;}
.wsaf{word-spacing:10.467372pt;}
.ws66{word-spacing:10.520506pt;}
.ws74{word-spacing:10.573639pt;}
.wsf8{word-spacing:10.733041pt;}
.wsb3{word-spacing:10.892443pt;}
.ws30{word-spacing:10.945577pt;}
.wsa2{word-spacing:10.998710pt;}
.ws13{word-spacing:10.998784pt;}
.ws7d{word-spacing:11.051844pt;}
.ws33{word-spacing:11.104978pt;}
.ws7e{word-spacing:11.158112pt;}
.wsef{word-spacing:11.211246pt;}
.ws64{word-spacing:11.264380pt;}
.ws2b{word-spacing:11.317514pt;}
.ws54{word-spacing:11.370647pt;}
.wsc0{word-spacing:11.423781pt;}
.wsc7{word-spacing:11.476915pt;}
.ws35{word-spacing:11.646973pt;}
.ws60{word-spacing:11.742585pt;}
.ws44{word-spacing:11.795718pt;}
.ws4c{word-spacing:11.955120pt;}
.wsfc{word-spacing:11.987030pt;}
.ws6c{word-spacing:12.008254pt;}
.ws7b{word-spacing:12.061388pt;}
.wsb5{word-spacing:12.114522pt;}
.ws58{word-spacing:12.167655pt;}
.wsd4{word-spacing:12.220789pt;}
.wsdc{word-spacing:12.273923pt;}
.wsf3{word-spacing:12.327057pt;}
.ws89{word-spacing:12.380191pt;}
.ws50{word-spacing:12.433325pt;}
.wsf{word-spacing:12.481229pt;}
.ws3a{word-spacing:12.539593pt;}
.ws109{word-spacing:12.539624pt;}
.wscb{word-spacing:12.592726pt;}
.ws19{word-spacing:12.672512pt;}
.ws6a{word-spacing:12.698994pt;}
.ws32{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws99{word-spacing:12.805262pt;}
.ws103{word-spacing:12.837174pt;}
.ws14{word-spacing:12.863795pt;}
.ws90{word-spacing:13.017797pt;}
.ws2d{word-spacing:13.070931pt;}
.ws6f{word-spacing:13.177199pt;}
.ws8b{word-spacing:13.283467pt;}
.wsab{word-spacing:13.496002pt;}
.ws51{word-spacing:13.602270pt;}
.wsb9{word-spacing:13.814805pt;}
.ws39{word-spacing:13.921073pt;}
.wsca{word-spacing:13.974207pt;}
.ws49{word-spacing:14.027341pt;}
.ws48{word-spacing:14.080475pt;}
.ws5f{word-spacing:14.186742pt;}
.ws1d{word-spacing:14.293010pt;}
.wsac{word-spacing:14.346144pt;}
.ws5{word-spacing:14.585344pt;}
.ws22{word-spacing:14.611813pt;}
.ws15{word-spacing:14.680986pt;}
.wsf4{word-spacing:14.771215pt;}
.ws93{word-spacing:14.824349pt;}
.ws77{word-spacing:15.036884pt;}
.ws45{word-spacing:15.090018pt;}
.ws43{word-spacing:15.143152pt;}
.wsa8{word-spacing:15.196286pt;}
.wse8{word-spacing:15.249420pt;}
.ws6{word-spacing:15.398298pt;}
.ws71{word-spacing:15.568223pt;}
.ws52{word-spacing:15.621357pt;}
.ws59{word-spacing:15.674491pt;}
.ws5a{word-spacing:15.727625pt;}
.wsa7{word-spacing:15.833892pt;}
.ws1b{word-spacing:15.940160pt;}
.ws8a{word-spacing:16.046428pt;}
.ws9a{word-spacing:16.099562pt;}
.wsc3{word-spacing:16.630900pt;}
.ws79{word-spacing:16.684034pt;}
.ws8f{word-spacing:16.896570pt;}
.ws9{word-spacing:17.024205pt;}
.wse0{word-spacing:17.109105pt;}
.wse3{word-spacing:17.162239pt;}
.ws38{word-spacing:17.268507pt;}
.ws1e{word-spacing:17.321641pt;}
.ws97{word-spacing:17.427908pt;}
.ws4e{word-spacing:17.746711pt;}
.ws20{word-spacing:17.906113pt;}
.ws47{word-spacing:18.065515pt;}
.wsa{word-spacing:18.267546pt;}
.ws98{word-spacing:18.437452pt;}
.ws23{word-spacing:18.543719pt;}
.ws4d{word-spacing:18.649987pt;}
.wsde{word-spacing:18.862523pt;}
.wsc{word-spacing:18.937037pt;}
.ws72{word-spacing:19.287594pt;}
.ws31{word-spacing:19.340727pt;}
.ws2a{word-spacing:19.446995pt;}
.wsdd{word-spacing:19.553263pt;}
.ws6d{word-spacing:19.712665pt;}
.ws81{word-spacing:20.031468pt;}
.wsa0{word-spacing:20.084602pt;}
.ws8{word-spacing:20.132557pt;}
.wsa1{word-spacing:20.190869pt;}
.wse4{word-spacing:20.244003pt;}
.ws67{word-spacing:20.615940pt;}
.ws63{word-spacing:20.669074pt;}
.wsb8{word-spacing:21.094145pt;}
.wsb4{word-spacing:21.412948pt;}
.wsfb{word-spacing:22.826366pt;}
.ws9b{word-spacing:69.263155pt;}
.ws9c{word-spacing:128.271093pt;}
._1{margin-left:-8.926512pt;}
._5{margin-left:-4.829633pt;}
._0{margin-left:-3.188040pt;}
._4{margin-left:-2.024636pt;}
._2{margin-left:-1.052054pt;}
._7{width:0.910124pt;}
._6{width:2.656693pt;}
._12{width:3.610612pt;}
._3{width:4.874865pt;}
._13{width:12.964696pt;}
._a{width:15.940160pt;}
._e{width:17.002837pt;}
._10{width:22.013698pt;}
._c{width:23.325767pt;}
._9{width:26.566933pt;}
._f{width:27.719202pt;}
._8{width:29.919916pt;}
._d{width:30.822605pt;}
._11{width:42.718860pt;}
._b{width:1305.553688pt;}
.fsb{font-size:31.880533pt;}
.fs6{font-size:35.083684pt;}
.fs5{font-size:35.123211pt;}
.fs9{font-size:35.123214pt;}
.fsa{font-size:37.193600pt;}
.fs7{font-size:39.025789pt;}
.fs4{font-size:42.507200pt;}
.fs8{font-size:46.830947pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:8.076008pt;}
.yc7{bottom:9.002470pt;}
.ybb{bottom:18.432094pt;}
.yc9{bottom:18.808919pt;}
.yc6{bottom:19.735381pt;}
.yc8{bottom:22.025296pt;}
.ybd{bottom:23.021679pt;}
.yb8{bottom:29.164186pt;}
.yba{bottom:56.482239pt;}
.yc3{bottom:62.336107pt;}
.yb9{bottom:67.214331pt;}
.yc0{bottom:78.922067pt;}
.yc5{bottom:84.775936pt;}
.ybf{bottom:85.751581pt;}
.yc2{bottom:87.988121pt;}
.ybc{bottom:92.581094pt;}
.yc1{bottom:95.570313pt;}
.yc4{bottom:96.483673pt;}
.ybe{bottom:97.459317pt;}
.y37{bottom:147.401333pt;}
.y174{bottom:149.322667pt;}
.y36{bottom:159.356000pt;}
.y173{bottom:161.277333pt;}
.y116{bottom:163.106667pt;}
.y62{bottom:163.341333pt;}
.y35{bottom:171.312000pt;}
.y172{bottom:173.233333pt;}
.y115{bottom:176.257333pt;}
.y61{bottom:179.281333pt;}
.y171{bottom:185.188000pt;}
.y60{bottom:195.221333pt;}
.y170{bottom:197.142667pt;}
.y34{bottom:197.649333pt;}
.y114{bottom:198.748000pt;}
.y16f{bottom:209.098667pt;}
.y5f{bottom:211.161333pt;}
.yb6{bottom:211.662667pt;}
.y33{bottom:213.589333pt;}
.y113{bottom:214.688000pt;}
.y16e{bottom:221.053333pt;}
.y5e{bottom:227.101333pt;}
.y83{bottom:227.102667pt;}
.yb5{bottom:227.602667pt;}
.y32{bottom:229.529333pt;}
.y112{bottom:230.628000pt;}
.y16d{bottom:233.008000pt;}
.y5d{bottom:243.042667pt;}
.yb4{bottom:243.542667pt;}
.y16c{bottom:244.964000pt;}
.y31{bottom:245.469333pt;}
.y111{bottom:246.568000pt;}
.y16b{bottom:256.918667pt;}
.y5c{bottom:258.982667pt;}
.yb3{bottom:259.482667pt;}
.y30{bottom:261.410667pt;}
.y110{bottom:262.508000pt;}
.y16a{bottom:268.873333pt;}
.y82{bottom:274.922667pt;}
.yb2{bottom:275.422667pt;}
.y5b{bottom:276.424000pt;}
.y2f{bottom:277.350667pt;}
.y10f{bottom:278.448000pt;}
.y169{bottom:280.829333pt;}
.y81{bottom:290.862667pt;}
.yb1{bottom:291.362667pt;}
.y5a{bottom:292.365333pt;}
.y168{bottom:292.784000pt;}
.y2e{bottom:293.290667pt;}
.y10e{bottom:294.389333pt;}
.y167{bottom:304.740000pt;}
.y136{bottom:306.802667pt;}
.y80{bottom:306.804000pt;}
.yb0{bottom:307.304000pt;}
.y59{bottom:308.305333pt;}
.y2d{bottom:309.230667pt;}
.y10d{bottom:310.329333pt;}
.y166{bottom:316.694667pt;}
.y7f{bottom:322.744000pt;}
.yaf{bottom:323.244000pt;}
.y58{bottom:324.245333pt;}
.y2c{bottom:325.170667pt;}
.y10c{bottom:326.269333pt;}
.y165{bottom:328.649333pt;}
.yec{bottom:329.556000pt;}
.y7e{bottom:338.684000pt;}
.yae{bottom:339.184000pt;}
.y57{bottom:340.185333pt;}
.y164{bottom:340.605333pt;}
.y2b{bottom:341.110667pt;}
.y10b{bottom:342.209333pt;}
.y163{bottom:352.560000pt;}
.y7d{bottom:354.624000pt;}
.yad{bottom:355.124000pt;}
.y56{bottom:356.125333pt;}
.y2a{bottom:357.052000pt;}
.y10a{bottom:358.149333pt;}
.yeb{bottom:358.186667pt;}
.y162{bottom:364.514667pt;}
.y7c{bottom:370.564000pt;}
.yac{bottom:371.064000pt;}
.y55{bottom:372.066667pt;}
.y29{bottom:373.132000pt;}
.y109{bottom:374.090667pt;}
.yea{bottom:374.126667pt;}
.y161{bottom:376.470667pt;}
.y135{bottom:386.909333pt;}
.yab{bottom:387.005333pt;}
.y54{bottom:388.006667pt;}
.y160{bottom:388.425333pt;}
.y28{bottom:389.072000pt;}
.ye9{bottom:390.066667pt;}
.y7b{bottom:390.649333pt;}
.y108{bottom:394.112000pt;}
.y15f{bottom:400.381333pt;}
.y134{bottom:402.849333pt;}
.yaa{bottom:402.945333pt;}
.y53{bottom:403.946667pt;}
.y27{bottom:405.012000pt;}
.ye8{bottom:406.006667pt;}
.y15e{bottom:412.336000pt;}
.y7a{bottom:415.324000pt;}
.y107{bottom:418.405333pt;}
.y133{bottom:418.790667pt;}
.ya9{bottom:418.885333pt;}
.y52{bottom:419.886667pt;}
.y26{bottom:420.952000pt;}
.ye7{bottom:421.948000pt;}
.y15d{bottom:424.290667pt;}
.y79{bottom:431.264000pt;}
.y106{bottom:434.345333pt;}
.y132{bottom:434.730667pt;}
.ya8{bottom:434.825333pt;}
.y51{bottom:435.826667pt;}
.y15c{bottom:436.246667pt;}
.y25{bottom:436.893333pt;}
.ye6{bottom:437.888000pt;}
.y78{bottom:447.204000pt;}
.y15b{bottom:448.201333pt;}
.y105{bottom:450.285333pt;}
.y131{bottom:450.670667pt;}
.ya7{bottom:450.765333pt;}
.y50{bottom:451.766667pt;}
.y24{bottom:452.833333pt;}
.ye5{bottom:453.828000pt;}
.y15a{bottom:460.156000pt;}
.y77{bottom:463.144000pt;}
.y104{bottom:466.226667pt;}
.y130{bottom:466.610667pt;}
.ya6{bottom:466.705333pt;}
.y4f{bottom:467.708000pt;}
.y23{bottom:468.773333pt;}
.ye4{bottom:469.768000pt;}
.y159{bottom:472.112000pt;}
.y76{bottom:479.084000pt;}
.y103{bottom:482.166667pt;}
.y12f{bottom:482.550667pt;}
.ya5{bottom:482.646667pt;}
.y4e{bottom:483.648000pt;}
.y158{bottom:484.066667pt;}
.y22{bottom:484.713333pt;}
.ye3{bottom:485.708000pt;}
.y157{bottom:496.022667pt;}
.y102{bottom:498.106667pt;}
.y12e{bottom:498.490667pt;}
.ya4{bottom:499.086667pt;}
.y75{bottom:499.170667pt;}
.y4d{bottom:499.588000pt;}
.y21{bottom:500.653333pt;}
.ye2{bottom:501.648000pt;}
.y101{bottom:514.046667pt;}
.y12d{bottom:514.432000pt;}
.ya3{bottom:515.026667pt;}
.y156{bottom:515.086667pt;}
.y20{bottom:516.593333pt;}
.ye1{bottom:517.589333pt;}
.y74{bottom:523.844000pt;}
.y4c{bottom:528.724000pt;}
.y100{bottom:529.986667pt;}
.y12c{bottom:530.372000pt;}
.ya2{bottom:530.968000pt;}
.y1f{bottom:532.534667pt;}
.ye0{bottom:533.529333pt;}
.y155{bottom:534.228000pt;}
.y73{bottom:539.784000pt;}
.yff{bottom:545.926667pt;}
.y12b{bottom:546.312000pt;}
.y1e{bottom:548.474667pt;}
.ydf{bottom:549.469333pt;}
.y154{bottom:550.168000pt;}
.ya1{bottom:552.844000pt;}
.y4b{bottom:555.060000pt;}
.y72{bottom:555.724000pt;}
.yfe{bottom:561.868000pt;}
.y12a{bottom:562.252000pt;}
.y1d{bottom:564.414667pt;}
.yde{bottom:565.848000pt;}
.y153{bottom:566.108000pt;}
.y4a{bottom:571.000000pt;}
.y71{bottom:571.664000pt;}
.yfd{bottom:577.808000pt;}
.y129{bottom:578.192000pt;}
.y1c{bottom:580.354667pt;}
.ydd{bottom:581.788000pt;}
.ya0{bottom:582.005333pt;}
.y152{bottom:582.049333pt;}
.y49{bottom:586.940000pt;}
.y70{bottom:587.605333pt;}
.yfc{bottom:593.748000pt;}
.y128{bottom:594.133333pt;}
.ydc{bottom:597.728000pt;}
.y9f{bottom:597.945333pt;}
.y151{bottom:597.989333pt;}
.y1b{bottom:601.320000pt;}
.y48{bottom:602.880000pt;}
.y6f{bottom:603.545333pt;}
.yfb{bottom:609.688000pt;}
.y127{bottom:610.478667pt;}
.ydb{bottom:613.668000pt;}
.y9e{bottom:613.885333pt;}
.y150{bottom:613.929333pt;}
.y47{bottom:618.820000pt;}
.y6e{bottom:619.485333pt;}
.y1a{bottom:625.496000pt;}
.yfa{bottom:625.526667pt;}
.y126{bottom:626.418667pt;}
.yda{bottom:629.608000pt;}
.y9d{bottom:629.825333pt;}
.y14f{bottom:629.869333pt;}
.y46{bottom:634.761333pt;}
.y6d{bottom:635.425333pt;}
.y19{bottom:638.920000pt;}
.yf9{bottom:641.466667pt;}
.y125{bottom:642.358667pt;}
.yd9{bottom:645.548000pt;}
.y9c{bottom:645.766667pt;}
.y14e{bottom:645.809333pt;}
.y45{bottom:650.701333pt;}
.y6c{bottom:651.365333pt;}
.y18{bottom:652.202667pt;}
.yf8{bottom:657.406667pt;}
.y124{bottom:658.298667pt;}
.yd8{bottom:661.489333pt;}
.y9b{bottom:661.706667pt;}
.y14d{bottom:661.749333pt;}
.y17{bottom:665.486667pt;}
.y44{bottom:666.641333pt;}
.y6b{bottom:667.306667pt;}
.yf7{bottom:673.346667pt;}
.y123{bottom:674.238667pt;}
.yd7{bottom:677.429333pt;}
.y9a{bottom:677.646667pt;}
.y14c{bottom:677.690667pt;}
.y16{bottom:678.770667pt;}
.y43{bottom:682.581333pt;}
.y6a{bottom:683.246667pt;}
.yf6{bottom:689.286667pt;}
.y122{bottom:690.178667pt;}
.y15{bottom:692.053333pt;}
.yd6{bottom:693.369333pt;}
.y99{bottom:693.586667pt;}
.y14b{bottom:693.630667pt;}
.y42{bottom:698.521333pt;}
.y69{bottom:699.186667pt;}
.yf5{bottom:705.226667pt;}
.y14{bottom:705.337333pt;}
.y121{bottom:706.726667pt;}
.yd5{bottom:709.309333pt;}
.y98{bottom:709.526667pt;}
.y14a{bottom:709.570667pt;}
.y41{bottom:714.461333pt;}
.y68{bottom:715.126667pt;}
.y13{bottom:718.621333pt;}
.yf4{bottom:721.168000pt;}
.y120{bottom:722.668000pt;}
.yd4{bottom:725.249333pt;}
.y97{bottom:725.466667pt;}
.y149{bottom:725.510667pt;}
.y40{bottom:730.402667pt;}
.y67{bottom:731.066667pt;}
.y12{bottom:731.904000pt;}
.yf3{bottom:737.108000pt;}
.y11f{bottom:738.608000pt;}
.yd3{bottom:741.190667pt;}
.y96{bottom:741.408000pt;}
.y148{bottom:741.450667pt;}
.y11{bottom:745.188000pt;}
.y3f{bottom:746.342667pt;}
.y66{bottom:747.006667pt;}
.yf2{bottom:753.048000pt;}
.y11e{bottom:754.548000pt;}
.yd2{bottom:757.130667pt;}
.y95{bottom:757.348000pt;}
.y147{bottom:757.390667pt;}
.y10{bottom:758.472000pt;}
.y65{bottom:762.948000pt;}
.y3e{bottom:763.784000pt;}
.yf1{bottom:768.988000pt;}
.y11d{bottom:770.488000pt;}
.yf{bottom:771.754667pt;}
.yd1{bottom:773.070667pt;}
.y94{bottom:773.288000pt;}
.y146{bottom:777.185333pt;}
.y64{bottom:778.888000pt;}
.y3d{bottom:779.725333pt;}
.yf0{bottom:784.928000pt;}
.ye{bottom:785.038667pt;}
.y11c{bottom:786.428000pt;}
.yd0{bottom:789.010667pt;}
.y93{bottom:789.228000pt;}
.y3c{bottom:795.665333pt;}
.y145{bottom:796.326667pt;}
.yd{bottom:798.321333pt;}
.yef{bottom:800.869333pt;}
.y11b{bottom:802.368000pt;}
.ycf{bottom:804.950667pt;}
.y63{bottom:805.005333pt;}
.y92{bottom:805.669333pt;}
.yc{bottom:811.605333pt;}
.y144{bottom:812.266667pt;}
.yee{bottom:816.809333pt;}
.y11a{bottom:818.309333pt;}
.yce{bottom:820.890667pt;}
.y91{bottom:821.609333pt;}
.yb{bottom:824.889333pt;}
.y3b{bottom:827.545333pt;}
.y143{bottom:828.206667pt;}
.yed{bottom:832.749333pt;}
.y119{bottom:834.249333pt;}
.ycd{bottom:836.832000pt;}
.y90{bottom:837.549333pt;}
.ya{bottom:838.172000pt;}
.y3a{bottom:843.485333pt;}
.y142{bottom:844.146667pt;}
.y118{bottom:850.189333pt;}
.y9{bottom:851.456000pt;}
.ycc{bottom:852.772000pt;}
.y8f{bottom:853.489333pt;}
.y39{bottom:859.425333pt;}
.y141{bottom:860.088000pt;}
.y8{bottom:864.740000pt;}
.y8e{bottom:869.429333pt;}
.y38{bottom:875.366667pt;}
.y140{bottom:876.028000pt;}
.y117{bottom:877.801333pt;}
.y7{bottom:878.022667pt;}
.ycb{bottom:879.304000pt;}
.y8d{bottom:885.370667pt;}
.y6{bottom:891.306667pt;}
.y13f{bottom:891.968000pt;}
.y8c{bottom:901.310667pt;}
.yb7{bottom:903.846703pt;}
.y13e{bottom:907.908000pt;}
.y8b{bottom:917.250667pt;}
.y5{bottom:917.568000pt;}
.y13d{bottom:923.848000pt;}
.y8a{bottom:933.190667pt;}
.y4{bottom:934.006667pt;}
.y13c{bottom:939.789333pt;}
.y89{bottom:949.130667pt;}
.y3{bottom:950.641333pt;}
.y13b{bottom:955.729333pt;}
.y88{bottom:965.070667pt;}
.y13a{bottom:971.669333pt;}
.y87{bottom:981.012000pt;}
.y2{bottom:981.146667pt;}
.y139{bottom:987.609333pt;}
.y86{bottom:996.952000pt;}
.y138{bottom:1002.888000pt;}
.y85{bottom:1012.892000pt;}
.y1{bottom:1018.340000pt;}
.y137{bottom:1018.828000pt;}
.y84{bottom:1034.768000pt;}
.h17{height:21.933807pt;}
.hd{height:25.141908pt;}
.hf{height:25.541881pt;}
.hc{height:25.570658pt;}
.he{height:25.587808pt;}
.h13{height:25.587810pt;}
.h10{height:28.411842pt;}
.h14{height:28.430897pt;}
.h1a{height:29.159939pt;}
.h18{height:29.244954pt;}
.h1b{height:29.452954pt;}
.h19{height:29.458287pt;}
.ha{height:29.499997pt;}
.h9{height:33.187635pt;}
.h8{height:33.426739pt;}
.h12{height:34.117077pt;}
.h5{height:36.449833pt;}
.h6{height:36.556100pt;}
.h7{height:39.850400pt;}
.h4{height:40.211857pt;}
.h3{height:40.505190pt;}
.h15{height:44.869197pt;}
.h16{height:44.874530pt;}
.h11{height:65.314842pt;}
.h2{height:87.734861pt;}
.hb{height:136.486274pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:573.913596pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:8.695165pt;}
.x1a{left:13.344722pt;}
.x16{left:42.614064pt;}
.x15{left:47.233132pt;}
.xb{left:54.802667pt;}
.x3{left:58.581333pt;}
.xd{left:65.429333pt;}
.xa{left:68.086667pt;}
.x2{left:75.625333pt;}
.x11{left:88.144000pt;}
.x12{left:96.393333pt;}
.x13{left:110.136499pt;}
.x22{left:130.022189pt;}
.x1{left:133.090667pt;}
.x26{left:143.974667pt;}
.x7{left:151.705333pt;}
.xc{left:170.010667pt;}
.x17{left:176.765216pt;}
.x9{left:180.165333pt;}
.x4{left:190.846667pt;}
.x8{left:226.956000pt;}
.x20{left:232.107203pt;}
.x21{left:234.519486pt;}
.x18{left:267.987998pt;}
.x25{left:289.949556pt;}
.x24{left:295.787980pt;}
.x1c{left:325.956077pt;}
.x1d{left:336.502716pt;}
.x1e{left:348.966511pt;}
.x1b{left:386.345900pt;}
.xe{left:404.820000pt;}
.x2a{left:410.133333pt;}
.x27{left:415.446667pt;}
.xf{left:418.104000pt;}
.x2b{left:429.166667pt;}
.x1f{left:434.823248pt;}
.x19{left:446.293455pt;}
.x10{left:460.558667pt;}
.x2f{left:468.880000pt;}
.x5{left:473.160000pt;}
.x23{left:495.313222pt;}
.x28{left:520.917333pt;}
.x29{left:534.665333pt;}
.x2d{left:571.076000pt;}
.x6{left:572.856000pt;}
.x2e{left:632.645333pt;}
.x2c{left:647.926667pt;}
}




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