
    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_bdb95f39cb3173997f75fd49.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_3cbb8805a01ee2888b8445ee.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_1d39382e23e9beb461d14e64.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_6590fde6ab96617889b21d25.woff')format("woff");}.ff4{font-family:ff4;line-height:0.975098;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_de4eed00383eaab800bf100b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.975098;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_20666cdbda4751fa9766a019.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_92a2c55155a5e24bd5309a16.woff')format("woff");}.ff7{font-family:ff7;line-height:1.068848;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_6140f03c771869b0d7e2997b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8e1ed41c74ba5bc13fe2cb83.woff')format("woff");}.ff9{font-family:ff9;line-height:1.059082;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_91add3c780be0347bf68dbaa.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_aa712b0b42bb8484ce9928c7.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_758239968f6fca77fb4ee704.woff')format("woff");}.ffc{font-family:ffc;line-height:0.975098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1e80a93aa11da6e942184e18.woff')format("woff");}.ffd{font-family:ffd;line-height:0.759277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cfc415b2692643fe22c4aa54.woff')format("woff");}.ffe{font-family:ffe;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);}
.v3{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.v2{vertical-align:72.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:17.172000px;}
.ls2{letter-spacing:274.560000px;}
.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;}
}
.ws44{word-spacing:-18.216000px;}
.ws45{word-spacing:-18.084000px;}
.ws22{word-spacing:-16.560000px;}
.ws23{word-spacing:-16.440000px;}
.ws0{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.796000px;}
.ws13{word-spacing:-10.560000px;}
.ws4a{word-spacing:-5.346000px;}
.ws2b{word-spacing:-4.488000px;}
.ws4b{word-spacing:-4.356000px;}
.ws10{word-spacing:-4.224000px;}
.ws15{word-spacing:-3.894000px;}
.ws17{word-spacing:-3.564000px;}
.ws4{word-spacing:-2.838000px;}
.ws39{word-spacing:-2.112000px;}
.ws35{word-spacing:-1.188000px;}
.ws1d{word-spacing:-1.080000px;}
.ws1c{word-spacing:-0.396000px;}
.ws56{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.wsf{word-spacing:0.132000px;}
.ws3f{word-spacing:1.452000px;}
.ws8{word-spacing:1.620000px;}
.ws38{word-spacing:1.848000px;}
.ws7{word-spacing:2.706000px;}
.ws2c{word-spacing:3.102000px;}
.ws3{word-spacing:3.630000px;}
.ws34{word-spacing:4.488000px;}
.ws2e{word-spacing:4.554000px;}
.ws59{word-spacing:5.640000px;}
.ws5{word-spacing:5.742000px;}
.wsd{word-spacing:6.204000px;}
.ws6{word-spacing:6.468000px;}
.ws11{word-spacing:6.666000px;}
.ws4e{word-spacing:6.930000px;}
.wsa{word-spacing:7.194000px;}
.wse{word-spacing:7.260000px;}
.ws14{word-spacing:7.524000px;}
.ws18{word-spacing:7.854000px;}
.ws1b{word-spacing:8.580000px;}
.ws16{word-spacing:8.712000px;}
.ws36{word-spacing:9.108000px;}
.ws50{word-spacing:10.164000px;}
.ws2d{word-spacing:10.560000px;}
.ws1a{word-spacing:11.022000px;}
.ws49{word-spacing:11.088000px;}
.ws12{word-spacing:11.220000px;}
.ws3a{word-spacing:11.814000px;}
.ws51{word-spacing:14.256000px;}
.ws3b{word-spacing:16.104000px;}
.ws54{word-spacing:17.688000px;}
.ws53{word-spacing:17.820000px;}
.ws41{word-spacing:18.150000px;}
.ws4f{word-spacing:18.744000px;}
.ws5a{word-spacing:18.780000px;}
.ws4c{word-spacing:18.942000px;}
.wsc{word-spacing:20.262000px;}
.ws48{word-spacing:20.526000px;}
.ws3d{word-spacing:21.648000px;}
.ws33{word-spacing:22.320000px;}
.ws40{word-spacing:22.440000px;}
.ws4d{word-spacing:24.618000px;}
.ws3e{word-spacing:24.948000px;}
.ws9{word-spacing:25.560000px;}
.ws55{word-spacing:26.160000px;}
.ws58{word-spacing:26.220000px;}
.ws57{word-spacing:27.120000px;}
.ws52{word-spacing:27.126000px;}
.ws19{word-spacing:28.116000px;}
.ws42{word-spacing:28.578000px;}
.ws46{word-spacing:29.568000px;}
.ws3c{word-spacing:30.426000px;}
.ws37{word-spacing:30.624000px;}
.ws43{word-spacing:31.878000px;}
.ws47{word-spacing:34.188000px;}
.wsb{word-spacing:41.646000px;}
.ws20{word-spacing:63.282000px;}
.ws26{word-spacing:108.180000px;}
.ws28{word-spacing:114.540000px;}
.ws27{word-spacing:116.700000px;}
.ws21{word-spacing:124.740000px;}
.ws24{word-spacing:232.860000px;}
.ws25{word-spacing:248.940000px;}
.ws1f{word-spacing:258.240000px;}
.ws1e{word-spacing:304.104000px;}
.ws30{word-spacing:515.640000px;}
.ws2f{word-spacing:516.600000px;}
.ws31{word-spacing:531.300000px;}
.ws32{word-spacing:646.500000px;}
.ws2a{word-spacing:895.500000px;}
.ws29{word-spacing:1550.580000px;}
._14{margin-left:-65.718000px;}
._51{margin-left:-15.327000px;}
._24{margin-left:-10.435200px;}
._35{margin-left:-9.094800px;}
._7{margin-left:-7.967400px;}
._c{margin-left:-6.197400px;}
._e{margin-left:-5.009400px;}
._0{margin-left:-3.486000px;}
._8{margin-left:-2.460600px;}
._4{margin-left:-1.458000px;}
._1{width:1.587241px;}
._6{width:3.102000px;}
._a{width:4.355400px;}
._b{width:5.893200px;}
._d{width:6.943800px;}
._15{width:8.612400px;}
._11{width:9.802800px;}
._9{width:10.810200px;}
._13{width:11.826600px;}
._10{width:13.285800px;}
._f{width:15.114000px;}
._18{width:16.830000px;}
._52{width:17.882400px;}
._12{width:19.113600px;}
._17{width:20.881800px;}
._19{width:22.849800px;}
._5{width:24.576000px;}
._16{width:25.931400px;}
._36{width:27.640200px;}
._1c{width:29.092800px;}
._1a{width:31.000200px;}
._1b{width:32.934000px;}
._21{width:34.478400px;}
._34{width:35.560200px;}
._22{width:37.303200px;}
._1f{width:38.352600px;}
._37{width:40.180800px;}
._1e{width:42.060000px;}
._20{width:44.114400px;}
._50{width:45.678600px;}
._4f{width:51.175800px;}
._23{width:55.750200px;}
._25{width:75.600000px;}
._33{width:126.420000px;}
._32{width:140.100000px;}
._2a{width:148.680000px;}
._2{width:153.107843px;}
._2d{width:168.720000px;}
._2f{width:170.040000px;}
._44{width:171.288000px;}
._3{width:183.490826px;}
._3b{width:186.420000px;}
._2b{width:277.620000px;}
._28{width:290.400000px;}
._31{width:296.520000px;}
._4d{width:302.256000px;}
._30{width:314.160000px;}
._46{width:341.136000px;}
._48{width:350.784000px;}
._4e{width:351.882000px;}
._4a{width:376.416000px;}
._39{width:434.160000px;}
._38{width:446.673359px;}
._3d{width:502.680000px;}
._43{width:520.920000px;}
._2c{width:543.300000px;}
._29{width:553.800000px;}
._2e{width:562.704000px;}
._3a{width:570.540000px;}
._3c{width:657.660000px;}
._41{width:667.200000px;}
._3e{width:677.700000px;}
._3f{width:679.200000px;}
._45{width:687.223200px;}
._4c{width:696.600000px;}
._40{width:699.060000px;}
._4b{width:710.808000px;}
._42{width:745.778159px;}
._1d{width:790.409400px;}
._47{width:800.916000px;}
._49{width:801.919200px;}
._27{width:910.980000px;}
._26{width:1310.507400px;}
.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);}
.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;}
.y42{bottom:56.877000px;}
.y41{bottom:73.077000px;}
.y3{bottom:81.772500px;}
.y1be{bottom:111.255600px;}
.y12a{bottom:123.685050px;}
.ye8{bottom:128.902200px;}
.y1bd{bottom:130.005600px;}
.y72{bottom:131.167350px;}
.y9e{bottom:132.840750px;}
.y19f{bottom:132.948900px;}
.y185{bottom:137.766900px;}
.y155{bottom:137.981400px;}
.y129{bottom:141.685050px;}
.y1bc{bottom:148.755600px;}
.y71{bottom:152.171850px;}
.y19e{bottom:153.953400px;}
.y9d{bottom:157.215750px;}
.ye7{bottom:158.662200px;}
.y184{bottom:158.771400px;}
.y154{bottom:158.985900px;}
.y1f0{bottom:165.249900px;}
.y128{bottom:165.980100px;}
.y70{bottom:173.176350px;}
.y1bb{bottom:175.601400px;}
.y183{bottom:179.775900px;}
.y153{bottom:179.990400px;}
.y9c{bottom:181.215750px;}
.ye6{bottom:187.687200px;}
.y1ef{bottom:190.374900px;}
.y127{bottom:191.846100px;}
.y19d{bottom:191.969400px;}
.y6f{bottom:194.180850px;}
.y182{bottom:200.780400px;}
.y152{bottom:200.994900px;}
.y9b{bottom:205.215750px;}
.y1ee{bottom:209.124900px;}
.y19c{bottom:212.973900px;}
.y6e{bottom:215.185350px;}
.ye5{bottom:216.712200px;}
.y126{bottom:217.352100px;}
.y181{bottom:221.784900px;}
.y151{bottom:221.999400px;}
.y1ed{bottom:227.874900px;}
.y9a{bottom:229.215750px;}
.ye4{bottom:234.712200px;}
.y6d{bottom:236.189850px;}
.y1ba{bottom:240.710400px;}
.y180{bottom:242.789400px;}
.y125{bottom:242.858100px;}
.y150{bottom:243.003900px;}
.y1ec{bottom:246.624900px;}
.y19b{bottom:250.989900px;}
.y99{bottom:253.215750px;}
.y25{bottom:253.275000px;}
.y6c{bottom:257.194350px;}
.y1b9{bottom:261.714900px;}
.y17f{bottom:263.793900px;}
.y14f{bottom:264.008400px;}
.ye3{bottom:264.352200px;}
.y1eb{bottom:265.374900px;}
.y124{bottom:268.364100px;}
.y24{bottom:269.475000px;}
.y19a{bottom:271.994400px;}
.y98{bottom:277.215750px;}
.y6b{bottom:278.198850px;}
.y17e{bottom:284.798400px;}
.y14e{bottom:285.012900px;}
.y23{bottom:285.675000px;}
.y1ea{bottom:290.499900px;}
.y199{bottom:292.998900px;}
.y123{bottom:293.870100px;}
.y97{bottom:294.675750px;}
.ye2{bottom:295.087200px;}
.y6a{bottom:299.203350px;}
.y1b8{bottom:299.730900px;}
.y17d{bottom:305.802900px;}
.y14d{bottom:306.017400px;}
.y1e9{bottom:309.249900px;}
.y96{bottom:312.675750px;}
.y198{bottom:314.003400px;}
.y40{bottom:319.074000px;}
.y122{bottom:319.376100px;}
.y1b7{bottom:320.735400px;}
.ye1{bottom:325.192200px;}
.y17c{bottom:326.807400px;}
.y14c{bottom:327.021900px;}
.y1e8{bottom:327.999900px;}
.y95{bottom:330.135750px;}
.y197{bottom:335.007900px;}
.y69{bottom:337.219350px;}
.y3f{bottom:339.526500px;}
.y121{bottom:344.882100px;}
.y1e7{bottom:346.749900px;}
.y17b{bottom:347.811900px;}
.y14b{bottom:348.026400px;}
.y22{bottom:351.430650px;}
.y94{bottom:354.135750px;}
.ye0{bottom:354.592200px;}
.y196{bottom:356.012400px;}
.y68{bottom:358.223850px;}
.y1b6{bottom:358.751400px;}
.y3e{bottom:359.979000px;}
.y17a{bottom:368.816400px;}
.y14a{bottom:369.030900px;}
.y120{bottom:370.010100px;}
.y21{bottom:371.230650px;}
.y1e6{bottom:371.874900px;}
.y195{bottom:377.016900px;}
.y93{bottom:378.135750px;}
.y67{bottom:379.228350px;}
.y3d{bottom:380.431500px;}
.yde{bottom:382.897200px;}
.y179{bottom:389.820900px;}
.y149{bottom:390.035400px;}
.y1e5{bottom:390.624900px;}
.y20{bottom:391.030650px;}
.ydd{bottom:391.897200px;}
.y1b5{bottom:396.767400px;}
.y11f{bottom:396.812100px;}
.y194{bottom:398.021400px;}
.y66{bottom:400.232850px;}
.y3c{bottom:400.884000px;}
.ydf{bottom:400.897200px;}
.y92{bottom:402.135750px;}
.y1e4{bottom:409.374900px;}
.y178{bottom:410.825400px;}
.y1f{bottom:410.830650px;}
.y148{bottom:411.039900px;}
.y193{bottom:419.025900px;}
.y65{bottom:421.237350px;}
.y3b{bottom:421.336500px;}
.y91{bottom:426.135750px;}
.y177{bottom:431.829900px;}
.y147{bottom:432.044400px;}
.y1e3{bottom:434.499900px;}
.y11e{bottom:434.687100px;}
.y1b4{bottom:434.783400px;}
.ydc{bottom:438.329400px;}
.y192{bottom:440.030400px;}
.y3a{bottom:441.789000px;}
.y64{bottom:442.241850px;}
.y1e{bottom:443.385150px;}
.y90{bottom:450.135750px;}
.y146{bottom:453.048900px;}
.y1e2{bottom:453.249900px;}
.y1b3{bottom:455.787900px;}
.y39{bottom:462.241500px;}
.y1d{bottom:463.185150px;}
.y63{bottom:463.246350px;}
.y176{bottom:469.845900px;}
.y1e1{bottom:471.999900px;}
.y145{bottom:474.053400px;}
.y8f{bottom:474.135750px;}
.y117{bottom:474.210150px;}
.ydb{bottom:477.897900px;}
.y191{bottom:478.046400px;}
.yff{bottom:478.318650px;}
.ybc{bottom:482.039400px;}
.y38{bottom:482.694000px;}
.y1c{bottom:482.985150px;}
.y62{bottom:484.250850px;}
.y1e0{bottom:490.749900px;}
.y175{bottom:490.850400px;}
.y1b2{bottom:493.803900px;}
.y144{bottom:495.057900px;}
.y116{bottom:495.214650px;}
.y8e{bottom:498.135750px;}
.yda{bottom:498.902400px;}
.yfe{bottom:499.323150px;}
.y1b{bottom:502.785150px;}
.ybb{bottom:503.043900px;}
.y37{bottom:503.146500px;}
.y61{bottom:505.255350px;}
.y174{bottom:511.854900px;}
.y1df{bottom:515.874900px;}
.y143{bottom:516.062400px;}
.y115{bottom:516.219150px;}
.yd9{bottom:519.906900px;}
.yfd{bottom:520.327650px;}
.y8d{bottom:521.760750px;}
.yba{bottom:524.048400px;}
.y60{bottom:526.259850px;}
.y1b1{bottom:531.819900px;}
.y173{bottom:532.859400px;}
.y1de{bottom:534.624900px;}
.y1a{bottom:535.339650px;}
.y20f{bottom:535.729050px;}
.y142{bottom:537.066900px;}
.y114{bottom:537.223650px;}
.yd8{bottom:540.911400px;}
.y36{bottom:544.051500px;}
.yb9{bottom:545.052900px;}
.y8c{bottom:547.260750px;}
.y5f{bottom:547.264350px;}
.y1dd{bottom:553.374900px;}
.y172{bottom:553.863900px;}
.y19{bottom:555.139650px;}
.y20e{bottom:555.529050px;}
.y141{bottom:558.071400px;}
.y113{bottom:558.228150px;}
.yfc{bottom:558.343650px;}
.yd7{bottom:561.915900px;}
.y35{bottom:564.504000px;}
.yb8{bottom:566.057400px;}
.y5e{bottom:568.268850px;}
.y1b0{bottom:569.835900px;}
.y1dc{bottom:572.124900px;}
.y171{bottom:574.868400px;}
.y18{bottom:574.939650px;}
.y20d{bottom:575.329050px;}
.y140{bottom:579.075900px;}
.y112{bottom:579.232650px;}
.yd6{bottom:582.920400px;}
.y8b{bottom:583.096050px;}
.y34{bottom:584.956500px;}
.yb7{bottom:587.061900px;}
.y5d{bottom:589.273350px;}
.y17{bottom:594.739650px;}
.y170{bottom:595.872900px;}
.yfb{bottom:596.359650px;}
.y1db{bottom:597.249900px;}
.y190{bottom:600.080400px;}
.y111{bottom:600.237150px;}
.yd5{bottom:603.924900px;}
.y33{bottom:605.409000px;}
.y1af{bottom:607.851900px;}
.yb6{bottom:608.066400px;}
.y8a{bottom:610.096050px;}
.y5c{bottom:610.277850px;}
.y16{bottom:614.539650px;}
.y1da{bottom:615.999900px;}
.y16f{bottom:616.877400px;}
.y13f{bottom:617.091900px;}
.yfa{bottom:617.364150px;}
.y18f{bottom:621.084900px;}
.y110{bottom:621.241650px;}
.y20c{bottom:621.369900px;}
.yd4{bottom:624.929400px;}
.y32{bottom:625.861500px;}
.y1ae{bottom:628.856400px;}
.yb5{bottom:629.070900px;}
.y1d9{bottom:634.749900px;}
.y16e{bottom:637.881900px;}
.y13e{bottom:638.096400px;}
.yf9{bottom:638.368650px;}
.y20b{bottom:641.169900px;}
.y18e{bottom:642.089400px;}
.y10f{bottom:642.246150px;}
.yd3{bottom:645.933900px;}
.y15{bottom:647.094150px;}
.y5b{bottom:648.293850px;}
.y1ad{bottom:649.860900px;}
.y89{bottom:652.435350px;}
.y1d8{bottom:653.499900px;}
.y16d{bottom:658.886400px;}
.y13d{bottom:659.100900px;}
.yf8{bottom:659.373150px;}
.y20a{bottom:659.919900px;}
.y18d{bottom:663.093900px;}
.y10e{bottom:663.250650px;}
.y31{bottom:666.766500px;}
.y14{bottom:666.894150px;}
.yd2{bottom:666.938400px;}
.yb4{bottom:667.086900px;}
.y5a{bottom:669.298350px;}
.y88{bottom:673.439850px;}
.y1d7{bottom:678.624900px;}
.y209{bottom:678.669900px;}
.y16c{bottom:679.890900px;}
.y13c{bottom:680.105400px;}
.yf7{bottom:680.377650px;}
.y18c{bottom:684.098400px;}
.y13{bottom:686.694150px;}
.y30{bottom:687.219000px;}
.y1ac{bottom:687.876900px;}
.yd1{bottom:687.942900px;}
.y59{bottom:690.302850px;}
.y87{bottom:694.444350px;}
.y1d6{bottom:697.374900px;}
.y16b{bottom:700.895400px;}
.y13b{bottom:701.109900px;}
.y10d{bottom:701.266650px;}
.yf6{bottom:701.382150px;}
.y208{bottom:703.794900px;}
.yb3{bottom:705.102900px;}
.y12{bottom:706.494150px;}
.y2f{bottom:707.671500px;}
.y1ab{bottom:708.881400px;}
.yd0{bottom:708.947400px;}
.y58{bottom:711.307350px;}
.y86{bottom:715.448850px;}
.y1d5{bottom:716.124900px;}
.y16a{bottom:721.899900px;}
.y13a{bottom:722.114400px;}
.y10c{bottom:722.271150px;}
.yf5{bottom:722.386650px;}
.y207{bottom:722.544900px;}
.yb2{bottom:726.107400px;}
.y11{bottom:726.294150px;}
.y2e{bottom:728.124000px;}
.y1aa{bottom:729.885900px;}
.y57{bottom:732.311850px;}
.y1d4{bottom:734.874900px;}
.y85{bottom:736.453350px;}
.y206{bottom:741.294900px;}
.y169{bottom:742.904400px;}
.y139{bottom:743.118900px;}
.y10b{bottom:743.275650px;}
.yf4{bottom:743.391150px;}
.y10{bottom:746.094150px;}
.ycf{bottom:746.963400px;}
.yb1{bottom:747.111900px;}
.y56{bottom:753.316350px;}
.y1d3{bottom:753.624900px;}
.y84{bottom:757.457850px;}
.y205{bottom:760.044900px;}
.y168{bottom:763.908900px;}
.y138{bottom:764.123400px;}
.y10a{bottom:764.280150px;}
.yf3{bottom:764.395650px;}
.y1a9{bottom:767.901900px;}
.yce{bottom:767.967900px;}
.yb0{bottom:768.116400px;}
.y2d{bottom:769.029000px;}
.y55{bottom:774.320850px;}
.y1d2{bottom:778.749900px;}
.y204{bottom:778.794900px;}
.y167{bottom:784.913400px;}
.y137{bottom:785.127900px;}
.y109{bottom:785.284650px;}
.yf2{bottom:785.400150px;}
.y1a8{bottom:788.906400px;}
.ycd{bottom:788.972400px;}
.yaf{bottom:789.120900px;}
.y2c{bottom:789.481500px;}
.y54{bottom:795.325350px;}
.y83{bottom:795.473850px;}
.y1d1{bottom:797.499900px;}
.y203{bottom:803.919900px;}
.y166{bottom:805.917900px;}
.yf{bottom:805.972800px;}
.y136{bottom:806.132400px;}
.y108{bottom:806.289150px;}
.yf1{bottom:806.404650px;}
.y1a7{bottom:809.910900px;}
.ycc{bottom:809.976900px;}
.yae{bottom:810.125400px;}
.y1d0{bottom:816.249900px;}
.y53{bottom:816.329850px;}
.y82{bottom:816.478350px;}
.y202{bottom:822.669900px;}
.y165{bottom:826.922400px;}
.y135{bottom:827.136900px;}
.y107{bottom:827.293650px;}
.yf0{bottom:827.409150px;}
.y2b{bottom:830.386500px;}
.y1a6{bottom:830.915400px;}
.ycb{bottom:830.981400px;}
.yad{bottom:831.129900px;}
.y1cf{bottom:834.999900px;}
.y52{bottom:837.334350px;}
.y81{bottom:837.482850px;}
.y201{bottom:841.419900px;}
.y2a{bottom:846.586500px;}
.y164{bottom:847.926900px;}
.y134{bottom:848.141400px;}
.y106{bottom:848.298150px;}
.yef{bottom:848.413650px;}
.y1a5{bottom:851.919900px;}
.yca{bottom:851.985900px;}
.yac{bottom:852.134400px;}
.y51{bottom:858.338850px;}
.y80{bottom:858.487350px;}
.y1ce{bottom:860.124900px;}
.y29{bottom:862.786500px;}
.ye{bottom:864.664050px;}
.y200{bottom:866.544900px;}
.y163{bottom:868.931400px;}
.y133{bottom:869.145900px;}
.y105{bottom:869.302650px;}
.y1a4{bottom:872.924400px;}
.yc9{bottom:872.990400px;}
.yab{bottom:873.138900px;}
.y1cd{bottom:878.874900px;}
.y28{bottom:878.986500px;}
.yd{bottom:879.064050px;}
.y50{bottom:879.343350px;}
.y7f{bottom:879.491850px;}
.y1ff{bottom:885.294900px;}
.yee{bottom:886.429650px;}
.y162{bottom:889.935900px;}
.y132{bottom:890.150400px;}
.y104{bottom:890.307150px;}
.y1a3{bottom:893.928900px;}
.yc8{bottom:893.994900px;}
.yaa{bottom:894.143400px;}
.y27{bottom:895.186500px;}
.y1cc{bottom:897.624900px;}
.y4f{bottom:900.347850px;}
.y7e{bottom:900.496350px;}
.y1fe{bottom:904.044900px;}
.yc{bottom:905.804100px;}
.yed{bottom:907.434150px;}
.y161{bottom:910.940400px;}
.y131{bottom:911.154900px;}
.y103{bottom:911.311650px;}
.y1a2{bottom:914.933400px;}
.yc7{bottom:914.999400px;}
.ya9{bottom:915.147900px;}
.y26{bottom:915.639000px;}
.y1cb{bottom:916.374900px;}
.y4e{bottom:921.352350px;}
.y7d{bottom:921.500850px;}
.y1fd{bottom:922.794900px;}
.yb{bottom:923.804100px;}
.yec{bottom:928.438650px;}
.y160{bottom:931.944900px;}
.y130{bottom:932.159400px;}
.y1ca{bottom:935.124900px;}
.ya8{bottom:936.152400px;}
.y7c{bottom:942.505350px;}
.y1fc{bottom:947.919900px;}
.y102{bottom:949.327650px;}
.yeb{bottom:949.443150px;}
.y15f{bottom:952.949400px;}
.yc6{bottom:953.015400px;}
.y12f{bottom:953.163900px;}
.ya7{bottom:957.156900px;}
.y4d{bottom:959.368350px;}
.y1c9{bottom:960.249900px;}
.y9{bottom:960.829800px;}
.y7b{bottom:963.509850px;}
.y1fb{bottom:966.669900px;}
.y101{bottom:970.332150px;}
.yea{bottom:970.447650px;}
.y1a1{bottom:973.953900px;}
.y12e{bottom:974.168400px;}
.y18b{bottom:978.161400px;}
.y1c8{bottom:978.999900px;}
.y4c{bottom:980.372850px;}
.y7a{bottom:984.514350px;}
.y1fa{bottom:985.419900px;}
.y15e{bottom:990.965400px;}
.yc5{bottom:991.031400px;}
.y100{bottom:991.336650px;}
.ye9{bottom:991.452150px;}
.y8{bottom:993.229800px;}
.y1a0{bottom:994.958400px;}
.ya6{bottom:995.172900px;}
.y18a{bottom:999.165900px;}
.y4b{bottom:1001.377350px;}
.y1c7{bottom:1004.124900px;}
.y1f9{bottom:1004.169900px;}
.y79{bottom:1005.518850px;}
.y15d{bottom:1011.969900px;}
.yc4{bottom:1012.035900px;}
.ya5{bottom:1016.177400px;}
.y189{bottom:1020.170400px;}
.y4a{bottom:1022.381850px;}
.y1c6{bottom:1022.874900px;}
.y7{bottom:1025.629800px;}
.y78{bottom:1026.523350px;}
.y1f8{bottom:1029.294900px;}
.y11d{bottom:1031.355600px;}
.y15c{bottom:1032.974400px;}
.yc3{bottom:1033.040400px;}
.ya4{bottom:1037.181900px;}
.y188{bottom:1041.174900px;}
.y1c5{bottom:1041.624900px;}
.y49{bottom:1043.386350px;}
.y77{bottom:1047.527850px;}
.y1f7{bottom:1048.044900px;}
.y6{bottom:1053.546450px;}
.y15b{bottom:1053.978900px;}
.yc2{bottom:1054.044900px;}
.y12d{bottom:1054.193400px;}
.y11c{bottom:1055.730600px;}
.ya3{bottom:1058.186400px;}
.y187{bottom:1062.179400px;}
.y48{bottom:1064.390850px;}
.y1c4{bottom:1066.749900px;}
.y1f6{bottom:1066.794900px;}
.y76{bottom:1068.532350px;}
.y5{bottom:1069.746450px;}
.y15a{bottom:1074.983400px;}
.yc1{bottom:1075.049400px;}
.y12c{bottom:1075.197900px;}
.ya2{bottom:1079.190900px;}
.y11b{bottom:1079.730600px;}
.y47{bottom:1085.395350px;}
.y1c3{bottom:1085.499900px;}
.y1f5{bottom:1085.544900px;}
.y75{bottom:1089.536850px;}
.y159{bottom:1095.987900px;}
.yc0{bottom:1096.053900px;}
.y12b{bottom:1096.202400px;}
.y186{bottom:1100.195400px;}
.y11a{bottom:1103.355600px;}
.y1c2{bottom:1104.249900px;}
.y46{bottom:1106.399850px;}
.y1f4{bottom:1110.669900px;}
.y158{bottom:1116.992400px;}
.ybf{bottom:1117.058400px;}
.ya1{bottom:1117.206900px;}
.y1c1{bottom:1122.999900px;}
.ya{bottom:1123.179750px;}
.y45{bottom:1127.404350px;}
.y74{bottom:1127.552850px;}
.y119{bottom:1128.855600px;}
.y1f3{bottom:1129.419900px;}
.y157{bottom:1137.996900px;}
.ybe{bottom:1138.062900px;}
.ya0{bottom:1138.211400px;}
.y1c0{bottom:1148.124900px;}
.y1f2{bottom:1148.169900px;}
.y156{bottom:1159.001400px;}
.ybd{bottom:1159.067400px;}
.y9f{bottom:1159.215900px;}
.y118{bottom:1164.690750px;}
.y44{bottom:1165.420350px;}
.y73{bottom:1165.568850px;}
.y1bf{bottom:1166.874900px;}
.y1f1{bottom:1166.919900px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y43{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.h6{height:39.972656px;}
.ha{height:40.031250px;}
.h11{height:40.394531px;}
.h10{height:40.605469px;}
.h3{height:44.414062px;}
.hf{height:44.507812px;}
.h17{height:44.882812px;}
.h12{height:45.035156px;}
.h4{height:45.117188px;}
.h5{height:46.540608px;}
.h14{height:49.371094px;}
.h16{height:49.453125px;}
.hc{height:49.628906px;}
.h1c{height:50.039062px;}
.h9{height:51.445312px;}
.h8{height:53.296875px;}
.h15{height:53.859375px;}
.h13{height:54.140625px;}
.he{height:54.398438px;}
.hd{height:55.042969px;}
.h1d{height:59.343750px;}
.h18{height:60.046875px;}
.hb{height:72.023438px;}
.h19{height:81.117188px;}
.h7{height:81.210938px;}
.h1b{height:85.453125px;}
.h2{height:90.234375px;}
.h1a{height:117.117188px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:6.108300px;}
.xd{left:7.228800px;}
.xe{left:8.592300px;}
.x10{left:20.944800px;}
.x16{left:23.158800px;}
.xf{left:25.332300px;}
.x14{left:35.875800px;}
.x6{left:37.732200px;}
.x12{left:39.304800px;}
.x15{left:48.592800px;}
.xc{left:57.178800px;}
.x5{left:63.044700px;}
.x30{left:64.523550px;}
.x17{left:66.655800px;}
.x27{left:69.029550px;}
.x19{left:72.283350px;}
.x11{left:88.660800px;}
.x37{left:90.779550px;}
.x2e{left:133.439550px;}
.x2f{left:159.809550px;}
.x2d{left:173.114550px;}
.x32{left:182.957550px;}
.x2c{left:187.499550px;}
.x31{left:190.823550px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.x28{left:228.554550px;}
.xb{left:232.786800px;}
.xa{left:240.546600px;}
.x33{left:258.341550px;}
.x35{left:266.585550px;}
.x34{left:281.363550px;}
.x4{left:308.436300px;}
.x29{left:355.679550px;}
.x1{left:408.040350px;}
.x1a{left:461.545050px;}
.x1b{left:466.801050px;}
.x36{left:488.338650px;}
.x24{left:523.801050px;}
.x2a{left:553.754550px;}
.x22{left:573.691050px;}
.x23{left:601.336050px;}
.x1f{left:606.856050px;}
.x21{left:608.041050px;}
.x20{left:612.871050px;}
.x1e{left:622.711050px;}
.x2b{left:651.029550px;}
.x8{left:659.865300px;}
.x25{left:664.156050px;}
.x1d{left:672.361050px;}
.x26{left:683.356050px;}
.x1c{left:686.746050px;}
.x3{left:791.578500px;}
.x18{left:793.314300px;}
@media print{
.v3{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.v2{vertical-align:64.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:15.264000pt;}
.ls2{letter-spacing:244.053333pt;}
.ws44{word-spacing:-16.192000pt;}
.ws45{word-spacing:-16.074667pt;}
.ws22{word-spacing:-14.720000pt;}
.ws23{word-spacing:-14.613333pt;}
.ws0{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.152000pt;}
.ws13{word-spacing:-9.386667pt;}
.ws4a{word-spacing:-4.752000pt;}
.ws2b{word-spacing:-3.989333pt;}
.ws4b{word-spacing:-3.872000pt;}
.ws10{word-spacing:-3.754667pt;}
.ws15{word-spacing:-3.461333pt;}
.ws17{word-spacing:-3.168000pt;}
.ws4{word-spacing:-2.522667pt;}
.ws39{word-spacing:-1.877333pt;}
.ws35{word-spacing:-1.056000pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws1c{word-spacing:-0.352000pt;}
.ws56{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.wsf{word-spacing:0.117333pt;}
.ws3f{word-spacing:1.290667pt;}
.ws8{word-spacing:1.440000pt;}
.ws38{word-spacing:1.642667pt;}
.ws7{word-spacing:2.405333pt;}
.ws2c{word-spacing:2.757333pt;}
.ws3{word-spacing:3.226667pt;}
.ws34{word-spacing:3.989333pt;}
.ws2e{word-spacing:4.048000pt;}
.ws59{word-spacing:5.013333pt;}
.ws5{word-spacing:5.104000pt;}
.wsd{word-spacing:5.514667pt;}
.ws6{word-spacing:5.749333pt;}
.ws11{word-spacing:5.925333pt;}
.ws4e{word-spacing:6.160000pt;}
.wsa{word-spacing:6.394667pt;}
.wse{word-spacing:6.453333pt;}
.ws14{word-spacing:6.688000pt;}
.ws18{word-spacing:6.981333pt;}
.ws1b{word-spacing:7.626667pt;}
.ws16{word-spacing:7.744000pt;}
.ws36{word-spacing:8.096000pt;}
.ws50{word-spacing:9.034667pt;}
.ws2d{word-spacing:9.386667pt;}
.ws1a{word-spacing:9.797333pt;}
.ws49{word-spacing:9.856000pt;}
.ws12{word-spacing:9.973333pt;}
.ws3a{word-spacing:10.501333pt;}
.ws51{word-spacing:12.672000pt;}
.ws3b{word-spacing:14.314667pt;}
.ws54{word-spacing:15.722667pt;}
.ws53{word-spacing:15.840000pt;}
.ws41{word-spacing:16.133333pt;}
.ws4f{word-spacing:16.661333pt;}
.ws5a{word-spacing:16.693333pt;}
.ws4c{word-spacing:16.837333pt;}
.wsc{word-spacing:18.010667pt;}
.ws48{word-spacing:18.245333pt;}
.ws3d{word-spacing:19.242667pt;}
.ws33{word-spacing:19.840000pt;}
.ws40{word-spacing:19.946667pt;}
.ws4d{word-spacing:21.882667pt;}
.ws3e{word-spacing:22.176000pt;}
.ws9{word-spacing:22.720000pt;}
.ws55{word-spacing:23.253333pt;}
.ws58{word-spacing:23.306667pt;}
.ws57{word-spacing:24.106667pt;}
.ws52{word-spacing:24.112000pt;}
.ws19{word-spacing:24.992000pt;}
.ws42{word-spacing:25.402667pt;}
.ws46{word-spacing:26.282667pt;}
.ws3c{word-spacing:27.045333pt;}
.ws37{word-spacing:27.221333pt;}
.ws43{word-spacing:28.336000pt;}
.ws47{word-spacing:30.389333pt;}
.wsb{word-spacing:37.018667pt;}
.ws20{word-spacing:56.250667pt;}
.ws26{word-spacing:96.160000pt;}
.ws28{word-spacing:101.813333pt;}
.ws27{word-spacing:103.733333pt;}
.ws21{word-spacing:110.880000pt;}
.ws24{word-spacing:206.986667pt;}
.ws25{word-spacing:221.280000pt;}
.ws1f{word-spacing:229.546667pt;}
.ws1e{word-spacing:270.314667pt;}
.ws30{word-spacing:458.346667pt;}
.ws2f{word-spacing:459.200000pt;}
.ws31{word-spacing:472.266667pt;}
.ws32{word-spacing:574.666667pt;}
.ws2a{word-spacing:796.000000pt;}
.ws29{word-spacing:1378.293333pt;}
._14{margin-left:-58.416000pt;}
._51{margin-left:-13.624000pt;}
._24{margin-left:-9.275733pt;}
._35{margin-left:-8.084267pt;}
._7{margin-left:-7.082133pt;}
._c{margin-left:-5.508800pt;}
._e{margin-left:-4.452800pt;}
._0{margin-left:-3.098667pt;}
._8{margin-left:-2.187200pt;}
._4{margin-left:-1.296000pt;}
._1{width:1.410881pt;}
._6{width:2.757333pt;}
._a{width:3.871467pt;}
._b{width:5.238400pt;}
._d{width:6.172267pt;}
._15{width:7.655467pt;}
._11{width:8.713600pt;}
._9{width:9.609067pt;}
._13{width:10.512533pt;}
._10{width:11.809600pt;}
._f{width:13.434667pt;}
._18{width:14.960000pt;}
._52{width:15.895467pt;}
._12{width:16.989867pt;}
._17{width:18.561600pt;}
._19{width:20.310933pt;}
._5{width:21.845333pt;}
._16{width:23.050133pt;}
._36{width:24.569067pt;}
._1c{width:25.860267pt;}
._1a{width:27.555733pt;}
._1b{width:29.274667pt;}
._21{width:30.647467pt;}
._34{width:31.609067pt;}
._22{width:33.158400pt;}
._1f{width:34.091200pt;}
._37{width:35.716267pt;}
._1e{width:37.386667pt;}
._20{width:39.212800pt;}
._50{width:40.603200pt;}
._4f{width:45.489600pt;}
._23{width:49.555733pt;}
._25{width:67.200000pt;}
._33{width:112.373333pt;}
._32{width:124.533333pt;}
._2a{width:132.160000pt;}
._2{width:136.095860pt;}
._2d{width:149.973333pt;}
._2f{width:151.146667pt;}
._44{width:152.256000pt;}
._3{width:163.102957pt;}
._3b{width:165.706667pt;}
._2b{width:246.773333pt;}
._28{width:258.133333pt;}
._31{width:263.573333pt;}
._4d{width:268.672000pt;}
._30{width:279.253333pt;}
._46{width:303.232000pt;}
._48{width:311.808000pt;}
._4e{width:312.784000pt;}
._4a{width:334.592000pt;}
._39{width:385.920000pt;}
._38{width:397.042985pt;}
._3d{width:446.826667pt;}
._43{width:463.040000pt;}
._2c{width:482.933333pt;}
._29{width:492.266667pt;}
._2e{width:500.181333pt;}
._3a{width:507.146667pt;}
._3c{width:584.586667pt;}
._41{width:593.066667pt;}
._3e{width:602.400000pt;}
._3f{width:603.733333pt;}
._45{width:610.865067pt;}
._4c{width:619.200000pt;}
._40{width:621.386667pt;}
._4b{width:631.829333pt;}
._42{width:662.913919pt;}
._1d{width:702.586133pt;}
._47{width:711.925333pt;}
._49{width:712.817067pt;}
._27{width:809.760000pt;}
._26{width:1164.895467pt;}
.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;}
.y42{bottom:50.557333pt;}
.y41{bottom:64.957333pt;}
.y3{bottom:72.686667pt;}
.y1be{bottom:98.893867pt;}
.y12a{bottom:109.942267pt;}
.ye8{bottom:114.579733pt;}
.y1bd{bottom:115.560533pt;}
.y72{bottom:116.593200pt;}
.y9e{bottom:118.080667pt;}
.y19f{bottom:118.176800pt;}
.y185{bottom:122.459467pt;}
.y155{bottom:122.650133pt;}
.y129{bottom:125.942267pt;}
.y1bc{bottom:132.227200pt;}
.y71{bottom:135.263867pt;}
.y19e{bottom:136.847467pt;}
.y9d{bottom:139.747333pt;}
.ye7{bottom:141.033067pt;}
.y184{bottom:141.130133pt;}
.y154{bottom:141.320800pt;}
.y1f0{bottom:146.888800pt;}
.y128{bottom:147.537867pt;}
.y70{bottom:153.934533pt;}
.y1bb{bottom:156.090133pt;}
.y183{bottom:159.800800pt;}
.y153{bottom:159.991467pt;}
.y9c{bottom:161.080667pt;}
.ye6{bottom:166.833067pt;}
.y1ef{bottom:169.222133pt;}
.y127{bottom:170.529867pt;}
.y19d{bottom:170.639467pt;}
.y6f{bottom:172.605200pt;}
.y182{bottom:178.471467pt;}
.y152{bottom:178.662133pt;}
.y9b{bottom:182.414000pt;}
.y1ee{bottom:185.888800pt;}
.y19c{bottom:189.310133pt;}
.y6e{bottom:191.275867pt;}
.ye5{bottom:192.633067pt;}
.y126{bottom:193.201867pt;}
.y181{bottom:197.142133pt;}
.y151{bottom:197.332800pt;}
.y1ed{bottom:202.555467pt;}
.y9a{bottom:203.747333pt;}
.ye4{bottom:208.633067pt;}
.y6d{bottom:209.946533pt;}
.y1ba{bottom:213.964800pt;}
.y180{bottom:215.812800pt;}
.y125{bottom:215.873867pt;}
.y150{bottom:216.003467pt;}
.y1ec{bottom:219.222133pt;}
.y19b{bottom:223.102133pt;}
.y99{bottom:225.080667pt;}
.y25{bottom:225.133333pt;}
.y6c{bottom:228.617200pt;}
.y1b9{bottom:232.635467pt;}
.y17f{bottom:234.483467pt;}
.y14f{bottom:234.674133pt;}
.ye3{bottom:234.979733pt;}
.y1eb{bottom:235.888800pt;}
.y124{bottom:238.545867pt;}
.y24{bottom:239.533333pt;}
.y19a{bottom:241.772800pt;}
.y98{bottom:246.414000pt;}
.y6b{bottom:247.287867pt;}
.y17e{bottom:253.154133pt;}
.y14e{bottom:253.344800pt;}
.y23{bottom:253.933333pt;}
.y1ea{bottom:258.222133pt;}
.y199{bottom:260.443467pt;}
.y123{bottom:261.217867pt;}
.y97{bottom:261.934000pt;}
.ye2{bottom:262.299733pt;}
.y6a{bottom:265.958533pt;}
.y1b8{bottom:266.427467pt;}
.y17d{bottom:271.824800pt;}
.y14d{bottom:272.015467pt;}
.y1e9{bottom:274.888800pt;}
.y96{bottom:277.934000pt;}
.y198{bottom:279.114133pt;}
.y40{bottom:283.621333pt;}
.y122{bottom:283.889867pt;}
.y1b7{bottom:285.098133pt;}
.ye1{bottom:289.059733pt;}
.y17c{bottom:290.495467pt;}
.y14c{bottom:290.686133pt;}
.y1e8{bottom:291.555467pt;}
.y95{bottom:293.454000pt;}
.y197{bottom:297.784800pt;}
.y69{bottom:299.750533pt;}
.y3f{bottom:301.801333pt;}
.y121{bottom:306.561867pt;}
.y1e7{bottom:308.222133pt;}
.y17b{bottom:309.166133pt;}
.y14b{bottom:309.356800pt;}
.y22{bottom:312.382800pt;}
.y94{bottom:314.787333pt;}
.ye0{bottom:315.193067pt;}
.y196{bottom:316.455467pt;}
.y68{bottom:318.421200pt;}
.y1b6{bottom:318.890133pt;}
.y3e{bottom:319.981333pt;}
.y17a{bottom:327.836800pt;}
.y14a{bottom:328.027467pt;}
.y120{bottom:328.897867pt;}
.y21{bottom:329.982800pt;}
.y1e6{bottom:330.555467pt;}
.y195{bottom:335.126133pt;}
.y93{bottom:336.120667pt;}
.y67{bottom:337.091867pt;}
.y3d{bottom:338.161333pt;}
.yde{bottom:340.353067pt;}
.y179{bottom:346.507467pt;}
.y149{bottom:346.698133pt;}
.y1e5{bottom:347.222133pt;}
.y20{bottom:347.582800pt;}
.ydd{bottom:348.353067pt;}
.y1b5{bottom:352.682133pt;}
.y11f{bottom:352.721867pt;}
.y194{bottom:353.796800pt;}
.y66{bottom:355.762533pt;}
.y3c{bottom:356.341333pt;}
.ydf{bottom:356.353067pt;}
.y92{bottom:357.454000pt;}
.y1e4{bottom:363.888800pt;}
.y178{bottom:365.178133pt;}
.y1f{bottom:365.182800pt;}
.y148{bottom:365.368800pt;}
.y193{bottom:372.467467pt;}
.y65{bottom:374.433200pt;}
.y3b{bottom:374.521333pt;}
.y91{bottom:378.787333pt;}
.y177{bottom:383.848800pt;}
.y147{bottom:384.039467pt;}
.y1e3{bottom:386.222133pt;}
.y11e{bottom:386.388533pt;}
.y1b4{bottom:386.474133pt;}
.ydc{bottom:389.626133pt;}
.y192{bottom:391.138133pt;}
.y3a{bottom:392.701333pt;}
.y64{bottom:393.103867pt;}
.y1e{bottom:394.120133pt;}
.y90{bottom:400.120667pt;}
.y146{bottom:402.710133pt;}
.y1e2{bottom:402.888800pt;}
.y1b3{bottom:405.144800pt;}
.y39{bottom:410.881333pt;}
.y1d{bottom:411.720133pt;}
.y63{bottom:411.774533pt;}
.y176{bottom:417.640800pt;}
.y1e1{bottom:419.555467pt;}
.y145{bottom:421.380800pt;}
.y8f{bottom:421.454000pt;}
.y117{bottom:421.520133pt;}
.ydb{bottom:424.798133pt;}
.y191{bottom:424.930133pt;}
.yff{bottom:425.172133pt;}
.ybc{bottom:428.479467pt;}
.y38{bottom:429.061333pt;}
.y1c{bottom:429.320133pt;}
.y62{bottom:430.445200pt;}
.y1e0{bottom:436.222133pt;}
.y175{bottom:436.311467pt;}
.y1b2{bottom:438.936800pt;}
.y144{bottom:440.051467pt;}
.y116{bottom:440.190800pt;}
.y8e{bottom:442.787333pt;}
.yda{bottom:443.468800pt;}
.yfe{bottom:443.842800pt;}
.y1b{bottom:446.920133pt;}
.ybb{bottom:447.150133pt;}
.y37{bottom:447.241333pt;}
.y61{bottom:449.115867pt;}
.y174{bottom:454.982133pt;}
.y1df{bottom:458.555467pt;}
.y143{bottom:458.722133pt;}
.y115{bottom:458.861467pt;}
.yd9{bottom:462.139467pt;}
.yfd{bottom:462.513467pt;}
.y8d{bottom:463.787333pt;}
.yba{bottom:465.820800pt;}
.y60{bottom:467.786533pt;}
.y1b1{bottom:472.728800pt;}
.y173{bottom:473.652800pt;}
.y1de{bottom:475.222133pt;}
.y1a{bottom:475.857467pt;}
.y20f{bottom:476.203600pt;}
.y142{bottom:477.392800pt;}
.y114{bottom:477.532133pt;}
.yd8{bottom:480.810133pt;}
.y36{bottom:483.601333pt;}
.yb9{bottom:484.491467pt;}
.y8c{bottom:486.454000pt;}
.y5f{bottom:486.457200pt;}
.y1dd{bottom:491.888800pt;}
.y172{bottom:492.323467pt;}
.y19{bottom:493.457467pt;}
.y20e{bottom:493.803600pt;}
.y141{bottom:496.063467pt;}
.y113{bottom:496.202800pt;}
.yfc{bottom:496.305467pt;}
.yd7{bottom:499.480800pt;}
.y35{bottom:501.781333pt;}
.yb8{bottom:503.162133pt;}
.y5e{bottom:505.127867pt;}
.y1b0{bottom:506.520800pt;}
.y1dc{bottom:508.555467pt;}
.y171{bottom:510.994133pt;}
.y18{bottom:511.057467pt;}
.y20d{bottom:511.403600pt;}
.y140{bottom:514.734133pt;}
.y112{bottom:514.873467pt;}
.yd6{bottom:518.151467pt;}
.y8b{bottom:518.307600pt;}
.y34{bottom:519.961333pt;}
.yb7{bottom:521.832800pt;}
.y5d{bottom:523.798533pt;}
.y17{bottom:528.657467pt;}
.y170{bottom:529.664800pt;}
.yfb{bottom:530.097467pt;}
.y1db{bottom:530.888800pt;}
.y190{bottom:533.404800pt;}
.y111{bottom:533.544133pt;}
.yd5{bottom:536.822133pt;}
.y33{bottom:538.141333pt;}
.y1af{bottom:540.312800pt;}
.yb6{bottom:540.503467pt;}
.y8a{bottom:542.307600pt;}
.y5c{bottom:542.469200pt;}
.y16{bottom:546.257467pt;}
.y1da{bottom:547.555467pt;}
.y16f{bottom:548.335467pt;}
.y13f{bottom:548.526133pt;}
.yfa{bottom:548.768133pt;}
.y18f{bottom:552.075467pt;}
.y110{bottom:552.214800pt;}
.y20c{bottom:552.328800pt;}
.yd4{bottom:555.492800pt;}
.y32{bottom:556.321333pt;}
.y1ae{bottom:558.983467pt;}
.yb5{bottom:559.174133pt;}
.y1d9{bottom:564.222133pt;}
.y16e{bottom:567.006133pt;}
.y13e{bottom:567.196800pt;}
.yf9{bottom:567.438800pt;}
.y20b{bottom:569.928800pt;}
.y18e{bottom:570.746133pt;}
.y10f{bottom:570.885467pt;}
.yd3{bottom:574.163467pt;}
.y15{bottom:575.194800pt;}
.y5b{bottom:576.261200pt;}
.y1ad{bottom:577.654133pt;}
.y89{bottom:579.942533pt;}
.y1d8{bottom:580.888800pt;}
.y16d{bottom:585.676800pt;}
.y13d{bottom:585.867467pt;}
.yf8{bottom:586.109467pt;}
.y20a{bottom:586.595467pt;}
.y18d{bottom:589.416800pt;}
.y10e{bottom:589.556133pt;}
.y31{bottom:592.681333pt;}
.y14{bottom:592.794800pt;}
.yd2{bottom:592.834133pt;}
.yb4{bottom:592.966133pt;}
.y5a{bottom:594.931867pt;}
.y88{bottom:598.613200pt;}
.y1d7{bottom:603.222133pt;}
.y209{bottom:603.262133pt;}
.y16c{bottom:604.347467pt;}
.y13c{bottom:604.538133pt;}
.yf7{bottom:604.780133pt;}
.y18c{bottom:608.087467pt;}
.y13{bottom:610.394800pt;}
.y30{bottom:610.861333pt;}
.y1ac{bottom:611.446133pt;}
.yd1{bottom:611.504800pt;}
.y59{bottom:613.602533pt;}
.y87{bottom:617.283867pt;}
.y1d6{bottom:619.888800pt;}
.y16b{bottom:623.018133pt;}
.y13b{bottom:623.208800pt;}
.y10d{bottom:623.348133pt;}
.yf6{bottom:623.450800pt;}
.y208{bottom:625.595467pt;}
.yb3{bottom:626.758133pt;}
.y12{bottom:627.994800pt;}
.y2f{bottom:629.041333pt;}
.y1ab{bottom:630.116800pt;}
.yd0{bottom:630.175467pt;}
.y58{bottom:632.273200pt;}
.y86{bottom:635.954533pt;}
.y1d5{bottom:636.555467pt;}
.y16a{bottom:641.688800pt;}
.y13a{bottom:641.879467pt;}
.y10c{bottom:642.018800pt;}
.yf5{bottom:642.121467pt;}
.y207{bottom:642.262133pt;}
.yb2{bottom:645.428800pt;}
.y11{bottom:645.594800pt;}
.y2e{bottom:647.221333pt;}
.y1aa{bottom:648.787467pt;}
.y57{bottom:650.943867pt;}
.y1d4{bottom:653.222133pt;}
.y85{bottom:654.625200pt;}
.y206{bottom:658.928800pt;}
.y169{bottom:660.359467pt;}
.y139{bottom:660.550133pt;}
.y10b{bottom:660.689467pt;}
.yf4{bottom:660.792133pt;}
.y10{bottom:663.194800pt;}
.ycf{bottom:663.967467pt;}
.yb1{bottom:664.099467pt;}
.y56{bottom:669.614533pt;}
.y1d3{bottom:669.888800pt;}
.y84{bottom:673.295867pt;}
.y205{bottom:675.595467pt;}
.y168{bottom:679.030133pt;}
.y138{bottom:679.220800pt;}
.y10a{bottom:679.360133pt;}
.yf3{bottom:679.462800pt;}
.y1a9{bottom:682.579467pt;}
.yce{bottom:682.638133pt;}
.yb0{bottom:682.770133pt;}
.y2d{bottom:683.581333pt;}
.y55{bottom:688.285200pt;}
.y1d2{bottom:692.222133pt;}
.y204{bottom:692.262133pt;}
.y167{bottom:697.700800pt;}
.y137{bottom:697.891467pt;}
.y109{bottom:698.030800pt;}
.yf2{bottom:698.133467pt;}
.y1a8{bottom:701.250133pt;}
.ycd{bottom:701.308800pt;}
.yaf{bottom:701.440800pt;}
.y2c{bottom:701.761333pt;}
.y54{bottom:706.955867pt;}
.y83{bottom:707.087867pt;}
.y1d1{bottom:708.888800pt;}
.y203{bottom:714.595467pt;}
.y166{bottom:716.371467pt;}
.yf{bottom:716.420267pt;}
.y136{bottom:716.562133pt;}
.y108{bottom:716.701467pt;}
.yf1{bottom:716.804133pt;}
.y1a7{bottom:719.920800pt;}
.ycc{bottom:719.979467pt;}
.yae{bottom:720.111467pt;}
.y1d0{bottom:725.555467pt;}
.y53{bottom:725.626533pt;}
.y82{bottom:725.758533pt;}
.y202{bottom:731.262133pt;}
.y165{bottom:735.042133pt;}
.y135{bottom:735.232800pt;}
.y107{bottom:735.372133pt;}
.yf0{bottom:735.474800pt;}
.y2b{bottom:738.121333pt;}
.y1a6{bottom:738.591467pt;}
.ycb{bottom:738.650133pt;}
.yad{bottom:738.782133pt;}
.y1cf{bottom:742.222133pt;}
.y52{bottom:744.297200pt;}
.y81{bottom:744.429200pt;}
.y201{bottom:747.928800pt;}
.y2a{bottom:752.521333pt;}
.y164{bottom:753.712800pt;}
.y134{bottom:753.903467pt;}
.y106{bottom:754.042800pt;}
.yef{bottom:754.145467pt;}
.y1a5{bottom:757.262133pt;}
.yca{bottom:757.320800pt;}
.yac{bottom:757.452800pt;}
.y51{bottom:762.967867pt;}
.y80{bottom:763.099867pt;}
.y1ce{bottom:764.555467pt;}
.y29{bottom:766.921333pt;}
.ye{bottom:768.590267pt;}
.y200{bottom:770.262133pt;}
.y163{bottom:772.383467pt;}
.y133{bottom:772.574133pt;}
.y105{bottom:772.713467pt;}
.y1a4{bottom:775.932800pt;}
.yc9{bottom:775.991467pt;}
.yab{bottom:776.123467pt;}
.y1cd{bottom:781.222133pt;}
.y28{bottom:781.321333pt;}
.yd{bottom:781.390267pt;}
.y50{bottom:781.638533pt;}
.y7f{bottom:781.770533pt;}
.y1ff{bottom:786.928800pt;}
.yee{bottom:787.937467pt;}
.y162{bottom:791.054133pt;}
.y132{bottom:791.244800pt;}
.y104{bottom:791.384133pt;}
.y1a3{bottom:794.603467pt;}
.yc8{bottom:794.662133pt;}
.yaa{bottom:794.794133pt;}
.y27{bottom:795.721333pt;}
.y1cc{bottom:797.888800pt;}
.y4f{bottom:800.309200pt;}
.y7e{bottom:800.441200pt;}
.y1fe{bottom:803.595467pt;}
.yc{bottom:805.159200pt;}
.yed{bottom:806.608133pt;}
.y161{bottom:809.724800pt;}
.y131{bottom:809.915467pt;}
.y103{bottom:810.054800pt;}
.y1a2{bottom:813.274133pt;}
.yc7{bottom:813.332800pt;}
.ya9{bottom:813.464800pt;}
.y26{bottom:813.901333pt;}
.y1cb{bottom:814.555467pt;}
.y4e{bottom:818.979867pt;}
.y7d{bottom:819.111867pt;}
.y1fd{bottom:820.262133pt;}
.yb{bottom:821.159200pt;}
.yec{bottom:825.278800pt;}
.y160{bottom:828.395467pt;}
.y130{bottom:828.586133pt;}
.y1ca{bottom:831.222133pt;}
.ya8{bottom:832.135467pt;}
.y7c{bottom:837.782533pt;}
.y1fc{bottom:842.595467pt;}
.y102{bottom:843.846800pt;}
.yeb{bottom:843.949467pt;}
.y15f{bottom:847.066133pt;}
.yc6{bottom:847.124800pt;}
.y12f{bottom:847.256800pt;}
.ya7{bottom:850.806133pt;}
.y4d{bottom:852.771867pt;}
.y1c9{bottom:853.555467pt;}
.y9{bottom:854.070933pt;}
.y7b{bottom:856.453200pt;}
.y1fb{bottom:859.262133pt;}
.y101{bottom:862.517467pt;}
.yea{bottom:862.620133pt;}
.y1a1{bottom:865.736800pt;}
.y12e{bottom:865.927467pt;}
.y18b{bottom:869.476800pt;}
.y1c8{bottom:870.222133pt;}
.y4c{bottom:871.442533pt;}
.y7a{bottom:875.123867pt;}
.y1fa{bottom:875.928800pt;}
.y15e{bottom:880.858133pt;}
.yc5{bottom:880.916800pt;}
.y100{bottom:881.188133pt;}
.ye9{bottom:881.290800pt;}
.y8{bottom:882.870933pt;}
.y1a0{bottom:884.407467pt;}
.ya6{bottom:884.598133pt;}
.y18a{bottom:888.147467pt;}
.y4b{bottom:890.113200pt;}
.y1c7{bottom:892.555467pt;}
.y1f9{bottom:892.595467pt;}
.y79{bottom:893.794533pt;}
.y15d{bottom:899.528800pt;}
.yc4{bottom:899.587467pt;}
.ya5{bottom:903.268800pt;}
.y189{bottom:906.818133pt;}
.y4a{bottom:908.783867pt;}
.y1c6{bottom:909.222133pt;}
.y7{bottom:911.670933pt;}
.y78{bottom:912.465200pt;}
.y1f8{bottom:914.928800pt;}
.y11d{bottom:916.760533pt;}
.y15c{bottom:918.199467pt;}
.yc3{bottom:918.258133pt;}
.ya4{bottom:921.939467pt;}
.y188{bottom:925.488800pt;}
.y1c5{bottom:925.888800pt;}
.y49{bottom:927.454533pt;}
.y77{bottom:931.135867pt;}
.y1f7{bottom:931.595467pt;}
.y6{bottom:936.485733pt;}
.y15b{bottom:936.870133pt;}
.yc2{bottom:936.928800pt;}
.y12d{bottom:937.060800pt;}
.y11c{bottom:938.427200pt;}
.ya3{bottom:940.610133pt;}
.y187{bottom:944.159467pt;}
.y48{bottom:946.125200pt;}
.y1c4{bottom:948.222133pt;}
.y1f6{bottom:948.262133pt;}
.y76{bottom:949.806533pt;}
.y5{bottom:950.885733pt;}
.y15a{bottom:955.540800pt;}
.yc1{bottom:955.599467pt;}
.y12c{bottom:955.731467pt;}
.ya2{bottom:959.280800pt;}
.y11b{bottom:959.760533pt;}
.y47{bottom:964.795867pt;}
.y1c3{bottom:964.888800pt;}
.y1f5{bottom:964.928800pt;}
.y75{bottom:968.477200pt;}
.y159{bottom:974.211467pt;}
.yc0{bottom:974.270133pt;}
.y12b{bottom:974.402133pt;}
.y186{bottom:977.951467pt;}
.y11a{bottom:980.760533pt;}
.y1c2{bottom:981.555467pt;}
.y46{bottom:983.466533pt;}
.y1f4{bottom:987.262133pt;}
.y158{bottom:992.882133pt;}
.ybf{bottom:992.940800pt;}
.ya1{bottom:993.072800pt;}
.y1c1{bottom:998.222133pt;}
.ya{bottom:998.382000pt;}
.y45{bottom:1002.137200pt;}
.y74{bottom:1002.269200pt;}
.y119{bottom:1003.427200pt;}
.y1f3{bottom:1003.928800pt;}
.y157{bottom:1011.552800pt;}
.ybe{bottom:1011.611467pt;}
.ya0{bottom:1011.743467pt;}
.y1c0{bottom:1020.555467pt;}
.y1f2{bottom:1020.595467pt;}
.y156{bottom:1030.223467pt;}
.ybd{bottom:1030.282133pt;}
.y9f{bottom:1030.414133pt;}
.y118{bottom:1035.280667pt;}
.y44{bottom:1035.929200pt;}
.y73{bottom:1036.061200pt;}
.y1bf{bottom:1037.222133pt;}
.y1f1{bottom:1037.262133pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y43{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.h6{height:35.531250pt;}
.ha{height:35.583333pt;}
.h11{height:35.906250pt;}
.h10{height:36.093750pt;}
.h3{height:39.479167pt;}
.hf{height:39.562500pt;}
.h17{height:39.895833pt;}
.h12{height:40.031250pt;}
.h4{height:40.104167pt;}
.h5{height:41.369429pt;}
.h14{height:43.885417pt;}
.h16{height:43.958333pt;}
.hc{height:44.114583pt;}
.h1c{height:44.479167pt;}
.h9{height:45.729167pt;}
.h8{height:47.375000pt;}
.h15{height:47.875000pt;}
.h13{height:48.125000pt;}
.he{height:48.354167pt;}
.hd{height:48.927083pt;}
.h1d{height:52.750000pt;}
.h18{height:53.375000pt;}
.hb{height:64.020833pt;}
.h19{height:72.104167pt;}
.h7{height:72.187500pt;}
.h1b{height:75.958333pt;}
.h2{height:80.208333pt;}
.h1a{height:104.104167pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.429600pt;}
.xd{left:6.425600pt;}
.xe{left:7.637600pt;}
.x10{left:18.617600pt;}
.x16{left:20.585600pt;}
.xf{left:22.517600pt;}
.x14{left:31.889600pt;}
.x6{left:33.539733pt;}
.x12{left:34.937600pt;}
.x15{left:43.193600pt;}
.xc{left:50.825600pt;}
.x5{left:56.039733pt;}
.x30{left:57.354267pt;}
.x17{left:59.249600pt;}
.x27{left:61.359600pt;}
.x19{left:64.251867pt;}
.x11{left:78.809600pt;}
.x37{left:80.692933pt;}
.x2e{left:118.612933pt;}
.x2f{left:142.052933pt;}
.x2d{left:153.879600pt;}
.x32{left:162.628933pt;}
.x2c{left:166.666267pt;}
.x31{left:169.620933pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.x28{left:203.159600pt;}
.xb{left:206.921600pt;}
.xa{left:213.819200pt;}
.x33{left:229.636933pt;}
.x35{left:236.964933pt;}
.x34{left:250.100933pt;}
.x4{left:274.165600pt;}
.x29{left:316.159600pt;}
.x1{left:362.702533pt;}
.x1a{left:410.262267pt;}
.x1b{left:414.934267pt;}
.x36{left:434.078800pt;}
.x24{left:465.600933pt;}
.x2a{left:492.226267pt;}
.x22{left:509.947600pt;}
.x23{left:534.520933pt;}
.x1f{left:539.427600pt;}
.x21{left:540.480933pt;}
.x20{left:544.774267pt;}
.x1e{left:553.520933pt;}
.x2b{left:578.692933pt;}
.x8{left:586.546933pt;}
.x25{left:590.360933pt;}
.x1d{left:597.654267pt;}
.x26{left:607.427600pt;}
.x1c{left:610.440933pt;}
.x3{left:703.625333pt;}
.x18{left:705.168267pt;}
}




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