
    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_c9aa9cfda48333edbd57ff57.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_61f7c99dc18c302c3c97ce20.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_f725d7b6bc63eee8771b3ff9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_41e01ee30abb592f259d6e47.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_3b979d1ce085425e3d1a72d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_a560911b30e731607110aafb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.995117;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_2aa08e96bb07e4a2a2ae8e11.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_879437c497a95be670ed145b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aee0cf599f78415445d4970e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_9731d41175c15701db9610e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_61f646930b525f3f4fffd8cf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929199;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_48c8b7534eba795a2e6afcc3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d9e9a81890eff4f15677d95a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.859375;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);}
.v1{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-2.160000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.792000px;}
.ls12{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.576000px;}
.ls1{letter-spacing:-0.334200px;}
.ls11{letter-spacing:-0.181200px;}
.ls2{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.144720px;}
.ls19{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.305400px;}
.lsa{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.720000px;}
.ls1a{letter-spacing:3.060000px;}
.ls27{letter-spacing:8.640000px;}
.ls26{letter-spacing:9.360000px;}
.ls23{letter-spacing:13.680000px;}
.ls20{letter-spacing:15.840000px;}
.ls9{letter-spacing:28.200000px;}
.ls7{letter-spacing:28.224000px;}
.ls24{letter-spacing:28.800000px;}
.ls1c{letter-spacing:29.520000px;}
.lsb{letter-spacing:31.800000px;}
.ls8{letter-spacing:31.824000px;}
.lsc{letter-spacing:44.040000px;}
.ls13{letter-spacing:44.760000px;}
.ls14{letter-spacing:55.362720px;}
.ls4{letter-spacing:60.480000px;}
.lse{letter-spacing:64.200000px;}
.ls25{letter-spacing:113.760000px;}
.ls10{letter-spacing:197.976000px;}
.ls17{letter-spacing:201.036000px;}
.ls21{letter-spacing:287.280000px;}
.lsf{letter-spacing:1315.181280px;}
.ls3{letter-spacing:1328.861280px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.wsa{word-spacing:-59.760000px;}
.ws4{word-spacing:-18.720120px;}
.ws6{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.208000px;}
.wse{word-spacing:-17.064000px;}
.ws8{word-spacing:-15.840000px;}
.ws1{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.238600px;}
.ws9{word-spacing:-13.229520px;}
.wsd{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._21{margin-left:-18.547320px;}
._1f{margin-left:-17.229120px;}
._1a{margin-left:-16.098720px;}
._20{margin-left:-13.916640px;}
._18{margin-left:-12.852960px;}
._1b{margin-left:-9.895200px;}
._1e{margin-left:-8.286720px;}
._19{margin-left:-6.002400px;}
._1d{margin-left:-4.896960px;}
._17{margin-left:-3.564960px;}
._2e{margin-left:-2.346240px;}
._1{margin-left:-1.192320px;}
._0{width:1.438560px;}
._c{width:2.489760px;}
._b{width:3.745440px;}
._2a{width:4.768320px;}
._5{width:5.832000px;}
._d{width:6.952320px;}
._3{width:8.064000px;}
._4{width:9.144000px;}
._13{width:10.820640px;}
._6{width:12.096000px;}
._7{width:14.040000px;}
._1c{width:15.161760px;}
._22{width:16.272000px;}
._37{width:17.508960px;}
._8{width:19.368000px;}
._9{width:20.736000px;}
._a{width:21.889440px;}
._2{width:23.040000px;}
._11{width:24.736320px;}
._12{width:26.184000px;}
._29{width:27.432000px;}
._34{width:28.440000px;}
._23{width:29.448000px;}
._24{width:30.487200px;}
._27{width:31.680000px;}
._28{width:32.800800px;}
._2b{width:33.984000px;}
._33{width:35.136000px;}
._36{width:36.217440px;}
._2c{width:37.656000px;}
._2d{width:38.952000px;}
._35{width:40.968000px;}
._47{width:42.408000px;}
._2f{width:43.704000px;}
._31{width:44.826240px;}
._30{width:45.905760px;}
._4c{width:46.984320px;}
._25{width:49.608000px;}
._26{width:50.984640px;}
._14{width:59.544000px;}
._15{width:60.960000px;}
._46{width:63.736320px;}
._45{width:64.920000px;}
._54{width:68.296320px;}
._f{width:69.408000px;}
._10{width:70.672320px;}
._57{width:74.088000px;}
._4d{width:82.584000px;}
._58{width:85.464000px;}
._59{width:87.048000px;}
._5a{width:88.344000px;}
._5b{width:89.774880px;}
._55{width:109.560000px;}
._53{width:113.544000px;}
._40{width:120.096000px;}
._3f{width:121.872000px;}
._4e{width:130.032000px;}
._4f{width:131.905440px;}
._49{width:137.304000px;}
._48{width:138.312000px;}
._43{width:149.160000px;}
._44{width:150.576000px;}
._52{width:151.632000px;}
._41{width:160.848000px;}
._42{width:162.061440px;}
._56{width:163.533120px;}
._32{width:179.976000px;}
._3a{width:189.792000px;}
._3b{width:191.088000px;}
._e{width:197.976000px;}
._38{width:201.036000px;}
._50{width:223.272000px;}
._51{width:224.291520px;}
._3c{width:240.048000px;}
._3d{width:241.560000px;}
._4b{width:250.488000px;}
._3e{width:259.104000px;}
._4a{width:287.136000px;}
._16{width:294.384000px;}
._5c{width:325.152000px;}
._39{width:996.624000px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(17,85,204);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(60,64,67);}
.fc2{color:rgb(14,16,26);}
.fc1{color:transparent;}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:131.760000px;}
.fs1{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:13.305000px;}
.yf{bottom:13.320000px;}
.y1f{bottom:21.600000px;}
.yd{bottom:25.950000px;}
.yb{bottom:26.460000px;}
.y1b{bottom:42.285000px;}
.y8{bottom:47.700000px;}
.y3{bottom:57.456000px;}
.y1a{bottom:71.265000px;}
.y26{bottom:71.496000px;}
.y2{bottom:76.536000px;}
.ya{bottom:83.340000px;}
.y19{bottom:100.245000px;}
.y25{bottom:108.036000px;}
.yff{bottom:111.996000px;}
.y44{bottom:113.796000px;}
.y20d{bottom:125.496000px;}
.y9d{bottom:127.116000px;}
.y18{bottom:129.450000px;}
.y1e{bottom:133.776000px;}
.y232{bottom:135.756000px;}
.y12b{bottom:136.116000px;}
.y72{bottom:137.016000px;}
.y1e9{bottom:137.916000px;}
.yf5{bottom:138.996000px;}
.yf0{bottom:140.796000px;}
.yb8{bottom:141.336000px;}
.y5e{bottom:142.416000px;}
.yfe{bottom:143.136000px;}
.y24{bottom:144.210000px;}
.y43{bottom:144.396000px;}
.y81{bottom:144.756000px;}
.y7{bottom:151.245000px;}
.ybf{bottom:152.130000px;}
.y1ac{bottom:153.750000px;}
.y12a{bottom:153.930000px;}
.y17{bottom:158.430000px;}
.y1c2{bottom:161.310000px;}
.y15f{bottom:162.570000px;}
.y1fe{bottom:165.090000px;}
.y20c{bottom:165.630000px;}
.yeb{bottom:166.530000px;}
.y230{bottom:166.890000px;}
.y9c{bottom:167.070000px;}
.y13b{bottom:168.330000px;}
.y1e8{bottom:168.870000px;}
.yf4{bottom:170.130000px;}
.y1d0{bottom:170.490000px;}
.yef{bottom:171.750000px;}
.y173{bottom:172.830000px;}
.y5d{bottom:173.550000px;}
.y1d{bottom:173.910000px;}
.yfd{bottom:174.090000px;}
.y71{bottom:175.530000px;}
.y42{bottom:175.890000px;}
.y1ab{bottom:179.670000px;}
.y23{bottom:180.390000px;}
.yb7{bottom:181.290000px;}
.y1c1{bottom:182.370000px;}
.ybe{bottom:183.090000px;}
.y15e{bottom:183.810000px;}
.y224{bottom:184.890000px;}
.y16{bottom:187.410000px;}
.y11{bottom:190.665000px;}
.y80{bottom:193.890000px;}
.y1fd{bottom:196.230000px;}
.y199{bottom:197.490000px;}
.yea{bottom:197.670000px;}
.y22f{bottom:197.850000px;}
.y9b{bottom:198.210000px;}
.y13a{bottom:199.290000px;}
.yf3{bottom:201.090000px;}
.y1cf{bottom:201.630000px;}
.yee{bottom:202.890000px;}
.y172{bottom:203.790000px;}
.y5c{bottom:204.510000px;}
.yfc{bottom:205.230000px;}
.y1aa{bottom:205.590000px;}
.y41{bottom:206.850000px;}
.y188{bottom:207.210000px;}
.y1e7{bottom:209.010000px;}
.yb6{bottom:212.430000px;}
.ybd{bottom:214.230000px;}
.y70{bottom:215.850000px;}
.y15{bottom:216.390000px;}
.y22{bottom:216.750000px;}
.y21d{bottom:227.190000px;}
.y198{bottom:228.450000px;}
.ye9{bottom:228.630000px;}
.y9a{bottom:229.170000px;}
.y139{bottom:230.430000px;}
.y1a9{bottom:231.330000px;}
.yf2{bottom:232.230000px;}
.y1ce{bottom:232.590000px;}
.y187{bottom:233.130000px;}
.yed{bottom:233.850000px;}
.y155{bottom:234.570000px;}
.y171{bottom:234.930000px;}
.y5b{bottom:235.650000px;}
.y1fc{bottom:236.190000px;}
.y40{bottom:237.990000px;}
.y1e6{bottom:239.970000px;}
.y7f{bottom:242.850000px;}
.yb5{bottom:243.390000px;}
.yfb{bottom:245.190000px;}
.y14{bottom:245.370000px;}
.y20b{bottom:245.730000px;}
.y100{bottom:246.630000px;}
.y221{bottom:246.990000px;}
.yd7{bottom:252.390000px;}
.y21{bottom:252.930000px;}
.ybc{bottom:254.190000px;}
.y6{bottom:254.745000px;}
.y6f{bottom:255.990000px;}
.y1a8{bottom:257.250000px;}
.y21c{bottom:258.330000px;}
.y197{bottom:259.590000px;}
.ye8{bottom:259.770000px;}
.y99{bottom:260.310000px;}
.y186{bottom:261.210000px;}
.y1cd{bottom:263.730000px;}
.yf1{bottom:264.630000px;}
.yec{bottom:264.990000px;}
.y154{bottom:265.530000px;}
.y170{bottom:265.890000px;}
.y1fb{bottom:267.330000px;}
.y22e{bottom:268.950000px;}
.y138{bottom:270.390000px;}
.y1e5{bottom:271.110000px;}
.y7e{bottom:273.990000px;}
.y13{bottom:274.530000px;}
.y5a{bottom:275.610000px;}
.yfa{bottom:276.330000px;}
.y3f{bottom:277.950000px;}
.y1a7{bottom:283.170000px;}
.yb4{bottom:283.530000px;}
.ybb{bottom:285.330000px;}
.y20a{bottom:285.690000px;}
.y223{bottom:286.950000px;}
.y20{bottom:289.155000px;}
.y21b{bottom:289.290000px;}
.y196{bottom:290.550000px;}
.ye7{bottom:290.730000px;}
.y98{bottom:291.270000px;}
.y185{bottom:292.350000px;}
.y1cc{bottom:294.690000px;}
.y6e{bottom:295.950000px;}
.y153{bottom:296.670000px;}
.y16f{bottom:297.030000px;}
.y1fa{bottom:298.290000px;}
.y22d{bottom:300.090000px;}
.y137{bottom:301.530000px;}
.y1e4{bottom:302.070000px;}
.y12{bottom:303.510000px;}
.y7d{bottom:304.995000px;}
.y110{bottom:306.615000px;}
.y59{bottom:306.795000px;}
.yf9{bottom:307.335000px;}
.y3e{bottom:309.135000px;}
.yb3{bottom:314.535000px;}
.yba{bottom:316.335000px;}
.y222{bottom:318.135000px;}
.y21a{bottom:320.475000px;}
.y195{bottom:321.735000px;}
.ye6{bottom:323.175000px;}
.y184{bottom:323.355000px;}
.yd6{bottom:323.535000px;}
.y1cb{bottom:325.875000px;}
.y6d{bottom:327.135000px;}
.y152{bottom:327.675000px;}
.y16e{bottom:329.475000px;}
.y97{bottom:331.455000px;}
.y136{bottom:332.535000px;}
.y1e3{bottom:333.255000px;}
.y7c{bottom:336.135000px;}
.y58{bottom:336.315000px;}
.y10f{bottom:337.755000px;}
.y22c{bottom:340.095000px;}
.yb2{bottom:345.675000px;}
.y1a6{bottom:346.215000px;}
.yb9{bottom:348.735000px;}
.y220{bottom:349.095000px;}
.y194{bottom:352.695000px;}
.y16d{bottom:353.235000px;}
.y183{bottom:354.495000px;}
.yd5{bottom:354.675000px;}
.y1ca{bottom:356.835000px;}
.y3d{bottom:358.095000px;}
.y151{bottom:358.815000px;}
.y219{bottom:360.435000px;}
.ye5{bottom:363.675000px;}
.y1e2{bottom:364.215000px;}
.y209{bottom:365.835000px;}
.y57{bottom:366.195000px;}
.y7b{bottom:367.095000px;}
.y10e{bottom:368.715000px;}
.y1f9{bottom:369.435000px;}
.y22b{bottom:371.235000px;}
.y96{bottom:371.415000px;}
.y135{bottom:372.675000px;}
.y1a5{bottom:377.355000px;}
.yb1{bottom:378.075000px;}
.y21f{bottom:380.235000px;}
.y193{bottom:383.835000px;}
.y182{bottom:385.455000px;}
.y16c{bottom:385.995000px;}
.y1c9{bottom:387.975000px;}
.y3c{bottom:389.235000px;}
.y150{bottom:391.215000px;}
.y218{bottom:391.575000px;}
.yd4{bottom:394.635000px;}
.y56{bottom:397.335000px;}
.y7a{bottom:398.235000px;}
.y10d{bottom:399.855000px;}
.y1f8{bottom:400.575000px;}
.y22a{bottom:402.195000px;}
.y95{bottom:402.555000px;}
.y134{bottom:403.635000px;}
.y1e1{bottom:404.355000px;}
.y208{bottom:405.975000px;}
.y1a4{bottom:408.315000px;}
.y16b{bottom:409.935000px;}
.y21e{bottom:411.195000px;}
.y192{bottom:414.795000px;}
.y14f{bottom:414.975000px;}
.y181{bottom:416.595000px;}
.yb0{bottom:418.575000px;}
.y1c8{bottom:418.935000px;}
.y3b{bottom:420.195000px;}
.y11e{bottom:421.095000px;}
.y217{bottom:422.535000px;}
.yd3{bottom:425.775000px;}
.y79{bottom:429.195000px;}
.y10c{bottom:430.815000px;}
.y1f7{bottom:431.535000px;}
.y229{bottom:433.335000px;}
.y133{bottom:434.775000px;}
.y1e0{bottom:435.315000px;}
.y55{bottom:437.295000px;}
.y1a3{bottom:439.455000px;}
.y231{bottom:442.335000px;}
.y94{bottom:442.515000px;}
.y191{bottom:445.935000px;}
.y180{bottom:447.555000px;}
.y14e{bottom:447.915000px;}
.y129{bottom:448.275000px;}
.yaf{bottom:449.535000px;}
.y1c7{bottom:450.075000px;}
.y3a{bottom:451.335000px;}
.y11d{bottom:452.235000px;}
.yd2{bottom:456.735000px;}
.y6c{bottom:460.335000px;}
.y10b{bottom:461.955000px;}
.y216{bottom:462.675000px;}
.y132{bottom:465.735000px;}
.y1df{bottom:466.455000px;}
.y78{bottom:469.335000px;}
.y14d{bottom:471.675000px;}
.y228{bottom:473.295000px;}
.y93{bottom:473.655000px;}
.y16a{bottom:473.835000px;}
.y190{bottom:476.895000px;}
.y54{bottom:477.435000px;}
.y17f{bottom:478.515000px;}
.y128{bottom:479.415000px;}
.yae{bottom:480.675000px;}
.y39{bottom:482.295000px;}
.y11c{bottom:483.195000px;}
.y1c0{bottom:485.535000px;}
.ye4{bottom:487.875000px;}
.y1c6{bottom:490.035000px;}
.y15d{bottom:490.215000px;}
.y6b{bottom:491.295000px;}
.y10a{bottom:492.915000px;}
.y215{bottom:493.635000px;}
.y207{bottom:495.435000px;}
.yd1{bottom:496.875000px;}
.y1de{bottom:497.415000px;}
.y169{bottom:499.755000px;}
.y77{bottom:500.295000px;}
.y1f6{bottom:502.635000px;}
.y227{bottom:504.435000px;}
.y92{bottom:504.615000px;}
.y10{bottom:509.835000px;}
.y127{bottom:510.375000px;}
.y1a2{bottom:510.555000px;}
.y14c{bottom:511.995000px;}
.y18f{bottom:512.175000px;}
.y38{bottom:513.435000px;}
.y11b{bottom:514.335000px;}
.y1bf{bottom:516.495000px;}
.y53{bottom:517.395000px;}
.y17e{bottom:518.655000px;}
.ye3{bottom:518.835000px;}
.yad{bottom:520.635000px;}
.y15c{bottom:521.175000px;}
.y6a{bottom:522.435000px;}
.y214{bottom:524.775000px;}
.y168{bottom:525.675000px;}
.y206{bottom:526.395000px;}
.yd0{bottom:527.835000px;}
.y109{bottom:528.195000px;}
.y1dd{bottom:528.555000px;}
.y76{bottom:531.435000px;}
.y18e{bottom:533.415000px;}
.y1f5{bottom:533.775000px;}
.y226{bottom:535.395000px;}
.y131{bottom:536.835000px;}
.y91{bottom:537.015000px;}
.ye{bottom:538.815000px;}
.y126{bottom:541.515000px;}
.y14b{bottom:543.135000px;}
.y37{bottom:544.395000px;}
.y1c5{bottom:546.375000px;}
.y11a{bottom:546.735000px;}
.y1be{bottom:547.635000px;}
.y108{bottom:549.435000px;}
.ye2{bottom:549.975000px;}
.y17d{bottom:551.055000px;}
.y167{bottom:551.415000px;}
.yac{bottom:551.775000px;}
.y15b{bottom:552.315000px;}
.y69{bottom:553.395000px;}
.y52{bottom:557.535000px;}
.ycf{bottom:558.975000px;}
.y1dc{bottom:559.515000px;}
.y75{bottom:562.395000px;}
.y1f4{bottom:564.735000px;}
.y205{bottom:566.535000px;}
.yc{bottom:567.795000px;}
.y130{bottom:567.975000px;}
.y119{bottom:570.495000px;}
.y125{bottom:572.475000px;}
.y1a1{bottom:572.655000px;}
.y14a{bottom:574.095000px;}
.y17c{bottom:574.815000px;}
.y36{bottom:575.535000px;}
.y166{bottom:577.335000px;}
.y90{bottom:577.515000px;}
.y1bd{bottom:578.625000px;}
.ye1{bottom:580.965000px;}
.y1c4{bottom:582.045000px;}
.yab{bottom:582.765000px;}
.y15a{bottom:583.305000px;}
.y68{bottom:584.565000px;}
.y51{bottom:588.525000px;}
.yce{bottom:589.965000px;}
.y1db{bottom:590.685000px;}
.y74{bottom:593.565000px;}
.y1f3{bottom:595.905000px;}
.y204{bottom:597.525000px;}
.y12f{bottom:598.965000px;}
.y1c3{bottom:603.105000px;}
.y165{bottom:603.285000px;}
.y118{bottom:603.465000px;}
.y1a0{bottom:603.645000px;}
.y35{bottom:606.525000px;}
.y8f{bottom:608.505000px;}
.y1bc{bottom:611.025000px;}
.ye0{bottom:612.105000px;}
.yaa{bottom:613.905000px;}
.y149{bottom:614.265000px;}
.y17b{bottom:615.345000px;}
.y67{bottom:615.525000px;}
.y50{bottom:619.665000px;}
.y9{bottom:622.545000px;}
.y73{bottom:624.525000px;}
.y213{bottom:626.865000px;}
.y117{bottom:627.225000px;}
.y203{bottom:628.665000px;}
.y164{bottom:629.205000px;}
.ycd{bottom:630.105000px;}
.y1da{bottom:632.085000px;}
.y124{bottom:634.605000px;}
.y1bb{bottom:634.965000px;}
.y1f2{bottom:635.865000px;}
.y34{bottom:637.665000px;}
.y8e{bottom:641.085000px;}
.y148{bottom:645.225000px;}
.y159{bottom:645.405000px;}
.y17a{bottom:646.305000px;}
.yf8{bottom:646.665000px;}
.ydf{bottom:652.065000px;}
.ya9{bottom:653.865000px;}
.y163{bottom:654.945000px;}
.y66{bottom:655.665000px;}
.y212{bottom:658.005000px;}
.y4f{bottom:659.625000px;}
.ycc{bottom:661.065000px;}
.y123{bottom:665.565000px;}
.y19f{bottom:665.745000px;}
.y1f1{bottom:667.005000px;}
.y116{bottom:667.545000px;}
.y1ba{bottom:667.725000px;}
.y202{bottom:668.625000px;}
.y147{bottom:676.365000px;}
.y33{bottom:677.265000px;}
.y179{bottom:677.445000px;}
.yf7{bottom:677.625000px;}
.y1d9{bottom:679.245000px;}
.y8d{bottom:681.405000px;}
.yde{bottom:683.205000px;}
.ya8{bottom:685.005000px;}
.y65{bottom:686.625000px;}
.y1b9{bottom:691.485000px;}
.ycb{bottom:692.205000px;}
.y122{bottom:696.705000px;}
.y1f0{bottom:697.965000px;}
.y115{bottom:698.685000px;}
.y4e{bottom:699.765000px;}
.y1d8{bottom:705.165000px;}
.y19e{bottom:705.705000px;}
.y146{bottom:707.325000px;}
.y158{bottom:707.505000px;}
.y178{bottom:708.405000px;}
.y225{bottom:708.765000px;}
.y8c{bottom:712.365000px;}
.ydd{bottom:714.165000px;}
.ya7{bottom:715.965000px;}
.y64{bottom:717.765000px;}
.yca{bottom:723.165000px;}
.y32{bottom:726.765000px;}
.y121{bottom:727.665000px;}
.y1ef{bottom:728.925000px;}
.y4d{bottom:730.725000px;}
.y1d7{bottom:730.905000px;}
.y114{bottom:731.085000px;}
.y1b8{bottom:731.805000px;}
.y5{bottom:736.485000px;}
.y19d{bottom:738.285000px;}
.y145{bottom:738.465000px;}
.y177{bottom:739.545000px;}
.y201{bottom:739.725000px;}
.ydc{bottom:745.305000px;}
.ya6{bottom:746.925000px;}
.y63{bottom:748.725000px;}
.y8b{bottom:752.505000px;}
.yc9{bottom:754.305000px;}
.y113{bottom:754.845000px;}
.y1d6{bottom:756.825000px;}
.y31{bottom:757.725000px;}
.y1ee{bottom:760.065000px;}
.y4c{bottom:761.865000px;}
.y19c{bottom:762.045000px;}
.y120{bottom:762.945000px;}
.y144{bottom:769.425000px;}
.y176{bottom:770.505000px;}
.y200{bottom:770.865000px;}
.y157{bottom:773.745000px;}
.ydb{bottom:776.265000px;}
.ya5{bottom:778.065000px;}
.y62{bottom:779.865000px;}
.y1d5{bottom:782.745000px;}
.y8a{bottom:783.465000px;}
.y11f{bottom:784.185000px;}
.y12e{bottom:785.265000px;}
.y30{bottom:788.865000px;}
.y112{bottom:790.485000px;}
.y1ed{bottom:791.025000px;}
.y4b{bottom:792.825000px;}
.y1b7{bottom:793.905000px;}
.yc8{bottom:794.265000px;}
.y156{bottom:794.985000px;}
.y19b{bottom:797.685000px;}
.y143{bottom:800.565000px;}
.y1ff{bottom:801.825000px;}
.y175{bottom:805.785000px;}
.yda{bottom:807.405000px;}
.y61{bottom:810.825000px;}
.y111{bottom:811.725000px;}
.y89{bottom:814.605000px;}
.y12d{bottom:816.405000px;}
.ya4{bottom:818.025000px;}
.y19a{bottom:818.745000px;}
.y2f{bottom:819.825000px;}
.y4a{bottom:823.965000px;}
.y1b6{bottom:825.045000px;}
.yc7{bottom:825.405000px;}
.y174{bottom:827.025000px;}
.y1ec{bottom:831.165000px;}
.y142{bottom:831.525000px;}
.yd9{bottom:839.805000px;}
.yf6{bottom:841.965000px;}
.y88{bottom:845.565000px;}
.y12c{bottom:847.365000px;}
.ya3{bottom:849.165000px;}
.y2e{bottom:850.965000px;}
.y49{bottom:854.970000px;}
.y1b5{bottom:856.050000px;}
.yc6{bottom:856.410000px;}
.y1eb{bottom:862.170000px;}
.y141{bottom:862.710000px;}
.y107{bottom:863.610000px;}
.y18d{bottom:870.990000px;}
.yd8{bottom:872.610000px;}
.y1d4{bottom:872.970000px;}
.y87{bottom:876.750000px;}
.ya2{bottom:881.610000px;}
.y2d{bottom:881.970000px;}
.y48{bottom:886.110000px;}
.y1b4{bottom:887.190000px;}
.yc5{bottom:887.550000px;}
.y211{bottom:893.310000px;}
.y140{bottom:893.670000px;}
.y106{bottom:894.750000px;}
.y18c{bottom:901.950000px;}
.y1ea{bottom:903.750000px;}
.y1d3{bottom:904.110000px;}
.y86{bottom:907.710000px;}
.y2c{bottom:913.110000px;}
.y47{bottom:917.070000px;}
.y162{bottom:918.510000px;}
.ya1{bottom:922.110000px;}
.y1b3{bottom:924.990000px;}
.y105{bottom:925.710000px;}
.yc4{bottom:927.510000px;}
.y13f{bottom:931.470000px;}
.y18b{bottom:933.090000px;}
.y210{bottom:933.270000px;}
.y1d2{bottom:935.070000px;}
.y85{bottom:938.850000px;}
.y2b{bottom:944.070000px;}
.y161{bottom:949.650000px;}
.y1b2{bottom:950.730000px;}
.ya0{bottom:953.070000px;}
.y104{bottom:956.850000px;}
.y46{bottom:957.210000px;}
.y13e{bottom:957.390000px;}
.yc3{bottom:958.650000px;}
.y18a{bottom:964.050000px;}
.y20f{bottom:964.410000px;}
.y1d1{bottom:966.210000px;}
.y84{bottom:969.810000px;}
.y2a{bottom:975.210000px;}
.y1b1{bottom:976.650000px;}
.y160{bottom:980.610000px;}
.y13d{bottom:983.130000px;}
.y9f{bottom:984.210000px;}
.y103{bottom:987.810000px;}
.yc2{bottom:989.610000px;}
.y20e{bottom:995.370000px;}
.y189{bottom:996.450000px;}
.y45{bottom:997.170000px;}
.y83{bottom:1002.390000px;}
.y1b0{bottom:1002.570000px;}
.y29{bottom:1006.170000px;}
.y13c{bottom:1009.050000px;}
.y9e{bottom:1015.170000px;}
.y102{bottom:1020.390000px;}
.yc1{bottom:1020.750000px;}
.y1af{bottom:1028.490000px;}
.y82{bottom:1035.150000px;}
.y28{bottom:1037.310000px;}
.y101{bottom:1044.150000px;}
.y60{bottom:1046.310000px;}
.yc0{bottom:1053.150000px;}
.y1ae{bottom:1054.230000px;}
.y4{bottom:1060.170000px;}
.y27{bottom:1076.910000px;}
.y5f{bottom:1077.270000px;}
.y1ad{bottom:1080.150000px;}
.y1{bottom:1193.220000px;}
.h9{height:28.965000px;}
.h17{height:47.321367px;}
.h19{height:49.255313px;}
.h7{height:54.030000px;}
.ha{height:55.825312px;}
.h18{height:58.621992px;}
.h16{height:62.327813px;}
.h1a{height:63.949219px;}
.h11{height:64.546875px;}
.h8{height:66.757500px;}
.h12{height:68.956875px;}
.h2{height:69.086250px;}
.h15{height:70.628906px;}
.h10{height:70.664062px;}
.h13{height:71.824219px;}
.hc{height:72.562500px;}
.h14{height:75.093750px;}
.he{height:82.676953px;}
.hf{height:87.859687px;}
.h5{height:113.940000px;}
.h6{height:129.315234px;}
.h4{height:235.194258px;}
.hd{height:308.218500px;}
.h3{height:310.530000px;}
.hb{height:319.155000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:548.205000px;}
.w2{width:693.450000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.629500px;}
.x3{left:25.729500px;}
.x5{left:67.483500px;}
.x2{left:97.786500px;}
.x1{left:106.416000px;}
.x12{left:122.976000px;}
.x16{left:133.416000px;}
.x13{left:139.356000px;}
.x11{left:160.410000px;}
.x4{left:169.183500px;}
.x15{left:187.410000px;}
.x26{left:195.690000px;}
.x6{left:204.148500px;}
.xf{left:207.210000px;}
.x14{left:214.410000px;}
.x1e{left:216.390000px;}
.x29{left:219.450000px;}
.x24{left:223.050000px;}
.x21{left:233.670000px;}
.x27{left:243.750000px;}
.xe{left:252.210000px;}
.x1c{left:258.870000px;}
.x1a{left:264.810000px;}
.x8{left:268.588500px;}
.x7{left:277.948500px;}
.x18{left:289.875000px;}
.x9{left:304.768500px;}
.x10{left:315.210000px;}
.xb{left:330.015000px;}
.xd{left:333.390000px;}
.xc{left:347.475000px;}
.x1f{left:672.585000px;}
.x22{left:674.070000px;}
.x25{left:680.910000px;}
.x19{left:682.530000px;}
.x1d{left:684.330000px;}
.x23{left:685.950000px;}
.x20{left:687.030000px;}
.x17{left:692.070000px;}
.x28{left:696.570000px;}
.x1b{left:722.670000px;}
@media print{
.v1{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.920000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.704000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.512000pt;}
.ls1{letter-spacing:-0.297067pt;}
.ls11{letter-spacing:-0.161067pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.128640pt;}
.ls19{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.271467pt;}
.lsa{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:2.720000pt;}
.ls27{letter-spacing:7.680000pt;}
.ls26{letter-spacing:8.320000pt;}
.ls23{letter-spacing:12.160000pt;}
.ls20{letter-spacing:14.080000pt;}
.ls9{letter-spacing:25.066667pt;}
.ls7{letter-spacing:25.088000pt;}
.ls24{letter-spacing:25.600000pt;}
.ls1c{letter-spacing:26.240000pt;}
.lsb{letter-spacing:28.266667pt;}
.ls8{letter-spacing:28.288000pt;}
.lsc{letter-spacing:39.146667pt;}
.ls13{letter-spacing:39.786667pt;}
.ls14{letter-spacing:49.211307pt;}
.ls4{letter-spacing:53.760000pt;}
.lse{letter-spacing:57.066667pt;}
.ls25{letter-spacing:101.120000pt;}
.ls10{letter-spacing:175.978667pt;}
.ls17{letter-spacing:178.698667pt;}
.ls21{letter-spacing:255.360000pt;}
.lsf{letter-spacing:1169.050027pt;}
.ls3{letter-spacing:1181.210027pt;}
.wsb{word-spacing:-64.000000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws4{word-spacing:-16.640107pt;}
.ws6{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.296000pt;}
.wse{word-spacing:-15.168000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws1{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.656533pt;}
.ws9{word-spacing:-11.759573pt;}
.wsd{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._21{margin-left:-16.486507pt;}
._1f{margin-left:-15.314773pt;}
._1a{margin-left:-14.309973pt;}
._20{margin-left:-12.370347pt;}
._18{margin-left:-11.424853pt;}
._1b{margin-left:-8.795733pt;}
._1e{margin-left:-7.365973pt;}
._19{margin-left:-5.335467pt;}
._1d{margin-left:-4.352853pt;}
._17{margin-left:-3.168853pt;}
._2e{margin-left:-2.085547pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.278720pt;}
._c{width:2.213120pt;}
._b{width:3.329280pt;}
._2a{width:4.238507pt;}
._5{width:5.184000pt;}
._d{width:6.179840pt;}
._3{width:7.168000pt;}
._4{width:8.128000pt;}
._13{width:9.618347pt;}
._6{width:10.752000pt;}
._7{width:12.480000pt;}
._1c{width:13.477120pt;}
._22{width:14.464000pt;}
._37{width:15.563520pt;}
._8{width:17.216000pt;}
._9{width:18.432000pt;}
._a{width:19.457280pt;}
._2{width:20.480000pt;}
._11{width:21.987840pt;}
._12{width:23.274667pt;}
._29{width:24.384000pt;}
._34{width:25.280000pt;}
._23{width:26.176000pt;}
._24{width:27.099733pt;}
._27{width:28.160000pt;}
._28{width:29.156267pt;}
._2b{width:30.208000pt;}
._33{width:31.232000pt;}
._36{width:32.193280pt;}
._2c{width:33.472000pt;}
._2d{width:34.624000pt;}
._35{width:36.416000pt;}
._47{width:37.696000pt;}
._2f{width:38.848000pt;}
._31{width:39.845547pt;}
._30{width:40.805120pt;}
._4c{width:41.763840pt;}
._25{width:44.096000pt;}
._26{width:45.319680pt;}
._14{width:52.928000pt;}
._15{width:54.186667pt;}
._46{width:56.654507pt;}
._45{width:57.706667pt;}
._54{width:60.707840pt;}
._f{width:61.696000pt;}
._10{width:62.819840pt;}
._57{width:65.856000pt;}
._4d{width:73.408000pt;}
._58{width:75.968000pt;}
._59{width:77.376000pt;}
._5a{width:78.528000pt;}
._5b{width:79.799893pt;}
._55{width:97.386667pt;}
._53{width:100.928000pt;}
._40{width:106.752000pt;}
._3f{width:108.330667pt;}
._4e{width:115.584000pt;}
._4f{width:117.249280pt;}
._49{width:122.048000pt;}
._48{width:122.944000pt;}
._43{width:132.586667pt;}
._44{width:133.845333pt;}
._52{width:134.784000pt;}
._41{width:142.976000pt;}
._42{width:144.054613pt;}
._56{width:145.362773pt;}
._32{width:159.978667pt;}
._3a{width:168.704000pt;}
._3b{width:169.856000pt;}
._e{width:175.978667pt;}
._38{width:178.698667pt;}
._50{width:198.464000pt;}
._51{width:199.370240pt;}
._3c{width:213.376000pt;}
._3d{width:214.720000pt;}
._4b{width:222.656000pt;}
._3e{width:230.314667pt;}
._4a{width:255.232000pt;}
._16{width:261.674667pt;}
._5c{width:289.024000pt;}
._39{width:885.888000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:117.120000pt;}
.fs1{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:11.826667pt;}
.yf{bottom:11.840000pt;}
.y1f{bottom:19.200000pt;}
.yd{bottom:23.066667pt;}
.yb{bottom:23.520000pt;}
.y1b{bottom:37.586667pt;}
.y8{bottom:42.400000pt;}
.y3{bottom:51.072000pt;}
.y1a{bottom:63.346667pt;}
.y26{bottom:63.552000pt;}
.y2{bottom:68.032000pt;}
.ya{bottom:74.080000pt;}
.y19{bottom:89.106667pt;}
.y25{bottom:96.032000pt;}
.yff{bottom:99.552000pt;}
.y44{bottom:101.152000pt;}
.y20d{bottom:111.552000pt;}
.y9d{bottom:112.992000pt;}
.y18{bottom:115.066667pt;}
.y1e{bottom:118.912000pt;}
.y232{bottom:120.672000pt;}
.y12b{bottom:120.992000pt;}
.y72{bottom:121.792000pt;}
.y1e9{bottom:122.592000pt;}
.yf5{bottom:123.552000pt;}
.yf0{bottom:125.152000pt;}
.yb8{bottom:125.632000pt;}
.y5e{bottom:126.592000pt;}
.yfe{bottom:127.232000pt;}
.y24{bottom:128.186667pt;}
.y43{bottom:128.352000pt;}
.y81{bottom:128.672000pt;}
.y7{bottom:134.440000pt;}
.ybf{bottom:135.226667pt;}
.y1ac{bottom:136.666667pt;}
.y12a{bottom:136.826667pt;}
.y17{bottom:140.826667pt;}
.y1c2{bottom:143.386667pt;}
.y15f{bottom:144.506667pt;}
.y1fe{bottom:146.746667pt;}
.y20c{bottom:147.226667pt;}
.yeb{bottom:148.026667pt;}
.y230{bottom:148.346667pt;}
.y9c{bottom:148.506667pt;}
.y13b{bottom:149.626667pt;}
.y1e8{bottom:150.106667pt;}
.yf4{bottom:151.226667pt;}
.y1d0{bottom:151.546667pt;}
.yef{bottom:152.666667pt;}
.y173{bottom:153.626667pt;}
.y5d{bottom:154.266667pt;}
.y1d{bottom:154.586667pt;}
.yfd{bottom:154.746667pt;}
.y71{bottom:156.026667pt;}
.y42{bottom:156.346667pt;}
.y1ab{bottom:159.706667pt;}
.y23{bottom:160.346667pt;}
.yb7{bottom:161.146667pt;}
.y1c1{bottom:162.106667pt;}
.ybe{bottom:162.746667pt;}
.y15e{bottom:163.386667pt;}
.y224{bottom:164.346667pt;}
.y16{bottom:166.586667pt;}
.y11{bottom:169.480000pt;}
.y80{bottom:172.346667pt;}
.y1fd{bottom:174.426667pt;}
.y199{bottom:175.546667pt;}
.yea{bottom:175.706667pt;}
.y22f{bottom:175.866667pt;}
.y9b{bottom:176.186667pt;}
.y13a{bottom:177.146667pt;}
.yf3{bottom:178.746667pt;}
.y1cf{bottom:179.226667pt;}
.yee{bottom:180.346667pt;}
.y172{bottom:181.146667pt;}
.y5c{bottom:181.786667pt;}
.yfc{bottom:182.426667pt;}
.y1aa{bottom:182.746667pt;}
.y41{bottom:183.866667pt;}
.y188{bottom:184.186667pt;}
.y1e7{bottom:185.786667pt;}
.yb6{bottom:188.826667pt;}
.ybd{bottom:190.426667pt;}
.y70{bottom:191.866667pt;}
.y15{bottom:192.346667pt;}
.y22{bottom:192.666667pt;}
.y21d{bottom:201.946667pt;}
.y198{bottom:203.066667pt;}
.ye9{bottom:203.226667pt;}
.y9a{bottom:203.706667pt;}
.y139{bottom:204.826667pt;}
.y1a9{bottom:205.626667pt;}
.yf2{bottom:206.426667pt;}
.y1ce{bottom:206.746667pt;}
.y187{bottom:207.226667pt;}
.yed{bottom:207.866667pt;}
.y155{bottom:208.506667pt;}
.y171{bottom:208.826667pt;}
.y5b{bottom:209.466667pt;}
.y1fc{bottom:209.946667pt;}
.y40{bottom:211.546667pt;}
.y1e6{bottom:213.306667pt;}
.y7f{bottom:215.866667pt;}
.yb5{bottom:216.346667pt;}
.yfb{bottom:217.946667pt;}
.y14{bottom:218.106667pt;}
.y20b{bottom:218.426667pt;}
.y100{bottom:219.226667pt;}
.y221{bottom:219.546667pt;}
.yd7{bottom:224.346667pt;}
.y21{bottom:224.826667pt;}
.ybc{bottom:225.946667pt;}
.y6{bottom:226.440000pt;}
.y6f{bottom:227.546667pt;}
.y1a8{bottom:228.666667pt;}
.y21c{bottom:229.626667pt;}
.y197{bottom:230.746667pt;}
.ye8{bottom:230.906667pt;}
.y99{bottom:231.386667pt;}
.y186{bottom:232.186667pt;}
.y1cd{bottom:234.426667pt;}
.yf1{bottom:235.226667pt;}
.yec{bottom:235.546667pt;}
.y154{bottom:236.026667pt;}
.y170{bottom:236.346667pt;}
.y1fb{bottom:237.626667pt;}
.y22e{bottom:239.066667pt;}
.y138{bottom:240.346667pt;}
.y1e5{bottom:240.986667pt;}
.y7e{bottom:243.546667pt;}
.y13{bottom:244.026667pt;}
.y5a{bottom:244.986667pt;}
.yfa{bottom:245.626667pt;}
.y3f{bottom:247.066667pt;}
.y1a7{bottom:251.706667pt;}
.yb4{bottom:252.026667pt;}
.ybb{bottom:253.626667pt;}
.y20a{bottom:253.946667pt;}
.y223{bottom:255.066667pt;}
.y20{bottom:257.026667pt;}
.y21b{bottom:257.146667pt;}
.y196{bottom:258.266667pt;}
.ye7{bottom:258.426667pt;}
.y98{bottom:258.906667pt;}
.y185{bottom:259.866667pt;}
.y1cc{bottom:261.946667pt;}
.y6e{bottom:263.066667pt;}
.y153{bottom:263.706667pt;}
.y16f{bottom:264.026667pt;}
.y1fa{bottom:265.146667pt;}
.y22d{bottom:266.746667pt;}
.y137{bottom:268.026667pt;}
.y1e4{bottom:268.506667pt;}
.y12{bottom:269.786667pt;}
.y7d{bottom:271.106667pt;}
.y110{bottom:272.546667pt;}
.y59{bottom:272.706667pt;}
.yf9{bottom:273.186667pt;}
.y3e{bottom:274.786667pt;}
.yb3{bottom:279.586667pt;}
.yba{bottom:281.186667pt;}
.y222{bottom:282.786667pt;}
.y21a{bottom:284.866667pt;}
.y195{bottom:285.986667pt;}
.ye6{bottom:287.266667pt;}
.y184{bottom:287.426667pt;}
.yd6{bottom:287.586667pt;}
.y1cb{bottom:289.666667pt;}
.y6d{bottom:290.786667pt;}
.y152{bottom:291.266667pt;}
.y16e{bottom:292.866667pt;}
.y97{bottom:294.626667pt;}
.y136{bottom:295.586667pt;}
.y1e3{bottom:296.226667pt;}
.y7c{bottom:298.786667pt;}
.y58{bottom:298.946667pt;}
.y10f{bottom:300.226667pt;}
.y22c{bottom:302.306667pt;}
.yb2{bottom:307.266667pt;}
.y1a6{bottom:307.746667pt;}
.yb9{bottom:309.986667pt;}
.y220{bottom:310.306667pt;}
.y194{bottom:313.506667pt;}
.y16d{bottom:313.986667pt;}
.y183{bottom:315.106667pt;}
.yd5{bottom:315.266667pt;}
.y1ca{bottom:317.186667pt;}
.y3d{bottom:318.306667pt;}
.y151{bottom:318.946667pt;}
.y219{bottom:320.386667pt;}
.ye5{bottom:323.266667pt;}
.y1e2{bottom:323.746667pt;}
.y209{bottom:325.186667pt;}
.y57{bottom:325.506667pt;}
.y7b{bottom:326.306667pt;}
.y10e{bottom:327.746667pt;}
.y1f9{bottom:328.386667pt;}
.y22b{bottom:329.986667pt;}
.y96{bottom:330.146667pt;}
.y135{bottom:331.266667pt;}
.y1a5{bottom:335.426667pt;}
.yb1{bottom:336.066667pt;}
.y21f{bottom:337.986667pt;}
.y193{bottom:341.186667pt;}
.y182{bottom:342.626667pt;}
.y16c{bottom:343.106667pt;}
.y1c9{bottom:344.866667pt;}
.y3c{bottom:345.986667pt;}
.y150{bottom:347.746667pt;}
.y218{bottom:348.066667pt;}
.yd4{bottom:350.786667pt;}
.y56{bottom:353.186667pt;}
.y7a{bottom:353.986667pt;}
.y10d{bottom:355.426667pt;}
.y1f8{bottom:356.066667pt;}
.y22a{bottom:357.506667pt;}
.y95{bottom:357.826667pt;}
.y134{bottom:358.786667pt;}
.y1e1{bottom:359.426667pt;}
.y208{bottom:360.866667pt;}
.y1a4{bottom:362.946667pt;}
.y16b{bottom:364.386667pt;}
.y21e{bottom:365.506667pt;}
.y192{bottom:368.706667pt;}
.y14f{bottom:368.866667pt;}
.y181{bottom:370.306667pt;}
.yb0{bottom:372.066667pt;}
.y1c8{bottom:372.386667pt;}
.y3b{bottom:373.506667pt;}
.y11e{bottom:374.306667pt;}
.y217{bottom:375.586667pt;}
.yd3{bottom:378.466667pt;}
.y79{bottom:381.506667pt;}
.y10c{bottom:382.946667pt;}
.y1f7{bottom:383.586667pt;}
.y229{bottom:385.186667pt;}
.y133{bottom:386.466667pt;}
.y1e0{bottom:386.946667pt;}
.y55{bottom:388.706667pt;}
.y1a3{bottom:390.626667pt;}
.y231{bottom:393.186667pt;}
.y94{bottom:393.346667pt;}
.y191{bottom:396.386667pt;}
.y180{bottom:397.826667pt;}
.y14e{bottom:398.146667pt;}
.y129{bottom:398.466667pt;}
.yaf{bottom:399.586667pt;}
.y1c7{bottom:400.066667pt;}
.y3a{bottom:401.186667pt;}
.y11d{bottom:401.986667pt;}
.yd2{bottom:405.986667pt;}
.y6c{bottom:409.186667pt;}
.y10b{bottom:410.626667pt;}
.y216{bottom:411.266667pt;}
.y132{bottom:413.986667pt;}
.y1df{bottom:414.626667pt;}
.y78{bottom:417.186667pt;}
.y14d{bottom:419.266667pt;}
.y228{bottom:420.706667pt;}
.y93{bottom:421.026667pt;}
.y16a{bottom:421.186667pt;}
.y190{bottom:423.906667pt;}
.y54{bottom:424.386667pt;}
.y17f{bottom:425.346667pt;}
.y128{bottom:426.146667pt;}
.yae{bottom:427.266667pt;}
.y39{bottom:428.706667pt;}
.y11c{bottom:429.506667pt;}
.y1c0{bottom:431.586667pt;}
.ye4{bottom:433.666667pt;}
.y1c6{bottom:435.586667pt;}
.y15d{bottom:435.746667pt;}
.y6b{bottom:436.706667pt;}
.y10a{bottom:438.146667pt;}
.y215{bottom:438.786667pt;}
.y207{bottom:440.386667pt;}
.yd1{bottom:441.666667pt;}
.y1de{bottom:442.146667pt;}
.y169{bottom:444.226667pt;}
.y77{bottom:444.706667pt;}
.y1f6{bottom:446.786667pt;}
.y227{bottom:448.386667pt;}
.y92{bottom:448.546667pt;}
.y10{bottom:453.186667pt;}
.y127{bottom:453.666667pt;}
.y1a2{bottom:453.826667pt;}
.y14c{bottom:455.106667pt;}
.y18f{bottom:455.266667pt;}
.y38{bottom:456.386667pt;}
.y11b{bottom:457.186667pt;}
.y1bf{bottom:459.106667pt;}
.y53{bottom:459.906667pt;}
.y17e{bottom:461.026667pt;}
.ye3{bottom:461.186667pt;}
.yad{bottom:462.786667pt;}
.y15c{bottom:463.266667pt;}
.y6a{bottom:464.386667pt;}
.y214{bottom:466.466667pt;}
.y168{bottom:467.266667pt;}
.y206{bottom:467.906667pt;}
.yd0{bottom:469.186667pt;}
.y109{bottom:469.506667pt;}
.y1dd{bottom:469.826667pt;}
.y76{bottom:472.386667pt;}
.y18e{bottom:474.146667pt;}
.y1f5{bottom:474.466667pt;}
.y226{bottom:475.906667pt;}
.y131{bottom:477.186667pt;}
.y91{bottom:477.346667pt;}
.ye{bottom:478.946667pt;}
.y126{bottom:481.346667pt;}
.y14b{bottom:482.786667pt;}
.y37{bottom:483.906667pt;}
.y1c5{bottom:485.666667pt;}
.y11a{bottom:485.986667pt;}
.y1be{bottom:486.786667pt;}
.y108{bottom:488.386667pt;}
.ye2{bottom:488.866667pt;}
.y17d{bottom:489.826667pt;}
.y167{bottom:490.146667pt;}
.yac{bottom:490.466667pt;}
.y15b{bottom:490.946667pt;}
.y69{bottom:491.906667pt;}
.y52{bottom:495.586667pt;}
.ycf{bottom:496.866667pt;}
.y1dc{bottom:497.346667pt;}
.y75{bottom:499.906667pt;}
.y1f4{bottom:501.986667pt;}
.y205{bottom:503.586667pt;}
.yc{bottom:504.706667pt;}
.y130{bottom:504.866667pt;}
.y119{bottom:507.106667pt;}
.y125{bottom:508.866667pt;}
.y1a1{bottom:509.026667pt;}
.y14a{bottom:510.306667pt;}
.y17c{bottom:510.946667pt;}
.y36{bottom:511.586667pt;}
.y166{bottom:513.186667pt;}
.y90{bottom:513.346667pt;}
.y1bd{bottom:514.333333pt;}
.ye1{bottom:516.413333pt;}
.y1c4{bottom:517.373333pt;}
.yab{bottom:518.013333pt;}
.y15a{bottom:518.493333pt;}
.y68{bottom:519.613333pt;}
.y51{bottom:523.133333pt;}
.yce{bottom:524.413333pt;}
.y1db{bottom:525.053333pt;}
.y74{bottom:527.613333pt;}
.y1f3{bottom:529.693333pt;}
.y204{bottom:531.133333pt;}
.y12f{bottom:532.413333pt;}
.y1c3{bottom:536.093333pt;}
.y165{bottom:536.253333pt;}
.y118{bottom:536.413333pt;}
.y1a0{bottom:536.573333pt;}
.y35{bottom:539.133333pt;}
.y8f{bottom:540.893333pt;}
.y1bc{bottom:543.133333pt;}
.ye0{bottom:544.093333pt;}
.yaa{bottom:545.693333pt;}
.y149{bottom:546.013333pt;}
.y17b{bottom:546.973333pt;}
.y67{bottom:547.133333pt;}
.y50{bottom:550.813333pt;}
.y9{bottom:553.373333pt;}
.y73{bottom:555.133333pt;}
.y213{bottom:557.213333pt;}
.y117{bottom:557.533333pt;}
.y203{bottom:558.813333pt;}
.y164{bottom:559.293333pt;}
.ycd{bottom:560.093333pt;}
.y1da{bottom:561.853333pt;}
.y124{bottom:564.093333pt;}
.y1bb{bottom:564.413333pt;}
.y1f2{bottom:565.213333pt;}
.y34{bottom:566.813333pt;}
.y8e{bottom:569.853333pt;}
.y148{bottom:573.533333pt;}
.y159{bottom:573.693333pt;}
.y17a{bottom:574.493333pt;}
.yf8{bottom:574.813333pt;}
.ydf{bottom:579.613333pt;}
.ya9{bottom:581.213333pt;}
.y163{bottom:582.173333pt;}
.y66{bottom:582.813333pt;}
.y212{bottom:584.893333pt;}
.y4f{bottom:586.333333pt;}
.ycc{bottom:587.613333pt;}
.y123{bottom:591.613333pt;}
.y19f{bottom:591.773333pt;}
.y1f1{bottom:592.893333pt;}
.y116{bottom:593.373333pt;}
.y1ba{bottom:593.533333pt;}
.y202{bottom:594.333333pt;}
.y147{bottom:601.213333pt;}
.y33{bottom:602.013333pt;}
.y179{bottom:602.173333pt;}
.yf7{bottom:602.333333pt;}
.y1d9{bottom:603.773333pt;}
.y8d{bottom:605.693333pt;}
.yde{bottom:607.293333pt;}
.ya8{bottom:608.893333pt;}
.y65{bottom:610.333333pt;}
.y1b9{bottom:614.653333pt;}
.ycb{bottom:615.293333pt;}
.y122{bottom:619.293333pt;}
.y1f0{bottom:620.413333pt;}
.y115{bottom:621.053333pt;}
.y4e{bottom:622.013333pt;}
.y1d8{bottom:626.813333pt;}
.y19e{bottom:627.293333pt;}
.y146{bottom:628.733333pt;}
.y158{bottom:628.893333pt;}
.y178{bottom:629.693333pt;}
.y225{bottom:630.013333pt;}
.y8c{bottom:633.213333pt;}
.ydd{bottom:634.813333pt;}
.ya7{bottom:636.413333pt;}
.y64{bottom:638.013333pt;}
.yca{bottom:642.813333pt;}
.y32{bottom:646.013333pt;}
.y121{bottom:646.813333pt;}
.y1ef{bottom:647.933333pt;}
.y4d{bottom:649.533333pt;}
.y1d7{bottom:649.693333pt;}
.y114{bottom:649.853333pt;}
.y1b8{bottom:650.493333pt;}
.y5{bottom:654.653333pt;}
.y19d{bottom:656.253333pt;}
.y145{bottom:656.413333pt;}
.y177{bottom:657.373333pt;}
.y201{bottom:657.533333pt;}
.ydc{bottom:662.493333pt;}
.ya6{bottom:663.933333pt;}
.y63{bottom:665.533333pt;}
.y8b{bottom:668.893333pt;}
.yc9{bottom:670.493333pt;}
.y113{bottom:670.973333pt;}
.y1d6{bottom:672.733333pt;}
.y31{bottom:673.533333pt;}
.y1ee{bottom:675.613333pt;}
.y4c{bottom:677.213333pt;}
.y19c{bottom:677.373333pt;}
.y120{bottom:678.173333pt;}
.y144{bottom:683.933333pt;}
.y176{bottom:684.893333pt;}
.y200{bottom:685.213333pt;}
.y157{bottom:687.773333pt;}
.ydb{bottom:690.013333pt;}
.ya5{bottom:691.613333pt;}
.y62{bottom:693.213333pt;}
.y1d5{bottom:695.773333pt;}
.y8a{bottom:696.413333pt;}
.y11f{bottom:697.053333pt;}
.y12e{bottom:698.013333pt;}
.y30{bottom:701.213333pt;}
.y112{bottom:702.653333pt;}
.y1ed{bottom:703.133333pt;}
.y4b{bottom:704.733333pt;}
.y1b7{bottom:705.693333pt;}
.yc8{bottom:706.013333pt;}
.y156{bottom:706.653333pt;}
.y19b{bottom:709.053333pt;}
.y143{bottom:711.613333pt;}
.y1ff{bottom:712.733333pt;}
.y175{bottom:716.253333pt;}
.yda{bottom:717.693333pt;}
.y61{bottom:720.733333pt;}
.y111{bottom:721.533333pt;}
.y89{bottom:724.093333pt;}
.y12d{bottom:725.693333pt;}
.ya4{bottom:727.133333pt;}
.y19a{bottom:727.773333pt;}
.y2f{bottom:728.733333pt;}
.y4a{bottom:732.413333pt;}
.y1b6{bottom:733.373333pt;}
.yc7{bottom:733.693333pt;}
.y174{bottom:735.133333pt;}
.y1ec{bottom:738.813333pt;}
.y142{bottom:739.133333pt;}
.yd9{bottom:746.493333pt;}
.yf6{bottom:748.413333pt;}
.y88{bottom:751.613333pt;}
.y12c{bottom:753.213333pt;}
.ya3{bottom:754.813333pt;}
.y2e{bottom:756.413333pt;}
.y49{bottom:759.973333pt;}
.y1b5{bottom:760.933333pt;}
.yc6{bottom:761.253333pt;}
.y1eb{bottom:766.373333pt;}
.y141{bottom:766.853333pt;}
.y107{bottom:767.653333pt;}
.y18d{bottom:774.213333pt;}
.yd8{bottom:775.653333pt;}
.y1d4{bottom:775.973333pt;}
.y87{bottom:779.333333pt;}
.ya2{bottom:783.653333pt;}
.y2d{bottom:783.973333pt;}
.y48{bottom:787.653333pt;}
.y1b4{bottom:788.613333pt;}
.yc5{bottom:788.933333pt;}
.y211{bottom:794.053333pt;}
.y140{bottom:794.373333pt;}
.y106{bottom:795.333333pt;}
.y18c{bottom:801.733333pt;}
.y1ea{bottom:803.333333pt;}
.y1d3{bottom:803.653333pt;}
.y86{bottom:806.853333pt;}
.y2c{bottom:811.653333pt;}
.y47{bottom:815.173333pt;}
.y162{bottom:816.453333pt;}
.ya1{bottom:819.653333pt;}
.y1b3{bottom:822.213333pt;}
.y105{bottom:822.853333pt;}
.yc4{bottom:824.453333pt;}
.y13f{bottom:827.973333pt;}
.y18b{bottom:829.413333pt;}
.y210{bottom:829.573333pt;}
.y1d2{bottom:831.173333pt;}
.y85{bottom:834.533333pt;}
.y2b{bottom:839.173333pt;}
.y161{bottom:844.133333pt;}
.y1b2{bottom:845.093333pt;}
.ya0{bottom:847.173333pt;}
.y104{bottom:850.533333pt;}
.y46{bottom:850.853333pt;}
.y13e{bottom:851.013333pt;}
.yc3{bottom:852.133333pt;}
.y18a{bottom:856.933333pt;}
.y20f{bottom:857.253333pt;}
.y1d1{bottom:858.853333pt;}
.y84{bottom:862.053333pt;}
.y2a{bottom:866.853333pt;}
.y1b1{bottom:868.133333pt;}
.y160{bottom:871.653333pt;}
.y13d{bottom:873.893333pt;}
.y9f{bottom:874.853333pt;}
.y103{bottom:878.053333pt;}
.yc2{bottom:879.653333pt;}
.y20e{bottom:884.773333pt;}
.y189{bottom:885.733333pt;}
.y45{bottom:886.373333pt;}
.y83{bottom:891.013333pt;}
.y1b0{bottom:891.173333pt;}
.y29{bottom:894.373333pt;}
.y13c{bottom:896.933333pt;}
.y9e{bottom:902.373333pt;}
.y102{bottom:907.013333pt;}
.yc1{bottom:907.333333pt;}
.y1af{bottom:914.213333pt;}
.y82{bottom:920.133333pt;}
.y28{bottom:922.053333pt;}
.y101{bottom:928.133333pt;}
.y60{bottom:930.053333pt;}
.yc0{bottom:936.133333pt;}
.y1ae{bottom:937.093333pt;}
.y4{bottom:942.373333pt;}
.y27{bottom:957.253333pt;}
.y5f{bottom:957.573333pt;}
.y1ad{bottom:960.133333pt;}
.y1{bottom:1060.640000pt;}
.h9{height:25.746667pt;}
.h17{height:42.063437pt;}
.h19{height:43.782500pt;}
.h7{height:48.026667pt;}
.ha{height:49.622500pt;}
.h18{height:52.108438pt;}
.h16{height:55.402500pt;}
.h1a{height:56.843750pt;}
.h11{height:57.375000pt;}
.h8{height:59.340000pt;}
.h12{height:61.295000pt;}
.h2{height:61.410000pt;}
.h15{height:62.781250pt;}
.h10{height:62.812500pt;}
.h13{height:63.843750pt;}
.hc{height:64.500000pt;}
.h14{height:66.750000pt;}
.he{height:73.490625pt;}
.hf{height:78.097500pt;}
.h5{height:101.280000pt;}
.h6{height:114.946875pt;}
.h4{height:209.061562pt;}
.hd{height:273.972000pt;}
.h3{height:276.026667pt;}
.hb{height:283.693333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:487.293333pt;}
.w2{width:616.400000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.670667pt;}
.x3{left:22.870667pt;}
.x5{left:59.985333pt;}
.x2{left:86.921333pt;}
.x1{left:94.592000pt;}
.x12{left:109.312000pt;}
.x16{left:118.592000pt;}
.x13{left:123.872000pt;}
.x11{left:142.586667pt;}
.x4{left:150.385333pt;}
.x15{left:166.586667pt;}
.x26{left:173.946667pt;}
.x6{left:181.465333pt;}
.xf{left:184.186667pt;}
.x14{left:190.586667pt;}
.x1e{left:192.346667pt;}
.x29{left:195.066667pt;}
.x24{left:198.266667pt;}
.x21{left:207.706667pt;}
.x27{left:216.666667pt;}
.xe{left:224.186667pt;}
.x1c{left:230.106667pt;}
.x1a{left:235.386667pt;}
.x8{left:238.745333pt;}
.x7{left:247.065333pt;}
.x18{left:257.666667pt;}
.x9{left:270.905333pt;}
.x10{left:280.186667pt;}
.xb{left:293.346667pt;}
.xd{left:296.346667pt;}
.xc{left:308.866667pt;}
.x1f{left:597.853333pt;}
.x22{left:599.173333pt;}
.x25{left:605.253333pt;}
.x19{left:606.693333pt;}
.x1d{left:608.293333pt;}
.x23{left:609.733333pt;}
.x20{left:610.693333pt;}
.x17{left:615.173333pt;}
.x28{left:619.173333pt;}
.x1b{left:642.373333pt;}
}




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