
    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_fa31f2d10797a1db6a330d66.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.749512;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_843e51489a58abda9602884c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bfd11a9544c65ea8f4f405ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_53d18d1035a99b9eab70db1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.793457;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_c5ca4f52ab0a977c0cab2ab9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_ece0addf6d68d59993fbd11e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904297;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_ff97f21c18f781773b129164.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_0a92292f2fd2647e6c862e32.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_dfc8e98845b780bc94af505e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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_c4a1853215326e98d3007a6a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_cc5359fb215ba1ec1a1fca21.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_d7efdf64b4d5fb584eb2a8e9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861328;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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;}
.m7{transform:matrix(0.000000,-0.350182,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.350182,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.350182,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.178478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178478,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.203210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203210,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.206324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206324,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-31.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.620000px;}
.ls1f{letter-spacing:-2.595776px;}
.ls28{letter-spacing:-2.088000px;}
.ls34{letter-spacing:-1.944000px;}
.ls2e{letter-spacing:-1.872000px;}
.lsc{letter-spacing:-1.800000px;}
.ls2b{letter-spacing:-1.774060px;}
.ls12{letter-spacing:-1.512000px;}
.ls1b{letter-spacing:-1.368000px;}
.ls2c{letter-spacing:-1.318874px;}
.ls3d{letter-spacing:-1.296000px;}
.ls31{letter-spacing:-1.224000px;}
.ls43{letter-spacing:-1.044000px;}
.ls33{letter-spacing:-1.008000px;}
.ls40{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.368400px;}
.lsd{letter-spacing:-0.144000px;}
.ls37{letter-spacing:-0.009971px;}
.ls8{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.036000px;}
.ls2d{letter-spacing:0.114000px;}
.ls3{letter-spacing:0.144000px;}
.ls3a{letter-spacing:0.240000px;}
.ls30{letter-spacing:0.264000px;}
.ls1c{letter-spacing:0.274200px;}
.ls1d{letter-spacing:0.279000px;}
.ls32{letter-spacing:0.294000px;}
.ls0{letter-spacing:0.324000px;}
.lse{letter-spacing:0.672000px;}
.ls2f{letter-spacing:0.684000px;}
.ls29{letter-spacing:0.720000px;}
.ls20{letter-spacing:1.332000px;}
.ls17{letter-spacing:1.404000px;}
.ls35{letter-spacing:1.440000px;}
.ls18{letter-spacing:1.482000px;}
.lsb{letter-spacing:1.512000px;}
.ls23{letter-spacing:1.524000px;}
.lsa{letter-spacing:1.578000px;}
.ls1e{letter-spacing:1.579942px;}
.ls41{letter-spacing:1.584000px;}
.ls3e{letter-spacing:1.611000px;}
.lsf{letter-spacing:1.728000px;}
.ls7{letter-spacing:1.755000px;}
.ls4{letter-spacing:1.800000px;}
.ls6{letter-spacing:1.842000px;}
.ls15{letter-spacing:1.902000px;}
.ls1{letter-spacing:1.903500px;}
.ls42{letter-spacing:1.908000px;}
.ls5{letter-spacing:1.966500px;}
.ls16{letter-spacing:1.968000px;}
.ls3c{letter-spacing:3.348000px;}
.ls14{letter-spacing:4.779000px;}
.ls2{letter-spacing:6.228000px;}
.ls26{letter-spacing:6.408000px;}
.ls27{letter-spacing:7.134000px;}
.ls13{letter-spacing:9.279000px;}
.ls10{letter-spacing:13.779000px;}
.ls24{letter-spacing:15.228000px;}
.ls25{letter-spacing:15.348000px;}
.ls1a{letter-spacing:19.728000px;}
.ls22{letter-spacing:24.348000px;}
.ls19{letter-spacing:24.954000px;}
.ls21{letter-spacing:29.634000px;}
.ls3f{letter-spacing:32.157300px;}
.ls38{letter-spacing:51.954000px;}
.ls3b{letter-spacing:60.207000px;}
.ls36{letter-spacing:195.348000px;}
.ls2a{letter-spacing:287.839483px;}
.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;}
}
.ws21{word-spacing:-72.000000px;}
.wsb{word-spacing:-32.400000px;}
.ws23{word-spacing:-19.620000px;}
.ws0{word-spacing:-19.356900px;}
.ws25{word-spacing:-17.856000px;}
.ws18{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.676000px;}
.ws19{word-spacing:-16.416000px;}
.ws20{word-spacing:-16.308000px;}
.ws1{word-spacing:-16.272000px;}
.ws10{word-spacing:-15.925398px;}
.ws7{word-spacing:-15.768000px;}
.ws24{word-spacing:-15.336000px;}
.ws16{word-spacing:-15.264000px;}
.ws26{word-spacing:-15.228000px;}
.wse{word-spacing:-15.138218px;}
.ws3{word-spacing:-15.063000px;}
.ws1b{word-spacing:-15.053870px;}
.ws15{word-spacing:-15.048000px;}
.wsc{word-spacing:-14.904000px;}
.ws8{word-spacing:-14.760000px;}
.ws5{word-spacing:-14.472000px;}
.ws22{word-spacing:-14.400000px;}
.ws17{word-spacing:-14.328000px;}
.ws6{word-spacing:-13.893000px;}
.wsd{word-spacing:-13.495200px;}
.ws2{word-spacing:-13.221000px;}
.ws9{word-spacing:-13.089000px;}
.wsa{word-spacing:-11.121000px;}
.ws1f{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws11{word-spacing:7.677770px;}
.ws1a{word-spacing:11.628923px;}
.ws1e{word-spacing:11.641524px;}
.ws1c{word-spacing:11.783746px;}
.ws1d{word-spacing:12.030245px;}
.ws14{word-spacing:132.703772px;}
.ws13{word-spacing:159.139601px;}
.ws12{word-spacing:224.849849px;}
._11{margin-left:-34.980000px;}
._8{margin-left:-6.390450px;}
._a{margin-left:-4.975500px;}
._b{margin-left:-3.605700px;}
._9{margin-left:-2.563800px;}
._7{margin-left:-1.113450px;}
._4{width:1.876500px;}
._2{width:2.916000px;}
._0{width:4.482000px;}
._1{width:6.264000px;}
._6{width:7.717500px;}
._3{width:9.531000px;}
._e{width:10.548450px;}
._d{width:11.561550px;}
._22{width:13.531950px;}
._c{width:14.743050px;}
._21{width:16.599900px;}
._17{width:18.008400px;}
._12{width:19.115400px;}
._13{width:20.426400px;}
._1d{width:21.973500px;}
._19{width:24.016950px;}
._18{width:25.021500px;}
._5{width:26.136000px;}
._1c{width:28.110450px;}
._16{width:29.241000px;}
._84{width:30.925800px;}
._1a{width:32.162700px;}
._1b{width:34.140000px;}
._10{width:35.997600px;}
._14{width:37.329300px;}
._15{width:38.414250px;}
._a0{width:39.437700px;}
._f{width:41.052900px;}
._25{width:42.269400px;}
._8d{width:43.293300px;}
._26{width:44.866500px;}
._23{width:46.402950px;}
._24{width:47.611050px;}
._a1{width:49.489500px;}
._82{width:51.168150px;}
._37{width:52.243800px;}
._83{width:55.589550px;}
._8b{width:56.698050px;}
._47{width:59.691332px;}
._90{width:61.023900px;}
._52{width:63.159600px;}
._20{width:64.364700px;}
._1f{width:65.672550px;}
._80{width:67.450085px;}
._1e{width:70.209900px;}
._30{width:72.482505px;}
._3d{width:75.233114px;}
._29{width:76.559100px;}
._87{width:78.519450px;}
._27{width:80.490300px;}
._28{width:82.077450px;}
._36{width:83.298900px;}
._35{width:87.858900px;}
._86{width:91.445092px;}
._44{width:93.518708px;}
._85{width:95.905200px;}
._4a{width:97.401506px;}
._8a{width:100.333200px;}
._89{width:101.343750px;}
._5b{width:102.536227px;}
._88{width:104.585250px;}
._53{width:109.195361px;}
._32{width:111.495271px;}
._3b{width:114.047869px;}
._59{width:116.076456px;}
._50{width:118.104329px;}
._61{width:122.296999px;}
._7c{width:126.666715px;}
._31{width:128.278223px;}
._49{width:130.688305px;}
._3f{width:135.701689px;}
._41{width:141.307995px;}
._60{width:144.069440px;}
._5d{width:145.656701px;}
._43{width:147.428795px;}
._4b{width:152.055280px;}
._5f{width:154.114886px;}
._8e{width:159.348000px;}
._5a{width:161.384995px;}
._9a{width:169.570195px;}
._72{width:172.065709px;}
._4f{width:174.966304px;}
._8f{width:177.199500px;}
._5e{width:185.825166px;}
._9c{width:187.471903px;}
._62{width:195.348000px;}
._4e{width:198.356710px;}
._55{width:213.456590px;}
._6c{width:217.985871px;}
._6b{width:226.506027px;}
._76{width:230.651210px;}
._66{width:232.891476px;}
._92{width:245.770410px;}
._6a{width:248.506706px;}
._81{width:250.143018px;}
._58{width:252.431951px;}
._9e{width:261.315905px;}
._40{width:266.903526px;}
._9f{width:269.686090px;}
._96{width:275.761833px;}
._68{width:292.332990px;}
._67{width:297.477363px;}
._93{width:309.124522px;}
._74{width:327.666261px;}
._7e{width:335.435699px;}
._7a{width:359.189906px;}
._78{width:363.752925px;}
._98{width:373.110100px;}
._2e{width:387.048384px;}
._65{width:397.525371px;}
._71{width:413.009941px;}
._2a{width:420.642949px;}
._7f{width:447.090688px;}
._3e{width:449.558647px;}
._5c{width:452.053937px;}
._7d{width:456.629822px;}
._64{width:471.728317px;}
._4c{width:477.528925px;}
._97{width:479.208966px;}
._69{width:485.947832px;}
._51{width:520.580405px;}
._2c{width:535.187946px;}
._95{width:591.187569px;}
._77{width:632.766324px;}
._2f{width:648.490129px;}
._7b{width:657.851105px;}
._2d{width:660.327234px;}
._54{width:690.570122px;}
._8c{width:700.128000px;}
._9b{width:707.461995px;}
._9d{width:722.706650px;}
._63{width:757.344071px;}
._34{width:778.893862px;}
._45{width:785.232949px;}
._4d{width:816.679964px;}
._2b{width:844.022239px;}
._6f{width:848.178969px;}
._94{width:858.431978px;}
._57{width:902.823294px;}
._46{width:915.751733px;}
._75{width:932.798610px;}
._39{width:969.992645px;}
._38{width:1001.077720px;}
._33{width:1020.950443px;}
._99{width:1054.471570px;}
._6d{width:1115.600138px;}
._91{width:1162.514699px;}
._3c{width:1213.402587px;}
._56{width:1272.504374px;}
._48{width:1290.111519px;}
._3a{width:1316.418837px;}
._79{width:1477.592299px;}
._42{width:1686.673675px;}
._73{width:1752.460772px;}
._70{width:2062.194934px;}
._6e{width:2154.351768px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:22.500000px;}
.fs6{font-size:40.500000px;}
.fs13{font-size:44.587880px;}
.fs3{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs12{font-size:54.146625px;}
.fs8{font-size:57.706064px;}
.fs4{font-size:58.500000px;}
.fsf{font-size:59.905049px;}
.fsa{font-size:62.805515px;}
.fsd{font-size:65.943677px;}
.fs7{font-size:66.516150px;}
.fs11{font-size:66.610043px;}
.fsb{font-size:66.983266px;}
.fs10{font-size:67.500000px;}
.fsc{font-size:70.466363px;}
.fs9{font-size:70.921193px;}
.fs0{font-size:72.000000px;}
.fse{font-size:73.658759px;}
.fs5{font-size:85.650000px;}
.fs14{font-size:94.650000px;}
.y17b{bottom:-25.920000px;}
.y100{bottom:-22.530000px;}
.yd3{bottom:-20.287500px;}
.y16f{bottom:-14.670000px;}
.y0{bottom:0.000000px;}
.y17a{bottom:2.250000px;}
.y1af{bottom:4.196017px;}
.y104{bottom:4.376793px;}
.y16e{bottom:4.455000px;}
.y1a0{bottom:5.193091px;}
.yf8{bottom:5.222049px;}
.yfa{bottom:5.222188px;}
.y10c{bottom:5.507457px;}
.yc4{bottom:5.543005px;}
.yc6{bottom:5.543013px;}
.y2c{bottom:5.625000px;}
.y29{bottom:5.640000px;}
.y33{bottom:5.655000px;}
.y1bb{bottom:6.266304px;}
.y2a{bottom:6.750000px;}
.y36{bottom:6.780000px;}
.y120{bottom:6.915075px;}
.yd2{bottom:7.875000px;}
.yb7{bottom:10.125000px;}
.y1bd{bottom:17.684205px;}
.y16d{bottom:22.485000px;}
.yf7{bottom:26.145755px;}
.y10b{bottom:27.501424px;}
.yc3{bottom:27.752351px;}
.y1ba{bottom:28.111628px;}
.y11f{bottom:29.953151px;}
.y179{bottom:30.405000px;}
.yff{bottom:33.795000px;}
.y16c{bottom:41.610000px;}
.y1bf{bottom:42.686901px;}
.yf6{bottom:47.069322px;}
.y1b9{bottom:48.918611px;}
.y10a{bottom:49.531281px;}
.yc2{bottom:49.924401px;}
.y11e{bottom:52.990616px;}
.y178{bottom:57.405000px;}
.y6{bottom:57.450000px;}
.yf5{bottom:67.958074px;}
.y1b8{bottom:69.725595px;}
.y109{bottom:71.524664px;}
.yc1{bottom:72.096451px;}
.y11d{bottom:75.989875px;}
.y5{bottom:76.575000px;}
.y1b7{bottom:90.532578px;}
.y108{bottom:93.518048px;}
.yc0{bottom:94.268502px;}
.y11c{bottom:99.027340px;}
.yd1{bottom:105.862500px;}
.y71{bottom:109.237500px;}
.y8f{bottom:110.362500px;}
.yf4{bottom:110.849646px;}
.y1b6{bottom:111.339561px;}
.y114{bottom:111.487500px;}
.y132{bottom:113.737500px;}
.y209{bottom:114.862500px;}
.y107{bottom:115.511431px;}
.y1e3{bottom:115.987500px;}
.ybf{bottom:116.440552px;}
.y27{bottom:117.112500px;}
.y5a{bottom:118.237500px;}
.ya6{bottom:119.362500px;}
.y11b{bottom:122.064805px;}
.y6d{bottom:123.862500px;}
.y173{bottom:124.987500px;}
.y8e{bottom:126.112500px;}
.y26{bottom:128.362500px;}
.yc9{bottom:129.487500px;}
.yf3{bottom:131.773213px;}
.y1b5{bottom:132.146545px;}
.y82{bottom:136.275000px;}
.y59{bottom:137.400000px;}
.y106{bottom:137.541288px;}
.y192{bottom:139.650000px;}
.yd0{bottom:140.775000px;}
.y172{bottom:143.025000px;}
.y113{bottom:144.150000px;}
.y11a{bottom:145.064065px;}
.y70{bottom:146.400000px;}
.y143{bottom:147.525000px;}
.y1e2{bottom:148.650000px;}
.y1ce{bottom:149.775000px;}
.y1d7{bottom:150.900000px;}
.y8d{bottom:152.025000px;}
.yf2{bottom:152.696780px;}
.y1b4{bottom:152.960452px;}
.y85{bottom:154.275000px;}
.y58{bottom:155.400000px;}
.y6c{bottom:157.650000px;}
.y105{bottom:159.533213px;}
.yc8{bottom:159.900000px;}
.y171{bottom:161.025000px;}
.y8c{bottom:162.150000px;}
.ycf{bottom:163.275000px;}
.y6f{bottom:164.400000px;}
.y38{bottom:165.525000px;}
.ybd{bottom:167.775000px;}
.y119{bottom:168.100001px;}
.y88{bottom:172.275000px;}
.y57{bottom:173.400000px;}
.yf1{bottom:173.585532px;}
.y1b3{bottom:173.760511px;}
.y112{bottom:176.805000px;}
.y1f5{bottom:177.930000px;}
.y131{bottom:179.055000px;}
.y25{bottom:180.180000px;}
.yb5{bottom:181.305000px;}
.y102{bottom:181.533891px;}
.y7a{bottom:182.430000px;}
.y84{bottom:183.555000px;}
.ya5{bottom:184.680000px;}
.yc7{bottom:186.930000px;}
.y37{bottom:189.180000px;}
.y6b{bottom:190.305000px;}
.y118{bottom:191.145107px;}
.y56{bottom:191.430000px;}
.yf0{bottom:194.502136px;}
.y1b2{bottom:194.574418px;}
.yfe{bottom:195.945000px;}
.ybc{bottom:198.195000px;}
.ya3{bottom:199.320000px;}
.y8b{bottom:200.445000px;}
.y79{bottom:201.570000px;}
.y6e{bottom:202.695000px;}
.y191{bottom:204.945000px;}
.ybe{bottom:205.035572px;}
.yce{bottom:207.195000px;}
.y55{bottom:210.570000px;}
.y35{bottom:211.695000px;}
.y24{bottom:212.820000px;}
.y208{bottom:213.945000px;}
.y117{bottom:214.144366px;}
.y1e4{bottom:215.070000px;}
.y1b1{bottom:215.374478px;}
.yef{bottom:215.432666px;}
.y1cd{bottom:216.195000px;}
.ya4{bottom:217.350000px;}
.ya2{bottom:218.475000px;}
.y78{bottom:219.600000px;}
.y6a{bottom:222.975000px;}
.y170{bottom:224.100000px;}
.y18b{bottom:225.225000px;}
.y81{bottom:227.475000px;}
.ycd{bottom:228.600000px;}
.y8a{bottom:230.850000px;}
.y34{bottom:235.350000px;}
.y116{bottom:236.028047px;}
.y1b0{bottom:236.216081px;}
.yee{bottom:236.349270px;}
.y54{bottom:236.475000px;}
.y77{bottom:237.600000px;}
.yfd{bottom:239.850000px;}
.y111{bottom:243.225000px;}
.yb4{bottom:244.350000px;}
.y23{bottom:245.475000px;}
.y53{bottom:247.725000px;}
.y1d0{bottom:248.850000px;}
.y1cc{bottom:249.975000px;}
.y83{bottom:251.100000px;}
.y18a{bottom:253.350000px;}
.ya1{bottom:254.475000px;}
.y76{bottom:255.600000px;}
.y69{bottom:256.725000px;}
.yed{bottom:257.238022px;}
.y32{bottom:258.975000px;}
.y145{bottom:261.255000px;}
.y87{bottom:263.505000px;}
.yd4{bottom:265.695000px;}
.y190{bottom:271.380000px;}
.ycc{bottom:272.505000px;}
.ya0{bottom:273.630000px;}
.y19e{bottom:274.755000px;}
.y86{bottom:275.880000px;}
.y1f4{bottom:277.005000px;}
.y130{bottom:278.130000px;}
.yec{bottom:278.168552px;}
.y22{bottom:279.255000px;}
.yb3{bottom:280.380000px;}
.y31{bottom:281.505000px;}
.y75{bottom:282.630000px;}
.y52{bottom:283.755000px;}
.y89{bottom:286.005000px;}
.y68{bottom:289.380000px;}
.y9f{bottom:291.630000px;}
.y74{bottom:292.755000px;}
.y80{bottom:293.880000px;}
.ycb{bottom:295.005000px;}
.y1ad{bottom:300.721192px;}
.y30{bottom:305.175000px;}
.y13e{bottom:306.300000px;}
.y19d{bottom:307.425000px;}
.y110{bottom:308.550000px;}
.y9e{bottom:309.675000px;}
.y21{bottom:310.800000px;}
.yb2{bottom:313.050000px;}
.y1cf{bottom:314.175000px;}
.y1cb{bottom:315.300000px;}
.y51{bottom:316.425000px;}
.y144{bottom:318.675000px;}
.yeb{bottom:321.060124px;}
.y67{bottom:322.050000px;}
.y1ac{bottom:322.559869px;}
.y9d{bottom:327.675000px;}
.y2f{bottom:328.800000px;}
.y73{bottom:337.800000px;}
.y20{bottom:338.925000px;}
.yc5{bottom:339.243130px;}
.y19c{bottom:341.175000px;}
.yea{bottom:341.976728px;}
.y10f{bottom:342.300000px;}
.y1ab{bottom:343.373776px;}
.y12f{bottom:344.550000px;}
.yb1{bottom:346.830000px;}
.y1d6{bottom:347.955000px;}
.y72{bottom:349.080000px;}
.y50{bottom:350.205000px;}
.yfc{bottom:350.398891px;}
.y2e{bottom:351.330000px;}
.y9c{bottom:354.705000px;}
.y66{bottom:355.830000px;}
.y7f{bottom:360.330000px;}
.ye9{bottom:362.865480px;}
.y1aa{bottom:364.173835px;}
.y9b{bottom:365.955000px;}
.y1f{bottom:367.080000px;}
.y13d{bottom:371.580000px;}
.y19b{bottom:373.830000px;}
.y2d{bottom:374.955000px;}
.y1f3{bottom:376.080000px;}
.y12e{bottom:377.205000px;}
.yb0{bottom:379.455000px;}
.y1d5{bottom:380.580000px;}
.y1ca{bottom:381.705000px;}
.y4f{bottom:382.830000px;}
.ye8{bottom:383.796010px;}
.y1a9{bottom:384.987743px;}
.y65{bottom:388.500000px;}
.y1e{bottom:394.125000px;}
.y2b{bottom:398.625000px;}
.yca{bottom:404.250000px;}
.ye7{bottom:404.712614px;}
.y1a8{bottom:405.787802px;}
.y19a{bottom:406.500000px;}
.y1f2{bottom:408.750000px;}
.y12d{bottom:409.875000px;}
.yaf{bottom:412.125000px;}
.y1c9{bottom:414.375000px;}
.y4e{bottom:415.500000px;}
.y1d{bottom:421.125000px;}
.y10e{bottom:423.375000px;}
.ye6{bottom:425.643144px;}
.y1a7{bottom:426.629406px;}
.y7e{bottom:426.750000px;}
.y13c{bottom:438.045000px;}
.y199{bottom:440.295000px;}
.y1f1{bottom:441.420000px;}
.y12c{bottom:443.670000px;}
.y28{bottom:444.780000px;}
.y207{bottom:444.795000px;}
.yae{bottom:445.920000px;}
.ye5{bottom:446.531896px;}
.y1d4{bottom:447.045000px;}
.y1a6{bottom:447.443313px;}
.y1c8{bottom:448.170000px;}
.y4d{bottom:449.295000px;}
.y1c{bottom:452.670000px;}
.y64{bottom:453.795000px;}
.y7d{bottom:459.420000px;}
.y142{bottom:467.295000px;}
.ye4{bottom:467.448500px;}
.y1a5{bottom:468.243372px;}
.y13b{bottom:470.670000px;}
.y12b{bottom:472.920000px;}
.y1f0{bottom:474.075000px;}
.y158{bottom:476.325000px;}
.yad{bottom:478.575000px;}
.y1d3{bottom:479.700000px;}
.y10d{bottom:480.825000px;}
.y4c{bottom:481.950000px;}
.y1b{bottom:485.325000px;}
.y63{bottom:487.575000px;}
.ye3{bottom:488.379030px;}
.y1a4{bottom:489.057280px;}
.y7c{bottom:489.825000px;}
.y16a{bottom:493.200000px;}
.y141{bottom:495.450000px;}
.y101{bottom:497.820472px;}
.y12a{bottom:499.950000px;}
.y13a{bottom:503.325000px;}
.y198{bottom:505.575000px;}
.y1ef{bottom:507.825000px;}
.y157{bottom:508.950000px;}
.ye2{bottom:509.295634px;}
.y1a3{bottom:509.857339px;}
.yac{bottom:511.200000px;}
.y1df{bottom:512.325000px;}
.y1c7{bottom:513.450000px;}
.y4b{bottom:514.575000px;}
.y7b{bottom:516.870000px;}
.y1a{bottom:517.995000px;}
.y62{bottom:520.245000px;}
.y140{bottom:522.495000px;}
.y169{bottom:525.870000px;}
.y115{bottom:529.336184px;}
.ye1{bottom:530.184386px;}
.y1a2{bottom:530.671246px;}
.y139{bottom:537.120000px;}
.y197{bottom:538.245000px;}
.y1ee{bottom:540.495000px;}
.y156{bottom:542.745000px;}
.yab{bottom:543.870000px;}
.y1de{bottom:546.120000px;}
.y4a{bottom:547.245000px;}
.y13f{bottom:549.495000px;}
.ye0{bottom:551.114916px;}
.y19{bottom:551.745000px;}
.y1a1{bottom:552.037227px;}
.y61{bottom:552.870000px;}
.y1be{bottom:553.075847px;}
.y168{bottom:558.525000px;}
.yfb{bottom:560.602406px;}
.y138{bottom:569.775000px;}
.y189{bottom:572.025000px;}
.ydf{bottom:572.031520px;}
.y1ed{bottom:573.150000px;}
.y155{bottom:575.400000px;}
.yaa{bottom:577.650000px;}
.y1dd{bottom:578.775000px;}
.y1c6{bottom:579.900000px;}
.y49{bottom:581.025000px;}
.y18{bottom:584.400000px;}
.y60{bottom:586.650000px;}
.y167{bottom:588.900000px;}
.y177{bottom:591.150000px;}
.yde{bottom:592.962050px;}
.y188{bottom:599.025000px;}
.y137{bottom:602.445000px;}
.y160{bottom:604.695000px;}
.y1ec{bottom:606.945000px;}
.y154{bottom:608.070000px;}
.ya9{bottom:610.320000px;}
.y1dc{bottom:611.445000px;}
.y1c5{bottom:612.570000px;}
.y48{bottom:613.695000px;}
.ydd{bottom:613.850802px;}
.y166{bottom:615.945000px;}
.y17{bottom:617.070000px;}
.y5f{bottom:619.320000px;}
.y176{bottom:621.570000px;}
.y1fc{bottom:624.945000px;}
.y187{bottom:627.195000px;}
.y136{bottom:632.820000px;}
.y196{bottom:633.945000px;}
.y16b{bottom:633.990000px;}
.ydc{bottom:634.767406px;}
.y15f{bottom:635.070000px;}
.y1eb{bottom:639.570000px;}
.y153{bottom:640.695000px;}
.ya8{bottom:642.945000px;}
.y1c4{bottom:645.225000px;}
.y47{bottom:646.350000px;}
.y175{bottom:648.600000px;}
.y16{bottom:650.850000px;}
.y5e{bottom:651.975000px;}
.y186{bottom:654.225000px;}
.ydb{bottom:655.697936px;}
.y1fb{bottom:657.600000px;}
.y135{bottom:659.850000px;}
.y195{bottom:662.100000px;}
.y15e{bottom:665.475000px;}
.y174{bottom:668.850000px;}
.y165{bottom:671.100000px;}
.y1ea{bottom:672.225000px;}
.ya7{bottom:673.350000px;}
.y152{bottom:674.475000px;}
.y103{bottom:674.977570px;}
.y206{bottom:675.600000px;}
.yda{bottom:676.614540px;}
.y1db{bottom:677.850000px;}
.y1c3{bottom:678.975000px;}
.y46{bottom:680.100000px;}
.y185{bottom:682.350000px;}
.y15{bottom:683.475000px;}
.y5d{bottom:684.600000px;}
.y134{bottom:686.880000px;}
.ybb{bottom:688.005000px;}
.y164{bottom:690.255000px;}
.y15d{bottom:695.880000px;}
.yd9{bottom:697.545070px;}
.y1e9{bottom:706.005000px;}
.y151{bottom:707.130000px;}
.y184{bottom:709.380000px;}
.y1da{bottom:710.505000px;}
.yba{bottom:711.630000px;}
.y45{bottom:712.755000px;}
.y133{bottom:715.005000px;}
.y14{bottom:716.130000px;}
.y5c{bottom:718.380000px;}
.yd8{bottom:718.433822px;}
.y1fa{bottom:724.005000px;}
.y15c{bottom:726.255000px;}
.y163{bottom:734.175000px;}
.yb9{bottom:735.300000px;}
.y150{bottom:736.425000px;}
.yd7{bottom:739.350426px;}
.y18f{bottom:739.800000px;}
.y205{bottom:742.050000px;}
.y1d9{bottom:743.175000px;}
.y1c2{bottom:744.300000px;}
.y44{bottom:745.425000px;}
.y5b{bottom:747.675000px;}
.y13{bottom:748.800000px;}
.y15b{bottom:756.675000px;}
.yb8{bottom:757.800000px;}
.yd6{bottom:760.280956px;}
.y14f{bottom:764.550000px;}
.y18e{bottom:773.580000px;}
.y204{bottom:774.705000px;}
.y1e8{bottom:776.955000px;}
.y43{bottom:778.080000px;}
.yd5{bottom:781.197560px;}
.yb6{bottom:781.455000px;}
.y12{bottom:782.580000px;}
.y15a{bottom:785.955000px;}
.y1f9{bottom:789.330000px;}
.y14e{bottom:791.580000px;}
.y162{bottom:800.580000px;}
.y1ae{bottom:803.832580px;}
.y129{bottom:806.205000px;}
.y9a{bottom:808.455000px;}
.y1c1{bottom:810.705000px;}
.y42{bottom:811.830000px;}
.y11{bottom:815.250000px;}
.y159{bottom:816.375000px;}
.y14d{bottom:819.750000px;}
.y161{bottom:823.125000px;}
.y99{bottom:835.500000px;}
.y128{bottom:838.875000px;}
.y203{bottom:841.125000px;}
.y1c0{bottom:843.375000px;}
.y41{bottom:844.500000px;}
.y14c{bottom:846.750000px;}
.y1bc{bottom:847.565328px;}
.y10{bottom:847.875000px;}
.y1f8{bottom:855.750000px;}
.y98{bottom:863.670000px;}
.y183{bottom:867.045000px;}
.y127{bottom:871.545000px;}
.y14b{bottom:873.795000px;}
.y1e5{bottom:876.045000px;}
.y40{bottom:877.170000px;}
.yf{bottom:881.670000px;}
.y182{bottom:888.420000px;}
.y97{bottom:890.670000px;}
.y14a{bottom:901.950000px;}
.ye{bottom:903.075000px;}
.y126{bottom:905.325000px;}
.y202{bottom:907.575000px;}
.y1d2{bottom:909.825000px;}
.y3f{bottom:910.950000px;}
.y96{bottom:918.825000px;}
.y1f7{bottom:921.075000px;}
.yd{bottom:925.575000px;}
.y149{bottom:928.950000px;}
.y181{bottom:932.325000px;}
.y125{bottom:937.950000px;}
.y201{bottom:940.200000px;}
.y1d1{bottom:942.450000px;}
.y3e{bottom:943.620000px;}
.y95{bottom:945.870000px;}
.yc{bottom:948.120000px;}
.y180{bottom:954.870000px;}
.y148{bottom:957.120000px;}
.y194{bottom:967.245000px;}
.y124{bottom:970.620000px;}
.yb{bottom:972.870000px;}
.y1d8{bottom:975.120000px;}
.y3d{bottom:976.245000px;}
.y147{bottom:984.120000px;}
.y1f6{bottom:989.775000px;}
.ya{bottom:996.525000px;}
.y17f{bottom:998.775000px;}
.y94{bottom:1001.025000px;}
.y123{bottom:1004.400000px;}
.y200{bottom:1005.525000px;}
.y18d{bottom:1006.650000px;}
.y1e1{bottom:1008.900000px;}
.y3c{bottom:1010.025000px;}
.y146{bottom:1012.275000px;}
.y17e{bottom:1020.150000px;}
.y93{bottom:1028.025000px;}
.y9{bottom:1031.445000px;}
.y193{bottom:1033.695000px;}
.y122{bottom:1037.070000px;}
.y1ff{bottom:1039.320000px;}
.y1e0{bottom:1041.570000px;}
.y3b{bottom:1042.695000px;}
.y18c{bottom:1044.945000px;}
.y92{bottom:1056.195000px;}
.y1fe{bottom:1060.695000px;}
.yf9{bottom:1063.603562px;}
.y17d{bottom:1064.070000px;}
.y8{bottom:1066.320000px;}
.y121{bottom:1069.695000px;}
.y1e7{bottom:1074.225000px;}
.y3a{bottom:1075.350000px;}
.y91{bottom:1083.225000px;}
.y17c{bottom:1086.600000px;}
.y19f{bottom:1098.315441px;}
.y7{bottom:1104.600000px;}
.y1fd{bottom:1105.725000px;}
.y1e6{bottom:1106.850000px;}
.y39{bottom:1107.975000px;}
.y90{bottom:1110.225000px;}
.y4{bottom:1130.505000px;}
.y3{bottom:1147.380000px;}
.y2{bottom:1157.550000px;}
.y1{bottom:1163.175000px;}
.h3{height:16.589355px;}
.h32{height:20.806983px;}
.h21{height:20.923567px;}
.hd{height:21.375000px;}
.h2e{height:21.845601px;}
.h26{height:21.993384px;}
.h1b{height:22.172050px;}
.h1d{height:22.434000px;}
.h10{height:22.500000px;}
.hf{height:22.537500px;}
.h17{height:31.500000px;}
.h34{height:32.374110px;}
.hc{height:33.400635px;}
.h5{height:36.496582px;}
.h16{height:38.990479px;}
.h4{height:40.341797px;}
.he{height:42.475342px;}
.h15{height:44.534180px;}
.h31{height:44.655103px;}
.h1f{height:45.601466px;}
.h1a{height:47.590597px;}
.h7{height:47.988281px;}
.h6{height:48.245361px;}
.h2f{height:48.363835px;}
.h23{height:48.375000px;}
.h22{height:48.634822px;}
.h2a{height:49.404115px;}
.h25{height:51.163810px;}
.h1c{height:51.494050px;}
.h12{height:51.679688px;}
.h20{height:51.796150px;}
.h9{height:52.277344px;}
.h2{height:53.085938px;}
.h29{height:53.481726px;}
.h27{height:54.384214px;}
.h19{height:54.856337px;}
.h2b{height:55.667725px;}
.h2c{height:56.250000px;}
.ha{height:59.378906px;}
.h36{height:60.128782px;}
.h8{height:62.188257px;}
.h38{height:68.722925px;}
.h2d{height:72.075000px;}
.h11{height:72.322998px;}
.hb{height:72.442998px;}
.h14{height:72.502998px;}
.h13{height:74.004654px;}
.h37{height:97.285285px;}
.h18{height:156.379029px;}
.h24{height:199.144070px;}
.h33{height:249.725344px;}
.h28{height:254.443639px;}
.h35{height:271.564021px;}
.h30{height:568.124119px;}
.h1e{height:818.838922px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w16{width:14.854388px;}
.w6{width:55.200000px;}
.w11{width:60.939364px;}
.w5{width:68.737500px;}
.w1{width:74.362500px;}
.w2{width:78.825000px;}
.w7{width:85.575000px;}
.w8{width:97.987500px;}
.w4{width:146.400000px;}
.w9{width:164.430000px;}
.wc{width:575.580000px;}
.w3{width:621.750000px;}
.w13{width:700.650000px;}
.w14{width:701.775000px;}
.w10{width:707.670455px;}
.wf{width:717.525000px;}
.wb{width:722.383878px;}
.wa{width:723.279025px;}
.w12{width:727.388395px;}
.we{width:734.189318px;}
.wd{width:735.233684px;}
.w15{width:755.561902px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:1.790295px;}
.x8{left:4.545000px;}
.xa{left:5.625000px;}
.x20{left:10.155000px;}
.x2d{left:11.287500px;}
.x2f{left:17.078839px;}
.x19{left:19.723079px;}
.x22{left:42.888632px;}
.x31{left:76.446959px;}
.x2b{left:80.496522px;}
.x2c{left:94.612500px;}
.x2e{left:96.862500px;}
.x18{left:98.507647px;}
.x2{left:107.025000px;}
.x12{left:109.237500px;}
.x25{left:110.400000px;}
.x21{left:111.706866px;}
.x27{left:117.150000px;}
.xc{left:134.025000px;}
.x11{left:136.312500px;}
.x26{left:138.562500px;}
.x5{left:159.930000px;}
.xd{left:161.055000px;}
.x1b{left:174.768560px;}
.x1f{left:191.490000px;}
.x1d{left:209.520000px;}
.x1e{left:212.895000px;}
.x2a{left:218.520000px;}
.xf{left:233.175000px;}
.x10{left:236.550000px;}
.xe{left:237.675000px;}
.x4{left:257.970000px;}
.x13{left:282.720000px;}
.x1{left:319.905000px;}
.x24{left:331.551402px;}
.x30{left:346.618867px;}
.x14{left:351.450000px;}
.x23{left:353.483088px;}
.x7{left:370.575000px;}
.x32{left:384.120000px;}
.x15{left:407.775000px;}
.x9{left:444.945000px;}
.x1c{left:474.225000px;}
.x16{left:494.520000px;}
.x6{left:535.050000px;}
.x29{left:540.846996px;}
.x28{left:585.655626px;}
.x17{left:593.625000px;}
.xb{left:772.725000px;}
.x3{left:780.600000px;}
@media print{
.v2{vertical-align:-28.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.106667pt;}
.ls1f{letter-spacing:-2.307356pt;}
.ls28{letter-spacing:-1.856000pt;}
.ls34{letter-spacing:-1.728000pt;}
.ls2e{letter-spacing:-1.664000pt;}
.lsc{letter-spacing:-1.600000pt;}
.ls2b{letter-spacing:-1.576942pt;}
.ls12{letter-spacing:-1.344000pt;}
.ls1b{letter-spacing:-1.216000pt;}
.ls2c{letter-spacing:-1.172332pt;}
.ls3d{letter-spacing:-1.152000pt;}
.ls31{letter-spacing:-1.088000pt;}
.ls43{letter-spacing:-0.928000pt;}
.ls33{letter-spacing:-0.896000pt;}
.ls40{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.327467pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls37{letter-spacing:-0.008863pt;}
.ls8{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.032000pt;}
.ls2d{letter-spacing:0.101333pt;}
.ls3{letter-spacing:0.128000pt;}
.ls3a{letter-spacing:0.213333pt;}
.ls30{letter-spacing:0.234667pt;}
.ls1c{letter-spacing:0.243733pt;}
.ls1d{letter-spacing:0.248000pt;}
.ls32{letter-spacing:0.261333pt;}
.ls0{letter-spacing:0.288000pt;}
.lse{letter-spacing:0.597333pt;}
.ls2f{letter-spacing:0.608000pt;}
.ls29{letter-spacing:0.640000pt;}
.ls20{letter-spacing:1.184000pt;}
.ls17{letter-spacing:1.248000pt;}
.ls35{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.317333pt;}
.lsb{letter-spacing:1.344000pt;}
.ls23{letter-spacing:1.354667pt;}
.lsa{letter-spacing:1.402667pt;}
.ls1e{letter-spacing:1.404393pt;}
.ls41{letter-spacing:1.408000pt;}
.ls3e{letter-spacing:1.432000pt;}
.lsf{letter-spacing:1.536000pt;}
.ls7{letter-spacing:1.560000pt;}
.ls4{letter-spacing:1.600000pt;}
.ls6{letter-spacing:1.637333pt;}
.ls15{letter-spacing:1.690667pt;}
.ls1{letter-spacing:1.692000pt;}
.ls42{letter-spacing:1.696000pt;}
.ls5{letter-spacing:1.748000pt;}
.ls16{letter-spacing:1.749333pt;}
.ls3c{letter-spacing:2.976000pt;}
.ls14{letter-spacing:4.248000pt;}
.ls2{letter-spacing:5.536000pt;}
.ls26{letter-spacing:5.696000pt;}
.ls27{letter-spacing:6.341333pt;}
.ls13{letter-spacing:8.248000pt;}
.ls10{letter-spacing:12.248000pt;}
.ls24{letter-spacing:13.536000pt;}
.ls25{letter-spacing:13.642667pt;}
.ls1a{letter-spacing:17.536000pt;}
.ls22{letter-spacing:21.642667pt;}
.ls19{letter-spacing:22.181333pt;}
.ls21{letter-spacing:26.341333pt;}
.ls3f{letter-spacing:28.584267pt;}
.ls38{letter-spacing:46.181333pt;}
.ls3b{letter-spacing:53.517333pt;}
.ls36{letter-spacing:173.642667pt;}
.ls2a{letter-spacing:255.857318pt;}
.ws21{word-spacing:-64.000000pt;}
.wsb{word-spacing:-28.800000pt;}
.ws23{word-spacing:-17.440000pt;}
.ws0{word-spacing:-17.206133pt;}
.ws25{word-spacing:-15.872000pt;}
.ws18{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.712000pt;}
.ws19{word-spacing:-14.592000pt;}
.ws20{word-spacing:-14.496000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws10{word-spacing:-14.155909pt;}
.ws7{word-spacing:-14.016000pt;}
.ws24{word-spacing:-13.632000pt;}
.ws16{word-spacing:-13.568000pt;}
.ws26{word-spacing:-13.536000pt;}
.wse{word-spacing:-13.456194pt;}
.ws3{word-spacing:-13.389333pt;}
.ws1b{word-spacing:-13.381218pt;}
.ws15{word-spacing:-13.376000pt;}
.wsc{word-spacing:-13.248000pt;}
.ws8{word-spacing:-13.120000pt;}
.ws5{word-spacing:-12.864000pt;}
.ws22{word-spacing:-12.800000pt;}
.ws17{word-spacing:-12.736000pt;}
.ws6{word-spacing:-12.349333pt;}
.wsd{word-spacing:-11.995733pt;}
.ws2{word-spacing:-11.752000pt;}
.ws9{word-spacing:-11.634667pt;}
.wsa{word-spacing:-9.885333pt;}
.ws1f{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws11{word-spacing:6.824684pt;}
.ws1a{word-spacing:10.336820pt;}
.ws1e{word-spacing:10.348022pt;}
.ws1c{word-spacing:10.474441pt;}
.ws1d{word-spacing:10.693551pt;}
.ws14{word-spacing:117.958909pt;}
.ws13{word-spacing:141.457423pt;}
.ws12{word-spacing:199.866532pt;}
._11{margin-left:-31.093333pt;}
._8{margin-left:-5.680400pt;}
._a{margin-left:-4.422667pt;}
._b{margin-left:-3.205067pt;}
._9{margin-left:-2.278933pt;}
._7{margin-left:-0.989733pt;}
._4{width:1.668000pt;}
._2{width:2.592000pt;}
._0{width:3.984000pt;}
._1{width:5.568000pt;}
._6{width:6.860000pt;}
._3{width:8.472000pt;}
._e{width:9.376400pt;}
._d{width:10.276933pt;}
._22{width:12.028400pt;}
._c{width:13.104933pt;}
._21{width:14.755467pt;}
._17{width:16.007467pt;}
._12{width:16.991467pt;}
._13{width:18.156800pt;}
._1d{width:19.532000pt;}
._19{width:21.348400pt;}
._18{width:22.241333pt;}
._5{width:23.232000pt;}
._1c{width:24.987067pt;}
._16{width:25.992000pt;}
._84{width:27.489600pt;}
._1a{width:28.589067pt;}
._1b{width:30.346667pt;}
._10{width:31.997867pt;}
._14{width:33.181600pt;}
._15{width:34.146000pt;}
._a0{width:35.055733pt;}
._f{width:36.491467pt;}
._25{width:37.572800pt;}
._8d{width:38.482933pt;}
._26{width:39.881333pt;}
._23{width:41.247067pt;}
._24{width:42.320933pt;}
._a1{width:43.990667pt;}
._82{width:45.482800pt;}
._37{width:46.438933pt;}
._83{width:49.412933pt;}
._8b{width:50.398267pt;}
._47{width:53.058962pt;}
._90{width:54.243467pt;}
._52{width:56.141867pt;}
._20{width:57.213067pt;}
._1f{width:58.375600pt;}
._80{width:59.955631pt;}
._1e{width:62.408800pt;}
._30{width:64.428893pt;}
._3d{width:66.873879pt;}
._29{width:68.052533pt;}
._87{width:69.795067pt;}
._27{width:71.546933pt;}
._28{width:72.957733pt;}
._36{width:74.043467pt;}
._35{width:78.096800pt;}
._86{width:81.284526pt;}
._44{width:83.127741pt;}
._85{width:85.249067pt;}
._4a{width:86.579116pt;}
._8a{width:89.185067pt;}
._89{width:90.083333pt;}
._5b{width:91.143313pt;}
._88{width:92.964667pt;}
._53{width:97.062543pt;}
._32{width:99.106908pt;}
._3b{width:101.375884pt;}
._59{width:103.179072pt;}
._50{width:104.981626pt;}
._61{width:108.708444pt;}
._7c{width:112.592636pt;}
._31{width:114.025087pt;}
._49{width:116.167382pt;}
._3f{width:120.623723pt;}
._41{width:125.607107pt;}
._60{width:128.061725pt;}
._5d{width:129.472623pt;}
._43{width:131.047817pt;}
._4b{width:135.160249pt;}
._5f{width:136.991010pt;}
._8e{width:141.642667pt;}
._5a{width:143.453329pt;}
._9a{width:150.729062pt;}
._72{width:152.947297pt;}
._4f{width:155.525604pt;}
._8f{width:157.510667pt;}
._5e{width:165.177925pt;}
._9c{width:166.641691pt;}
._62{width:173.642667pt;}
._4e{width:176.317075pt;}
._55{width:189.739191pt;}
._6c{width:193.765219pt;}
._6b{width:201.338691pt;}
._76{width:205.023298pt;}
._66{width:207.014646pt;}
._92{width:218.462587pt;}
._6a{width:220.894849pt;}
._81{width:222.349349pt;}
._58{width:224.383956pt;}
._9e{width:232.280804pt;}
._40{width:237.247579pt;}
._9f{width:239.720969pt;}
._96{width:245.121629pt;}
._68{width:259.851547pt;}
._67{width:264.424323pt;}
._93{width:274.777353pt;}
._74{width:291.258899pt;}
._7e{width:298.165066pt;}
._7a{width:319.279916pt;}
._78{width:323.335934pt;}
._98{width:331.653423pt;}
._2e{width:344.043008pt;}
._65{width:353.355886pt;}
._71{width:367.119948pt;}
._2a{width:373.904843pt;}
._7f{width:397.413945pt;}
._3e{width:399.607687pt;}
._5c{width:401.825722pt;}
._7d{width:405.893175pt;}
._64{width:419.314060pt;}
._4c{width:424.470155pt;}
._97{width:425.963526pt;}
._69{width:431.953628pt;}
._51{width:462.738138pt;}
._2c{width:475.722619pt;}
._95{width:525.500061pt;}
._77{width:562.458955pt;}
._2f{width:576.435670pt;}
._7b{width:584.756537pt;}
._2d{width:586.957541pt;}
._54{width:613.840108pt;}
._8c{width:622.336000pt;}
._9b{width:628.855106pt;}
._9d{width:642.405911pt;}
._63{width:673.194730pt;}
._34{width:692.350099pt;}
._45{width:697.984844pt;}
._4d{width:725.937746pt;}
._2b{width:750.241990pt;}
._6f{width:753.936861pt;}
._94{width:763.050647pt;}
._57{width:802.509594pt;}
._46{width:814.001541pt;}
._75{width:829.154320pt;}
._39{width:862.215685pt;}
._38{width:889.846862pt;}
._33{width:907.511505pt;}
._99{width:937.308062pt;}
._6d{width:991.644567pt;}
._91{width:1033.346399pt;}
._3c{width:1078.580077pt;}
._56{width:1131.114999pt;}
._48{width:1146.765795pt;}
._3a{width:1170.150077pt;}
._79{width:1313.415377pt;}
._42{width:1499.265489pt;}
._73{width:1557.742908pt;}
._70{width:1833.062163pt;}
._6e{width:1914.979349pt;}
.fs1{font-size:20.000000pt;}
.fs6{font-size:36.000000pt;}
.fs13{font-size:39.633672pt;}
.fs3{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs12{font-size:48.130334pt;}
.fs8{font-size:51.294279pt;}
.fs4{font-size:52.000000pt;}
.fsf{font-size:53.248932pt;}
.fsa{font-size:55.827125pt;}
.fsd{font-size:58.616602pt;}
.fs7{font-size:59.125467pt;}
.fs11{font-size:59.208927pt;}
.fsb{font-size:59.540681pt;}
.fs10{font-size:60.000000pt;}
.fsc{font-size:62.636767pt;}
.fs9{font-size:63.041061pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:65.474453pt;}
.fs5{font-size:76.133333pt;}
.fs14{font-size:84.133333pt;}
.y17b{bottom:-23.040000pt;}
.y100{bottom:-20.026667pt;}
.yd3{bottom:-18.033333pt;}
.y16f{bottom:-13.040000pt;}
.y0{bottom:0.000000pt;}
.y17a{bottom:2.000000pt;}
.y1af{bottom:3.729793pt;}
.y104{bottom:3.890482pt;}
.y16e{bottom:3.960000pt;}
.y1a0{bottom:4.616081pt;}
.yf8{bottom:4.641821pt;}
.yfa{bottom:4.641945pt;}
.y10c{bottom:4.895517pt;}
.yc4{bottom:4.927116pt;}
.yc6{bottom:4.927122pt;}
.y2c{bottom:5.000000pt;}
.y29{bottom:5.013333pt;}
.y33{bottom:5.026667pt;}
.y1bb{bottom:5.570048pt;}
.y2a{bottom:6.000000pt;}
.y36{bottom:6.026667pt;}
.y120{bottom:6.146733pt;}
.yd2{bottom:7.000000pt;}
.yb7{bottom:9.000000pt;}
.y1bd{bottom:15.719293pt;}
.y16d{bottom:19.986667pt;}
.yf7{bottom:23.240671pt;}
.y10b{bottom:24.445710pt;}
.yc3{bottom:24.668757pt;}
.y1ba{bottom:24.988114pt;}
.y11f{bottom:26.625023pt;}
.y179{bottom:27.026667pt;}
.yff{bottom:30.040000pt;}
.y16c{bottom:36.986667pt;}
.y1bf{bottom:37.943912pt;}
.yf6{bottom:41.839397pt;}
.y1b9{bottom:43.483210pt;}
.y10a{bottom:44.027805pt;}
.yc2{bottom:44.377246pt;}
.y11e{bottom:47.102769pt;}
.y178{bottom:51.026667pt;}
.y6{bottom:51.066667pt;}
.yf5{bottom:60.407177pt;}
.y1b8{bottom:61.978306pt;}
.y109{bottom:63.577479pt;}
.yc1{bottom:64.085735pt;}
.y11d{bottom:67.546556pt;}
.y5{bottom:68.066667pt;}
.y1b7{bottom:80.473403pt;}
.y108{bottom:83.127154pt;}
.yc0{bottom:83.794224pt;}
.y11c{bottom:88.024302pt;}
.yd1{bottom:94.100000pt;}
.y71{bottom:97.100000pt;}
.y8f{bottom:98.100000pt;}
.yf4{bottom:98.533018pt;}
.y1b6{bottom:98.968499pt;}
.y114{bottom:99.100000pt;}
.y132{bottom:101.100000pt;}
.y209{bottom:102.100000pt;}
.y107{bottom:102.676828pt;}
.y1e3{bottom:103.100000pt;}
.ybf{bottom:103.502713pt;}
.y27{bottom:104.100000pt;}
.y5a{bottom:105.100000pt;}
.ya6{bottom:106.100000pt;}
.y11b{bottom:108.502049pt;}
.y6d{bottom:110.100000pt;}
.y173{bottom:111.100000pt;}
.y8e{bottom:112.100000pt;}
.y26{bottom:114.100000pt;}
.yc9{bottom:115.100000pt;}
.yf3{bottom:117.131745pt;}
.y1b5{bottom:117.463595pt;}
.y82{bottom:121.133333pt;}
.y59{bottom:122.133333pt;}
.y106{bottom:122.258923pt;}
.y192{bottom:124.133333pt;}
.yd0{bottom:125.133333pt;}
.y172{bottom:127.133333pt;}
.y113{bottom:128.133333pt;}
.y11a{bottom:128.945835pt;}
.y70{bottom:130.133333pt;}
.y143{bottom:131.133333pt;}
.y1e2{bottom:132.133333pt;}
.y1ce{bottom:133.133333pt;}
.y1d7{bottom:134.133333pt;}
.y8d{bottom:135.133333pt;}
.yf2{bottom:135.730471pt;}
.y1b4{bottom:135.964846pt;}
.y85{bottom:137.133333pt;}
.y58{bottom:138.133333pt;}
.y6c{bottom:140.133333pt;}
.y105{bottom:141.807300pt;}
.yc8{bottom:142.133333pt;}
.y171{bottom:143.133333pt;}
.y8c{bottom:144.133333pt;}
.ycf{bottom:145.133333pt;}
.y6f{bottom:146.133333pt;}
.y38{bottom:147.133333pt;}
.ybd{bottom:149.133333pt;}
.y119{bottom:149.422223pt;}
.y88{bottom:153.133333pt;}
.y57{bottom:154.133333pt;}
.yf1{bottom:154.298251pt;}
.y1b3{bottom:154.453788pt;}
.y112{bottom:157.160000pt;}
.y1f5{bottom:158.160000pt;}
.y131{bottom:159.160000pt;}
.y25{bottom:160.160000pt;}
.yb5{bottom:161.160000pt;}
.y102{bottom:161.363459pt;}
.y7a{bottom:162.160000pt;}
.y84{bottom:163.160000pt;}
.ya5{bottom:164.160000pt;}
.yc7{bottom:166.160000pt;}
.y37{bottom:168.160000pt;}
.y6b{bottom:169.160000pt;}
.y118{bottom:169.906761pt;}
.y56{bottom:170.160000pt;}
.yf0{bottom:172.890788pt;}
.y1b2{bottom:172.955039pt;}
.yfe{bottom:174.173333pt;}
.ybc{bottom:176.173333pt;}
.ya3{bottom:177.173333pt;}
.y8b{bottom:178.173333pt;}
.y79{bottom:179.173333pt;}
.y6e{bottom:180.173333pt;}
.y191{bottom:182.173333pt;}
.ybe{bottom:182.253842pt;}
.yce{bottom:184.173333pt;}
.y55{bottom:187.173333pt;}
.y35{bottom:188.173333pt;}
.y24{bottom:189.173333pt;}
.y208{bottom:190.173333pt;}
.y117{bottom:190.350548pt;}
.y1e4{bottom:191.173333pt;}
.y1b1{bottom:191.443980pt;}
.yef{bottom:191.495703pt;}
.y1cd{bottom:192.173333pt;}
.ya4{bottom:193.200000pt;}
.ya2{bottom:194.200000pt;}
.y78{bottom:195.200000pt;}
.y6a{bottom:198.200000pt;}
.y170{bottom:199.200000pt;}
.y18b{bottom:200.200000pt;}
.y81{bottom:202.200000pt;}
.ycd{bottom:203.200000pt;}
.y8a{bottom:205.200000pt;}
.y34{bottom:209.200000pt;}
.y116{bottom:209.802709pt;}
.y1b0{bottom:209.969850pt;}
.yee{bottom:210.088240pt;}
.y54{bottom:210.200000pt;}
.y77{bottom:211.200000pt;}
.yfd{bottom:213.200000pt;}
.y111{bottom:216.200000pt;}
.yb4{bottom:217.200000pt;}
.y23{bottom:218.200000pt;}
.y53{bottom:220.200000pt;}
.y1d0{bottom:221.200000pt;}
.y1cc{bottom:222.200000pt;}
.y83{bottom:223.200000pt;}
.y18a{bottom:225.200000pt;}
.ya1{bottom:226.200000pt;}
.y76{bottom:227.200000pt;}
.y69{bottom:228.200000pt;}
.yed{bottom:228.656020pt;}
.y32{bottom:230.200000pt;}
.y145{bottom:232.226667pt;}
.y87{bottom:234.226667pt;}
.yd4{bottom:236.173333pt;}
.y190{bottom:241.226667pt;}
.ycc{bottom:242.226667pt;}
.ya0{bottom:243.226667pt;}
.y19e{bottom:244.226667pt;}
.y86{bottom:245.226667pt;}
.y1f4{bottom:246.226667pt;}
.y130{bottom:247.226667pt;}
.yec{bottom:247.260935pt;}
.y22{bottom:248.226667pt;}
.yb3{bottom:249.226667pt;}
.y31{bottom:250.226667pt;}
.y75{bottom:251.226667pt;}
.y52{bottom:252.226667pt;}
.y89{bottom:254.226667pt;}
.y68{bottom:257.226667pt;}
.y9f{bottom:259.226667pt;}
.y74{bottom:260.226667pt;}
.y80{bottom:261.226667pt;}
.ycb{bottom:262.226667pt;}
.y1ad{bottom:267.307726pt;}
.y30{bottom:271.266667pt;}
.y13e{bottom:272.266667pt;}
.y19d{bottom:273.266667pt;}
.y110{bottom:274.266667pt;}
.y9e{bottom:275.266667pt;}
.y21{bottom:276.266667pt;}
.yb2{bottom:278.266667pt;}
.y1cf{bottom:279.266667pt;}
.y1cb{bottom:280.266667pt;}
.y51{bottom:281.266667pt;}
.y144{bottom:283.266667pt;}
.yeb{bottom:285.386776pt;}
.y67{bottom:286.266667pt;}
.y1ac{bottom:286.719883pt;}
.y9d{bottom:291.266667pt;}
.y2f{bottom:292.266667pt;}
.y73{bottom:300.266667pt;}
.y20{bottom:301.266667pt;}
.yc5{bottom:301.549449pt;}
.y19c{bottom:303.266667pt;}
.yea{bottom:303.979313pt;}
.y10f{bottom:304.266667pt;}
.y1ab{bottom:305.221134pt;}
.y12f{bottom:306.266667pt;}
.yb1{bottom:308.293333pt;}
.y1d6{bottom:309.293333pt;}
.y72{bottom:310.293333pt;}
.y50{bottom:311.293333pt;}
.yfc{bottom:311.465681pt;}
.y2e{bottom:312.293333pt;}
.y9c{bottom:315.293333pt;}
.y66{bottom:316.293333pt;}
.y7f{bottom:320.293333pt;}
.ye9{bottom:322.547093pt;}
.y1aa{bottom:323.710076pt;}
.y9b{bottom:325.293333pt;}
.y1f{bottom:326.293333pt;}
.y13d{bottom:330.293333pt;}
.y19b{bottom:332.293333pt;}
.y2d{bottom:333.293333pt;}
.y1f3{bottom:334.293333pt;}
.y12e{bottom:335.293333pt;}
.yb0{bottom:337.293333pt;}
.y1d5{bottom:338.293333pt;}
.y1ca{bottom:339.293333pt;}
.y4f{bottom:340.293333pt;}
.ye8{bottom:341.152009pt;}
.y1a9{bottom:342.211327pt;}
.y65{bottom:345.333333pt;}
.y1e{bottom:350.333333pt;}
.y2b{bottom:354.333333pt;}
.yca{bottom:359.333333pt;}
.ye7{bottom:359.744546pt;}
.y1a8{bottom:360.700268pt;}
.y19a{bottom:361.333333pt;}
.y1f2{bottom:363.333333pt;}
.y12d{bottom:364.333333pt;}
.yaf{bottom:366.333333pt;}
.y1c9{bottom:368.333333pt;}
.y4e{bottom:369.333333pt;}
.y1d{bottom:374.333333pt;}
.y10e{bottom:376.333333pt;}
.ye6{bottom:378.349461pt;}
.y1a7{bottom:379.226138pt;}
.y7e{bottom:379.333333pt;}
.y13c{bottom:389.373333pt;}
.y199{bottom:391.373333pt;}
.y1f1{bottom:392.373333pt;}
.y12c{bottom:394.373333pt;}
.y28{bottom:395.360000pt;}
.y207{bottom:395.373333pt;}
.yae{bottom:396.373333pt;}
.ye5{bottom:396.917241pt;}
.y1d4{bottom:397.373333pt;}
.y1a6{bottom:397.727389pt;}
.y1c8{bottom:398.373333pt;}
.y4d{bottom:399.373333pt;}
.y1c{bottom:402.373333pt;}
.y64{bottom:403.373333pt;}
.y7d{bottom:408.373333pt;}
.y142{bottom:415.373333pt;}
.ye4{bottom:415.509778pt;}
.y1a5{bottom:416.216331pt;}
.y13b{bottom:418.373333pt;}
.y12b{bottom:420.373333pt;}
.y1f0{bottom:421.400000pt;}
.y158{bottom:423.400000pt;}
.yad{bottom:425.400000pt;}
.y1d3{bottom:426.400000pt;}
.y10d{bottom:427.400000pt;}
.y4c{bottom:428.400000pt;}
.y1b{bottom:431.400000pt;}
.y63{bottom:433.400000pt;}
.ye3{bottom:434.114693pt;}
.y1a4{bottom:434.717582pt;}
.y7c{bottom:435.400000pt;}
.y16a{bottom:438.400000pt;}
.y141{bottom:440.400000pt;}
.y101{bottom:442.507086pt;}
.y12a{bottom:444.400000pt;}
.y13a{bottom:447.400000pt;}
.y198{bottom:449.400000pt;}
.y1ef{bottom:451.400000pt;}
.y157{bottom:452.400000pt;}
.ye2{bottom:452.707230pt;}
.y1a3{bottom:453.206523pt;}
.yac{bottom:454.400000pt;}
.y1df{bottom:455.400000pt;}
.y1c7{bottom:456.400000pt;}
.y4b{bottom:457.400000pt;}
.y7b{bottom:459.440000pt;}
.y1a{bottom:460.440000pt;}
.y62{bottom:462.440000pt;}
.y140{bottom:464.440000pt;}
.y169{bottom:467.440000pt;}
.y115{bottom:470.521052pt;}
.ye1{bottom:471.275010pt;}
.y1a2{bottom:471.707774pt;}
.y139{bottom:477.440000pt;}
.y197{bottom:478.440000pt;}
.y1ee{bottom:480.440000pt;}
.y156{bottom:482.440000pt;}
.yab{bottom:483.440000pt;}
.y1de{bottom:485.440000pt;}
.y4a{bottom:486.440000pt;}
.y13f{bottom:488.440000pt;}
.ye0{bottom:489.879925pt;}
.y19{bottom:490.440000pt;}
.y1a1{bottom:490.699757pt;}
.y61{bottom:491.440000pt;}
.y1be{bottom:491.622975pt;}
.y168{bottom:496.466667pt;}
.yfb{bottom:498.313249pt;}
.y138{bottom:506.466667pt;}
.y189{bottom:508.466667pt;}
.ydf{bottom:508.472462pt;}
.y1ed{bottom:509.466667pt;}
.y155{bottom:511.466667pt;}
.yaa{bottom:513.466667pt;}
.y1dd{bottom:514.466667pt;}
.y1c6{bottom:515.466667pt;}
.y49{bottom:516.466667pt;}
.y18{bottom:519.466667pt;}
.y60{bottom:521.466667pt;}
.y167{bottom:523.466667pt;}
.y177{bottom:525.466667pt;}
.yde{bottom:527.077378pt;}
.y188{bottom:532.466667pt;}
.y137{bottom:535.506667pt;}
.y160{bottom:537.506667pt;}
.y1ec{bottom:539.506667pt;}
.y154{bottom:540.506667pt;}
.ya9{bottom:542.506667pt;}
.y1dc{bottom:543.506667pt;}
.y1c5{bottom:544.506667pt;}
.y48{bottom:545.506667pt;}
.ydd{bottom:545.645157pt;}
.y166{bottom:547.506667pt;}
.y17{bottom:548.506667pt;}
.y5f{bottom:550.506667pt;}
.y176{bottom:552.506667pt;}
.y1fc{bottom:555.506667pt;}
.y187{bottom:557.506667pt;}
.y136{bottom:562.506667pt;}
.y196{bottom:563.506667pt;}
.y16b{bottom:563.546667pt;}
.ydc{bottom:564.237694pt;}
.y15f{bottom:564.506667pt;}
.y1eb{bottom:568.506667pt;}
.y153{bottom:569.506667pt;}
.ya8{bottom:571.506667pt;}
.y1c4{bottom:573.533333pt;}
.y47{bottom:574.533333pt;}
.y175{bottom:576.533333pt;}
.y16{bottom:578.533333pt;}
.y5e{bottom:579.533333pt;}
.y186{bottom:581.533333pt;}
.ydb{bottom:582.842610pt;}
.y1fb{bottom:584.533333pt;}
.y135{bottom:586.533333pt;}
.y195{bottom:588.533333pt;}
.y15e{bottom:591.533333pt;}
.y174{bottom:594.533333pt;}
.y165{bottom:596.533333pt;}
.y1ea{bottom:597.533333pt;}
.ya7{bottom:598.533333pt;}
.y152{bottom:599.533333pt;}
.y103{bottom:599.980063pt;}
.y206{bottom:600.533333pt;}
.yda{bottom:601.435147pt;}
.y1db{bottom:602.533333pt;}
.y1c3{bottom:603.533333pt;}
.y46{bottom:604.533333pt;}
.y185{bottom:606.533333pt;}
.y15{bottom:607.533333pt;}
.y5d{bottom:608.533333pt;}
.y134{bottom:610.560000pt;}
.ybb{bottom:611.560000pt;}
.y164{bottom:613.560000pt;}
.y15d{bottom:618.560000pt;}
.yd9{bottom:620.040062pt;}
.y1e9{bottom:627.560000pt;}
.y151{bottom:628.560000pt;}
.y184{bottom:630.560000pt;}
.y1da{bottom:631.560000pt;}
.yba{bottom:632.560000pt;}
.y45{bottom:633.560000pt;}
.y133{bottom:635.560000pt;}
.y14{bottom:636.560000pt;}
.y5c{bottom:638.560000pt;}
.yd8{bottom:638.607842pt;}
.y1fa{bottom:643.560000pt;}
.y15c{bottom:645.560000pt;}
.y163{bottom:652.600000pt;}
.yb9{bottom:653.600000pt;}
.y150{bottom:654.600000pt;}
.yd7{bottom:657.200379pt;}
.y18f{bottom:657.600000pt;}
.y205{bottom:659.600000pt;}
.y1d9{bottom:660.600000pt;}
.y1c2{bottom:661.600000pt;}
.y44{bottom:662.600000pt;}
.y5b{bottom:664.600000pt;}
.y13{bottom:665.600000pt;}
.y15b{bottom:672.600000pt;}
.yb8{bottom:673.600000pt;}
.yd6{bottom:675.805294pt;}
.y14f{bottom:679.600000pt;}
.y18e{bottom:687.626667pt;}
.y204{bottom:688.626667pt;}
.y1e8{bottom:690.626667pt;}
.y43{bottom:691.626667pt;}
.yd5{bottom:694.397831pt;}
.yb6{bottom:694.626667pt;}
.y12{bottom:695.626667pt;}
.y15a{bottom:698.626667pt;}
.y1f9{bottom:701.626667pt;}
.y14e{bottom:703.626667pt;}
.y162{bottom:711.626667pt;}
.y1ae{bottom:714.517849pt;}
.y129{bottom:716.626667pt;}
.y9a{bottom:718.626667pt;}
.y1c1{bottom:720.626667pt;}
.y42{bottom:721.626667pt;}
.y11{bottom:724.666667pt;}
.y159{bottom:725.666667pt;}
.y14d{bottom:728.666667pt;}
.y161{bottom:731.666667pt;}
.y99{bottom:742.666667pt;}
.y128{bottom:745.666667pt;}
.y203{bottom:747.666667pt;}
.y1c0{bottom:749.666667pt;}
.y41{bottom:750.666667pt;}
.y14c{bottom:752.666667pt;}
.y1bc{bottom:753.391402pt;}
.y10{bottom:753.666667pt;}
.y1f8{bottom:760.666667pt;}
.y98{bottom:767.706667pt;}
.y183{bottom:770.706667pt;}
.y127{bottom:774.706667pt;}
.y14b{bottom:776.706667pt;}
.y1e5{bottom:778.706667pt;}
.y40{bottom:779.706667pt;}
.yf{bottom:783.706667pt;}
.y182{bottom:789.706667pt;}
.y97{bottom:791.706667pt;}
.y14a{bottom:801.733333pt;}
.ye{bottom:802.733333pt;}
.y126{bottom:804.733333pt;}
.y202{bottom:806.733333pt;}
.y1d2{bottom:808.733333pt;}
.y3f{bottom:809.733333pt;}
.y96{bottom:816.733333pt;}
.y1f7{bottom:818.733333pt;}
.yd{bottom:822.733333pt;}
.y149{bottom:825.733333pt;}
.y181{bottom:828.733333pt;}
.y125{bottom:833.733333pt;}
.y201{bottom:835.733333pt;}
.y1d1{bottom:837.733333pt;}
.y3e{bottom:838.773333pt;}
.y95{bottom:840.773333pt;}
.yc{bottom:842.773333pt;}
.y180{bottom:848.773333pt;}
.y148{bottom:850.773333pt;}
.y194{bottom:859.773333pt;}
.y124{bottom:862.773333pt;}
.yb{bottom:864.773333pt;}
.y1d8{bottom:866.773333pt;}
.y3d{bottom:867.773333pt;}
.y147{bottom:874.773333pt;}
.y1f6{bottom:879.800000pt;}
.ya{bottom:885.800000pt;}
.y17f{bottom:887.800000pt;}
.y94{bottom:889.800000pt;}
.y123{bottom:892.800000pt;}
.y200{bottom:893.800000pt;}
.y18d{bottom:894.800000pt;}
.y1e1{bottom:896.800000pt;}
.y3c{bottom:897.800000pt;}
.y146{bottom:899.800000pt;}
.y17e{bottom:906.800000pt;}
.y93{bottom:913.800000pt;}
.y9{bottom:916.840000pt;}
.y193{bottom:918.840000pt;}
.y122{bottom:921.840000pt;}
.y1ff{bottom:923.840000pt;}
.y1e0{bottom:925.840000pt;}
.y3b{bottom:926.840000pt;}
.y18c{bottom:928.840000pt;}
.y92{bottom:938.840000pt;}
.y1fe{bottom:942.840000pt;}
.yf9{bottom:945.425388pt;}
.y17d{bottom:945.840000pt;}
.y8{bottom:947.840000pt;}
.y121{bottom:950.840000pt;}
.y1e7{bottom:954.866667pt;}
.y3a{bottom:955.866667pt;}
.y91{bottom:962.866667pt;}
.y17c{bottom:965.866667pt;}
.y19f{bottom:976.280392pt;}
.y7{bottom:981.866667pt;}
.y1fd{bottom:982.866667pt;}
.y1e6{bottom:983.866667pt;}
.y39{bottom:984.866667pt;}
.y90{bottom:986.866667pt;}
.y4{bottom:1004.893333pt;}
.y3{bottom:1019.893333pt;}
.y2{bottom:1028.933333pt;}
.y1{bottom:1033.933333pt;}
.h3{height:14.746094pt;}
.h32{height:18.495096pt;}
.h21{height:18.598726pt;}
.hd{height:19.000000pt;}
.h2e{height:19.418312pt;}
.h26{height:19.549674pt;}
.h1b{height:19.708489pt;}
.h1d{height:19.941333pt;}
.h10{height:20.000000pt;}
.hf{height:20.033333pt;}
.h17{height:28.000000pt;}
.h34{height:28.776987pt;}
.hc{height:29.689453pt;}
.h5{height:32.441406pt;}
.h16{height:34.658203pt;}
.h4{height:35.859375pt;}
.he{height:37.755859pt;}
.h15{height:39.585938pt;}
.h31{height:39.693425pt;}
.h1f{height:40.534636pt;}
.h1a{height:42.302753pt;}
.h7{height:42.656250pt;}
.h6{height:42.884766pt;}
.h2f{height:42.990075pt;}
.h23{height:43.000000pt;}
.h22{height:43.230953pt;}
.h2a{height:43.914769pt;}
.h25{height:45.478942pt;}
.h1c{height:45.772489pt;}
.h12{height:45.937500pt;}
.h20{height:46.041022pt;}
.h9{height:46.468750pt;}
.h2{height:47.187500pt;}
.h29{height:47.539312pt;}
.h27{height:48.341524pt;}
.h19{height:48.761188pt;}
.h2b{height:49.482422pt;}
.h2c{height:50.000000pt;}
.ha{height:52.781250pt;}
.h36{height:53.447806pt;}
.h8{height:55.278451pt;}
.h38{height:61.087044pt;}
.h2d{height:64.066667pt;}
.h11{height:64.287109pt;}
.hb{height:64.393776pt;}
.h14{height:64.447109pt;}
.h13{height:65.781915pt;}
.h37{height:86.475809pt;}
.h18{height:139.003581pt;}
.h24{height:177.016951pt;}
.h33{height:221.978083pt;}
.h28{height:226.172123pt;}
.h35{height:241.390241pt;}
.h30{height:504.999217pt;}
.h1e{height:727.856819pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w16{width:13.203901pt;}
.w6{width:49.066667pt;}
.w11{width:54.168324pt;}
.w5{width:61.100000pt;}
.w1{width:66.100000pt;}
.w2{width:70.066667pt;}
.w7{width:76.066667pt;}
.w8{width:87.100000pt;}
.w4{width:130.133333pt;}
.w9{width:146.160000pt;}
.wc{width:511.626667pt;}
.w3{width:552.666667pt;}
.w13{width:622.800000pt;}
.w14{width:623.800000pt;}
.w10{width:629.040404pt;}
.wf{width:637.800000pt;}
.wb{width:642.119002pt;}
.wa{width:642.914689pt;}
.w12{width:646.567462pt;}
.we{width:652.612727pt;}
.wd{width:653.541052pt;}
.w15{width:671.610579pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:1.591373pt;}
.x8{left:4.040000pt;}
.xa{left:5.000000pt;}
.x20{left:9.026667pt;}
.x2d{left:10.033333pt;}
.x2f{left:15.181190pt;}
.x19{left:17.531626pt;}
.x22{left:38.123228pt;}
.x31{left:67.952853pt;}
.x2b{left:71.552464pt;}
.x2c{left:84.100000pt;}
.x2e{left:86.100000pt;}
.x18{left:87.562353pt;}
.x2{left:95.133333pt;}
.x12{left:97.100000pt;}
.x25{left:98.133333pt;}
.x21{left:99.294992pt;}
.x27{left:104.133333pt;}
.xc{left:119.133333pt;}
.x11{left:121.166667pt;}
.x26{left:123.166667pt;}
.x5{left:142.160000pt;}
.xd{left:143.160000pt;}
.x1b{left:155.349831pt;}
.x1f{left:170.213333pt;}
.x1d{left:186.240000pt;}
.x1e{left:189.240000pt;}
.x2a{left:194.240000pt;}
.xf{left:207.266667pt;}
.x10{left:210.266667pt;}
.xe{left:211.266667pt;}
.x4{left:229.306667pt;}
.x13{left:251.306667pt;}
.x1{left:284.360000pt;}
.x24{left:294.712357pt;}
.x30{left:308.105659pt;}
.x14{left:312.400000pt;}
.x23{left:314.207190pt;}
.x7{left:329.400000pt;}
.x32{left:341.440000pt;}
.x15{left:362.466667pt;}
.x9{left:395.506667pt;}
.x1c{left:421.533333pt;}
.x16{left:439.573333pt;}
.x6{left:475.600000pt;}
.x29{left:480.752885pt;}
.x28{left:520.582778pt;}
.x17{left:527.666667pt;}
.xb{left:686.866667pt;}
.x3{left:693.866667pt;}
}




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