
    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_da6a252f4ca3348f208b61f2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_1e2b14934a0228b2156247cf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_941f45fbaaa14d3d54e58ace.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.806080px;}
.ls16{letter-spacing:-1.673280px;}
.ls17{letter-spacing:-1.494000px;}
.ls15{letter-spacing:-1.314720px;}
.ls37{letter-spacing:-1.226880px;}
.ls14{letter-spacing:-1.075680px;}
.ls2b{letter-spacing:-1.073520px;}
.ls35{letter-spacing:-0.971280px;}
.ls2a{letter-spacing:-0.920160px;}
.ls41{letter-spacing:-0.861120px;}
.ls36{letter-spacing:-0.817920px;}
.ls4{letter-spacing:-0.810000px;}
.ls29{letter-spacing:-0.728640px;}
.ls33{letter-spacing:-0.715680px;}
.ls5{letter-spacing:-0.702000px;}
.ls12{letter-spacing:-0.660960px;}
.ls21{letter-spacing:-0.596160px;}
.ls2f{letter-spacing:-0.562320px;}
.ls18{letter-spacing:-0.537840px;}
.ls1a{letter-spacing:-0.463680px;}
.ls2c{letter-spacing:-0.460080px;}
.ls3a{letter-spacing:-0.397440px;}
.ls6{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.358560px;}
.ls1b{letter-spacing:-0.357840px;}
.lsb{letter-spacing:-0.331200px;}
.lsc{letter-spacing:-0.289440px;}
.lsa{letter-spacing:-0.264960px;}
.ls25{letter-spacing:-0.255600px;}
.ls1f{letter-spacing:-0.241200px;}
.ls3d{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.204480px;}
.ls40{letter-spacing:-0.132480px;}
.ls8{letter-spacing:-0.059760px;}
.ls3{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.006624px;}
.ls11{letter-spacing:0.029520px;}
.lse{letter-spacing:0.048240px;}
.lsf{letter-spacing:0.119520px;}
.ls19{letter-spacing:0.132480px;}
.ls2{letter-spacing:0.153360px;}
.ls0{letter-spacing:0.162000px;}
.ls26{letter-spacing:0.204480px;}
.ls13{letter-spacing:0.241200px;}
.ls24{letter-spacing:0.255600px;}
.ls3f{letter-spacing:0.264960px;}
.ls10{letter-spacing:0.314640px;}
.ls20{letter-spacing:0.331200px;}
.ls22{letter-spacing:0.357840px;}
.ls1{letter-spacing:0.358560px;}
.ls7{letter-spacing:0.378000px;}
.lsd{letter-spacing:0.385920px;}
.ls34{letter-spacing:0.655776px;}
.ls1c{letter-spacing:0.717120px;}
.ls31{letter-spacing:0.920160px;}
.ls38{letter-spacing:1.198944px;}
.ls30{letter-spacing:1.278432px;}
.ls3c{letter-spacing:1.457280px;}
.ls32{letter-spacing:1.635840px;}
.ls2d{letter-spacing:1.828224px;}
.ls2e{letter-spacing:2.351520px;}
.ls28{letter-spacing:2.656224px;}
.ls1d{letter-spacing:2.669472px;}
.ls1e{letter-spacing:2.848320px;}
.ls27{letter-spacing:2.880000px;}
.ls3b{letter-spacing:6.491520px;}
.ls39{letter-spacing:7.220160px;}
.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;}
}
.ws84{word-spacing:-16.891200px;}
.ws22{word-spacing:-16.692480px;}
.ws8f{word-spacing:-16.566624px;}
.ws6f{word-spacing:-16.560000px;}
.ws90{word-spacing:-16.427520px;}
.ws8e{word-spacing:-16.295040px;}
.ws21{word-spacing:-16.228800px;}
.ws1f{word-spacing:-16.096320px;}
.wsa1{word-spacing:-15.963840px;}
.ws62{word-spacing:-15.831360px;}
.ws95{word-spacing:-15.698880px;}
.ws5{word-spacing:-15.298560px;}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.880240px;}
.ws3{word-spacing:-13.878000px;}
.ws2{word-spacing:-13.500000px;}
.ws1e{word-spacing:-13.266720px;}
.ws65{word-spacing:-13.137840px;}
.ws1{word-spacing:-13.122000px;}
.ws72{word-spacing:-12.780000px;}
.ws0{word-spacing:-12.690000px;}
.ws55{word-spacing:-12.422160px;}
.ws64{word-spacing:-12.319920px;}
.ws1d{word-spacing:-12.301200px;}
.ws8{word-spacing:-12.108240px;}
.ws71{word-spacing:-12.064320px;}
.ws1b{word-spacing:-12.060000px;}
.ws79{word-spacing:-11.962080px;}
.ws7b{word-spacing:-11.859840px;}
.ws3d{word-spacing:-11.818800px;}
.ws78{word-spacing:-11.808720px;}
.ws7{word-spacing:-11.770560px;}
.ws63{word-spacing:-11.706480px;}
.ws7a{word-spacing:-11.553120px;}
.ws20{word-spacing:-10.440000px;}
.ws1c{word-spacing:-9.720000px;}
.ws8b{word-spacing:-4.438080px;}
.ws57{word-spacing:-4.305600px;}
.ws89{word-spacing:-3.908160px;}
.ws44{word-spacing:-3.709440px;}
.ws45{word-spacing:-3.576960px;}
.ws1a{word-spacing:-3.525840px;}
.ws97{word-spacing:-3.245760px;}
.ws46{word-spacing:-3.179520px;}
.ws59{word-spacing:-3.067200px;}
.ws28{word-spacing:-3.047760px;}
.ws74{word-spacing:-2.980800px;}
.ws47{word-spacing:-2.848320px;}
.ws91{word-spacing:-2.517120px;}
.ws81{word-spacing:-2.450880px;}
.ws77{word-spacing:-2.351520px;}
.ws29{word-spacing:-2.330640px;}
.ws2f{word-spacing:-2.318400px;}
.ws30{word-spacing:-2.185920px;}
.wsa0{word-spacing:-2.053440px;}
.ws70{word-spacing:-1.854720px;}
.ws6b{word-spacing:-1.635840px;}
.ws18{word-spacing:-1.613520px;}
.ws43{word-spacing:-1.589760px;}
.ws4a{word-spacing:-1.457280px;}
.wsa2{word-spacing:-1.126080px;}
.ws7f{word-spacing:-1.059840px;}
.ws54{word-spacing:-0.920160px;}
.ws25{word-spacing:-0.896400px;}
.ws48{word-spacing:-0.861120px;}
.ws60{word-spacing:-0.766800px;}
.ws4b{word-spacing:-0.728640px;}
.ws7d{word-spacing:-0.715680px;}
.ws3f{word-spacing:-0.537840px;}
.ws9a{word-spacing:-0.397440px;}
.ws10{word-spacing:-0.385920px;}
.ws24{word-spacing:-0.378000px;}
.ws11{word-spacing:-0.358560px;}
.ws6a{word-spacing:-0.357840px;}
.ws7c{word-spacing:-0.331200px;}
.ws13{word-spacing:-0.216000px;}
.ws3c{word-spacing:-0.204480px;}
.ws17{word-spacing:-0.179280px;}
.ws53{word-spacing:-0.153360px;}
.ws35{word-spacing:-0.132480px;}
.ws9{word-spacing:0.000000px;}
.ws15{word-spacing:0.059760px;}
.ws9b{word-spacing:0.132480px;}
.wsa5{word-spacing:0.162000px;}
.ws40{word-spacing:0.179280px;}
.ws3e{word-spacing:0.192960px;}
.ws12{word-spacing:0.239040px;}
.wsd{word-spacing:0.264960px;}
.wsf{word-spacing:0.289440px;}
.wse{word-spacing:0.331200px;}
.ws5e{word-spacing:0.357840px;}
.wsc{word-spacing:0.358560px;}
.ws88{word-spacing:0.378000px;}
.ws8a{word-spacing:0.397440px;}
.ws52{word-spacing:0.408960px;}
.ws5f{word-spacing:0.460080px;}
.ws87{word-spacing:0.463680px;}
.ws19{word-spacing:0.537840px;}
.wsb{word-spacing:0.540000px;}
.ws3b{word-spacing:0.562320px;}
.ws37{word-spacing:0.596160px;}
.ws23{word-spacing:0.660960px;}
.wsa{word-spacing:0.702000px;}
.ws67{word-spacing:0.728640px;}
.ws2b{word-spacing:0.776880px;}
.ws92{word-spacing:1.059840px;}
.ws5c{word-spacing:1.278000px;}
.ws2e{word-spacing:1.324800px;}
.ws39{word-spacing:1.457280px;}
.ws2a{word-spacing:1.494000px;}
.wsa4{word-spacing:1.788480px;}
.ws16{word-spacing:1.972080px;}
.ws51{word-spacing:1.993680px;}
.ws33{word-spacing:2.053440px;}
.ws38{word-spacing:2.185920px;}
.ws5d{word-spacing:2.556000px;}
.ws5b{word-spacing:2.709360px;}
.ws49{word-spacing:2.782080px;}
.ws32{word-spacing:2.914560px;}
.ws98{word-spacing:3.245760px;}
.ws50{word-spacing:3.425040px;}
.ws36{word-spacing:3.444480px;}
.ws4d{word-spacing:3.510720px;}
.ws34{word-spacing:3.576960px;}
.ws6e{word-spacing:3.578400px;}
.wsa3{word-spacing:3.908160px;}
.ws26{word-spacing:4.123440px;}
.ws61{word-spacing:4.140720px;}
.ws41{word-spacing:4.173120px;}
.ws42{word-spacing:4.305600px;}
.ws27{word-spacing:4.362480px;}
.ws93{word-spacing:4.636800px;}
.ws86{word-spacing:4.703040px;}
.ws82{word-spacing:4.856400px;}
.ws58{word-spacing:4.901760px;}
.ws56{word-spacing:5.034240px;}
.ws5a{word-spacing:5.572080px;}
.ws66{word-spacing:5.630400px;}
.ws4f{word-spacing:5.762880px;}
.ws80{word-spacing:6.160320px;}
.ws31{word-spacing:6.359040px;}
.ws3a{word-spacing:6.491520px;}
.ws73{word-spacing:7.087680px;}
.ws2d{word-spacing:7.220160px;}
.ws14{word-spacing:7.470000px;}
.ws4c{word-spacing:7.816320px;}
.ws2c{word-spacing:7.948800px;}
.ws7e{word-spacing:8.478720px;}
.ws6c{word-spacing:8.485920px;}
.ws85{word-spacing:8.611200px;}
.ws6d{word-spacing:9.201600px;}
.ws8c{word-spacing:9.207360px;}
.ws8d{word-spacing:9.339840px;}
.ws4e{word-spacing:9.671040px;}
.ws68{word-spacing:10.664640px;}
.ws69{word-spacing:10.797120px;}
.ws99{word-spacing:11.128320px;}
.ws75{word-spacing:14.042880px;}
.ws76{word-spacing:14.374080px;}
.ws94{word-spacing:14.970240px;}
.ws9f{word-spacing:15.102720px;}
.ws9e{word-spacing:15.433920px;}
.ws83{word-spacing:19.342080px;}
.ws96{word-spacing:30.934080px;}
.ws9c{word-spacing:34.577280px;}
.ws9d{word-spacing:35.305920px;}
._7{margin-left:-5.034240px;}
._4{margin-left:-2.486520px;}
._0{margin-left:-1.355400px;}
._1{width:1.020600px;}
._2{width:2.988000px;}
._5{width:4.860360px;}
._3{width:9.339840px;}
._6{width:77.037120px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y187{bottom:14.040000px;}
.y185{bottom:14.220000px;}
.y24{bottom:16.025220px;}
.y23{bottom:50.940000px;}
.yf2{bottom:109.054980px;}
.y91{bottom:109.062720px;}
.ycb{bottom:109.063620px;}
.y142{bottom:109.073340px;}
.y6b{bottom:109.076220px;}
.y47{bottom:109.079100px;}
.y17e{bottom:109.080000px;}
.y1f1{bottom:110.695500px;}
.y1e8{bottom:116.735610px;}
.y1f6{bottom:117.891000px;}
.y20{bottom:122.931720px;}
.yf1{bottom:123.815880px;}
.y90{bottom:123.823620px;}
.yca{bottom:123.824520px;}
.y141{bottom:123.834240px;}
.y6a{bottom:123.837120px;}
.y46{bottom:123.840000px;}
.y17d{bottom:124.740000px;}
.y192{bottom:131.941440px;}
.y1ee{bottom:135.531000px;}
.y1e7{bottom:136.359210px;}
.y1f5{bottom:137.695500px;}
.yf0{bottom:138.397860px;}
.y8f{bottom:138.405600px;}
.yc9{bottom:138.406500px;}
.y140{bottom:138.416220px;}
.y69{bottom:138.419100px;}
.y112{bottom:138.420000px;}
.y45{bottom:139.320000px;}
.y1ad{bottom:149.905290px;}
.y1f{bottom:151.377480px;}
.y191{bottom:151.382880px;}
.yef{bottom:153.158760px;}
.y8e{bottom:153.166500px;}
.yc8{bottom:153.167400px;}
.y13f{bottom:153.177120px;}
.y68{bottom:153.180000px;}
.y1e6{bottom:155.800650px;}
.y1ce{bottom:158.882400px;}
.y160{bottom:160.369920px;}
.y17c{bottom:161.813520px;}
.y1ed{bottom:163.975500px;}
.yee{bottom:167.740740px;}
.y8d{bottom:167.748480px;}
.yc7{bottom:167.749380px;}
.y13e{bottom:167.759100px;}
.y111{bottom:167.760000px;}
.y67{bottom:168.660000px;}
.y1ac{bottom:169.346730px;}
.y190{bottom:171.006480px;}
.y1e5{bottom:175.242090px;}
.y1cd{bottom:178.323840px;}
.y15f{bottom:179.811360px;}
.y1e{bottom:179.823240px;}
.y17b{bottom:181.437120px;}
.yed{bottom:182.501640px;}
.y8c{bottom:182.509380px;}
.yc6{bottom:182.510280px;}
.y110{bottom:182.520000px;}
.y44{bottom:182.877120px;}
.y1ab{bottom:188.788170px;}
.y1ec{bottom:192.420000px;}
.y1e4{bottom:194.865690px;}
.yec{bottom:197.083620px;}
.y8b{bottom:197.091360px;}
.yc5{bottom:197.092260px;}
.y10f{bottom:197.098020px;}
.y1cc{bottom:197.765280px;}
.y13d{bottom:198.000000px;}
.y15e{bottom:199.434960px;}
.y18f{bottom:199.440000px;}
.y17a{bottom:200.878560px;}
.y43{bottom:202.318560px;}
.y12e{bottom:206.803440px;}
.y1aa{bottom:208.411770px;}
.y1d{bottom:208.448280px;}
.y201{bottom:209.877840px;}
.yeb{bottom:211.665600px;}
.y8a{bottom:211.673340px;}
.yc4{bottom:211.674240px;}
.y10e{bottom:211.680000px;}
.y1e3{bottom:214.307130px;}
.y1cb{bottom:217.388880px;}
.y15d{bottom:218.876400px;}
.y1eb{bottom:221.040000px;}
.y42{bottom:221.942160px;}
.yea{bottom:226.426500px;}
.y12d{bottom:226.427040px;}
.y89{bottom:226.434240px;}
.yc3{bottom:226.435140px;}
.y10d{bottom:227.340000px;}
.y1a9{bottom:227.853210px;}
.y18e{bottom:227.875500px;}
.y200{bottom:229.501440px;}
.y1e2{bottom:233.748570px;}
.y1ca{bottom:236.830320px;}
.y1c{bottom:236.894040px;}
.y15c{bottom:238.317840px;}
.y179{bottom:238.320720px;}
.ye9{bottom:241.008480px;}
.y88{bottom:241.016220px;}
.yc2{bottom:241.017120px;}
.y41{bottom:241.383600px;}
.y12c{bottom:245.868480px;}
.y1a8{bottom:247.294650px;}
.y18d{bottom:247.680000px;}
.y1ff{bottom:248.942880px;}
.y1ea{bottom:249.484500px;}
.y1e1{bottom:253.372170px;}
.ye8{bottom:255.769380px;}
.y87{bottom:255.777120px;}
.yc1{bottom:255.778020px;}
.y1c9{bottom:256.271760px;}
.y1b{bottom:256.330980px;}
.y15b{bottom:257.941440px;}
.y66{bottom:257.942160px;}
.y10c{bottom:260.818560px;}
.y40{bottom:260.825040px;}
.y12b{bottom:265.309920px;}
.y1a7{bottom:266.918250px;}
.y178{bottom:266.936400px;}
.y1fe{bottom:268.384320px;}
.y1e9{bottom:269.100000px;}
.ye7{bottom:270.351360px;}
.y86{bottom:270.359100px;}
.yc0{bottom:270.360000px;}
.y1e0{bottom:272.813610px;}
.y18c{bottom:272.880000px;}
.y13c{bottom:274.270890px;}
.y1c8{bottom:275.895360px;}
.y1a{bottom:275.947200px;}
.y15a{bottom:277.382880px;}
.y65{bottom:277.383600px;}
.y10b{bottom:280.442160px;}
.y3f{bottom:280.448640px;}
.y12a{bottom:284.933520px;}
.ye6{bottom:285.112260px;}
.y85{bottom:285.120000px;}
.ybf{bottom:286.020000px;}
.y1a6{bottom:286.359690px;}
.y1fd{bottom:288.007920px;}
.y1df{bottom:292.255050px;}
.y13b{bottom:293.894490px;}
.y1c7{bottom:295.336800px;}
.y177{bottom:295.369920px;}
.y19{bottom:295.384140px;}
.y64{bottom:296.825040px;}
.ye5{bottom:299.694240px;}
.y10a{bottom:299.883600px;}
.y84{bottom:300.600000px;}
.y18b{bottom:303.300000px;}
.y129{bottom:304.374960px;}
.y1a5{bottom:305.801130px;}
.y159{bottom:305.816400px;}
.y1fc{bottom:307.449360px;}
.y3e{bottom:308.882160px;}
.y1de{bottom:311.878650px;}
.y13a{bottom:313.335930px;}
.ye4{bottom:314.455140px;}
.y1c6{bottom:314.778240px;}
.y176{bottom:314.811360px;}
.y18{bottom:314.821080px;}
.ybe{bottom:317.882160px;}
.y158{bottom:325.415520px;}
.y1a4{bottom:325.424730px;}
.yab{bottom:325.434960px;}
.y1fb{bottom:326.890800px;}
.y3d{bottom:328.323600px;}
.ye3{bottom:329.037120px;}
.y1dd{bottom:331.320090px;}
.y139{bottom:332.777370px;}
.y128{bottom:332.808480px;}
.y18a{bottom:333.900000px;}
.y1c5{bottom:334.401840px;}
.y175{bottom:334.434960px;}
.y17{bottom:334.437300px;}
.y63{bottom:334.449360px;}
.y83{bottom:335.886480px;}
.ybd{bottom:337.323600px;}
.y109{bottom:337.325760px;}
.ye2{bottom:343.798020px;}
.y157{bottom:344.856960px;}
.y1a3{bottom:344.866170px;}
.yaa{bottom:344.876400px;}
.y3c{bottom:347.947200px;}
.y1dc{bottom:350.761530px;}
.y138{bottom:352.400970px;}
.y127{bottom:352.432080px;}
.y1c4{bottom:353.843280px;}
.y16{bottom:353.874240px;}
.y174{bottom:353.876400px;}
.y62{bottom:353.890800px;}
.y1fa{bottom:355.506480px;}
.ybc{bottom:356.947200px;}
.ye1{bottom:358.380000px;}
.y156{bottom:364.298400px;}
.y82{bottom:364.314240px;}
.ya9{bottom:364.317840px;}
.y189{bottom:364.500000px;}
.y108{bottom:365.941440px;}
.y3b{bottom:367.388640px;}
.y1db{bottom:370.385130px;}
.y137{bottom:371.842410px;}
.y126{bottom:371.873520px;}
.y1c3{bottom:373.284720px;}
.y1a2{bottom:373.299690px;}
.y173{bottom:373.317840px;}
.ye0{bottom:373.860000px;}
.y15{bottom:382.314960px;}
.y61{bottom:382.324320px;}
.y155{bottom:383.922000px;}
.y81{bottom:383.937840px;}
.y1f9{bottom:383.940000px;}
.ya8{bottom:383.941440px;}
.ybb{bottom:385.380720px;}
.y1da{bottom:389.826570px;}
.y125{bottom:391.314960px;}
.y1c2{bottom:392.908320px;}
.y1a1{bottom:392.923290px;}
.y172{bottom:392.941440px;}
.y107{bottom:394.374960px;}
.y188{bottom:394.920000px;}
.y136{bottom:400.275930px;}
.y154{bottom:403.363440px;}
.y80{bottom:403.379280px;}
.ya7{bottom:403.382880px;}
.yba{bottom:404.822160px;}
.y3a{bottom:404.830800px;}
.y1d9{bottom:409.268010px;}
.y60{bottom:410.915520px;}
.y124{bottom:410.938560px;}
.y14{bottom:410.940000px;}
.y1c1{bottom:412.349760px;}
.y1a0{bottom:412.364730px;}
.y1f8{bottom:412.375500px;}
.y106{bottom:413.816400px;}
.y135{bottom:419.899530px;}
.y171{bottom:421.374960px;}
.ydf{bottom:421.377840px;}
.y153{bottom:422.804880px;}
.y7f{bottom:422.820720px;}
.yb9{bottom:424.445760px;}
.y186{bottom:425.520000px;}
.y1d8{bottom:428.891610px;}
.y5f{bottom:430.356960px;}
.y123{bottom:430.380000px;}
.y1c0{bottom:431.791200px;}
.y19f{bottom:431.806170px;}
.ya6{bottom:431.816400px;}
.y1f7{bottom:432.180000px;}
.y105{bottom:433.441440px;}
.y39{bottom:433.446480px;}
.y134{bottom:439.340970px;}
.y13{bottom:439.380000px;}
.y183{bottom:439.904010px;}
.y170{bottom:440.816400px;}
.yde{bottom:440.819280px;}
.y152{bottom:442.428480px;}
.y7e{bottom:442.444320px;}
.yb8{bottom:443.887200px;}
.y1d7{bottom:448.333050px;}
.y5e{bottom:449.798400px;}
.y122{bottom:449.821440px;}
.y1bf{bottom:451.414800px;}
.y19e{bottom:451.429770px;}
.ya5{bottom:451.430640px;}
.y104{bottom:452.882880px;}
.y184{bottom:455.940000px;}
.y133{bottom:458.782410px;}
.y12{bottom:458.829900px;}
.y182{bottom:459.527610px;}
.y16f{bottom:460.440000px;}
.ydd{bottom:460.442880px;}
.y38{bottom:461.868480px;}
.y151{bottom:461.869920px;}
.y1d6{bottom:467.774490px;}
.y5d{bottom:469.422000px;}
.y121{bottom:469.445040px;}
.y1be{bottom:470.856240px;}
.ya4{bottom:470.872080px;}
.y7d{bottom:470.877840px;}
.y103{bottom:472.324320px;}
.y132{bottom:478.406010px;}
.y11{bottom:478.446120px;}
.y19d{bottom:479.863290px;}
.y16e{bottom:479.881440px;}
.ydc{bottom:479.884320px;}
.y37{bottom:481.309920px;}
.y150{bottom:481.311360px;}
.yb7{bottom:481.329360px;}
.y1d5{bottom:487.398090px;}
.y5c{bottom:488.863440px;}
.y120{bottom:488.886480px;}
.y1bd{bottom:490.297680px;}
.ya3{bottom:490.313520px;}
.y7c{bottom:490.319280px;}
.y131{bottom:497.847450px;}
.y10{bottom:497.883060px;}
.y181{bottom:499.304730px;}
.y16d{bottom:499.322880px;}
.y36{bottom:500.933520px;}
.y14f{bottom:500.934960px;}
.y102{bottom:500.938560px;}
.y1f4{bottom:500.940000px;}
.yb6{bottom:500.952960px;}
.y1d4{bottom:506.839530px;}
.y5b{bottom:508.304880px;}
.ydb{bottom:508.317840px;}
.y1bc{bottom:509.921280px;}
.ya2{bottom:509.937120px;}
.y7b{bottom:509.942880px;}
.y11f{bottom:517.288890px;}
.yf{bottom:517.326840px;}
.y1f0{bottom:517.855500px;}
.y19c{bottom:518.928330px;}
.y16c{bottom:518.946480px;}
.y101{bottom:520.368480px;}
.y35{bottom:520.374960px;}
.y14e{bottom:520.376400px;}
.y1d3{bottom:526.280970px;}
.y180{bottom:527.920410px;}
.y5a{bottom:527.928480px;}
.yda{bottom:527.941440px;}
.y1bb{bottom:529.362720px;}
.ya1{bottom:529.378560px;}
.y7a{bottom:529.384320px;}
.y1f3{bottom:529.384500px;}
.yb5{bottom:529.386480px;}
.y11e{bottom:536.912490px;}
.ye{bottom:536.943060px;}
.y1ef{bottom:537.660000px;}
.y19b{bottom:538.369770px;}
.y100{bottom:539.809920px;}
.y34{bottom:539.816400px;}
.y14d{bottom:539.817840px;}
.y1d2{bottom:545.904570px;}
.y16b{bottom:547.361850px;}
.y59{bottom:547.369920px;}
.yd9{bottom:547.382880px;}
.y1ba{bottom:548.804160px;}
.ya0{bottom:548.821440px;}
.y1f2{bottom:549.000000px;}
.y11d{bottom:556.353930px;}
.yd{bottom:556.380000px;}
.y19a{bottom:557.811210px;}
.y79{bottom:557.817840px;}
.yff{bottom:559.433520px;}
.y33{bottom:559.440000px;}
.y14c{bottom:559.441440px;}
.y1d1{bottom:565.346010px;}
.y16a{bottom:566.803290px;}
.y58{bottom:566.811360px;}
.yd8{bottom:566.824320px;}
.y1b9{bottom:568.427760px;}
.y9f{bottom:568.445040px;}
.y11c{bottom:575.795370px;}
.yc{bottom:575.807760px;}
.y199{bottom:577.434810px;}
.y78{bottom:577.441440px;}
.yfe{bottom:578.874960px;}
.y32{bottom:578.881440px;}
.y14b{bottom:578.882880px;}
.y1d0{bottom:584.787450px;}
.y169{bottom:586.426890px;}
.y57{bottom:586.434960px;}
.y1b8{bottom:587.869200px;}
.y9e{bottom:587.886480px;}
.y11b{bottom:595.418970px;}
.yb{bottom:595.431360px;}
.yd7{bottom:595.440000px;}
.y198{bottom:596.876250px;}
.y77{bottom:596.882880px;}
.yfd{bottom:598.316400px;}
.y31{bottom:598.322880px;}
.y14a{bottom:598.324320px;}
.y1cf{bottom:604.411050px;}
.y168{bottom:605.868330px;}
.yb4{bottom:605.874960px;}
.y56{bottom:605.876400px;}
.y1b7{bottom:607.310640px;}
.y130{bottom:614.860410px;}
.ya{bottom:614.872800px;}
.yd6{bottom:614.881440px;}
.y9d{bottom:616.311360px;}
.y197{bottom:616.317690px;}
.y76{bottom:616.324320px;}
.yfc{bottom:617.940000px;}
.y30{bottom:617.946480px;}
.y11a{bottom:623.852490px;}
.y167{bottom:625.309770px;}
.yb3{bottom:625.316400px;}
.y55{bottom:625.317840px;}
.y149{bottom:626.932650px;}
.y1b6{bottom:626.934240px;}
.y12f{bottom:634.301850px;}
.yd5{bottom:634.322880px;}
.y9{bottom:634.496400px;}
.y9c{bottom:635.934960px;}
.y196{bottom:635.941290px;}
.y119{bottom:643.293930px;}
.y166{bottom:644.933370px;}
.y75{bottom:644.934960px;}
.yb2{bottom:644.940000px;}
.yfb{bottom:646.373520px;}
.y148{bottom:646.374090px;}
.y1b5{bottom:646.375680px;}
.y2f{bottom:646.380000px;}
.y54{bottom:653.933520px;}
.yd4{bottom:653.946480px;}
.y9b{bottom:655.376400px;}
.y118{bottom:662.917530px;}
.y8{bottom:662.929920px;}
.y165{bottom:664.374810px;}
.y74{bottom:664.376400px;}
.yb1{bottom:664.381440px;}
.yfa{bottom:665.814960px;}
.y147{bottom:665.815530px;}
.y1b4{bottom:665.817120px;}
.y53{bottom:673.374960px;}
.y9a{bottom:674.817840px;}
.y2e{bottom:674.820000px;}
.y117{bottom:682.358970px;}
.yd3{bottom:682.362000px;}
.y7{bottom:682.371360px;}
.y17f{bottom:683.816250px;}
.y73{bottom:683.817840px;}
.yb0{bottom:683.822880px;}
.yf9{bottom:685.438560px;}
.y146{bottom:685.439130px;}
.y1b3{bottom:685.440720px;}
.y164{bottom:692.808330px;}
.y52{bottom:692.816400px;}
.y99{bottom:694.441440px;}
.y116{bottom:701.800410px;}
.yd2{bottom:701.803440px;}
.y6{bottom:701.812800px;}
.y195{bottom:703.439850px;}
.y72{bottom:703.441440px;}
.y2d{bottom:703.448130px;}
.yf8{bottom:704.880570px;}
.y1b2{bottom:704.882160px;}
.y163{bottom:712.431930px;}
.yaf{bottom:712.438560px;}
.y51{bottom:712.440000px;}
.y98{bottom:713.882880px;}
.y115{bottom:721.424010px;}
.yd1{bottom:721.427040px;}
.y5{bottom:721.436400px;}
.y194{bottom:722.881290px;}
.y71{bottom:722.882880px;}
.yf7{bottom:724.322010px;}
.y1b1{bottom:724.323600px;}
.yae{bottom:731.873370px;}
.y50{bottom:731.881440px;}
.y2c{bottom:731.893890px;}
.y97{bottom:733.324320px;}
.y114{bottom:740.865450px;}
.yd0{bottom:740.868480px;}
.y4{bottom:741.060000px;}
.y193{bottom:742.322730px;}
.yf6{bottom:743.945610px;}
.y1b0{bottom:743.947200px;}
.yad{bottom:751.314810px;}
.y70{bottom:751.316400px;}
.y2b{bottom:751.330830px;}
.y113{bottom:760.306890px;}
.ycf{bottom:760.309920px;}
.y4f{bottom:760.314960px;}
.y96{bottom:761.929770px;}
.y145{bottom:761.946330px;}
.yf5{bottom:763.387050px;}
.y1af{bottom:763.388640px;}
.y162{bottom:770.938410px;}
.y6f{bottom:770.940000px;}
.y2a{bottom:770.947050px;}
.yac{bottom:779.930490px;}
.yce{bottom:779.933520px;}
.y4e{bottom:779.938560px;}
.y95{bottom:781.371210px;}
.y144{bottom:781.387770px;}
.y161{bottom:790.379850px;}
.y6e{bottom:790.381440px;}
.y29{bottom:790.383990px;}
.y4d{bottom:799.371930px;}
.ycd{bottom:799.374960px;}
.y94{bottom:800.812650px;}
.yf4{bottom:800.829210px;}
.y1ae{bottom:800.830800px;}
.y28{bottom:809.820930px;}
.y143{bottom:809.821290px;}
.y6d{bottom:809.822880px;}
.y4c{bottom:818.813370px;}
.ycc{bottom:818.816400px;}
.y93{bottom:820.436250px;}
.y27{bottom:829.437150px;}
.yf3{bottom:829.444890px;}
.y6c{bottom:829.446480px;}
.y4b{bottom:838.436970px;}
.y92{bottom:839.877690px;}
.y26{bottom:848.874090px;}
.y4a{bottom:857.878410px;}
.y3{bottom:868.314240px;}
.y49{bottom:877.319850px;}
.y25{bottom:877.331160px;}
.y48{bottom:908.633700px;}
.y22{bottom:908.639850px;}
.y2{bottom:911.695500px;}
.y21{bottom:925.740000px;}
.y1{bottom:927.180000px;}
.h25{height:29.700000px;}
.h26{height:29.880000px;}
.h24{height:29.881500px;}
.hc{height:44.854805px;}
.hf{height:44.979609px;}
.h1d{height:45.403945px;}
.h7{height:47.381836px;}
.h2{height:47.513672px;}
.h4{height:52.435898px;}
.h3{height:52.453898px;}
.h8{height:52.456058px;}
.h6{height:52.581797px;}
.ha{height:58.089199px;}
.h9{height:58.121719px;}
.h1f{height:58.283437px;}
.h5{height:58.833281px;}
.h19{height:60.393313px;}
.h15{height:60.396193px;}
.h1e{height:60.399673px;}
.h1c{height:60.401953px;}
.h10{height:60.407713px;}
.h18{height:60.410593px;}
.h1a{height:60.414073px;}
.h11{height:60.422113px;}
.h12{height:60.424993px;}
.h17{height:60.428473px;}
.h22{height:60.431353px;}
.hd{height:60.433633px;}
.h14{height:60.436513px;}
.h16{height:60.439393px;}
.h13{height:60.442873px;}
.hb{height:60.448033px;}
.h21{height:60.468193px;}
.h1b{height:60.473953px;}
.h23{height:60.474553px;}
.he{height:60.499873px;}
.h20{height:60.526393px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w7{width:71.460000px;}
.w5{width:71.461500px;}
.w4{width:74.701500px;}
.w6{width:74.880000px;}
.w3{width:147.060000px;}
.w2{width:147.061500px;}
.w8{width:221.760000px;}
.w9{width:517.320000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x1{left:97.740000px;}
.x8{left:99.714240px;}
.x18{left:101.520000px;}
.x4{left:102.960000px;}
.x5{left:105.659280px;}
.x16{left:109.440000px;}
.x1d{left:112.320000px;}
.x3{left:115.380000px;}
.x9{left:122.567040px;}
.xd{left:127.440000px;}
.x1a{left:140.575500px;}
.xa{left:144.343440px;}
.xe{left:163.080000px;}
.x15{left:191.164500px;}
.x6{left:196.374960px;}
.x20{left:224.100720px;}
.x1b{left:243.004500px;}
.x17{left:245.520000px;}
.x19{left:277.735500px;}
.x1c{left:291.064500px;}
.xf{left:313.740000px;}
.x10{left:320.940000px;}
.x2{left:354.064140px;}
.x7{left:357.106320px;}
.x13{left:396.540000px;}
.xb{left:427.316400px;}
.x1e{left:432.359280px;}
.x21{left:466.207920px;}
.x12{left:468.720000px;}
.xc{left:479.873700px;}
.x22{left:519.282720px;}
.x14{left:544.320000px;}
.x1f{left:616.506480px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.160960pt;}
.ls16{letter-spacing:-1.487360pt;}
.ls17{letter-spacing:-1.328000pt;}
.ls15{letter-spacing:-1.168640pt;}
.ls37{letter-spacing:-1.090560pt;}
.ls14{letter-spacing:-0.956160pt;}
.ls2b{letter-spacing:-0.954240pt;}
.ls35{letter-spacing:-0.863360pt;}
.ls2a{letter-spacing:-0.817920pt;}
.ls41{letter-spacing:-0.765440pt;}
.ls36{letter-spacing:-0.727040pt;}
.ls4{letter-spacing:-0.720000pt;}
.ls29{letter-spacing:-0.647680pt;}
.ls33{letter-spacing:-0.636160pt;}
.ls5{letter-spacing:-0.624000pt;}
.ls12{letter-spacing:-0.587520pt;}
.ls21{letter-spacing:-0.529920pt;}
.ls2f{letter-spacing:-0.499840pt;}
.ls18{letter-spacing:-0.478080pt;}
.ls1a{letter-spacing:-0.412160pt;}
.ls2c{letter-spacing:-0.408960pt;}
.ls3a{letter-spacing:-0.353280pt;}
.ls6{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.318720pt;}
.ls1b{letter-spacing:-0.318080pt;}
.lsb{letter-spacing:-0.294400pt;}
.lsc{letter-spacing:-0.257280pt;}
.lsa{letter-spacing:-0.235520pt;}
.ls25{letter-spacing:-0.227200pt;}
.ls1f{letter-spacing:-0.214400pt;}
.ls3d{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.181760pt;}
.ls40{letter-spacing:-0.117760pt;}
.ls8{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.005888pt;}
.ls11{letter-spacing:0.026240pt;}
.lse{letter-spacing:0.042880pt;}
.lsf{letter-spacing:0.106240pt;}
.ls19{letter-spacing:0.117760pt;}
.ls2{letter-spacing:0.136320pt;}
.ls0{letter-spacing:0.144000pt;}
.ls26{letter-spacing:0.181760pt;}
.ls13{letter-spacing:0.214400pt;}
.ls24{letter-spacing:0.227200pt;}
.ls3f{letter-spacing:0.235520pt;}
.ls10{letter-spacing:0.279680pt;}
.ls20{letter-spacing:0.294400pt;}
.ls22{letter-spacing:0.318080pt;}
.ls1{letter-spacing:0.318720pt;}
.ls7{letter-spacing:0.336000pt;}
.lsd{letter-spacing:0.343040pt;}
.ls34{letter-spacing:0.582912pt;}
.ls1c{letter-spacing:0.637440pt;}
.ls31{letter-spacing:0.817920pt;}
.ls38{letter-spacing:1.065728pt;}
.ls30{letter-spacing:1.136384pt;}
.ls3c{letter-spacing:1.295360pt;}
.ls32{letter-spacing:1.454080pt;}
.ls2d{letter-spacing:1.625088pt;}
.ls2e{letter-spacing:2.090240pt;}
.ls28{letter-spacing:2.361088pt;}
.ls1d{letter-spacing:2.372864pt;}
.ls1e{letter-spacing:2.531840pt;}
.ls27{letter-spacing:2.560000pt;}
.ls3b{letter-spacing:5.770240pt;}
.ls39{letter-spacing:6.417920pt;}
.ws84{word-spacing:-15.014400pt;}
.ws22{word-spacing:-14.837760pt;}
.ws8f{word-spacing:-14.725888pt;}
.ws6f{word-spacing:-14.720000pt;}
.ws90{word-spacing:-14.602240pt;}
.ws8e{word-spacing:-14.484480pt;}
.ws21{word-spacing:-14.425600pt;}
.ws1f{word-spacing:-14.307840pt;}
.wsa1{word-spacing:-14.190080pt;}
.ws62{word-spacing:-14.072320pt;}
.ws95{word-spacing:-13.954560pt;}
.ws5{word-spacing:-13.598720pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.226880pt;}
.ws3{word-spacing:-12.336000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1e{word-spacing:-11.792640pt;}
.ws65{word-spacing:-11.678080pt;}
.ws1{word-spacing:-11.664000pt;}
.ws72{word-spacing:-11.360000pt;}
.ws0{word-spacing:-11.280000pt;}
.ws55{word-spacing:-11.041920pt;}
.ws64{word-spacing:-10.951040pt;}
.ws1d{word-spacing:-10.934400pt;}
.ws8{word-spacing:-10.762880pt;}
.ws71{word-spacing:-10.723840pt;}
.ws1b{word-spacing:-10.720000pt;}
.ws79{word-spacing:-10.632960pt;}
.ws7b{word-spacing:-10.542080pt;}
.ws3d{word-spacing:-10.505600pt;}
.ws78{word-spacing:-10.496640pt;}
.ws7{word-spacing:-10.462720pt;}
.ws63{word-spacing:-10.405760pt;}
.ws7a{word-spacing:-10.269440pt;}
.ws20{word-spacing:-9.280000pt;}
.ws1c{word-spacing:-8.640000pt;}
.ws8b{word-spacing:-3.944960pt;}
.ws57{word-spacing:-3.827200pt;}
.ws89{word-spacing:-3.473920pt;}
.ws44{word-spacing:-3.297280pt;}
.ws45{word-spacing:-3.179520pt;}
.ws1a{word-spacing:-3.134080pt;}
.ws97{word-spacing:-2.885120pt;}
.ws46{word-spacing:-2.826240pt;}
.ws59{word-spacing:-2.726400pt;}
.ws28{word-spacing:-2.709120pt;}
.ws74{word-spacing:-2.649600pt;}
.ws47{word-spacing:-2.531840pt;}
.ws91{word-spacing:-2.237440pt;}
.ws81{word-spacing:-2.178560pt;}
.ws77{word-spacing:-2.090240pt;}
.ws29{word-spacing:-2.071680pt;}
.ws2f{word-spacing:-2.060800pt;}
.ws30{word-spacing:-1.943040pt;}
.wsa0{word-spacing:-1.825280pt;}
.ws70{word-spacing:-1.648640pt;}
.ws6b{word-spacing:-1.454080pt;}
.ws18{word-spacing:-1.434240pt;}
.ws43{word-spacing:-1.413120pt;}
.ws4a{word-spacing:-1.295360pt;}
.wsa2{word-spacing:-1.000960pt;}
.ws7f{word-spacing:-0.942080pt;}
.ws54{word-spacing:-0.817920pt;}
.ws25{word-spacing:-0.796800pt;}
.ws48{word-spacing:-0.765440pt;}
.ws60{word-spacing:-0.681600pt;}
.ws4b{word-spacing:-0.647680pt;}
.ws7d{word-spacing:-0.636160pt;}
.ws3f{word-spacing:-0.478080pt;}
.ws9a{word-spacing:-0.353280pt;}
.ws10{word-spacing:-0.343040pt;}
.ws24{word-spacing:-0.336000pt;}
.ws11{word-spacing:-0.318720pt;}
.ws6a{word-spacing:-0.318080pt;}
.ws7c{word-spacing:-0.294400pt;}
.ws13{word-spacing:-0.192000pt;}
.ws3c{word-spacing:-0.181760pt;}
.ws17{word-spacing:-0.159360pt;}
.ws53{word-spacing:-0.136320pt;}
.ws35{word-spacing:-0.117760pt;}
.ws9{word-spacing:0.000000pt;}
.ws15{word-spacing:0.053120pt;}
.ws9b{word-spacing:0.117760pt;}
.wsa5{word-spacing:0.144000pt;}
.ws40{word-spacing:0.159360pt;}
.ws3e{word-spacing:0.171520pt;}
.ws12{word-spacing:0.212480pt;}
.wsd{word-spacing:0.235520pt;}
.wsf{word-spacing:0.257280pt;}
.wse{word-spacing:0.294400pt;}
.ws5e{word-spacing:0.318080pt;}
.wsc{word-spacing:0.318720pt;}
.ws88{word-spacing:0.336000pt;}
.ws8a{word-spacing:0.353280pt;}
.ws52{word-spacing:0.363520pt;}
.ws5f{word-spacing:0.408960pt;}
.ws87{word-spacing:0.412160pt;}
.ws19{word-spacing:0.478080pt;}
.wsb{word-spacing:0.480000pt;}
.ws3b{word-spacing:0.499840pt;}
.ws37{word-spacing:0.529920pt;}
.ws23{word-spacing:0.587520pt;}
.wsa{word-spacing:0.624000pt;}
.ws67{word-spacing:0.647680pt;}
.ws2b{word-spacing:0.690560pt;}
.ws92{word-spacing:0.942080pt;}
.ws5c{word-spacing:1.136000pt;}
.ws2e{word-spacing:1.177600pt;}
.ws39{word-spacing:1.295360pt;}
.ws2a{word-spacing:1.328000pt;}
.wsa4{word-spacing:1.589760pt;}
.ws16{word-spacing:1.752960pt;}
.ws51{word-spacing:1.772160pt;}
.ws33{word-spacing:1.825280pt;}
.ws38{word-spacing:1.943040pt;}
.ws5d{word-spacing:2.272000pt;}
.ws5b{word-spacing:2.408320pt;}
.ws49{word-spacing:2.472960pt;}
.ws32{word-spacing:2.590720pt;}
.ws98{word-spacing:2.885120pt;}
.ws50{word-spacing:3.044480pt;}
.ws36{word-spacing:3.061760pt;}
.ws4d{word-spacing:3.120640pt;}
.ws34{word-spacing:3.179520pt;}
.ws6e{word-spacing:3.180800pt;}
.wsa3{word-spacing:3.473920pt;}
.ws26{word-spacing:3.665280pt;}
.ws61{word-spacing:3.680640pt;}
.ws41{word-spacing:3.709440pt;}
.ws42{word-spacing:3.827200pt;}
.ws27{word-spacing:3.877760pt;}
.ws93{word-spacing:4.121600pt;}
.ws86{word-spacing:4.180480pt;}
.ws82{word-spacing:4.316800pt;}
.ws58{word-spacing:4.357120pt;}
.ws56{word-spacing:4.474880pt;}
.ws5a{word-spacing:4.952960pt;}
.ws66{word-spacing:5.004800pt;}
.ws4f{word-spacing:5.122560pt;}
.ws80{word-spacing:5.475840pt;}
.ws31{word-spacing:5.652480pt;}
.ws3a{word-spacing:5.770240pt;}
.ws73{word-spacing:6.300160pt;}
.ws2d{word-spacing:6.417920pt;}
.ws14{word-spacing:6.640000pt;}
.ws4c{word-spacing:6.947840pt;}
.ws2c{word-spacing:7.065600pt;}
.ws7e{word-spacing:7.536640pt;}
.ws6c{word-spacing:7.543040pt;}
.ws85{word-spacing:7.654400pt;}
.ws6d{word-spacing:8.179200pt;}
.ws8c{word-spacing:8.184320pt;}
.ws8d{word-spacing:8.302080pt;}
.ws4e{word-spacing:8.596480pt;}
.ws68{word-spacing:9.479680pt;}
.ws69{word-spacing:9.597440pt;}
.ws99{word-spacing:9.891840pt;}
.ws75{word-spacing:12.482560pt;}
.ws76{word-spacing:12.776960pt;}
.ws94{word-spacing:13.306880pt;}
.ws9f{word-spacing:13.424640pt;}
.ws9e{word-spacing:13.719040pt;}
.ws83{word-spacing:17.192960pt;}
.ws96{word-spacing:27.496960pt;}
.ws9c{word-spacing:30.735360pt;}
.ws9d{word-spacing:31.383040pt;}
._7{margin-left:-4.474880pt;}
._4{margin-left:-2.210240pt;}
._0{margin-left:-1.204800pt;}
._1{width:0.907200pt;}
._2{width:2.656000pt;}
._5{width:4.320320pt;}
._3{width:8.302080pt;}
._6{width:68.477440pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y187{bottom:12.480000pt;}
.y185{bottom:12.640000pt;}
.y24{bottom:14.244640pt;}
.y23{bottom:45.280000pt;}
.yf2{bottom:96.937760pt;}
.y91{bottom:96.944640pt;}
.ycb{bottom:96.945440pt;}
.y142{bottom:96.954080pt;}
.y6b{bottom:96.956640pt;}
.y47{bottom:96.959200pt;}
.y17e{bottom:96.960000pt;}
.y1f1{bottom:98.396000pt;}
.y1e8{bottom:103.764987pt;}
.y1f6{bottom:104.792000pt;}
.y20{bottom:109.272640pt;}
.yf1{bottom:110.058560pt;}
.y90{bottom:110.065440pt;}
.yca{bottom:110.066240pt;}
.y141{bottom:110.074880pt;}
.y6a{bottom:110.077440pt;}
.y46{bottom:110.080000pt;}
.y17d{bottom:110.880000pt;}
.y192{bottom:117.281280pt;}
.y1ee{bottom:120.472000pt;}
.y1e7{bottom:121.208187pt;}
.y1f5{bottom:122.396000pt;}
.yf0{bottom:123.020320pt;}
.y8f{bottom:123.027200pt;}
.yc9{bottom:123.028000pt;}
.y140{bottom:123.036640pt;}
.y69{bottom:123.039200pt;}
.y112{bottom:123.040000pt;}
.y45{bottom:123.840000pt;}
.y1ad{bottom:133.249147pt;}
.y1f{bottom:134.557760pt;}
.y191{bottom:134.562560pt;}
.yef{bottom:136.141120pt;}
.y8e{bottom:136.148000pt;}
.yc8{bottom:136.148800pt;}
.y13f{bottom:136.157440pt;}
.y68{bottom:136.160000pt;}
.y1e6{bottom:138.489467pt;}
.y1ce{bottom:141.228800pt;}
.y160{bottom:142.551040pt;}
.y17c{bottom:143.834240pt;}
.y1ed{bottom:145.756000pt;}
.yee{bottom:149.102880pt;}
.y8d{bottom:149.109760pt;}
.yc7{bottom:149.110560pt;}
.y13e{bottom:149.119200pt;}
.y111{bottom:149.120000pt;}
.y67{bottom:149.920000pt;}
.y1ac{bottom:150.530427pt;}
.y190{bottom:152.005760pt;}
.y1e5{bottom:155.770747pt;}
.y1cd{bottom:158.510080pt;}
.y15f{bottom:159.832320pt;}
.y1e{bottom:159.842880pt;}
.y17b{bottom:161.277440pt;}
.yed{bottom:162.223680pt;}
.y8c{bottom:162.230560pt;}
.yc6{bottom:162.231360pt;}
.y110{bottom:162.240000pt;}
.y44{bottom:162.557440pt;}
.y1ab{bottom:167.811707pt;}
.y1ec{bottom:171.040000pt;}
.y1e4{bottom:173.213947pt;}
.yec{bottom:175.185440pt;}
.y8b{bottom:175.192320pt;}
.yc5{bottom:175.193120pt;}
.y10f{bottom:175.198240pt;}
.y1cc{bottom:175.791360pt;}
.y13d{bottom:176.000000pt;}
.y15e{bottom:177.275520pt;}
.y18f{bottom:177.280000pt;}
.y17a{bottom:178.558720pt;}
.y43{bottom:179.838720pt;}
.y12e{bottom:183.825280pt;}
.y1aa{bottom:185.254907pt;}
.y1d{bottom:185.287360pt;}
.y201{bottom:186.558080pt;}
.yeb{bottom:188.147200pt;}
.y8a{bottom:188.154080pt;}
.yc4{bottom:188.154880pt;}
.y10e{bottom:188.160000pt;}
.y1e3{bottom:190.495227pt;}
.y1cb{bottom:193.234560pt;}
.y15d{bottom:194.556800pt;}
.y1eb{bottom:196.480000pt;}
.y42{bottom:197.281920pt;}
.yea{bottom:201.268000pt;}
.y12d{bottom:201.268480pt;}
.y89{bottom:201.274880pt;}
.yc3{bottom:201.275680pt;}
.y10d{bottom:202.080000pt;}
.y1a9{bottom:202.536187pt;}
.y18e{bottom:202.556000pt;}
.y200{bottom:204.001280pt;}
.y1e2{bottom:207.776507pt;}
.y1ca{bottom:210.515840pt;}
.y1c{bottom:210.572480pt;}
.y15c{bottom:211.838080pt;}
.y179{bottom:211.840640pt;}
.ye9{bottom:214.229760pt;}
.y88{bottom:214.236640pt;}
.yc2{bottom:214.237440pt;}
.y41{bottom:214.563200pt;}
.y12c{bottom:218.549760pt;}
.y1a8{bottom:219.817467pt;}
.y18d{bottom:220.160000pt;}
.y1ff{bottom:221.282560pt;}
.y1ea{bottom:221.764000pt;}
.y1e1{bottom:225.219707pt;}
.ye8{bottom:227.350560pt;}
.y87{bottom:227.357440pt;}
.yc1{bottom:227.358240pt;}
.y1c9{bottom:227.797120pt;}
.y1b{bottom:227.849760pt;}
.y15b{bottom:229.281280pt;}
.y66{bottom:229.281920pt;}
.y10c{bottom:231.838720pt;}
.y40{bottom:231.844480pt;}
.y12b{bottom:235.831040pt;}
.y1a7{bottom:237.260667pt;}
.y178{bottom:237.276800pt;}
.y1fe{bottom:238.563840pt;}
.y1e9{bottom:239.200000pt;}
.ye7{bottom:240.312320pt;}
.y86{bottom:240.319200pt;}
.yc0{bottom:240.320000pt;}
.y1e0{bottom:242.500987pt;}
.y18c{bottom:242.560000pt;}
.y13c{bottom:243.796347pt;}
.y1c8{bottom:245.240320pt;}
.y1a{bottom:245.286400pt;}
.y15a{bottom:246.562560pt;}
.y65{bottom:246.563200pt;}
.y10b{bottom:249.281920pt;}
.y3f{bottom:249.287680pt;}
.y12a{bottom:253.274240pt;}
.ye6{bottom:253.433120pt;}
.y85{bottom:253.440000pt;}
.ybf{bottom:254.240000pt;}
.y1a6{bottom:254.541947pt;}
.y1fd{bottom:256.007040pt;}
.y1df{bottom:259.782267pt;}
.y13b{bottom:261.239547pt;}
.y1c7{bottom:262.521600pt;}
.y177{bottom:262.551040pt;}
.y19{bottom:262.563680pt;}
.y64{bottom:263.844480pt;}
.ye5{bottom:266.394880pt;}
.y10a{bottom:266.563200pt;}
.y84{bottom:267.200000pt;}
.y18b{bottom:269.600000pt;}
.y129{bottom:270.555520pt;}
.y1a5{bottom:271.823227pt;}
.y159{bottom:271.836800pt;}
.y1fc{bottom:273.288320pt;}
.y3e{bottom:274.561920pt;}
.y1de{bottom:277.225467pt;}
.y13a{bottom:278.520827pt;}
.ye4{bottom:279.515680pt;}
.y1c6{bottom:279.802880pt;}
.y176{bottom:279.832320pt;}
.y18{bottom:279.840960pt;}
.ybe{bottom:282.561920pt;}
.y158{bottom:289.258240pt;}
.y1a4{bottom:289.266427pt;}
.yab{bottom:289.275520pt;}
.y1fb{bottom:290.569600pt;}
.y3d{bottom:291.843200pt;}
.ye3{bottom:292.477440pt;}
.y1dd{bottom:294.506747pt;}
.y139{bottom:295.802107pt;}
.y128{bottom:295.829760pt;}
.y18a{bottom:296.800000pt;}
.y1c5{bottom:297.246080pt;}
.y175{bottom:297.275520pt;}
.y17{bottom:297.277600pt;}
.y63{bottom:297.288320pt;}
.y83{bottom:298.565760pt;}
.ybd{bottom:299.843200pt;}
.y109{bottom:299.845120pt;}
.ye2{bottom:305.598240pt;}
.y157{bottom:306.539520pt;}
.y1a3{bottom:306.547707pt;}
.yaa{bottom:306.556800pt;}
.y3c{bottom:309.286400pt;}
.y1dc{bottom:311.788027pt;}
.y138{bottom:313.245307pt;}
.y127{bottom:313.272960pt;}
.y1c4{bottom:314.527360pt;}
.y16{bottom:314.554880pt;}
.y174{bottom:314.556800pt;}
.y62{bottom:314.569600pt;}
.y1fa{bottom:316.005760pt;}
.ybc{bottom:317.286400pt;}
.ye1{bottom:318.560000pt;}
.y156{bottom:323.820800pt;}
.y82{bottom:323.834880pt;}
.ya9{bottom:323.838080pt;}
.y189{bottom:324.000000pt;}
.y108{bottom:325.281280pt;}
.y3b{bottom:326.567680pt;}
.y1db{bottom:329.231227pt;}
.y137{bottom:330.526587pt;}
.y126{bottom:330.554240pt;}
.y1c3{bottom:331.808640pt;}
.y1a2{bottom:331.821947pt;}
.y173{bottom:331.838080pt;}
.ye0{bottom:332.320000pt;}
.y15{bottom:339.835520pt;}
.y61{bottom:339.843840pt;}
.y155{bottom:341.264000pt;}
.y81{bottom:341.278080pt;}
.y1f9{bottom:341.280000pt;}
.ya8{bottom:341.281280pt;}
.ybb{bottom:342.560640pt;}
.y1da{bottom:346.512507pt;}
.y125{bottom:347.835520pt;}
.y1c2{bottom:349.251840pt;}
.y1a1{bottom:349.265147pt;}
.y172{bottom:349.281280pt;}
.y107{bottom:350.555520pt;}
.y188{bottom:351.040000pt;}
.y136{bottom:355.800827pt;}
.y154{bottom:358.545280pt;}
.y80{bottom:358.559360pt;}
.ya7{bottom:358.562560pt;}
.yba{bottom:359.841920pt;}
.y3a{bottom:359.849600pt;}
.y1d9{bottom:363.793787pt;}
.y60{bottom:365.258240pt;}
.y124{bottom:365.278720pt;}
.y14{bottom:365.280000pt;}
.y1c1{bottom:366.533120pt;}
.y1a0{bottom:366.546427pt;}
.y1f8{bottom:366.556000pt;}
.y106{bottom:367.836800pt;}
.y135{bottom:373.244027pt;}
.y171{bottom:374.555520pt;}
.ydf{bottom:374.558080pt;}
.y153{bottom:375.826560pt;}
.y7f{bottom:375.840640pt;}
.yb9{bottom:377.285120pt;}
.y186{bottom:378.240000pt;}
.y1d8{bottom:381.236987pt;}
.y5f{bottom:382.539520pt;}
.y123{bottom:382.560000pt;}
.y1c0{bottom:383.814400pt;}
.y19f{bottom:383.827707pt;}
.ya6{bottom:383.836800pt;}
.y1f7{bottom:384.160000pt;}
.y105{bottom:385.281280pt;}
.y39{bottom:385.285760pt;}
.y134{bottom:390.525307pt;}
.y13{bottom:390.560000pt;}
.y183{bottom:391.025787pt;}
.y170{bottom:391.836800pt;}
.yde{bottom:391.839360pt;}
.y152{bottom:393.269760pt;}
.y7e{bottom:393.283840pt;}
.yb8{bottom:394.566400pt;}
.y1d7{bottom:398.518267pt;}
.y5e{bottom:399.820800pt;}
.y122{bottom:399.841280pt;}
.y1bf{bottom:401.257600pt;}
.y19e{bottom:401.270907pt;}
.ya5{bottom:401.271680pt;}
.y104{bottom:402.562560pt;}
.y184{bottom:405.280000pt;}
.y133{bottom:407.806587pt;}
.y12{bottom:407.848800pt;}
.y182{bottom:408.468987pt;}
.y16f{bottom:409.280000pt;}
.ydd{bottom:409.282560pt;}
.y38{bottom:410.549760pt;}
.y151{bottom:410.551040pt;}
.y1d6{bottom:415.799547pt;}
.y5d{bottom:417.264000pt;}
.y121{bottom:417.284480pt;}
.y1be{bottom:418.538880pt;}
.ya4{bottom:418.552960pt;}
.y7d{bottom:418.558080pt;}
.y103{bottom:419.843840pt;}
.y132{bottom:425.249787pt;}
.y11{bottom:425.285440pt;}
.y19d{bottom:426.545147pt;}
.y16e{bottom:426.561280pt;}
.ydc{bottom:426.563840pt;}
.y37{bottom:427.831040pt;}
.y150{bottom:427.832320pt;}
.yb7{bottom:427.848320pt;}
.y1d5{bottom:433.242747pt;}
.y5c{bottom:434.545280pt;}
.y120{bottom:434.565760pt;}
.y1bd{bottom:435.820160pt;}
.ya3{bottom:435.834240pt;}
.y7c{bottom:435.839360pt;}
.y131{bottom:442.531067pt;}
.y10{bottom:442.562720pt;}
.y181{bottom:443.826427pt;}
.y16d{bottom:443.842560pt;}
.y36{bottom:445.274240pt;}
.y14f{bottom:445.275520pt;}
.y102{bottom:445.278720pt;}
.y1f4{bottom:445.280000pt;}
.yb6{bottom:445.291520pt;}
.y1d4{bottom:450.524027pt;}
.y5b{bottom:451.826560pt;}
.ydb{bottom:451.838080pt;}
.y1bc{bottom:453.263360pt;}
.ya2{bottom:453.277440pt;}
.y7b{bottom:453.282560pt;}
.y11f{bottom:459.812347pt;}
.yf{bottom:459.846080pt;}
.y1f0{bottom:460.316000pt;}
.y19c{bottom:461.269627pt;}
.y16c{bottom:461.285760pt;}
.y101{bottom:462.549760pt;}
.y35{bottom:462.555520pt;}
.y14e{bottom:462.556800pt;}
.y1d3{bottom:467.805307pt;}
.y180{bottom:469.262587pt;}
.y5a{bottom:469.269760pt;}
.yda{bottom:469.281280pt;}
.y1bb{bottom:470.544640pt;}
.ya1{bottom:470.558720pt;}
.y7a{bottom:470.563840pt;}
.y1f3{bottom:470.564000pt;}
.yb5{bottom:470.565760pt;}
.y11e{bottom:477.255547pt;}
.ye{bottom:477.282720pt;}
.y1ef{bottom:477.920000pt;}
.y19b{bottom:478.550907pt;}
.y100{bottom:479.831040pt;}
.y34{bottom:479.836800pt;}
.y14d{bottom:479.838080pt;}
.y1d2{bottom:485.248507pt;}
.y16b{bottom:486.543867pt;}
.y59{bottom:486.551040pt;}
.yd9{bottom:486.562560pt;}
.y1ba{bottom:487.825920pt;}
.ya0{bottom:487.841280pt;}
.y1f2{bottom:488.000000pt;}
.y11d{bottom:494.536827pt;}
.yd{bottom:494.560000pt;}
.y19a{bottom:495.832187pt;}
.y79{bottom:495.838080pt;}
.yff{bottom:497.274240pt;}
.y33{bottom:497.280000pt;}
.y14c{bottom:497.281280pt;}
.y1d1{bottom:502.529787pt;}
.y16a{bottom:503.825147pt;}
.y58{bottom:503.832320pt;}
.yd8{bottom:503.843840pt;}
.y1b9{bottom:505.269120pt;}
.y9f{bottom:505.284480pt;}
.y11c{bottom:511.818107pt;}
.yc{bottom:511.829120pt;}
.y199{bottom:513.275387pt;}
.y78{bottom:513.281280pt;}
.yfe{bottom:514.555520pt;}
.y32{bottom:514.561280pt;}
.y14b{bottom:514.562560pt;}
.y1d0{bottom:519.811067pt;}
.y169{bottom:521.268347pt;}
.y57{bottom:521.275520pt;}
.y1b8{bottom:522.550400pt;}
.y9e{bottom:522.565760pt;}
.y11b{bottom:529.261307pt;}
.yb{bottom:529.272320pt;}
.yd7{bottom:529.280000pt;}
.y198{bottom:530.556667pt;}
.y77{bottom:530.562560pt;}
.yfd{bottom:531.836800pt;}
.y31{bottom:531.842560pt;}
.y14a{bottom:531.843840pt;}
.y1cf{bottom:537.254267pt;}
.y168{bottom:538.549627pt;}
.yb4{bottom:538.555520pt;}
.y56{bottom:538.556800pt;}
.y1b7{bottom:539.831680pt;}
.y130{bottom:546.542587pt;}
.ya{bottom:546.553600pt;}
.yd6{bottom:546.561280pt;}
.y9d{bottom:547.832320pt;}
.y197{bottom:547.837947pt;}
.y76{bottom:547.843840pt;}
.yfc{bottom:549.280000pt;}
.y30{bottom:549.285760pt;}
.y11a{bottom:554.535547pt;}
.y167{bottom:555.830907pt;}
.yb3{bottom:555.836800pt;}
.y55{bottom:555.838080pt;}
.y149{bottom:557.273467pt;}
.y1b6{bottom:557.274880pt;}
.y12f{bottom:563.823867pt;}
.yd5{bottom:563.842560pt;}
.y9{bottom:563.996800pt;}
.y9c{bottom:565.275520pt;}
.y196{bottom:565.281147pt;}
.y119{bottom:571.816827pt;}
.y166{bottom:573.274107pt;}
.y75{bottom:573.275520pt;}
.yb2{bottom:573.280000pt;}
.yfb{bottom:574.554240pt;}
.y148{bottom:574.554747pt;}
.y1b5{bottom:574.556160pt;}
.y2f{bottom:574.560000pt;}
.y54{bottom:581.274240pt;}
.yd4{bottom:581.285760pt;}
.y9b{bottom:582.556800pt;}
.y118{bottom:589.260027pt;}
.y8{bottom:589.271040pt;}
.y165{bottom:590.555387pt;}
.y74{bottom:590.556800pt;}
.yb1{bottom:590.561280pt;}
.yfa{bottom:591.835520pt;}
.y147{bottom:591.836027pt;}
.y1b4{bottom:591.837440pt;}
.y53{bottom:598.555520pt;}
.y9a{bottom:599.838080pt;}
.y2e{bottom:599.840000pt;}
.y117{bottom:606.541307pt;}
.yd3{bottom:606.544000pt;}
.y7{bottom:606.552320pt;}
.y17f{bottom:607.836667pt;}
.y73{bottom:607.838080pt;}
.yb0{bottom:607.842560pt;}
.yf9{bottom:609.278720pt;}
.y146{bottom:609.279227pt;}
.y1b3{bottom:609.280640pt;}
.y164{bottom:615.829627pt;}
.y52{bottom:615.836800pt;}
.y99{bottom:617.281280pt;}
.y116{bottom:623.822587pt;}
.yd2{bottom:623.825280pt;}
.y6{bottom:623.833600pt;}
.y195{bottom:625.279867pt;}
.y72{bottom:625.281280pt;}
.y2d{bottom:625.287227pt;}
.yf8{bottom:626.560507pt;}
.y1b2{bottom:626.561920pt;}
.y163{bottom:633.272827pt;}
.yaf{bottom:633.278720pt;}
.y51{bottom:633.280000pt;}
.y98{bottom:634.562560pt;}
.y115{bottom:641.265787pt;}
.yd1{bottom:641.268480pt;}
.y5{bottom:641.276800pt;}
.y194{bottom:642.561147pt;}
.y71{bottom:642.562560pt;}
.yf7{bottom:643.841787pt;}
.y1b1{bottom:643.843200pt;}
.yae{bottom:650.554107pt;}
.y50{bottom:650.561280pt;}
.y2c{bottom:650.572347pt;}
.y97{bottom:651.843840pt;}
.y114{bottom:658.547067pt;}
.yd0{bottom:658.549760pt;}
.y4{bottom:658.720000pt;}
.y193{bottom:659.842427pt;}
.yf6{bottom:661.284987pt;}
.y1b0{bottom:661.286400pt;}
.yad{bottom:667.835387pt;}
.y70{bottom:667.836800pt;}
.y2b{bottom:667.849627pt;}
.y113{bottom:675.828347pt;}
.ycf{bottom:675.831040pt;}
.y4f{bottom:675.835520pt;}
.y96{bottom:677.270907pt;}
.y145{bottom:677.285627pt;}
.yf5{bottom:678.566267pt;}
.y1af{bottom:678.567680pt;}
.y162{bottom:685.278587pt;}
.y6f{bottom:685.280000pt;}
.y2a{bottom:685.286267pt;}
.yac{bottom:693.271547pt;}
.yce{bottom:693.274240pt;}
.y4e{bottom:693.278720pt;}
.y95{bottom:694.552187pt;}
.y144{bottom:694.566907pt;}
.y161{bottom:702.559867pt;}
.y6e{bottom:702.561280pt;}
.y29{bottom:702.563547pt;}
.y4d{bottom:710.552827pt;}
.ycd{bottom:710.555520pt;}
.y94{bottom:711.833467pt;}
.yf4{bottom:711.848187pt;}
.y1ae{bottom:711.849600pt;}
.y28{bottom:719.840827pt;}
.y143{bottom:719.841147pt;}
.y6d{bottom:719.842560pt;}
.y4c{bottom:727.834107pt;}
.ycc{bottom:727.836800pt;}
.y93{bottom:729.276667pt;}
.y27{bottom:737.277467pt;}
.yf3{bottom:737.284347pt;}
.y6c{bottom:737.285760pt;}
.y4b{bottom:745.277307pt;}
.y92{bottom:746.557947pt;}
.y26{bottom:754.554747pt;}
.y4a{bottom:762.558587pt;}
.y3{bottom:771.834880pt;}
.y49{bottom:779.839867pt;}
.y25{bottom:779.849920pt;}
.y48{bottom:807.674400pt;}
.y22{bottom:807.679867pt;}
.y2{bottom:810.396000pt;}
.y21{bottom:822.880000pt;}
.y1{bottom:824.160000pt;}
.h25{height:26.400000pt;}
.h26{height:26.560000pt;}
.h24{height:26.561333pt;}
.hc{height:39.870937pt;}
.hf{height:39.981875pt;}
.h1d{height:40.359063pt;}
.h7{height:42.117188pt;}
.h2{height:42.234375pt;}
.h4{height:46.609688pt;}
.h3{height:46.625687pt;}
.h8{height:46.627608pt;}
.h6{height:46.739375pt;}
.ha{height:51.634843pt;}
.h9{height:51.663750pt;}
.h1f{height:51.807500pt;}
.h5{height:52.296250pt;}
.h19{height:53.682945pt;}
.h15{height:53.685505pt;}
.h1e{height:53.688598pt;}
.h1c{height:53.690625pt;}
.h10{height:53.695745pt;}
.h18{height:53.698305pt;}
.h1a{height:53.701398pt;}
.h11{height:53.708545pt;}
.h12{height:53.711105pt;}
.h17{height:53.714198pt;}
.h22{height:53.716758pt;}
.hd{height:53.718785pt;}
.h14{height:53.721345pt;}
.h16{height:53.723905pt;}
.h13{height:53.726998pt;}
.hb{height:53.731585pt;}
.h21{height:53.749505pt;}
.h1b{height:53.754625pt;}
.h23{height:53.755158pt;}
.he{height:53.777665pt;}
.h20{height:53.801238pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w7{width:63.520000pt;}
.w5{width:63.521333pt;}
.w4{width:66.401333pt;}
.w6{width:66.560000pt;}
.w3{width:130.720000pt;}
.w2{width:130.721333pt;}
.w8{width:197.120000pt;}
.w9{width:459.840000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x1{left:86.880000pt;}
.x8{left:88.634880pt;}
.x18{left:90.240000pt;}
.x4{left:91.520000pt;}
.x5{left:93.919360pt;}
.x16{left:97.280000pt;}
.x1d{left:99.840000pt;}
.x3{left:102.560000pt;}
.x9{left:108.948480pt;}
.xd{left:113.280000pt;}
.x1a{left:124.956000pt;}
.xa{left:128.305280pt;}
.xe{left:144.960000pt;}
.x15{left:169.924000pt;}
.x6{left:174.555520pt;}
.x20{left:199.200640pt;}
.x1b{left:216.004000pt;}
.x17{left:218.240000pt;}
.x19{left:246.876000pt;}
.x1c{left:258.724000pt;}
.xf{left:278.880000pt;}
.x10{left:285.280000pt;}
.x2{left:314.723680pt;}
.x7{left:317.427840pt;}
.x13{left:352.480000pt;}
.xb{left:379.836800pt;}
.x1e{left:384.319360pt;}
.x21{left:414.407040pt;}
.x12{left:416.640000pt;}
.xc{left:426.554400pt;}
.x22{left:461.584640pt;}
.x14{left:483.840000pt;}
.x1f{left:548.005760pt;}
}




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