
    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_b54e31479a27bbb12c1edfde.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120000;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_79bebbcd3581608a15e7192a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_5a2b6cff5e57c2e898468f3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120000;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_4aa977e43379eed785b5f10d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.170000;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_8fa6ca50c2b863c040ac3468.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_f9b0311c3e8404a0b1d12365.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.170000;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7cd362f800fdbf995b3706c7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_68eadd7ad6fa968b83d45836.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.119000;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:ffb;src:url('chunks/assets/font_7e02c7df3d430c8cb9b3ed4b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.119000;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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:ffd;src:url('chunks/assets/font_a7a5fe8fed297ccfbab7825a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.063477;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:ffe;src:url('chunks/assets/font_b36a0228bc5891a84d3bcaab.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.087891;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:fff;src:url('chunks/assets/font_f7707885d4bc419fb78bc25e.woff2')format("woff");}.fff{font-family:fff;line-height:1.087891;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:ff10;src:url('chunks/assets/font_7c0cef104c0c12317e6977e4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.752441;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.v7{vertical-align:42.480000px;}
.v5{vertical-align:49.680000px;}
.v6{vertical-align:72.000000px;}
.ls20{letter-spacing:-3.618000px;}
.ls22{letter-spacing:-1.464000px;}
.ls25{letter-spacing:-0.708000px;}
.ls16{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.115800px;}
.ls24{letter-spacing:-0.114000px;}
.ls5{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.008640px;}
.ls1e{letter-spacing:0.041520px;}
.ls14{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.123600px;}
.ls12{letter-spacing:0.129600px;}
.ls10{letter-spacing:0.133200px;}
.ls4{letter-spacing:0.135360px;}
.ls15{letter-spacing:0.152640px;}
.ls21{letter-spacing:0.156960px;}
.lsb{letter-spacing:0.157200px;}
.ls6{letter-spacing:0.199440px;}
.ls3{letter-spacing:0.202800px;}
.ls9{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.320400px;}
.ls1f{letter-spacing:0.352080px;}
.lsf{letter-spacing:0.357000px;}
.ls11{letter-spacing:0.432000px;}
.ls1b{letter-spacing:1.004400px;}
.lse{letter-spacing:2.140560px;}
.ls17{letter-spacing:3.558960px;}
.ls19{letter-spacing:17.600400px;}
.ls1c{letter-spacing:18.472080px;}
.lsa{letter-spacing:38.140560px;}
.ls13{letter-spacing:45.701280px;}
.ls2{letter-spacing:123.624000px;}
.ls7{letter-spacing:834.276000px;}
.ls1{letter-spacing:837.678720px;}
.ls23{letter-spacing:840.761280px;}
.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;}
}
.ws5{word-spacing:-25.236000px;}
.ws6{word-spacing:-24.948000px;}
.wsa{word-spacing:-22.477560px;}
.ws2{word-spacing:-22.323360px;}
.wsb{word-spacing:-22.253760px;}
.ws8{word-spacing:-22.244160px;}
.ws3{word-spacing:-22.120560px;}
.ws1{word-spacing:-22.111920px;}
.ws9{word-spacing:-22.004760px;}
.ws14{word-spacing:-19.468080px;}
.ws7{word-spacing:-19.459440px;}
.ws15{word-spacing:-19.345440px;}
.ws16{word-spacing:-18.751440px;}
.ws12{word-spacing:-18.532800px;}
.ws10{word-spacing:-18.273000px;}
.ws13{word-spacing:-17.995440px;}
.wsd{word-spacing:-17.100720px;}
.wsf{word-spacing:-16.632000px;}
.wse{word-spacing:-16.344000px;}
.ws4{word-spacing:-12.474000px;}
.wsc{word-spacing:-0.180720px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:13.582800px;}
._11{margin-left:-20.657040px;}
._7{margin-left:-19.465440px;}
._c{margin-left:-18.110160px;}
._9{margin-left:-17.109360px;}
._10{margin-left:-15.156720px;}
._a{margin-left:-14.104560px;}
._6{margin-left:-9.877920px;}
._51{margin-left:-8.236080px;}
._5{margin-left:-6.894720px;}
._1b{margin-left:-5.760000px;}
._b{margin-left:-4.554000px;}
._17{margin-left:-2.985600px;}
._0{margin-left:-1.723680px;}
._1{width:1.053360px;}
._2{width:2.657040px;}
._f{width:3.905520px;}
._18{width:5.478960px;}
._d{width:7.196880px;}
._e{width:8.292240px;}
._1c{width:9.940320px;}
._1f{width:11.037360px;}
._19{width:12.544560px;}
._1a{width:13.635840px;}
._1d{width:15.117840px;}
._2a{width:16.212960px;}
._15{width:17.236800px;}
._14{width:18.768960px;}
._4e{width:19.988400px;}
._29{width:21.144240px;}
._35{width:22.485600px;}
._2c{width:23.671440px;}
._21{width:24.721200px;}
._20{width:26.367120px;}
._22{width:28.388880px;}
._2b{width:29.568240px;}
._1e{width:30.916080px;}
._25{width:32.516640px;}
._26{width:33.611760px;}
._36{width:34.706880px;}
._2e{width:36.696480px;}
._23{width:37.992240px;}
._24{width:40.098240px;}
._13{width:41.847120px;}
._12{width:43.283520px;}
._16{width:44.719920px;}
._3e{width:45.820080px;}
._3{width:47.305440px;}
._4{width:48.837600px;}
._27{width:49.870080px;}
._28{width:50.896080px;}
._3f{width:52.486560px;}
._46{width:53.579520px;}
._39{width:54.924480px;}
._3a{width:55.927680px;}
._34{width:57.250080px;}
._33{width:58.888800px;}
._3d{width:61.579440px;}
._3c{width:63.218880px;}
._43{width:64.314000px;}
._42{width:65.368560px;}
._2d{width:68.065920px;}
._3b{width:71.531760px;}
._8{width:73.735200px;}
._45{width:74.736000px;}
._32{width:75.854880px;}
._2f{width:77.416560px;}
._30{width:78.787920px;}
._44{width:88.452000px;}
._31{width:89.754480px;}
._50{width:91.815120px;}
._4f{width:92.832480px;}
._48{width:96.192000px;}
._4b{width:101.592000px;}
._37{width:120.800160px;}
._38{width:122.183280px;}
._4c{width:123.408000px;}
._52{width:127.613040px;}
._40{width:156.349440px;}
._4d{width:158.544000px;}
._4a{width:164.592000px;}
._49{width:168.696000px;}
._47{width:236.232000px;}
._41{width:447.437520px;}
.fc7{color:rgb(70,120,134);}
.fc6{color:rgb(60,64,67);}
.fc5{color:rgb(14,40,65);}
.fc3{color:rgb(39,83,23);}
.fc2{color:rgb(0,76,62);}
.fc1{color:transparent;}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs7{font-size:131.760000px;}
.yf{bottom:-79.014000px;}
.ye{bottom:-37.254000px;}
.y0{bottom:0.000000px;}
.y1b8{bottom:6.480000px;}
.y1cd{bottom:6.660000px;}
.yd8{bottom:8.640000px;}
.yd{bottom:16.020000px;}
.ycc{bottom:17.280000px;}
.ye8{bottom:17.634000px;}
.yca{bottom:17.640000px;}
.yea{bottom:18.000000px;}
.y1ab{bottom:20.880000px;}
.ydb{bottom:28.074000px;}
.y1ca{bottom:30.234000px;}
.y1b7{bottom:30.240000px;}
.y1c6{bottom:30.420000px;}
.y1d0{bottom:30.465000px;}
.yd7{bottom:40.320000px;}
.ycd{bottom:46.620000px;}
.ye7{bottom:49.314000px;}
.yc2{bottom:49.320000px;}
.y1c9{bottom:53.994000px;}
.y1b6{bottom:54.000000px;}
.y1bf{bottom:54.030000px;}
.y1c0{bottom:54.180000px;}
.y1c5{bottom:54.225000px;}
.yeb{bottom:54.900000px;}
.yc{bottom:57.420000px;}
.y2{bottom:57.456000px;}
.yf5{bottom:58.680000px;}
.y3{bottom:61.956000px;}
.yc3{bottom:63.765000px;}
.yda{bottom:66.234000px;}
.yd6{bottom:72.030000px;}
.ydc{bottom:74.874000px;}
.y1c8{bottom:77.754000px;}
.y1b5{bottom:77.760000px;}
.y1be{bottom:77.790000px;}
.ye6{bottom:80.994000px;}
.yff{bottom:81.030000px;}
.yc9{bottom:81.045000px;}
.yf3{bottom:81.180000px;}
.yec{bottom:82.800000px;}
.y9f{bottom:92.736000px;}
.y78{bottom:93.816000px;}
.y1ff{bottom:95.976000px;}
.y232{bottom:99.756000px;}
.y1bd{bottom:101.550000px;}
.y1b4{bottom:101.565000px;}
.ybf{bottom:103.356000px;}
.yce{bottom:103.530000px;}
.yd5{bottom:103.710000px;}
.y197{bottom:108.756000px;}
.y1e2{bottom:110.376000px;}
.yb{bottom:110.700000px;}
.ye5{bottom:112.674000px;}
.yc8{bottom:112.725000px;}
.yf2{bottom:112.860000px;}
.yfe{bottom:112.890000px;}
.y128{bottom:114.696000px;}
.y1b9{bottom:118.845000px;}
.y9e{bottom:120.456000px;}
.y77{bottom:121.536000px;}
.y1fe{bottom:123.696000px;}
.y218{bottom:124.056000px;}
.y1b3{bottom:125.325000px;}
.y176{bottom:130.356000px;}
.yed{bottom:131.220000px;}
.yd4{bottom:135.570000px;}
.y196{bottom:136.476000px;}
.y1c7{bottom:137.196000px;}
.y1e1{bottom:138.096000px;}
.y231{bottom:140.616000px;}
.yd9{bottom:140.976000px;}
.y127{bottom:142.416000px;}
.ycf{bottom:142.770000px;}
.y28{bottom:144.036000px;}
.yc7{bottom:144.405000px;}
.yf1{bottom:144.540000px;}
.yfd{bottom:144.570000px;}
.ye4{bottom:144.579000px;}
.ybe{bottom:145.296000px;}
.y9d{bottom:148.176000px;}
.y56{bottom:148.536000px;}
.y1b2{bottom:149.085000px;}
.y76{bottom:149.256000px;}
.y1fd{bottom:151.590000px;}
.y217{bottom:151.770000px;}
.ya{bottom:152.145000px;}
.y15e{bottom:155.370000px;}
.y175{bottom:158.070000px;}
.y8{bottom:162.930000px;}
.y195{bottom:164.190000px;}
.y1e0{bottom:165.810000px;}
.yd3{bottom:167.250000px;}
.y126{bottom:170.130000px;}
.y1b1{bottom:173.025000px;}
.y9c{bottom:175.890000px;}
.yf0{bottom:176.220000px;}
.yfc{bottom:176.250000px;}
.ye3{bottom:176.259000px;}
.yc6{bottom:176.265000px;}
.y75{bottom:177.150000px;}
.yf6{bottom:178.950000px;}
.ydd{bottom:178.959000px;}
.y1fc{bottom:179.310000px;}
.y230{bottom:183.270000px;}
.ybd{bottom:184.530000px;}
.y27{bottom:185.790000px;}
.y55{bottom:188.310000px;}
.y216{bottom:191.550000px;}
.y194{bottom:191.910000px;}
.y1b0{bottom:196.785000px;}
.y125{bottom:197.850000px;}
.y15d{bottom:198.030000px;}
.yd2{bottom:198.930000px;}
.y9b{bottom:203.610000px;}
.y74{bottom:204.870000px;}
.y1df{bottom:205.590000px;}
.y9{bottom:205.605000px;}
.y1fb{bottom:207.030000px;}
.yef{bottom:207.900000px;}
.yfb{bottom:207.930000px;}
.ye2{bottom:207.939000px;}
.yc5{bottom:207.945000px;}
.y143{bottom:208.830000px;}
.y22f{bottom:210.990000px;}
.y108{bottom:215.670000px;}
.y26{bottom:217.470000px;}
.y193{bottom:219.810000px;}
.y1af{bottom:220.545000px;}
.ybc{bottom:223.590000px;}
.y124{bottom:225.570000px;}
.y15c{bottom:225.750000px;}
.y54{bottom:227.910000px;}
.yd1{bottom:230.610000px;}
.y9a{bottom:231.330000px;}
.y73{bottom:232.590000px;}
.y1c4{bottom:232.950000px;}
.y1fa{bottom:234.750000px;}
.y22e{bottom:238.710000px;}
.yee{bottom:239.580000px;}
.yfa{bottom:239.610000px;}
.ye1{bottom:239.619000px;}
.yc4{bottom:239.625000px;}
.y107{bottom:243.390000px;}
.y1de{bottom:245.370000px;}
.y192{bottom:247.530000px;}
.y142{bottom:248.610000px;}
.ybb{bottom:252.390000px;}
.y123{bottom:253.290000px;}
.y15b{bottom:253.470000px;}
.y53{bottom:255.810000px;}
.y215{bottom:259.050000px;}
.y99{bottom:259.230000px;}
.y72{bottom:260.310000px;}
.yd0{bottom:262.290000px;}
.y1f9{bottom:262.470000px;}
.y22d{bottom:266.430000px;}
.y25{bottom:267.150000px;}
.yf9{bottom:271.290000px;}
.ye0{bottom:271.299000px;}
.y1dd{bottom:273.090000px;}
.y191{bottom:275.250000px;}
.y141{bottom:276.330000px;}
.y1a2{bottom:277.590000px;}
.y174{bottom:281.010000px;}
.y122{bottom:281.190000px;}
.yba{bottom:283.035000px;}
.y52{bottom:283.575000px;}
.y214{bottom:286.815000px;}
.y71{bottom:288.075000px;}
.y1f8{bottom:290.235000px;}
.y98{bottom:298.155000px;}
.y106{bottom:299.055000px;}
.ydf{bottom:302.979000px;}
.y190{bottom:303.015000px;}
.yf8{bottom:303.150000px;}
.y1a1{bottom:303.555000px;}
.y140{bottom:304.095000px;}
.y1c3{bottom:305.175000px;}
.y22c{bottom:306.255000px;}
.y121{bottom:308.955000px;}
.yb9{bottom:310.755000px;}
.y51{bottom:311.295000px;}
.y1dc{bottom:312.915000px;}
.y70{bottom:315.795000px;}
.y24{bottom:316.875000px;}
.y1f7{bottom:317.955000px;}
.y213{bottom:326.595000px;}
.y105{bottom:326.775000px;}
.y1c2{bottom:329.655000px;}
.y18f{bottom:330.735000px;}
.y13f{bottom:331.995000px;}
.yf7{bottom:334.830000px;}
.yde{bottom:334.839000px;}
.y97{bottom:335.775000px;}
.y15a{bottom:336.675000px;}
.y1a0{bottom:338.115000px;}
.yb8{bottom:338.655000px;}
.y50{bottom:339.015000px;}
.y6f{bottom:343.515000px;}
.y1f6{bottom:345.855000px;}
.y22b{bottom:346.035000px;}
.y120{bottom:348.735000px;}
.y1db{bottom:353.235000px;}
.y104{bottom:354.495000px;}
.y18e{bottom:358.455000px;}
.y13e{bottom:359.715000px;}
.y173{bottom:364.395000px;}
.yb7{bottom:366.375000px;}
.y23{bottom:366.735000px;}
.y6e{bottom:371.415000px;}
.y1f5{bottom:373.575000px;}
.y22a{bottom:373.755000px;}
.y212{bottom:375.375000px;}
.y11f{bottom:376.455000px;}
.y159{bottom:376.635000px;}
.y1c1{bottom:378.075000px;}
.y96{bottom:379.515000px;}
.y1da{bottom:381.495000px;}
.y103{bottom:382.215000px;}
.y18d{bottom:386.355000px;}
.y13d{bottom:387.435000px;}
.y172{bottom:392.115000px;}
.yb6{bottom:394.095000px;}
.y4f{bottom:394.455000px;}
.y6d{bottom:399.135000px;}
.y1f4{bottom:401.295000px;}
.y229{bottom:401.475000px;}
.y211{bottom:403.095000px;}
.y11e{bottom:404.175000px;}
.y158{bottom:405.255000px;}
.y102{bottom:409.935000px;}
.y95{bottom:410.115000px;}
.y18c{bottom:414.075000px;}
.y13c{bottom:415.155000px;}
.y22{bottom:417.315000px;}
.y1a9{bottom:417.855000px;}
.y171{bottom:419.835000px;}
.y1d9{bottom:421.455000px;}
.yb5{bottom:421.815000px;}
.y4e{bottom:422.355000px;}
.y6c{bottom:426.855000px;}
.y1f3{bottom:429.015000px;}
.y228{bottom:429.195000px;}
.y101{bottom:437.655000px;}
.y94{bottom:437.835000px;}
.y18b{bottom:441.795000px;}
.y13b{bottom:442.875000px;}
.y11d{bottom:443.955000px;}
.y157{bottom:445.935000px;}
.y170{bottom:447.555000px;}
.yb4{bottom:449.535000px;}
.y4d{bottom:450.075000px;}
.y210{bottom:451.875000px;}
.y6b{bottom:454.575000px;}
.y1f2{bottom:456.735000px;}
.y1a8{bottom:460.155000px;}
.y1d8{bottom:461.235000px;}
.y93{bottom:465.555000px;}
.y100{bottom:466.635000px;}
.y21{bottom:468.975000px;}
.y18a{bottom:469.515000px;}
.y13a{bottom:470.595000px;}
.y11c{bottom:471.675000px;}
.y156{bottom:473.655000px;}
.y16f{bottom:475.455000px;}
.yb3{bottom:477.255000px;}
.y4c{bottom:477.795000px;}
.y20f{bottom:479.595000px;}
.y1a7{bottom:480.495000px;}
.y6a{bottom:482.295000px;}
.y1d7{bottom:488.955000px;}
.yf4{bottom:490.395000px;}
.y92{bottom:493.455000px;}
.y1f1{bottom:496.515000px;}
.y189{bottom:497.235000px;}
.y139{bottom:498.495000px;}
.ycb{bottom:499.575000px;}
.y11b{bottom:500.295000px;}
.y155{bottom:501.375000px;}
.y16e{bottom:503.175000px;}
.y20{bottom:503.355000px;}
.y1aa{bottom:503.535000px;}
.yb2{bottom:505.155000px;}
.y4b{bottom:505.515000px;}
.y20e{bottom:507.315000px;}
.y227{bottom:508.755000px;}
.y69{bottom:510.015000px;}
.y91{bottom:521.175000px;}
.y1bc{bottom:522.255000px;}
.y1f0{bottom:524.235000px;}
.y138{bottom:526.215000px;}
.y1d6{bottom:527.835000px;}
.y11a{bottom:528.195000px;}
.y154{bottom:529.095000px;}
.y16d{bottom:530.895000px;}
.yb1{bottom:532.875000px;}
.y4a{bottom:533.235000px;}
.y20d{bottom:535.035000px;}
.y188{bottom:536.115000px;}
.y3a{bottom:536.475000px;}
.y68{bottom:537.915000px;}
.y1f{bottom:540.615000px;}
.y90{bottom:548.895000px;}
.y1ef{bottom:551.955000px;}
.y137{bottom:553.935000px;}
.y119{bottom:556.815000px;}
.y153{bottom:556.995000px;}
.y16c{bottom:558.615000px;}
.yb0{bottom:560.595000px;}
.y49{bottom:560.955000px;}
.y226{bottom:564.195000px;}
.y67{bottom:565.665000px;}
.y39{bottom:569.265000px;}
.y1d5{bottom:569.625000px;}
.y187{bottom:573.765000px;}
.y20c{bottom:574.845000px;}
.y8f{bottom:576.645000px;}
.y1e{bottom:577.905000px;}
.y1ee{bottom:579.885000px;}
.y136{bottom:581.685000px;}
.y1d4{bottom:583.125000px;}
.y118{bottom:584.565000px;}
.y152{bottom:584.745000px;}
.y16b{bottom:586.365000px;}
.yaf{bottom:588.345000px;}
.y48{bottom:588.885000px;}
.y225{bottom:592.125000px;}
.y66{bottom:593.385000px;}
.y38{bottom:599.145000px;}
.y8e{bottom:604.365000px;}
.y87{bottom:604.545000px;}
.y1ed{bottom:607.605000px;}
.y135{bottom:609.405000px;}
.y117{bottom:612.285000px;}
.y151{bottom:612.465000px;}
.y16a{bottom:614.085000px;}
.y20b{bottom:614.625000px;}
.y1d{bottom:615.165000px;}
.yae{bottom:616.065000px;}
.y47{bottom:616.605000px;}
.y186{bottom:617.685000px;}
.y224{bottom:619.845000px;}
.y65{bottom:621.105000px;}
.y37{bottom:628.845000px;}
.y1d3{bottom:631.545000px;}
.y8d{bottom:632.085000px;}
.y1ec{bottom:635.325000px;}
.y1a5{bottom:635.505000px;}
.y134{bottom:637.125000px;}
.y150{bottom:640.185000px;}
.y116{bottom:641.085000px;}
.y1bb{bottom:641.985000px;}
.y86{bottom:643.065000px;}
.yad{bottom:643.785000px;}
.y46{bottom:644.325000px;}
.y64{bottom:648.825000px;}
.y1c{bottom:652.425000px;}
.y169{bottom:652.965000px;}
.y20a{bottom:654.405000px;}
.y36{bottom:658.545000px;}
.y223{bottom:659.625000px;}
.y8c{bottom:659.805000px;}
.y185{bottom:660.165000px;}
.y1a4{bottom:661.425000px;}
.y133{bottom:665.025000px;}
.y14f{bottom:667.905000px;}
.yac{bottom:671.505000px;}
.y45{bottom:672.045000px;}
.y1eb{bottom:675.105000px;}
.y63{bottom:676.545000px;}
.y115{bottom:681.765000px;}
.y209{bottom:682.125000px;}
.y184{bottom:688.065000px;}
.y35{bottom:688.425000px;}
.y1b{bottom:689.685000px;}
.y1ba{bottom:690.225000px;}
.y168{bottom:690.585000px;}
.y132{bottom:692.745000px;}
.y14e{bottom:695.625000px;}
.y1a3{bottom:698.505000px;}
.y8b{bottom:698.685000px;}
.y222{bottom:699.225000px;}
.y1ea{bottom:702.825000px;}
.y85{bottom:703.725000px;}
.y62{bottom:704.265000px;}
.y114{bottom:709.485000px;}
.y208{bottom:709.845000px;}
.yab{bottom:710.385000px;}
.y44{bottom:710.925000px;}
.y34{bottom:718.125000px;}
.y1a{bottom:719.385000px;}
.y131{bottom:720.465000px;}
.y14d{bottom:723.345000px;}
.y221{bottom:727.125000px;}
.y1d2{bottom:727.305000px;}
.y183{bottom:727.665000px;}
.y1e9{bottom:731.445000px;}
.y84{bottom:731.625000px;}
.y61{bottom:732.165000px;}
.y167{bottom:733.425000px;}
.y8a{bottom:736.305000px;}
.yaa{bottom:748.185000px;}
.y113{bottom:749.265000px;}
.y43{bottom:749.625000px;}
.y14c{bottom:751.245000px;}
.y1d1{bottom:751.965000px;}
.y220{bottom:754.845000px;}
.y182{bottom:755.565000px;}
.y19{bottom:756.645000px;}
.y83{bottom:759.345000px;}
.y33{bottom:759.885000px;}
.y130{bottom:760.245000px;}
.y1e8{bottom:760.785000px;}
.y166{bottom:761.145000px;}
.y1ae{bottom:762.405000px;}
.y89{bottom:768.165000px;}
.y19f{bottom:774.465000px;}
.y112{bottom:776.985000px;}
.y14b{bottom:778.965000px;}
.y21f{bottom:782.565000px;}
.y181{bottom:783.285000px;}
.yc1{bottom:785.805000px;}
.y82{bottom:787.065000px;}
.y60{bottom:787.605000px;}
.y12f{bottom:787.965000px;}
.y165{bottom:788.865000px;}
.y207{bottom:789.405000px;}
.y1e7{bottom:790.305000px;}
.ya9{bottom:790.845000px;}
.y32{bottom:791.565000px;}
.y18{bottom:793.905000px;}
.y19e{bottom:802.185000px;}
.y111{bottom:804.705000px;}
.y14a{bottom:806.685000px;}
.y21e{bottom:810.285000px;}
.y42{bottom:811.365000px;}
.y88{bottom:811.905000px;}
.y81{bottom:814.785000px;}
.y5f{bottom:815.325000px;}
.y12e{bottom:816.585000px;}
.y206{bottom:817.125000px;}
.ya8{bottom:818.565000px;}
.y1cf{bottom:823.965000px;}
.y19d{bottom:829.905000px;}
.y1e6{bottom:830.985000px;}
.y17{bottom:831.165000px;}
.y110{bottom:832.425000px;}
.y149{bottom:834.405000px;}
.y180{bottom:839.625000px;}
.y31{bottom:840.165000px;}
.y80{bottom:842.505000px;}
.y5e{bottom:843.045000px;}
.y12d{bottom:844.305000px;}
.ya7{bottom:846.285000px;}
.ye9{bottom:849.030000px;}
.y21d{bottom:850.110000px;}
.y41{bottom:854.070000px;}
.y205{bottom:856.950000px;}
.y19c{bottom:857.850000px;}
.y10f{bottom:860.190000px;}
.y148{bottom:862.170000px;}
.y30{bottom:867.210000px;}
.y17f{bottom:867.570000px;}
.y16{bottom:868.470000px;}
.y7f{bottom:870.270000px;}
.y5d{bottom:870.810000px;}
.y1e5{bottom:871.530000px;}
.y164{bottom:872.070000px;}
.y12c{bottom:872.250000px;}
.y1ce{bottom:872.430000px;}
.ya6{bottom:874.050000px;}
.y19b{bottom:885.570000px;}
.y10e{bottom:888.090000px;}
.y40{bottom:889.350000px;}
.y147{bottom:889.890000px;}
.y1e4{bottom:895.290000px;}
.y17e{bottom:896.190000px;}
.y204{bottom:896.730000px;}
.y2f{bottom:896.910000px;}
.y7e{bottom:897.990000px;}
.y15{bottom:898.350000px;}
.y5c{bottom:898.710000px;}
.y163{bottom:899.970000px;}
.y12b{bottom:900.870000px;}
.ya5{bottom:901.770000px;}
.y1e3{bottom:905.910000px;}
.y1a6{bottom:910.950000px;}
.y19a{bottom:913.290000px;}
.y10d{bottom:915.810000px;}
.y21c{bottom:917.610000px;}
.y146{bottom:917.790000px;}
.y17d{bottom:923.910000px;}
.y203{bottom:924.450000px;}
.y7d{bottom:925.890000px;}
.y5b{bottom:926.430000px;}
.y2e{bottom:926.610000px;}
.y162{bottom:927.690000px;}
.y3f{bottom:929.130000px;}
.ya4{bottom:929.670000px;}
.y14{bottom:935.610000px;}
.y12a{bottom:941.550000px;}
.y10c{bottom:943.530000px;}
.y21b{bottom:945.330000px;}
.y145{bottom:945.510000px;}
.y17c{bottom:951.630000px;}
.y202{bottom:952.170000px;}
.y199{bottom:953.070000px;}
.y7c{bottom:953.610000px;}
.y161{bottom:955.410000px;}
.y2d{bottom:956.490000px;}
.ya3{bottom:957.390000px;}
.y7{bottom:958.290000px;}
.y3e{bottom:961.350000px;}
.y5a{bottom:965.310000px;}
.y1cc{bottom:968.190000px;}
.y129{bottom:969.270000px;}
.y10b{bottom:971.250000px;}
.y13{bottom:972.870000px;}
.y144{bottom:973.230000px;}
.y17b{bottom:979.350000px;}
.y7b{bottom:981.330000px;}
.y198{bottom:981.510000px;}
.y160{bottom:983.130000px;}
.ya2{bottom:985.110000px;}
.y2c{bottom:986.190000px;}
.y201{bottom:993.030000px;}
.y6{bottom:1002.030000px;}
.y3d{bottom:1003.290000px;}
.y59{bottom:1004.010000px;}
.y17a{bottom:1007.250000px;}
.y7a{bottom:1009.050000px;}
.y12{bottom:1010.130000px;}
.y15f{bottom:1010.850000px;}
.y10a{bottom:1012.110000px;}
.ya1{bottom:1012.830000px;}
.y2b{bottom:1015.890000px;}
.y1ad{bottom:1019.850000px;}
.y21a{bottom:1024.890000px;}
.y200{bottom:1031.730000px;}
.y179{bottom:1035.870000px;}
.y79{bottom:1036.770000px;}
.y1cb{bottom:1040.370000px;}
.y1ac{bottom:1043.970000px;}
.y5{bottom:1045.770000px;}
.y109{bottom:1050.630000px;}
.y3c{bottom:1050.810000px;}
.ya0{bottom:1051.710000px;}
.y219{bottom:1052.610000px;}
.y11{bottom:1053.690000px;}
.y2a{bottom:1057.650000px;}
.y178{bottom:1063.590000px;}
.y58{bottom:1064.490000px;}
.yc0{bottom:1068.270000px;}
.y10{bottom:1086.450000px;}
.y3b{bottom:1086.630000px;}
.y29{bottom:1089.330000px;}
.y4{bottom:1089.510000px;}
.y177{bottom:1091.490000px;}
.y57{bottom:1092.390000px;}
.y1{bottom:1186.740000px;}
.h22{height:23.760000px;}
.h26{height:23.940000px;}
.h18{height:44.863200px;}
.h17{height:46.669922px;}
.h1f{height:47.520000px;}
.h27{height:47.700000px;}
.h25{height:47.736000px;}
.ha{height:50.328000px;}
.h19{height:66.276000px;}
.h1c{height:67.104000px;}
.h1d{height:68.719680px;}
.h1e{height:71.280000px;}
.h21{height:71.460000px;}
.h23{height:71.496000px;}
.h16{height:72.805078px;}
.hc{height:78.343200px;}
.h6{height:78.511680px;}
.h14{height:80.028000px;}
.h9{height:80.568000px;}
.h28{height:81.324141px;}
.h13{height:86.585445px;}
.he{height:89.056800px;}
.h2{height:89.248320px;}
.h15{height:90.972000px;}
.h24{height:95.040000px;}
.h1a{height:97.533281px;}
.h3{height:98.426190px;}
.h5{height:100.656000px;}
.h7{height:102.600000px;}
.hb{height:111.006981px;}
.h8{height:112.429688px;}
.h29{height:112.655391px;}
.h2a{height:116.355234px;}
.h20{height:118.836000px;}
.h4{height:228.630000px;}
.h1b{height:237.810000px;}
.h11{height:262.620000px;}
.hd{height:262.650000px;}
.hf{height:285.330000px;}
.h10{height:357.870000px;}
.h12{height:357.915000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:95.400000px;}
.w4{width:105.156000px;}
.w7{width:139.536000px;}
.w8{width:146.916000px;}
.wb{width:151.050000px;}
.w9{width:168.870000px;}
.w5{width:615.525000px;}
.w6{width:674.430000px;}
.w3{width:723.030000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x2{left:10.836000px;}
.xc{left:31.176000px;}
.x10{left:38.916000px;}
.x8{left:43.416000px;}
.xd{left:63.756000px;}
.x9{left:75.990000px;}
.x11{left:80.490000px;}
.x1{left:84.959987px;}
.x16{left:87.300000px;}
.xe{left:96.510000px;}
.x3{left:101.555987px;}
.x4{left:106.775987px;}
.x7{left:111.995987px;}
.x1d{left:117.035987px;}
.x1c{left:127.475987px;}
.x12{left:138.995987px;}
.xf{left:149.970000px;}
.xa{left:191.730000px;}
.x17{left:226.110000px;}
.x5{left:254.549987px;}
.x13{left:331.274987px;}
.x18{left:373.935000px;}
.x6{left:446.474987px;}
.x1b{left:460.694987px;}
.x19{left:543.525000px;}
.x1a{left:639.645000px;}
.x15{left:724.109987px;}
.x14{left:726.629987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.v7{vertical-align:37.760000pt;}
.v5{vertical-align:44.160000pt;}
.v6{vertical-align:64.000000pt;}
.ls20{letter-spacing:-3.216000pt;}
.ls22{letter-spacing:-1.301333pt;}
.ls25{letter-spacing:-0.629333pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.102933pt;}
.ls24{letter-spacing:-0.101333pt;}
.ls5{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.007680pt;}
.ls1e{letter-spacing:0.036907pt;}
.ls14{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.109867pt;}
.ls12{letter-spacing:0.115200pt;}
.ls10{letter-spacing:0.118400pt;}
.ls4{letter-spacing:0.120320pt;}
.ls15{letter-spacing:0.135680pt;}
.ls21{letter-spacing:0.139520pt;}
.lsb{letter-spacing:0.139733pt;}
.ls6{letter-spacing:0.177280pt;}
.ls3{letter-spacing:0.180267pt;}
.ls9{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.284800pt;}
.ls1f{letter-spacing:0.312960pt;}
.lsf{letter-spacing:0.317333pt;}
.ls11{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.892800pt;}
.lse{letter-spacing:1.902720pt;}
.ls17{letter-spacing:3.163520pt;}
.ls19{letter-spacing:15.644800pt;}
.ls1c{letter-spacing:16.419627pt;}
.lsa{letter-spacing:33.902720pt;}
.ls13{letter-spacing:40.623360pt;}
.ls2{letter-spacing:109.888000pt;}
.ls7{letter-spacing:741.578667pt;}
.ls1{letter-spacing:744.603307pt;}
.ls23{letter-spacing:747.343360pt;}
.ws5{word-spacing:-22.432000pt;}
.ws6{word-spacing:-22.176000pt;}
.wsa{word-spacing:-19.980053pt;}
.ws2{word-spacing:-19.842987pt;}
.wsb{word-spacing:-19.781120pt;}
.ws8{word-spacing:-19.772587pt;}
.ws3{word-spacing:-19.662720pt;}
.ws1{word-spacing:-19.655040pt;}
.ws9{word-spacing:-19.559787pt;}
.ws14{word-spacing:-17.304960pt;}
.ws7{word-spacing:-17.297280pt;}
.ws15{word-spacing:-17.195947pt;}
.ws16{word-spacing:-16.667947pt;}
.ws12{word-spacing:-16.473600pt;}
.ws10{word-spacing:-16.242667pt;}
.ws13{word-spacing:-15.995947pt;}
.wsd{word-spacing:-15.200640pt;}
.wsf{word-spacing:-14.784000pt;}
.wse{word-spacing:-14.528000pt;}
.ws4{word-spacing:-11.088000pt;}
.wsc{word-spacing:-0.160640pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:12.073600pt;}
._11{margin-left:-18.361813pt;}
._7{margin-left:-17.302613pt;}
._c{margin-left:-16.097920pt;}
._9{margin-left:-15.208320pt;}
._10{margin-left:-13.472640pt;}
._a{margin-left:-12.537387pt;}
._6{margin-left:-8.780373pt;}
._51{margin-left:-7.320960pt;}
._5{margin-left:-6.128640pt;}
._1b{margin-left:-5.120000pt;}
._b{margin-left:-4.048000pt;}
._17{margin-left:-2.653867pt;}
._0{margin-left:-1.532160pt;}
._1{width:0.936320pt;}
._2{width:2.361813pt;}
._f{width:3.471573pt;}
._18{width:4.870187pt;}
._d{width:6.397227pt;}
._e{width:7.370880pt;}
._1c{width:8.835840pt;}
._1f{width:9.810987pt;}
._19{width:11.150720pt;}
._1a{width:12.120747pt;}
._1d{width:13.438080pt;}
._2a{width:14.411520pt;}
._15{width:15.321600pt;}
._14{width:16.683520pt;}
._4e{width:17.767467pt;}
._29{width:18.794880pt;}
._35{width:19.987200pt;}
._2c{width:21.041280pt;}
._21{width:21.974400pt;}
._20{width:23.437440pt;}
._22{width:25.234560pt;}
._2b{width:26.282880pt;}
._1e{width:27.480960pt;}
._25{width:28.903680pt;}
._26{width:29.877120pt;}
._36{width:30.850560pt;}
._2e{width:32.619093pt;}
._23{width:33.770880pt;}
._24{width:35.642880pt;}
._13{width:37.197440pt;}
._12{width:38.474240pt;}
._16{width:39.751040pt;}
._3e{width:40.728960pt;}
._3{width:42.049280pt;}
._4{width:43.411200pt;}
._27{width:44.328960pt;}
._28{width:45.240960pt;}
._3f{width:46.654720pt;}
._46{width:47.626240pt;}
._39{width:48.821760pt;}
._3a{width:49.713493pt;}
._34{width:50.888960pt;}
._33{width:52.345600pt;}
._3d{width:54.737280pt;}
._3c{width:56.194560pt;}
._43{width:57.168000pt;}
._42{width:58.105387pt;}
._2d{width:60.503040pt;}
._3b{width:63.583787pt;}
._8{width:65.542400pt;}
._45{width:66.432000pt;}
._32{width:67.426560pt;}
._2f{width:68.814720pt;}
._30{width:70.033707pt;}
._44{width:78.624000pt;}
._31{width:79.781760pt;}
._50{width:81.613440pt;}
._4f{width:82.517760pt;}
._48{width:85.504000pt;}
._4b{width:90.304000pt;}
._37{width:107.377920pt;}
._38{width:108.607360pt;}
._4c{width:109.696000pt;}
._52{width:113.433813pt;}
._40{width:138.977280pt;}
._4d{width:140.928000pt;}
._4a{width:146.304000pt;}
._49{width:149.952000pt;}
._47{width:209.984000pt;}
._41{width:397.722240pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs7{font-size:117.120000pt;}
.yf{bottom:-70.234667pt;}
.ye{bottom:-33.114667pt;}
.y0{bottom:0.000000pt;}
.y1b8{bottom:5.760000pt;}
.y1cd{bottom:5.920000pt;}
.yd8{bottom:7.680000pt;}
.yd{bottom:14.240000pt;}
.ycc{bottom:15.360000pt;}
.ye8{bottom:15.674667pt;}
.yca{bottom:15.680000pt;}
.yea{bottom:16.000000pt;}
.y1ab{bottom:18.560000pt;}
.ydb{bottom:24.954667pt;}
.y1ca{bottom:26.874667pt;}
.y1b7{bottom:26.880000pt;}
.y1c6{bottom:27.040000pt;}
.y1d0{bottom:27.080000pt;}
.yd7{bottom:35.840000pt;}
.ycd{bottom:41.440000pt;}
.ye7{bottom:43.834667pt;}
.yc2{bottom:43.840000pt;}
.y1c9{bottom:47.994667pt;}
.y1b6{bottom:48.000000pt;}
.y1bf{bottom:48.026667pt;}
.y1c0{bottom:48.160000pt;}
.y1c5{bottom:48.200000pt;}
.yeb{bottom:48.800000pt;}
.yc{bottom:51.040000pt;}
.y2{bottom:51.072000pt;}
.yf5{bottom:52.160000pt;}
.y3{bottom:55.072000pt;}
.yc3{bottom:56.680000pt;}
.yda{bottom:58.874667pt;}
.yd6{bottom:64.026667pt;}
.ydc{bottom:66.554667pt;}
.y1c8{bottom:69.114667pt;}
.y1b5{bottom:69.120000pt;}
.y1be{bottom:69.146667pt;}
.ye6{bottom:71.994667pt;}
.yff{bottom:72.026667pt;}
.yc9{bottom:72.040000pt;}
.yf3{bottom:72.160000pt;}
.yec{bottom:73.600000pt;}
.y9f{bottom:82.432000pt;}
.y78{bottom:83.392000pt;}
.y1ff{bottom:85.312000pt;}
.y232{bottom:88.672000pt;}
.y1bd{bottom:90.266667pt;}
.y1b4{bottom:90.280000pt;}
.ybf{bottom:91.872000pt;}
.yce{bottom:92.026667pt;}
.yd5{bottom:92.186667pt;}
.y197{bottom:96.672000pt;}
.y1e2{bottom:98.112000pt;}
.yb{bottom:98.400000pt;}
.ye5{bottom:100.154667pt;}
.yc8{bottom:100.200000pt;}
.yf2{bottom:100.320000pt;}
.yfe{bottom:100.346667pt;}
.y128{bottom:101.952000pt;}
.y1b9{bottom:105.640000pt;}
.y9e{bottom:107.072000pt;}
.y77{bottom:108.032000pt;}
.y1fe{bottom:109.952000pt;}
.y218{bottom:110.272000pt;}
.y1b3{bottom:111.400000pt;}
.y176{bottom:115.872000pt;}
.yed{bottom:116.640000pt;}
.yd4{bottom:120.506667pt;}
.y196{bottom:121.312000pt;}
.y1c7{bottom:121.952000pt;}
.y1e1{bottom:122.752000pt;}
.y231{bottom:124.992000pt;}
.yd9{bottom:125.312000pt;}
.y127{bottom:126.592000pt;}
.ycf{bottom:126.906667pt;}
.y28{bottom:128.032000pt;}
.yc7{bottom:128.360000pt;}
.yf1{bottom:128.480000pt;}
.yfd{bottom:128.506667pt;}
.ye4{bottom:128.514667pt;}
.ybe{bottom:129.152000pt;}
.y9d{bottom:131.712000pt;}
.y56{bottom:132.032000pt;}
.y1b2{bottom:132.520000pt;}
.y76{bottom:132.672000pt;}
.y1fd{bottom:134.746667pt;}
.y217{bottom:134.906667pt;}
.ya{bottom:135.240000pt;}
.y15e{bottom:138.106667pt;}
.y175{bottom:140.506667pt;}
.y8{bottom:144.826667pt;}
.y195{bottom:145.946667pt;}
.y1e0{bottom:147.386667pt;}
.yd3{bottom:148.666667pt;}
.y126{bottom:151.226667pt;}
.y1b1{bottom:153.800000pt;}
.y9c{bottom:156.346667pt;}
.yf0{bottom:156.640000pt;}
.yfc{bottom:156.666667pt;}
.ye3{bottom:156.674667pt;}
.yc6{bottom:156.680000pt;}
.y75{bottom:157.466667pt;}
.yf6{bottom:159.066667pt;}
.ydd{bottom:159.074667pt;}
.y1fc{bottom:159.386667pt;}
.y230{bottom:162.906667pt;}
.ybd{bottom:164.026667pt;}
.y27{bottom:165.146667pt;}
.y55{bottom:167.386667pt;}
.y216{bottom:170.266667pt;}
.y194{bottom:170.586667pt;}
.y1b0{bottom:174.920000pt;}
.y125{bottom:175.866667pt;}
.y15d{bottom:176.026667pt;}
.yd2{bottom:176.826667pt;}
.y9b{bottom:180.986667pt;}
.y74{bottom:182.106667pt;}
.y1df{bottom:182.746667pt;}
.y9{bottom:182.760000pt;}
.y1fb{bottom:184.026667pt;}
.yef{bottom:184.800000pt;}
.yfb{bottom:184.826667pt;}
.ye2{bottom:184.834667pt;}
.yc5{bottom:184.840000pt;}
.y143{bottom:185.626667pt;}
.y22f{bottom:187.546667pt;}
.y108{bottom:191.706667pt;}
.y26{bottom:193.306667pt;}
.y193{bottom:195.386667pt;}
.y1af{bottom:196.040000pt;}
.ybc{bottom:198.746667pt;}
.y124{bottom:200.506667pt;}
.y15c{bottom:200.666667pt;}
.y54{bottom:202.586667pt;}
.yd1{bottom:204.986667pt;}
.y9a{bottom:205.626667pt;}
.y73{bottom:206.746667pt;}
.y1c4{bottom:207.066667pt;}
.y1fa{bottom:208.666667pt;}
.y22e{bottom:212.186667pt;}
.yee{bottom:212.960000pt;}
.yfa{bottom:212.986667pt;}
.ye1{bottom:212.994667pt;}
.yc4{bottom:213.000000pt;}
.y107{bottom:216.346667pt;}
.y1de{bottom:218.106667pt;}
.y192{bottom:220.026667pt;}
.y142{bottom:220.986667pt;}
.ybb{bottom:224.346667pt;}
.y123{bottom:225.146667pt;}
.y15b{bottom:225.306667pt;}
.y53{bottom:227.386667pt;}
.y215{bottom:230.266667pt;}
.y99{bottom:230.426667pt;}
.y72{bottom:231.386667pt;}
.yd0{bottom:233.146667pt;}
.y1f9{bottom:233.306667pt;}
.y22d{bottom:236.826667pt;}
.y25{bottom:237.466667pt;}
.yf9{bottom:241.146667pt;}
.ye0{bottom:241.154667pt;}
.y1dd{bottom:242.746667pt;}
.y191{bottom:244.666667pt;}
.y141{bottom:245.626667pt;}
.y1a2{bottom:246.746667pt;}
.y174{bottom:249.786667pt;}
.y122{bottom:249.946667pt;}
.yba{bottom:251.586667pt;}
.y52{bottom:252.066667pt;}
.y214{bottom:254.946667pt;}
.y71{bottom:256.066667pt;}
.y1f8{bottom:257.986667pt;}
.y98{bottom:265.026667pt;}
.y106{bottom:265.826667pt;}
.ydf{bottom:269.314667pt;}
.y190{bottom:269.346667pt;}
.yf8{bottom:269.466667pt;}
.y1a1{bottom:269.826667pt;}
.y140{bottom:270.306667pt;}
.y1c3{bottom:271.266667pt;}
.y22c{bottom:272.226667pt;}
.y121{bottom:274.626667pt;}
.yb9{bottom:276.226667pt;}
.y51{bottom:276.706667pt;}
.y1dc{bottom:278.146667pt;}
.y70{bottom:280.706667pt;}
.y24{bottom:281.666667pt;}
.y1f7{bottom:282.626667pt;}
.y213{bottom:290.306667pt;}
.y105{bottom:290.466667pt;}
.y1c2{bottom:293.026667pt;}
.y18f{bottom:293.986667pt;}
.y13f{bottom:295.106667pt;}
.yf7{bottom:297.626667pt;}
.yde{bottom:297.634667pt;}
.y97{bottom:298.466667pt;}
.y15a{bottom:299.266667pt;}
.y1a0{bottom:300.546667pt;}
.yb8{bottom:301.026667pt;}
.y50{bottom:301.346667pt;}
.y6f{bottom:305.346667pt;}
.y1f6{bottom:307.426667pt;}
.y22b{bottom:307.586667pt;}
.y120{bottom:309.986667pt;}
.y1db{bottom:313.986667pt;}
.y104{bottom:315.106667pt;}
.y18e{bottom:318.626667pt;}
.y13e{bottom:319.746667pt;}
.y173{bottom:323.906667pt;}
.yb7{bottom:325.666667pt;}
.y23{bottom:325.986667pt;}
.y6e{bottom:330.146667pt;}
.y1f5{bottom:332.066667pt;}
.y22a{bottom:332.226667pt;}
.y212{bottom:333.666667pt;}
.y11f{bottom:334.626667pt;}
.y159{bottom:334.786667pt;}
.y1c1{bottom:336.066667pt;}
.y96{bottom:337.346667pt;}
.y1da{bottom:339.106667pt;}
.y103{bottom:339.746667pt;}
.y18d{bottom:343.426667pt;}
.y13d{bottom:344.386667pt;}
.y172{bottom:348.546667pt;}
.yb6{bottom:350.306667pt;}
.y4f{bottom:350.626667pt;}
.y6d{bottom:354.786667pt;}
.y1f4{bottom:356.706667pt;}
.y229{bottom:356.866667pt;}
.y211{bottom:358.306667pt;}
.y11e{bottom:359.266667pt;}
.y158{bottom:360.226667pt;}
.y102{bottom:364.386667pt;}
.y95{bottom:364.546667pt;}
.y18c{bottom:368.066667pt;}
.y13c{bottom:369.026667pt;}
.y22{bottom:370.946667pt;}
.y1a9{bottom:371.426667pt;}
.y171{bottom:373.186667pt;}
.y1d9{bottom:374.626667pt;}
.yb5{bottom:374.946667pt;}
.y4e{bottom:375.426667pt;}
.y6c{bottom:379.426667pt;}
.y1f3{bottom:381.346667pt;}
.y228{bottom:381.506667pt;}
.y101{bottom:389.026667pt;}
.y94{bottom:389.186667pt;}
.y18b{bottom:392.706667pt;}
.y13b{bottom:393.666667pt;}
.y11d{bottom:394.626667pt;}
.y157{bottom:396.386667pt;}
.y170{bottom:397.826667pt;}
.yb4{bottom:399.586667pt;}
.y4d{bottom:400.066667pt;}
.y210{bottom:401.666667pt;}
.y6b{bottom:404.066667pt;}
.y1f2{bottom:405.986667pt;}
.y1a8{bottom:409.026667pt;}
.y1d8{bottom:409.986667pt;}
.y93{bottom:413.826667pt;}
.y100{bottom:414.786667pt;}
.y21{bottom:416.866667pt;}
.y18a{bottom:417.346667pt;}
.y13a{bottom:418.306667pt;}
.y11c{bottom:419.266667pt;}
.y156{bottom:421.026667pt;}
.y16f{bottom:422.626667pt;}
.yb3{bottom:424.226667pt;}
.y4c{bottom:424.706667pt;}
.y20f{bottom:426.306667pt;}
.y1a7{bottom:427.106667pt;}
.y6a{bottom:428.706667pt;}
.y1d7{bottom:434.626667pt;}
.yf4{bottom:435.906667pt;}
.y92{bottom:438.626667pt;}
.y1f1{bottom:441.346667pt;}
.y189{bottom:441.986667pt;}
.y139{bottom:443.106667pt;}
.ycb{bottom:444.066667pt;}
.y11b{bottom:444.706667pt;}
.y155{bottom:445.666667pt;}
.y16e{bottom:447.266667pt;}
.y20{bottom:447.426667pt;}
.y1aa{bottom:447.586667pt;}
.yb2{bottom:449.026667pt;}
.y4b{bottom:449.346667pt;}
.y20e{bottom:450.946667pt;}
.y227{bottom:452.226667pt;}
.y69{bottom:453.346667pt;}
.y91{bottom:463.266667pt;}
.y1bc{bottom:464.226667pt;}
.y1f0{bottom:465.986667pt;}
.y138{bottom:467.746667pt;}
.y1d6{bottom:469.186667pt;}
.y11a{bottom:469.506667pt;}
.y154{bottom:470.306667pt;}
.y16d{bottom:471.906667pt;}
.yb1{bottom:473.666667pt;}
.y4a{bottom:473.986667pt;}
.y20d{bottom:475.586667pt;}
.y188{bottom:476.546667pt;}
.y3a{bottom:476.866667pt;}
.y68{bottom:478.146667pt;}
.y1f{bottom:480.546667pt;}
.y90{bottom:487.906667pt;}
.y1ef{bottom:490.626667pt;}
.y137{bottom:492.386667pt;}
.y119{bottom:494.946667pt;}
.y153{bottom:495.106667pt;}
.y16c{bottom:496.546667pt;}
.yb0{bottom:498.306667pt;}
.y49{bottom:498.626667pt;}
.y226{bottom:501.506667pt;}
.y67{bottom:502.813333pt;}
.y39{bottom:506.013333pt;}
.y1d5{bottom:506.333333pt;}
.y187{bottom:510.013333pt;}
.y20c{bottom:510.973333pt;}
.y8f{bottom:512.573333pt;}
.y1e{bottom:513.693333pt;}
.y1ee{bottom:515.453333pt;}
.y136{bottom:517.053333pt;}
.y1d4{bottom:518.333333pt;}
.y118{bottom:519.613333pt;}
.y152{bottom:519.773333pt;}
.y16b{bottom:521.213333pt;}
.yaf{bottom:522.973333pt;}
.y48{bottom:523.453333pt;}
.y225{bottom:526.333333pt;}
.y66{bottom:527.453333pt;}
.y38{bottom:532.573333pt;}
.y8e{bottom:537.213333pt;}
.y87{bottom:537.373333pt;}
.y1ed{bottom:540.093333pt;}
.y135{bottom:541.693333pt;}
.y117{bottom:544.253333pt;}
.y151{bottom:544.413333pt;}
.y16a{bottom:545.853333pt;}
.y20b{bottom:546.333333pt;}
.y1d{bottom:546.813333pt;}
.yae{bottom:547.613333pt;}
.y47{bottom:548.093333pt;}
.y186{bottom:549.053333pt;}
.y224{bottom:550.973333pt;}
.y65{bottom:552.093333pt;}
.y37{bottom:558.973333pt;}
.y1d3{bottom:561.373333pt;}
.y8d{bottom:561.853333pt;}
.y1ec{bottom:564.733333pt;}
.y1a5{bottom:564.893333pt;}
.y134{bottom:566.333333pt;}
.y150{bottom:569.053333pt;}
.y116{bottom:569.853333pt;}
.y1bb{bottom:570.653333pt;}
.y86{bottom:571.613333pt;}
.yad{bottom:572.253333pt;}
.y46{bottom:572.733333pt;}
.y64{bottom:576.733333pt;}
.y1c{bottom:579.933333pt;}
.y169{bottom:580.413333pt;}
.y20a{bottom:581.693333pt;}
.y36{bottom:585.373333pt;}
.y223{bottom:586.333333pt;}
.y8c{bottom:586.493333pt;}
.y185{bottom:586.813333pt;}
.y1a4{bottom:587.933333pt;}
.y133{bottom:591.133333pt;}
.y14f{bottom:593.693333pt;}
.yac{bottom:596.893333pt;}
.y45{bottom:597.373333pt;}
.y1eb{bottom:600.093333pt;}
.y63{bottom:601.373333pt;}
.y115{bottom:606.013333pt;}
.y209{bottom:606.333333pt;}
.y184{bottom:611.613333pt;}
.y35{bottom:611.933333pt;}
.y1b{bottom:613.053333pt;}
.y1ba{bottom:613.533333pt;}
.y168{bottom:613.853333pt;}
.y132{bottom:615.773333pt;}
.y14e{bottom:618.333333pt;}
.y1a3{bottom:620.893333pt;}
.y8b{bottom:621.053333pt;}
.y222{bottom:621.533333pt;}
.y1ea{bottom:624.733333pt;}
.y85{bottom:625.533333pt;}
.y62{bottom:626.013333pt;}
.y114{bottom:630.653333pt;}
.y208{bottom:630.973333pt;}
.yab{bottom:631.453333pt;}
.y44{bottom:631.933333pt;}
.y34{bottom:638.333333pt;}
.y1a{bottom:639.453333pt;}
.y131{bottom:640.413333pt;}
.y14d{bottom:642.973333pt;}
.y221{bottom:646.333333pt;}
.y1d2{bottom:646.493333pt;}
.y183{bottom:646.813333pt;}
.y1e9{bottom:650.173333pt;}
.y84{bottom:650.333333pt;}
.y61{bottom:650.813333pt;}
.y167{bottom:651.933333pt;}
.y8a{bottom:654.493333pt;}
.yaa{bottom:665.053333pt;}
.y113{bottom:666.013333pt;}
.y43{bottom:666.333333pt;}
.y14c{bottom:667.773333pt;}
.y1d1{bottom:668.413333pt;}
.y220{bottom:670.973333pt;}
.y182{bottom:671.613333pt;}
.y19{bottom:672.573333pt;}
.y83{bottom:674.973333pt;}
.y33{bottom:675.453333pt;}
.y130{bottom:675.773333pt;}
.y1e8{bottom:676.253333pt;}
.y166{bottom:676.573333pt;}
.y1ae{bottom:677.693333pt;}
.y89{bottom:682.813333pt;}
.y19f{bottom:688.413333pt;}
.y112{bottom:690.653333pt;}
.y14b{bottom:692.413333pt;}
.y21f{bottom:695.613333pt;}
.y181{bottom:696.253333pt;}
.yc1{bottom:698.493333pt;}
.y82{bottom:699.613333pt;}
.y60{bottom:700.093333pt;}
.y12f{bottom:700.413333pt;}
.y165{bottom:701.213333pt;}
.y207{bottom:701.693333pt;}
.y1e7{bottom:702.493333pt;}
.ya9{bottom:702.973333pt;}
.y32{bottom:703.613333pt;}
.y18{bottom:705.693333pt;}
.y19e{bottom:713.053333pt;}
.y111{bottom:715.293333pt;}
.y14a{bottom:717.053333pt;}
.y21e{bottom:720.253333pt;}
.y42{bottom:721.213333pt;}
.y88{bottom:721.693333pt;}
.y81{bottom:724.253333pt;}
.y5f{bottom:724.733333pt;}
.y12e{bottom:725.853333pt;}
.y206{bottom:726.333333pt;}
.ya8{bottom:727.613333pt;}
.y1cf{bottom:732.413333pt;}
.y19d{bottom:737.693333pt;}
.y1e6{bottom:738.653333pt;}
.y17{bottom:738.813333pt;}
.y110{bottom:739.933333pt;}
.y149{bottom:741.693333pt;}
.y180{bottom:746.333333pt;}
.y31{bottom:746.813333pt;}
.y80{bottom:748.893333pt;}
.y5e{bottom:749.373333pt;}
.y12d{bottom:750.493333pt;}
.ya7{bottom:752.253333pt;}
.ye9{bottom:754.693333pt;}
.y21d{bottom:755.653333pt;}
.y41{bottom:759.173333pt;}
.y205{bottom:761.733333pt;}
.y19c{bottom:762.533333pt;}
.y10f{bottom:764.613333pt;}
.y148{bottom:766.373333pt;}
.y30{bottom:770.853333pt;}
.y17f{bottom:771.173333pt;}
.y16{bottom:771.973333pt;}
.y7f{bottom:773.573333pt;}
.y5d{bottom:774.053333pt;}
.y1e5{bottom:774.693333pt;}
.y164{bottom:775.173333pt;}
.y12c{bottom:775.333333pt;}
.y1ce{bottom:775.493333pt;}
.ya6{bottom:776.933333pt;}
.y19b{bottom:787.173333pt;}
.y10e{bottom:789.413333pt;}
.y40{bottom:790.533333pt;}
.y147{bottom:791.013333pt;}
.y1e4{bottom:795.813333pt;}
.y17e{bottom:796.613333pt;}
.y204{bottom:797.093333pt;}
.y2f{bottom:797.253333pt;}
.y7e{bottom:798.213333pt;}
.y15{bottom:798.533333pt;}
.y5c{bottom:798.853333pt;}
.y163{bottom:799.973333pt;}
.y12b{bottom:800.773333pt;}
.ya5{bottom:801.573333pt;}
.y1e3{bottom:805.253333pt;}
.y1a6{bottom:809.733333pt;}
.y19a{bottom:811.813333pt;}
.y10d{bottom:814.053333pt;}
.y21c{bottom:815.653333pt;}
.y146{bottom:815.813333pt;}
.y17d{bottom:821.253333pt;}
.y203{bottom:821.733333pt;}
.y7d{bottom:823.013333pt;}
.y5b{bottom:823.493333pt;}
.y2e{bottom:823.653333pt;}
.y162{bottom:824.613333pt;}
.y3f{bottom:825.893333pt;}
.ya4{bottom:826.373333pt;}
.y14{bottom:831.653333pt;}
.y12a{bottom:836.933333pt;}
.y10c{bottom:838.693333pt;}
.y21b{bottom:840.293333pt;}
.y145{bottom:840.453333pt;}
.y17c{bottom:845.893333pt;}
.y202{bottom:846.373333pt;}
.y199{bottom:847.173333pt;}
.y7c{bottom:847.653333pt;}
.y161{bottom:849.253333pt;}
.y2d{bottom:850.213333pt;}
.ya3{bottom:851.013333pt;}
.y7{bottom:851.813333pt;}
.y3e{bottom:854.533333pt;}
.y5a{bottom:858.053333pt;}
.y1cc{bottom:860.613333pt;}
.y129{bottom:861.573333pt;}
.y10b{bottom:863.333333pt;}
.y13{bottom:864.773333pt;}
.y144{bottom:865.093333pt;}
.y17b{bottom:870.533333pt;}
.y7b{bottom:872.293333pt;}
.y198{bottom:872.453333pt;}
.y160{bottom:873.893333pt;}
.ya2{bottom:875.653333pt;}
.y2c{bottom:876.613333pt;}
.y201{bottom:882.693333pt;}
.y6{bottom:890.693333pt;}
.y3d{bottom:891.813333pt;}
.y59{bottom:892.453333pt;}
.y17a{bottom:895.333333pt;}
.y7a{bottom:896.933333pt;}
.y12{bottom:897.893333pt;}
.y15f{bottom:898.533333pt;}
.y10a{bottom:899.653333pt;}
.ya1{bottom:900.293333pt;}
.y2b{bottom:903.013333pt;}
.y1ad{bottom:906.533333pt;}
.y21a{bottom:911.013333pt;}
.y200{bottom:917.093333pt;}
.y179{bottom:920.773333pt;}
.y79{bottom:921.573333pt;}
.y1cb{bottom:924.773333pt;}
.y1ac{bottom:927.973333pt;}
.y5{bottom:929.573333pt;}
.y109{bottom:933.893333pt;}
.y3c{bottom:934.053333pt;}
.ya0{bottom:934.853333pt;}
.y219{bottom:935.653333pt;}
.y11{bottom:936.613333pt;}
.y2a{bottom:940.133333pt;}
.y178{bottom:945.413333pt;}
.y58{bottom:946.213333pt;}
.yc0{bottom:949.573333pt;}
.y10{bottom:965.733333pt;}
.y3b{bottom:965.893333pt;}
.y29{bottom:968.293333pt;}
.y4{bottom:968.453333pt;}
.y177{bottom:970.213333pt;}
.y57{bottom:971.013333pt;}
.y1{bottom:1054.880000pt;}
.h22{height:21.120000pt;}
.h26{height:21.280000pt;}
.h18{height:39.878400pt;}
.h17{height:41.484375pt;}
.h1f{height:42.240000pt;}
.h27{height:42.400000pt;}
.h25{height:42.432000pt;}
.ha{height:44.736000pt;}
.h19{height:58.912000pt;}
.h1c{height:59.648000pt;}
.h1d{height:61.084160pt;}
.h1e{height:63.360000pt;}
.h21{height:63.520000pt;}
.h23{height:63.552000pt;}
.h16{height:64.715625pt;}
.hc{height:69.638400pt;}
.h6{height:69.788160pt;}
.h14{height:71.136000pt;}
.h9{height:71.616000pt;}
.h28{height:72.288125pt;}
.h13{height:76.964840pt;}
.he{height:79.161600pt;}
.h2{height:79.331840pt;}
.h15{height:80.864000pt;}
.h24{height:84.480000pt;}
.h1a{height:86.696250pt;}
.h3{height:87.489947pt;}
.h5{height:89.472000pt;}
.h7{height:91.200000pt;}
.hb{height:98.672872pt;}
.h8{height:99.937500pt;}
.h29{height:100.138125pt;}
.h2a{height:103.426875pt;}
.h20{height:105.632000pt;}
.h4{height:203.226667pt;}
.h1b{height:211.386667pt;}
.h11{height:233.440000pt;}
.hd{height:233.466667pt;}
.hf{height:253.626667pt;}
.h10{height:318.106667pt;}
.h12{height:318.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:84.800000pt;}
.w4{width:93.472000pt;}
.w7{width:124.032000pt;}
.w8{width:130.592000pt;}
.wb{width:134.266667pt;}
.w9{width:150.106667pt;}
.w5{width:547.133333pt;}
.w6{width:599.493333pt;}
.w3{width:642.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x2{left:9.632000pt;}
.xc{left:27.712000pt;}
.x10{left:34.592000pt;}
.x8{left:38.592000pt;}
.xd{left:56.672000pt;}
.x9{left:67.546667pt;}
.x11{left:71.546667pt;}
.x1{left:75.519988pt;}
.x16{left:77.600000pt;}
.xe{left:85.786667pt;}
.x3{left:90.271988pt;}
.x4{left:94.911988pt;}
.x7{left:99.551988pt;}
.x1d{left:104.031988pt;}
.x1c{left:113.311988pt;}
.x12{left:123.551988pt;}
.xf{left:133.306667pt;}
.xa{left:170.426667pt;}
.x17{left:200.986667pt;}
.x5{left:226.266655pt;}
.x13{left:294.466655pt;}
.x18{left:332.386667pt;}
.x6{left:396.866655pt;}
.x1b{left:409.506655pt;}
.x19{left:483.133333pt;}
.x1a{left:568.573333pt;}
.x15{left:643.653322pt;}
.x14{left:645.893322pt;}
}




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