
    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_75116cf98a773e261beef69f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_451be71177fd501fe2fe2e2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_8e5e46731299cdd366ae66e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_abf36791554f316fe3ba119c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-17.982000px;}
.v4{vertical-align:-4.962000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls13{letter-spacing:-2.640000px;}
.ls2e{letter-spacing:-1.800000px;}
.ls12{letter-spacing:-1.320000px;}
.ls1a{letter-spacing:-1.300200px;}
.ls28{letter-spacing:-1.200000px;}
.ls1f{letter-spacing:-1.167982px;}
.ls1d{letter-spacing:-0.657974px;}
.ls2f{letter-spacing:-0.120000px;}
.ls30{letter-spacing:-0.108000px;}
.ls24{letter-spacing:-0.052800px;}
.ls23{letter-spacing:-0.046200px;}
.ls15{letter-spacing:-0.039600px;}
.ls16{letter-spacing:-0.033000px;}
.ls14{letter-spacing:-0.019800px;}
.ls31{letter-spacing:-0.018000px;}
.ls32{letter-spacing:-0.012000px;}
.ls21{letter-spacing:-0.006600px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003000px;}
.ls6{letter-spacing:0.005400px;}
.ls19{letter-spacing:0.006600px;}
.ls2a{letter-spacing:0.012000px;}
.ls1b{letter-spacing:0.013200px;}
.ls5{letter-spacing:0.019800px;}
.ls18{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.026400px;}
.ls8{letter-spacing:0.030000px;}
.ls2{letter-spacing:0.033000px;}
.ls17{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.039600px;}
.ls20{letter-spacing:0.052800px;}
.ls2c{letter-spacing:0.228000px;}
.ls2b{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.712800px;}
.ls10{letter-spacing:0.765000px;}
.lsf{letter-spacing:0.771000px;}
.ls22{letter-spacing:1.194600px;}
.ls2d{letter-spacing:1.200000px;}
.lsd{letter-spacing:1.267200px;}
.lse{letter-spacing:1.293600px;}
.lsa{letter-spacing:1.320000px;}
.ls1c{letter-spacing:1.854600px;}
.ls33{letter-spacing:2.112000px;}
.ls11{letter-spacing:3.623400px;}
.lsb{letter-spacing:4.059000px;}
.ls9{letter-spacing:4.732200px;}
.lsc{letter-spacing:6.586800px;}
.ls25{letter-spacing:8.358000px;}
.ls27{letter-spacing:9.768000px;}
.ls1e{letter-spacing:12.962400px;}
.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;}
}
.ws14{word-spacing:-17.820000px;}
.ws5{word-spacing:-16.500000px;}
.ws3f{word-spacing:-15.600000px;}
.ws22{word-spacing:-15.180000px;}
.ws12{word-spacing:-15.000000px;}
.ws1a{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-9.619500px;}
.ws28{word-spacing:-8.961526px;}
.ws0{word-spacing:-8.745000px;}
.ws1{word-spacing:-7.870500px;}
.ws29{word-spacing:-6.702518px;}
.ws4f{word-spacing:-3.594000px;}
.ws3c{word-spacing:-3.222000px;}
.ws4e{word-spacing:-2.658000px;}
.ws1c{word-spacing:-2.481600px;}
.ws47{word-spacing:-2.040000px;}
.wsa{word-spacing:-1.366200px;}
.ws26{word-spacing:-1.207800px;}
.ws10{word-spacing:-1.031400px;}
.wsf{word-spacing:-1.026000px;}
.wsc{word-spacing:-0.955800px;}
.ws2d{word-spacing:-0.838200px;}
.ws2f{word-spacing:-0.780000px;}
.ws19{word-spacing:-0.756000px;}
.ws23{word-spacing:-0.726000px;}
.ws15{word-spacing:-0.666600px;}
.ws1e{word-spacing:-0.118800px;}
.ws2{word-spacing:0.000000px;}
.ws45{word-spacing:0.162000px;}
.ws39{word-spacing:0.558000px;}
.wsd{word-spacing:0.799200px;}
.ws4b{word-spacing:1.962000px;}
.ws18{word-spacing:2.052000px;}
.ws3e{word-spacing:2.232000px;}
.ws20{word-spacing:2.381400px;}
.ws44{word-spacing:2.700000px;}
.ws13{word-spacing:3.544200px;}
.wse{word-spacing:3.823200px;}
.ws2a{word-spacing:3.927000px;}
.ws16{word-spacing:4.136400px;}
.ws3a{word-spacing:4.212000px;}
.ws4d{word-spacing:4.296000px;}
.wsb{word-spacing:4.368600px;}
.ws9{word-spacing:4.433400px;}
.ws1b{word-spacing:4.573800px;}
.ws2b{word-spacing:4.735800px;}
.ws1f{word-spacing:4.827600px;}
.ws17{word-spacing:5.000400px;}
.ws1d{word-spacing:6.032400px;}
.ws35{word-spacing:6.690000px;}
.ws40{word-spacing:6.702000px;}
.ws11{word-spacing:6.987600px;}
.ws3b{word-spacing:7.434000px;}
.ws27{word-spacing:8.269800px;}
.ws30{word-spacing:8.286000px;}
.ws32{word-spacing:8.358000px;}
.ws4c{word-spacing:8.388000px;}
.ws2c{word-spacing:8.560200px;}
.ws4a{word-spacing:9.336000px;}
.ws38{word-spacing:9.768000px;}
.ws48{word-spacing:10.050000px;}
.ws3{word-spacing:10.103400px;}
.ws34{word-spacing:10.128000px;}
.ws36{word-spacing:10.416000px;}
.ws43{word-spacing:10.968000px;}
.ws46{word-spacing:10.998000px;}
.ws21{word-spacing:12.592800px;}
.ws49{word-spacing:12.834000px;}
.ws41{word-spacing:13.770000px;}
.ws25{word-spacing:14.477400px;}
.ws24{word-spacing:14.482800px;}
.ws37{word-spacing:14.556000px;}
.ws31{word-spacing:16.944000px;}
.ws42{word-spacing:19.824000px;}
.ws2e{word-spacing:21.522000px;}
.ws3d{word-spacing:22.314000px;}
.ws8{word-spacing:26.452800px;}
.ws33{word-spacing:30.480000px;}
.ws4{word-spacing:586.206000px;}
._17{margin-left:-19.668000px;}
._8{margin-left:-18.328200px;}
._19{margin-left:-17.125800px;}
._22{margin-left:-16.086000px;}
._c{margin-left:-15.038400px;}
._1c{margin-left:-12.180600px;}
._21{margin-left:-10.488000px;}
._13{margin-left:-8.690400px;}
._0{margin-left:-7.123200px;}
._11{margin-left:-5.324400px;}
._f{margin-left:-3.943200px;}
._4{margin-left:-2.754000px;}
._1{margin-left:-1.080000px;}
._2{width:1.254000px;}
._6{width:2.976000px;}
._e{width:4.006800px;}
._3{width:5.035800px;}
._7{width:6.118200px;}
._b{width:7.849800px;}
._5{width:9.762000px;}
._d{width:10.767000px;}
._16{width:12.121800px;}
._10{width:13.609200px;}
._9{width:14.718000px;}
._15{width:15.906000px;}
._a{width:17.773800px;}
._18{width:19.557000px;}
._14{width:21.021000px;}
._1f{width:22.035000px;}
._23{width:23.238000px;}
._1a{width:24.314400px;}
._12{width:26.452800px;}
._1e{width:27.568200px;}
._20{width:30.486000px;}
._1b{width:33.455400px;}
._1d{width:63.439200px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:82.418100px;}
.y43{bottom:83.553600px;}
.yd3{bottom:83.553750px;}
.y116{bottom:84.527100px;}
.y1ad{bottom:84.987600px;}
.y13d{bottom:85.053600px;}
.y99{bottom:85.053750px;}
.y1d9{bottom:87.953100px;}
.yc1{bottom:88.049100px;}
.y15e{bottom:89.549100px;}
.y6c{bottom:91.131600px;}
.y42{bottom:99.753600px;}
.yd2{bottom:99.753750px;}
.y13c{bottom:101.253600px;}
.y98{bottom:101.253750px;}
.yee{bottom:104.249100px;}
.y115{bottom:104.327100px;}
.y1ac{bottom:104.787600px;}
.y1d8{bottom:105.953100px;}
.y6b{bottom:109.131600px;}
.y15d{bottom:109.757250px;}
.y184{bottom:114.252750px;}
.y41{bottom:115.953600px;}
.yd1{bottom:115.953750px;}
.yc0{bottom:116.027100px;}
.y13b{bottom:117.453600px;}
.y97{bottom:117.453750px;}
.y1d7{bottom:123.953100px;}
.y114{bottom:124.127100px;}
.y1ab{bottom:124.587600px;}
.y18{bottom:125.016600px;}
.y15c{bottom:125.957250px;}
.y6a{bottom:127.131600px;}
.y40{bottom:132.153600px;}
.yd0{bottom:132.153750px;}
.y13a{bottom:133.653600px;}
.y96{bottom:133.653750px;}
.yed{bottom:134.631600px;}
.ybf{bottom:135.827100px;}
.y183{bottom:138.956100px;}
.y1d6{bottom:141.953100px;}
.y15b{bottom:142.157250px;}
.y113{bottom:143.927100px;}
.y1aa{bottom:144.387600px;}
.y69{bottom:145.131600px;}
.y17{bottom:145.712100px;}
.y3f{bottom:148.353600px;}
.ycf{bottom:148.353750px;}
.y139{bottom:149.853600px;}
.y95{bottom:149.853750px;}
.yec{bottom:154.431600px;}
.ybe{bottom:155.627100px;}
.y15a{bottom:158.357250px;}
.y1d5{bottom:159.953100px;}
.y201{bottom:162.512100px;}
.y68{bottom:163.131600px;}
.y182{bottom:163.661100px;}
.y112{bottom:163.727100px;}
.y1a9{bottom:164.187600px;}
.y3e{bottom:164.553600px;}
.yce{bottom:164.553750px;}
.y16{bottom:165.921600px;}
.y94{bottom:166.053750px;}
.y138{bottom:170.549100px;}
.yeb{bottom:174.231600px;}
.y159{bottom:174.557250px;}
.ybd{bottom:175.427100px;}
.y1d4{bottom:177.953100px;}
.y200{bottom:180.512100px;}
.y3d{bottom:180.753600px;}
.ycd{bottom:180.753750px;}
.y67{bottom:181.131600px;}
.y93{bottom:182.253750px;}
.y111{bottom:183.527100px;}
.y1a8{bottom:183.987600px;}
.y15{bottom:186.617100px;}
.y158{bottom:190.757250px;}
.yea{bottom:194.031600px;}
.y181{bottom:194.927100px;}
.ybc{bottom:195.227100px;}
.y1d3{bottom:195.953100px;}
.y3c{bottom:196.953600px;}
.ycc{bottom:196.953750px;}
.y92{bottom:198.453750px;}
.y1ff{bottom:198.512100px;}
.y66{bottom:199.131600px;}
.y110{bottom:203.327100px;}
.y1a7{bottom:203.787600px;}
.y137{bottom:204.359100px;}
.y157{bottom:206.957250px;}
.y3b{bottom:213.153600px;}
.ye9{bottom:213.831600px;}
.y1d2{bottom:213.953100px;}
.y91{bottom:214.653750px;}
.y180{bottom:214.727100px;}
.ybb{bottom:215.027100px;}
.y1fe{bottom:216.512100px;}
.ycb{bottom:217.649100px;}
.y14{bottom:218.738100px;}
.y10f{bottom:223.127100px;}
.y156{bottom:223.157250px;}
.y1a6{bottom:223.587600px;}
.y136{bottom:224.159100px;}
.y65{bottom:229.887600px;}
.y90{bottom:230.853750px;}
.y1d1{bottom:231.953100px;}
.ye8{bottom:233.631600px;}
.y3a{bottom:233.849100px;}
.y1fd{bottom:234.512100px;}
.y17f{bottom:234.527100px;}
.yba{bottom:234.827100px;}
.yca{bottom:237.857100px;}
.y13{bottom:238.538100px;}
.y155{bottom:239.357250px;}
.y10e{bottom:242.927100px;}
.y1a5{bottom:243.387600px;}
.y135{bottom:243.959100px;}
.y8f{bottom:247.053750px;}
.y64{bottom:249.687600px;}
.y1d0{bottom:249.953100px;}
.y1fc{bottom:252.512100px;}
.ye7{bottom:253.431600px;}
.y39{bottom:254.057100px;}
.y17e{bottom:254.327100px;}
.yb9{bottom:254.627100px;}
.y154{bottom:255.557250px;}
.y12{bottom:258.338100px;}
.y10d{bottom:262.727100px;}
.y1a4{bottom:263.187600px;}
.y134{bottom:263.759100px;}
.y8e{bottom:267.749100px;}
.y1cf{bottom:267.953100px;}
.y63{bottom:269.487600px;}
.y38{bottom:270.257100px;}
.y1fb{bottom:270.512100px;}
.ye6{bottom:273.231600px;}
.y17d{bottom:274.127100px;}
.yb8{bottom:274.427100px;}
.y153{bottom:276.252750px;}
.y11{bottom:278.138100px;}
.y10c{bottom:282.527100px;}
.y1a3{bottom:282.987600px;}
.y133{bottom:283.559100px;}
.y1ce{bottom:285.953100px;}
.y37{bottom:286.457100px;}
.y8d{bottom:287.957100px;}
.y1fa{bottom:288.512100px;}
.y62{bottom:289.287600px;}
.ye5{bottom:293.031600px;}
.y17c{bottom:293.927100px;}
.yb7{bottom:294.227100px;}
.y10{bottom:297.938100px;}
.y10b{bottom:302.327100px;}
.yc9{bottom:302.657100px;}
.y1a2{bottom:302.787600px;}
.y132{bottom:303.359100px;}
.y1cd{bottom:303.953100px;}
.y8c{bottom:304.157100px;}
.y1f9{bottom:306.512100px;}
.y36{bottom:307.152600px;}
.y152{bottom:307.287600px;}
.y61{bottom:309.087600px;}
.ye4{bottom:312.831600px;}
.y17b{bottom:313.727100px;}
.yb6{bottom:314.027100px;}
.yf{bottom:317.738100px;}
.yc8{bottom:318.857100px;}
.y8b{bottom:320.357100px;}
.y1cc{bottom:321.953100px;}
.y10a{bottom:322.127100px;}
.y1a1{bottom:322.587600px;}
.y131{bottom:323.159100px;}
.y1f8{bottom:324.512100px;}
.y151{bottom:327.087600px;}
.y60{bottom:328.887600px;}
.ye3{bottom:332.631600px;}
.y17a{bottom:333.527100px;}
.yb5{bottom:333.827100px;}
.y8a{bottom:336.557100px;}
.ye{bottom:337.538100px;}
.y1cb{bottom:339.953100px;}
.y109{bottom:341.927100px;}
.y1a0{bottom:342.387600px;}
.y1f7{bottom:342.512100px;}
.y130{bottom:342.959100px;}
.y35{bottom:345.387600px;}
.y150{bottom:346.887600px;}
.y5f{bottom:348.687600px;}
.ye2{bottom:352.431600px;}
.y89{bottom:352.757100px;}
.y179{bottom:353.327100px;}
.yb4{bottom:353.627100px;}
.y1ca{bottom:357.953100px;}
.y1f6{bottom:360.512100px;}
.y108{bottom:361.727100px;}
.y19f{bottom:362.187600px;}
.y12f{bottom:362.759100px;}
.y34{bottom:365.187600px;}
.y14f{bottom:366.687600px;}
.y5e{bottom:368.487600px;}
.y88{bottom:368.957100px;}
.ye1{bottom:372.231600px;}
.y178{bottom:373.127100px;}
.yb3{bottom:373.427100px;}
.y1c9{bottom:375.953100px;}
.yd{bottom:377.138100px;}
.y1f5{bottom:378.512100px;}
.y107{bottom:381.527100px;}
.y19e{bottom:381.987600px;}
.y12e{bottom:382.559100px;}
.yc7{bottom:383.031600px;}
.y33{bottom:384.987600px;}
.y87{bottom:385.157100px;}
.y14e{bottom:386.487600px;}
.y5d{bottom:388.287600px;}
.ye0{bottom:392.031600px;}
.y177{bottom:392.927100px;}
.yb2{bottom:393.227100px;}
.y1c8{bottom:393.953100px;}
.yc{bottom:395.138100px;}
.y1f4{bottom:396.512100px;}
.yc6{bottom:401.031600px;}
.y106{bottom:401.327100px;}
.y86{bottom:401.357100px;}
.y19d{bottom:401.787600px;}
.y32{bottom:404.787600px;}
.y14d{bottom:406.287600px;}
.y5c{bottom:408.087600px;}
.ydf{bottom:411.831600px;}
.y1c7{bottom:411.953100px;}
.y176{bottom:412.727100px;}
.yb1{bottom:413.027100px;}
.yb{bottom:413.138100px;}
.y1f3{bottom:414.512100px;}
.y85{bottom:417.557100px;}
.yc5{bottom:419.031600px;}
.y105{bottom:421.127100px;}
.y19c{bottom:421.587600px;}
.y12d{bottom:422.159100px;}
.y31{bottom:424.587600px;}
.y14c{bottom:426.087600px;}
.y5b{bottom:427.887600px;}
.y1c6{bottom:429.953100px;}
.ya{bottom:431.138100px;}
.y1f2{bottom:432.512100px;}
.y175{bottom:432.527100px;}
.yb0{bottom:432.827100px;}
.y84{bottom:433.757100px;}
.yc4{bottom:437.031600px;}
.y12c{bottom:440.159100px;}
.y104{bottom:440.927100px;}
.y19b{bottom:441.387600px;}
.y30{bottom:444.387600px;}
.y14b{bottom:445.887600px;}
.y5a{bottom:447.687600px;}
.y1c5{bottom:447.953100px;}
.y83{bottom:449.957100px;}
.y1f1{bottom:450.512100px;}
.yde{bottom:451.431600px;}
.y174{bottom:452.327100px;}
.yaf{bottom:452.627100px;}
.yc3{bottom:455.031600px;}
.y12b{bottom:458.159100px;}
.y103{bottom:460.727100px;}
.y19a{bottom:461.187600px;}
.y9{bottom:461.894100px;}
.y2f{bottom:464.187600px;}
.y14a{bottom:465.687600px;}
.y1c4{bottom:465.953100px;}
.y82{bottom:466.157100px;}
.y59{bottom:467.487600px;}
.y1f0{bottom:468.512100px;}
.ydd{bottom:469.431600px;}
.y173{bottom:472.127100px;}
.yae{bottom:472.427100px;}
.yc2{bottom:473.031600px;}
.y12a{bottom:476.159100px;}
.y102{bottom:480.527100px;}
.y199{bottom:480.987600px;}
.y8{bottom:481.694100px;}
.y81{bottom:482.357100px;}
.y1c3{bottom:483.953100px;}
.y2e{bottom:483.987600px;}
.y149{bottom:485.487600px;}
.y1ef{bottom:486.512100px;}
.y58{bottom:487.287600px;}
.ydc{bottom:487.431600px;}
.y172{bottom:491.927100px;}
.yad{bottom:492.227100px;}
.y129{bottom:494.159100px;}
.y80{bottom:498.557100px;}
.y101{bottom:500.327100px;}
.y198{bottom:500.787600px;}
.y7{bottom:501.494100px;}
.y1c2{bottom:501.953100px;}
.y2d{bottom:503.787600px;}
.y1ee{bottom:504.512100px;}
.y148{bottom:505.287600px;}
.ydb{bottom:505.431600px;}
.y57{bottom:507.087600px;}
.y171{bottom:511.727100px;}
.yac{bottom:512.027100px;}
.y7f{bottom:514.757100px;}
.y1c1{bottom:519.953100px;}
.y100{bottom:520.127100px;}
.y197{bottom:520.587600px;}
.y6{bottom:521.294100px;}
.y1ed{bottom:522.512100px;}
.yda{bottom:523.431600px;}
.y2c{bottom:523.587600px;}
.y128{bottom:524.915100px;}
.y147{bottom:525.087600px;}
.y56{bottom:526.887600px;}
.y7e{bottom:530.957100px;}
.y170{bottom:531.527100px;}
.yab{bottom:531.827100px;}
.y1c0{bottom:537.953100px;}
.yff{bottom:539.927100px;}
.y196{bottom:540.387600px;}
.y1ec{bottom:540.512100px;}
.yd9{bottom:541.431600px;}
.y2b{bottom:543.387600px;}
.y127{bottom:544.715100px;}
.y146{bottom:544.887600px;}
.y55{bottom:546.687600px;}
.y7d{bottom:547.157100px;}
.y16f{bottom:551.327100px;}
.yaa{bottom:551.627100px;}
.y1bf{bottom:555.953100px;}
.y1eb{bottom:558.512100px;}
.y20d{bottom:558.768600px;}
.yd8{bottom:559.431600px;}
.yfe{bottom:559.727100px;}
.y195{bottom:560.187600px;}
.y2a{bottom:563.187600px;}
.y7c{bottom:563.357100px;}
.y126{bottom:564.515100px;}
.y145{bottom:564.687600px;}
.y54{bottom:566.487600px;}
.y16e{bottom:571.127100px;}
.ya9{bottom:571.427100px;}
.y1be{bottom:573.953100px;}
.y1ea{bottom:576.512100px;}
.yd7{bottom:577.431600px;}
.yfd{bottom:579.527100px;}
.y7b{bottom:579.557100px;}
.y194{bottom:579.987600px;}
.y29{bottom:582.987600px;}
.y125{bottom:584.315100px;}
.y144{bottom:584.487600px;}
.y53{bottom:586.287600px;}
.y16d{bottom:590.927100px;}
.ya8{bottom:591.227100px;}
.y1bd{bottom:591.953100px;}
.y1e9{bottom:594.512100px;}
.y20c{bottom:594.768600px;}
.yd6{bottom:595.431600px;}
.y7a{bottom:595.757100px;}
.yfc{bottom:599.327100px;}
.y193{bottom:599.787600px;}
.y28{bottom:602.787600px;}
.y124{bottom:604.115100px;}
.y143{bottom:604.287600px;}
.y52{bottom:606.087600px;}
.y1bc{bottom:609.953100px;}
.y16c{bottom:610.727100px;}
.ya7{bottom:611.027100px;}
.y79{bottom:611.957100px;}
.y1e8{bottom:612.512100px;}
.y20b{bottom:612.768600px;}
.yd5{bottom:613.431600px;}
.yfb{bottom:619.127100px;}
.y192{bottom:619.587600px;}
.y27{bottom:622.587600px;}
.y142{bottom:624.087600px;}
.y51{bottom:625.887600px;}
.y1bb{bottom:627.953100px;}
.y1e7{bottom:630.512100px;}
.y16b{bottom:630.527100px;}
.y20a{bottom:630.768600px;}
.ya6{bottom:630.827100px;}
.yd4{bottom:631.431600px;}
.y78{bottom:632.652600px;}
.yfa{bottom:638.927100px;}
.y191{bottom:639.387600px;}
.y26{bottom:642.387600px;}
.y123{bottom:643.715100px;}
.y141{bottom:643.887600px;}
.y50{bottom:645.687600px;}
.y1ba{bottom:645.953100px;}
.y1e6{bottom:648.512100px;}
.y209{bottom:648.768600px;}
.y16a{bottom:650.327100px;}
.ya5{bottom:650.627100px;}
.yf9{bottom:658.727100px;}
.y190{bottom:659.187600px;}
.y5{bottom:659.894100px;}
.y122{bottom:661.715100px;}
.y25{bottom:662.187600px;}
.y140{bottom:663.687600px;}
.y1b9{bottom:663.953100px;}
.y4f{bottom:665.487600px;}
.y1e5{bottom:666.512100px;}
.y169{bottom:670.127100px;}
.ya4{bottom:670.427100px;}
.y77{bottom:674.331600px;}
.y4{bottom:677.894100px;}
.yf8{bottom:678.527100px;}
.y18f{bottom:678.987600px;}
.y121{bottom:679.715100px;}
.y1b8{bottom:681.953100px;}
.y24{bottom:681.987600px;}
.y13f{bottom:683.487600px;}
.y1e4{bottom:684.512100px;}
.y208{bottom:684.768600px;}
.y4e{bottom:685.287600px;}
.y168{bottom:689.927100px;}
.ya3{bottom:690.227100px;}
.y76{bottom:692.331600px;}
.y120{bottom:697.715100px;}
.yf7{bottom:698.327100px;}
.y18e{bottom:698.787600px;}
.y1b7{bottom:699.953100px;}
.y23{bottom:701.787600px;}
.y1e3{bottom:702.512100px;}
.y13e{bottom:703.287600px;}
.y4d{bottom:705.087600px;}
.y167{bottom:709.727100px;}
.ya2{bottom:710.027100px;}
.y11f{bottom:715.715100px;}
.y1b6{bottom:717.953100px;}
.yf6{bottom:718.127100px;}
.y18d{bottom:718.587600px;}
.y1e2{bottom:720.512100px;}
.y22{bottom:721.587600px;}
.y75{bottom:723.087600px;}
.y4c{bottom:724.887600px;}
.y166{bottom:729.527100px;}
.ya1{bottom:729.827100px;}
.y11e{bottom:733.715100px;}
.y1b5{bottom:735.953100px;}
.y18c{bottom:738.387600px;}
.y1e1{bottom:738.512100px;}
.y207{bottom:738.768600px;}
.y21{bottom:741.387600px;}
.y74{bottom:742.887600px;}
.y4b{bottom:744.687600px;}
.y165{bottom:749.327100px;}
.ya0{bottom:749.627100px;}
.y11d{bottom:751.715100px;}
.y1b4{bottom:753.953100px;}
.y1e0{bottom:756.512100px;}
.yf5{bottom:757.727100px;}
.y18b{bottom:758.187600px;}
.y20{bottom:761.187600px;}
.y73{bottom:762.687600px;}
.y4a{bottom:764.487600px;}
.y3{bottom:766.094100px;}
.y164{bottom:769.127100px;}
.y9f{bottom:769.427100px;}
.y1b3{bottom:771.953100px;}
.y1df{bottom:774.512100px;}
.y206{bottom:774.768600px;}
.yf4{bottom:777.527100px;}
.y18a{bottom:777.987600px;}
.y1f{bottom:780.987600px;}
.y11c{bottom:782.471100px;}
.y72{bottom:782.487600px;}
.y49{bottom:784.287600px;}
.y163{bottom:788.927100px;}
.y1b2{bottom:789.953100px;}
.y1de{bottom:792.512100px;}
.y205{bottom:792.768600px;}
.y2{bottom:794.894100px;}
.yf3{bottom:795.527100px;}
.y189{bottom:797.787600px;}
.y1e{bottom:800.787600px;}
.y11b{bottom:802.271100px;}
.y71{bottom:802.287600px;}
.y48{bottom:804.087600px;}
.y1b1{bottom:807.953100px;}
.y9e{bottom:809.027100px;}
.y1dd{bottom:810.512100px;}
.y204{bottom:810.768600px;}
.yf2{bottom:813.527100px;}
.y188{bottom:817.587600px;}
.y1d{bottom:820.587600px;}
.y11a{bottom:822.071100px;}
.y70{bottom:822.087600px;}
.y47{bottom:823.887600px;}
.y1b0{bottom:825.953100px;}
.y9d{bottom:827.027100px;}
.y1dc{bottom:828.512100px;}
.y162{bottom:828.527100px;}
.y203{bottom:828.768600px;}
.yf1{bottom:831.527100px;}
.y187{bottom:837.387600px;}
.y1c{bottom:840.387600px;}
.y119{bottom:841.871100px;}
.y6f{bottom:841.887600px;}
.y46{bottom:843.687600px;}
.y9c{bottom:845.027100px;}
.y1db{bottom:846.512100px;}
.y161{bottom:846.527100px;}
.yf0{bottom:849.527100px;}
.y186{bottom:857.187600px;}
.y1b{bottom:860.187600px;}
.y118{bottom:861.671100px;}
.y6e{bottom:861.687600px;}
.y9b{bottom:863.027100px;}
.y45{bottom:863.487600px;}
.y1af{bottom:863.753100px;}
.y1da{bottom:864.512100px;}
.y160{bottom:864.527100px;}
.y202{bottom:864.768600px;}
.yef{bottom:867.527100px;}
.y185{bottom:876.987600px;}
.y1a{bottom:879.987600px;}
.y9a{bottom:881.027100px;}
.y117{bottom:881.471100px;}
.y6d{bottom:881.487600px;}
.y15f{bottom:882.527100px;}
.y44{bottom:925.985100px;}
.y19{bottom:927.225600px;}
.y1ae{bottom:927.485100px;}
.h7{height:29.399836px;}
.h13{height:29.400436px;}
.h14{height:29.531072px;}
.h9{height:29.531672px;}
.h12{height:29.532272px;}
.h11{height:29.979914px;}
.hd{height:37.303711px;}
.h8{height:47.381836px;}
.hc{height:47.513672px;}
.h2{height:47.961914px;}
.h4{height:48.055863px;}
.ha{height:48.329016px;}
.h5{height:52.646484px;}
.h10{height:52.792969px;}
.he{height:53.291016px;}
.h6{height:57.911133px;}
.hb{height:58.072266px;}
.hf{height:58.620117px;}
.h3{height:85.265625px;}
.h0{height:977.748600px;}
.h1{height:978.000000px;}
.w0{width:680.686050px;}
.w1{width:681.000000px;}
.x0{left:0.000000px;}
.x1{left:95.384550px;}
.xc{left:99.635550px;}
.x8{left:108.890550px;}
.xf{left:113.135550px;}
.x6{left:129.400050px;}
.xd{left:133.650300px;}
.x10{left:137.656050px;}
.x7{left:146.407050px;}
.xe{left:150.659550px;}
.x2{left:166.687050px;}
.xa{left:186.163050px;}
.x3{left:244.303050px;}
.xb{left:255.061050px;}
.x12{left:299.741550px;}
.x11{left:312.233550px;}
.x5{left:378.461550px;}
.x4{left:398.437050px;}
.x9{left:576.482550px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v4{vertical-align:-4.410667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls13{letter-spacing:-2.346667pt;}
.ls2e{letter-spacing:-1.600000pt;}
.ls12{letter-spacing:-1.173333pt;}
.ls1a{letter-spacing:-1.155733pt;}
.ls28{letter-spacing:-1.066667pt;}
.ls1f{letter-spacing:-1.038206pt;}
.ls1d{letter-spacing:-0.584866pt;}
.ls2f{letter-spacing:-0.106667pt;}
.ls30{letter-spacing:-0.096000pt;}
.ls24{letter-spacing:-0.046933pt;}
.ls23{letter-spacing:-0.041067pt;}
.ls15{letter-spacing:-0.035200pt;}
.ls16{letter-spacing:-0.029333pt;}
.ls14{letter-spacing:-0.017600pt;}
.ls31{letter-spacing:-0.016000pt;}
.ls32{letter-spacing:-0.010667pt;}
.ls21{letter-spacing:-0.005867pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002667pt;}
.ls6{letter-spacing:0.004800pt;}
.ls19{letter-spacing:0.005867pt;}
.ls2a{letter-spacing:0.010667pt;}
.ls1b{letter-spacing:0.011733pt;}
.ls5{letter-spacing:0.017600pt;}
.ls18{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.023467pt;}
.ls8{letter-spacing:0.026667pt;}
.ls2{letter-spacing:0.029333pt;}
.ls17{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.035200pt;}
.ls20{letter-spacing:0.046933pt;}
.ls2c{letter-spacing:0.202667pt;}
.ls2b{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.633600pt;}
.ls10{letter-spacing:0.680000pt;}
.lsf{letter-spacing:0.685333pt;}
.ls22{letter-spacing:1.061867pt;}
.ls2d{letter-spacing:1.066667pt;}
.lsd{letter-spacing:1.126400pt;}
.lse{letter-spacing:1.149867pt;}
.lsa{letter-spacing:1.173333pt;}
.ls1c{letter-spacing:1.648533pt;}
.ls33{letter-spacing:1.877333pt;}
.ls11{letter-spacing:3.220800pt;}
.lsb{letter-spacing:3.608000pt;}
.ls9{letter-spacing:4.206400pt;}
.lsc{letter-spacing:5.854933pt;}
.ls25{letter-spacing:7.429333pt;}
.ls27{letter-spacing:8.682667pt;}
.ls1e{letter-spacing:11.522133pt;}
.ws14{word-spacing:-15.840000pt;}
.ws5{word-spacing:-14.666667pt;}
.ws3f{word-spacing:-13.866667pt;}
.ws22{word-spacing:-13.493333pt;}
.ws12{word-spacing:-13.333333pt;}
.ws1a{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-8.550667pt;}
.ws28{word-spacing:-7.965801pt;}
.ws0{word-spacing:-7.773333pt;}
.ws1{word-spacing:-6.996000pt;}
.ws29{word-spacing:-5.957794pt;}
.ws4f{word-spacing:-3.194667pt;}
.ws3c{word-spacing:-2.864000pt;}
.ws4e{word-spacing:-2.362667pt;}
.ws1c{word-spacing:-2.205867pt;}
.ws47{word-spacing:-1.813333pt;}
.wsa{word-spacing:-1.214400pt;}
.ws26{word-spacing:-1.073600pt;}
.ws10{word-spacing:-0.916800pt;}
.wsf{word-spacing:-0.912000pt;}
.wsc{word-spacing:-0.849600pt;}
.ws2d{word-spacing:-0.745067pt;}
.ws2f{word-spacing:-0.693333pt;}
.ws19{word-spacing:-0.672000pt;}
.ws23{word-spacing:-0.645333pt;}
.ws15{word-spacing:-0.592533pt;}
.ws1e{word-spacing:-0.105600pt;}
.ws2{word-spacing:0.000000pt;}
.ws45{word-spacing:0.144000pt;}
.ws39{word-spacing:0.496000pt;}
.wsd{word-spacing:0.710400pt;}
.ws4b{word-spacing:1.744000pt;}
.ws18{word-spacing:1.824000pt;}
.ws3e{word-spacing:1.984000pt;}
.ws20{word-spacing:2.116800pt;}
.ws44{word-spacing:2.400000pt;}
.ws13{word-spacing:3.150400pt;}
.wse{word-spacing:3.398400pt;}
.ws2a{word-spacing:3.490667pt;}
.ws16{word-spacing:3.676800pt;}
.ws3a{word-spacing:3.744000pt;}
.ws4d{word-spacing:3.818667pt;}
.wsb{word-spacing:3.883200pt;}
.ws9{word-spacing:3.940800pt;}
.ws1b{word-spacing:4.065600pt;}
.ws2b{word-spacing:4.209600pt;}
.ws1f{word-spacing:4.291200pt;}
.ws17{word-spacing:4.444800pt;}
.ws1d{word-spacing:5.362133pt;}
.ws35{word-spacing:5.946667pt;}
.ws40{word-spacing:5.957333pt;}
.ws11{word-spacing:6.211200pt;}
.ws3b{word-spacing:6.608000pt;}
.ws27{word-spacing:7.350933pt;}
.ws30{word-spacing:7.365333pt;}
.ws32{word-spacing:7.429333pt;}
.ws4c{word-spacing:7.456000pt;}
.ws2c{word-spacing:7.609067pt;}
.ws4a{word-spacing:8.298667pt;}
.ws38{word-spacing:8.682667pt;}
.ws48{word-spacing:8.933333pt;}
.ws3{word-spacing:8.980800pt;}
.ws34{word-spacing:9.002667pt;}
.ws36{word-spacing:9.258667pt;}
.ws43{word-spacing:9.749333pt;}
.ws46{word-spacing:9.776000pt;}
.ws21{word-spacing:11.193600pt;}
.ws49{word-spacing:11.408000pt;}
.ws41{word-spacing:12.240000pt;}
.ws25{word-spacing:12.868800pt;}
.ws24{word-spacing:12.873600pt;}
.ws37{word-spacing:12.938667pt;}
.ws31{word-spacing:15.061333pt;}
.ws42{word-spacing:17.621333pt;}
.ws2e{word-spacing:19.130667pt;}
.ws3d{word-spacing:19.834667pt;}
.ws8{word-spacing:23.513600pt;}
.ws33{word-spacing:27.093333pt;}
.ws4{word-spacing:521.072000pt;}
._17{margin-left:-17.482667pt;}
._8{margin-left:-16.291733pt;}
._19{margin-left:-15.222933pt;}
._22{margin-left:-14.298667pt;}
._c{margin-left:-13.367467pt;}
._1c{margin-left:-10.827200pt;}
._21{margin-left:-9.322667pt;}
._13{margin-left:-7.724800pt;}
._0{margin-left:-6.331733pt;}
._11{margin-left:-4.732800pt;}
._f{margin-left:-3.505067pt;}
._4{margin-left:-2.448000pt;}
._1{margin-left:-0.960000pt;}
._2{width:1.114667pt;}
._6{width:2.645333pt;}
._e{width:3.561600pt;}
._3{width:4.476267pt;}
._7{width:5.438400pt;}
._b{width:6.977600pt;}
._5{width:8.677333pt;}
._d{width:9.570667pt;}
._16{width:10.774933pt;}
._10{width:12.097067pt;}
._9{width:13.082667pt;}
._15{width:14.138667pt;}
._a{width:15.798933pt;}
._18{width:17.384000pt;}
._14{width:18.685333pt;}
._1f{width:19.586667pt;}
._23{width:20.656000pt;}
._1a{width:21.612800pt;}
._12{width:23.513600pt;}
._1e{width:24.505067pt;}
._20{width:27.098667pt;}
._1b{width:29.738133pt;}
._1d{width:56.390400pt;}
.fs6{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:73.260533pt;}
.y43{bottom:74.269867pt;}
.yd3{bottom:74.270000pt;}
.y116{bottom:75.135200pt;}
.y1ad{bottom:75.544533pt;}
.y13d{bottom:75.603200pt;}
.y99{bottom:75.603333pt;}
.y1d9{bottom:78.180533pt;}
.yc1{bottom:78.265867pt;}
.y15e{bottom:79.599200pt;}
.y6c{bottom:81.005867pt;}
.y42{bottom:88.669867pt;}
.yd2{bottom:88.670000pt;}
.y13c{bottom:90.003200pt;}
.y98{bottom:90.003333pt;}
.yee{bottom:92.665867pt;}
.y115{bottom:92.735200pt;}
.y1ac{bottom:93.144533pt;}
.y1d8{bottom:94.180533pt;}
.y6b{bottom:97.005867pt;}
.y15d{bottom:97.562000pt;}
.y184{bottom:101.558000pt;}
.y41{bottom:103.069867pt;}
.yd1{bottom:103.070000pt;}
.yc0{bottom:103.135200pt;}
.y13b{bottom:104.403200pt;}
.y97{bottom:104.403333pt;}
.y1d7{bottom:110.180533pt;}
.y114{bottom:110.335200pt;}
.y1ab{bottom:110.744533pt;}
.y18{bottom:111.125867pt;}
.y15c{bottom:111.962000pt;}
.y6a{bottom:113.005867pt;}
.y40{bottom:117.469867pt;}
.yd0{bottom:117.470000pt;}
.y13a{bottom:118.803200pt;}
.y96{bottom:118.803333pt;}
.yed{bottom:119.672533pt;}
.ybf{bottom:120.735200pt;}
.y183{bottom:123.516533pt;}
.y1d6{bottom:126.180533pt;}
.y15b{bottom:126.362000pt;}
.y113{bottom:127.935200pt;}
.y1aa{bottom:128.344533pt;}
.y69{bottom:129.005867pt;}
.y17{bottom:129.521867pt;}
.y3f{bottom:131.869867pt;}
.ycf{bottom:131.870000pt;}
.y139{bottom:133.203200pt;}
.y95{bottom:133.203333pt;}
.yec{bottom:137.272533pt;}
.ybe{bottom:138.335200pt;}
.y15a{bottom:140.762000pt;}
.y1d5{bottom:142.180533pt;}
.y201{bottom:144.455200pt;}
.y68{bottom:145.005867pt;}
.y182{bottom:145.476533pt;}
.y112{bottom:145.535200pt;}
.y1a9{bottom:145.944533pt;}
.y3e{bottom:146.269867pt;}
.yce{bottom:146.270000pt;}
.y16{bottom:147.485867pt;}
.y94{bottom:147.603333pt;}
.y138{bottom:151.599200pt;}
.yeb{bottom:154.872533pt;}
.y159{bottom:155.162000pt;}
.ybd{bottom:155.935200pt;}
.y1d4{bottom:158.180533pt;}
.y200{bottom:160.455200pt;}
.y3d{bottom:160.669867pt;}
.ycd{bottom:160.670000pt;}
.y67{bottom:161.005867pt;}
.y93{bottom:162.003333pt;}
.y111{bottom:163.135200pt;}
.y1a8{bottom:163.544533pt;}
.y15{bottom:165.881867pt;}
.y158{bottom:169.562000pt;}
.yea{bottom:172.472533pt;}
.y181{bottom:173.268533pt;}
.ybc{bottom:173.535200pt;}
.y1d3{bottom:174.180533pt;}
.y3c{bottom:175.069867pt;}
.ycc{bottom:175.070000pt;}
.y92{bottom:176.403333pt;}
.y1ff{bottom:176.455200pt;}
.y66{bottom:177.005867pt;}
.y110{bottom:180.735200pt;}
.y1a7{bottom:181.144533pt;}
.y137{bottom:181.652533pt;}
.y157{bottom:183.962000pt;}
.y3b{bottom:189.469867pt;}
.ye9{bottom:190.072533pt;}
.y1d2{bottom:190.180533pt;}
.y91{bottom:190.803333pt;}
.y180{bottom:190.868533pt;}
.ybb{bottom:191.135200pt;}
.y1fe{bottom:192.455200pt;}
.ycb{bottom:193.465867pt;}
.y14{bottom:194.433867pt;}
.y10f{bottom:198.335200pt;}
.y156{bottom:198.362000pt;}
.y1a6{bottom:198.744533pt;}
.y136{bottom:199.252533pt;}
.y65{bottom:204.344533pt;}
.y90{bottom:205.203333pt;}
.y1d1{bottom:206.180533pt;}
.ye8{bottom:207.672533pt;}
.y3a{bottom:207.865867pt;}
.y1fd{bottom:208.455200pt;}
.y17f{bottom:208.468533pt;}
.yba{bottom:208.735200pt;}
.yca{bottom:211.428533pt;}
.y13{bottom:212.033867pt;}
.y155{bottom:212.762000pt;}
.y10e{bottom:215.935200pt;}
.y1a5{bottom:216.344533pt;}
.y135{bottom:216.852533pt;}
.y8f{bottom:219.603333pt;}
.y64{bottom:221.944533pt;}
.y1d0{bottom:222.180533pt;}
.y1fc{bottom:224.455200pt;}
.ye7{bottom:225.272533pt;}
.y39{bottom:225.828533pt;}
.y17e{bottom:226.068533pt;}
.yb9{bottom:226.335200pt;}
.y154{bottom:227.162000pt;}
.y12{bottom:229.633867pt;}
.y10d{bottom:233.535200pt;}
.y1a4{bottom:233.944533pt;}
.y134{bottom:234.452533pt;}
.y8e{bottom:237.999200pt;}
.y1cf{bottom:238.180533pt;}
.y63{bottom:239.544533pt;}
.y38{bottom:240.228533pt;}
.y1fb{bottom:240.455200pt;}
.ye6{bottom:242.872533pt;}
.y17d{bottom:243.668533pt;}
.yb8{bottom:243.935200pt;}
.y153{bottom:245.558000pt;}
.y11{bottom:247.233867pt;}
.y10c{bottom:251.135200pt;}
.y1a3{bottom:251.544533pt;}
.y133{bottom:252.052533pt;}
.y1ce{bottom:254.180533pt;}
.y37{bottom:254.628533pt;}
.y8d{bottom:255.961867pt;}
.y1fa{bottom:256.455200pt;}
.y62{bottom:257.144533pt;}
.ye5{bottom:260.472533pt;}
.y17c{bottom:261.268533pt;}
.yb7{bottom:261.535200pt;}
.y10{bottom:264.833867pt;}
.y10b{bottom:268.735200pt;}
.yc9{bottom:269.028533pt;}
.y1a2{bottom:269.144533pt;}
.y132{bottom:269.652533pt;}
.y1cd{bottom:270.180533pt;}
.y8c{bottom:270.361867pt;}
.y1f9{bottom:272.455200pt;}
.y36{bottom:273.024533pt;}
.y152{bottom:273.144533pt;}
.y61{bottom:274.744533pt;}
.ye4{bottom:278.072533pt;}
.y17b{bottom:278.868533pt;}
.yb6{bottom:279.135200pt;}
.yf{bottom:282.433867pt;}
.yc8{bottom:283.428533pt;}
.y8b{bottom:284.761867pt;}
.y1cc{bottom:286.180533pt;}
.y10a{bottom:286.335200pt;}
.y1a1{bottom:286.744533pt;}
.y131{bottom:287.252533pt;}
.y1f8{bottom:288.455200pt;}
.y151{bottom:290.744533pt;}
.y60{bottom:292.344533pt;}
.ye3{bottom:295.672533pt;}
.y17a{bottom:296.468533pt;}
.yb5{bottom:296.735200pt;}
.y8a{bottom:299.161867pt;}
.ye{bottom:300.033867pt;}
.y1cb{bottom:302.180533pt;}
.y109{bottom:303.935200pt;}
.y1a0{bottom:304.344533pt;}
.y1f7{bottom:304.455200pt;}
.y130{bottom:304.852533pt;}
.y35{bottom:307.011200pt;}
.y150{bottom:308.344533pt;}
.y5f{bottom:309.944533pt;}
.ye2{bottom:313.272533pt;}
.y89{bottom:313.561867pt;}
.y179{bottom:314.068533pt;}
.yb4{bottom:314.335200pt;}
.y1ca{bottom:318.180533pt;}
.y1f6{bottom:320.455200pt;}
.y108{bottom:321.535200pt;}
.y19f{bottom:321.944533pt;}
.y12f{bottom:322.452533pt;}
.y34{bottom:324.611200pt;}
.y14f{bottom:325.944533pt;}
.y5e{bottom:327.544533pt;}
.y88{bottom:327.961867pt;}
.ye1{bottom:330.872533pt;}
.y178{bottom:331.668533pt;}
.yb3{bottom:331.935200pt;}
.y1c9{bottom:334.180533pt;}
.yd{bottom:335.233867pt;}
.y1f5{bottom:336.455200pt;}
.y107{bottom:339.135200pt;}
.y19e{bottom:339.544533pt;}
.y12e{bottom:340.052533pt;}
.yc7{bottom:340.472533pt;}
.y33{bottom:342.211200pt;}
.y87{bottom:342.361867pt;}
.y14e{bottom:343.544533pt;}
.y5d{bottom:345.144533pt;}
.ye0{bottom:348.472533pt;}
.y177{bottom:349.268533pt;}
.yb2{bottom:349.535200pt;}
.y1c8{bottom:350.180533pt;}
.yc{bottom:351.233867pt;}
.y1f4{bottom:352.455200pt;}
.yc6{bottom:356.472533pt;}
.y106{bottom:356.735200pt;}
.y86{bottom:356.761867pt;}
.y19d{bottom:357.144533pt;}
.y32{bottom:359.811200pt;}
.y14d{bottom:361.144533pt;}
.y5c{bottom:362.744533pt;}
.ydf{bottom:366.072533pt;}
.y1c7{bottom:366.180533pt;}
.y176{bottom:366.868533pt;}
.yb1{bottom:367.135200pt;}
.yb{bottom:367.233867pt;}
.y1f3{bottom:368.455200pt;}
.y85{bottom:371.161867pt;}
.yc5{bottom:372.472533pt;}
.y105{bottom:374.335200pt;}
.y19c{bottom:374.744533pt;}
.y12d{bottom:375.252533pt;}
.y31{bottom:377.411200pt;}
.y14c{bottom:378.744533pt;}
.y5b{bottom:380.344533pt;}
.y1c6{bottom:382.180533pt;}
.ya{bottom:383.233867pt;}
.y1f2{bottom:384.455200pt;}
.y175{bottom:384.468533pt;}
.yb0{bottom:384.735200pt;}
.y84{bottom:385.561867pt;}
.yc4{bottom:388.472533pt;}
.y12c{bottom:391.252533pt;}
.y104{bottom:391.935200pt;}
.y19b{bottom:392.344533pt;}
.y30{bottom:395.011200pt;}
.y14b{bottom:396.344533pt;}
.y5a{bottom:397.944533pt;}
.y1c5{bottom:398.180533pt;}
.y83{bottom:399.961867pt;}
.y1f1{bottom:400.455200pt;}
.yde{bottom:401.272533pt;}
.y174{bottom:402.068533pt;}
.yaf{bottom:402.335200pt;}
.yc3{bottom:404.472533pt;}
.y12b{bottom:407.252533pt;}
.y103{bottom:409.535200pt;}
.y19a{bottom:409.944533pt;}
.y9{bottom:410.572533pt;}
.y2f{bottom:412.611200pt;}
.y14a{bottom:413.944533pt;}
.y1c4{bottom:414.180533pt;}
.y82{bottom:414.361867pt;}
.y59{bottom:415.544533pt;}
.y1f0{bottom:416.455200pt;}
.ydd{bottom:417.272533pt;}
.y173{bottom:419.668533pt;}
.yae{bottom:419.935200pt;}
.yc2{bottom:420.472533pt;}
.y12a{bottom:423.252533pt;}
.y102{bottom:427.135200pt;}
.y199{bottom:427.544533pt;}
.y8{bottom:428.172533pt;}
.y81{bottom:428.761867pt;}
.y1c3{bottom:430.180533pt;}
.y2e{bottom:430.211200pt;}
.y149{bottom:431.544533pt;}
.y1ef{bottom:432.455200pt;}
.y58{bottom:433.144533pt;}
.ydc{bottom:433.272533pt;}
.y172{bottom:437.268533pt;}
.yad{bottom:437.535200pt;}
.y129{bottom:439.252533pt;}
.y80{bottom:443.161867pt;}
.y101{bottom:444.735200pt;}
.y198{bottom:445.144533pt;}
.y7{bottom:445.772533pt;}
.y1c2{bottom:446.180533pt;}
.y2d{bottom:447.811200pt;}
.y1ee{bottom:448.455200pt;}
.y148{bottom:449.144533pt;}
.ydb{bottom:449.272533pt;}
.y57{bottom:450.744533pt;}
.y171{bottom:454.868533pt;}
.yac{bottom:455.135200pt;}
.y7f{bottom:457.561867pt;}
.y1c1{bottom:462.180533pt;}
.y100{bottom:462.335200pt;}
.y197{bottom:462.744533pt;}
.y6{bottom:463.372533pt;}
.y1ed{bottom:464.455200pt;}
.yda{bottom:465.272533pt;}
.y2c{bottom:465.411200pt;}
.y128{bottom:466.591200pt;}
.y147{bottom:466.744533pt;}
.y56{bottom:468.344533pt;}
.y7e{bottom:471.961867pt;}
.y170{bottom:472.468533pt;}
.yab{bottom:472.735200pt;}
.y1c0{bottom:478.180533pt;}
.yff{bottom:479.935200pt;}
.y196{bottom:480.344533pt;}
.y1ec{bottom:480.455200pt;}
.yd9{bottom:481.272533pt;}
.y2b{bottom:483.011200pt;}
.y127{bottom:484.191200pt;}
.y146{bottom:484.344533pt;}
.y55{bottom:485.944533pt;}
.y7d{bottom:486.361867pt;}
.y16f{bottom:490.068533pt;}
.yaa{bottom:490.335200pt;}
.y1bf{bottom:494.180533pt;}
.y1eb{bottom:496.455200pt;}
.y20d{bottom:496.683200pt;}
.yd8{bottom:497.272533pt;}
.yfe{bottom:497.535200pt;}
.y195{bottom:497.944533pt;}
.y2a{bottom:500.611200pt;}
.y7c{bottom:500.761867pt;}
.y126{bottom:501.791200pt;}
.y145{bottom:501.944533pt;}
.y54{bottom:503.544533pt;}
.y16e{bottom:507.668533pt;}
.ya9{bottom:507.935200pt;}
.y1be{bottom:510.180533pt;}
.y1ea{bottom:512.455200pt;}
.yd7{bottom:513.272533pt;}
.yfd{bottom:515.135200pt;}
.y7b{bottom:515.161867pt;}
.y194{bottom:515.544533pt;}
.y29{bottom:518.211200pt;}
.y125{bottom:519.391200pt;}
.y144{bottom:519.544533pt;}
.y53{bottom:521.144533pt;}
.y16d{bottom:525.268533pt;}
.ya8{bottom:525.535200pt;}
.y1bd{bottom:526.180533pt;}
.y1e9{bottom:528.455200pt;}
.y20c{bottom:528.683200pt;}
.yd6{bottom:529.272533pt;}
.y7a{bottom:529.561867pt;}
.yfc{bottom:532.735200pt;}
.y193{bottom:533.144533pt;}
.y28{bottom:535.811200pt;}
.y124{bottom:536.991200pt;}
.y143{bottom:537.144533pt;}
.y52{bottom:538.744533pt;}
.y1bc{bottom:542.180533pt;}
.y16c{bottom:542.868533pt;}
.ya7{bottom:543.135200pt;}
.y79{bottom:543.961867pt;}
.y1e8{bottom:544.455200pt;}
.y20b{bottom:544.683200pt;}
.yd5{bottom:545.272533pt;}
.yfb{bottom:550.335200pt;}
.y192{bottom:550.744533pt;}
.y27{bottom:553.411200pt;}
.y142{bottom:554.744533pt;}
.y51{bottom:556.344533pt;}
.y1bb{bottom:558.180533pt;}
.y1e7{bottom:560.455200pt;}
.y16b{bottom:560.468533pt;}
.y20a{bottom:560.683200pt;}
.ya6{bottom:560.735200pt;}
.yd4{bottom:561.272533pt;}
.y78{bottom:562.357867pt;}
.yfa{bottom:567.935200pt;}
.y191{bottom:568.344533pt;}
.y26{bottom:571.011200pt;}
.y123{bottom:572.191200pt;}
.y141{bottom:572.344533pt;}
.y50{bottom:573.944533pt;}
.y1ba{bottom:574.180533pt;}
.y1e6{bottom:576.455200pt;}
.y209{bottom:576.683200pt;}
.y16a{bottom:578.068533pt;}
.ya5{bottom:578.335200pt;}
.yf9{bottom:585.535200pt;}
.y190{bottom:585.944533pt;}
.y5{bottom:586.572533pt;}
.y122{bottom:588.191200pt;}
.y25{bottom:588.611200pt;}
.y140{bottom:589.944533pt;}
.y1b9{bottom:590.180533pt;}
.y4f{bottom:591.544533pt;}
.y1e5{bottom:592.455200pt;}
.y169{bottom:595.668533pt;}
.ya4{bottom:595.935200pt;}
.y77{bottom:599.405867pt;}
.y4{bottom:602.572533pt;}
.yf8{bottom:603.135200pt;}
.y18f{bottom:603.544533pt;}
.y121{bottom:604.191200pt;}
.y1b8{bottom:606.180533pt;}
.y24{bottom:606.211200pt;}
.y13f{bottom:607.544533pt;}
.y1e4{bottom:608.455200pt;}
.y208{bottom:608.683200pt;}
.y4e{bottom:609.144533pt;}
.y168{bottom:613.268533pt;}
.ya3{bottom:613.535200pt;}
.y76{bottom:615.405867pt;}
.y120{bottom:620.191200pt;}
.yf7{bottom:620.735200pt;}
.y18e{bottom:621.144533pt;}
.y1b7{bottom:622.180533pt;}
.y23{bottom:623.811200pt;}
.y1e3{bottom:624.455200pt;}
.y13e{bottom:625.144533pt;}
.y4d{bottom:626.744533pt;}
.y167{bottom:630.868533pt;}
.ya2{bottom:631.135200pt;}
.y11f{bottom:636.191200pt;}
.y1b6{bottom:638.180533pt;}
.yf6{bottom:638.335200pt;}
.y18d{bottom:638.744533pt;}
.y1e2{bottom:640.455200pt;}
.y22{bottom:641.411200pt;}
.y75{bottom:642.744533pt;}
.y4c{bottom:644.344533pt;}
.y166{bottom:648.468533pt;}
.ya1{bottom:648.735200pt;}
.y11e{bottom:652.191200pt;}
.y1b5{bottom:654.180533pt;}
.y18c{bottom:656.344533pt;}
.y1e1{bottom:656.455200pt;}
.y207{bottom:656.683200pt;}
.y21{bottom:659.011200pt;}
.y74{bottom:660.344533pt;}
.y4b{bottom:661.944533pt;}
.y165{bottom:666.068533pt;}
.ya0{bottom:666.335200pt;}
.y11d{bottom:668.191200pt;}
.y1b4{bottom:670.180533pt;}
.y1e0{bottom:672.455200pt;}
.yf5{bottom:673.535200pt;}
.y18b{bottom:673.944533pt;}
.y20{bottom:676.611200pt;}
.y73{bottom:677.944533pt;}
.y4a{bottom:679.544533pt;}
.y3{bottom:680.972533pt;}
.y164{bottom:683.668533pt;}
.y9f{bottom:683.935200pt;}
.y1b3{bottom:686.180533pt;}
.y1df{bottom:688.455200pt;}
.y206{bottom:688.683200pt;}
.yf4{bottom:691.135200pt;}
.y18a{bottom:691.544533pt;}
.y1f{bottom:694.211200pt;}
.y11c{bottom:695.529867pt;}
.y72{bottom:695.544533pt;}
.y49{bottom:697.144533pt;}
.y163{bottom:701.268533pt;}
.y1b2{bottom:702.180533pt;}
.y1de{bottom:704.455200pt;}
.y205{bottom:704.683200pt;}
.y2{bottom:706.572533pt;}
.yf3{bottom:707.135200pt;}
.y189{bottom:709.144533pt;}
.y1e{bottom:711.811200pt;}
.y11b{bottom:713.129867pt;}
.y71{bottom:713.144533pt;}
.y48{bottom:714.744533pt;}
.y1b1{bottom:718.180533pt;}
.y9e{bottom:719.135200pt;}
.y1dd{bottom:720.455200pt;}
.y204{bottom:720.683200pt;}
.yf2{bottom:723.135200pt;}
.y188{bottom:726.744533pt;}
.y1d{bottom:729.411200pt;}
.y11a{bottom:730.729867pt;}
.y70{bottom:730.744533pt;}
.y47{bottom:732.344533pt;}
.y1b0{bottom:734.180533pt;}
.y9d{bottom:735.135200pt;}
.y1dc{bottom:736.455200pt;}
.y162{bottom:736.468533pt;}
.y203{bottom:736.683200pt;}
.yf1{bottom:739.135200pt;}
.y187{bottom:744.344533pt;}
.y1c{bottom:747.011200pt;}
.y119{bottom:748.329867pt;}
.y6f{bottom:748.344533pt;}
.y46{bottom:749.944533pt;}
.y9c{bottom:751.135200pt;}
.y1db{bottom:752.455200pt;}
.y161{bottom:752.468533pt;}
.yf0{bottom:755.135200pt;}
.y186{bottom:761.944533pt;}
.y1b{bottom:764.611200pt;}
.y118{bottom:765.929867pt;}
.y6e{bottom:765.944533pt;}
.y9b{bottom:767.135200pt;}
.y45{bottom:767.544533pt;}
.y1af{bottom:767.780533pt;}
.y1da{bottom:768.455200pt;}
.y160{bottom:768.468533pt;}
.y202{bottom:768.683200pt;}
.yef{bottom:771.135200pt;}
.y185{bottom:779.544533pt;}
.y1a{bottom:782.211200pt;}
.y9a{bottom:783.135200pt;}
.y117{bottom:783.529867pt;}
.y6d{bottom:783.544533pt;}
.y15f{bottom:784.468533pt;}
.y44{bottom:823.097867pt;}
.y19{bottom:824.200533pt;}
.y1ae{bottom:824.431200pt;}
.h7{height:26.133188pt;}
.h13{height:26.133721pt;}
.h14{height:26.249842pt;}
.h9{height:26.250375pt;}
.h12{height:26.250908pt;}
.h11{height:26.648813pt;}
.hd{height:33.158854pt;}
.h8{height:42.117188pt;}
.hc{height:42.234375pt;}
.h2{height:42.632812pt;}
.h4{height:42.716323pt;}
.ha{height:42.959125pt;}
.h5{height:46.796875pt;}
.h10{height:46.927083pt;}
.he{height:47.369792pt;}
.h6{height:51.476562pt;}
.hb{height:51.619792pt;}
.hf{height:52.106771pt;}
.h3{height:75.791667pt;}
.h0{height:869.109867pt;}
.h1{height:869.333333pt;}
.w0{width:605.054267pt;}
.w1{width:605.333333pt;}
.x0{left:0.000000pt;}
.x1{left:84.786267pt;}
.xc{left:88.564933pt;}
.x8{left:96.791600pt;}
.xf{left:100.564933pt;}
.x6{left:115.022267pt;}
.xd{left:118.800267pt;}
.x10{left:122.360933pt;}
.x7{left:130.139600pt;}
.xe{left:133.919600pt;}
.x2{left:148.166267pt;}
.xa{left:165.478267pt;}
.x3{left:217.158267pt;}
.xb{left:226.720933pt;}
.x12{left:266.436933pt;}
.x11{left:277.540933pt;}
.x5{left:336.410267pt;}
.x4{left:354.166267pt;}
.x9{left:512.428933pt;}
}




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