
    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_07b396f014e09945b08896d7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_9a7686fd8c9f308c45ce3cc1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_0ccf7f6e4af0027025b03c91.woff')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_cb02b800210b4144bba7c5da.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b3e91bddd6c5d3909c153891.woff')format("woff");}.ff5{font-family:ff5;line-height:0.724121;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6ed8682dbbf0d4c2ebb5623c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.092773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_12a5f01ae8f19ee649516215.woff')format("woff");}.ff7{font-family:ff7;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_83d817b2d17b42e728d40034.woff')format("woff");}.ff8{font-family:ff8;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_199f436487bb64b87504a39c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d26ad4147e1f66bef94aee24.woff')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d05ed7cae11e800812437510.woff')format("woff");}.ffb{font-family:ffb;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_23fb85b7ee04a4a727699d7f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.764160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-58.014000px;}
.v1{vertical-align:-53.790000px;}
.v5{vertical-align:-31.680000px;}
.v6{vertical-align:-9.681000px;}
.v3{vertical-align:-2.178000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.973800px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:17.172000px;}
.ls2{letter-spacing:686.419932px;}
.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;}
}
.ws0{word-spacing:-18.216000px;}
.ws17{word-spacing:-18.084000px;}
.ws1{word-spacing:-14.904000px;}
.wsc{word-spacing:-6.270000px;}
.ws37{word-spacing:-5.940000px;}
.ws4{word-spacing:-5.022000px;}
.ws6{word-spacing:-4.488000px;}
.ws36{word-spacing:-1.914000px;}
.ws10{word-spacing:-1.386000px;}
.ws3{word-spacing:-1.254000px;}
.ws2{word-spacing:0.000000px;}
.ws35{word-spacing:0.264000px;}
.ws38{word-spacing:1.848000px;}
.ws41{word-spacing:3.960000px;}
.ws28{word-spacing:4.686000px;}
.ws9{word-spacing:5.280000px;}
.ws43{word-spacing:5.820000px;}
.ws7{word-spacing:6.006000px;}
.ws44{word-spacing:6.420000px;}
.wsf{word-spacing:6.534000px;}
.ws2b{word-spacing:8.844000px;}
.ws3f{word-spacing:9.420000px;}
.ws5{word-spacing:9.834000px;}
.ws3c{word-spacing:10.428000px;}
.ws26{word-spacing:10.494000px;}
.ws42{word-spacing:11.820000px;}
.ws3b{word-spacing:12.342000px;}
.ws29{word-spacing:12.804000px;}
.ws8{word-spacing:13.134000px;}
.ws40{word-spacing:15.240000px;}
.wse{word-spacing:17.358000px;}
.wsd{word-spacing:17.490000px;}
.ws3e{word-spacing:17.688000px;}
.ws3d{word-spacing:17.820000px;}
.wsb{word-spacing:18.282000px;}
.wsa{word-spacing:19.932000px;}
.ws27{word-spacing:20.922000px;}
.ws39{word-spacing:29.898000px;}
.ws2a{word-spacing:35.112000px;}
.ws3a{word-spacing:37.422000px;}
.ws34{word-spacing:124.146000px;}
.ws2c{word-spacing:167.818200px;}
.ws32{word-spacing:224.400000px;}
.ws31{word-spacing:244.332000px;}
.ws30{word-spacing:248.556000px;}
.ws2e{word-spacing:249.612000px;}
.ws33{word-spacing:259.050000px;}
.ws2d{word-spacing:260.106000px;}
.ws11{word-spacing:407.154000px;}
.ws21{word-spacing:622.485492px;}
.ws13{word-spacing:624.580092px;}
.ws1f{word-spacing:633.990492px;}
.ws15{word-spacing:648.749892px;}
.ws1b{word-spacing:649.781292px;}
.ws18{word-spacing:650.845092px;}
.ws2f{word-spacing:703.903200px;}
.ws24{word-spacing:1210.044000px;}
.ws1e{word-spacing:1263.570000px;}
.ws1d{word-spacing:1328.844000px;}
.ws1c{word-spacing:1354.650000px;}
.ws16{word-spacing:1362.451200px;}
.ws1a{word-spacing:1370.754000px;}
.ws25{word-spacing:1376.100000px;}
.ws19{word-spacing:1399.926000px;}
.ws14{word-spacing:1457.148000px;}
.ws23{word-spacing:1486.518000px;}
.ws20{word-spacing:1492.656000px;}
.ws12{word-spacing:1494.372000px;}
.ws22{word-spacing:1531.464000px;}
._13{margin-left:-65.664000px;}
._90{margin-left:-17.561627px;}
._4f{margin-left:-15.972000px;}
._8f{margin-left:-14.711386px;}
._26{margin-left:-10.735200px;}
._27{margin-left:-9.728400px;}
._f{margin-left:-7.938000px;}
._4{margin-left:-6.720000px;}
._a{margin-left:-5.527200px;}
._28{margin-left:-4.518227px;}
._0{margin-left:-3.486000px;}
._e{margin-left:-2.385000px;}
._6{margin-left:-1.224000px;}
._1{width:1.587241px;}
._8{width:2.657027px;}
._11{width:4.092959px;}
._b{width:5.365800px;}
._9{width:6.448200px;}
._17{width:7.857600px;}
._c{width:9.078000px;}
._d{width:10.184400px;}
._1c{width:11.316600px;}
._20{width:13.281600px;}
._10{width:15.193200px;}
._1d{width:16.882573px;}
._8e{width:18.032400px;}
._1e{width:19.146600px;}
._12{width:20.578800px;}
._7{width:21.696000px;}
._16{width:22.696800px;}
._5{width:24.576000px;}
._1b{width:26.284200px;}
._18{width:27.720000px;}
._1a{width:29.438773px;}
._1f{width:30.802427px;}
._23{width:31.923746px;}
._15{width:33.215400px;}
._14{width:34.388400px;}
._21{width:36.018600px;}
._25{width:37.956600px;}
._19{width:39.626400px;}
._62{width:41.421600px;}
._24{width:42.431400px;}
._22{width:44.101200px;}
._2b{width:46.291573px;}
._2a{width:54.608400px;}
._29{width:59.063400px;}
._8d{width:87.172800px;}
._2{width:153.107843px;}
._2d{width:156.936000px;}
._86{width:165.726000px;}
._64{width:170.466000px;}
._3{width:183.490826px;}
._49{width:189.684000px;}
._48{width:208.032000px;}
._67{width:234.630000px;}
._82{width:240.174000px;}
._88{width:241.428000px;}
._85{width:244.200000px;}
._71{width:249.810000px;}
._7d{width:252.450000px;}
._89{width:258.786000px;}
._6f{width:260.358000px;}
._79{width:264.858000px;}
._7b{width:267.696000px;}
._74{width:268.752000px;}
._7c{width:269.808000px;}
._72{width:277.134000px;}
._73{width:278.916000px;}
._8c{width:280.302000px;}
._7f{width:287.628000px;}
._75{width:289.054800px;}
._6e{width:310.398000px;}
._7e{width:333.168000px;}
._8a{width:374.418000px;}
._6d{width:376.002000px;}
._35{width:384.186000px;}
._4c{width:394.680000px;}
._34{width:409.860000px;}
._4e{width:418.176000px;}
._5e{width:419.364000px;}
._4b{width:430.848000px;}
._4d{width:433.224000px;}
._45{width:442.860000px;}
._30{width:444.972000px;}
._68{width:446.886000px;}
._32{width:468.534000px;}
._37{width:469.590000px;}
._5d{width:470.646000px;}
._38{width:474.342000px;}
._3c{width:480.084000px;}
._42{width:481.140000px;}
._2f{width:491.634000px;}
._65{width:496.056000px;}
._3a{width:497.838000px;}
._58{width:501.072000px;}
._43{width:509.784000px;}
._55{width:510.840000px;}
._3d{width:511.896000px;}
._3f{width:514.074000px;}
._59{width:526.680000px;}
._52{width:537.570000px;}
._87{width:569.580000px;}
._5b{width:599.280000px;}
._7a{width:623.106000px;}
._66{width:654.126000px;}
._61{width:656.502000px;}
._4a{width:664.950000px;}
._78{width:688.380000px;}
._77{width:714.186000px;}
._8b{width:719.664000px;}
._47{width:730.224000px;}
._84{width:735.636000px;}
._76{width:759.462000px;}
._40{width:767.184000px;}
._60{width:786.439200px;}
._54{width:793.518000px;}
._6a{width:815.958000px;}
._83{width:846.054000px;}
._80{width:852.192000px;}
._70{width:853.908000px;}
._2c{width:857.217000px;}
._63{width:868.371000px;}
._3e{width:889.350000px;}
._81{width:891.000000px;}
._33{width:895.752000px;}
._46{width:899.712000px;}
._44{width:925.518000px;}
._39{width:933.690000px;}
._41{width:941.622000px;}
._3b{width:970.794000px;}
._5f{width:972.498000px;}
._6b{width:991.716000px;}
._56{width:993.643200px;}
._5c{width:1012.854000px;}
._6c{width:1032.966000px;}
._36{width:1035.954000px;}
._69{width:1089.207000px;}
._57{width:1091.904000px;}
._2e{width:1100.154000px;}
._5a{width:1131.372000px;}
._53{width:1145.430000px;}
._31{width:1163.448000px;}
._50{width:1167.408000px;}
._51{width:1185.954000px;}
.fc4{color:transparent;}
.fc2{color:rgb(54,108,190);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:38.478000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.872800px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:56.878800px;}
.y36{bottom:73.078800px;}
.y3{bottom:81.772500px;}
.y16e{bottom:106.299600px;}
.y107{bottom:133.773900px;}
.y1e0{bottom:135.240900px;}
.y16d{bottom:135.357900px;}
.y6d{bottom:135.803400px;}
.y12c{bottom:135.868050px;}
.y183{bottom:137.586000px;}
.y1b5{bottom:141.264750px;}
.ya0{bottom:143.822400px;}
.y106{bottom:152.517900px;}
.y1df{bottom:153.990900px;}
.y6c{bottom:154.547400px;}
.y16c{bottom:160.126350px;}
.y1b4{bottom:162.269250px;}
.y9f{bottom:162.566400px;}
.y12b{bottom:164.927400px;}
.y105{bottom:171.261900px;}
.y212{bottom:171.624900px;}
.yd2{bottom:172.713900px;}
.y1de{bottom:172.740900px;}
.y6b{bottom:173.291400px;}
.y1b3{bottom:181.013250px;}
.y9e{bottom:181.310400px;}
.y16b{bottom:184.894650px;}
.y104{bottom:190.005900px;}
.y211{bottom:190.374900px;}
.yd1{bottom:191.457900px;}
.y6a{bottom:192.035400px;}
.y12a{bottom:192.911400px;}
.y1dd{bottom:197.865900px;}
.y1b2{bottom:199.757250px;}
.y9d{bottom:200.054400px;}
.y103{bottom:208.749900px;}
.y210{bottom:209.124900px;}
.y16a{bottom:209.662950px;}
.yd0{bottom:210.201900px;}
.y69{bottom:210.779400px;}
.y1dc{bottom:216.615900px;}
.y1b1{bottom:218.501250px;}
.y129{bottom:219.815250px;}
.y102{bottom:227.493900px;}
.ycf{bottom:228.945900px;}
.y68{bottom:229.523400px;}
.y20f{bottom:234.249900px;}
.y169{bottom:234.431400px;}
.y1db{bottom:235.365900px;}
.y9c{bottom:235.809900px;}
.y1b0{bottom:237.245250px;}
.y101{bottom:246.237900px;}
.yce{bottom:247.689900px;}
.y128{bottom:247.799250px;}
.y67{bottom:248.267400px;}
.y20e{bottom:252.999900px;}
.y1da{bottom:254.115900px;}
.y1af{bottom:255.989250px;}
.y168{bottom:259.199700px;}
.y100{bottom:264.981900px;}
.ycd{bottom:266.433900px;}
.y66{bottom:267.011400px;}
.y9b{bottom:271.565400px;}
.y20d{bottom:271.749900px;}
.y1ae{bottom:274.733250px;}
.y127{bottom:275.783250px;}
.y1d9{bottom:279.240900px;}
.yff{bottom:283.725900px;}
.y167{bottom:283.968000px;}
.ycc{bottom:285.177900px;}
.y65{bottom:285.755400px;}
.y9a{bottom:290.309400px;}
.y20c{bottom:290.499900px;}
.y1ad{bottom:293.477250px;}
.y22{bottom:295.234800px;}
.y1d8{bottom:297.990900px;}
.yfe{bottom:302.469900px;}
.y126{bottom:303.767250px;}
.ycb{bottom:303.921900px;}
.y64{bottom:304.499400px;}
.y166{bottom:308.736450px;}
.y99{bottom:309.053400px;}
.y21{bottom:311.434800px;}
.y1ac{bottom:312.221250px;}
.y20b{bottom:315.624900px;}
.y1d7{bottom:316.740900px;}
.yfd{bottom:321.213900px;}
.yca{bottom:322.665900px;}
.y63{bottom:323.243400px;}
.y98{bottom:327.797400px;}
.y1ab{bottom:330.965250px;}
.y125{bottom:331.751250px;}
.y165{bottom:333.504750px;}
.y20a{bottom:334.374900px;}
.yfc{bottom:339.957900px;}
.yc9{bottom:341.409900px;}
.y1d6{bottom:341.865900px;}
.y62{bottom:341.987400px;}
.y97{bottom:346.541400px;}
.y1aa{bottom:349.709250px;}
.y209{bottom:353.124900px;}
.y164{bottom:358.273050px;}
.y124{bottom:358.657500px;}
.yfb{bottom:358.701900px;}
.yc8{bottom:360.153900px;}
.y1d5{bottom:360.615900px;}
.y96{bottom:365.285400px;}
.y20{bottom:367.930650px;}
.y1a9{bottom:368.453250px;}
.y208{bottom:371.874900px;}
.yfa{bottom:377.445900px;}
.y61{bottom:377.742900px;}
.yc7{bottom:378.897900px;}
.y1d4{bottom:379.365900px;}
.y163{bottom:383.041500px;}
.y95{bottom:384.029400px;}
.y123{bottom:386.641500px;}
.y1f{bottom:387.730650px;}
.yf9{bottom:396.189900px;}
.y207{bottom:396.999900px;}
.yc6{bottom:397.641900px;}
.y1d3{bottom:398.115900px;}
.y94{bottom:402.773400px;}
.y1a8{bottom:404.208750px;}
.y1e{bottom:407.530650px;}
.y162{bottom:407.809800px;}
.y60{bottom:413.498400px;}
.y122{bottom:414.625500px;}
.yf8{bottom:414.933900px;}
.y206{bottom:415.749900px;}
.yc5{bottom:416.385900px;}
.y1d2{bottom:416.865900px;}
.y93{bottom:421.517400px;}
.y5f{bottom:432.242400px;}
.y161{bottom:432.578250px;}
.yf7{bottom:433.677900px;}
.y205{bottom:434.499900px;}
.yc4{bottom:435.129900px;}
.y1a7{bottom:439.964250px;}
.y1d{bottom:440.085150px;}
.y92{bottom:440.261400px;}
.y121{bottom:442.609500px;}
.y1d1{bottom:444.353250px;}
.y5e{bottom:450.986400px;}
.y204{bottom:453.249900px;}
.yc3{bottom:453.873900px;}
.y160{bottom:457.346550px;}
.y1a6{bottom:458.708250px;}
.y91{bottom:459.005400px;}
.y1c{bottom:459.885150px;}
.yf6{bottom:469.433400px;}
.y5d{bottom:469.730400px;}
.y120{bottom:470.593500px;}
.y203{bottom:471.999900px;}
.yc2{bottom:472.617900px;}
.y1a5{bottom:477.452250px;}
.y90{bottom:477.749400px;}
.y35{bottom:478.443300px;}
.y1b{bottom:479.685150px;}
.y15f{bottom:482.115000px;}
.yf5{bottom:488.177400px;}
.y5c{bottom:488.474400px;}
.y1a4{bottom:496.196250px;}
.y8f{bottom:496.493400px;}
.y202{bottom:497.124900px;}
.y11f{bottom:498.577500px;}
.y34{bottom:498.895800px;}
.y1a{bottom:499.485150px;}
.y1d0{bottom:500.964750px;}
.y15e{bottom:506.881500px;}
.yf4{bottom:506.921400px;}
.y5b{bottom:507.218400px;}
.yc1{bottom:508.373400px;}
.y1a3{bottom:514.940250px;}
.y8e{bottom:515.237400px;}
.y201{bottom:515.874900px;}
.y19{bottom:519.285150px;}
.y33{bottom:519.348300px;}
.y1cf{bottom:521.969250px;}
.y11e{bottom:525.479100px;}
.yf3{bottom:525.665400px;}
.yc0{bottom:527.117400px;}
.y1a2{bottom:533.684250px;}
.y8d{bottom:533.981400px;}
.y200{bottom:534.624900px;}
.y18{bottom:539.085150px;}
.y32{bottom:539.800800px;}
.y15d{bottom:540.265050px;}
.y5a{bottom:542.973900px;}
.yf2{bottom:544.409400px;}
.ybf{bottom:545.861400px;}
.y1ce{bottom:551.471250px;}
.y1a1{bottom:552.428250px;}
.y8c{bottom:552.725400px;}
.y1ff{bottom:553.374900px;}
.y11d{bottom:553.463100px;}
.y17{bottom:558.885150px;}
.y59{bottom:561.717900px;}
.yf1{bottom:563.153400px;}
.ybe{bottom:564.605400px;}
.y1a0{bottom:571.172250px;}
.y8b{bottom:571.469400px;}
.y156{bottom:573.081600px;}
.y1fe{bottom:578.499900px;}
.y16{bottom:578.685150px;}
.y58{bottom:580.461900px;}
.y31{bottom:580.705800px;}
.y1cd{bottom:580.973250px;}
.y11c{bottom:581.447100px;}
.yf0{bottom:581.897400px;}
.ybd{bottom:583.349400px;}
.y19f{bottom:589.916250px;}
.y141{bottom:589.977600px;}
.y8a{bottom:590.213400px;}
.y155{bottom:591.825600px;}
.y1fd{bottom:597.249900px;}
.y57{bottom:599.205900px;}
.yef{bottom:600.641400px;}
.y30{bottom:601.158300px;}
.ybc{bottom:602.093400px;}
.y19e{bottom:608.660250px;}
.y140{bottom:608.721600px;}
.y89{bottom:608.957400px;}
.y11b{bottom:609.431100px;}
.y1cc{bottom:610.475250px;}
.y154{bottom:610.569600px;}
.y15{bottom:611.239650px;}
.y1fc{bottom:615.999900px;}
.y56{bottom:617.949900px;}
.y2f{bottom:621.610800px;}
.y19d{bottom:627.404250px;}
.y13f{bottom:627.465600px;}
.y88{bottom:627.701400px;}
.y153{bottom:629.313600px;}
.y14{bottom:631.039650px;}
.y1fb{bottom:634.749900px;}
.y11a{bottom:636.327750px;}
.yee{bottom:636.396900px;}
.y55{bottom:636.693900px;}
.ybb{bottom:637.848900px;}
.y1cb{bottom:639.977250px;}
.y2e{bottom:642.063300px;}
.y19c{bottom:646.148250px;}
.y13e{bottom:646.209600px;}
.y87{bottom:646.445400px;}
.y152{bottom:648.057600px;}
.y13{bottom:650.839650px;}
.y1fa{bottom:653.499900px;}
.yed{bottom:655.140900px;}
.y54{bottom:655.437900px;}
.yba{bottom:656.592900px;}
.y119{bottom:664.311750px;}
.y19b{bottom:664.892250px;}
.y13d{bottom:664.953600px;}
.y86{bottom:665.189400px;}
.y151{bottom:666.801600px;}
.y1ca{bottom:669.479250px;}
.y12{bottom:670.639650px;}
.yec{bottom:673.884900px;}
.y53{bottom:674.181900px;}
.yb9{bottom:675.336900px;}
.y182{bottom:676.266450px;}
.y1f9{bottom:678.624900px;}
.y2d{bottom:682.968300px;}
.y19a{bottom:683.636250px;}
.y13c{bottom:683.697600px;}
.y85{bottom:683.933400px;}
.y150{bottom:685.545600px;}
.y11{bottom:690.439650px;}
.y118{bottom:691.206000px;}
.yeb{bottom:692.628900px;}
.y52{bottom:692.925900px;}
.yb8{bottom:694.080900px;}
.y1f8{bottom:697.374900px;}
.y1c9{bottom:698.981250px;}
.y13b{bottom:702.441600px;}
.y84{bottom:702.677400px;}
.y2c{bottom:703.420800px;}
.y14f{bottom:704.289600px;}
.y10{bottom:710.239650px;}
.y181{bottom:710.272950px;}
.yea{bottom:711.372900px;}
.y51{bottom:711.669900px;}
.yb7{bottom:712.824900px;}
.y1f7{bottom:716.124900px;}
.y117{bottom:718.100400px;}
.y199{bottom:719.391750px;}
.y13a{bottom:721.185600px;}
.y83{bottom:721.421400px;}
.y14e{bottom:723.033600px;}
.y2b{bottom:723.873300px;}
.y1c8{bottom:728.483250px;}
.ye9{bottom:730.116900px;}
.y50{bottom:730.413900px;}
.yb6{bottom:731.568900px;}
.y180{bottom:735.039450px;}
.y139{bottom:739.929600px;}
.y82{bottom:740.165400px;}
.y1f6{bottom:741.249900px;}
.y14d{bottom:741.777600px;}
.yf{bottom:742.794150px;}
.y2a{bottom:744.325800px;}
.y116{bottom:744.994800px;}
.ye8{bottom:748.860900px;}
.y4f{bottom:749.157900px;}
.yb5{bottom:750.312900px;}
.y198{bottom:755.147250px;}
.y1c7{bottom:757.985250px;}
.y138{bottom:758.673600px;}
.y81{bottom:758.909400px;}
.y17f{bottom:759.805950px;}
.y1f5{bottom:759.999900px;}
.y14c{bottom:760.521600px;}
.ye{bottom:762.594150px;}
.ye7{bottom:767.604900px;}
.y4e{bottom:767.901900px;}
.yb4{bottom:769.056900px;}
.y115{bottom:771.889050px;}
.y197{bottom:773.891250px;}
.y137{bottom:777.417600px;}
.y80{bottom:777.653400px;}
.y1f4{bottom:778.749900px;}
.y1c6{bottom:778.989750px;}
.y14b{bottom:779.265600px;}
.y17e{bottom:784.572450px;}
.y29{bottom:785.230800px;}
.ye6{bottom:786.348900px;}
.y4d{bottom:786.645900px;}
.yb3{bottom:787.800900px;}
.y196{bottom:792.635250px;}
.y136{bottom:796.161600px;}
.y7f{bottom:796.397400px;}
.y1f3{bottom:797.499900px;}
.y14a{bottom:798.009600px;}
.y114{bottom:798.783450px;}
.y1c5{bottom:799.994250px;}
.ye5{bottom:805.092900px;}
.y4c{bottom:805.389900px;}
.y28{bottom:805.683300px;}
.yb2{bottom:806.544900px;}
.y17d{bottom:809.338950px;}
.y195{bottom:811.379250px;}
.y135{bottom:814.905600px;}
.y7e{bottom:815.141400px;}
.y149{bottom:816.753600px;}
.yd{bottom:817.972800px;}
.y1f2{bottom:822.624900px;}
.ye4{bottom:823.836900px;}
.y4b{bottom:824.133900px;}
.yb1{bottom:825.288900px;}
.y113{bottom:825.677700px;}
.y1c4{bottom:829.496250px;}
.y194{bottom:830.123250px;}
.y134{bottom:833.649600px;}
.y7d{bottom:833.885400px;}
.y17c{bottom:834.105450px;}
.y1f1{bottom:841.374900px;}
.ye3{bottom:842.580900px;}
.y4a{bottom:842.877900px;}
.yb0{bottom:844.032900px;}
.y27{bottom:846.588300px;}
.y193{bottom:848.867250px;}
.y1c3{bottom:850.500750px;}
.y133{bottom:852.393600px;}
.y148{bottom:852.509100px;}
.y112{bottom:852.572100px;}
.y7c{bottom:852.629400px;}
.y17b{bottom:858.871950px;}
.y1f0{bottom:860.124900px;}
.ye2{bottom:861.324900px;}
.y49{bottom:861.621900px;}
.yaf{bottom:862.776900px;}
.y26{bottom:862.788300px;}
.y192{bottom:867.611250px;}
.y132{bottom:871.137600px;}
.y147{bottom:871.253100px;}
.y7b{bottom:871.373400px;}
.y1c2{bottom:871.505250px;}
.y25{bottom:878.988300px;}
.y111{bottom:879.466500px;}
.ye1{bottom:880.068900px;}
.y48{bottom:880.365900px;}
.yae{bottom:881.520900px;}
.y17a{bottom:883.638450px;}
.y1ef{bottom:885.249900px;}
.y191{bottom:886.355250px;}
.y131{bottom:889.881600px;}
.y146{bottom:889.997100px;}
.y7a{bottom:890.117400px;}
.y24{bottom:895.188300px;}
.ye0{bottom:898.812900px;}
.y47{bottom:899.109900px;}
.yc{bottom:899.475300px;}
.yad{bottom:900.264900px;}
.y1c1{bottom:901.007250px;}
.y1ee{bottom:903.999900px;}
.y190{bottom:905.099250px;}
.y110{bottom:906.360750px;}
.y179{bottom:908.404950px;}
.y130{bottom:908.625600px;}
.y145{bottom:908.741100px;}
.y79{bottom:908.861400px;}
.yb{bottom:913.875300px;}
.y23{bottom:915.640800px;}
.ydf{bottom:917.556900px;}
.y46{bottom:917.853900px;}
.yac{bottom:919.008900px;}
.y1ed{bottom:922.749900px;}
.y18f{bottom:923.843250px;}
.y12f{bottom:927.369600px;}
.y144{bottom:927.485100px;}
.y78{bottom:927.605400px;}
.y1c0{bottom:930.509250px;}
.y178{bottom:933.171450px;}
.y10f{bottom:933.255150px;}
.yde{bottom:936.300900px;}
.y45{bottom:936.597900px;}
.y1ec{bottom:941.499900px;}
.y18e{bottom:942.587250px;}
.ya{bottom:944.957400px;}
.y12e{bottom:946.113600px;}
.y143{bottom:946.229100px;}
.y1bf{bottom:951.513750px;}
.yab{bottom:954.764400px;}
.ydd{bottom:955.044900px;}
.y44{bottom:955.341900px;}
.y177{bottom:957.937950px;}
.y10e{bottom:960.149550px;}
.y1eb{bottom:960.249900px;}
.y18d{bottom:961.331250px;}
.y77{bottom:963.360900px;}
.y12d{bottom:964.857600px;}
.y142{bottom:964.973100px;}
.y1be{bottom:972.518250px;}
.yaa{bottom:973.508400px;}
.ydc{bottom:973.788900px;}
.y43{bottom:974.085900px;}
.y18c{bottom:980.075250px;}
.y176{bottom:982.704450px;}
.y1ea{bottom:985.374900px;}
.y10d{bottom:987.046200px;}
.y15c{bottom:989.626050px;}
.ya9{bottom:992.252400px;}
.ydb{bottom:992.532900px;}
.y42{bottom:992.829900px;}
.y8{bottom:993.229800px;}
.y18b{bottom:998.819250px;}
.y76{bottom:999.116400px;}
.y1bd{bottom:1002.020250px;}
.y1e9{bottom:1004.124900px;}
.y175{bottom:1007.470950px;}
.ya8{bottom:1010.996400px;}
.yda{bottom:1011.276900px;}
.y41{bottom:1011.573900px;}
.y10c{bottom:1015.030200px;}
.y18a{bottom:1017.563250px;}
.y75{bottom:1017.860400px;}
.y1e8{bottom:1022.874900px;}
.y1bc{bottom:1023.024750px;}
.y7{bottom:1025.629800px;}
.ya7{bottom:1029.740400px;}
.yd9{bottom:1030.020900px;}
.y40{bottom:1030.317900px;}
.y174{bottom:1032.237450px;}
.y189{bottom:1036.307250px;}
.y74{bottom:1036.604400px;}
.y15b{bottom:1036.638450px;}
.y1e7{bottom:1041.624900px;}
.y10b{bottom:1041.925650px;}
.y218{bottom:1042.746900px;}
.y1bb{bottom:1044.029250px;}
.ya6{bottom:1048.484400px;}
.yd8{bottom:1048.764900px;}
.y3f{bottom:1049.061900px;}
.y6{bottom:1053.546450px;}
.y188{bottom:1055.051250px;}
.y73{bottom:1055.348400px;}
.y173{bottom:1057.003950px;}
.y217{bottom:1062.546900px;}
.y1ba{bottom:1065.033750px;}
.y15a{bottom:1065.669000px;}
.y1e6{bottom:1066.749900px;}
.ya5{bottom:1067.228400px;}
.yd7{bottom:1067.508900px;}
.y3e{bottom:1067.805900px;}
.y5{bottom:1069.746450px;}
.y10a{bottom:1069.909650px;}
.y72{bottom:1074.092400px;}
.y172{bottom:1081.770450px;}
.y216{bottom:1082.346900px;}
.y1e5{bottom:1085.499900px;}
.ya4{bottom:1085.972400px;}
.y1b9{bottom:1086.038250px;}
.yd6{bottom:1086.252900px;}
.y3d{bottom:1086.549900px;}
.y187{bottom:1090.806750px;}
.y71{bottom:1092.836400px;}
.y159{bottom:1094.692500px;}
.y109{bottom:1096.804650px;}
.y1e4{bottom:1104.249900px;}
.ya3{bottom:1104.716400px;}
.yd5{bottom:1104.996900px;}
.y3c{bottom:1105.293900px;}
.y171{bottom:1106.536950px;}
.y186{bottom:1109.550750px;}
.y1b8{bottom:1115.540250px;}
.y1e3{bottom:1122.999900px;}
.y9{bottom:1123.179750px;}
.ya2{bottom:1123.460400px;}
.y158{bottom:1123.699500px;}
.y108{bottom:1123.699650px;}
.yd4{bottom:1123.740900px;}
.y3b{bottom:1124.037900px;}
.y185{bottom:1128.294750px;}
.y215{bottom:1128.354900px;}
.y70{bottom:1128.591900px;}
.y170{bottom:1132.392450px;}
.y3a{bottom:1142.781900px;}
.y1b7{bottom:1145.042250px;}
.y184{bottom:1147.038750px;}
.y6f{bottom:1147.335900px;}
.y1e2{bottom:1148.124900px;}
.y214{bottom:1148.154900px;}
.ya1{bottom:1159.215900px;}
.y157{bottom:1159.442100px;}
.yd3{bottom:1159.496400px;}
.y16f{bottom:1165.782750px;}
.y39{bottom:1165.782900px;}
.y1b6{bottom:1166.046750px;}
.y6e{bottom:1166.079900px;}
.y1e1{bottom:1166.874900px;}
.y213{bottom:1166.904900px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y38{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.ha{height:36.093750px;}
.h6{height:39.972656px;}
.h10{height:40.394531px;}
.hf{height:40.605469px;}
.h3{height:44.414062px;}
.h15{height:44.882812px;}
.h4{height:45.117188px;}
.he{height:46.248047px;}
.h5{height:46.540608px;}
.hd{height:49.371094px;}
.h12{height:49.628906px;}
.h8{height:51.257812px;}
.h14{height:51.386719px;}
.h9{height:51.445312px;}
.h11{height:54.140625px;}
.h13{height:54.347391px;}
.hc{height:56.525391px;}
.hb{height:72.023438px;}
.h7{height:81.210938px;}
.h2{height:90.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:6.081300px;}
.xd{left:15.558300px;}
.x15{left:23.118300px;}
.xe{left:24.454800px;}
.xf{left:26.547300px;}
.x13{left:35.848800px;}
.x6{left:37.462200px;}
.x14{left:48.565800px;}
.x11{left:52.939800px;}
.xc{left:57.178800px;}
.x5{left:63.044700px;}
.x1d{left:64.334550px;}
.x16{left:66.615300px;}
.x1c{left:69.029550px;}
.x17{left:72.283350px;}
.x10{left:88.633800px;}
.x1f{left:90.779550px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.xb{left:232.786800px;}
.xa{left:242.046600px;}
.x4{left:308.436300px;}
.x1b{left:371.643300px;}
.x1{left:408.040350px;}
.x1a{left:409.911000px;}
.x18{left:461.545050px;}
.x1e{left:488.338650px;}
.x8{left:659.865300px;}
.x3{left:798.829500px;}
.x19{left:800.565300px;}
@media print{
.v4{vertical-align:-51.568000pt;}
.v1{vertical-align:-47.813333pt;}
.v5{vertical-align:-28.160000pt;}
.v6{vertical-align:-8.605333pt;}
.v3{vertical-align:-1.936000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.532267pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:15.264000pt;}
.ls2{letter-spacing:610.151051pt;}
.ws0{word-spacing:-16.192000pt;}
.ws17{word-spacing:-16.074667pt;}
.ws1{word-spacing:-13.248000pt;}
.wsc{word-spacing:-5.573333pt;}
.ws37{word-spacing:-5.280000pt;}
.ws4{word-spacing:-4.464000pt;}
.ws6{word-spacing:-3.989333pt;}
.ws36{word-spacing:-1.701333pt;}
.ws10{word-spacing:-1.232000pt;}
.ws3{word-spacing:-1.114667pt;}
.ws2{word-spacing:0.000000pt;}
.ws35{word-spacing:0.234667pt;}
.ws38{word-spacing:1.642667pt;}
.ws41{word-spacing:3.520000pt;}
.ws28{word-spacing:4.165333pt;}
.ws9{word-spacing:4.693333pt;}
.ws43{word-spacing:5.173333pt;}
.ws7{word-spacing:5.338667pt;}
.ws44{word-spacing:5.706667pt;}
.wsf{word-spacing:5.808000pt;}
.ws2b{word-spacing:7.861333pt;}
.ws3f{word-spacing:8.373333pt;}
.ws5{word-spacing:8.741333pt;}
.ws3c{word-spacing:9.269333pt;}
.ws26{word-spacing:9.328000pt;}
.ws42{word-spacing:10.506667pt;}
.ws3b{word-spacing:10.970667pt;}
.ws29{word-spacing:11.381333pt;}
.ws8{word-spacing:11.674667pt;}
.ws40{word-spacing:13.546667pt;}
.wse{word-spacing:15.429333pt;}
.wsd{word-spacing:15.546667pt;}
.ws3e{word-spacing:15.722667pt;}
.ws3d{word-spacing:15.840000pt;}
.wsb{word-spacing:16.250667pt;}
.wsa{word-spacing:17.717333pt;}
.ws27{word-spacing:18.597333pt;}
.ws39{word-spacing:26.576000pt;}
.ws2a{word-spacing:31.210667pt;}
.ws3a{word-spacing:33.264000pt;}
.ws34{word-spacing:110.352000pt;}
.ws2c{word-spacing:149.171733pt;}
.ws32{word-spacing:199.466667pt;}
.ws31{word-spacing:217.184000pt;}
.ws30{word-spacing:220.938667pt;}
.ws2e{word-spacing:221.877333pt;}
.ws33{word-spacing:230.266667pt;}
.ws2d{word-spacing:231.205333pt;}
.ws11{word-spacing:361.914667pt;}
.ws21{word-spacing:553.320437pt;}
.ws13{word-spacing:555.182304pt;}
.ws1f{word-spacing:563.547104pt;}
.ws15{word-spacing:576.666571pt;}
.ws1b{word-spacing:577.583371pt;}
.ws18{word-spacing:578.528971pt;}
.ws2f{word-spacing:625.691733pt;}
.ws24{word-spacing:1075.594667pt;}
.ws1e{word-spacing:1123.173333pt;}
.ws1d{word-spacing:1181.194667pt;}
.ws1c{word-spacing:1204.133333pt;}
.ws16{word-spacing:1211.067733pt;}
.ws1a{word-spacing:1218.448000pt;}
.ws25{word-spacing:1223.200000pt;}
.ws19{word-spacing:1244.378667pt;}
.ws14{word-spacing:1295.242667pt;}
.ws23{word-spacing:1321.349333pt;}
.ws20{word-spacing:1326.805333pt;}
.ws12{word-spacing:1328.330667pt;}
.ws22{word-spacing:1361.301333pt;}
._13{margin-left:-58.368000pt;}
._90{margin-left:-15.610335pt;}
._4f{margin-left:-14.197333pt;}
._8f{margin-left:-13.076787pt;}
._26{margin-left:-9.542400pt;}
._27{margin-left:-8.647467pt;}
._f{margin-left:-7.056000pt;}
._4{margin-left:-5.973333pt;}
._a{margin-left:-4.913067pt;}
._28{margin-left:-4.016202pt;}
._0{margin-left:-3.098667pt;}
._e{margin-left:-2.120000pt;}
._6{margin-left:-1.088000pt;}
._1{width:1.410881pt;}
._8{width:2.361802pt;}
._11{width:3.638185pt;}
._b{width:4.769600pt;}
._9{width:5.731733pt;}
._17{width:6.984533pt;}
._c{width:8.069333pt;}
._d{width:9.052800pt;}
._1c{width:10.059200pt;}
._20{width:11.805867pt;}
._10{width:13.505067pt;}
._1d{width:15.006732pt;}
._8e{width:16.028800pt;}
._1e{width:17.019200pt;}
._12{width:18.292267pt;}
._7{width:19.285333pt;}
._16{width:20.174933pt;}
._5{width:21.845333pt;}
._1b{width:23.363733pt;}
._18{width:24.640000pt;}
._1a{width:26.167798pt;}
._1f{width:27.379935pt;}
._23{width:28.376663pt;}
._15{width:29.524800pt;}
._14{width:30.567467pt;}
._21{width:32.016533pt;}
._25{width:33.739200pt;}
._19{width:35.223467pt;}
._62{width:36.819200pt;}
._24{width:37.716800pt;}
._22{width:39.201067pt;}
._2b{width:41.148065pt;}
._2a{width:48.540800pt;}
._29{width:52.500800pt;}
._8d{width:77.486933pt;}
._2{width:136.095860pt;}
._2d{width:139.498667pt;}
._86{width:147.312000pt;}
._64{width:151.525333pt;}
._3{width:163.102957pt;}
._49{width:168.608000pt;}
._48{width:184.917333pt;}
._67{width:208.560000pt;}
._82{width:213.488000pt;}
._88{width:214.602667pt;}
._85{width:217.066667pt;}
._71{width:222.053333pt;}
._7d{width:224.400000pt;}
._89{width:230.032000pt;}
._6f{width:231.429333pt;}
._79{width:235.429333pt;}
._7b{width:237.952000pt;}
._74{width:238.890667pt;}
._7c{width:239.829333pt;}
._72{width:246.341333pt;}
._73{width:247.925333pt;}
._8c{width:249.157333pt;}
._7f{width:255.669333pt;}
._75{width:256.937600pt;}
._6e{width:275.909333pt;}
._7e{width:296.149333pt;}
._8a{width:332.816000pt;}
._6d{width:334.224000pt;}
._35{width:341.498667pt;}
._4c{width:350.826667pt;}
._34{width:364.320000pt;}
._4e{width:371.712000pt;}
._5e{width:372.768000pt;}
._4b{width:382.976000pt;}
._4d{width:385.088000pt;}
._45{width:393.653333pt;}
._30{width:395.530667pt;}
._68{width:397.232000pt;}
._32{width:416.474667pt;}
._37{width:417.413333pt;}
._5d{width:418.352000pt;}
._38{width:421.637333pt;}
._3c{width:426.741333pt;}
._42{width:427.680000pt;}
._2f{width:437.008000pt;}
._65{width:440.938667pt;}
._3a{width:442.522667pt;}
._58{width:445.397333pt;}
._43{width:453.141333pt;}
._55{width:454.080000pt;}
._3d{width:455.018667pt;}
._3f{width:456.954667pt;}
._59{width:468.160000pt;}
._52{width:477.840000pt;}
._87{width:506.293333pt;}
._5b{width:532.693333pt;}
._7a{width:553.872000pt;}
._66{width:581.445333pt;}
._61{width:583.557333pt;}
._4a{width:591.066667pt;}
._78{width:611.893333pt;}
._77{width:634.832000pt;}
._8b{width:639.701333pt;}
._47{width:649.088000pt;}
._84{width:653.898667pt;}
._76{width:675.077333pt;}
._40{width:681.941333pt;}
._60{width:699.057067pt;}
._54{width:705.349333pt;}
._6a{width:725.296000pt;}
._83{width:752.048000pt;}
._80{width:757.504000pt;}
._70{width:759.029333pt;}
._2c{width:761.970667pt;}
._63{width:771.885333pt;}
._3e{width:790.533333pt;}
._81{width:792.000000pt;}
._33{width:796.224000pt;}
._46{width:799.744000pt;}
._44{width:822.682667pt;}
._39{width:829.946667pt;}
._41{width:836.997333pt;}
._3b{width:862.928000pt;}
._5f{width:864.442667pt;}
._6b{width:881.525333pt;}
._56{width:883.238400pt;}
._5c{width:900.314667pt;}
._6c{width:918.192000pt;}
._36{width:920.848000pt;}
._69{width:968.184000pt;}
._57{width:970.581333pt;}
._2e{width:977.914667pt;}
._5a{width:1005.664000pt;}
._53{width:1018.160000pt;}
._31{width:1034.176000pt;}
._50{width:1037.696000pt;}
._51{width:1054.181333pt;}
.fs9{font-size:34.202667pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.886933pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:50.558933pt;}
.y36{bottom:64.958933pt;}
.y3{bottom:72.686667pt;}
.y16e{bottom:94.488533pt;}
.y107{bottom:118.910133pt;}
.y1e0{bottom:120.214133pt;}
.y16d{bottom:120.318133pt;}
.y6d{bottom:120.714133pt;}
.y12c{bottom:120.771600pt;}
.y183{bottom:122.298667pt;}
.y1b5{bottom:125.568667pt;}
.ya0{bottom:127.842133pt;}
.y106{bottom:135.571467pt;}
.y1df{bottom:136.880800pt;}
.y6c{bottom:137.375467pt;}
.y16c{bottom:142.334533pt;}
.y1b4{bottom:144.239333pt;}
.y9f{bottom:144.503467pt;}
.y12b{bottom:146.602133pt;}
.y105{bottom:152.232800pt;}
.y212{bottom:152.555467pt;}
.yd2{bottom:153.523467pt;}
.y1de{bottom:153.547467pt;}
.y6b{bottom:154.036800pt;}
.y1b3{bottom:160.900667pt;}
.y9e{bottom:161.164800pt;}
.y16b{bottom:164.350800pt;}
.y104{bottom:168.894133pt;}
.y211{bottom:169.222133pt;}
.yd1{bottom:170.184800pt;}
.y6a{bottom:170.698133pt;}
.y12a{bottom:171.476800pt;}
.y1dd{bottom:175.880800pt;}
.y1b2{bottom:177.562000pt;}
.y9d{bottom:177.826133pt;}
.y103{bottom:185.555467pt;}
.y210{bottom:185.888800pt;}
.y16a{bottom:186.367067pt;}
.yd0{bottom:186.846133pt;}
.y69{bottom:187.359467pt;}
.y1dc{bottom:192.547467pt;}
.y1b1{bottom:194.223333pt;}
.y129{bottom:195.391333pt;}
.y102{bottom:202.216800pt;}
.ycf{bottom:203.507467pt;}
.y68{bottom:204.020800pt;}
.y20f{bottom:208.222133pt;}
.y169{bottom:208.383467pt;}
.y1db{bottom:209.214133pt;}
.y9c{bottom:209.608800pt;}
.y1b0{bottom:210.884667pt;}
.y101{bottom:218.878133pt;}
.yce{bottom:220.168800pt;}
.y128{bottom:220.266000pt;}
.y67{bottom:220.682133pt;}
.y20e{bottom:224.888800pt;}
.y1da{bottom:225.880800pt;}
.y1af{bottom:227.546000pt;}
.y168{bottom:230.399733pt;}
.y100{bottom:235.539467pt;}
.ycd{bottom:236.830133pt;}
.y66{bottom:237.343467pt;}
.y9b{bottom:241.391467pt;}
.y20d{bottom:241.555467pt;}
.y1ae{bottom:244.207333pt;}
.y127{bottom:245.140667pt;}
.y1d9{bottom:248.214133pt;}
.yff{bottom:252.200800pt;}
.y167{bottom:252.416000pt;}
.ycc{bottom:253.491467pt;}
.y65{bottom:254.004800pt;}
.y9a{bottom:258.052800pt;}
.y20c{bottom:258.222133pt;}
.y1ad{bottom:260.868667pt;}
.y22{bottom:262.430933pt;}
.y1d8{bottom:264.880800pt;}
.yfe{bottom:268.862133pt;}
.y126{bottom:270.015333pt;}
.ycb{bottom:270.152800pt;}
.y64{bottom:270.666133pt;}
.y166{bottom:274.432400pt;}
.y99{bottom:274.714133pt;}
.y21{bottom:276.830933pt;}
.y1ac{bottom:277.530000pt;}
.y20b{bottom:280.555467pt;}
.y1d7{bottom:281.547467pt;}
.yfd{bottom:285.523467pt;}
.yca{bottom:286.814133pt;}
.y63{bottom:287.327467pt;}
.y98{bottom:291.375467pt;}
.y1ab{bottom:294.191333pt;}
.y125{bottom:294.890000pt;}
.y165{bottom:296.448667pt;}
.y20a{bottom:297.222133pt;}
.yfc{bottom:302.184800pt;}
.yc9{bottom:303.475467pt;}
.y1d6{bottom:303.880800pt;}
.y62{bottom:303.988800pt;}
.y97{bottom:308.036800pt;}
.y1aa{bottom:310.852667pt;}
.y209{bottom:313.888800pt;}
.y164{bottom:318.464933pt;}
.y124{bottom:318.806667pt;}
.yfb{bottom:318.846133pt;}
.yc8{bottom:320.136800pt;}
.y1d5{bottom:320.547467pt;}
.y96{bottom:324.698133pt;}
.y20{bottom:327.049467pt;}
.y1a9{bottom:327.514000pt;}
.y208{bottom:330.555467pt;}
.yfa{bottom:335.507467pt;}
.y61{bottom:335.771467pt;}
.yc7{bottom:336.798133pt;}
.y1d4{bottom:337.214133pt;}
.y163{bottom:340.481333pt;}
.y95{bottom:341.359467pt;}
.y123{bottom:343.681333pt;}
.y1f{bottom:344.649467pt;}
.yf9{bottom:352.168800pt;}
.y207{bottom:352.888800pt;}
.yc6{bottom:353.459467pt;}
.y1d3{bottom:353.880800pt;}
.y94{bottom:358.020800pt;}
.y1a8{bottom:359.296667pt;}
.y1e{bottom:362.249467pt;}
.y162{bottom:362.497600pt;}
.y60{bottom:367.554133pt;}
.y122{bottom:368.556000pt;}
.yf8{bottom:368.830133pt;}
.y206{bottom:369.555467pt;}
.yc5{bottom:370.120800pt;}
.y1d2{bottom:370.547467pt;}
.y93{bottom:374.682133pt;}
.y5f{bottom:384.215467pt;}
.y161{bottom:384.514000pt;}
.yf7{bottom:385.491467pt;}
.y205{bottom:386.222133pt;}
.yc4{bottom:386.782133pt;}
.y1a7{bottom:391.079333pt;}
.y1d{bottom:391.186800pt;}
.y92{bottom:391.343467pt;}
.y121{bottom:393.430667pt;}
.y1d1{bottom:394.980667pt;}
.y5e{bottom:400.876800pt;}
.y204{bottom:402.888800pt;}
.yc3{bottom:403.443467pt;}
.y160{bottom:406.530267pt;}
.y1a6{bottom:407.740667pt;}
.y91{bottom:408.004800pt;}
.y1c{bottom:408.786800pt;}
.yf6{bottom:417.274133pt;}
.y5d{bottom:417.538133pt;}
.y120{bottom:418.305333pt;}
.y203{bottom:419.555467pt;}
.yc2{bottom:420.104800pt;}
.y1a5{bottom:424.402000pt;}
.y90{bottom:424.666133pt;}
.y35{bottom:425.282933pt;}
.y1b{bottom:426.386800pt;}
.y15f{bottom:428.546667pt;}
.yf5{bottom:433.935467pt;}
.y5c{bottom:434.199467pt;}
.y1a4{bottom:441.063333pt;}
.y8f{bottom:441.327467pt;}
.y202{bottom:441.888800pt;}
.y11f{bottom:443.180000pt;}
.y34{bottom:443.462933pt;}
.y1a{bottom:443.986800pt;}
.y1d0{bottom:445.302000pt;}
.y15e{bottom:450.561333pt;}
.yf4{bottom:450.596800pt;}
.y5b{bottom:450.860800pt;}
.yc1{bottom:451.887467pt;}
.y1a3{bottom:457.724667pt;}
.y8e{bottom:457.988800pt;}
.y201{bottom:458.555467pt;}
.y19{bottom:461.586800pt;}
.y33{bottom:461.642933pt;}
.y1cf{bottom:463.972667pt;}
.y11e{bottom:467.092533pt;}
.yf3{bottom:467.258133pt;}
.yc0{bottom:468.548800pt;}
.y1a2{bottom:474.386000pt;}
.y8d{bottom:474.650133pt;}
.y200{bottom:475.222133pt;}
.y18{bottom:479.186800pt;}
.y32{bottom:479.822933pt;}
.y15d{bottom:480.235600pt;}
.y5a{bottom:482.643467pt;}
.yf2{bottom:483.919467pt;}
.ybf{bottom:485.210133pt;}
.y1ce{bottom:490.196667pt;}
.y1a1{bottom:491.047333pt;}
.y8c{bottom:491.311467pt;}
.y1ff{bottom:491.888800pt;}
.y11d{bottom:491.967200pt;}
.y17{bottom:496.786800pt;}
.y59{bottom:499.304800pt;}
.yf1{bottom:500.580800pt;}
.ybe{bottom:501.871467pt;}
.y1a0{bottom:507.708667pt;}
.y8b{bottom:507.972800pt;}
.y156{bottom:509.405867pt;}
.y1fe{bottom:514.222133pt;}
.y16{bottom:514.386800pt;}
.y58{bottom:515.966133pt;}
.y31{bottom:516.182933pt;}
.y1cd{bottom:516.420667pt;}
.y11c{bottom:516.841867pt;}
.yf0{bottom:517.242133pt;}
.ybd{bottom:518.532800pt;}
.y19f{bottom:524.370000pt;}
.y141{bottom:524.424533pt;}
.y8a{bottom:524.634133pt;}
.y155{bottom:526.067200pt;}
.y1fd{bottom:530.888800pt;}
.y57{bottom:532.627467pt;}
.yef{bottom:533.903467pt;}
.y30{bottom:534.362933pt;}
.ybc{bottom:535.194133pt;}
.y19e{bottom:541.031333pt;}
.y140{bottom:541.085867pt;}
.y89{bottom:541.295467pt;}
.y11b{bottom:541.716533pt;}
.y1cc{bottom:542.644667pt;}
.y154{bottom:542.728533pt;}
.y15{bottom:543.324133pt;}
.y1fc{bottom:547.555467pt;}
.y56{bottom:549.288800pt;}
.y2f{bottom:552.542933pt;}
.y19d{bottom:557.692667pt;}
.y13f{bottom:557.747200pt;}
.y88{bottom:557.956800pt;}
.y153{bottom:559.389867pt;}
.y14{bottom:560.924133pt;}
.y1fb{bottom:564.222133pt;}
.y11a{bottom:565.624667pt;}
.yee{bottom:565.686133pt;}
.y55{bottom:565.950133pt;}
.ybb{bottom:566.976800pt;}
.y1cb{bottom:568.868667pt;}
.y2e{bottom:570.722933pt;}
.y19c{bottom:574.354000pt;}
.y13e{bottom:574.408533pt;}
.y87{bottom:574.618133pt;}
.y152{bottom:576.051200pt;}
.y13{bottom:578.524133pt;}
.y1fa{bottom:580.888800pt;}
.yed{bottom:582.347467pt;}
.y54{bottom:582.611467pt;}
.yba{bottom:583.638133pt;}
.y119{bottom:590.499333pt;}
.y19b{bottom:591.015333pt;}
.y13d{bottom:591.069867pt;}
.y86{bottom:591.279467pt;}
.y151{bottom:592.712533pt;}
.y1ca{bottom:595.092667pt;}
.y12{bottom:596.124133pt;}
.yec{bottom:599.008800pt;}
.y53{bottom:599.272800pt;}
.yb9{bottom:600.299467pt;}
.y182{bottom:601.125733pt;}
.y1f9{bottom:603.222133pt;}
.y2d{bottom:607.082933pt;}
.y19a{bottom:607.676667pt;}
.y13c{bottom:607.731200pt;}
.y85{bottom:607.940800pt;}
.y150{bottom:609.373867pt;}
.y11{bottom:613.724133pt;}
.y118{bottom:614.405333pt;}
.yeb{bottom:615.670133pt;}
.y52{bottom:615.934133pt;}
.yb8{bottom:616.960800pt;}
.y1f8{bottom:619.888800pt;}
.y1c9{bottom:621.316667pt;}
.y13b{bottom:624.392533pt;}
.y84{bottom:624.602133pt;}
.y2c{bottom:625.262933pt;}
.y14f{bottom:626.035200pt;}
.y10{bottom:631.324133pt;}
.y181{bottom:631.353733pt;}
.yea{bottom:632.331467pt;}
.y51{bottom:632.595467pt;}
.yb7{bottom:633.622133pt;}
.y1f7{bottom:636.555467pt;}
.y117{bottom:638.311467pt;}
.y199{bottom:639.459333pt;}
.y13a{bottom:641.053867pt;}
.y83{bottom:641.263467pt;}
.y14e{bottom:642.696533pt;}
.y2b{bottom:643.442933pt;}
.y1c8{bottom:647.540667pt;}
.ye9{bottom:648.992800pt;}
.y50{bottom:649.256800pt;}
.yb6{bottom:650.283467pt;}
.y180{bottom:653.368400pt;}
.y139{bottom:657.715200pt;}
.y82{bottom:657.924800pt;}
.y1f6{bottom:658.888800pt;}
.y14d{bottom:659.357867pt;}
.yf{bottom:660.261467pt;}
.y2a{bottom:661.622933pt;}
.y116{bottom:662.217600pt;}
.ye8{bottom:665.654133pt;}
.y4f{bottom:665.918133pt;}
.yb5{bottom:666.944800pt;}
.y198{bottom:671.242000pt;}
.y1c7{bottom:673.764667pt;}
.y138{bottom:674.376533pt;}
.y81{bottom:674.586133pt;}
.y17f{bottom:675.383067pt;}
.y1f5{bottom:675.555467pt;}
.y14c{bottom:676.019200pt;}
.ye{bottom:677.861467pt;}
.ye7{bottom:682.315467pt;}
.y4e{bottom:682.579467pt;}
.yb4{bottom:683.606133pt;}
.y115{bottom:686.123600pt;}
.y197{bottom:687.903333pt;}
.y137{bottom:691.037867pt;}
.y80{bottom:691.247467pt;}
.y1f4{bottom:692.222133pt;}
.y1c6{bottom:692.435333pt;}
.y14b{bottom:692.680533pt;}
.y17e{bottom:697.397733pt;}
.y29{bottom:697.982933pt;}
.ye6{bottom:698.976800pt;}
.y4d{bottom:699.240800pt;}
.yb3{bottom:700.267467pt;}
.y196{bottom:704.564667pt;}
.y136{bottom:707.699200pt;}
.y7f{bottom:707.908800pt;}
.y1f3{bottom:708.888800pt;}
.y14a{bottom:709.341867pt;}
.y114{bottom:710.029733pt;}
.y1c5{bottom:711.106000pt;}
.ye5{bottom:715.638133pt;}
.y4c{bottom:715.902133pt;}
.y28{bottom:716.162933pt;}
.yb2{bottom:716.928800pt;}
.y17d{bottom:719.412400pt;}
.y195{bottom:721.226000pt;}
.y135{bottom:724.360533pt;}
.y7e{bottom:724.570133pt;}
.y149{bottom:726.003200pt;}
.yd{bottom:727.086933pt;}
.y1f2{bottom:731.222133pt;}
.ye4{bottom:732.299467pt;}
.y4b{bottom:732.563467pt;}
.yb1{bottom:733.590133pt;}
.y113{bottom:733.935733pt;}
.y1c4{bottom:737.330000pt;}
.y194{bottom:737.887333pt;}
.y134{bottom:741.021867pt;}
.y7d{bottom:741.231467pt;}
.y17c{bottom:741.427067pt;}
.y1f1{bottom:747.888800pt;}
.ye3{bottom:748.960800pt;}
.y4a{bottom:749.224800pt;}
.yb0{bottom:750.251467pt;}
.y27{bottom:752.522933pt;}
.y193{bottom:754.548667pt;}
.y1c3{bottom:756.000667pt;}
.y133{bottom:757.683200pt;}
.y148{bottom:757.785867pt;}
.y112{bottom:757.841867pt;}
.y7c{bottom:757.892800pt;}
.y17b{bottom:763.441733pt;}
.y1f0{bottom:764.555467pt;}
.ye2{bottom:765.622133pt;}
.y49{bottom:765.886133pt;}
.yaf{bottom:766.912800pt;}
.y26{bottom:766.922933pt;}
.y192{bottom:771.210000pt;}
.y132{bottom:774.344533pt;}
.y147{bottom:774.447200pt;}
.y7b{bottom:774.554133pt;}
.y1c2{bottom:774.671333pt;}
.y25{bottom:781.322933pt;}
.y111{bottom:781.748000pt;}
.ye1{bottom:782.283467pt;}
.y48{bottom:782.547467pt;}
.yae{bottom:783.574133pt;}
.y17a{bottom:785.456400pt;}
.y1ef{bottom:786.888800pt;}
.y191{bottom:787.871333pt;}
.y131{bottom:791.005867pt;}
.y146{bottom:791.108533pt;}
.y7a{bottom:791.215467pt;}
.y24{bottom:795.722933pt;}
.ye0{bottom:798.944800pt;}
.y47{bottom:799.208800pt;}
.yc{bottom:799.533600pt;}
.yad{bottom:800.235467pt;}
.y1c1{bottom:800.895333pt;}
.y1ee{bottom:803.555467pt;}
.y190{bottom:804.532667pt;}
.y110{bottom:805.654000pt;}
.y179{bottom:807.471067pt;}
.y130{bottom:807.667200pt;}
.y145{bottom:807.769867pt;}
.y79{bottom:807.876800pt;}
.yb{bottom:812.333600pt;}
.y23{bottom:813.902933pt;}
.ydf{bottom:815.606133pt;}
.y46{bottom:815.870133pt;}
.yac{bottom:816.896800pt;}
.y1ed{bottom:820.222133pt;}
.y18f{bottom:821.194000pt;}
.y12f{bottom:824.328533pt;}
.y144{bottom:824.431200pt;}
.y78{bottom:824.538133pt;}
.y1c0{bottom:827.119333pt;}
.y178{bottom:829.485733pt;}
.y10f{bottom:829.560133pt;}
.yde{bottom:832.267467pt;}
.y45{bottom:832.531467pt;}
.y1ec{bottom:836.888800pt;}
.y18e{bottom:837.855333pt;}
.ya{bottom:839.962133pt;}
.y12e{bottom:840.989867pt;}
.y143{bottom:841.092533pt;}
.y1bf{bottom:845.790000pt;}
.yab{bottom:848.679467pt;}
.ydd{bottom:848.928800pt;}
.y44{bottom:849.192800pt;}
.y177{bottom:851.500400pt;}
.y10e{bottom:853.466267pt;}
.y1eb{bottom:853.555467pt;}
.y18d{bottom:854.516667pt;}
.y77{bottom:856.320800pt;}
.y12d{bottom:857.651200pt;}
.y142{bottom:857.753867pt;}
.y1be{bottom:864.460667pt;}
.yaa{bottom:865.340800pt;}
.ydc{bottom:865.590133pt;}
.y43{bottom:865.854133pt;}
.y18c{bottom:871.178000pt;}
.y176{bottom:873.515067pt;}
.y1ea{bottom:875.888800pt;}
.y10d{bottom:877.374400pt;}
.y15c{bottom:879.667600pt;}
.ya9{bottom:882.002133pt;}
.ydb{bottom:882.251467pt;}
.y42{bottom:882.515467pt;}
.y8{bottom:882.870933pt;}
.y18b{bottom:887.839333pt;}
.y76{bottom:888.103467pt;}
.y1bd{bottom:890.684667pt;}
.y1e9{bottom:892.555467pt;}
.y175{bottom:895.529733pt;}
.ya8{bottom:898.663467pt;}
.yda{bottom:898.912800pt;}
.y41{bottom:899.176800pt;}
.y10c{bottom:902.249067pt;}
.y18a{bottom:904.500667pt;}
.y75{bottom:904.764800pt;}
.y1e8{bottom:909.222133pt;}
.y1bc{bottom:909.355333pt;}
.y7{bottom:911.670933pt;}
.ya7{bottom:915.324800pt;}
.yd9{bottom:915.574133pt;}
.y40{bottom:915.838133pt;}
.y174{bottom:917.544400pt;}
.y189{bottom:921.162000pt;}
.y74{bottom:921.426133pt;}
.y15b{bottom:921.456400pt;}
.y1e7{bottom:925.888800pt;}
.y10b{bottom:926.156133pt;}
.y218{bottom:926.886133pt;}
.y1bb{bottom:928.026000pt;}
.ya6{bottom:931.986133pt;}
.yd8{bottom:932.235467pt;}
.y3f{bottom:932.499467pt;}
.y6{bottom:936.485733pt;}
.y188{bottom:937.823333pt;}
.y73{bottom:938.087467pt;}
.y173{bottom:939.559067pt;}
.y217{bottom:944.486133pt;}
.y1ba{bottom:946.696667pt;}
.y15a{bottom:947.261333pt;}
.y1e6{bottom:948.222133pt;}
.ya5{bottom:948.647467pt;}
.yd7{bottom:948.896800pt;}
.y3e{bottom:949.160800pt;}
.y5{bottom:950.885733pt;}
.y10a{bottom:951.030800pt;}
.y72{bottom:954.748800pt;}
.y172{bottom:961.573733pt;}
.y216{bottom:962.086133pt;}
.y1e5{bottom:964.888800pt;}
.ya4{bottom:965.308800pt;}
.y1b9{bottom:965.367333pt;}
.yd6{bottom:965.558133pt;}
.y3d{bottom:965.822133pt;}
.y187{bottom:969.606000pt;}
.y71{bottom:971.410133pt;}
.y159{bottom:973.060000pt;}
.y109{bottom:974.937467pt;}
.y1e4{bottom:981.555467pt;}
.ya3{bottom:981.970133pt;}
.yd5{bottom:982.219467pt;}
.y3c{bottom:982.483467pt;}
.y171{bottom:983.588400pt;}
.y186{bottom:986.267333pt;}
.y1b8{bottom:991.591333pt;}
.y1e3{bottom:998.222133pt;}
.y9{bottom:998.382000pt;}
.ya2{bottom:998.631467pt;}
.y158{bottom:998.844000pt;}
.y108{bottom:998.844133pt;}
.yd4{bottom:998.880800pt;}
.y3b{bottom:999.144800pt;}
.y185{bottom:1002.928667pt;}
.y215{bottom:1002.982133pt;}
.y70{bottom:1003.192800pt;}
.y170{bottom:1006.571067pt;}
.y3a{bottom:1015.806133pt;}
.y1b7{bottom:1017.815333pt;}
.y184{bottom:1019.590000pt;}
.y6f{bottom:1019.854133pt;}
.y1e2{bottom:1020.555467pt;}
.y214{bottom:1020.582133pt;}
.ya1{bottom:1030.414133pt;}
.y157{bottom:1030.615200pt;}
.yd3{bottom:1030.663467pt;}
.y16f{bottom:1036.251333pt;}
.y39{bottom:1036.251467pt;}
.y1b6{bottom:1036.486000pt;}
.y6e{bottom:1036.515467pt;}
.y1e1{bottom:1037.222133pt;}
.y213{bottom:1037.248800pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y38{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.ha{height:32.083333pt;}
.h6{height:35.531250pt;}
.h10{height:35.906250pt;}
.hf{height:36.093750pt;}
.h3{height:39.479167pt;}
.h15{height:39.895833pt;}
.h4{height:40.104167pt;}
.he{height:41.109375pt;}
.h5{height:41.369429pt;}
.hd{height:43.885417pt;}
.h12{height:44.114583pt;}
.h8{height:45.562500pt;}
.h14{height:45.677083pt;}
.h9{height:45.729167pt;}
.h11{height:48.125000pt;}
.h13{height:48.308792pt;}
.hc{height:50.244792pt;}
.hb{height:64.020833pt;}
.h7{height:72.187500pt;}
.h2{height:80.208333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.405600pt;}
.xd{left:13.829600pt;}
.x15{left:20.549600pt;}
.xe{left:21.737600pt;}
.xf{left:23.597600pt;}
.x13{left:31.865600pt;}
.x6{left:33.299733pt;}
.x14{left:43.169600pt;}
.x11{left:47.057600pt;}
.xc{left:50.825600pt;}
.x5{left:56.039733pt;}
.x1d{left:57.186267pt;}
.x16{left:59.213600pt;}
.x1c{left:61.359600pt;}
.x17{left:64.251867pt;}
.x10{left:78.785600pt;}
.x1f{left:80.692933pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.xb{left:206.921600pt;}
.xa{left:215.152533pt;}
.x4{left:274.165600pt;}
.x1b{left:330.349600pt;}
.x1{left:362.702533pt;}
.x1a{left:364.365333pt;}
.x18{left:410.262267pt;}
.x1e{left:434.078800pt;}
.x8{left:586.546933pt;}
.x3{left:710.070667pt;}
.x19{left:711.613600pt;}
}




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