
    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_b8bb07a13c9bac9d2a6b885f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.890137;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_30c56e4e340517addca9539b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7ea974b1cd11470b3b40105a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7b2d36a03252acf5c65ab59e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_dfa75bac17511dc97962e652.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_799b8701a23a2d9e13f7b87a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e7aeb6b1a1e5c71f817b832.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3d73487fee7a954d11f90d6a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.939941;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_46c2c0377eaab2237cbb3970.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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_4195de08d28130daee4e415a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_b1f425490a106d1150b203df.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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_c10fb345c2832f9280d6e7b8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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:fff;src:url('chunks/assets/font_158d56b1efc662df7ab5af95.woff')format("woff");}.fff{font-family:fff;line-height:0.916992;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:ff10;src:url('chunks/assets/font_44e9a3c38facb7591bcb1e50.woff')format("woff");}.ff10{font-family:ff10;line-height:0.952148;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:ff11;src:url('chunks/assets/font_ab47c727a059b6cb0b26cf75.woff')format("woff");}.ff11{font-family:ff11;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_97fe7809f188ee0d045db326.woff')format("woff");}.ff12{font-family:ff12;line-height:0.922363;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:ff13;src:url('chunks/assets/font_2f42c40cac87132d5063a634.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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;}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls1{letter-spacing:0.073080px;}
.ls11{letter-spacing:0.208948px;}
.lse{letter-spacing:0.254220px;}
.ls12{letter-spacing:0.308220px;}
.lsc{letter-spacing:0.486180px;}
.ls6{letter-spacing:0.558600px;}
.ls9{letter-spacing:0.793020px;}
.lsa{letter-spacing:1.206600px;}
.ls8{letter-spacing:1.336019px;}
.lsb{letter-spacing:1.513439px;}
.lsf{letter-spacing:1.550219px;}
.ls10{letter-spacing:1.636079px;}
.ls7{letter-spacing:7.175997px;}
.lsd{letter-spacing:9.337196px;}
.ls5{letter-spacing:25.186310px;}
.ls4{letter-spacing:25.906730px;}
.ls3{letter-spacing:30.229188px;}
.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;}
}
.ws2{word-spacing:-19.151992px;}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.ws3{word-spacing:-17.639993px;}
.ws8{word-spacing:-13.924943px;}
.ws7{word-spacing:-13.715995px;}
.ws4{word-spacing:-13.013995px;}
.ws6{word-spacing:-8.675997px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._c{margin-left:-468.216941px;}
._3{margin-left:-277.545825px;}
._b{margin-left:-229.327439px;}
._6{margin-left:-219.254252px;}
._9{margin-left:-211.190256px;}
._1{margin-left:-90.563177px;}
._a{margin-left:-68.874927px;}
._8{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._45{margin-left:-2.743048px;}
._2{margin-left:-1.684403px;}
._4{width:1.236066px;}
._f{width:3.011845px;}
._10{width:4.474087px;}
._12{width:5.855132px;}
._11{width:6.923790px;}
._19{width:8.776008px;}
._e{width:9.954245px;}
._d{width:11.924614px;}
._15{width:14.160545px;}
._16{width:15.176341px;}
._2e{width:16.273886px;}
._13{width:17.508995px;}
._14{width:18.661479px;}
._1b{width:19.998473px;}
._1c{width:21.818833px;}
._26{width:23.044722px;}
._1d{width:24.650603px;}
._2a{width:25.956340px;}
._2b{width:27.088428px;}
._1a{width:28.214549px;}
._20{width:29.578512px;}
._28{width:30.600347px;}
._21{width:31.723056px;}
._31{width:32.909047px;}
._2c{width:33.936771px;}
._2d{width:35.819940px;}
._24{width:37.407427px;}
._2f{width:38.412064px;}
._23{width:39.570428px;}
._22{width:40.606204px;}
._29{width:41.783810px;}
._1e{width:43.177205px;}
._1f{width:44.391582px;}
._27{width:45.738922px;}
._42{width:46.794268px;}
._17{width:48.124025px;}
._18{width:49.227520px;}
._43{width:50.261865px;}
._39{width:52.832787px;}
._34{width:54.094459px;}
._35{width:55.451370px;}
._30{width:56.999256px;}
._33{width:58.121541px;}
._40{width:59.718604px;}
._46{width:61.136391px;}
._47{width:62.459901px;}
._41{width:64.964903px;}
._3f{width:66.140711px;}
._37{width:67.589485px;}
._36{width:69.173318px;}
._3d{width:72.970738px;}
._3a{width:74.589951px;}
._38{width:79.966049px;}
._32{width:81.077968px;}
._3e{width:89.178017px;}
._48{width:97.686548px;}
._44{width:98.763397px;}
._3b{width:99.932730px;}
._25{width:115.908861px;}
._3c{width:118.969509px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fsa{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fs5{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y4d{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.yf4{bottom:3.059049px;}
.yf6{bottom:3.059055px;}
.yf8{bottom:3.059061px;}
.yfa{bottom:3.059067px;}
.yff{bottom:3.059103px;}
.y1e{bottom:3.059105px;}
.y101{bottom:3.059109px;}
.ye0{bottom:3.059115px;}
.y103{bottom:3.059122px;}
.y108{bottom:3.059157px;}
.y10b{bottom:3.059163px;}
.y10d{bottom:3.059170px;}
.y110{bottom:3.059176px;}
.y113{bottom:3.059182px;}
.y116{bottom:3.059188px;}
.y119{bottom:3.059195px;}
.y11c{bottom:3.059201px;}
.ye4{bottom:3.059222px;}
.y121{bottom:3.059227px;}
.ye7{bottom:3.059231px;}
.y124{bottom:3.059240px;}
.y127{bottom:3.059246px;}
.yd0{bottom:3.059251px;}
.y12a{bottom:3.059258px;}
.yd2{bottom:3.059260px;}
.yd5{bottom:3.059269px;}
.yf{bottom:3.239038px;}
.y14{bottom:3.239056px;}
.y19{bottom:3.599088px;}
.y1c{bottom:3.599092px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y11{bottom:4.859046px;}
.y16{bottom:4.859064px;}
.y48{bottom:6.478948px;}
.y91{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.y196{bottom:117.119953px;}
.yc0{bottom:121.439951px;}
.yc2{bottom:121.440251px;}
.y7a{bottom:121.619951px;}
.yf2{bottom:123.420251px;}
.y3b{bottom:124.139950px;}
.yc1{bottom:125.220250px;}
.yde{bottom:126.839949px;}
.y134{bottom:130.259948px;}
.y46{bottom:130.619948px;}
.y16e{bottom:132.779947px;}
.y195{bottom:140.699944px;}
.ybf{bottom:144.479942px;}
.y79{bottom:144.659942px;}
.y3a{bottom:144.839942px;}
.yf1{bottom:146.460241px;}
.y8d{bottom:147.179941px;}
.ydd{bottom:149.879940px;}
.y133{bottom:153.119939px;}
.y45{bottom:153.659939px;}
.y16d{bottom:157.259937px;}
.y194{bottom:164.279934px;}
.y39{bottom:165.539934px;}
.ybe{bottom:167.519933px;}
.y78{bottom:167.699933px;}
.yf0{bottom:168.239933px;}
.y44{bottom:170.219932px;}
.ydc{bottom:172.919931px;}
.y132{bottom:176.159930px;}
.y16c{bottom:181.559927px;}
.y38{bottom:186.239926px;}
.y193{bottom:187.859925px;}
.ybd{bottom:190.379924px;}
.y77{bottom:190.559924px;}
.y43{bottom:190.919924px;}
.y8c{bottom:193.259923px;}
.ydb{bottom:195.779922px;}
.y131{bottom:199.199920px;}
.y16b{bottom:206.039918px;}
.y37{bottom:206.939917px;}
.y42{bottom:211.619915px;}
.ybc{bottom:213.419915px;}
.y76{bottom:213.599915px;}
.y8e{bottom:214.859914px;}
.y8b{bottom:216.119914px;}
.yda{bottom:218.819912px;}
.y130{bottom:222.239911px;}
.y36{bottom:227.639909px;}
.y16a{bottom:230.519908px;}
.y41{bottom:232.319907px;}
.y192{bottom:235.199906px;}
.ybb{bottom:236.459905px;}
.y75{bottom:236.639905px;}
.yef{bottom:236.999905px;}
.y8a{bottom:239.159904px;}
.yd9{bottom:241.859903px;}
.y12f{bottom:245.279902px;}
.y35{bottom:248.339901px;}
.y40{bottom:253.019899px;}
.y169{bottom:254.819898px;}
.y191{bottom:258.779896px;}
.yba{bottom:259.499896px;}
.y74{bottom:259.679896px;}
.yee{bottom:260.399896px;}
.y143{bottom:260.939896px;}
.y89{bottom:262.199895px;}
.yd8{bottom:264.899894px;}
.y12e{bottom:268.319893px;}
.y34{bottom:269.039892px;}
.y3f{bottom:273.719891px;}
.y168{bottom:279.299888px;}
.yb9{bottom:282.539887px;}
.y73{bottom:282.719887px;}
.yed{bottom:283.619887px;}
.yd7{bottom:284.159886px;}
.y88{bottom:285.239886px;}
.y33{bottom:289.739884px;}
.y12d{bottom:291.179884px;}
.y3e{bottom:294.419882px;}
.yd6{bottom:303.239879px;}
.y167{bottom:303.779878px;}
.yb8{bottom:305.579878px;}
.y72{bottom:305.759878px;}
.y190{bottom:306.119878px;}
.yec{bottom:307.019877px;}
.y87{bottom:308.279877px;}
.y12c{bottom:314.219874px;}
.y3d{bottom:315.119874px;}
.y32{bottom:316.919873px;}
.yd4{bottom:323.220600px;}
.yd3{bottom:326.279869px;}
.y166{bottom:328.079869px;}
.yb7{bottom:328.439869px;}
.y71{bottom:328.619869px;}
.y18f{bottom:329.879868px;}
.yeb{bottom:330.239868px;}
.y86{bottom:331.319867px;}
.y3c{bottom:335.819866px;}
.y12b{bottom:337.259865px;}
.y31{bottom:339.959864px;}
.yd1{bottom:346.260600px;}
.yb5{bottom:351.479859px;}
.y70{bottom:351.659859px;}
.y129{bottom:351.660600px;}
.y165{bottom:352.559859px;}
.y18e{bottom:353.459859px;}
.yea{bottom:353.639859px;}
.y85{bottom:354.179858px;}
.yb6{bottom:355.259858px;}
.y30{bottom:356.159858px;}
.y2f{bottom:359.939856px;}
.y128{bottom:366.960600px;}
.ycf{bottom:369.120600px;}
.yb3{bottom:374.519850px;}
.y6f{bottom:374.699850px;}
.ye9{bottom:376.859849px;}
.y164{bottom:377.039849px;}
.y84{bottom:377.219849px;}
.yb4{bottom:378.299849px;}
.y2e{bottom:380.459848px;}
.y126{bottom:382.260600px;}
.yb2{bottom:397.559841px;}
.y123{bottom:397.560600px;}
.y6e{bottom:397.739841px;}
.ye8{bottom:399.899840px;}
.y83{bottom:400.259840px;}
.y18d{bottom:400.799840px;}
.y163{bottom:401.339839px;}
.y2d{bottom:403.499839px;}
.y125{bottom:404.399838px;}
.y122{bottom:416.819833px;}
.ye6{bottom:419.880600px;}
.yb1{bottom:420.599832px;}
.y6d{bottom:420.779832px;}
.ye5{bottom:422.939831px;}
.y82{bottom:423.299831px;}
.y18c{bottom:424.379830px;}
.y162{bottom:425.819830px;}
.y2c{bottom:426.359829px;}
.y120{bottom:429.060600px;}
.ye3{bottom:442.740600px;}
.yb0{bottom:443.639823px;}
.y6c{bottom:443.819822px;}
.y81{bottom:446.339821px;}
.y18b{bottom:447.959821px;}
.y2b{bottom:449.399820px;}
.y161{bottom:450.119820px;}
.y11f{bottom:457.499817px;}
.yaf{bottom:466.499813px;}
.y6b{bottom:466.679813px;}
.y80{bottom:469.379812px;}
.y18a{bottom:471.719811px;}
.y2a{bottom:472.439811px;}
.y160{bottom:474.599810px;}
.y11e{bottom:480.539808px;}
.yae{bottom:489.539804px;}
.y6a{bottom:489.719804px;}
.y7f{bottom:492.239803px;}
.y11b{bottom:495.120600px;}
.y189{bottom:495.299802px;}
.y29{bottom:495.479802px;}
.y11d{bottom:498.179801px;}
.y15f{bottom:499.079800px;}
.y118{bottom:510.600600px;}
.yad{bottom:512.579795px;}
.y69{bottom:512.759795px;}
.y11a{bottom:513.659795px;}
.y7e{bottom:515.279794px;}
.y28{bottom:518.519793px;}
.y188{bottom:519.059792px;}
.y15e{bottom:523.379791px;}
.y115{bottom:526.080600px;}
.y117{bottom:529.139788px;}
.yac{bottom:535.619786px;}
.y68{bottom:535.799786px;}
.y7d{bottom:538.319785px;}
.y27{bottom:541.559783px;}
.y112{bottom:541.740600px;}
.y187{bottom:542.639783px;}
.y114{bottom:544.799782px;}
.y15d{bottom:547.859781px;}
.y10f{bottom:557.220600px;}
.yab{bottom:558.659777px;}
.y67{bottom:558.839776px;}
.y111{bottom:560.279776px;}
.y7c{bottom:561.359775px;}
.y26{bottom:564.419774px;}
.y186{bottom:566.219774px;}
.y15c{bottom:572.339771px;}
.y10c{bottom:572.700600px;}
.y10e{bottom:575.759770px;}
.yaa{bottom:581.519767px;}
.y66{bottom:581.699767px;}
.y7b{bottom:582.959767px;}
.y142{bottom:584.399766px;}
.y25{bottom:587.459765px;}
.y10a{bottom:588.720600px;}
.y185{bottom:589.979764px;}
.y109{bottom:591.779763px;}
.y15b{bottom:596.639761px;}
.y107{bottom:604.200600px;}
.ya9{bottom:604.559758px;}
.y65{bottom:604.739758px;}
.y141{bottom:607.439757px;}
.y24{bottom:610.499756px;}
.y184{bottom:613.559755px;}
.y15a{bottom:621.119752px;}
.ya8{bottom:627.599749px;}
.y64{bottom:627.779749px;}
.yce{bottom:628.859748px;}
.y140{bottom:630.299748px;}
.y106{bottom:632.639747px;}
.y23{bottom:633.539747px;}
.y183{bottom:637.139745px;}
.y159{bottom:645.599742px;}
.ya7{bottom:650.639740px;}
.y63{bottom:650.819740px;}
.y13f{bottom:653.339739px;}
.y105{bottom:655.679738px;}
.y22{bottom:656.579737px;}
.y182{bottom:660.899736px;}
.ye2{bottom:665.579734px;}
.y158{bottom:669.899732px;}
.ya6{bottom:673.679731px;}
.y62{bottom:673.859730px;}
.y144{bottom:675.119730px;}
.y13e{bottom:676.379729px;}
.y104{bottom:678.719729px;}
.y21{bottom:679.439728px;}
.y181{bottom:684.479726px;}
.ye1{bottom:688.619725px;}
.y102{bottom:692.940600px;}
.y157{bottom:694.379722px;}
.ya5{bottom:696.719721px;}
.y61{bottom:696.899721px;}
.y13d{bottom:699.419720px;}
.y20{bottom:703.379719px;}
.y180{bottom:708.239717px;}
.ydf{bottom:708.420600px;}
.y156{bottom:718.679713px;}
.ya4{bottom:719.579712px;}
.y60{bottom:719.759712px;}
.y13c{bottom:722.459711px;}
.y100{bottom:723.720600px;}
.y17f{bottom:731.819707px;}
.y1d{bottom:733.980600px;}
.y1f{bottom:737.039705px;}
.yfe{bottom:739.740600px;}
.ya3{bottom:742.619703px;}
.y5f{bottom:742.799703px;}
.y155{bottom:743.159703px;}
.y13b{bottom:745.319702px;}
.y17e{bottom:755.399698px;}
.ya2{bottom:765.659694px;}
.y5e{bottom:765.839694px;}
.y154{bottom:767.639693px;}
.y1b{bottom:767.640600px;}
.yfd{bottom:768.359693px;}
.y1a{bottom:771.239692px;}
.y18{bottom:776.640600px;}
.y17d{bottom:779.159688px;}
.ya1{bottom:788.699685px;}
.y5d{bottom:788.879684px;}
.yfc{bottom:791.219684px;}
.y13a{bottom:791.399683px;}
.y153{bottom:791.939683px;}
.y17c{bottom:802.739679px;}
.y17{bottom:810.479676px;}
.ya0{bottom:811.739675px;}
.y5c{bottom:811.919675px;}
.yfb{bottom:814.259674px;}
.y139{bottom:814.439674px;}
.y152{bottom:816.419673px;}
.y17b{bottom:826.319669px;}
.yf9{bottom:828.660600px;}
.y9f{bottom:834.779666px;}
.y5b{bottom:834.959666px;}
.y15{bottom:836.220600px;}
.y138{bottom:837.479665px;}
.y151{bottom:840.899664px;}
.yf7{bottom:843.960600px;}
.y17a{bottom:850.079660px;}
.y13{bottom:856.560600px;}
.y9e{bottom:857.639657px;}
.y5a{bottom:857.819657px;}
.yf5{bottom:859.260600px;}
.y137{bottom:860.519656px;}
.y150{bottom:865.199654px;}
.y179{bottom:873.659651px;}
.yf3{bottom:875.460600px;}
.y10{bottom:880.500600px;}
.y9d{bottom:880.679648px;}
.y59{bottom:880.859648px;}
.y136{bottom:882.119647px;}
.y14f{bottom:889.679644px;}
.y12{bottom:890.579644px;}
.y178{bottom:897.419641px;}
.ye{bottom:900.840600px;}
.y9c{bottom:903.719639px;}
.y58{bottom:903.899638px;}
.y14e{bottom:914.159634px;}
.y177{bottom:920.999632px;}
.y9b{bottom:926.759629px;}
.y57{bottom:926.939629px;}
.ycd{bottom:930.539628px;}
.y135{bottom:930.719628px;}
.yd{bottom:934.319626px;}
.y14d{bottom:938.459625px;}
.y176{bottom:944.579622px;}
.y9a{bottom:949.799620px;}
.y56{bottom:949.979620px;}
.ycc{bottom:953.579619px;}
.y14c{bottom:962.939615px;}
.y175{bottom:968.339613px;}
.y99{bottom:972.839611px;}
.y55{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.ycb{bottom:976.619609px;}
.y14b{bottom:987.239605px;}
.y174{bottom:991.919603px;}
.y98{bottom:995.699602px;}
.y54{bottom:995.879602px;}
.yb{bottom:999.299600px;}
.yca{bottom:999.479600px;}
.y14a{bottom:1011.719595px;}
.y173{bottom:1015.499594px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y97{bottom:1018.739593px;}
.y53{bottom:1018.919592px;}
.yc9{bottom:1022.519591px;}
.y149{bottom:1036.199586px;}
.y172{bottom:1039.259584px;}
.y96{bottom:1041.779583px;}
.y52{bottom:1041.959583px;}
.yc8{bottom:1045.559582px;}
.y4c{bottom:1051.500600px;}
.y148{bottom:1060.499576px;}
.y171{bottom:1062.839575px;}
.y95{bottom:1064.819574px;}
.y51{bottom:1064.999574px;}
.y4b{bottom:1066.979573px;}
.yc7{bottom:1068.599573px;}
.y147{bottom:1084.979566px;}
.y170{bottom:1086.599565px;}
.y4a{bottom:1087.319565px;}
.y94{bottom:1087.859565px;}
.y50{bottom:1088.039565px;}
.yc6{bottom:1091.639563px;}
.y49{bottom:1107.659557px;}
.y146{bottom:1109.459556px;}
.y16f{bottom:1110.179556px;}
.y93{bottom:1110.719556px;}
.y4f{bottom:1110.899556px;}
.yc5{bottom:1114.499554px;}
.y145{bottom:1114.679554px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y47{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y92{bottom:1133.759546px;}
.yc3{bottom:1133.759846px;}
.y4e{bottom:1133.939546px;}
.yc4{bottom:1137.539545px;}
.y90{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y8f{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h20{height:12.060000px;}
.hb{height:13.500000px;}
.h15{height:15.120000px;}
.h24{height:15.300000px;}
.h23{height:15.480000px;}
.h12{height:18.720000px;}
.h9{height:18.773430px;}
.h14{height:18.900000px;}
.hd{height:20.160000px;}
.h10{height:20.340000px;}
.h5{height:20.520000px;}
.h1d{height:23.760000px;}
.h1{height:24.480000px;}
.h19{height:25.913662px;}
.hf{height:25.951630px;}
.h1b{height:27.228505px;}
.h17{height:32.152136px;}
.hc{height:32.199245px;}
.h25{height:35.991197px;}
.h22{height:36.486196px;}
.h16{height:40.842757px;}
.h1a{height:43.185920px;}
.h18{height:45.199318px;}
.h6{height:47.988262px;}
.he{height:48.058575px;}
.h11{height:48.199199px;}
.h13{height:50.100449px;}
.h1f{height:53.999978px;}
.h8{height:54.457009px;}
.h21{height:56.159978px;}
.h2{height:58.861031px;}
.h1e{height:63.179975px;}
.ha{height:63.917904px;}
.h1c{height:70.664034px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w77{width:2.160000px;}
.w74{width:3.060000px;}
.w16{width:3.240000px;}
.w50{width:3.600000px;}
.w62{width:3.780000px;}
.w2{width:4.680000px;}
.w9{width:4.860000px;}
.w2e{width:5.040000px;}
.w6a{width:5.220000px;}
.w1b{width:6.660000px;}
.w4e{width:6.840000px;}
.w4{width:7.020000px;}
.w43{width:7.200000px;}
.w34{width:7.380000px;}
.w27{width:7.560000px;}
.w25{width:7.740000px;}
.w13{width:8.100000px;}
.w7{width:8.280000px;}
.w54{width:8.640000px;}
.w6{width:8.820000px;}
.w12{width:9.540000px;}
.w19{width:10.800000px;}
.wc{width:12.420000px;}
.w11{width:12.960000px;}
.w48{width:13.860000px;}
.w4b{width:14.940000px;}
.w3a{width:15.120000px;}
.w2c{width:15.480000px;}
.w65{width:15.660000px;}
.w7a{width:15.840000px;}
.w6f{width:18.000000px;}
.w71{width:18.180000px;}
.w72{width:18.540000px;}
.w6e{width:18.720000px;}
.w70{width:19.980000px;}
.wb{width:20.160000px;}
.w64{width:24.300000px;}
.w6d{width:24.480000px;}
.w5{width:24.840000px;}
.w37{width:26.280000px;}
.w45{width:27.000000px;}
.w2a{width:27.180000px;}
.w69{width:27.540000px;}
.w63{width:28.080000px;}
.w79{width:28.440000px;}
.w78{width:29.160000px;}
.w3c{width:30.960000px;}
.w2f{width:31.860000px;}
.w60{width:34.200000px;}
.w61{width:34.740000px;}
.w5e{width:35.100000px;}
.w36{width:35.280000px;}
.w67{width:36.360000px;}
.w3e{width:37.080000px;}
.w5d{width:37.620000px;}
.w75{width:37.800000px;}
.w5f{width:38.340000px;}
.w3f{width:39.960000px;}
.w32{width:41.040000px;}
.w38{width:41.580000px;}
.w5a{width:41.760000px;}
.w1a{width:44.100000px;}
.w4c{width:44.280000px;}
.w66{width:45.540000px;}
.w6c{width:45.720000px;}
.w49{width:46.260000px;}
.w6b{width:46.440000px;}
.w3b{width:47.700000px;}
.w20{width:48.060000px;}
.w44{width:48.240000px;}
.w35{width:48.960000px;}
.w28{width:50.040000px;}
.w33{width:50.940000px;}
.w42{width:53.820000px;}
.w31{width:54.180000px;}
.w68{width:54.540000px;}
.w22{width:54.720000px;}
.w23{width:56.160000px;}
.w76{width:57.600000px;}
.w73{width:58.860000px;}
.w39{width:60.120000px;}
.w47{width:60.660000px;}
.w2b{width:60.840000px;}
.w3d{width:61.920000px;}
.w8{width:63.360000px;}
.w10{width:63.900000px;}
.w4a{width:64.620000px;}
.w24{width:65.160000px;}
.w29{width:67.320000px;}
.wd{width:72.540000px;}
.w4d{width:72.900000px;}
.w1{width:73.980000px;}
.w55{width:74.340000px;}
.w26{width:74.880000px;}
.w4f{width:75.420000px;}
.w2d{width:77.040000px;}
.w3{width:77.400000px;}
.w5c{width:77.760000px;}
.w53{width:80.460000px;}
.w14{width:81.360000px;}
.w58{width:84.240000px;}
.w46{width:85.860000px;}
.w1f{width:90.360000px;}
.w52{width:91.980000px;}
.w41{width:95.220000px;}
.w30{width:101.160000px;}
.w57{width:101.340000px;}
.w59{width:102.420000px;}
.wa{width:104.400000px;}
.w51{width:105.480000px;}
.wf{width:109.440000px;}
.w1c{width:112.320000px;}
.w56{width:114.120000px;}
.w40{width:117.000000px;}
.w5b{width:129.420000px;}
.w1d{width:154.260000px;}
.w15{width:172.800000px;}
.we{width:263.880000px;}
.w21{width:275.940000px;}
.w17{width:313.920000px;}
.w1e{width:324.000000px;}
.w18{width:532.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:107.999957px;}
.x2a{left:111.779955px;}
.xa{left:116.100000px;}
.xc0{left:126.720000px;}
.xc8{left:128.160000px;}
.xc{left:130.679908px;}
.x88{left:152.280000px;}
.xb6{left:153.360000px;}
.x18{left:170.460000px;}
.x19{left:175.320000px;}
.x20{left:179.460000px;}
.x33{left:182.699927px;}
.xa1{left:185.760000px;}
.x26{left:188.460000px;}
.x9a{left:192.240000px;}
.x99{left:193.860000px;}
.xd{left:200.339857px;}
.xe{left:204.839853px;}
.xb{left:206.999917px;}
.x67{left:209.160000px;}
.xc9{left:219.060000px;}
.x96{left:222.120000px;}
.xa2{left:223.200000px;}
.x7c{left:225.000000px;}
.x5d{left:229.500000px;}
.x75{left:236.340000px;}
.x2d{left:249.120000px;}
.xca{left:253.800000px;}
.xf{left:259.740421px;}
.xa3{left:260.820000px;}
.xcb{left:262.080000px;}
.x8b{left:263.699895px;}
.xa4{left:265.860000px;}
.x85{left:267.300000px;}
.x89{left:268.740000px;}
.x6e{left:271.080000px;}
.x6f{left:274.320000px;}
.x1a{left:279.720000px;}
.x1b{left:284.400000px;}
.x1c{left:289.080000px;}
.x9b{left:290.880000px;}
.x31{left:301.319879px;}
.x91{left:305.099878px;}
.xa5{left:307.980000px;}
.x1d{left:309.239876px;}
.x1e{left:314.100000px;}
.x70{left:315.360000px;}
.xa6{left:316.800000px;}
.x1f{left:318.780000px;}
.x32{left:320.399872px;}
.x83{left:322.200000px;}
.x68{left:324.720000px;}
.xcc{left:326.160000px;}
.xb7{left:327.780000px;}
.x7d{left:331.560000px;}
.x8a{left:341.640000px;}
.xc1{left:354.780000px;}
.x9c{left:355.860000px;}
.x27{left:361.260000px;}
.x28{left:364.320000px;}
.xb8{left:365.400000px;}
.xa7{left:369.540000px;}
.xcd{left:372.240000px;}
.xa8{left:374.580000px;}
.xa9{left:377.820000px;}
.xc2{left:379.800000px;}
.xc3{left:383.040000px;}
.x8c{left:388.620000px;}
.x9{left:390.779844px;}
.xd2{left:393.119843px;}
.xd3{left:395.459842px;}
.x9d{left:400.140000px;}
.xc4{left:401.220000px;}
.x34{left:403.379839px;}
.x74{left:405.540000px;}
.x35{left:407.159837px;}
.x7e{left:408.600000px;}
.x69{left:410.940000px;}
.xaa{left:412.019835px;}
.xab{left:415.980000px;}
.x5e{left:417.960000px;}
.x5f{left:421.200000px;}
.xac{left:424.800000px;}
.x92{left:426.239830px;}
.xb9{left:428.220000px;}
.x97{left:430.560000px;}
.x2e{left:433.079827px;}
.xad{left:435.780000px;}
.xba{left:441.360000px;}
.x21{left:442.800000px;}
.x9e{left:445.500000px;}
.x2c{left:462.600477px;}
.x8d{left:464.040000px;}
.x71{left:466.560000px;}
.x86{left:467.820000px;}
.xbb{left:468.900000px;}
.xce{left:470.880000px;}
.xae{left:474.120000px;}
.xbc{left:477.360000px;}
.xaf{left:479.160000px;}
.x60{left:482.040000px;}
.x8e{left:491.220000px;}
.x10{left:493.920784px;}
.x11{left:507.240775px;}
.x56{left:510.840000px;}
.x54{left:513.540000px;}
.x57{left:517.500000px;}
.x12{left:520.560767px;}
.x61{left:522.360000px;}
.x3a{left:524.339790px;}
.x24{left:525.592290px;}
.x45{left:527.579789px;}
.x50{left:528.839788px;}
.x3c{left:530.279788px;}
.x13{left:533.700759px;}
.x40{left:536.759785px;}
.x14{left:538.200756px;}
.x76{left:540.540000px;}
.xcf{left:545.040000px;}
.x1{left:549.000000px;}
.x2f{left:550.250930px;}
.x22{left:552.060000px;}
.xb0{left:554.040000px;}
.x2b{left:556.739777px;}
.x95{left:560.160000px;}
.x93{left:564.479774px;}
.x4c{left:565.559774px;}
.x4d{left:569.339772px;}
.x62{left:570.960000px;}
.x58{left:573.660000px;}
.x77{left:575.640000px;}
.xbd{left:577.800000px;}
.xb1{left:582.120000px;}
.x6a{left:585.000000px;}
.xbe{left:586.080000px;}
.xb2{left:587.160000px;}
.x30{left:588.779764px;}
.x7f{left:590.040000px;}
.x15{left:591.300737px;}
.xc5{left:599.760000px;}
.x16{left:608.940666px;}
.x78{left:612.720000px;}
.x87{left:614.160000px;}
.x23{left:615.960000px;}
.x8f{left:617.220000px;}
.x3b{left:618.839752px;}
.x9f{left:621.180000px;}
.x2{left:622.980000px;}
.x51{left:626.399749px;}
.x3{left:627.660000px;}
.x36{left:632.519747px;}
.x6b{left:633.960000px;}
.xd0{left:636.300000px;}
.x4a{left:637.739745px;}
.x59{left:638.820000px;}
.x4b{left:641.519743px;}
.x3d{left:645.299742px;}
.x5a{left:646.560000px;}
.x63{left:648.000000px;}
.x37{left:650.879740px;}
.x79{left:652.680000px;}
.x43{left:655.919738px;}
.x44{left:659.699736px;}
.x4e{left:663.119735px;}
.x46{left:664.919734px;}
.x17{left:666.359733px;}
.x47{left:668.699733px;}
.x4f{left:669.779732px;}
.x6c{left:670.860000px;}
.x80{left:674.280000px;}
.x29{left:678.239729px;}
.x64{left:684.360000px;}
.x72{left:688.500000px;}
.xa0{left:690.119724px;}
.xb3{left:691.200000px;}
.x65{left:692.460000px;}
.xc6{left:694.260000px;}
.x55{left:696.420000px;}
.xbf{left:703.260000px;}
.x4{left:705.060000px;}
.x6d{left:706.140000px;}
.x98{left:708.479717px;}
.x81{left:709.560000px;}
.xb4{left:711.360000px;}
.x94{left:712.800000px;}
.xc7{left:717.840000px;}
.x5c{left:719.460000px;}
.x5{left:722.340000px;}
.xd1{left:723.420000px;}
.xb5{left:727.019709px;}
.x41{left:728.819708px;}
.x52{left:730.259708px;}
.x42{left:732.779707px;}
.x53{left:734.039706px;}
.x5b{left:736.740000px;}
.x7a{left:738.540000px;}
.x48{left:740.519704px;}
.x49{left:744.299702px;}
.x6{left:747.180000px;}
.x73{left:750.600000px;}
.x84{left:752.760000px;}
.x90{left:754.560000px;}
.x38{left:758.159697px;}
.x3e{left:759.419696px;}
.x39{left:761.939695px;}
.x3f{left:763.199695px;}
.x82{left:766.260000px;}
.x7{left:772.020000px;}
.x66{left:773.100000px;}
.x7b{left:775.260000px;}
.x25{left:780.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls1{letter-spacing:0.064960pt;}
.ls11{letter-spacing:0.185732pt;}
.lse{letter-spacing:0.225973pt;}
.ls12{letter-spacing:0.273973pt;}
.lsc{letter-spacing:0.432160pt;}
.ls6{letter-spacing:0.496533pt;}
.ls9{letter-spacing:0.704906pt;}
.lsa{letter-spacing:1.072533pt;}
.ls8{letter-spacing:1.187573pt;}
.lsb{letter-spacing:1.345279pt;}
.lsf{letter-spacing:1.377973pt;}
.ls10{letter-spacing:1.454293pt;}
.ls7{letter-spacing:6.378664pt;}
.lsd{letter-spacing:8.299730pt;}
.ls5{letter-spacing:22.387831pt;}
.ls4{letter-spacing:23.028204pt;}
.ls3{letter-spacing:26.870389pt;}
.ws2{word-spacing:-17.023993pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.ws3{word-spacing:-15.679994pt;}
.ws8{word-spacing:-12.377727pt;}
.ws7{word-spacing:-12.191995pt;}
.ws4{word-spacing:-11.567995pt;}
.ws6{word-spacing:-7.711997pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._c{margin-left:-416.192836pt;}
._3{margin-left:-246.707400pt;}
._b{margin-left:-203.846612pt;}
._6{margin-left:-194.892669pt;}
._9{margin-left:-187.724672pt;}
._1{margin-left:-80.500602pt;}
._a{margin-left:-61.222157pt;}
._8{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._45{margin-left:-2.438265pt;}
._2{margin-left:-1.497247pt;}
._4{width:1.098725pt;}
._f{width:2.677196pt;}
._10{width:3.976966pt;}
._12{width:5.204562pt;}
._11{width:6.154480pt;}
._19{width:7.800896pt;}
._e{width:8.848218pt;}
._d{width:10.599657pt;}
._15{width:12.587151pt;}
._16{width:13.490081pt;}
._2e{width:14.465677pt;}
._13{width:15.563551pt;}
._14{width:16.587981pt;}
._1b{width:17.776421pt;}
._1c{width:19.394518pt;}
._26{width:20.484198pt;}
._1d{width:21.911647pt;}
._2a{width:23.072302pt;}
._2b{width:24.078602pt;}
._1a{width:25.079599pt;}
._20{width:26.292010pt;}
._28{width:27.200309pt;}
._21{width:28.198272pt;}
._31{width:29.252487pt;}
._2c{width:30.166019pt;}
._2d{width:31.839947pt;}
._24{width:33.251046pt;}
._2f{width:34.144057pt;}
._23{width:35.173714pt;}
._22{width:36.094403pt;}
._29{width:37.141165pt;}
._1e{width:38.379737pt;}
._1f{width:39.459184pt;}
._27{width:40.656819pt;}
._42{width:41.594904pt;}
._17{width:42.776911pt;}
._18{width:43.757796pt;}
._43{width:44.677214pt;}
._39{width:46.962477pt;}
._34{width:48.083963pt;}
._35{width:49.290107pt;}
._30{width:50.666006pt;}
._33{width:51.663592pt;}
._40{width:53.083204pt;}
._46{width:54.343459pt;}
._47{width:55.519912pt;}
._41{width:57.746581pt;}
._3f{width:58.791743pt;}
._37{width:60.079542pt;}
._36{width:61.487394pt;}
._3d{width:64.862878pt;}
._3a{width:66.302178pt;}
._38{width:71.080933pt;}
._32{width:72.069305pt;}
._3e{width:79.269348pt;}
._48{width:86.832488pt;}
._44{width:87.789686pt;}
._3b{width:88.829094pt;}
._25{width:103.030099pt;}
._3c{width:105.750674pt;}
.fs3{font-size:15.999994pt;}
.fsa{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fs5{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y4d{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:2.719154pt;}
.yf6{bottom:2.719160pt;}
.yf8{bottom:2.719166pt;}
.yfa{bottom:2.719171pt;}
.yff{bottom:2.719203pt;}
.y1e{bottom:2.719205pt;}
.y101{bottom:2.719208pt;}
.ye0{bottom:2.719214pt;}
.y103{bottom:2.719219pt;}
.y108{bottom:2.719251pt;}
.y10b{bottom:2.719256pt;}
.y10d{bottom:2.719262pt;}
.y110{bottom:2.719267pt;}
.y113{bottom:2.719273pt;}
.y116{bottom:2.719279pt;}
.y119{bottom:2.719284pt;}
.y11c{bottom:2.719290pt;}
.ye4{bottom:2.719308pt;}
.y121{bottom:2.719313pt;}
.ye7{bottom:2.719316pt;}
.y124{bottom:2.719324pt;}
.y127{bottom:2.719330pt;}
.yd0{bottom:2.719334pt;}
.y12a{bottom:2.719341pt;}
.yd2{bottom:2.719342pt;}
.yd5{bottom:2.719351pt;}
.yf{bottom:2.879145pt;}
.y14{bottom:2.879161pt;}
.y19{bottom:3.199189pt;}
.y1c{bottom:3.199192pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y11{bottom:4.319152pt;}
.y16{bottom:4.319168pt;}
.y48{bottom:5.759065pt;}
.y91{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.y196{bottom:104.106625pt;}
.yc0{bottom:107.946623pt;}
.yc2{bottom:107.946890pt;}
.y7a{bottom:108.106623pt;}
.yf2{bottom:109.706889pt;}
.y3b{bottom:110.346623pt;}
.yc1{bottom:111.306889pt;}
.yde{bottom:112.746622pt;}
.y134{bottom:115.786620pt;}
.y46{bottom:116.106620pt;}
.y16e{bottom:118.026619pt;}
.y195{bottom:125.066617pt;}
.ybf{bottom:128.426615pt;}
.y79{bottom:128.586615pt;}
.y3a{bottom:128.746615pt;}
.yf1{bottom:130.186881pt;}
.y8d{bottom:130.826614pt;}
.ydd{bottom:133.226613pt;}
.y133{bottom:136.106612pt;}
.y45{bottom:136.586612pt;}
.y16d{bottom:139.786611pt;}
.y194{bottom:146.026608pt;}
.y39{bottom:147.146608pt;}
.ybe{bottom:148.906607pt;}
.y78{bottom:149.066607pt;}
.yf0{bottom:149.546607pt;}
.y44{bottom:151.306606pt;}
.ydc{bottom:153.706605pt;}
.y132{bottom:156.586604pt;}
.y16c{bottom:161.386602pt;}
.y38{bottom:165.546600pt;}
.y193{bottom:166.986600pt;}
.ybd{bottom:169.226599pt;}
.y77{bottom:169.386599pt;}
.y43{bottom:169.706599pt;}
.y8c{bottom:171.786598pt;}
.ydb{bottom:174.026597pt;}
.y131{bottom:177.066596pt;}
.y16b{bottom:183.146593pt;}
.y37{bottom:183.946593pt;}
.y42{bottom:188.106591pt;}
.ybc{bottom:189.706591pt;}
.y76{bottom:189.866591pt;}
.y8e{bottom:190.986590pt;}
.y8b{bottom:192.106590pt;}
.yda{bottom:194.506589pt;}
.y130{bottom:197.546588pt;}
.y36{bottom:202.346586pt;}
.y16a{bottom:204.906585pt;}
.y41{bottom:206.506584pt;}
.y192{bottom:209.066583pt;}
.ybb{bottom:210.186583pt;}
.y75{bottom:210.346583pt;}
.yef{bottom:210.666582pt;}
.y8a{bottom:212.586582pt;}
.yd9{bottom:214.986581pt;}
.y12f{bottom:218.026579pt;}
.y35{bottom:220.746578pt;}
.y40{bottom:224.906577pt;}
.y169{bottom:226.506576pt;}
.y191{bottom:230.026575pt;}
.yba{bottom:230.666574pt;}
.y74{bottom:230.826574pt;}
.yee{bottom:231.466574pt;}
.y143{bottom:231.946574pt;}
.y89{bottom:233.066573pt;}
.yd8{bottom:235.466572pt;}
.y12e{bottom:238.506571pt;}
.y34{bottom:239.146571pt;}
.y3f{bottom:243.306569pt;}
.y168{bottom:248.266567pt;}
.yb9{bottom:251.146566pt;}
.y73{bottom:251.306566pt;}
.yed{bottom:252.106566pt;}
.yd7{bottom:252.586566pt;}
.y88{bottom:253.546565pt;}
.y33{bottom:257.546564pt;}
.y12d{bottom:258.826563pt;}
.y3e{bottom:261.706562pt;}
.yd6{bottom:269.546559pt;}
.y167{bottom:270.026559pt;}
.yb8{bottom:271.626558pt;}
.y72{bottom:271.786558pt;}
.y190{bottom:272.106558pt;}
.yec{bottom:272.906558pt;}
.y87{bottom:274.026557pt;}
.y12c{bottom:279.306555pt;}
.y3d{bottom:280.106555pt;}
.y32{bottom:281.706554pt;}
.yd4{bottom:287.307200pt;}
.yd3{bottom:290.026551pt;}
.y166{bottom:291.626550pt;}
.yb7{bottom:291.946550pt;}
.y71{bottom:292.106550pt;}
.y18f{bottom:293.226549pt;}
.yeb{bottom:293.546549pt;}
.y86{bottom:294.506549pt;}
.y3c{bottom:298.506547pt;}
.y12b{bottom:299.786547pt;}
.y31{bottom:302.186546pt;}
.yd1{bottom:307.787200pt;}
.yb5{bottom:312.426542pt;}
.y70{bottom:312.586542pt;}
.y129{bottom:312.587200pt;}
.y165{bottom:313.386541pt;}
.y18e{bottom:314.186541pt;}
.yea{bottom:314.346541pt;}
.y85{bottom:314.826541pt;}
.yb6{bottom:315.786540pt;}
.y30{bottom:316.586540pt;}
.y2f{bottom:319.946539pt;}
.y128{bottom:326.187200pt;}
.ycf{bottom:328.107200pt;}
.yb3{bottom:332.906534pt;}
.y6f{bottom:333.066533pt;}
.ye9{bottom:334.986533pt;}
.y164{bottom:335.146533pt;}
.y84{bottom:335.306533pt;}
.yb4{bottom:336.266532pt;}
.y2e{bottom:338.186531pt;}
.y126{bottom:339.787200pt;}
.yb2{bottom:353.386525pt;}
.y123{bottom:353.387200pt;}
.y6e{bottom:353.546525pt;}
.ye8{bottom:355.466524pt;}
.y83{bottom:355.786524pt;}
.y18d{bottom:356.266524pt;}
.y163{bottom:356.746524pt;}
.y2d{bottom:358.666523pt;}
.y125{bottom:359.466523pt;}
.y122{bottom:370.506518pt;}
.ye6{bottom:373.227200pt;}
.yb1{bottom:373.866517pt;}
.y6d{bottom:374.026517pt;}
.ye5{bottom:375.946516pt;}
.y82{bottom:376.266516pt;}
.y18c{bottom:377.226516pt;}
.y162{bottom:378.506515pt;}
.y2c{bottom:378.986515pt;}
.y120{bottom:381.387200pt;}
.ye3{bottom:393.547200pt;}
.yb0{bottom:394.346509pt;}
.y6c{bottom:394.506509pt;}
.y81{bottom:396.746508pt;}
.y18b{bottom:398.186507pt;}
.y2b{bottom:399.466507pt;}
.y161{bottom:400.106507pt;}
.y11f{bottom:406.666504pt;}
.yaf{bottom:414.666501pt;}
.y6b{bottom:414.826501pt;}
.y80{bottom:417.226500pt;}
.y18a{bottom:419.306499pt;}
.y2a{bottom:419.946499pt;}
.y160{bottom:421.866498pt;}
.y11e{bottom:427.146496pt;}
.yae{bottom:435.146493pt;}
.y6a{bottom:435.306493pt;}
.y7f{bottom:437.546492pt;}
.y11b{bottom:440.107200pt;}
.y189{bottom:440.266491pt;}
.y29{bottom:440.426490pt;}
.y11d{bottom:442.826490pt;}
.y15f{bottom:443.626489pt;}
.y118{bottom:453.867200pt;}
.yad{bottom:455.626484pt;}
.y69{bottom:455.786484pt;}
.y11a{bottom:456.586484pt;}
.y7e{bottom:458.026483pt;}
.y28{bottom:460.906482pt;}
.y188{bottom:461.386482pt;}
.y15e{bottom:465.226481pt;}
.y115{bottom:467.627200pt;}
.y117{bottom:470.346479pt;}
.yac{bottom:476.106476pt;}
.y68{bottom:476.266476pt;}
.y7d{bottom:478.506475pt;}
.y27{bottom:481.386474pt;}
.y112{bottom:481.547200pt;}
.y187{bottom:482.346474pt;}
.y114{bottom:484.266473pt;}
.y15d{bottom:486.986472pt;}
.y10f{bottom:495.307200pt;}
.yab{bottom:496.586468pt;}
.y67{bottom:496.746468pt;}
.y111{bottom:498.026467pt;}
.y7c{bottom:498.986467pt;}
.y26{bottom:501.706466pt;}
.y186{bottom:503.306465pt;}
.y15c{bottom:508.746463pt;}
.y10c{bottom:509.067200pt;}
.y10e{bottom:511.786462pt;}
.yaa{bottom:516.906460pt;}
.y66{bottom:517.066460pt;}
.y7b{bottom:518.186459pt;}
.y142{bottom:519.466459pt;}
.y25{bottom:522.186458pt;}
.y10a{bottom:523.307200pt;}
.y185{bottom:524.426457pt;}
.y109{bottom:526.026456pt;}
.y15b{bottom:530.346455pt;}
.y107{bottom:537.067200pt;}
.ya9{bottom:537.386452pt;}
.y65{bottom:537.546452pt;}
.y141{bottom:539.946451pt;}
.y24{bottom:542.666450pt;}
.y184{bottom:545.386449pt;}
.y15a{bottom:552.106446pt;}
.ya8{bottom:557.866444pt;}
.y64{bottom:558.026443pt;}
.yce{bottom:558.986443pt;}
.y140{bottom:560.266443pt;}
.y106{bottom:562.346442pt;}
.y23{bottom:563.146441pt;}
.y183{bottom:566.346440pt;}
.y159{bottom:573.866437pt;}
.ya7{bottom:578.346435pt;}
.y63{bottom:578.506435pt;}
.y13f{bottom:580.746434pt;}
.y105{bottom:582.826434pt;}
.y22{bottom:583.626433pt;}
.y182{bottom:587.466432pt;}
.ye2{bottom:591.626430pt;}
.y158{bottom:595.466428pt;}
.ya6{bottom:598.826427pt;}
.y62{bottom:598.986427pt;}
.y144{bottom:600.106427pt;}
.y13e{bottom:601.226426pt;}
.y104{bottom:603.306425pt;}
.y21{bottom:603.946425pt;}
.y181{bottom:608.426423pt;}
.ye1{bottom:612.106422pt;}
.y102{bottom:615.947200pt;}
.y157{bottom:617.226420pt;}
.ya5{bottom:619.306419pt;}
.y61{bottom:619.466419pt;}
.y13d{bottom:621.706418pt;}
.y20{bottom:625.226417pt;}
.y180{bottom:629.546415pt;}
.ydf{bottom:629.707200pt;}
.y156{bottom:638.826411pt;}
.ya4{bottom:639.626411pt;}
.y60{bottom:639.786411pt;}
.y13c{bottom:642.186410pt;}
.y100{bottom:643.307200pt;}
.y17f{bottom:650.506406pt;}
.y1d{bottom:652.427200pt;}
.y1f{bottom:655.146405pt;}
.yfe{bottom:657.547200pt;}
.ya3{bottom:660.106403pt;}
.y5f{bottom:660.266403pt;}
.y155{bottom:660.586402pt;}
.y13b{bottom:662.506402pt;}
.y17e{bottom:671.466398pt;}
.ya2{bottom:680.586394pt;}
.y5e{bottom:680.746394pt;}
.y154{bottom:682.346394pt;}
.y1b{bottom:682.347200pt;}
.yfd{bottom:682.986393pt;}
.y1a{bottom:685.546392pt;}
.y18{bottom:690.347200pt;}
.y17d{bottom:692.586390pt;}
.ya1{bottom:701.066386pt;}
.y5d{bottom:701.226386pt;}
.yfc{bottom:703.306385pt;}
.y13a{bottom:703.466385pt;}
.y153{bottom:703.946385pt;}
.y17c{bottom:713.546381pt;}
.y17{bottom:720.426378pt;}
.ya0{bottom:721.546378pt;}
.y5c{bottom:721.706378pt;}
.yfb{bottom:723.786377pt;}
.y139{bottom:723.946377pt;}
.y152{bottom:725.706376pt;}
.y17b{bottom:734.506373pt;}
.yf9{bottom:736.587200pt;}
.y9f{bottom:742.026370pt;}
.y5b{bottom:742.186370pt;}
.y15{bottom:743.307200pt;}
.y138{bottom:744.426369pt;}
.y151{bottom:747.466368pt;}
.yf7{bottom:750.187200pt;}
.y17a{bottom:755.626364pt;}
.y13{bottom:761.387200pt;}
.y9e{bottom:762.346362pt;}
.y5a{bottom:762.506362pt;}
.yf5{bottom:763.787200pt;}
.y137{bottom:764.906361pt;}
.y150{bottom:769.066359pt;}
.y179{bottom:776.586356pt;}
.yf3{bottom:778.187200pt;}
.y10{bottom:782.667200pt;}
.y9d{bottom:782.826354pt;}
.y59{bottom:782.986353pt;}
.y136{bottom:784.106353pt;}
.y14f{bottom:790.826350pt;}
.y12{bottom:791.626350pt;}
.y178{bottom:797.706348pt;}
.ye{bottom:800.747200pt;}
.y9c{bottom:803.306345pt;}
.y58{bottom:803.466345pt;}
.y14e{bottom:812.586342pt;}
.y177{bottom:818.666339pt;}
.y9b{bottom:823.786337pt;}
.y57{bottom:823.946337pt;}
.ycd{bottom:827.146336pt;}
.y135{bottom:827.306336pt;}
.yd{bottom:830.506334pt;}
.y14d{bottom:834.186333pt;}
.y176{bottom:839.626331pt;}
.y9a{bottom:844.266329pt;}
.y56{bottom:844.426329pt;}
.ycc{bottom:847.626328pt;}
.y14c{bottom:855.946324pt;}
.y175{bottom:860.746322pt;}
.y99{bottom:864.746321pt;}
.y55{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.ycb{bottom:868.106319pt;}
.y14b{bottom:877.546316pt;}
.y174{bottom:881.706314pt;}
.y98{bottom:885.066313pt;}
.y54{bottom:885.226313pt;}
.yb{bottom:888.266311pt;}
.yca{bottom:888.426311pt;}
.y14a{bottom:899.306307pt;}
.y173{bottom:902.666306pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y97{bottom:905.546304pt;}
.y53{bottom:905.706304pt;}
.yc9{bottom:908.906303pt;}
.y149{bottom:921.066298pt;}
.y172{bottom:923.786297pt;}
.y96{bottom:926.026296pt;}
.y52{bottom:926.186296pt;}
.yc8{bottom:929.386295pt;}
.y4c{bottom:934.667200pt;}
.y148{bottom:942.666290pt;}
.y171{bottom:944.746289pt;}
.y95{bottom:946.506288pt;}
.y51{bottom:946.666288pt;}
.y4b{bottom:948.426287pt;}
.yc7{bottom:949.866287pt;}
.y147{bottom:964.426281pt;}
.y170{bottom:965.866280pt;}
.y4a{bottom:966.506280pt;}
.y94{bottom:966.986280pt;}
.y50{bottom:967.146280pt;}
.yc6{bottom:970.346279pt;}
.y49{bottom:984.586273pt;}
.y146{bottom:986.186272pt;}
.y16f{bottom:986.826272pt;}
.y93{bottom:987.306272pt;}
.y4f{bottom:987.466272pt;}
.yc5{bottom:990.666270pt;}
.y145{bottom:990.826270pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y47{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y92{bottom:1007.786264pt;}
.yc3{bottom:1007.786530pt;}
.y4e{bottom:1007.946263pt;}
.yc4{bottom:1011.146262pt;}
.y90{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y8f{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h20{height:10.720000pt;}
.hb{height:12.000000pt;}
.h15{height:13.440000pt;}
.h24{height:13.600000pt;}
.h23{height:13.760000pt;}
.h12{height:16.640000pt;}
.h9{height:16.687493pt;}
.h14{height:16.800000pt;}
.hd{height:17.920000pt;}
.h10{height:18.080000pt;}
.h5{height:18.240000pt;}
.h1d{height:21.120000pt;}
.h1{height:21.760000pt;}
.h19{height:23.034366pt;}
.hf{height:23.068116pt;}
.h1b{height:24.203115pt;}
.h17{height:28.579676pt;}
.hc{height:28.621551pt;}
.h25{height:31.992175pt;}
.h22{height:32.432175pt;}
.h16{height:36.304673pt;}
.h1a{height:38.387485pt;}
.h18{height:40.177171pt;}
.h6{height:42.656233pt;}
.he{height:42.718733pt;}
.h11{height:42.843733pt;}
.h13{height:44.533732pt;}
.h1f{height:47.999981pt;}
.h8{height:48.406231pt;}
.h21{height:49.919980pt;}
.h2{height:52.320917pt;}
.h1e{height:56.159978pt;}
.ha{height:56.815915pt;}
.h1c{height:62.812475pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w77{width:1.920000pt;}
.w74{width:2.720000pt;}
.w16{width:2.880000pt;}
.w50{width:3.200000pt;}
.w62{width:3.360000pt;}
.w2{width:4.160000pt;}
.w9{width:4.320000pt;}
.w2e{width:4.480000pt;}
.w6a{width:4.640000pt;}
.w1b{width:5.920000pt;}
.w4e{width:6.080000pt;}
.w4{width:6.240000pt;}
.w43{width:6.400000pt;}
.w34{width:6.560000pt;}
.w27{width:6.720000pt;}
.w25{width:6.880000pt;}
.w13{width:7.200000pt;}
.w7{width:7.360000pt;}
.w54{width:7.680000pt;}
.w6{width:7.840000pt;}
.w12{width:8.480000pt;}
.w19{width:9.600000pt;}
.wc{width:11.040000pt;}
.w11{width:11.520000pt;}
.w48{width:12.320000pt;}
.w4b{width:13.280000pt;}
.w3a{width:13.440000pt;}
.w2c{width:13.760000pt;}
.w65{width:13.920000pt;}
.w7a{width:14.080000pt;}
.w6f{width:16.000000pt;}
.w71{width:16.160000pt;}
.w72{width:16.480000pt;}
.w6e{width:16.640000pt;}
.w70{width:17.760000pt;}
.wb{width:17.920000pt;}
.w64{width:21.600000pt;}
.w6d{width:21.760000pt;}
.w5{width:22.080000pt;}
.w37{width:23.360000pt;}
.w45{width:24.000000pt;}
.w2a{width:24.160000pt;}
.w69{width:24.480000pt;}
.w63{width:24.960000pt;}
.w79{width:25.280000pt;}
.w78{width:25.920000pt;}
.w3c{width:27.520000pt;}
.w2f{width:28.320000pt;}
.w60{width:30.400000pt;}
.w61{width:30.880000pt;}
.w5e{width:31.200000pt;}
.w36{width:31.360000pt;}
.w67{width:32.320000pt;}
.w3e{width:32.960000pt;}
.w5d{width:33.440000pt;}
.w75{width:33.600000pt;}
.w5f{width:34.080000pt;}
.w3f{width:35.520000pt;}
.w32{width:36.480000pt;}
.w38{width:36.960000pt;}
.w5a{width:37.120000pt;}
.w1a{width:39.200000pt;}
.w4c{width:39.360000pt;}
.w66{width:40.480000pt;}
.w6c{width:40.640000pt;}
.w49{width:41.120000pt;}
.w6b{width:41.280000pt;}
.w3b{width:42.400000pt;}
.w20{width:42.720000pt;}
.w44{width:42.880000pt;}
.w35{width:43.520000pt;}
.w28{width:44.480000pt;}
.w33{width:45.280000pt;}
.w42{width:47.840000pt;}
.w31{width:48.160000pt;}
.w68{width:48.480000pt;}
.w22{width:48.640000pt;}
.w23{width:49.920000pt;}
.w76{width:51.200000pt;}
.w73{width:52.320000pt;}
.w39{width:53.440000pt;}
.w47{width:53.920000pt;}
.w2b{width:54.080000pt;}
.w3d{width:55.040000pt;}
.w8{width:56.320000pt;}
.w10{width:56.800000pt;}
.w4a{width:57.440000pt;}
.w24{width:57.920000pt;}
.w29{width:59.840000pt;}
.wd{width:64.480000pt;}
.w4d{width:64.800000pt;}
.w1{width:65.760000pt;}
.w55{width:66.080000pt;}
.w26{width:66.560000pt;}
.w4f{width:67.040000pt;}
.w2d{width:68.480000pt;}
.w3{width:68.800000pt;}
.w5c{width:69.120000pt;}
.w53{width:71.520000pt;}
.w14{width:72.320000pt;}
.w58{width:74.880000pt;}
.w46{width:76.320000pt;}
.w1f{width:80.320000pt;}
.w52{width:81.760000pt;}
.w41{width:84.640000pt;}
.w30{width:89.920000pt;}
.w57{width:90.080000pt;}
.w59{width:91.040000pt;}
.wa{width:92.800000pt;}
.w51{width:93.760000pt;}
.wf{width:97.280000pt;}
.w1c{width:99.840000pt;}
.w56{width:101.440000pt;}
.w40{width:104.000000pt;}
.w5b{width:115.040000pt;}
.w1d{width:137.120000pt;}
.w15{width:153.600000pt;}
.we{width:234.560000pt;}
.w21{width:245.280000pt;}
.w17{width:279.040000pt;}
.w1e{width:288.000000pt;}
.w18{width:472.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:95.999962pt;}
.x2a{left:99.359960pt;}
.xa{left:103.200000pt;}
.xc0{left:112.640000pt;}
.xc8{left:113.920000pt;}
.xc{left:116.159918pt;}
.x88{left:135.360000pt;}
.xb6{left:136.320000pt;}
.x18{left:151.520000pt;}
.x19{left:155.840000pt;}
.x20{left:159.520000pt;}
.x33{left:162.399935pt;}
.xa1{left:165.120000pt;}
.x26{left:167.520000pt;}
.x9a{left:170.880000pt;}
.x99{left:172.320000pt;}
.xd{left:178.079873pt;}
.xe{left:182.079870pt;}
.xb{left:183.999926pt;}
.x67{left:185.920000pt;}
.xc9{left:194.720000pt;}
.x96{left:197.440000pt;}
.xa2{left:198.400000pt;}
.x7c{left:200.000000pt;}
.x5d{left:204.000000pt;}
.x75{left:210.080000pt;}
.x2d{left:221.440000pt;}
.xca{left:225.600000pt;}
.xf{left:230.880374pt;}
.xa3{left:231.840000pt;}
.xcb{left:232.960000pt;}
.x8b{left:234.399906pt;}
.xa4{left:236.320000pt;}
.x85{left:237.600000pt;}
.x89{left:238.880000pt;}
.x6e{left:240.960000pt;}
.x6f{left:243.840000pt;}
.x1a{left:248.640000pt;}
.x1b{left:252.800000pt;}
.x1c{left:256.960000pt;}
.x9b{left:258.560000pt;}
.x31{left:267.839893pt;}
.x91{left:271.199892pt;}
.xa5{left:273.760000pt;}
.x1d{left:274.879890pt;}
.x1e{left:279.200000pt;}
.x70{left:280.320000pt;}
.xa6{left:281.600000pt;}
.x1f{left:283.360000pt;}
.x32{left:284.799886pt;}
.x83{left:286.400000pt;}
.x68{left:288.640000pt;}
.xcc{left:289.920000pt;}
.xb7{left:291.360000pt;}
.x7d{left:294.720000pt;}
.x8a{left:303.680000pt;}
.xc1{left:315.360000pt;}
.x9c{left:316.320000pt;}
.x27{left:321.120000pt;}
.x28{left:323.840000pt;}
.xb8{left:324.800000pt;}
.xa7{left:328.480000pt;}
.xcd{left:330.880000pt;}
.xa8{left:332.960000pt;}
.xa9{left:335.840000pt;}
.xc2{left:337.600000pt;}
.xc3{left:340.480000pt;}
.x8c{left:345.440000pt;}
.x9{left:347.359861pt;}
.xd2{left:349.439860pt;}
.xd3{left:351.519859pt;}
.x9d{left:355.680000pt;}
.xc4{left:356.640000pt;}
.x34{left:358.559857pt;}
.x74{left:360.480000pt;}
.x35{left:361.919855pt;}
.x7e{left:363.200000pt;}
.x69{left:365.280000pt;}
.xaa{left:366.239854pt;}
.xab{left:369.760000pt;}
.x5e{left:371.520000pt;}
.x5f{left:374.400000pt;}
.xac{left:377.600000pt;}
.x92{left:378.879848pt;}
.xb9{left:380.640000pt;}
.x97{left:382.720000pt;}
.x2e{left:384.959846pt;}
.xad{left:387.360000pt;}
.xba{left:392.320000pt;}
.x21{left:393.600000pt;}
.x9e{left:396.000000pt;}
.x2c{left:411.200424pt;}
.x8d{left:412.480000pt;}
.x71{left:414.720000pt;}
.x86{left:415.840000pt;}
.xbb{left:416.800000pt;}
.xce{left:418.560000pt;}
.xae{left:421.440000pt;}
.xbc{left:424.320000pt;}
.xaf{left:425.920000pt;}
.x60{left:428.480000pt;}
.x8e{left:436.640000pt;}
.x10{left:439.040697pt;}
.x11{left:450.880689pt;}
.x56{left:454.080000pt;}
.x54{left:456.480000pt;}
.x57{left:460.000000pt;}
.x12{left:462.720681pt;}
.x61{left:464.320000pt;}
.x3a{left:466.079814pt;}
.x24{left:467.193146pt;}
.x45{left:468.959812pt;}
.x50{left:470.079812pt;}
.x3c{left:471.359811pt;}
.x13{left:474.400675pt;}
.x40{left:477.119809pt;}
.x14{left:478.400672pt;}
.x76{left:480.480000pt;}
.xcf{left:484.480000pt;}
.x1{left:488.000000pt;}
.x2f{left:489.111938pt;}
.x22{left:490.720000pt;}
.xb0{left:492.480000pt;}
.x2b{left:494.879802pt;}
.x95{left:497.920000pt;}
.x93{left:501.759799pt;}
.x4c{left:502.719799pt;}
.x4d{left:506.079798pt;}
.x62{left:507.520000pt;}
.x58{left:509.920000pt;}
.x77{left:511.680000pt;}
.xbd{left:513.600000pt;}
.xb1{left:517.440000pt;}
.x6a{left:520.000000pt;}
.xbe{left:520.960000pt;}
.xb2{left:521.920000pt;}
.x30{left:523.359791pt;}
.x7f{left:524.480000pt;}
.x15{left:525.600655pt;}
.xc5{left:533.120000pt;}
.x16{left:541.280592pt;}
.x78{left:544.640000pt;}
.x87{left:545.920000pt;}
.x23{left:547.520000pt;}
.x8f{left:548.640000pt;}
.x3b{left:550.079780pt;}
.x9f{left:552.160000pt;}
.x2{left:553.760000pt;}
.x51{left:556.799777pt;}
.x3{left:557.920000pt;}
.x36{left:562.239775pt;}
.x6b{left:563.520000pt;}
.xd0{left:565.600000pt;}
.x4a{left:566.879773pt;}
.x59{left:567.840000pt;}
.x4b{left:570.239772pt;}
.x3d{left:573.599771pt;}
.x5a{left:574.720000pt;}
.x63{left:576.000000pt;}
.x37{left:578.559769pt;}
.x79{left:580.160000pt;}
.x43{left:583.039767pt;}
.x44{left:586.399765pt;}
.x4e{left:589.439764pt;}
.x46{left:591.039764pt;}
.x17{left:592.319763pt;}
.x47{left:594.399762pt;}
.x4f{left:595.359762pt;}
.x6c{left:596.320000pt;}
.x80{left:599.360000pt;}
.x29{left:602.879759pt;}
.x64{left:608.320000pt;}
.x72{left:612.000000pt;}
.xa0{left:613.439755pt;}
.xb3{left:614.400000pt;}
.x65{left:615.520000pt;}
.xc6{left:617.120000pt;}
.x55{left:619.040000pt;}
.xbf{left:625.120000pt;}
.x4{left:626.720000pt;}
.x6d{left:627.680000pt;}
.x98{left:629.759748pt;}
.x81{left:630.720000pt;}
.xb4{left:632.320000pt;}
.x94{left:633.600000pt;}
.xc7{left:638.080000pt;}
.x5c{left:639.520000pt;}
.x5{left:642.080000pt;}
.xd1{left:643.040000pt;}
.xb5{left:646.239742pt;}
.x41{left:647.839741pt;}
.x52{left:649.119740pt;}
.x42{left:651.359739pt;}
.x53{left:652.479739pt;}
.x5b{left:654.880000pt;}
.x7a{left:656.480000pt;}
.x48{left:658.239737pt;}
.x49{left:661.599735pt;}
.x6{left:664.160000pt;}
.x73{left:667.200000pt;}
.x84{left:669.120000pt;}
.x90{left:670.720000pt;}
.x38{left:673.919730pt;}
.x3e{left:675.039730pt;}
.x39{left:677.279729pt;}
.x3f{left:678.399729pt;}
.x82{left:681.120000pt;}
.x7{left:686.240000pt;}
.x66{left:687.200000pt;}
.x7b{left:689.120000pt;}
.x25{left:693.600000pt;}
}




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