
    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_6b7b16f07e29c1409012fe7d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_d55349f62a22599323e1734b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006348;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_0176a80fb71713ee7fdadf11.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_1ba4a51955252e42b6e14727.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.874023;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_3a589dd22aa06a5295012294.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_7cbabcf42446300f1721718e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.857910;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_568075bf63b69275fecf69e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916016;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.777280px;}
.ls34{letter-spacing:-0.993600px;}
.ls20{letter-spacing:-0.927360px;}
.lsd{letter-spacing:-0.861120px;}
.ls21{letter-spacing:-0.794880px;}
.ls1a{letter-spacing:-0.728640px;}
.lsf{letter-spacing:-0.662400px;}
.ls1b{letter-spacing:-0.596160px;}
.ls18{letter-spacing:-0.529920px;}
.lse{letter-spacing:-0.463680px;}
.ls4a{letter-spacing:-0.418320px;}
.ls19{letter-spacing:-0.397440px;}
.ls17{letter-spacing:-0.331200px;}
.ls1f{letter-spacing:-0.292320px;}
.ls6{letter-spacing:-0.289440px;}
.ls4b{letter-spacing:-0.272160px;}
.ls9{letter-spacing:-0.264960px;}
.ls4{letter-spacing:-0.241200px;}
.ls48{letter-spacing:-0.239040px;}
.ls10{letter-spacing:-0.198720px;}
.ls5{letter-spacing:-0.192960px;}
.lsb{letter-spacing:-0.132480px;}
.ls46{letter-spacing:-0.119520px;}
.lsa{letter-spacing:-0.066240px;}
.ls47{letter-spacing:-0.059760px;}
.ls8{letter-spacing:-0.048240px;}
.ls3{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.011520px;}
.ls42{letter-spacing:0.013248px;}
.ls39{letter-spacing:0.020160px;}
.ls25{letter-spacing:0.025920px;}
.ls23{letter-spacing:0.028800px;}
.ls30{letter-spacing:0.033120px;}
.ls3b{letter-spacing:0.034560px;}
.ls37{letter-spacing:0.043200px;}
.ls1{letter-spacing:0.048240px;}
.ls44{letter-spacing:0.059040px;}
.ls54{letter-spacing:0.059760px;}
.ls36{letter-spacing:0.063360px;}
.ls53{letter-spacing:0.064080px;}
.ls13{letter-spacing:0.066240px;}
.ls1e{letter-spacing:0.080640px;}
.ls3a{letter-spacing:0.089280px;}
.ls15{letter-spacing:0.099360px;}
.ls2d{letter-spacing:0.105984px;}
.ls41{letter-spacing:0.112608px;}
.ls2b{letter-spacing:0.119232px;}
.ls2{letter-spacing:0.132480px;}
.ls2c{letter-spacing:0.138240px;}
.ls2e{letter-spacing:0.139104px;}
.ls33{letter-spacing:0.145728px;}
.ls29{letter-spacing:0.165600px;}
.ls45{letter-spacing:0.179280px;}
.ls14{letter-spacing:0.185472px;}
.ls26{letter-spacing:0.190080px;}
.ls1c{letter-spacing:0.198720px;}
.ls24{letter-spacing:0.205344px;}
.ls35{letter-spacing:0.211968px;}
.ls2a{letter-spacing:0.218592px;}
.ls2f{letter-spacing:0.231840px;}
.ls52{letter-spacing:0.239040px;}
.ls7{letter-spacing:0.241200px;}
.ls12{letter-spacing:0.245088px;}
.ls3c{letter-spacing:0.258336px;}
.lsc{letter-spacing:0.264960px;}
.ls27{letter-spacing:0.271584px;}
.ls4c{letter-spacing:0.275040px;}
.ls3e{letter-spacing:0.291456px;}
.ls49{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.308736px;}
.ls11{letter-spacing:0.331200px;}
.ls32{letter-spacing:0.337824px;}
.ls3f{letter-spacing:0.344448px;}
.ls3d{letter-spacing:0.364320px;}
.ls16{letter-spacing:0.397440px;}
.ls1d{letter-spacing:0.411840px;}
.ls22{letter-spacing:0.417600px;}
.ls31{letter-spacing:1.008000px;}
.ls43{letter-spacing:1.293120px;}
.ls40{letter-spacing:4.438080px;}
.ls51{letter-spacing:190.992960px;}
.ls50{letter-spacing:191.710080px;}
.ls28{letter-spacing:197.461440px;}
.ls4d{letter-spacing:198.881280px;}
.ls4f{letter-spacing:206.829360px;}
.ls4e{letter-spacing:207.546480px;}
.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;}
}
.ws3d{word-spacing:-15.367680px;}
.ws33{word-spacing:-15.301440px;}
.ws1b{word-spacing:-15.235200px;}
.ws1f{word-spacing:-15.168960px;}
.ws8{word-spacing:-15.102720px;}
.ws1c{word-spacing:-15.036480px;}
.ws4{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.904000px;}
.ws30{word-spacing:-14.837760px;}
.ws7{word-spacing:-14.771520px;}
.ws6{word-spacing:-14.705280px;}
.ws37{word-spacing:-14.639040px;}
.ws1a{word-spacing:-14.572800px;}
.ws35{word-spacing:-14.506560px;}
.ws32{word-spacing:-14.440320px;}
.ws1e{word-spacing:-14.374080px;}
.ws3a{word-spacing:-14.307840px;}
.ws1d{word-spacing:-14.241600px;}
.ws2a{word-spacing:-14.175360px;}
.ws38{word-spacing:-14.109120px;}
.ws34{word-spacing:-14.042880px;}
.ws3c{word-spacing:-13.976640px;}
.ws56{word-spacing:-13.804560px;}
.ws60{word-spacing:-13.744800px;}
.ws4d{word-spacing:-13.685040px;}
.ws5f{word-spacing:-13.565520px;}
.ws4e{word-spacing:-13.505760px;}
.ws4b{word-spacing:-13.446000px;}
.ws4a{word-spacing:-13.386240px;}
.ws4c{word-spacing:-13.266720px;}
.ws3{word-spacing:-12.783600px;}
.ws1{word-spacing:-12.542400px;}
.ws0{word-spacing:-12.301200px;}
.ws2{word-spacing:-12.204000px;}
.ws29{word-spacing:-9.855360px;}
.ws27{word-spacing:-9.437760px;}
.ws28{word-spacing:-9.145440px;}
.ws4f{word-spacing:-8.514720px;}
.ws3e{word-spacing:-0.927360px;}
.ws15{word-spacing:-0.861120px;}
.ws25{word-spacing:-0.728640px;}
.ws47{word-spacing:-0.662400px;}
.ws39{word-spacing:-0.596160px;}
.wse{word-spacing:-0.530640px;}
.ws14{word-spacing:-0.529920px;}
.ws49{word-spacing:-0.463680px;}
.ws36{word-spacing:-0.397440px;}
.ws26{word-spacing:-0.331200px;}
.ws59{word-spacing:-0.298800px;}
.ws9{word-spacing:-0.289440px;}
.ws2d{word-spacing:-0.264960px;}
.ws19{word-spacing:-0.198720px;}
.ws61{word-spacing:-0.179280px;}
.ws20{word-spacing:-0.132480px;}
.ws53{word-spacing:-0.119520px;}
.wsc{word-spacing:-0.096480px;}
.ws2e{word-spacing:-0.066240px;}
.ws5e{word-spacing:-0.059760px;}
.wsb{word-spacing:-0.048240px;}
.wsa{word-spacing:0.000000px;}
.wsf{word-spacing:0.048240px;}
.ws5d{word-spacing:0.059760px;}
.ws23{word-spacing:0.066240px;}
.ws13{word-spacing:0.132480px;}
.ws11{word-spacing:0.198720px;}
.ws54{word-spacing:0.239040px;}
.ws12{word-spacing:0.264960px;}
.wsd{word-spacing:0.289440px;}
.ws2b{word-spacing:0.292320px;}
.ws5c{word-spacing:0.298800px;}
.ws24{word-spacing:0.331200px;}
.ws10{word-spacing:0.397440px;}
.ws52{word-spacing:0.418320px;}
.ws21{word-spacing:0.463680px;}
.ws22{word-spacing:0.529920px;}
.ws17{word-spacing:0.596160px;}
.ws18{word-spacing:0.662400px;}
.ws3b{word-spacing:0.728640px;}
.ws2f{word-spacing:0.794880px;}
.ws16{word-spacing:0.861120px;}
.ws2c{word-spacing:0.927360px;}
.ws42{word-spacing:0.993600px;}
.ws31{word-spacing:1.059840px;}
.ws55{word-spacing:1.314720px;}
.ws3f{word-spacing:1.457280px;}
.ws41{word-spacing:1.523520px;}
.ws5b{word-spacing:1.673280px;}
.ws40{word-spacing:1.854720px;}
.ws57{word-spacing:2.748960px;}
.ws50{word-spacing:3.286800px;}
.ws44{word-spacing:4.040640px;}
.ws45{word-spacing:4.106880px;}
.ws43{word-spacing:4.504320px;}
.ws51{word-spacing:7.051680px;}
.ws48{word-spacing:14.639040px;}
.ws5a{word-spacing:28.684800px;}
.ws46{word-spacing:35.504640px;}
.ws58{word-spacing:74.042640px;}
._2{margin-left:-2.127384px;}
._0{margin-left:-1.037160px;}
._1{width:1.150920px;}
._3{width:2.199168px;}
._4{width:3.643200px;}
._5{width:4.672080px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(28,29,30);}
.fs5{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y170{bottom:12.959850px;}
.y16a{bottom:12.960000px;}
.y168{bottom:13.140000px;}
.y15f{bottom:14.580000px;}
.y160{bottom:15.840000px;}
.y165{bottom:40.500000px;}
.y162{bottom:40.680000px;}
.y22{bottom:75.605760px;}
.y21{bottom:113.760000px;}
.y20{bottom:117.880560px;}
.y1ae{bottom:137.700000px;}
.y1f{bottom:147.042720px;}
.yaf{bottom:154.419120px;}
.ye1{bottom:154.419840px;}
.y3e{bottom:159.051600px;}
.y1ad{bottom:165.240000px;}
.ycf{bottom:169.312320px;}
.y112{bottom:169.315920px;}
.yb9{bottom:169.318800px;}
.y67{bottom:169.355520px;}
.yff{bottom:169.363440px;}
.y53{bottom:169.372080px;}
.y79{bottom:169.375680px;}
.y15c{bottom:182.285280px;}
.y1e{bottom:185.196960px;}
.y1ac{bottom:192.600000px;}
.yae{bottom:194.742720px;}
.ye0{bottom:194.743440px;}
.y142{bottom:197.222400px;}
.y3d{bottom:199.375200px;}
.yf3{bottom:199.427760px;}
.y12f{bottom:200.286000px;}
.y14c{bottom:203.167440px;}
.yce{bottom:209.635920px;}
.y111{bottom:209.639520px;}
.yb8{bottom:209.642400px;}
.y66{bottom:209.679120px;}
.yfe{bottom:209.687040px;}
.y52{bottom:209.695680px;}
.y78{bottom:209.699280px;}
.y1d{bottom:214.359120px;}
.y11f{bottom:219.930480px;}
.y8a{bottom:219.942720px;}
.y1ab{bottom:220.140000px;}
.y15b{bottom:222.426720px;}
.y9a{bottom:224.632800px;}
.yad{bottom:235.066320px;}
.ydf{bottom:235.067040px;}
.y141{bottom:237.546000px;}
.y3c{bottom:239.698800px;}
.yf2{bottom:239.751360px;}
.y12e{bottom:240.427440px;}
.y14b{bottom:243.491040px;}
.y1c{bottom:243.521280px;}
.y1aa{bottom:247.500000px;}
.ycd{bottom:249.959520px;}
.y110{bottom:249.963120px;}
.yb7{bottom:249.966000px;}
.yfd{bottom:250.010640px;}
.y51{bottom:250.019280px;}
.y11e{bottom:260.254080px;}
.y65{bottom:264.939840px;}
.y77{bottom:264.947760px;}
.y99{bottom:264.956400px;}
.y1b{bottom:272.683440px;}
.y1a9{bottom:275.040000px;}
.y89{bottom:275.203440px;}
.yac{bottom:275.207760px;}
.yde{bottom:275.208480px;}
.y3b{bottom:280.022400px;}
.yf1{bottom:280.074960px;}
.y15a{bottom:280.751040px;}
.ycc{bottom:290.283120px;}
.y10f{bottom:290.286720px;}
.yfc{bottom:290.334240px;}
.y140{bottom:292.806720px;}
.y12d{bottom:298.751760px;}
.y11d{bottom:300.577680px;}
.y1a{bottom:301.845600px;}
.y1a8{bottom:302.580000px;}
.yb6{bottom:305.226720px;}
.y64{bottom:305.263440px;}
.y98{bottom:305.264160px;}
.y76{bottom:305.271360px;}
.y50{bottom:305.276400px;}
.y88{bottom:315.527040px;}
.yab{bottom:315.531360px;}
.ydd{bottom:315.532080px;}
.y3a{bottom:320.163840px;}
.yf0{bottom:320.216400px;}
.y159{bottom:321.074640px;}
.y1a7{bottom:329.940000px;}
.ycb{bottom:330.424560px;}
.y10e{bottom:330.428160px;}
.yfb{bottom:330.475680px;}
.y19{bottom:331.007760px;}
.y13f{bottom:333.130320px;}
.y12c{bottom:339.075360px;}
.yb5{bottom:345.550320px;}
.y63{bottom:345.587040px;}
.y97{bottom:345.587760px;}
.y4f{bottom:345.594960px;}
.y11c{bottom:355.838400px;}
.y87{bottom:355.850640px;}
.ydc{bottom:355.855680px;}
.y1a6{bottom:358.200000px;}
.y18{bottom:359.987760px;}
.y39{bottom:360.487440px;}
.yef{bottom:360.520560px;}
.y158{bottom:361.398240px;}
.yca{bottom:370.748160px;}
.y10d{bottom:370.751760px;}
.yaa{bottom:370.792080px;}
.yfa{bottom:370.799280px;}
.y1a5{bottom:385.560000px;}
.yb4{bottom:385.873920px;}
.y62{bottom:385.910640px;}
.y96{bottom:385.911360px;}
.y4e{bottom:385.918560px;}
.y17{bottom:389.149920px;}
.y13e{bottom:391.454640px;}
.y14a{bottom:394.336080px;}
.ydb{bottom:396.179280px;}
.y12b{bottom:397.399680px;}
.y38{bottom:400.811040px;}
.yee{bottom:400.844160px;}
.y16{bottom:409.303440px;}
.yc9{bottom:411.071760px;}
.y10c{bottom:411.075360px;}
.y11b{bottom:411.099120px;}
.y86{bottom:411.111360px;}
.y1a4{bottom:413.100000px;}
.y157{bottom:419.722560px;}
.yb3{bottom:426.015360px;}
.y4d{bottom:426.048480px;}
.y61{bottom:426.052080px;}
.y75{bottom:426.052800px;}
.yf9{bottom:426.060000px;}
.y13d{bottom:431.596080px;}
.y149{bottom:434.659680px;}
.y12a{bottom:437.723280px;}
.y15{bottom:438.465600px;}
.y1a3{bottom:440.640000px;}
.y37{bottom:441.134640px;}
.yed{bottom:441.167760px;}
.yc8{bottom:451.395360px;}
.y10b{bottom:451.398960px;}
.y11a{bottom:451.422720px;}
.y85{bottom:451.434960px;}
.y156{bottom:459.864000px;}
.yb2{bottom:466.338960px;}
.y4c{bottom:466.372080px;}
.y74{bottom:466.376400px;}
.y14{bottom:467.627760px;}
.y1a2{bottom:468.000000px;}
.y13c{bottom:471.919680px;}
.y129{bottom:477.864720px;}
.y36{bottom:481.458240px;}
.yf8{bottom:481.486320px;}
.yec{bottom:481.491360px;}
.y60{bottom:481.494960px;}
.y10a{bottom:491.722560px;}
.y84{bottom:491.758560px;}
.y148{bottom:492.984000px;}
.y1a1{bottom:495.540000px;}
.y13{bottom:505.782000px;}
.yc7{bottom:506.656080px;}
.yb1{bottom:506.662560px;}
.y119{bottom:506.683440px;}
.ya9{bottom:506.684160px;}
.y95{bottom:506.690640px;}
.y73{bottom:506.692800px;}
.y4b{bottom:506.695680px;}
.y155{bottom:518.188320px;}
.y35{bottom:521.599680px;}
.yf7{bottom:521.627760px;}
.yeb{bottom:521.632800px;}
.y5f{bottom:521.636400px;}
.y1a0{bottom:522.900000px;}
.y13b{bottom:527.180400px;}
.y83{bottom:531.866880px;}
.yda{bottom:531.880560px;}
.y147{bottom:533.307600px;}
.y12{bottom:534.944160px;}
.y128{bottom:536.189040px;}
.yc6{bottom:546.979680px;}
.y109{bottom:546.983280px;}
.yb0{bottom:546.986160px;}
.ya8{bottom:547.007760px;}
.y94{bottom:547.014240px;}
.y72{bottom:547.016400px;}
.y4a{bottom:547.019280px;}
.y19f{bottom:550.440000px;}
.y154{bottom:558.511920px;}
.y34{bottom:561.923280px;}
.y118{bottom:561.944160px;}
.y5e{bottom:561.951360px;}
.yea{bottom:561.956400px;}
.y11{bottom:564.106320px;}
.y13a{bottom:567.504000px;}
.y82{bottom:572.190480px;}
.yd9{bottom:572.204160px;}
.y146{bottom:573.449040px;}
.y127{bottom:576.512640px;}
.y19e{bottom:578.700000px;}
.yc5{bottom:587.303280px;}
.y71{bottom:587.330640px;}
.ya7{bottom:587.331360px;}
.y10{bottom:593.268480px;}
.y108{bottom:602.244000px;}
.y33{bottom:602.246880px;}
.y49{bottom:602.264160px;}
.y117{bottom:602.267760px;}
.y5d{bottom:602.274960px;}
.y19d{bottom:606.780000px;}
.y81{bottom:612.514080px;}
.yd8{bottom:612.527760px;}
.y153{bottom:613.772640px;}
.y1b9{bottom:615.058560px;}
.yf{bottom:622.430640px;}
.y139{bottom:625.828320px;}
.yc4{bottom:627.444720px;}
.y70{bottom:627.472080px;}
.ya6{bottom:627.472800px;}
.y145{bottom:628.709760px;}
.y126{bottom:631.773360px;}
.y19c{bottom:634.320000px;}
.y107{bottom:642.567600px;}
.y32{bottom:642.570480px;}
.y48{bottom:642.587760px;}
.y116{bottom:642.591360px;}
.y5c{bottom:642.598560px;}
.ye{bottom:651.592800px;}
.y80{bottom:652.837680px;}
.yd7{bottom:652.851360px;}
.y152{bottom:654.096240px;}
.y19b{bottom:661.860000px;}
.y138{bottom:666.151920px;}
.yc3{bottom:667.768320px;}
.y6f{bottom:667.795680px;}
.ya5{bottom:667.796400px;}
.y144{bottom:669.033360px;}
.y1b8{bottom:670.319280px;}
.y125{bottom:672.096960px;}
.yd{bottom:680.572800px;}
.yf6{bottom:682.705440px;}
.y106{bottom:682.709040px;}
.y31{bottom:682.711920px;}
.y93{bottom:682.713360px;}
.ye9{bottom:682.721280px;}
.y5b{bottom:682.724880px;}
.y47{bottom:682.729200px;}
.y115{bottom:682.732800px;}
.y19a{bottom:689.220000px;}
.yd6{bottom:693.174960px;}
.ya4{bottom:708.095520px;}
.y7f{bottom:708.098400px;}
.y6e{bottom:708.119280px;}
.y151{bottom:712.420560px;}
.y199{bottom:716.760000px;}
.yc2{bottom:723.029040px;}
.y105{bottom:723.032640px;}
.y30{bottom:723.035520px;}
.y92{bottom:723.036960px;}
.ye8{bottom:723.044880px;}
.y5a{bottom:723.048480px;}
.y46{bottom:723.052800px;}
.y114{bottom:723.056400px;}
.y137{bottom:724.294080px;}
.y1b7{bottom:725.580000px;}
.y124{bottom:730.421280px;}
.y17f{bottom:731.885580px;}
.yd5{bottom:733.316400px;}
.y172{bottom:733.865580px;}
.yc{bottom:736.015680px;}
.y1b6{bottom:741.960000px;}
.y198{bottom:744.120000px;}
.ya3{bottom:748.419120px;}
.y150{bottom:752.744160px;}
.y17e{bottom:759.420000px;}
.y171{bottom:761.400000px;}
.yc1{bottom:763.352640px;}
.y104{bottom:763.356240px;}
.y2f{bottom:763.359120px;}
.y91{bottom:763.360560px;}
.y6d{bottom:763.364160px;}
.ye7{bottom:763.368480px;}
.y59{bottom:763.372080px;}
.y45{bottom:763.376400px;}
.y136{bottom:764.617680px;}
.y18c{bottom:766.979280px;}
.y15d{bottom:767.681280px;}
.y1b5{bottom:769.500000px;}
.y123{bottom:770.744880px;}
.y197{bottom:771.660000px;}
.yd4{bottom:773.626320px;}
.y17c{bottom:774.540000px;}
.yb{bottom:776.157120px;}
.y16f{bottom:776.520000px;}
.y17d{bottom:787.500000px;}
.ya2{bottom:788.742720px;}
.y1b4{bottom:797.580000px;}
.y196{bottom:799.200000px;}
.yc0{bottom:803.676240px;}
.y103{bottom:803.679840px;}
.y2e{bottom:803.682720px;}
.y90{bottom:803.684160px;}
.y44{bottom:803.687040px;}
.y6c{bottom:803.687760px;}
.ye6{bottom:803.692080px;}
.y58{bottom:803.695680px;}
.y16e{bottom:804.780000px;}
.y135{bottom:804.941280px;}
.y14f{bottom:808.004880px;}
.yd3{bottom:813.949920px;}
.y7e{bottom:818.619840px;}
.y18b{bottom:822.240000px;}
.y1b3{bottom:825.120000px;}
.y122{bottom:826.005600px;}
.y195{bottom:827.280000px;}
.ya1{bottom:828.884160px;}
.y17a{bottom:830.160000px;}
.ya{bottom:831.600000px;}
.y16d{bottom:832.860000px;}
.y18a{bottom:838.620000px;}
.y17b{bottom:843.300000px;}
.ybf{bottom:843.999840px;}
.y102{bottom:844.003440px;}
.y2d{bottom:844.006320px;}
.y8f{bottom:844.007760px;}
.y43{bottom:844.010640px;}
.y6b{bottom:844.011360px;}
.y57{bottom:844.019280px;}
.y14e{bottom:848.146320px;}
.y1b2{bottom:852.480000px;}
.y194{bottom:854.820000px;}
.y7d{bottom:858.943440px;}
.ye5{bottom:858.952800px;}
.y16c{bottom:861.120000px;}
.y134{bottom:863.265600px;}
.y121{bottom:866.147040px;}
.y189{bottom:866.160000px;}
.ya0{bottom:869.207760px;}
.yd2{bottom:869.210640px;}
.y1b1{bottom:880.740000px;}
.y9{bottom:882.000000px;}
.y193{bottom:882.360000px;}
.ybe{bottom:884.141280px;}
.y101{bottom:884.144880px;}
.y2c{bottom:884.147760px;}
.y8e{bottom:884.149200px;}
.y42{bottom:884.152080px;}
.y6a{bottom:884.152800px;}
.y179{bottom:885.780000px;}
.y16b{bottom:889.380000px;}
.y188{bottom:893.520000px;}
.y7c{bottom:899.267040px;}
.y56{bottom:899.271360px;}
.ye4{bottom:899.276400px;}
.y133{bottom:903.589200px;}
.y120{bottom:906.470640px;}
.y1b0{bottom:909.000000px;}
.y9f{bottom:909.531360px;}
.yd1{bottom:909.534240px;}
.y192{bottom:909.720000px;}
.y178{bottom:914.040000px;}
.y8{bottom:914.760000px;}
.y169{bottom:917.640000px;}
.y187{bottom:921.780000px;}
.ybd{bottom:924.464880px;}
.y100{bottom:924.468480px;}
.y2b{bottom:924.471360px;}
.y8d{bottom:924.472800px;}
.y41{bottom:924.475680px;}
.y69{bottom:924.476400px;}
.y1af{bottom:936.540000px;}
.y191{bottom:937.260000px;}
.y7b{bottom:939.590640px;}
.y55{bottom:939.594960px;}
.ye3{bottom:939.598560px;}
.y176{bottom:942.300000px;}
.y132{bottom:943.730640px;}
.y167{bottom:945.720000px;}
.y14d{bottom:946.794240px;}
.y7{bottom:947.520000px;}
.yd0{bottom:949.857840px;}
.y184{bottom:950.040000px;}
.y177{bottom:955.260000px;}
.y143{bottom:961.731360px;}
.y185{bottom:963.180000px;}
.y190{bottom:964.620000px;}
.ybc{bottom:964.788480px;}
.y9e{bottom:964.792080px;}
.y2a{bottom:964.794960px;}
.y8c{bottom:964.796400px;}
.y68{bottom:964.799280px;}
.y164{bottom:973.980000px;}
.y186{bottom:976.860000px;}
.ye2{bottom:979.729200px;}
.y7a{bottom:979.732080px;}
.y40{bottom:979.736400px;}
.y6{bottom:980.100000px;}
.y166{bottom:987.120000px;}
.y18f{bottom:992.160000px;}
.y175{bottom:997.920000px;}
.y131{bottom:1002.054960px;}
.y183{bottom:1004.940000px;}
.yf5{bottom:1005.112080px;}
.y29{bottom:1005.118560px;}
.y5{bottom:1012.860000px;}
.y18e{bottom:1019.520000px;}
.ybb{bottom:1020.049200px;}
.y9d{bottom:1020.052800px;}
.y3f{bottom:1020.055680px;}
.y54{bottom:1020.056400px;}
.y174{bottom:1026.180000px;}
.y161{bottom:1029.600000px;}
.y182{bottom:1032.480000px;}
.y130{bottom:1042.378560px;}
.y163{bottom:1042.740000px;}
.yf4{bottom:1045.435680px;}
.y8b{bottom:1045.442160px;}
.y4{bottom:1045.800000px;}
.y18d{bottom:1047.780000px;}
.y26{bottom:1053.540000px;}
.y173{bottom:1054.440000px;}
.yba{bottom:1060.372800px;}
.y9c{bottom:1060.376400px;}
.y28{bottom:1060.379280px;}
.y181{bottom:1060.560000px;}
.y3{bottom:1078.380000px;}
.y25{bottom:1082.702160px;}
.y15e{bottom:1085.400000px;}
.y113{bottom:1085.583600px;}
.y180{bottom:1088.820000px;}
.y9b{bottom:1100.696400px;}
.y27{bottom:1100.702880px;}
.y2{bottom:1111.140000px;}
.y24{bottom:1111.864320px;}
.y23{bottom:1141.026480px;}
.y1{bottom:1143.900000px;}
.h2d{height:27.358500px;}
.h28{height:27.360000px;}
.h27{height:27.540000px;}
.h23{height:30.240000px;}
.h4{height:36.910195px;}
.h2{height:36.957305px;}
.h3{height:38.759766px;}
.h24{height:42.894141px;}
.h2c{height:44.090508px;}
.h6{height:46.089844px;}
.h5{height:47.344922px;}
.h7{height:47.545312px;}
.h2a{height:48.764711px;}
.h29{height:48.787031px;}
.h1b{height:48.871406px;}
.h18{height:53.708299px;}
.h1e{height:53.722699px;}
.hf{height:53.737099px;}
.h16{height:53.739979px;}
.hd{height:53.748619px;}
.h8{height:53.751499px;}
.hc{height:53.754379px;}
.h13{height:53.763019px;}
.he{height:53.765899px;}
.h10{height:53.768779px;}
.h12{height:53.771659px;}
.h1f{height:53.777419px;}
.hb{height:53.780299px;}
.h14{height:53.783179px;}
.h9{height:53.786059px;}
.h1c{height:53.788939px;}
.h11{height:53.794699px;}
.ha{height:53.797579px;}
.h20{height:53.809099px;}
.h1d{height:53.811979px;}
.h22{height:53.817739px;}
.h19{height:53.832139px;}
.h17{height:53.840779px;}
.h15{height:53.866699px;}
.h21{height:53.872459px;}
.h1a{height:53.979019px;}
.h26{height:54.898500px;}
.h2b{height:54.900000px;}
.h25{height:55.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:42.840000px;}
.w21{width:46.440000px;}
.w19{width:46.620000px;}
.wa{width:53.820000px;}
.w1e{width:58.320000px;}
.w20{width:58.680000px;}
.w1f{width:59.040000px;}
.wc{width:59.400000px;}
.wd{width:68.040000px;}
.wb{width:75.600000px;}
.w14{width:76.320000px;}
.we{width:78.118500px;}
.w16{width:78.660000px;}
.w15{width:78.840000px;}
.w18{width:80.820000px;}
.w1a{width:81.000000px;}
.w1c{width:81.721500px;}
.w13{width:82.440000px;}
.w5{width:89.281500px;}
.w4{width:89.458500px;}
.w3{width:110.520000px;}
.w7{width:129.420000px;}
.w8{width:135.000000px;}
.w9{width:146.158500px;}
.w12{width:154.980000px;}
.w11{width:155.160000px;}
.w10{width:158.760000px;}
.w17{width:165.780000px;}
.wf{width:185.040000px;}
.w1d{width:214.200000px;}
.w6{width:243.360000px;}
.w2{width:358.920000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x37{left:9.900000px;}
.x31{left:11.880000px;}
.x30{left:12.960000px;}
.x36{left:14.040000px;}
.x9{left:16.200000px;}
.x1e{left:18.180000px;}
.x1c{left:19.440000px;}
.x32{left:21.420000px;}
.x1d{left:22.860000px;}
.x15{left:24.660000px;}
.xf{left:25.920000px;}
.x18{left:27.360000px;}
.xb{left:30.240000px;}
.x17{left:32.400000px;}
.x1b{left:33.480000px;}
.x25{left:34.560000px;}
.xe{left:36.720000px;}
.xd{left:40.500000px;}
.x21{left:43.380000px;}
.x23{left:45.900000px;}
.x12{left:53.100000px;}
.x14{left:59.400000px;}
.x29{left:111.420000px;}
.x6{left:119.520000px;}
.x1{left:127.620000px;}
.x4{left:180.692640px;}
.x2a{left:277.200000px;}
.x1f{left:304.560000px;}
.x28{left:334.260000px;}
.x2b{left:358.020000px;}
.x10{left:362.880000px;}
.x24{left:387.000000px;}
.x33{left:392.040000px;}
.x2c{left:404.640000px;}
.x16{left:416.700000px;}
.x3{left:446.364720px;}
.x34{left:451.080000px;}
.x20{left:463.320000px;}
.x8{left:478.440000px;}
.x2d{left:485.460000px;}
.x11{left:492.300000px;}
.x35{left:509.760000px;}
.x26{left:542.160000px;}
.x19{left:551.700000px;}
.x2e{left:566.460000px;}
.xa{left:588.960000px;}
.x2f{left:609.300000px;}
.x22{left:618.480000px;}
.x13{left:627.300000px;}
.xc{left:678.420000px;}
.x1a{left:695.340000px;}
.x27{left:697.140000px;}
.x5{left:748.620000px;}
.x2{left:757.080000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.135360pt;}
.ls34{letter-spacing:-0.883200pt;}
.ls20{letter-spacing:-0.824320pt;}
.lsd{letter-spacing:-0.765440pt;}
.ls21{letter-spacing:-0.706560pt;}
.ls1a{letter-spacing:-0.647680pt;}
.lsf{letter-spacing:-0.588800pt;}
.ls1b{letter-spacing:-0.529920pt;}
.ls18{letter-spacing:-0.471040pt;}
.lse{letter-spacing:-0.412160pt;}
.ls4a{letter-spacing:-0.371840pt;}
.ls19{letter-spacing:-0.353280pt;}
.ls17{letter-spacing:-0.294400pt;}
.ls1f{letter-spacing:-0.259840pt;}
.ls6{letter-spacing:-0.257280pt;}
.ls4b{letter-spacing:-0.241920pt;}
.ls9{letter-spacing:-0.235520pt;}
.ls4{letter-spacing:-0.214400pt;}
.ls48{letter-spacing:-0.212480pt;}
.ls10{letter-spacing:-0.176640pt;}
.ls5{letter-spacing:-0.171520pt;}
.lsb{letter-spacing:-0.117760pt;}
.ls46{letter-spacing:-0.106240pt;}
.lsa{letter-spacing:-0.058880pt;}
.ls47{letter-spacing:-0.053120pt;}
.ls8{letter-spacing:-0.042880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.010240pt;}
.ls42{letter-spacing:0.011776pt;}
.ls39{letter-spacing:0.017920pt;}
.ls25{letter-spacing:0.023040pt;}
.ls23{letter-spacing:0.025600pt;}
.ls30{letter-spacing:0.029440pt;}
.ls3b{letter-spacing:0.030720pt;}
.ls37{letter-spacing:0.038400pt;}
.ls1{letter-spacing:0.042880pt;}
.ls44{letter-spacing:0.052480pt;}
.ls54{letter-spacing:0.053120pt;}
.ls36{letter-spacing:0.056320pt;}
.ls53{letter-spacing:0.056960pt;}
.ls13{letter-spacing:0.058880pt;}
.ls1e{letter-spacing:0.071680pt;}
.ls3a{letter-spacing:0.079360pt;}
.ls15{letter-spacing:0.088320pt;}
.ls2d{letter-spacing:0.094208pt;}
.ls41{letter-spacing:0.100096pt;}
.ls2b{letter-spacing:0.105984pt;}
.ls2{letter-spacing:0.117760pt;}
.ls2c{letter-spacing:0.122880pt;}
.ls2e{letter-spacing:0.123648pt;}
.ls33{letter-spacing:0.129536pt;}
.ls29{letter-spacing:0.147200pt;}
.ls45{letter-spacing:0.159360pt;}
.ls14{letter-spacing:0.164864pt;}
.ls26{letter-spacing:0.168960pt;}
.ls1c{letter-spacing:0.176640pt;}
.ls24{letter-spacing:0.182528pt;}
.ls35{letter-spacing:0.188416pt;}
.ls2a{letter-spacing:0.194304pt;}
.ls2f{letter-spacing:0.206080pt;}
.ls52{letter-spacing:0.212480pt;}
.ls7{letter-spacing:0.214400pt;}
.ls12{letter-spacing:0.217856pt;}
.ls3c{letter-spacing:0.229632pt;}
.lsc{letter-spacing:0.235520pt;}
.ls27{letter-spacing:0.241408pt;}
.ls4c{letter-spacing:0.244480pt;}
.ls3e{letter-spacing:0.259072pt;}
.ls49{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.274432pt;}
.ls11{letter-spacing:0.294400pt;}
.ls32{letter-spacing:0.300288pt;}
.ls3f{letter-spacing:0.306176pt;}
.ls3d{letter-spacing:0.323840pt;}
.ls16{letter-spacing:0.353280pt;}
.ls1d{letter-spacing:0.366080pt;}
.ls22{letter-spacing:0.371200pt;}
.ls31{letter-spacing:0.896000pt;}
.ls43{letter-spacing:1.149440pt;}
.ls40{letter-spacing:3.944960pt;}
.ls51{letter-spacing:169.771520pt;}
.ls50{letter-spacing:170.408960pt;}
.ls28{letter-spacing:175.521280pt;}
.ls4d{letter-spacing:176.783360pt;}
.ls4f{letter-spacing:183.848320pt;}
.ls4e{letter-spacing:184.485760pt;}
.ws3d{word-spacing:-13.660160pt;}
.ws33{word-spacing:-13.601280pt;}
.ws1b{word-spacing:-13.542400pt;}
.ws1f{word-spacing:-13.483520pt;}
.ws8{word-spacing:-13.424640pt;}
.ws1c{word-spacing:-13.365760pt;}
.ws4{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.248000pt;}
.ws30{word-spacing:-13.189120pt;}
.ws7{word-spacing:-13.130240pt;}
.ws6{word-spacing:-13.071360pt;}
.ws37{word-spacing:-13.012480pt;}
.ws1a{word-spacing:-12.953600pt;}
.ws35{word-spacing:-12.894720pt;}
.ws32{word-spacing:-12.835840pt;}
.ws1e{word-spacing:-12.776960pt;}
.ws3a{word-spacing:-12.718080pt;}
.ws1d{word-spacing:-12.659200pt;}
.ws2a{word-spacing:-12.600320pt;}
.ws38{word-spacing:-12.541440pt;}
.ws34{word-spacing:-12.482560pt;}
.ws3c{word-spacing:-12.423680pt;}
.ws56{word-spacing:-12.270720pt;}
.ws60{word-spacing:-12.217600pt;}
.ws4d{word-spacing:-12.164480pt;}
.ws5f{word-spacing:-12.058240pt;}
.ws4e{word-spacing:-12.005120pt;}
.ws4b{word-spacing:-11.952000pt;}
.ws4a{word-spacing:-11.898880pt;}
.ws4c{word-spacing:-11.792640pt;}
.ws3{word-spacing:-11.363200pt;}
.ws1{word-spacing:-11.148800pt;}
.ws0{word-spacing:-10.934400pt;}
.ws2{word-spacing:-10.848000pt;}
.ws29{word-spacing:-8.760320pt;}
.ws27{word-spacing:-8.389120pt;}
.ws28{word-spacing:-8.129280pt;}
.ws4f{word-spacing:-7.568640pt;}
.ws3e{word-spacing:-0.824320pt;}
.ws15{word-spacing:-0.765440pt;}
.ws25{word-spacing:-0.647680pt;}
.ws47{word-spacing:-0.588800pt;}
.ws39{word-spacing:-0.529920pt;}
.wse{word-spacing:-0.471680pt;}
.ws14{word-spacing:-0.471040pt;}
.ws49{word-spacing:-0.412160pt;}
.ws36{word-spacing:-0.353280pt;}
.ws26{word-spacing:-0.294400pt;}
.ws59{word-spacing:-0.265600pt;}
.ws9{word-spacing:-0.257280pt;}
.ws2d{word-spacing:-0.235520pt;}
.ws19{word-spacing:-0.176640pt;}
.ws61{word-spacing:-0.159360pt;}
.ws20{word-spacing:-0.117760pt;}
.ws53{word-spacing:-0.106240pt;}
.wsc{word-spacing:-0.085760pt;}
.ws2e{word-spacing:-0.058880pt;}
.ws5e{word-spacing:-0.053120pt;}
.wsb{word-spacing:-0.042880pt;}
.wsa{word-spacing:0.000000pt;}
.wsf{word-spacing:0.042880pt;}
.ws5d{word-spacing:0.053120pt;}
.ws23{word-spacing:0.058880pt;}
.ws13{word-spacing:0.117760pt;}
.ws11{word-spacing:0.176640pt;}
.ws54{word-spacing:0.212480pt;}
.ws12{word-spacing:0.235520pt;}
.wsd{word-spacing:0.257280pt;}
.ws2b{word-spacing:0.259840pt;}
.ws5c{word-spacing:0.265600pt;}
.ws24{word-spacing:0.294400pt;}
.ws10{word-spacing:0.353280pt;}
.ws52{word-spacing:0.371840pt;}
.ws21{word-spacing:0.412160pt;}
.ws22{word-spacing:0.471040pt;}
.ws17{word-spacing:0.529920pt;}
.ws18{word-spacing:0.588800pt;}
.ws3b{word-spacing:0.647680pt;}
.ws2f{word-spacing:0.706560pt;}
.ws16{word-spacing:0.765440pt;}
.ws2c{word-spacing:0.824320pt;}
.ws42{word-spacing:0.883200pt;}
.ws31{word-spacing:0.942080pt;}
.ws55{word-spacing:1.168640pt;}
.ws3f{word-spacing:1.295360pt;}
.ws41{word-spacing:1.354240pt;}
.ws5b{word-spacing:1.487360pt;}
.ws40{word-spacing:1.648640pt;}
.ws57{word-spacing:2.443520pt;}
.ws50{word-spacing:2.921600pt;}
.ws44{word-spacing:3.591680pt;}
.ws45{word-spacing:3.650560pt;}
.ws43{word-spacing:4.003840pt;}
.ws51{word-spacing:6.268160pt;}
.ws48{word-spacing:13.012480pt;}
.ws5a{word-spacing:25.497600pt;}
.ws46{word-spacing:31.559680pt;}
.ws58{word-spacing:65.815680pt;}
._2{margin-left:-1.891008pt;}
._0{margin-left:-0.921920pt;}
._1{width:1.023040pt;}
._3{width:1.954816pt;}
._4{width:3.238400pt;}
._5{width:4.152960pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y170{bottom:11.519867pt;}
.y16a{bottom:11.520000pt;}
.y168{bottom:11.680000pt;}
.y15f{bottom:12.960000pt;}
.y160{bottom:14.080000pt;}
.y165{bottom:36.000000pt;}
.y162{bottom:36.160000pt;}
.y22{bottom:67.205120pt;}
.y21{bottom:101.120000pt;}
.y20{bottom:104.782720pt;}
.y1ae{bottom:122.400000pt;}
.y1f{bottom:130.704640pt;}
.yaf{bottom:137.261440pt;}
.ye1{bottom:137.262080pt;}
.y3e{bottom:141.379200pt;}
.y1ad{bottom:146.880000pt;}
.ycf{bottom:150.499840pt;}
.y112{bottom:150.503040pt;}
.yb9{bottom:150.505600pt;}
.y67{bottom:150.538240pt;}
.yff{bottom:150.545280pt;}
.y53{bottom:150.552960pt;}
.y79{bottom:150.556160pt;}
.y15c{bottom:162.031360pt;}
.y1e{bottom:164.619520pt;}
.y1ac{bottom:171.200000pt;}
.yae{bottom:173.104640pt;}
.ye0{bottom:173.105280pt;}
.y142{bottom:175.308800pt;}
.y3d{bottom:177.222400pt;}
.yf3{bottom:177.269120pt;}
.y12f{bottom:178.032000pt;}
.y14c{bottom:180.593280pt;}
.yce{bottom:186.343040pt;}
.y111{bottom:186.346240pt;}
.yb8{bottom:186.348800pt;}
.y66{bottom:186.381440pt;}
.yfe{bottom:186.388480pt;}
.y52{bottom:186.396160pt;}
.y78{bottom:186.399360pt;}
.y1d{bottom:190.541440pt;}
.y11f{bottom:195.493760pt;}
.y8a{bottom:195.504640pt;}
.y1ab{bottom:195.680000pt;}
.y15b{bottom:197.712640pt;}
.y9a{bottom:199.673600pt;}
.yad{bottom:208.947840pt;}
.ydf{bottom:208.948480pt;}
.y141{bottom:211.152000pt;}
.y3c{bottom:213.065600pt;}
.yf2{bottom:213.112320pt;}
.y12e{bottom:213.713280pt;}
.y14b{bottom:216.436480pt;}
.y1c{bottom:216.463360pt;}
.y1aa{bottom:220.000000pt;}
.ycd{bottom:222.186240pt;}
.y110{bottom:222.189440pt;}
.yb7{bottom:222.192000pt;}
.yfd{bottom:222.231680pt;}
.y51{bottom:222.239360pt;}
.y11e{bottom:231.336960pt;}
.y65{bottom:235.502080pt;}
.y77{bottom:235.509120pt;}
.y99{bottom:235.516800pt;}
.y1b{bottom:242.385280pt;}
.y1a9{bottom:244.480000pt;}
.y89{bottom:244.625280pt;}
.yac{bottom:244.629120pt;}
.yde{bottom:244.629760pt;}
.y3b{bottom:248.908800pt;}
.yf1{bottom:248.955520pt;}
.y15a{bottom:249.556480pt;}
.ycc{bottom:258.029440pt;}
.y10f{bottom:258.032640pt;}
.yfc{bottom:258.074880pt;}
.y140{bottom:260.272640pt;}
.y12d{bottom:265.557120pt;}
.y11d{bottom:267.180160pt;}
.y1a{bottom:268.307200pt;}
.y1a8{bottom:268.960000pt;}
.yb6{bottom:271.312640pt;}
.y64{bottom:271.345280pt;}
.y98{bottom:271.345920pt;}
.y76{bottom:271.352320pt;}
.y50{bottom:271.356800pt;}
.y88{bottom:280.468480pt;}
.yab{bottom:280.472320pt;}
.ydd{bottom:280.472960pt;}
.y3a{bottom:284.590080pt;}
.yf0{bottom:284.636800pt;}
.y159{bottom:285.399680pt;}
.y1a7{bottom:293.280000pt;}
.ycb{bottom:293.710720pt;}
.y10e{bottom:293.713920pt;}
.yfb{bottom:293.756160pt;}
.y19{bottom:294.229120pt;}
.y13f{bottom:296.115840pt;}
.y12c{bottom:301.400320pt;}
.yb5{bottom:307.155840pt;}
.y63{bottom:307.188480pt;}
.y97{bottom:307.189120pt;}
.y4f{bottom:307.195520pt;}
.y11c{bottom:316.300800pt;}
.y87{bottom:316.311680pt;}
.ydc{bottom:316.316160pt;}
.y1a6{bottom:318.400000pt;}
.y18{bottom:319.989120pt;}
.y39{bottom:320.433280pt;}
.yef{bottom:320.462720pt;}
.y158{bottom:321.242880pt;}
.yca{bottom:329.553920pt;}
.y10d{bottom:329.557120pt;}
.yaa{bottom:329.592960pt;}
.yfa{bottom:329.599360pt;}
.y1a5{bottom:342.720000pt;}
.yb4{bottom:342.999040pt;}
.y62{bottom:343.031680pt;}
.y96{bottom:343.032320pt;}
.y4e{bottom:343.038720pt;}
.y17{bottom:345.911040pt;}
.y13e{bottom:347.959680pt;}
.y14a{bottom:350.520960pt;}
.ydb{bottom:352.159360pt;}
.y12b{bottom:353.244160pt;}
.y38{bottom:356.276480pt;}
.yee{bottom:356.305920pt;}
.y16{bottom:363.825280pt;}
.yc9{bottom:365.397120pt;}
.y10c{bottom:365.400320pt;}
.y11b{bottom:365.421440pt;}
.y86{bottom:365.432320pt;}
.y1a4{bottom:367.200000pt;}
.y157{bottom:373.086720pt;}
.yb3{bottom:378.680320pt;}
.y4d{bottom:378.709760pt;}
.y61{bottom:378.712960pt;}
.y75{bottom:378.713600pt;}
.yf9{bottom:378.720000pt;}
.y13d{bottom:383.640960pt;}
.y149{bottom:386.364160pt;}
.y12a{bottom:389.087360pt;}
.y15{bottom:389.747200pt;}
.y1a3{bottom:391.680000pt;}
.y37{bottom:392.119680pt;}
.yed{bottom:392.149120pt;}
.yc8{bottom:401.240320pt;}
.y10b{bottom:401.243520pt;}
.y11a{bottom:401.264640pt;}
.y85{bottom:401.275520pt;}
.y156{bottom:408.768000pt;}
.yb2{bottom:414.523520pt;}
.y4c{bottom:414.552960pt;}
.y74{bottom:414.556800pt;}
.y14{bottom:415.669120pt;}
.y1a2{bottom:416.000000pt;}
.y13c{bottom:419.484160pt;}
.y129{bottom:424.768640pt;}
.y36{bottom:427.962880pt;}
.yf8{bottom:427.987840pt;}
.yec{bottom:427.992320pt;}
.y60{bottom:427.995520pt;}
.y10a{bottom:437.086720pt;}
.y84{bottom:437.118720pt;}
.y148{bottom:438.208000pt;}
.y1a1{bottom:440.480000pt;}
.y13{bottom:449.584000pt;}
.yc7{bottom:450.360960pt;}
.yb1{bottom:450.366720pt;}
.y119{bottom:450.385280pt;}
.ya9{bottom:450.385920pt;}
.y95{bottom:450.391680pt;}
.y73{bottom:450.393600pt;}
.y4b{bottom:450.396160pt;}
.y155{bottom:460.611840pt;}
.y35{bottom:463.644160pt;}
.yf7{bottom:463.669120pt;}
.yeb{bottom:463.673600pt;}
.y5f{bottom:463.676800pt;}
.y1a0{bottom:464.800000pt;}
.y13b{bottom:468.604800pt;}
.y83{bottom:472.770560pt;}
.yda{bottom:472.782720pt;}
.y147{bottom:474.051200pt;}
.y12{bottom:475.505920pt;}
.y128{bottom:476.612480pt;}
.yc6{bottom:486.204160pt;}
.y109{bottom:486.207360pt;}
.yb0{bottom:486.209920pt;}
.ya8{bottom:486.229120pt;}
.y94{bottom:486.234880pt;}
.y72{bottom:486.236800pt;}
.y4a{bottom:486.239360pt;}
.y19f{bottom:489.280000pt;}
.y154{bottom:496.455040pt;}
.y34{bottom:499.487360pt;}
.y118{bottom:499.505920pt;}
.y5e{bottom:499.512320pt;}
.yea{bottom:499.516800pt;}
.y11{bottom:501.427840pt;}
.y13a{bottom:504.448000pt;}
.y82{bottom:508.613760pt;}
.yd9{bottom:508.625920pt;}
.y146{bottom:509.732480pt;}
.y127{bottom:512.455680pt;}
.y19e{bottom:514.400000pt;}
.yc5{bottom:522.047360pt;}
.y71{bottom:522.071680pt;}
.ya7{bottom:522.072320pt;}
.y10{bottom:527.349760pt;}
.y108{bottom:535.328000pt;}
.y33{bottom:535.330560pt;}
.y49{bottom:535.345920pt;}
.y117{bottom:535.349120pt;}
.y5d{bottom:535.355520pt;}
.y19d{bottom:539.360000pt;}
.y81{bottom:544.456960pt;}
.yd8{bottom:544.469120pt;}
.y153{bottom:545.575680pt;}
.y1b9{bottom:546.718720pt;}
.yf{bottom:553.271680pt;}
.y139{bottom:556.291840pt;}
.yc4{bottom:557.728640pt;}
.y70{bottom:557.752960pt;}
.ya6{bottom:557.753600pt;}
.y145{bottom:558.853120pt;}
.y126{bottom:561.576320pt;}
.y19c{bottom:563.840000pt;}
.y107{bottom:571.171200pt;}
.y32{bottom:571.173760pt;}
.y48{bottom:571.189120pt;}
.y116{bottom:571.192320pt;}
.y5c{bottom:571.198720pt;}
.ye{bottom:579.193600pt;}
.y80{bottom:580.300160pt;}
.yd7{bottom:580.312320pt;}
.y152{bottom:581.418880pt;}
.y19b{bottom:588.320000pt;}
.y138{bottom:592.135040pt;}
.yc3{bottom:593.571840pt;}
.y6f{bottom:593.596160pt;}
.ya5{bottom:593.596800pt;}
.y144{bottom:594.696320pt;}
.y1b8{bottom:595.839360pt;}
.y125{bottom:597.419520pt;}
.yd{bottom:604.953600pt;}
.yf6{bottom:606.849280pt;}
.y106{bottom:606.852480pt;}
.y31{bottom:606.855040pt;}
.y93{bottom:606.856320pt;}
.ye9{bottom:606.863360pt;}
.y5b{bottom:606.866560pt;}
.y47{bottom:606.870400pt;}
.y115{bottom:606.873600pt;}
.y19a{bottom:612.640000pt;}
.yd6{bottom:616.155520pt;}
.ya4{bottom:629.418240pt;}
.y7f{bottom:629.420800pt;}
.y6e{bottom:629.439360pt;}
.y151{bottom:633.262720pt;}
.y199{bottom:637.120000pt;}
.yc2{bottom:642.692480pt;}
.y105{bottom:642.695680pt;}
.y30{bottom:642.698240pt;}
.y92{bottom:642.699520pt;}
.ye8{bottom:642.706560pt;}
.y5a{bottom:642.709760pt;}
.y46{bottom:642.713600pt;}
.y114{bottom:642.716800pt;}
.y137{bottom:643.816960pt;}
.y1b7{bottom:644.960000pt;}
.y124{bottom:649.263360pt;}
.y17f{bottom:650.564960pt;}
.yd5{bottom:651.836800pt;}
.y172{bottom:652.324960pt;}
.yc{bottom:654.236160pt;}
.y1b6{bottom:659.520000pt;}
.y198{bottom:661.440000pt;}
.ya3{bottom:665.261440pt;}
.y150{bottom:669.105920pt;}
.y17e{bottom:675.040000pt;}
.y171{bottom:676.800000pt;}
.yc1{bottom:678.535680pt;}
.y104{bottom:678.538880pt;}
.y2f{bottom:678.541440pt;}
.y91{bottom:678.542720pt;}
.y6d{bottom:678.545920pt;}
.ye7{bottom:678.549760pt;}
.y59{bottom:678.552960pt;}
.y45{bottom:678.556800pt;}
.y136{bottom:679.660160pt;}
.y18c{bottom:681.759360pt;}
.y15d{bottom:682.383360pt;}
.y1b5{bottom:684.000000pt;}
.y123{bottom:685.106560pt;}
.y197{bottom:685.920000pt;}
.yd4{bottom:687.667840pt;}
.y17c{bottom:688.480000pt;}
.yb{bottom:689.917440pt;}
.y16f{bottom:690.240000pt;}
.y17d{bottom:700.000000pt;}
.ya2{bottom:701.104640pt;}
.y1b4{bottom:708.960000pt;}
.y196{bottom:710.400000pt;}
.yc0{bottom:714.378880pt;}
.y103{bottom:714.382080pt;}
.y2e{bottom:714.384640pt;}
.y90{bottom:714.385920pt;}
.y44{bottom:714.388480pt;}
.y6c{bottom:714.389120pt;}
.ye6{bottom:714.392960pt;}
.y58{bottom:714.396160pt;}
.y16e{bottom:715.360000pt;}
.y135{bottom:715.503360pt;}
.y14f{bottom:718.226560pt;}
.yd3{bottom:723.511040pt;}
.y7e{bottom:727.662080pt;}
.y18b{bottom:730.880000pt;}
.y1b3{bottom:733.440000pt;}
.y122{bottom:734.227200pt;}
.y195{bottom:735.360000pt;}
.ya1{bottom:736.785920pt;}
.y17a{bottom:737.920000pt;}
.ya{bottom:739.200000pt;}
.y16d{bottom:740.320000pt;}
.y18a{bottom:745.440000pt;}
.y17b{bottom:749.600000pt;}
.ybf{bottom:750.222080pt;}
.y102{bottom:750.225280pt;}
.y2d{bottom:750.227840pt;}
.y8f{bottom:750.229120pt;}
.y43{bottom:750.231680pt;}
.y6b{bottom:750.232320pt;}
.y57{bottom:750.239360pt;}
.y14e{bottom:753.907840pt;}
.y1b2{bottom:757.760000pt;}
.y194{bottom:759.840000pt;}
.y7d{bottom:763.505280pt;}
.ye5{bottom:763.513600pt;}
.y16c{bottom:765.440000pt;}
.y134{bottom:767.347200pt;}
.y121{bottom:769.908480pt;}
.y189{bottom:769.920000pt;}
.ya0{bottom:772.629120pt;}
.yd2{bottom:772.631680pt;}
.y1b1{bottom:782.880000pt;}
.y9{bottom:784.000000pt;}
.y193{bottom:784.320000pt;}
.ybe{bottom:785.903360pt;}
.y101{bottom:785.906560pt;}
.y2c{bottom:785.909120pt;}
.y8e{bottom:785.910400pt;}
.y42{bottom:785.912960pt;}
.y6a{bottom:785.913600pt;}
.y179{bottom:787.360000pt;}
.y16b{bottom:790.560000pt;}
.y188{bottom:794.240000pt;}
.y7c{bottom:799.348480pt;}
.y56{bottom:799.352320pt;}
.ye4{bottom:799.356800pt;}
.y133{bottom:803.190400pt;}
.y120{bottom:805.751680pt;}
.y1b0{bottom:808.000000pt;}
.y9f{bottom:808.472320pt;}
.yd1{bottom:808.474880pt;}
.y192{bottom:808.640000pt;}
.y178{bottom:812.480000pt;}
.y8{bottom:813.120000pt;}
.y169{bottom:815.680000pt;}
.y187{bottom:819.360000pt;}
.ybd{bottom:821.746560pt;}
.y100{bottom:821.749760pt;}
.y2b{bottom:821.752320pt;}
.y8d{bottom:821.753600pt;}
.y41{bottom:821.756160pt;}
.y69{bottom:821.756800pt;}
.y1af{bottom:832.480000pt;}
.y191{bottom:833.120000pt;}
.y7b{bottom:835.191680pt;}
.y55{bottom:835.195520pt;}
.ye3{bottom:835.198720pt;}
.y176{bottom:837.600000pt;}
.y132{bottom:838.871680pt;}
.y167{bottom:840.640000pt;}
.y14d{bottom:841.594880pt;}
.y7{bottom:842.240000pt;}
.yd0{bottom:844.318080pt;}
.y184{bottom:844.480000pt;}
.y177{bottom:849.120000pt;}
.y143{bottom:854.872320pt;}
.y185{bottom:856.160000pt;}
.y190{bottom:857.440000pt;}
.ybc{bottom:857.589760pt;}
.y9e{bottom:857.592960pt;}
.y2a{bottom:857.595520pt;}
.y8c{bottom:857.596800pt;}
.y68{bottom:857.599360pt;}
.y164{bottom:865.760000pt;}
.y186{bottom:868.320000pt;}
.ye2{bottom:870.870400pt;}
.y7a{bottom:870.872960pt;}
.y40{bottom:870.876800pt;}
.y6{bottom:871.200000pt;}
.y166{bottom:877.440000pt;}
.y18f{bottom:881.920000pt;}
.y175{bottom:887.040000pt;}
.y131{bottom:890.715520pt;}
.y183{bottom:893.280000pt;}
.yf5{bottom:893.432960pt;}
.y29{bottom:893.438720pt;}
.y5{bottom:900.320000pt;}
.y18e{bottom:906.240000pt;}
.ybb{bottom:906.710400pt;}
.y9d{bottom:906.713600pt;}
.y3f{bottom:906.716160pt;}
.y54{bottom:906.716800pt;}
.y174{bottom:912.160000pt;}
.y161{bottom:915.200000pt;}
.y182{bottom:917.760000pt;}
.y130{bottom:926.558720pt;}
.y163{bottom:926.880000pt;}
.yf4{bottom:929.276160pt;}
.y8b{bottom:929.281920pt;}
.y4{bottom:929.600000pt;}
.y18d{bottom:931.360000pt;}
.y26{bottom:936.480000pt;}
.y173{bottom:937.280000pt;}
.yba{bottom:942.553600pt;}
.y9c{bottom:942.556800pt;}
.y28{bottom:942.559360pt;}
.y181{bottom:942.720000pt;}
.y3{bottom:958.560000pt;}
.y25{bottom:962.401920pt;}
.y15e{bottom:964.800000pt;}
.y113{bottom:964.963200pt;}
.y180{bottom:967.840000pt;}
.y9b{bottom:978.396800pt;}
.y27{bottom:978.402560pt;}
.y2{bottom:987.680000pt;}
.y24{bottom:988.323840pt;}
.y23{bottom:1014.245760pt;}
.y1{bottom:1016.800000pt;}
.h2d{height:24.318667pt;}
.h28{height:24.320000pt;}
.h27{height:24.480000pt;}
.h23{height:26.880000pt;}
.h4{height:32.809062pt;}
.h2{height:32.850938pt;}
.h3{height:34.453125pt;}
.h24{height:38.128125pt;}
.h2c{height:39.191562pt;}
.h6{height:40.968750pt;}
.h5{height:42.084375pt;}
.h7{height:42.262500pt;}
.h2a{height:43.346410pt;}
.h29{height:43.366250pt;}
.h1b{height:43.441250pt;}
.h18{height:47.740710pt;}
.h1e{height:47.753510pt;}
.hf{height:47.766310pt;}
.h16{height:47.768870pt;}
.hd{height:47.776550pt;}
.h8{height:47.779110pt;}
.hc{height:47.781670pt;}
.h13{height:47.789350pt;}
.he{height:47.791910pt;}
.h10{height:47.794470pt;}
.h12{height:47.797030pt;}
.h1f{height:47.802150pt;}
.hb{height:47.804710pt;}
.h14{height:47.807270pt;}
.h9{height:47.809830pt;}
.h1c{height:47.812390pt;}
.h11{height:47.817510pt;}
.ha{height:47.820070pt;}
.h20{height:47.830310pt;}
.h1d{height:47.832870pt;}
.h22{height:47.837990pt;}
.h19{height:47.850790pt;}
.h17{height:47.858470pt;}
.h15{height:47.881510pt;}
.h21{height:47.886630pt;}
.h1a{height:47.981350pt;}
.h26{height:48.798667pt;}
.h2b{height:48.800000pt;}
.h25{height:48.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:38.080000pt;}
.w21{width:41.280000pt;}
.w19{width:41.440000pt;}
.wa{width:47.840000pt;}
.w1e{width:51.840000pt;}
.w20{width:52.160000pt;}
.w1f{width:52.480000pt;}
.wc{width:52.800000pt;}
.wd{width:60.480000pt;}
.wb{width:67.200000pt;}
.w14{width:67.840000pt;}
.we{width:69.438667pt;}
.w16{width:69.920000pt;}
.w15{width:70.080000pt;}
.w18{width:71.840000pt;}
.w1a{width:72.000000pt;}
.w1c{width:72.641333pt;}
.w13{width:73.280000pt;}
.w5{width:79.361333pt;}
.w4{width:79.518667pt;}
.w3{width:98.240000pt;}
.w7{width:115.040000pt;}
.w8{width:120.000000pt;}
.w9{width:129.918667pt;}
.w12{width:137.760000pt;}
.w11{width:137.920000pt;}
.w10{width:141.120000pt;}
.w17{width:147.360000pt;}
.wf{width:164.480000pt;}
.w1d{width:190.400000pt;}
.w6{width:216.320000pt;}
.w2{width:319.040000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x37{left:8.800000pt;}
.x31{left:10.560000pt;}
.x30{left:11.520000pt;}
.x36{left:12.480000pt;}
.x9{left:14.400000pt;}
.x1e{left:16.160000pt;}
.x1c{left:17.280000pt;}
.x32{left:19.040000pt;}
.x1d{left:20.320000pt;}
.x15{left:21.920000pt;}
.xf{left:23.040000pt;}
.x18{left:24.320000pt;}
.xb{left:26.880000pt;}
.x17{left:28.800000pt;}
.x1b{left:29.760000pt;}
.x25{left:30.720000pt;}
.xe{left:32.640000pt;}
.xd{left:36.000000pt;}
.x21{left:38.560000pt;}
.x23{left:40.800000pt;}
.x12{left:47.200000pt;}
.x14{left:52.800000pt;}
.x29{left:99.040000pt;}
.x6{left:106.240000pt;}
.x1{left:113.440000pt;}
.x4{left:160.615680pt;}
.x2a{left:246.400000pt;}
.x1f{left:270.720000pt;}
.x28{left:297.120000pt;}
.x2b{left:318.240000pt;}
.x10{left:322.560000pt;}
.x24{left:344.000000pt;}
.x33{left:348.480000pt;}
.x2c{left:359.680000pt;}
.x16{left:370.400000pt;}
.x3{left:396.768640pt;}
.x34{left:400.960000pt;}
.x20{left:411.840000pt;}
.x8{left:425.280000pt;}
.x2d{left:431.520000pt;}
.x11{left:437.600000pt;}
.x35{left:453.120000pt;}
.x26{left:481.920000pt;}
.x19{left:490.400000pt;}
.x2e{left:503.520000pt;}
.xa{left:523.520000pt;}
.x2f{left:541.600000pt;}
.x22{left:549.760000pt;}
.x13{left:557.600000pt;}
.xc{left:603.040000pt;}
.x1a{left:618.080000pt;}
.x27{left:619.680000pt;}
.x5{left:665.440000pt;}
.x2{left:672.960000pt;}
}




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