
    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_aeb8ce8d796c93af978d33c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_c35854bd53b4d54f8803d058.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.703613;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_0497a7de1a6b7345ac123fc8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_51e38a518f541f9e036a6ba5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976000;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);}
.v2{vertical-align:-37.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:7.500000px;}
.v1{vertical-align:30.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:77.935200px;}
.lsc{letter-spacing:131.935200px;}
.ls4{letter-spacing:146.935200px;}
.ls5{letter-spacing:153.835200px;}
.lsb{letter-spacing:159.835200px;}
.ls8{letter-spacing:165.235200px;}
.ls2{letter-spacing:179.935200px;}
.ls6{letter-spacing:217.735200px;}
.lsa{letter-spacing:312.235200px;}
.ls7{letter-spacing:317.635200px;}
.ls3{letter-spacing:489.835200px;}
.ls1{letter-spacing:642.235200px;}
.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;}
}
.ws1{word-spacing:-17.160000px;}
.ws2{word-spacing:-9.984000px;}
.ws3{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws26{word-spacing:25.152000px;}
.ws35{word-spacing:37.356000px;}
.ws25{word-spacing:48.096000px;}
.ws36{word-spacing:58.356000px;}
.ws3f{word-spacing:59.166000px;}
.ws37{word-spacing:75.108000px;}
.ws2f{word-spacing:76.068000px;}
.ws47{word-spacing:76.452000px;}
.ws22{word-spacing:77.868000px;}
.ws1b{word-spacing:77.952000px;}
.ws20{word-spacing:78.252000px;}
.ws7{word-spacing:79.152000px;}
.ws33{word-spacing:88.082400px;}
.ws8{word-spacing:96.108000px;}
.ws41{word-spacing:96.966000px;}
.ws3a{word-spacing:97.584000px;}
.ws48{word-spacing:97.704000px;}
.ws13{word-spacing:100.656000px;}
.ws38{word-spacing:101.148000px;}
.ws18{word-spacing:115.314000px;}
.ws1c{word-spacing:115.704000px;}
.ws9{word-spacing:116.904000px;}
.ws17{word-spacing:130.356000px;}
.ws19{word-spacing:133.308000px;}
.wsb{word-spacing:133.860000px;}
.wsd{word-spacing:136.082400px;}
.ws12{word-spacing:138.408000px;}
.wse{word-spacing:146.196000px;}
.ws5{word-spacing:152.556000px;}
.ws1d{word-spacing:153.456000px;}
.ws6{word-spacing:154.656000px;}
.ws44{word-spacing:158.952000px;}
.ws3c{word-spacing:167.478000px;}
.ws15{word-spacing:169.656000px;}
.ws24{word-spacing:176.466000px;}
.ws45{word-spacing:180.204000px;}
.ws30{word-spacing:184.656000px;}
.ws32{word-spacing:188.748000px;}
.ws1f{word-spacing:191.508000px;}
.ws2c{word-spacing:192.408000px;}
.ws14{word-spacing:193.848000px;}
.ws49{word-spacing:196.704000px;}
.ws4a{word-spacing:217.956000px;}
.ws39{word-spacing:235.458000px;}
.ws3b{word-spacing:236.712000px;}
.ws21{word-spacing:246.948000px;}
.ws4b{word-spacing:255.708000px;}
.ws31{word-spacing:263.988000px;}
.ws2b{word-spacing:267.288000px;}
.ws10{word-spacing:269.088000px;}
.ws2a{word-spacing:269.442000px;}
.ws23{word-spacing:274.842000px;}
.ws11{word-spacing:285.588000px;}
.ws40{word-spacing:288.018000px;}
.ws2d{word-spacing:295.488000px;}
.ws27{word-spacing:300.888000px;}
.ws1a{word-spacing:307.668000px;}
.ws42{word-spacing:310.818000px;}
.ws2e{word-spacing:312.086400px;}
.ws29{word-spacing:317.486400px;}
.ws28{word-spacing:339.588000px;}
.ws34{word-spacing:451.368000px;}
.ws1e{word-spacing:455.868000px;}
.ws4{word-spacing:604.668000px;}
.wsa{word-spacing:625.488000px;}
.ws16{word-spacing:634.668000px;}
.wsf{word-spacing:639.768000px;}
.wsc{word-spacing:642.086400px;}
.ws43{word-spacing:1095.984000px;}
.ws3d{word-spacing:1099.548000px;}
.ws46{word-spacing:1165.878000px;}
.ws3e{word-spacing:1306.524000px;}
._0{margin-left:-1.152000px;}
._3{width:1.056000px;}
._7{width:2.376000px;}
._8{width:3.474000px;}
._4{width:4.530000px;}
._6{width:5.532000px;}
._5{width:6.546000px;}
._1{width:7.920000px;}
._2{width:9.240000px;}
._b{width:11.022000px;}
._b0{width:12.342000px;}
._c{width:13.464000px;}
._d{width:14.556000px;}
._9{width:20.526000px;}
._a{width:21.780000px;}
._e{width:27.522000px;}
._8f{width:42.144000px;}
._a3{width:48.372000px;}
._cc{width:53.160000px;}
._be{width:54.282000px;}
._c3{width:56.862000px;}
._8e{width:57.966000px;}
._c5{width:59.346000px;}
._ce{width:60.576000px;}
._a0{width:63.444000px;}
._94{width:64.728000px;}
._16{width:66.432000px;}
._c0{width:70.338000px;}
._73{width:71.766000px;}
._bc{width:72.906000px;}
._92{width:74.148000px;}
._a7{width:75.648000px;}
._ac{width:77.004000px;}
._d7{width:78.306000px;}
._c2{width:79.380000px;}
._72{width:80.532000px;}
._ca{width:81.732000px;}
._ba{width:84.288000px;}
._19{width:86.604000px;}
._b5{width:88.836000px;}
._bb{width:89.910000px;}
._c8{width:91.362000px;}
._a9{width:92.388000px;}
._c7{width:93.498000px;}
._93{width:96.408000px;}
._ab{width:101.304000px;}
._91{width:102.480000px;}
._d6{width:103.980000px;}
._d2{width:107.646000px;}
._c4{width:108.750000px;}
._b7{width:109.788000px;}
._b9{width:110.910000px;}
._af{width:112.332000px;}
._a8{width:113.994000px;}
._53{width:117.552000px;}
._a4{width:119.166000px;}
._b3{width:122.040000px;}
._65{width:124.020000px;}
._b8{width:127.248000px;}
._47{width:129.330000px;}
._d3{width:130.728000px;}
._36{width:132.210000px;}
._37{width:133.800000px;}
._3b{width:135.576000px;}
._96{width:141.006000px;}
._3d{width:144.048000px;}
._c9{width:145.254000px;}
._69{width:147.018000px;}
._8c{width:148.104000px;}
._33{width:150.756000px;}
._ad{width:152.148000px;}
._4c{width:154.704000px;}
._52{width:155.826000px;}
._ae{width:157.476000px;}
._d1{width:158.646000px;}
._cd{width:160.674000px;}
._3a{width:163.956000px;}
._b4{width:165.522000px;}
._d5{width:167.868000px;}
._34{width:169.452000px;}
._20{width:171.552000px;}
._59{width:172.716000px;}
._6c{width:173.760000px;}
._c1{width:175.362000px;}
._9f{width:177.048000px;}
._90{width:178.248000px;}
._1c{width:180.804000px;}
._99{width:183.576000px;}
._6e{width:185.112000px;}
._3f{width:186.930000px;}
._6b{width:187.956000px;}
._95{width:188.976000px;}
._5b{width:192.378000px;}
._38{width:193.398000px;}
._9b{width:195.822000px;}
._bf{width:197.100000px;}
._cf{width:198.474000px;}
._35{width:201.618000px;}
._68{width:202.746000px;}
._85{width:204.048000px;}
._6d{width:205.813200px;}
._2c{width:206.934000px;}
._a5{width:207.948000px;}
._97{width:209.304000px;}
._56{width:210.744000px;}
._c6{width:214.572000px;}
._d0{width:215.808000px;}
._a6{width:218.724000px;}
._d4{width:219.900000px;}
._49{width:221.004000px;}
._2d{width:224.892000px;}
._57{width:226.674000px;}
._6a{width:227.748000px;}
._5e{width:230.130000px;}
._22{width:231.204000px;}
._1f{width:232.992000px;}
._39{width:234.192000px;}
._cb{width:235.572000px;}
._29{width:236.976000px;}
._14{width:238.272000px;}
._41{width:239.310000px;}
._67{width:240.606000px;}
._55{width:241.728000px;}
._24{width:243.948000px;}
._2e{width:244.956000px;}
._9e{width:246.280800px;}
._58{width:247.404000px;}
._5f{width:248.850000px;}
._b6{width:252.486000px;}
._b2{width:253.638000px;}
._98{width:255.252000px;}
._9c{width:256.908000px;}
._1a{width:258.618000px;}
._15{width:260.718000px;}
._25{width:262.380000px;}
._84{width:263.460000px;}
._54{width:264.744000px;}
._66{width:266.718000px;}
._32{width:271.944000px;}
._21{width:274.992000px;}
._28{width:276.348000px;}
._3e{width:277.621200px;}
._4e{width:278.904000px;}
._87{width:280.992000px;}
._17{width:282.618000px;}
._5c{width:284.910000px;}
._51{width:286.032000px;}
._79{width:287.928000px;}
._1e{width:291.726000px;}
._30{width:292.848000px;}
._4b{width:301.626000px;}
._5a{width:302.892000px;}
._9d{width:306.108000px;}
._40{width:309.750000px;}
._8d{width:312.798000px;}
._27{width:314.604000px;}
._83{width:317.304000px;}
._89{width:319.128000px;}
._5d{width:323.191200px;}
._78{width:325.680000px;}
._4a{width:330.618000px;}
._aa{width:332.196000px;}
._9a{width:334.122000px;}
._26{width:338.148000px;}
._4d{width:340.248000px;}
._23{width:347.448000px;}
._1b{width:353.526000px;}
._48{width:355.410000px;}
._86{width:356.496000px;}
._18{width:362.826000px;}
._2b{width:363.948000px;}
._1d{width:366.018000px;}
._81{width:369.372000px;}
._6f{width:370.566000px;}
._8a{width:373.128000px;}
._a1{width:376.194000px;}
._2a{width:378.648000px;}
._4f{width:395.244000px;}
._75{width:401.184000px;}
._31{width:404.802000px;}
._76{width:405.822000px;}
._77{width:406.824000px;}
._bd{width:411.276000px;}
._70{width:424.620000px;}
._50{width:426.648000px;}
._7f{width:430.980000px;}
._8b{width:433.380000px;}
._a2{width:440.412000px;}
._7a{width:443.574000px;}
._2f{width:462.048000px;}
._88{width:471.132000px;}
._7c{width:478.566000px;}
._7b{width:481.326000px;}
._71{width:488.296800px;}
._82{width:508.884000px;}
._7e{width:526.620000px;}
._7d{width:532.620000px;}
._74{width:570.918000px;}
._12{width:605.394000px;}
._80{width:636.708000px;}
._3c{width:664.122000px;}
._42{width:672.204000px;}
._10{width:675.420000px;}
._60{width:677.304000px;}
._f{width:681.804000px;}
._61{width:705.420000px;}
._43{width:710.520000px;}
._44{width:726.720000px;}
._62{width:731.820000px;}
._11{width:736.320000px;}
._63{width:815.508000px;}
._45{width:820.608000px;}
._46{width:836.808000px;}
._64{width:841.908000px;}
._13{width:846.408000px;}
._b1{width:1116.954000px;}
.fc1{color:rgb(128,0,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.400000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y6{bottom:56.983500px;}
.y47{bottom:57.004500px;}
.y65{bottom:93.937500px;}
.y46{bottom:96.937500px;}
.ya3{bottom:98.116500px;}
.y12d{bottom:99.616500px;}
.y114{bottom:100.366500px;}
.y17e{bottom:101.116500px;}
.y162{bottom:102.616500px;}
.yc9{bottom:104.116500px;}
.y148{bottom:105.616500px;}
.y1aa{bottom:107.116500px;}
.y1e9{bottom:109.741500px;}
.y1c5{bottom:113.116500px;}
.y64{bottom:117.187500px;}
.y17{bottom:119.341500px;}
.y45{bottom:120.187500px;}
.ya2{bottom:121.366500px;}
.y12c{bottom:122.866500px;}
.y113{bottom:123.616500px;}
.y17d{bottom:124.366500px;}
.y161{bottom:125.116500px;}
.yc8{bottom:126.616500px;}
.y147{bottom:128.866500px;}
.y1a9{bottom:130.366500px;}
.y1e8{bottom:134.866500px;}
.y1c4{bottom:136.366500px;}
.y63{bottom:140.437500px;}
.y16{bottom:141.841500px;}
.y44{bottom:143.437500px;}
.ya1{bottom:144.616500px;}
.y12b{bottom:145.366500px;}
.y112{bottom:146.116500px;}
.yea{bottom:146.866500px;}
.y160{bottom:148.366500px;}
.yc7{bottom:149.116500px;}
.y146{bottom:152.116500px;}
.y1a8{bottom:153.616500px;}
.y27{bottom:154.441500px;}
.y1c3{bottom:159.616500px;}
.y20b{bottom:159.841500px;}
.y1e7{bottom:159.991500px;}
.y62{bottom:163.687500px;}
.y43{bottom:166.687500px;}
.ya0{bottom:167.866500px;}
.y12a{bottom:168.616500px;}
.y111{bottom:169.366500px;}
.y17c{bottom:170.116500px;}
.y15f{bottom:170.866500px;}
.ye9{bottom:171.616500px;}
.y145{bottom:175.366500px;}
.y1a7{bottom:176.866500px;}
.y26{bottom:176.941500px;}
.y1c2{bottom:182.866500px;}
.y20a{bottom:183.091500px;}
.y1e6{bottom:185.116500px;}
.y61{bottom:186.937500px;}
.y42{bottom:189.937500px;}
.y9f{bottom:191.116500px;}
.y110{bottom:191.866500px;}
.y17b{bottom:192.616500px;}
.y15e{bottom:194.116500px;}
.yc5{bottom:194.866500px;}
.ye8{bottom:196.366500px;}
.y144{bottom:198.616500px;}
.y1a6{bottom:200.116500px;}
.y1c1{bottom:206.116500px;}
.y209{bottom:208.366500px;}
.y60{bottom:210.187500px;}
.y1e5{bottom:210.241500px;}
.y41{bottom:213.187500px;}
.y9e{bottom:214.366500px;}
.y10f{bottom:215.116500px;}
.y17a{bottom:215.866500px;}
.y15d{bottom:216.616500px;}
.yc6{bottom:217.366500px;}
.y143{bottom:221.116500px;}
.y1a5{bottom:223.366500px;}
.y1c0{bottom:229.366500px;}
.y5f{bottom:233.437500px;}
.y208{bottom:233.491500px;}
.y1e4{bottom:235.366500px;}
.y40{bottom:236.437500px;}
.y129{bottom:236.866500px;}
.y9d{bottom:237.616500px;}
.y179{bottom:238.366500px;}
.y15c{bottom:239.866500px;}
.yc3{bottom:240.616500px;}
.ye7{bottom:242.116500px;}
.y142{bottom:244.366500px;}
.y1a4{bottom:246.616500px;}
.y1bf{bottom:252.616500px;}
.y5e{bottom:256.687500px;}
.y207{bottom:258.616500px;}
.y3f{bottom:259.687500px;}
.y128{bottom:260.116500px;}
.y1e3{bottom:260.491500px;}
.y9c{bottom:260.866500px;}
.y178{bottom:261.616500px;}
.y15b{bottom:262.366500px;}
.yc4{bottom:263.116500px;}
.ye6{bottom:264.616500px;}
.y141{bottom:266.866500px;}
.y1a3{bottom:269.866500px;}
.y23{bottom:272.866500px;}
.y1be{bottom:275.866500px;}
.y5d{bottom:279.937500px;}
.y127{bottom:282.616500px;}
.y3e{bottom:282.937500px;}
.y10e{bottom:283.366500px;}
.y206{bottom:283.741500px;}
.y9b{bottom:284.116500px;}
.y15a{bottom:285.616500px;}
.yc2{bottom:286.366500px;}
.ye5{bottom:287.866500px;}
.y140{bottom:290.116500px;}
.y1a2{bottom:293.116500px;}
.y1bd{bottom:299.116500px;}
.y5c{bottom:303.187500px;}
.y126{bottom:305.866500px;}
.y3d{bottom:306.187500px;}
.y10d{bottom:306.616500px;}
.y9a{bottom:307.366500px;}
.y159{bottom:308.116500px;}
.y205{bottom:308.866500px;}
.y1c{bottom:309.316500px;}
.yc0{bottom:309.616500px;}
.ye4{bottom:310.366500px;}
.y1e2{bottom:310.741500px;}
.y13f{bottom:312.616500px;}
.y1a1{bottom:316.366500px;}
.y1bc{bottom:322.366500px;}
.y5b{bottom:326.437500px;}
.y10c{bottom:329.116500px;}
.y3c{bottom:329.437500px;}
.y20{bottom:329.641500px;}
.y177{bottom:329.866500px;}
.y99{bottom:330.616500px;}
.y158{bottom:331.366500px;}
.y1b{bottom:331.816500px;}
.yc1{bottom:332.116500px;}
.ye3{bottom:333.616500px;}
.y204{bottom:333.991500px;}
.y13e{bottom:335.866500px;}
.y1a0{bottom:339.616500px;}
.y1bb{bottom:345.616500px;}
.y5a{bottom:349.687500px;}
.y1f{bottom:352.141500px;}
.y10b{bottom:352.366500px;}
.y3b{bottom:352.687500px;}
.y176{bottom:353.116500px;}
.y98{bottom:353.866500px;}
.y1a{bottom:354.316500px;}
.ybe{bottom:355.366500px;}
.ye2{bottom:356.866500px;}
.y13d{bottom:358.366500px;}
.y203{bottom:359.116500px;}
.y1e1{bottom:360.991500px;}
.y19f{bottom:362.866500px;}
.y1ba{bottom:368.866500px;}
.y59{bottom:372.937500px;}
.y10a{bottom:374.866500px;}
.y125{bottom:375.616500px;}
.y3a{bottom:375.937500px;}
.y97{bottom:377.116500px;}
.ybf{bottom:377.866500px;}
.ye1{bottom:379.366500px;}
.y13c{bottom:381.616500px;}
.y202{bottom:384.241500px;}
.y19e{bottom:386.116500px;}
.y1b9{bottom:392.116500px;}
.y58{bottom:396.187500px;}
.y109{bottom:398.116500px;}
.y11{bottom:398.491500px;}
.y124{bottom:398.866500px;}
.y39{bottom:399.187500px;}
.y157{bottom:399.616500px;}
.y96{bottom:400.366500px;}
.ybd{bottom:401.116500px;}
.ye0{bottom:402.616500px;}
.y13b{bottom:404.116500px;}
.y19d{bottom:409.366500px;}
.y1e0{bottom:411.241500px;}
.y1b8{bottom:415.366500px;}
.y57{bottom:419.437500px;}
.y108{bottom:420.616500px;}
.y10{bottom:420.991500px;}
.y175{bottom:421.366500px;}
.y123{bottom:422.116500px;}
.y38{bottom:422.437500px;}
.y156{bottom:422.866500px;}
.y94{bottom:423.616500px;}
.ybb{bottom:424.366500px;}
.ydf{bottom:425.116500px;}
.y13a{bottom:427.366500px;}
.y19c{bottom:432.616500px;}
.y201{bottom:434.491500px;}
.y1df{bottom:436.366500px;}
.y1b7{bottom:438.616500px;}
.y56{bottom:442.687500px;}
.yf{bottom:443.491500px;}
.y107{bottom:443.866500px;}
.y174{bottom:444.616500px;}
.y122{bottom:445.366500px;}
.y37{bottom:445.687500px;}
.y95{bottom:446.116500px;}
.ybc{bottom:446.866500px;}
.yde{bottom:448.366500px;}
.y139{bottom:449.866500px;}
.y19b{bottom:455.866500px;}
.y200{bottom:459.616500px;}
.y1de{bottom:461.491500px;}
.y1b6{bottom:461.866500px;}
.y55{bottom:465.937500px;}
.y106{bottom:466.366500px;}
.y173{bottom:467.116500px;}
.y121{bottom:468.616500px;}
.y36{bottom:468.937500px;}
.y93{bottom:469.366500px;}
.yba{bottom:470.116500px;}
.ydd{bottom:471.616500px;}
.y138{bottom:473.116500px;}
.y19a{bottom:479.116500px;}
.y1ff{bottom:484.741500px;}
.y1b5{bottom:485.116500px;}
.y1dd{bottom:486.616500px;}
.y7f{bottom:488.866500px;}
.y54{bottom:489.187500px;}
.y105{bottom:489.616500px;}
.y172{bottom:490.366500px;}
.y155{bottom:491.116500px;}
.y120{bottom:491.866500px;}
.y35{bottom:492.187500px;}
.y92{bottom:492.616500px;}
.ydc{bottom:494.116500px;}
.y137{bottom:495.616500px;}
.y199{bottom:502.366500px;}
.y1b4{bottom:508.366500px;}
.y1fe{bottom:509.866500px;}
.y1dc{bottom:511.741500px;}
.y7e{bottom:512.116500px;}
.y53{bottom:512.437500px;}
.y171{bottom:512.866500px;}
.y154{bottom:514.366500px;}
.y11f{bottom:515.116500px;}
.y34{bottom:515.437500px;}
.y91{bottom:515.866500px;}
.ydb{bottom:517.366500px;}
.y136{bottom:518.866500px;}
.y198{bottom:525.616500px;}
.y1b3{bottom:531.616500px;}
.y1fd{bottom:534.991500px;}
.y7d{bottom:535.366500px;}
.y52{bottom:535.687500px;}
.y170{bottom:536.116500px;}
.y153{bottom:536.866500px;}
.y11e{bottom:538.366500px;}
.y33{bottom:538.687500px;}
.yb9{bottom:539.116500px;}
.yda{bottom:539.866500px;}
.y135{bottom:541.366500px;}
.y197{bottom:548.866500px;}
.y1b2{bottom:554.866500px;}
.y104{bottom:557.866500px;}
.y7c{bottom:558.616500px;}
.y51{bottom:558.937500px;}
.y25{bottom:559.066500px;}
.y152{bottom:560.116500px;}
.y90{bottom:561.616500px;}
.y32{bottom:561.937500px;}
.y1db{bottom:561.991500px;}
.yd9{bottom:563.116500px;}
.y134{bottom:564.616500px;}
.y196{bottom:572.116500px;}
.y29{bottom:576.166500px;}
.y1b1{bottom:578.116500px;}
.y103{bottom:581.116500px;}
.y24{bottom:581.566500px;}
.y7b{bottom:581.866500px;}
.y50{bottom:582.187500px;}
.y151{bottom:582.616500px;}
.y8f{bottom:584.116500px;}
.yb7{bottom:584.866500px;}
.y31{bottom:585.187500px;}
.y1fc{bottom:585.241500px;}
.yd8{bottom:586.366500px;}
.y133{bottom:587.116500px;}
.y195{bottom:595.366500px;}
.y28{bottom:598.666500px;}
.y1b0{bottom:601.366500px;}
.y102{bottom:603.616500px;}
.y16f{bottom:604.366500px;}
.y7a{bottom:605.116500px;}
.y4f{bottom:605.437500px;}
.y8{bottom:605.566500px;}
.y150{bottom:605.866500px;}
.y8e{bottom:606.616500px;}
.yb8{bottom:607.366500px;}
.ya{bottom:607.591500px;}
.y11d{bottom:608.116500px;}
.y30{bottom:608.437500px;}
.yd7{bottom:608.866500px;}
.yc{bottom:609.091500px;}
.y132{bottom:610.366500px;}
.y1da{bottom:612.241500px;}
.ye{bottom:613.291500px;}
.y194{bottom:618.616500px;}
.y15{bottom:621.166500px;}
.y1af{bottom:624.616500px;}
.y101{bottom:626.866500px;}
.y16e{bottom:627.616500px;}
.y7{bottom:628.066500px;}
.y79{bottom:628.366500px;}
.y4e{bottom:628.687500px;}
.y8d{bottom:629.116500px;}
.y9{bottom:630.091500px;}
.yb5{bottom:630.616500px;}
.y11c{bottom:631.366500px;}
.yb{bottom:631.591500px;}
.y2f{bottom:631.687500px;}
.yd6{bottom:632.116500px;}
.y131{bottom:632.866500px;}
.y1fb{bottom:635.491500px;}
.yd{bottom:635.791500px;}
.y1d9{bottom:637.366500px;}
.y193{bottom:641.866500px;}
.y14{bottom:643.666500px;}
.y1ae{bottom:647.866500px;}
.y100{bottom:649.366500px;}
.y16d{bottom:650.116500px;}
.y78{bottom:651.616500px;}
.y4d{bottom:651.937500px;}
.yb6{bottom:653.116500px;}
.y11b{bottom:654.616500px;}
.y2e{bottom:654.937500px;}
.yd5{bottom:655.366500px;}
.y130{bottom:656.116500px;}
.y1fa{bottom:660.616500px;}
.y1d8{bottom:662.491500px;}
.y192{bottom:665.116500px;}
.y13{bottom:666.166500px;}
.y1ad{bottom:671.116500px;}
.yff{bottom:672.616500px;}
.y16c{bottom:673.366500px;}
.y14f{bottom:674.116500px;}
.y77{bottom:674.866500px;}
.y4c{bottom:675.187500px;}
.yb4{bottom:676.366500px;}
.yd4{bottom:677.866500px;}
.y2d{bottom:678.187500px;}
.y12f{bottom:678.616500px;}
.y1f9{bottom:685.741500px;}
.y1d7{bottom:687.616500px;}
.y191{bottom:688.366500px;}
.y12{bottom:688.666500px;}
.y1ac{bottom:694.366500px;}
.yfe{bottom:695.116500px;}
.y16b{bottom:696.616500px;}
.y8c{bottom:697.366500px;}
.y76{bottom:698.116500px;}
.y4b{bottom:698.437500px;}
.yb3{bottom:699.616500px;}
.yd3{bottom:701.116500px;}
.y12e{bottom:701.866500px;}
.y1f8{bottom:710.866500px;}
.y190{bottom:711.616500px;}
.y1d6{bottom:712.741500px;}
.y1ab{bottom:717.616500px;}
.yfd{bottom:718.366500px;}
.y14e{bottom:719.866500px;}
.y8b{bottom:720.616500px;}
.y75{bottom:721.366500px;}
.y4a{bottom:721.687500px;}
.yb2{bottom:722.866500px;}
.yd2{bottom:723.616500px;}
.y2c{bottom:723.937500px;}
.y11a{bottom:724.366500px;}
.y18f{bottom:734.866500px;}
.y1f7{bottom:735.991500px;}
.y1d5{bottom:737.866500px;}
.yfc{bottom:740.866500px;}
.y14d{bottom:743.116500px;}
.y8a{bottom:743.866500px;}
.y1e{bottom:743.941500px;}
.y74{bottom:744.616500px;}
.y49{bottom:744.937500px;}
.yb1{bottom:746.116500px;}
.y2b{bottom:746.437500px;}
.yd1{bottom:746.866500px;}
.y119{bottom:747.616500px;}
.y19{bottom:749.191500px;}
.y18e{bottom:758.116500px;}
.y1f6{bottom:761.116500px;}
.y1d4{bottom:762.991500px;}
.yfb{bottom:764.116500px;}
.y14c{bottom:765.616500px;}
.y16a{bottom:766.366500px;}
.y1d{bottom:766.441500px;}
.y89{bottom:767.116500px;}
.y73{bottom:767.866500px;}
.y48{bottom:768.187500px;}
.y2a{bottom:768.937500px;}
.yb0{bottom:769.366500px;}
.y118{bottom:770.116500px;}
.y18{bottom:771.691500px;}
.y18d{bottom:781.366500px;}
.y1f5{bottom:786.241500px;}
.yfa{bottom:787.366500px;}
.y1d3{bottom:788.116500px;}
.y14b{bottom:788.866500px;}
.y169{bottom:789.616500px;}
.y88{bottom:790.366500px;}
.y72{bottom:791.116500px;}
.yaf{bottom:792.616500px;}
.y117{bottom:793.366500px;}
.y22{bottom:800.116500px;}
.y18c{bottom:804.616500px;}
.yf9{bottom:810.616500px;}
.y14a{bottom:811.366500px;}
.y168{bottom:812.866500px;}
.y1d2{bottom:813.241500px;}
.y87{bottom:813.616500px;}
.y71{bottom:814.366500px;}
.yd0{bottom:815.116500px;}
.yad{bottom:815.866500px;}
.y21{bottom:822.616500px;}
.y18b{bottom:827.866500px;}
.yf8{bottom:833.866500px;}
.y149{bottom:834.616500px;}
.y167{bottom:836.116500px;}
.y1f4{bottom:836.491500px;}
.y86{bottom:836.866500px;}
.y70{bottom:837.616500px;}
.yae{bottom:838.366500px;}
.y116{bottom:839.116500px;}
.y18a{bottom:851.116500px;}
.yf7{bottom:857.116500px;}
.y166{bottom:859.366500px;}
.y85{bottom:860.116500px;}
.y6f{bottom:860.866500px;}
.yac{bottom:861.616500px;}
.y1d1{bottom:863.491500px;}
.y189{bottom:874.366500px;}
.yf6{bottom:880.366500px;}
.y165{bottom:882.616500px;}
.y84{bottom:883.366500px;}
.y6e{bottom:884.116500px;}
.y115{bottom:884.866500px;}
.y1f3{bottom:886.741500px;}
.y1d0{bottom:888.616500px;}
.y188{bottom:897.616500px;}
.yf5{bottom:903.616500px;}
.y164{bottom:905.866500px;}
.y83{bottom:906.616500px;}
.y6d{bottom:907.366500px;}
.y1f2{bottom:911.866500px;}
.y1cf{bottom:913.741500px;}
.y187{bottom:920.866500px;}
.yf4{bottom:926.866500px;}
.y163{bottom:929.116500px;}
.y82{bottom:929.866500px;}
.y6c{bottom:930.616500px;}
.y1f1{bottom:936.991500px;}
.y1ce{bottom:938.866500px;}
.y186{bottom:944.116500px;}
.yf3{bottom:950.116500px;}
.ycf{bottom:952.366500px;}
.y81{bottom:953.116500px;}
.y6b{bottom:953.866500px;}
.y1cd{bottom:962.116500px;}
.y185{bottom:967.366500px;}
.yf2{bottom:973.366500px;}
.yce{bottom:975.616500px;}
.y80{bottom:976.366500px;}
.y69{bottom:977.116500px;}
.y1cc{bottom:985.366500px;}
.y1f0{bottom:987.241500px;}
.y184{bottom:990.616500px;}
.yf1{bottom:996.616500px;}
.yab{bottom:998.866500px;}
.y6a{bottom:999.616500px;}
.y1cb{bottom:1008.616500px;}
.y1ef{bottom:1010.491500px;}
.y183{bottom:1013.866500px;}
.yf0{bottom:1019.866500px;}
.ycd{bottom:1021.366500px;}
.yaa{bottom:1022.116500px;}
.y68{bottom:1022.866500px;}
.y1ca{bottom:1033.741500px;}
.y182{bottom:1037.116500px;}
.yef{bottom:1043.116500px;}
.ycb{bottom:1044.616500px;}
.ya8{bottom:1045.366500px;}
.y67{bottom:1046.116500px;}
.y1ee{bottom:1056.991500px;}
.y1c9{bottom:1058.866500px;}
.y181{bottom:1060.366500px;}
.yee{bottom:1066.366500px;}
.ycc{bottom:1067.116500px;}
.ya9{bottom:1067.866500px;}
.y66{bottom:1069.366500px;}
.y1ed{bottom:1082.116500px;}
.y1c8{bottom:1083.991500px;}
.yed{bottom:1089.616500px;}
.yca{bottom:1090.366500px;}
.ya6{bottom:1091.116500px;}
.y5{bottom:1092.616500px;}
.y1ec{bottom:1107.241500px;}
.y1c7{bottom:1109.116500px;}
.y180{bottom:1110.616500px;}
.yec{bottom:1112.866500px;}
.ya7{bottom:1113.616500px;}
.y4{bottom:1115.116500px;}
.y1eb{bottom:1132.366500px;}
.y1c6{bottom:1134.241500px;}
.y17f{bottom:1135.366500px;}
.yeb{bottom:1136.116500px;}
.ya4{bottom:1136.866500px;}
.y3{bottom:1137.616500px;}
.y1ea{bottom:1157.491500px;}
.ya5{bottom:1159.366500px;}
.y2{bottom:1160.116500px;}
.h4{height:49.675781px;}
.h9{height:50.160000px;}
.h3{height:50.490000px;}
.ha{height:57.990000px;}
.hb{height:58.590000px;}
.h5{height:59.376000px;}
.h8{height:892.912500px;}
.h6{height:892.955906px;}
.h7{height:893.250000px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.w5{width:1262.791500px;}
.w3{width:1262.834646px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x4{left:85.200000px;}
.x6{left:88.950000px;}
.x1{left:106.500000px;}
.x9{left:110.250000px;}
.x10{left:114.600000px;}
.x11{left:216.975000px;}
.xd{left:312.900000px;}
.xb{left:314.250000px;}
.x5{left:385.950000px;}
.xc{left:407.400000px;}
.xa{left:408.750000px;}
.xf{left:543.300000px;}
.x7{left:652.650000px;}
.xe{left:690.900000px;}
.x3{left:788.025000px;}
.x2{left:798.000000px;}
.x8{left:1157.925000px;}
@media print{
.v2{vertical-align:-33.600000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:6.666667pt;}
.v1{vertical-align:26.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:69.275733pt;}
.lsc{letter-spacing:117.275733pt;}
.ls4{letter-spacing:130.609067pt;}
.ls5{letter-spacing:136.742400pt;}
.lsb{letter-spacing:142.075733pt;}
.ls8{letter-spacing:146.875733pt;}
.ls2{letter-spacing:159.942400pt;}
.ls6{letter-spacing:193.542400pt;}
.lsa{letter-spacing:277.542400pt;}
.ls7{letter-spacing:282.342400pt;}
.ls3{letter-spacing:435.409067pt;}
.ls1{letter-spacing:570.875733pt;}
.ws1{word-spacing:-15.253333pt;}
.ws2{word-spacing:-8.874667pt;}
.ws3{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws26{word-spacing:22.357333pt;}
.ws35{word-spacing:33.205333pt;}
.ws25{word-spacing:42.752000pt;}
.ws36{word-spacing:51.872000pt;}
.ws3f{word-spacing:52.592000pt;}
.ws37{word-spacing:66.762667pt;}
.ws2f{word-spacing:67.616000pt;}
.ws47{word-spacing:67.957333pt;}
.ws22{word-spacing:69.216000pt;}
.ws1b{word-spacing:69.290667pt;}
.ws20{word-spacing:69.557333pt;}
.ws7{word-spacing:70.357333pt;}
.ws33{word-spacing:78.295467pt;}
.ws8{word-spacing:85.429333pt;}
.ws41{word-spacing:86.192000pt;}
.ws3a{word-spacing:86.741333pt;}
.ws48{word-spacing:86.848000pt;}
.ws13{word-spacing:89.472000pt;}
.ws38{word-spacing:89.909333pt;}
.ws18{word-spacing:102.501333pt;}
.ws1c{word-spacing:102.848000pt;}
.ws9{word-spacing:103.914667pt;}
.ws17{word-spacing:115.872000pt;}
.ws19{word-spacing:118.496000pt;}
.wsb{word-spacing:118.986667pt;}
.wsd{word-spacing:120.962133pt;}
.ws12{word-spacing:123.029333pt;}
.wse{word-spacing:129.952000pt;}
.ws5{word-spacing:135.605333pt;}
.ws1d{word-spacing:136.405333pt;}
.ws6{word-spacing:137.472000pt;}
.ws44{word-spacing:141.290667pt;}
.ws3c{word-spacing:148.869333pt;}
.ws15{word-spacing:150.805333pt;}
.ws24{word-spacing:156.858667pt;}
.ws45{word-spacing:160.181333pt;}
.ws30{word-spacing:164.138667pt;}
.ws32{word-spacing:167.776000pt;}
.ws1f{word-spacing:170.229333pt;}
.ws2c{word-spacing:171.029333pt;}
.ws14{word-spacing:172.309333pt;}
.ws49{word-spacing:174.848000pt;}
.ws4a{word-spacing:193.738667pt;}
.ws39{word-spacing:209.296000pt;}
.ws3b{word-spacing:210.410667pt;}
.ws21{word-spacing:219.509333pt;}
.ws4b{word-spacing:227.296000pt;}
.ws31{word-spacing:234.656000pt;}
.ws2b{word-spacing:237.589333pt;}
.ws10{word-spacing:239.189333pt;}
.ws2a{word-spacing:239.504000pt;}
.ws23{word-spacing:244.304000pt;}
.ws11{word-spacing:253.856000pt;}
.ws40{word-spacing:256.016000pt;}
.ws2d{word-spacing:262.656000pt;}
.ws27{word-spacing:267.456000pt;}
.ws1a{word-spacing:273.482667pt;}
.ws42{word-spacing:276.282667pt;}
.ws2e{word-spacing:277.410133pt;}
.ws29{word-spacing:282.210133pt;}
.ws28{word-spacing:301.856000pt;}
.ws34{word-spacing:401.216000pt;}
.ws1e{word-spacing:405.216000pt;}
.ws4{word-spacing:537.482667pt;}
.wsa{word-spacing:555.989333pt;}
.ws16{word-spacing:564.149333pt;}
.wsf{word-spacing:568.682667pt;}
.wsc{word-spacing:570.743467pt;}
.ws43{word-spacing:974.208000pt;}
.ws3d{word-spacing:977.376000pt;}
.ws46{word-spacing:1036.336000pt;}
.ws3e{word-spacing:1161.354667pt;}
._0{margin-left:-1.024000pt;}
._3{width:0.938667pt;}
._7{width:2.112000pt;}
._8{width:3.088000pt;}
._4{width:4.026667pt;}
._6{width:4.917333pt;}
._5{width:5.818667pt;}
._1{width:7.040000pt;}
._2{width:8.213333pt;}
._b{width:9.797333pt;}
._b0{width:10.970667pt;}
._c{width:11.968000pt;}
._d{width:12.938667pt;}
._9{width:18.245333pt;}
._a{width:19.360000pt;}
._e{width:24.464000pt;}
._8f{width:37.461333pt;}
._a3{width:42.997333pt;}
._cc{width:47.253333pt;}
._be{width:48.250667pt;}
._c3{width:50.544000pt;}
._8e{width:51.525333pt;}
._c5{width:52.752000pt;}
._ce{width:53.845333pt;}
._a0{width:56.394667pt;}
._94{width:57.536000pt;}
._16{width:59.050667pt;}
._c0{width:62.522667pt;}
._73{width:63.792000pt;}
._bc{width:64.805333pt;}
._92{width:65.909333pt;}
._a7{width:67.242667pt;}
._ac{width:68.448000pt;}
._d7{width:69.605333pt;}
._c2{width:70.560000pt;}
._72{width:71.584000pt;}
._ca{width:72.650667pt;}
._ba{width:74.922667pt;}
._19{width:76.981333pt;}
._b5{width:78.965333pt;}
._bb{width:79.920000pt;}
._c8{width:81.210667pt;}
._a9{width:82.122667pt;}
._c7{width:83.109333pt;}
._93{width:85.696000pt;}
._ab{width:90.048000pt;}
._91{width:91.093333pt;}
._d6{width:92.426667pt;}
._d2{width:95.685333pt;}
._c4{width:96.666667pt;}
._b7{width:97.589333pt;}
._b9{width:98.586667pt;}
._af{width:99.850667pt;}
._a8{width:101.328000pt;}
._53{width:104.490667pt;}
._a4{width:105.925333pt;}
._b3{width:108.480000pt;}
._65{width:110.240000pt;}
._b8{width:113.109333pt;}
._47{width:114.960000pt;}
._d3{width:116.202667pt;}
._36{width:117.520000pt;}
._37{width:118.933333pt;}
._3b{width:120.512000pt;}
._96{width:125.338667pt;}
._3d{width:128.042667pt;}
._c9{width:129.114667pt;}
._69{width:130.682667pt;}
._8c{width:131.648000pt;}
._33{width:134.005333pt;}
._ad{width:135.242667pt;}
._4c{width:137.514667pt;}
._52{width:138.512000pt;}
._ae{width:139.978667pt;}
._d1{width:141.018667pt;}
._cd{width:142.821333pt;}
._3a{width:145.738667pt;}
._b4{width:147.130667pt;}
._d5{width:149.216000pt;}
._34{width:150.624000pt;}
._20{width:152.490667pt;}
._59{width:153.525333pt;}
._6c{width:154.453333pt;}
._c1{width:155.877333pt;}
._9f{width:157.376000pt;}
._90{width:158.442667pt;}
._1c{width:160.714667pt;}
._99{width:163.178667pt;}
._6e{width:164.544000pt;}
._3f{width:166.160000pt;}
._6b{width:167.072000pt;}
._95{width:167.978667pt;}
._5b{width:171.002667pt;}
._38{width:171.909333pt;}
._9b{width:174.064000pt;}
._bf{width:175.200000pt;}
._cf{width:176.421333pt;}
._35{width:179.216000pt;}
._68{width:180.218667pt;}
._85{width:181.376000pt;}
._6d{width:182.945067pt;}
._2c{width:183.941333pt;}
._a5{width:184.842667pt;}
._97{width:186.048000pt;}
._56{width:187.328000pt;}
._c6{width:190.730667pt;}
._d0{width:191.829333pt;}
._a6{width:194.421333pt;}
._d4{width:195.466667pt;}
._49{width:196.448000pt;}
._2d{width:199.904000pt;}
._57{width:201.488000pt;}
._6a{width:202.442667pt;}
._5e{width:204.560000pt;}
._22{width:205.514667pt;}
._1f{width:207.104000pt;}
._39{width:208.170667pt;}
._cb{width:209.397333pt;}
._29{width:210.645333pt;}
._14{width:211.797333pt;}
._41{width:212.720000pt;}
._67{width:213.872000pt;}
._55{width:214.869333pt;}
._24{width:216.842667pt;}
._2e{width:217.738667pt;}
._9e{width:218.916267pt;}
._58{width:219.914667pt;}
._5f{width:221.200000pt;}
._b6{width:224.432000pt;}
._b2{width:225.456000pt;}
._98{width:226.890667pt;}
._9c{width:228.362667pt;}
._1a{width:229.882667pt;}
._15{width:231.749333pt;}
._25{width:233.226667pt;}
._84{width:234.186667pt;}
._54{width:235.328000pt;}
._66{width:237.082667pt;}
._32{width:241.728000pt;}
._21{width:244.437333pt;}
._28{width:245.642667pt;}
._3e{width:246.774400pt;}
._4e{width:247.914667pt;}
._87{width:249.770667pt;}
._17{width:251.216000pt;}
._5c{width:253.253333pt;}
._51{width:254.250667pt;}
._79{width:255.936000pt;}
._1e{width:259.312000pt;}
._30{width:260.309333pt;}
._4b{width:268.112000pt;}
._5a{width:269.237333pt;}
._9d{width:272.096000pt;}
._40{width:275.333333pt;}
._8d{width:278.042667pt;}
._27{width:279.648000pt;}
._83{width:282.048000pt;}
._89{width:283.669333pt;}
._5d{width:287.281067pt;}
._78{width:289.493333pt;}
._4a{width:293.882667pt;}
._aa{width:295.285333pt;}
._9a{width:296.997333pt;}
._26{width:300.576000pt;}
._4d{width:302.442667pt;}
._23{width:308.842667pt;}
._1b{width:314.245333pt;}
._48{width:315.920000pt;}
._86{width:316.885333pt;}
._18{width:322.512000pt;}
._2b{width:323.509333pt;}
._1d{width:325.349333pt;}
._81{width:328.330667pt;}
._6f{width:329.392000pt;}
._8a{width:331.669333pt;}
._a1{width:334.394667pt;}
._2a{width:336.576000pt;}
._4f{width:351.328000pt;}
._75{width:356.608000pt;}
._31{width:359.824000pt;}
._76{width:360.730667pt;}
._77{width:361.621333pt;}
._bd{width:365.578667pt;}
._70{width:377.440000pt;}
._50{width:379.242667pt;}
._7f{width:383.093333pt;}
._8b{width:385.226667pt;}
._a2{width:391.477333pt;}
._7a{width:394.288000pt;}
._2f{width:410.709333pt;}
._88{width:418.784000pt;}
._7c{width:425.392000pt;}
._7b{width:427.845333pt;}
._71{width:434.041600pt;}
._82{width:452.341333pt;}
._7e{width:468.106667pt;}
._7d{width:473.440000pt;}
._74{width:507.482667pt;}
._12{width:538.128000pt;}
._80{width:565.962667pt;}
._3c{width:590.330667pt;}
._42{width:597.514667pt;}
._10{width:600.373333pt;}
._60{width:602.048000pt;}
._f{width:606.048000pt;}
._61{width:627.040000pt;}
._43{width:631.573333pt;}
._44{width:645.973333pt;}
._62{width:650.506667pt;}
._11{width:654.506667pt;}
._63{width:724.896000pt;}
._45{width:729.429333pt;}
._46{width:743.829333pt;}
._64{width:748.362667pt;}
._13{width:752.362667pt;}
._b1{width:992.848000pt;}
.fs2{font-size:34.133333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y6{bottom:50.652000pt;}
.y47{bottom:50.670667pt;}
.y65{bottom:83.500000pt;}
.y46{bottom:86.166667pt;}
.ya3{bottom:87.214667pt;}
.y12d{bottom:88.548000pt;}
.y114{bottom:89.214667pt;}
.y17e{bottom:89.881333pt;}
.y162{bottom:91.214667pt;}
.yc9{bottom:92.548000pt;}
.y148{bottom:93.881333pt;}
.y1aa{bottom:95.214667pt;}
.y1e9{bottom:97.548000pt;}
.y1c5{bottom:100.548000pt;}
.y64{bottom:104.166667pt;}
.y17{bottom:106.081333pt;}
.y45{bottom:106.833333pt;}
.ya2{bottom:107.881333pt;}
.y12c{bottom:109.214667pt;}
.y113{bottom:109.881333pt;}
.y17d{bottom:110.548000pt;}
.y161{bottom:111.214667pt;}
.yc8{bottom:112.548000pt;}
.y147{bottom:114.548000pt;}
.y1a9{bottom:115.881333pt;}
.y1e8{bottom:119.881333pt;}
.y1c4{bottom:121.214667pt;}
.y63{bottom:124.833333pt;}
.y16{bottom:126.081333pt;}
.y44{bottom:127.500000pt;}
.ya1{bottom:128.548000pt;}
.y12b{bottom:129.214667pt;}
.y112{bottom:129.881333pt;}
.yea{bottom:130.548000pt;}
.y160{bottom:131.881333pt;}
.yc7{bottom:132.548000pt;}
.y146{bottom:135.214667pt;}
.y1a8{bottom:136.548000pt;}
.y27{bottom:137.281333pt;}
.y1c3{bottom:141.881333pt;}
.y20b{bottom:142.081333pt;}
.y1e7{bottom:142.214667pt;}
.y62{bottom:145.500000pt;}
.y43{bottom:148.166667pt;}
.ya0{bottom:149.214667pt;}
.y12a{bottom:149.881333pt;}
.y111{bottom:150.548000pt;}
.y17c{bottom:151.214667pt;}
.y15f{bottom:151.881333pt;}
.ye9{bottom:152.548000pt;}
.y145{bottom:155.881333pt;}
.y1a7{bottom:157.214667pt;}
.y26{bottom:157.281333pt;}
.y1c2{bottom:162.548000pt;}
.y20a{bottom:162.748000pt;}
.y1e6{bottom:164.548000pt;}
.y61{bottom:166.166667pt;}
.y42{bottom:168.833333pt;}
.y9f{bottom:169.881333pt;}
.y110{bottom:170.548000pt;}
.y17b{bottom:171.214667pt;}
.y15e{bottom:172.548000pt;}
.yc5{bottom:173.214667pt;}
.ye8{bottom:174.548000pt;}
.y144{bottom:176.548000pt;}
.y1a6{bottom:177.881333pt;}
.y1c1{bottom:183.214667pt;}
.y209{bottom:185.214667pt;}
.y60{bottom:186.833333pt;}
.y1e5{bottom:186.881333pt;}
.y41{bottom:189.500000pt;}
.y9e{bottom:190.548000pt;}
.y10f{bottom:191.214667pt;}
.y17a{bottom:191.881333pt;}
.y15d{bottom:192.548000pt;}
.yc6{bottom:193.214667pt;}
.y143{bottom:196.548000pt;}
.y1a5{bottom:198.548000pt;}
.y1c0{bottom:203.881333pt;}
.y5f{bottom:207.500000pt;}
.y208{bottom:207.548000pt;}
.y1e4{bottom:209.214667pt;}
.y40{bottom:210.166667pt;}
.y129{bottom:210.548000pt;}
.y9d{bottom:211.214667pt;}
.y179{bottom:211.881333pt;}
.y15c{bottom:213.214667pt;}
.yc3{bottom:213.881333pt;}
.ye7{bottom:215.214667pt;}
.y142{bottom:217.214667pt;}
.y1a4{bottom:219.214667pt;}
.y1bf{bottom:224.548000pt;}
.y5e{bottom:228.166667pt;}
.y207{bottom:229.881333pt;}
.y3f{bottom:230.833333pt;}
.y128{bottom:231.214667pt;}
.y1e3{bottom:231.548000pt;}
.y9c{bottom:231.881333pt;}
.y178{bottom:232.548000pt;}
.y15b{bottom:233.214667pt;}
.yc4{bottom:233.881333pt;}
.ye6{bottom:235.214667pt;}
.y141{bottom:237.214667pt;}
.y1a3{bottom:239.881333pt;}
.y23{bottom:242.548000pt;}
.y1be{bottom:245.214667pt;}
.y5d{bottom:248.833333pt;}
.y127{bottom:251.214667pt;}
.y3e{bottom:251.500000pt;}
.y10e{bottom:251.881333pt;}
.y206{bottom:252.214667pt;}
.y9b{bottom:252.548000pt;}
.y15a{bottom:253.881333pt;}
.yc2{bottom:254.548000pt;}
.ye5{bottom:255.881333pt;}
.y140{bottom:257.881333pt;}
.y1a2{bottom:260.548000pt;}
.y1bd{bottom:265.881333pt;}
.y5c{bottom:269.500000pt;}
.y126{bottom:271.881333pt;}
.y3d{bottom:272.166667pt;}
.y10d{bottom:272.548000pt;}
.y9a{bottom:273.214667pt;}
.y159{bottom:273.881333pt;}
.y205{bottom:274.548000pt;}
.y1c{bottom:274.948000pt;}
.yc0{bottom:275.214667pt;}
.ye4{bottom:275.881333pt;}
.y1e2{bottom:276.214667pt;}
.y13f{bottom:277.881333pt;}
.y1a1{bottom:281.214667pt;}
.y1bc{bottom:286.548000pt;}
.y5b{bottom:290.166667pt;}
.y10c{bottom:292.548000pt;}
.y3c{bottom:292.833333pt;}
.y20{bottom:293.014667pt;}
.y177{bottom:293.214667pt;}
.y99{bottom:293.881333pt;}
.y158{bottom:294.548000pt;}
.y1b{bottom:294.948000pt;}
.yc1{bottom:295.214667pt;}
.ye3{bottom:296.548000pt;}
.y204{bottom:296.881333pt;}
.y13e{bottom:298.548000pt;}
.y1a0{bottom:301.881333pt;}
.y1bb{bottom:307.214667pt;}
.y5a{bottom:310.833333pt;}
.y1f{bottom:313.014667pt;}
.y10b{bottom:313.214667pt;}
.y3b{bottom:313.500000pt;}
.y176{bottom:313.881333pt;}
.y98{bottom:314.548000pt;}
.y1a{bottom:314.948000pt;}
.ybe{bottom:315.881333pt;}
.ye2{bottom:317.214667pt;}
.y13d{bottom:318.548000pt;}
.y203{bottom:319.214667pt;}
.y1e1{bottom:320.881333pt;}
.y19f{bottom:322.548000pt;}
.y1ba{bottom:327.881333pt;}
.y59{bottom:331.500000pt;}
.y10a{bottom:333.214667pt;}
.y125{bottom:333.881333pt;}
.y3a{bottom:334.166667pt;}
.y97{bottom:335.214667pt;}
.ybf{bottom:335.881333pt;}
.ye1{bottom:337.214667pt;}
.y13c{bottom:339.214667pt;}
.y202{bottom:341.548000pt;}
.y19e{bottom:343.214667pt;}
.y1b9{bottom:348.548000pt;}
.y58{bottom:352.166667pt;}
.y109{bottom:353.881333pt;}
.y11{bottom:354.214667pt;}
.y124{bottom:354.548000pt;}
.y39{bottom:354.833333pt;}
.y157{bottom:355.214667pt;}
.y96{bottom:355.881333pt;}
.ybd{bottom:356.548000pt;}
.ye0{bottom:357.881333pt;}
.y13b{bottom:359.214667pt;}
.y19d{bottom:363.881333pt;}
.y1e0{bottom:365.548000pt;}
.y1b8{bottom:369.214667pt;}
.y57{bottom:372.833333pt;}
.y108{bottom:373.881333pt;}
.y10{bottom:374.214667pt;}
.y175{bottom:374.548000pt;}
.y123{bottom:375.214667pt;}
.y38{bottom:375.500000pt;}
.y156{bottom:375.881333pt;}
.y94{bottom:376.548000pt;}
.ybb{bottom:377.214667pt;}
.ydf{bottom:377.881333pt;}
.y13a{bottom:379.881333pt;}
.y19c{bottom:384.548000pt;}
.y201{bottom:386.214667pt;}
.y1df{bottom:387.881333pt;}
.y1b7{bottom:389.881333pt;}
.y56{bottom:393.500000pt;}
.yf{bottom:394.214667pt;}
.y107{bottom:394.548000pt;}
.y174{bottom:395.214667pt;}
.y122{bottom:395.881333pt;}
.y37{bottom:396.166667pt;}
.y95{bottom:396.548000pt;}
.ybc{bottom:397.214667pt;}
.yde{bottom:398.548000pt;}
.y139{bottom:399.881333pt;}
.y19b{bottom:405.214667pt;}
.y200{bottom:408.548000pt;}
.y1de{bottom:410.214667pt;}
.y1b6{bottom:410.548000pt;}
.y55{bottom:414.166667pt;}
.y106{bottom:414.548000pt;}
.y173{bottom:415.214667pt;}
.y121{bottom:416.548000pt;}
.y36{bottom:416.833333pt;}
.y93{bottom:417.214667pt;}
.yba{bottom:417.881333pt;}
.ydd{bottom:419.214667pt;}
.y138{bottom:420.548000pt;}
.y19a{bottom:425.881333pt;}
.y1ff{bottom:430.881333pt;}
.y1b5{bottom:431.214667pt;}
.y1dd{bottom:432.548000pt;}
.y7f{bottom:434.548000pt;}
.y54{bottom:434.833333pt;}
.y105{bottom:435.214667pt;}
.y172{bottom:435.881333pt;}
.y155{bottom:436.548000pt;}
.y120{bottom:437.214667pt;}
.y35{bottom:437.500000pt;}
.y92{bottom:437.881333pt;}
.ydc{bottom:439.214667pt;}
.y137{bottom:440.548000pt;}
.y199{bottom:446.548000pt;}
.y1b4{bottom:451.881333pt;}
.y1fe{bottom:453.214667pt;}
.y1dc{bottom:454.881333pt;}
.y7e{bottom:455.214667pt;}
.y53{bottom:455.500000pt;}
.y171{bottom:455.881333pt;}
.y154{bottom:457.214667pt;}
.y11f{bottom:457.881333pt;}
.y34{bottom:458.166667pt;}
.y91{bottom:458.548000pt;}
.ydb{bottom:459.881333pt;}
.y136{bottom:461.214667pt;}
.y198{bottom:467.214667pt;}
.y1b3{bottom:472.548000pt;}
.y1fd{bottom:475.548000pt;}
.y7d{bottom:475.881333pt;}
.y52{bottom:476.166667pt;}
.y170{bottom:476.548000pt;}
.y153{bottom:477.214667pt;}
.y11e{bottom:478.548000pt;}
.y33{bottom:478.833333pt;}
.yb9{bottom:479.214667pt;}
.yda{bottom:479.881333pt;}
.y135{bottom:481.214667pt;}
.y197{bottom:487.881333pt;}
.y1b2{bottom:493.214667pt;}
.y104{bottom:495.881333pt;}
.y7c{bottom:496.548000pt;}
.y51{bottom:496.833333pt;}
.y25{bottom:496.948000pt;}
.y152{bottom:497.881333pt;}
.y90{bottom:499.214667pt;}
.y32{bottom:499.500000pt;}
.y1db{bottom:499.548000pt;}
.yd9{bottom:500.548000pt;}
.y134{bottom:501.881333pt;}
.y196{bottom:508.548000pt;}
.y29{bottom:512.148000pt;}
.y1b1{bottom:513.881333pt;}
.y103{bottom:516.548000pt;}
.y24{bottom:516.948000pt;}
.y7b{bottom:517.214667pt;}
.y50{bottom:517.500000pt;}
.y151{bottom:517.881333pt;}
.y8f{bottom:519.214667pt;}
.yb7{bottom:519.881333pt;}
.y31{bottom:520.166667pt;}
.y1fc{bottom:520.214667pt;}
.yd8{bottom:521.214667pt;}
.y133{bottom:521.881333pt;}
.y195{bottom:529.214667pt;}
.y28{bottom:532.148000pt;}
.y1b0{bottom:534.548000pt;}
.y102{bottom:536.548000pt;}
.y16f{bottom:537.214667pt;}
.y7a{bottom:537.881333pt;}
.y4f{bottom:538.166667pt;}
.y8{bottom:538.281333pt;}
.y150{bottom:538.548000pt;}
.y8e{bottom:539.214667pt;}
.yb8{bottom:539.881333pt;}
.ya{bottom:540.081333pt;}
.y11d{bottom:540.548000pt;}
.y30{bottom:540.833333pt;}
.yd7{bottom:541.214667pt;}
.yc{bottom:541.414667pt;}
.y132{bottom:542.548000pt;}
.y1da{bottom:544.214667pt;}
.ye{bottom:545.148000pt;}
.y194{bottom:549.881333pt;}
.y15{bottom:552.148000pt;}
.y1af{bottom:555.214667pt;}
.y101{bottom:557.214667pt;}
.y16e{bottom:557.881333pt;}
.y7{bottom:558.281333pt;}
.y79{bottom:558.548000pt;}
.y4e{bottom:558.833333pt;}
.y8d{bottom:559.214667pt;}
.y9{bottom:560.081333pt;}
.yb5{bottom:560.548000pt;}
.y11c{bottom:561.214667pt;}
.yb{bottom:561.414667pt;}
.y2f{bottom:561.500000pt;}
.yd6{bottom:561.881333pt;}
.y131{bottom:562.548000pt;}
.y1fb{bottom:564.881333pt;}
.yd{bottom:565.148000pt;}
.y1d9{bottom:566.548000pt;}
.y193{bottom:570.548000pt;}
.y14{bottom:572.148000pt;}
.y1ae{bottom:575.881333pt;}
.y100{bottom:577.214667pt;}
.y16d{bottom:577.881333pt;}
.y78{bottom:579.214667pt;}
.y4d{bottom:579.500000pt;}
.yb6{bottom:580.548000pt;}
.y11b{bottom:581.881333pt;}
.y2e{bottom:582.166667pt;}
.yd5{bottom:582.548000pt;}
.y130{bottom:583.214667pt;}
.y1fa{bottom:587.214667pt;}
.y1d8{bottom:588.881333pt;}
.y192{bottom:591.214667pt;}
.y13{bottom:592.148000pt;}
.y1ad{bottom:596.548000pt;}
.yff{bottom:597.881333pt;}
.y16c{bottom:598.548000pt;}
.y14f{bottom:599.214667pt;}
.y77{bottom:599.881333pt;}
.y4c{bottom:600.166667pt;}
.yb4{bottom:601.214667pt;}
.yd4{bottom:602.548000pt;}
.y2d{bottom:602.833333pt;}
.y12f{bottom:603.214667pt;}
.y1f9{bottom:609.548000pt;}
.y1d7{bottom:611.214667pt;}
.y191{bottom:611.881333pt;}
.y12{bottom:612.148000pt;}
.y1ac{bottom:617.214667pt;}
.yfe{bottom:617.881333pt;}
.y16b{bottom:619.214667pt;}
.y8c{bottom:619.881333pt;}
.y76{bottom:620.548000pt;}
.y4b{bottom:620.833333pt;}
.yb3{bottom:621.881333pt;}
.yd3{bottom:623.214667pt;}
.y12e{bottom:623.881333pt;}
.y1f8{bottom:631.881333pt;}
.y190{bottom:632.548000pt;}
.y1d6{bottom:633.548000pt;}
.y1ab{bottom:637.881333pt;}
.yfd{bottom:638.548000pt;}
.y14e{bottom:639.881333pt;}
.y8b{bottom:640.548000pt;}
.y75{bottom:641.214667pt;}
.y4a{bottom:641.500000pt;}
.yb2{bottom:642.548000pt;}
.yd2{bottom:643.214667pt;}
.y2c{bottom:643.500000pt;}
.y11a{bottom:643.881333pt;}
.y18f{bottom:653.214667pt;}
.y1f7{bottom:654.214667pt;}
.y1d5{bottom:655.881333pt;}
.yfc{bottom:658.548000pt;}
.y14d{bottom:660.548000pt;}
.y8a{bottom:661.214667pt;}
.y1e{bottom:661.281333pt;}
.y74{bottom:661.881333pt;}
.y49{bottom:662.166667pt;}
.yb1{bottom:663.214667pt;}
.y2b{bottom:663.500000pt;}
.yd1{bottom:663.881333pt;}
.y119{bottom:664.548000pt;}
.y19{bottom:665.948000pt;}
.y18e{bottom:673.881333pt;}
.y1f6{bottom:676.548000pt;}
.y1d4{bottom:678.214667pt;}
.yfb{bottom:679.214667pt;}
.y14c{bottom:680.548000pt;}
.y16a{bottom:681.214667pt;}
.y1d{bottom:681.281333pt;}
.y89{bottom:681.881333pt;}
.y73{bottom:682.548000pt;}
.y48{bottom:682.833333pt;}
.y2a{bottom:683.500000pt;}
.yb0{bottom:683.881333pt;}
.y118{bottom:684.548000pt;}
.y18{bottom:685.948000pt;}
.y18d{bottom:694.548000pt;}
.y1f5{bottom:698.881333pt;}
.yfa{bottom:699.881333pt;}
.y1d3{bottom:700.548000pt;}
.y14b{bottom:701.214667pt;}
.y169{bottom:701.881333pt;}
.y88{bottom:702.548000pt;}
.y72{bottom:703.214667pt;}
.yaf{bottom:704.548000pt;}
.y117{bottom:705.214667pt;}
.y22{bottom:711.214667pt;}
.y18c{bottom:715.214667pt;}
.yf9{bottom:720.548000pt;}
.y14a{bottom:721.214667pt;}
.y168{bottom:722.548000pt;}
.y1d2{bottom:722.881333pt;}
.y87{bottom:723.214667pt;}
.y71{bottom:723.881333pt;}
.yd0{bottom:724.548000pt;}
.yad{bottom:725.214667pt;}
.y21{bottom:731.214667pt;}
.y18b{bottom:735.881333pt;}
.yf8{bottom:741.214667pt;}
.y149{bottom:741.881333pt;}
.y167{bottom:743.214667pt;}
.y1f4{bottom:743.548000pt;}
.y86{bottom:743.881333pt;}
.y70{bottom:744.548000pt;}
.yae{bottom:745.214667pt;}
.y116{bottom:745.881333pt;}
.y18a{bottom:756.548000pt;}
.yf7{bottom:761.881333pt;}
.y166{bottom:763.881333pt;}
.y85{bottom:764.548000pt;}
.y6f{bottom:765.214667pt;}
.yac{bottom:765.881333pt;}
.y1d1{bottom:767.548000pt;}
.y189{bottom:777.214667pt;}
.yf6{bottom:782.548000pt;}
.y165{bottom:784.548000pt;}
.y84{bottom:785.214667pt;}
.y6e{bottom:785.881333pt;}
.y115{bottom:786.548000pt;}
.y1f3{bottom:788.214667pt;}
.y1d0{bottom:789.881333pt;}
.y188{bottom:797.881333pt;}
.yf5{bottom:803.214667pt;}
.y164{bottom:805.214667pt;}
.y83{bottom:805.881333pt;}
.y6d{bottom:806.548000pt;}
.y1f2{bottom:810.548000pt;}
.y1cf{bottom:812.214667pt;}
.y187{bottom:818.548000pt;}
.yf4{bottom:823.881333pt;}
.y163{bottom:825.881333pt;}
.y82{bottom:826.548000pt;}
.y6c{bottom:827.214667pt;}
.y1f1{bottom:832.881333pt;}
.y1ce{bottom:834.548000pt;}
.y186{bottom:839.214667pt;}
.yf3{bottom:844.548000pt;}
.ycf{bottom:846.548000pt;}
.y81{bottom:847.214667pt;}
.y6b{bottom:847.881333pt;}
.y1cd{bottom:855.214667pt;}
.y185{bottom:859.881333pt;}
.yf2{bottom:865.214667pt;}
.yce{bottom:867.214667pt;}
.y80{bottom:867.881333pt;}
.y69{bottom:868.548000pt;}
.y1cc{bottom:875.881333pt;}
.y1f0{bottom:877.548000pt;}
.y184{bottom:880.548000pt;}
.yf1{bottom:885.881333pt;}
.yab{bottom:887.881333pt;}
.y6a{bottom:888.548000pt;}
.y1cb{bottom:896.548000pt;}
.y1ef{bottom:898.214667pt;}
.y183{bottom:901.214667pt;}
.yf0{bottom:906.548000pt;}
.ycd{bottom:907.881333pt;}
.yaa{bottom:908.548000pt;}
.y68{bottom:909.214667pt;}
.y1ca{bottom:918.881333pt;}
.y182{bottom:921.881333pt;}
.yef{bottom:927.214667pt;}
.ycb{bottom:928.548000pt;}
.ya8{bottom:929.214667pt;}
.y67{bottom:929.881333pt;}
.y1ee{bottom:939.548000pt;}
.y1c9{bottom:941.214667pt;}
.y181{bottom:942.548000pt;}
.yee{bottom:947.881333pt;}
.ycc{bottom:948.548000pt;}
.ya9{bottom:949.214667pt;}
.y66{bottom:950.548000pt;}
.y1ed{bottom:961.881333pt;}
.y1c8{bottom:963.548000pt;}
.yed{bottom:968.548000pt;}
.yca{bottom:969.214667pt;}
.ya6{bottom:969.881333pt;}
.y5{bottom:971.214667pt;}
.y1ec{bottom:984.214667pt;}
.y1c7{bottom:985.881333pt;}
.y180{bottom:987.214667pt;}
.yec{bottom:989.214667pt;}
.ya7{bottom:989.881333pt;}
.y4{bottom:991.214667pt;}
.y1eb{bottom:1006.548000pt;}
.y1c6{bottom:1008.214667pt;}
.y17f{bottom:1009.214667pt;}
.yeb{bottom:1009.881333pt;}
.ya4{bottom:1010.548000pt;}
.y3{bottom:1011.214667pt;}
.y1ea{bottom:1028.881333pt;}
.ya5{bottom:1030.548000pt;}
.y2{bottom:1031.214667pt;}
.h4{height:44.156250pt;}
.h9{height:44.586667pt;}
.h3{height:44.880000pt;}
.ha{height:51.546667pt;}
.hb{height:52.080000pt;}
.h5{height:52.778667pt;}
.h8{height:793.700000pt;}
.h6{height:793.738583pt;}
.h7{height:794.000000pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.w5{width:1122.481333pt;}
.w3{width:1122.519685pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4{left:75.733333pt;}
.x6{left:79.066667pt;}
.x1{left:94.666667pt;}
.x9{left:98.000000pt;}
.x10{left:101.866667pt;}
.x11{left:192.866667pt;}
.xd{left:278.133333pt;}
.xb{left:279.333333pt;}
.x5{left:343.066667pt;}
.xc{left:362.133333pt;}
.xa{left:363.333333pt;}
.xf{left:482.933333pt;}
.x7{left:580.133333pt;}
.xe{left:614.133333pt;}
.x3{left:700.466667pt;}
.x2{left:709.333333pt;}
.x8{left:1029.266667pt;}
}




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