
    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_1026ad5fb4582d887c6bb01c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_e88da0fb7f1cfebd8a16c9b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_4316e64eb90037b354d281ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_7a746f939dd91b59ca060600.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_a87a8f1cb33fcd60e9d3b0b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774414;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_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_aee7982d24a4e4ea45e911d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766113;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_e953def00d93d1d2fc34ed45.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_f811a8240c4a6b89861eba92.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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_c74a1770f796226ca793066e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.709961;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_abc92abb5f592b60a6de06fb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.856934;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_4dc55b7140fcc2b7746d59c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_3f3fb4fda64cea18cb3db4b4.woff2')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_d4790e2a4563f9d1e5343544.woff2')format("woff");}.fff{font-family:fff;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;}
.m0{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);}
.m1{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);}
.m5{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);}
.m3{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);}
.m4{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);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010620px;}
.lsc{letter-spacing:0.010626px;}
.ls7{letter-spacing:0.019560px;}
.ls5{letter-spacing:0.021253px;}
.lsb{letter-spacing:0.088577px;}
.ls6{letter-spacing:8.655717px;}
.ls9{letter-spacing:31.134168px;}
.lsa{letter-spacing:34.015846px;}
.ls8{letter-spacing:54.908378px;}
.ls3{letter-spacing:58.545096px;}
.ls2{letter-spacing:178.858921px;}
.ls0{letter-spacing:1573.579083px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc2{text-shadow:-0.015em 0 rgb(58,123,34),0 0.015em rgb(58,123,34),0.015em 0 rgb(58,123,34),0 -0.015em  rgb(58,123,34);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(58,123,34);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-46.439981px;}
.ws8{word-spacing:-35.999986px;}
.ws4{word-spacing:-32.399987px;}
.ws7{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws2{word-spacing:-14.939994px;}
.ws6{word-spacing:-12.059995px;}
.ws5{word-spacing:0.000000px;}
._25{margin-left:-9.287908px;}
._18{margin-left:-8.038077px;}
._15{margin-left:-6.011443px;}
._2{margin-left:-4.558103px;}
._3{margin-left:-2.799900px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._d{width:2.580477px;}
._c{width:3.980200px;}
._11{width:5.258563px;}
._6{width:6.488794px;}
._5{width:7.700342px;}
._4{width:9.425751px;}
._9{width:10.907345px;}
._e{width:11.938903px;}
._12{width:12.996595px;}
._1a{width:14.308166px;}
._14{width:15.316738px;}
._19{width:16.319408px;}
._10{width:17.417941px;}
._f{width:18.781545px;}
._13{width:20.405771px;}
._b{width:22.034544px;}
._a{width:23.201376px;}
._23{width:24.214174px;}
._1b{width:25.264436px;}
._24{width:27.361929px;}
._22{width:29.771542px;}
._17{width:31.098915px;}
._16{width:36.976661px;}
._1f{width:38.503467px;}
._1e{width:39.874135px;}
._1c{width:43.140445px;}
._1d{width:44.176935px;}
._8{width:58.545116px;}
._20{width:66.505823px;}
._21{width:67.664650px;}
._27{width:95.283210px;}
._26{width:101.296395px;}
._7{width:255.225894px;}
.fc10{color:rgb(238,0,0);}
.fce{color:rgb(0,101,204);}
.fcd{color:rgb(51,51,51);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc3{color:rgb(14,40,65);}
.fc5{color:rgb(21,96,130);}
.fc4{color:rgb(192,0,0);}
.fc6{color:rgb(33,94,153);}
.fcf{color:rgb(233,112,50);}
.fc9{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc8{color:rgb(112,48,160);}
.fcb{color:rgb(0,32,96);}
.fca{color:rgb(58,123,34);}
.fc0{color:rgb(0,0,0);}
.fcc{color:rgb(44,62,80);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y1a{bottom:-0.001014px;}
.y0{bottom:0.000000px;}
.y4d{bottom:1.079266px;}
.y22{bottom:2.699070px;}
.y47{bottom:3.239277px;}
.y35{bottom:3.599112px;}
.y9{bottom:4.500041px;}
.ya{bottom:25.680290px;}
.y8{bottom:43.500240px;}
.y6{bottom:48.000281px;}
.y7{bottom:49.620280px;}
.y95{bottom:138.359945px;}
.y113{bottom:144.299942px;}
.yfd{bottom:144.479942px;}
.y18{bottom:146.819941px;}
.y188{bottom:146.820241px;}
.y124{bottom:148.799940px;}
.y1a1{bottom:149.159940px;}
.ye0{bottom:151.499939px;}
.y187{bottom:153.659939px;}
.y125{bottom:155.639938px;}
.y1d4{bottom:156.539937px;}
.y6c{bottom:157.439937px;}
.y1ab{bottom:158.699937px;}
.y94{bottom:163.199935px;}
.yfc{bottom:166.799933px;}
.y186{bottom:167.519933px;}
.y17{bottom:169.139932px;}
.y19f{bottom:169.859932px;}
.ycc{bottom:170.039932px;}
.y123{bottom:171.119932px;}
.ydf{bottom:173.819930px;}
.y1a0{bottom:176.699929px;}
.y6b{bottom:179.759928px;}
.y1aa{bottom:181.019928px;}
.y1f6{bottom:182.099927px;}
.y19e{bottom:186.599925px;}
.y93{bottom:188.039925px;}
.y185{bottom:188.219925px;}
.y112{bottom:189.119924px;}
.yfb{bottom:189.299924px;}
.ycb{bottom:190.739924px;}
.y1d3{bottom:190.919924px;}
.y16a{bottom:191.099924px;}
.y16{bottom:191.459923px;}
.yde{bottom:196.139922px;}
.y14d{bottom:197.039921px;}
.y122{bottom:201.359919px;}
.y6a{bottom:202.079919px;}
.y1a9{bottom:203.339919px;}
.y14e{bottom:203.879918px;}
.y184{bottom:208.919916px;}
.yfa{bottom:209.999916px;}
.yab{bottom:210.359916px;}
.yca{bottom:211.439915px;}
.y92{bottom:212.879915px;}
.y169{bottom:213.239915px;}
.y15{bottom:213.779914px;}
.y1f5{bottom:216.299913px;}
.ydd{bottom:216.839913px;}
.y14c{bottom:219.899912px;}
.y69{bottom:224.399910px;}
.y1a8{bottom:225.659910px;}
.y183{bottom:229.619908px;}
.yf9{bottom:230.699908px;}
.yaa{bottom:231.059908px;}
.yc9{bottom:231.959907px;}
.y111{bottom:233.759906px;}
.y1d2{bottom:235.559906px;}
.ydc{bottom:237.539905px;}
.y91{bottom:237.719905px;}
.y1f4{bottom:238.799904px;}
.y14b{bottom:242.579903px;}
.y68{bottom:246.719901px;}
.y1a7{bottom:247.979901px;}
.y14{bottom:248.159901px;}
.y168{bottom:249.059900px;}
.y182{bottom:250.319900px;}
.yf8{bottom:251.399899px;}
.ya9{bottom:251.759899px;}
.yc8{bottom:252.659899px;}
.y110{bottom:256.079898px;}
.y1d1{bottom:257.879897px;}
.ydb{bottom:258.239897px;}
.y90{bottom:262.559895px;}
.y14a{bottom:265.439894px;}
.ya8{bottom:268.499893px;}
.y67{bottom:269.039892px;}
.y1a6{bottom:270.299892px;}
.y181{bottom:271.019892px;}
.y167{bottom:271.199892px;}
.yf7{bottom:271.919891px;}
.y1f3{bottom:272.999891px;}
.yc7{bottom:273.359891px;}
.yda{bottom:278.939888px;}
.y1d0{bottom:280.199888px;}
.y13{bottom:283.259887px;}
.y8f{bottom:287.399885px;}
.y149{bottom:288.119885px;}
.y10e{bottom:290.459884px;}
.y66{bottom:291.359883px;}
.y180{bottom:291.719883px;}
.yf6{bottom:292.619883px;}
.y166{bottom:293.339883px;}
.yc6{bottom:294.059882px;}
.y10f{bottom:297.299881px;}
.yd9{bottom:299.639880px;}
.y1cf{bottom:302.519879px;}
.y46{bottom:303.420600px;}
.y1f2{bottom:307.379877px;}
.y8e{bottom:312.239875px;}
.y17f{bottom:312.419875px;}
.y10d{bottom:312.779875px;}
.yf5{bottom:313.319875px;}
.y65{bottom:313.679875px;}
.y165{bottom:314.039874px;}
.yc5{bottom:314.759874px;}
.yd8{bottom:316.379873px;}
.y147{bottom:323.039871px;}
.y2c{bottom:324.479870px;}
.y1ce{bottom:325.019870px;}
.y1f1{bottom:329.699868px;}
.y148{bottom:329.879868px;}
.y4c{bottom:332.760600px;}
.y17e{bottom:333.119867px;}
.yf4{bottom:334.019866px;}
.y10c{bottom:335.099866px;}
.yc4{bottom:335.459866px;}
.y8d{bottom:337.079865px;}
.y146{bottom:345.719862px;}
.y1cd{bottom:347.339861px;}
.y64{bottom:348.059861px;}
.y164{bottom:348.239861px;}
.y4b{bottom:350.759860px;}
.y1f0{bottom:352.019859px;}
.y17d{bottom:353.819858px;}
.yf3{bottom:354.719858px;}
.yc3{bottom:356.159858px;}
.y8c{bottom:361.919855px;}
.y10b{bottom:365.339854px;}
.y4a{bottom:367.499853px;}
.y145{bottom:368.579853px;}
.y1cc{bottom:369.659852px;}
.y63{bottom:370.379852px;}
.y17c{bottom:374.519850px;}
.yf2{bottom:375.419850px;}
.yc2{bottom:376.859849px;}
.y163{bottom:384.059846px;}
.y49{bottom:384.239846px;}
.y1ef{bottom:386.399845px;}
.y8b{bottom:386.759845px;}
.y144{bottom:391.259843px;}
.y1cb{bottom:391.979843px;}
.y62{bottom:392.699843px;}
.y17b{bottom:395.219842px;}
.yf1{bottom:396.119842px;}
.yc1{bottom:397.559841px;}
.y48{bottom:401.699839px;}
.y1a5{bottom:402.959839px;}
.y162{bottom:406.379837px;}
.y1ee{bottom:408.719837px;}
.y8a{bottom:411.599835px;}
.y143{bottom:414.119834px;}
.y1ca{bottom:414.299834px;}
.y61{bottom:415.019834px;}
.yf0{bottom:416.819833px;}
.yc0{bottom:418.259833px;}
.y1a4{bottom:423.659831px;}
.y17a{bottom:429.599828px;}
.y1ed{bottom:431.039828px;}
.y89{bottom:436.439825px;}
.y1c9{bottom:436.619825px;}
.y142{bottom:436.799825px;}
.y60{bottom:437.339825px;}
.yef{bottom:437.519825px;}
.ybf{bottom:438.959824px;}
.y161{bottom:440.759824px;}
.y45{bottom:442.919823px;}
.y179{bottom:451.919819px;}
.y2b{bottom:452.819819px;}
.y1ec{bottom:453.359819px;}
.y1a3{bottom:454.259818px;}
.yee{bottom:458.219817px;}
.y1c8{bottom:458.939816px;}
.ybe{bottom:459.659816px;}
.y44{bottom:460.199816px;}
.y87{bottom:461.279815px;}
.y88{bottom:468.119813px;}
.y19d{bottom:469.559812px;}
.y5f{bottom:471.719811px;}
.y178{bottom:474.239810px;}
.y160{bottom:475.139810px;}
.y1eb{bottom:475.679810px;}
.y43{bottom:477.479809px;}
.yed{bottom:478.919808px;}
.ybd{bottom:480.359808px;}
.y1c7{bottom:481.259807px;}
.y141{bottom:482.339807px;}
.y86{bottom:486.119806px;}
.y19c{bottom:490.259804px;}
.y120{bottom:491.339803px;}
.y5e{bottom:494.039802px;}
.y42{bottom:494.759802px;}
.y177{bottom:496.559801px;}
.y121{bottom:498.179801px;}
.yec{bottom:499.619800px;}
.ybc{bottom:501.059800px;}
.y140{bottom:505.019798px;}
.y15f{bottom:509.519796px;}
.y1ea{bottom:510.059796px;}
.y85{bottom:510.959796px;}
.y41{bottom:512.039795px;}
.y11f{bottom:513.659795px;}
.y1c6{bottom:515.639794px;}
.y5d{bottom:516.359793px;}
.y176{bottom:518.879792px;}
.yeb{bottom:520.319792px;}
.ybb{bottom:521.759791px;}
.y40{bottom:529.139788px;}
.y19b{bottom:531.659787px;}
.y1e9{bottom:532.379787px;}
.y84{bottom:535.799786px;}
.y11e{bottom:535.979786px;}
.y1c5{bottom:537.959785px;}
.y5c{bottom:538.679785px;}
.y13f{bottom:539.939784px;}
.yea{bottom:541.019784px;}
.y175{bottom:541.379783px;}
.yba{bottom:542.459783px;}
.y15e{bottom:543.719783px;}
.y3f{bottom:546.419781px;}
.y2a{bottom:548.759780px;}
.y19a{bottom:552.359779px;}
.y1e8{bottom:554.699778px;}
.y1c4{bottom:560.279776px;}
.y83{bottom:560.639776px;}
.y5b{bottom:560.999776px;}
.ye9{bottom:561.719775px;}
.y13e{bottom:562.619775px;}
.yb9{bottom:563.159775px;}
.y3e{bottom:563.699775px;}
.y11d{bottom:566.219774px;}
.y199{bottom:573.059771px;}
.y174{bottom:575.579770px;}
.y1e7{bottom:577.019769px;}
.y15d{bottom:577.919769px;}
.y3d{bottom:580.979768px;}
.ye7{bottom:582.419767px;}
.y1c3{bottom:582.599767px;}
.ya7{bottom:582.959767px;}
.y5a{bottom:583.499767px;}
.yb8{bottom:583.859766px;}
.y82{bottom:585.479766px;}
.ye8{bottom:589.259764px;}
.y198{bottom:593.759762px;}
.y3c{bottom:598.259761px;}
.y1e6{bottom:599.519760px;}
.ye6{bottom:603.119759px;}
.ya6{bottom:603.659759px;}
.yb7{bottom:604.559758px;}
.y1c2{bottom:604.919758px;}
.y59{bottom:605.819758px;}
.y173{bottom:605.999758px;}
.y13d{bottom:608.159757px;}
.yd7{bottom:608.339757px;}
.y81{bottom:610.319756px;}
.y29{bottom:610.499756px;}
.y15c{bottom:613.739755px;}
.y196{bottom:614.459754px;}
.y3b{bottom:615.539754px;}
.y197{bottom:621.299751px;}
.ye5{bottom:623.819750px;}
.ya5{bottom:624.359750px;}
.yb6{bottom:625.259750px;}
.y28{bottom:625.799750px;}
.y1c1{bottom:627.239749px;}
.yd6{bottom:629.039748px;}
.y13c{bottom:631.019748px;}
.y3a{bottom:632.639747px;}
.y1e5{bottom:633.719747px;}
.y80{bottom:635.159746px;}
.y15b{bottom:635.879746px;}
.y57{bottom:640.019744px;}
.y27{bottom:641.099744px;}
.ye4{bottom:644.519742px;}
.ya4{bottom:645.059742px;}
.yb5{bottom:645.959742px;}
.y58{bottom:646.859741px;}
.yd5{bottom:649.739740px;}
.y39{bottom:649.919740px;}
.y13b{bottom:653.699739px;}
.y26{bottom:655.139738px;}
.y195{bottom:655.859738px;}
.y1e4{bottom:656.039738px;}
.y56{bottom:658.379737px;}
.y7f{bottom:659.999736px;}
.ya3{bottom:665.579734px;}
.yd4{bottom:666.479733px;}
.yb4{bottom:666.659733px;}
.y38{bottom:667.199733px;}
.y15a{bottom:671.519731px;}
.y1c0{bottom:672.059731px;}
.y13a{bottom:676.559729px;}
.y1e3{bottom:678.539729px;}
.ye3{bottom:678.899728px;}
.y37{bottom:684.479726px;}
.y7e{bottom:684.839726px;}
.ya2{bottom:686.279725px;}
.yb3{bottom:687.359725px;}
.y1bf{bottom:694.379722px;}
.y194{bottom:697.259721px;}
.y139{bottom:699.239720px;}
.ye2{bottom:699.599720px;}
.y10a{bottom:700.319720px;}
.y36{bottom:701.759719px;}
.ya1{bottom:706.979717px;}
.y159{bottom:707.339717px;}
.yb2{bottom:708.059717px;}
.y7d{bottom:709.679716px;}
.y1e2{bottom:712.739715px;}
.y34{bottom:715.260600px;}
.y25{bottom:715.799714px;}
.y1be{bottom:716.699713px;}
.y193{bottom:717.959713px;}
.y33{bottom:718.859712px;}
.y138{bottom:722.099711px;}
.y109{bottom:722.639711px;}
.ya0{bottom:727.679709px;}
.y158{bottom:728.039709px;}
.yb1{bottom:728.759708px;}
.ye1{bottom:729.839708px;}
.y7c{bottom:734.519706px;}
.y1e1{bottom:735.059706px;}
.y32{bottom:736.139706px;}
.y192{bottom:738.659705px;}
.y1bd{bottom:739.019704px;}
.y137{bottom:744.779702px;}
.y108{bottom:744.959702px;}
.y9f{bottom:748.379701px;}
.y157{bottom:748.739701px;}
.yb0{bottom:749.459700px;}
.y31{bottom:753.419699px;}
.y7b{bottom:759.359696px;}
.y1bc{bottom:761.339695px;}
.y107{bottom:767.279693px;}
.y136{bottom:767.639693px;}
.y9e{bottom:769.079692px;}
.y1e0{bottom:769.439692px;}
.yaf{bottom:770.159692px;}
.y30{bottom:770.699692px;}
.y24{bottom:776.279689px;}
.y191{bottom:780.059688px;}
.y156{bottom:783.119687px;}
.y7a{bottom:784.199686px;}
.y2f{bottom:787.979685px;}
.y106{bottom:789.599684px;}
.y9d{bottom:789.779684px;}
.y135{bottom:790.319684px;}
.yae{bottom:790.859684px;}
.y23{bottom:791.759683px;}
.y1bb{bottom:796.439681px;}
.y190{bottom:800.759680px;}
.y2e{bottom:805.259678px;}
.y155{bottom:805.439678px;}
.y1a2{bottom:807.599677px;}
.y79{bottom:809.039676px;}
.y9b{bottom:810.479676px;}
.yad{bottom:811.559675px;}
.y105{bottom:811.919675px;}
.y134{bottom:813.179675px;}
.y1df{bottom:814.079674px;}
.y9c{bottom:817.319673px;}
.y1ba{bottom:820.019672px;}
.y18f{bottom:821.459671px;}
.y2d{bottom:822.359671px;}
.y21{bottom:822.360600px;}
.y154{bottom:827.759669px;}
.yac{bottom:828.299669px;}
.y9a{bottom:831.179668px;}
.y104{bottom:832.619667px;}
.y78{bottom:833.879666px;}
.y133{bottom:835.859666px;}
.y1b9{bottom:840.719664px;}
.y18e{bottom:842.159663px;}
.y20{bottom:848.099661px;}
.y1de{bottom:848.459661px;}
.y153{bottom:850.079660px;}
.y99{bottom:851.879659px;}
.y103{bottom:853.319659px;}
.y77{bottom:858.719657px;}
.y1b8{bottom:861.419655px;}
.y18d{bottom:862.859655px;}
.y132{bottom:865.559654px;}
.y1dd{bottom:870.779652px;}
.y12{bottom:872.039651px;}
.y152{bottom:872.399651px;}
.y98{bottom:872.579651px;}
.y11c{bottom:874.199650px;}
.y131{bottom:881.399647px;}
.y1b7{bottom:882.119647px;}
.y1fa{bottom:882.839647px;}
.y76{bottom:883.379647px;}
.y18c{bottom:883.559647px;}
.y102{bottom:887.699645px;}
.y11{bottom:889.319644px;}
.y1dc{bottom:893.099643px;}
.y97{bottom:893.279643px;}
.y11b{bottom:896.519641px;}
.y1b6{bottom:902.819639px;}
.y130{bottom:904.079638px;}
.y10{bottom:906.599637px;}
.y150{bottom:906.779637px;}
.y75{bottom:908.219637px;}
.y96{bottom:910.019636px;}
.y151{bottom:913.619635px;}
.y1f9{bottom:917.219633px;}
.y11a{bottom:918.839632px;}
.y1b5{bottom:923.519631px;}
.yf{bottom:923.699631px;}
.y18b{bottom:924.779630px;}
.y12f{bottom:926.939629px;}
.y1db{bottom:927.479629px;}
.y101{bottom:932.339627px;}
.y74{bottom:933.059627px;}
.y14f{bottom:937.019625px;}
.y118{bottom:941.159624px;}
.y1b4{bottom:944.219622px;}
.y18a{bottom:945.479622px;}
.y172{bottom:947.639621px;}
.y119{bottom:947.999621px;}
.y12e{bottom:949.619620px;}
.y1da{bottom:949.799620px;}
.yd{bottom:950.699620px;}
.y1f8{bottom:951.419619px;}
.y100{bottom:954.659618px;}
.ye{bottom:956.639617px;}
.y73{bottom:957.899617px;}
.y117{bottom:963.479615px;}
.y1b3{bottom:964.919614px;}
.yd3{bottom:966.179614px;}
.y171{bottom:969.959612px;}
.y12d{bottom:972.479611px;}
.yc{bottom:980.939608px;}
.y72{bottom:982.739607px;}
.y1d9{bottom:984.179606px;}
.y1b2{bottom:985.619606px;}
.y115{bottom:985.799606px;}
.yd2{bottom:986.879605px;}
.yff{bottom:987.419605px;}
.y170{bottom:992.279603px;}
.y116{bottom:992.639603px;}
.y12c{bottom:995.159602px;}
.y54{bottom:997.859601px;}
.y55{bottom:1004.699598px;}
.yb{bottom:1005.059598px;}
.y1b1{bottom:1006.319597px;}
.y1d8{bottom:1006.499597px;}
.y71{bottom:1007.579597px;}
.y114{bottom:1008.119597px;}
.y16f{bottom:1014.419594px;}
.y12b{bottom:1018.019593px;}
.y53{bottom:1020.179592px;}
.y1b0{bottom:1027.019589px;}
.yd1{bottom:1028.279589px;}
.y1f7{bottom:1030.439588px;}
.y70{bottom:1032.419587px;}
.y19{bottom:1036.020600px;}
.y12a{bottom:1040.699584px;}
.y1d7{bottom:1040.879584px;}
.y52{bottom:1042.499583px;}
.y1f{bottom:1043.759582px;}
.y1af{bottom:1047.719581px;}
.yd0{bottom:1048.979580px;}
.y16e{bottom:1050.239580px;}
.yfe{bottom:1052.759579px;}
.y6f{bottom:1057.259577px;}
.y1e{bottom:1061.039576px;}
.y1d6{bottom:1063.199575px;}
.y128{bottom:1063.559575px;}
.y51{bottom:1064.819574px;}
.y1ae{bottom:1068.419573px;}
.ycf{bottom:1069.679572px;}
.y129{bottom:1070.399572px;}
.y16d{bottom:1072.379571px;}
.y1d{bottom:1078.319569px;}
.y6e{bottom:1082.099567px;}
.y127{bottom:1086.239566px;}
.y50{bottom:1087.139565px;}
.y1ad{bottom:1089.119564px;}
.yce{bottom:1090.379564px;}
.y1d5{bottom:1097.579561px;}
.y1c{bottom:1104.419558px;}
.y6d{bottom:1106.939557px;}
.y16c{bottom:1108.199557px;}
.y126{bottom:1109.099556px;}
.y4f{bottom:1109.459556px;}
.y1ac{bottom:1110.719556px;}
.ycd{bottom:1111.079556px;}
.y189{bottom:1117.919553px;}
.y1b{bottom:1121.699551px;}
.y16b{bottom:1130.339548px;}
.y4e{bottom:1131.779547px;}
.y4{bottom:1153.019539px;}
.y5{bottom:1182.179527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h15{height:13.140000px;}
.hc{height:13.320000px;}
.h16{height:13.860000px;}
.hf{height:14.040000px;}
.h14{height:16.560000px;}
.h13{height:16.920000px;}
.h5{height:20.340000px;}
.h9{height:32.693893px;}
.h4{height:32.811667px;}
.h18{height:33.518307px;}
.h10{height:33.706744px;}
.h12{height:36.624009px;}
.h3{height:36.703110px;}
.h17{height:36.729477px;}
.h11{height:39.339828px;}
.hd{height:40.501390px;}
.h6{height:40.647288px;}
.h1{height:41.522679px;}
.he{height:43.682678px;}
.h2{height:45.054826px;}
.h8{height:48.796855px;}
.h1a{height:48.972637px;}
.hb{height:50.027324px;}
.h19{height:52.453104px;}
.ha{height:52.541698px;}
.h7{height:57.092321px;}
.h0{height:1263.000000px;}
.w6{width:4.500000px;}
.w2{width:5.400000px;}
.w5{width:7.020000px;}
.w3{width:7.560000px;}
.w9{width:7.920000px;}
.w7{width:31.500000px;}
.w4{width:113.760000px;}
.w8{width:264.240000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x4{left:91.799963px;}
.x1{left:107.999957px;}
.x5{left:116.999953px;}
.x1e{left:119.159952px;}
.x1c{left:121.139952px;}
.x5d{left:124.379950px;}
.xe{left:125.459950px;}
.x19{left:135.180000px;}
.x1b{left:139.859863px;}
.x44{left:146.519941px;}
.x18{left:148.679941px;}
.x42{left:156.959937px;}
.x4e{left:161.999137px;}
.x1f{left:167.759933px;}
.x1d{left:177.839929px;}
.x4f{left:188.999177px;}
.x10{left:196.200710px;}
.x32{left:199.260045px;}
.x50{left:215.999351px;}
.x2a{left:221.940245px;}
.x5a{left:226.800358px;}
.x33{left:233.999103px;}
.x12{left:235.440000px;}
.x47{left:246.239902px;}
.x1a{left:248.940000px;}
.x20{left:261.719905px;}
.x21{left:262.799895px;}
.x9{left:264.419894px;}
.x3f{left:269.459892px;}
.x37{left:280.438739px;}
.x22{left:283.859848px;}
.x15{left:288.359885px;}
.x40{left:289.979884px;}
.x2{left:302.579879px;}
.x24{left:307.619877px;}
.x8{left:315.899857px;}
.x55{left:319.139872px;}
.x35{left:322.378113px;}
.x4b{left:326.519504px;}
.x25{left:339.120000px;}
.x3c{left:358.019857px;}
.x2c{left:362.519855px;}
.x2d{left:374.219850px;}
.xa{left:378.719849px;}
.x56{left:379.799848px;}
.x6{left:383.039847px;}
.xb{left:384.839846px;}
.x14{left:390.599844px;}
.x13{left:393.840051px;}
.x16{left:399.239840px;}
.x51{left:415.079834px;}
.xf{left:428.940127px;}
.x52{left:435.779826px;}
.x2f{left:444.239822px;}
.x11{left:446.399821px;}
.x30{left:456.659817px;}
.x5c{left:464.219814px;}
.x45{left:511.379795px;}
.x46{left:526.679789px;}
.x4c{left:549.539780px;}
.x4d{left:566.279773px;}
.x36{left:581.398098px;}
.x48{left:596.879761px;}
.x26{left:603.360000px;}
.x49{left:613.799754px;}
.xc{left:622.439751px;}
.xd{left:628.379749px;}
.x3d{left:636.659745px;}
.x5b{left:640.799744px;}
.x43{left:652.319739px;}
.x3e{left:653.399739px;}
.x41{left:655.739812px;}
.x17{left:659.700215px;}
.x2e{left:663.479735px;}
.x2b{left:666.899733px;}
.x3{left:670.139732px;}
.x3b{left:672.479491px;}
.x38{left:673.739822px;}
.x29{left:674.819708px;}
.x57{left:676.079730px;}
.x59{left:689.400078px;}
.x34{left:697.678105px;}
.x27{left:706.139718px;}
.x31{left:707.399862px;}
.x28{left:710.099716px;}
.x39{left:723.059711px;}
.x4a{left:729.899708px;}
.x3a{left:731.699707px;}
.x58{left:748.439701px;}
.x53{left:763.379695px;}
.x54{left:784.979686px;}
.x7{left:804.960000px;}
.x23{left:829.080000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009440pt;}
.lsc{letter-spacing:0.009446pt;}
.ls7{letter-spacing:0.017387pt;}
.ls5{letter-spacing:0.018891pt;}
.lsb{letter-spacing:0.078735pt;}
.ls6{letter-spacing:7.693970pt;}
.ls9{letter-spacing:27.674816pt;}
.lsa{letter-spacing:30.236308pt;}
.ls8{letter-spacing:48.807447pt;}
.ls3{letter-spacing:52.040086pt;}
.ls2{letter-spacing:158.985708pt;}
.ls0{letter-spacing:1398.736963pt;}
.ws1{word-spacing:-41.279983pt;}
.ws8{word-spacing:-31.999987pt;}
.ws4{word-spacing:-28.799988pt;}
.ws7{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws2{word-spacing:-13.279995pt;}
.ws6{word-spacing:-10.719996pt;}
.ws5{word-spacing:0.000000pt;}
._25{margin-left:-8.255918pt;}
._18{margin-left:-7.144957pt;}
._15{margin-left:-5.343505pt;}
._2{margin-left:-4.051647pt;}
._3{margin-left:-2.488800pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._d{width:2.293757pt;}
._c{width:3.537956pt;}
._11{width:4.674278pt;}
._6{width:5.767817pt;}
._5{width:6.844749pt;}
._4{width:8.378446pt;}
._9{width:9.695418pt;}
._e{width:10.612359pt;}
._12{width:11.552528pt;}
._1a{width:12.718370pt;}
._14{width:13.614878pt;}
._19{width:14.506141pt;}
._10{width:15.482614pt;}
._f{width:16.694706pt;}
._13{width:18.138463pt;}
._b{width:19.586261pt;}
._a{width:20.623446pt;}
._23{width:21.523710pt;}
._1b{width:22.457277pt;}
._24{width:24.321714pt;}
._22{width:26.463593pt;}
._17{width:27.643480pt;}
._16{width:32.868143pt;}
._1f{width:34.225304pt;}
._1e{width:35.443676pt;}
._1c{width:38.347062pt;}
._1d{width:39.268387pt;}
._8{width:52.040103pt;}
._20{width:59.116288pt;}
._21{width:60.146356pt;}
._27{width:84.696187pt;}
._26{width:90.041240pt;}
._7{width:226.867461pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y1a{bottom:-0.000902pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:0.959348pt;}
.y22{bottom:2.399173pt;}
.y47{bottom:2.879358pt;}
.y35{bottom:3.199211pt;}
.y9{bottom:4.000036pt;}
.ya{bottom:22.826924pt;}
.y8{bottom:38.666880pt;}
.y6{bottom:42.666916pt;}
.y7{bottom:44.106916pt;}
.y95{bottom:122.986617pt;}
.y113{bottom:128.266615pt;}
.yfd{bottom:128.426615pt;}
.y18{bottom:130.506614pt;}
.y188{bottom:130.506881pt;}
.y124{bottom:132.266614pt;}
.y1a1{bottom:132.586614pt;}
.ye0{bottom:134.666613pt;}
.y187{bottom:136.586612pt;}
.y125{bottom:138.346611pt;}
.y1d4{bottom:139.146611pt;}
.y6c{bottom:139.946611pt;}
.y1ab{bottom:141.066610pt;}
.y94{bottom:145.066609pt;}
.yfc{bottom:148.266607pt;}
.y186{bottom:148.906607pt;}
.y17{bottom:150.346607pt;}
.y19f{bottom:150.986606pt;}
.ycc{bottom:151.146606pt;}
.y123{bottom:152.106606pt;}
.ydf{bottom:154.506605pt;}
.y1a0{bottom:157.066604pt;}
.y6b{bottom:159.786603pt;}
.y1aa{bottom:160.906602pt;}
.y1f6{bottom:161.866602pt;}
.y19e{bottom:165.866600pt;}
.y93{bottom:167.146600pt;}
.y185{bottom:167.306600pt;}
.y112{bottom:168.106599pt;}
.yfb{bottom:168.266599pt;}
.ycb{bottom:169.546599pt;}
.y1d3{bottom:169.706599pt;}
.y16a{bottom:169.866599pt;}
.y16{bottom:170.186599pt;}
.yde{bottom:174.346597pt;}
.y14d{bottom:175.146597pt;}
.y122{bottom:178.986595pt;}
.y6a{bottom:179.626595pt;}
.y1a9{bottom:180.746594pt;}
.y14e{bottom:181.226594pt;}
.y184{bottom:185.706592pt;}
.yfa{bottom:186.666592pt;}
.yab{bottom:186.986592pt;}
.yca{bottom:187.946591pt;}
.y92{bottom:189.226591pt;}
.y169{bottom:189.546591pt;}
.y15{bottom:190.026591pt;}
.y1f5{bottom:192.266590pt;}
.ydd{bottom:192.746590pt;}
.y14c{bottom:195.466588pt;}
.y69{bottom:199.466587pt;}
.y1a8{bottom:200.586586pt;}
.y183{bottom:204.106585pt;}
.yf9{bottom:205.066585pt;}
.yaa{bottom:205.386585pt;}
.yc9{bottom:206.186584pt;}
.y111{bottom:207.786584pt;}
.y1d2{bottom:209.386583pt;}
.ydc{bottom:211.146582pt;}
.y91{bottom:211.306582pt;}
.y1f4{bottom:212.266582pt;}
.y14b{bottom:215.626580pt;}
.y68{bottom:219.306579pt;}
.y1a7{bottom:220.426578pt;}
.y14{bottom:220.586578pt;}
.y168{bottom:221.386578pt;}
.y182{bottom:222.506578pt;}
.yf8{bottom:223.466577pt;}
.ya9{bottom:223.786577pt;}
.yc8{bottom:224.586577pt;}
.y110{bottom:227.626576pt;}
.y1d1{bottom:229.226575pt;}
.ydb{bottom:229.546575pt;}
.y90{bottom:233.386573pt;}
.y14a{bottom:235.946572pt;}
.ya8{bottom:238.666571pt;}
.y67{bottom:239.146571pt;}
.y1a6{bottom:240.266571pt;}
.y181{bottom:240.906570pt;}
.y167{bottom:241.066570pt;}
.yf7{bottom:241.706570pt;}
.y1f3{bottom:242.666570pt;}
.yc7{bottom:242.986569pt;}
.yda{bottom:247.946567pt;}
.y1d0{bottom:249.066567pt;}
.y13{bottom:251.786566pt;}
.y8f{bottom:255.466564pt;}
.y149{bottom:256.106564pt;}
.y10e{bottom:258.186563pt;}
.y66{bottom:258.986563pt;}
.y180{bottom:259.306563pt;}
.yf6{bottom:260.106563pt;}
.y166{bottom:260.746562pt;}
.yc6{bottom:261.386562pt;}
.y10f{bottom:264.266561pt;}
.yd9{bottom:266.346560pt;}
.y1cf{bottom:268.906559pt;}
.y46{bottom:269.707200pt;}
.y1f2{bottom:273.226557pt;}
.y8e{bottom:277.546556pt;}
.y17f{bottom:277.706556pt;}
.y10d{bottom:278.026555pt;}
.yf5{bottom:278.506555pt;}
.y65{bottom:278.826555pt;}
.y165{bottom:279.146555pt;}
.yc5{bottom:279.786555pt;}
.yd8{bottom:281.226554pt;}
.y147{bottom:287.146552pt;}
.y2c{bottom:288.426551pt;}
.y1ce{bottom:288.906551pt;}
.y1f1{bottom:293.066549pt;}
.y148{bottom:293.226549pt;}
.y4c{bottom:295.787200pt;}
.y17e{bottom:296.106548pt;}
.yf4{bottom:296.906548pt;}
.y10c{bottom:297.866548pt;}
.yc4{bottom:298.186547pt;}
.y8d{bottom:299.626547pt;}
.y146{bottom:307.306544pt;}
.y1cd{bottom:308.746543pt;}
.y64{bottom:309.386543pt;}
.y164{bottom:309.546543pt;}
.y4b{bottom:311.786542pt;}
.y1f0{bottom:312.906542pt;}
.y17d{bottom:314.506541pt;}
.yf3{bottom:315.306541pt;}
.yc3{bottom:316.586540pt;}
.y8c{bottom:321.706538pt;}
.y10b{bottom:324.746537pt;}
.y4a{bottom:326.666536pt;}
.y145{bottom:327.626536pt;}
.y1cc{bottom:328.586535pt;}
.y63{bottom:329.226535pt;}
.y17c{bottom:332.906534pt;}
.yf2{bottom:333.706533pt;}
.yc2{bottom:334.986533pt;}
.y163{bottom:341.386530pt;}
.y49{bottom:341.546530pt;}
.y1ef{bottom:343.466529pt;}
.y8b{bottom:343.786529pt;}
.y144{bottom:347.786528pt;}
.y1cb{bottom:348.426527pt;}
.y62{bottom:349.066527pt;}
.y17b{bottom:351.306526pt;}
.yf1{bottom:352.106526pt;}
.yc1{bottom:353.386525pt;}
.y48{bottom:357.066524pt;}
.y1a5{bottom:358.186523pt;}
.y162{bottom:361.226522pt;}
.y1ee{bottom:363.306521pt;}
.y8a{bottom:365.866520pt;}
.y143{bottom:368.106519pt;}
.y1ca{bottom:368.266519pt;}
.y61{bottom:368.906519pt;}
.yf0{bottom:370.506518pt;}
.yc0{bottom:371.786518pt;}
.y1a4{bottom:376.586516pt;}
.y17a{bottom:381.866514pt;}
.y1ed{bottom:383.146513pt;}
.y89{bottom:387.946511pt;}
.y1c9{bottom:388.106511pt;}
.y142{bottom:388.266511pt;}
.y60{bottom:388.746511pt;}
.yef{bottom:388.906511pt;}
.ybf{bottom:390.186511pt;}
.y161{bottom:391.786510pt;}
.y45{bottom:393.706509pt;}
.y179{bottom:401.706506pt;}
.y2b{bottom:402.506506pt;}
.y1ec{bottom:402.986505pt;}
.y1a3{bottom:403.786505pt;}
.yee{bottom:407.306504pt;}
.y1c8{bottom:407.946503pt;}
.ybe{bottom:408.586503pt;}
.y44{bottom:409.066503pt;}
.y87{bottom:410.026503pt;}
.y88{bottom:416.106500pt;}
.y19d{bottom:417.386500pt;}
.y5f{bottom:419.306499pt;}
.y178{bottom:421.546498pt;}
.y160{bottom:422.346498pt;}
.y1eb{bottom:422.826498pt;}
.y43{bottom:424.426497pt;}
.yed{bottom:425.706496pt;}
.ybd{bottom:426.986496pt;}
.y1c7{bottom:427.786496pt;}
.y141{bottom:428.746495pt;}
.y86{bottom:432.106494pt;}
.y19c{bottom:435.786492pt;}
.y120{bottom:436.746492pt;}
.y5e{bottom:439.146491pt;}
.y42{bottom:439.786491pt;}
.y177{bottom:441.386490pt;}
.y121{bottom:442.826490pt;}
.yec{bottom:444.106489pt;}
.ybc{bottom:445.386489pt;}
.y140{bottom:448.906487pt;}
.y15f{bottom:452.906486pt;}
.y1ea{bottom:453.386485pt;}
.y85{bottom:454.186485pt;}
.y41{bottom:455.146485pt;}
.y11f{bottom:456.586484pt;}
.y1c6{bottom:458.346483pt;}
.y5d{bottom:458.986483pt;}
.y176{bottom:461.226482pt;}
.yeb{bottom:462.506482pt;}
.ybb{bottom:463.786481pt;}
.y40{bottom:470.346479pt;}
.y19b{bottom:472.586478pt;}
.y1e9{bottom:473.226477pt;}
.y84{bottom:476.266476pt;}
.y11e{bottom:476.426476pt;}
.y1c5{bottom:478.186475pt;}
.y5c{bottom:478.826475pt;}
.y13f{bottom:479.946475pt;}
.yea{bottom:480.906474pt;}
.y175{bottom:481.226474pt;}
.yba{bottom:482.186474pt;}
.y15e{bottom:483.306473pt;}
.y3f{bottom:485.706472pt;}
.y2a{bottom:487.786472pt;}
.y19a{bottom:490.986470pt;}
.y1e8{bottom:493.066469pt;}
.y1c4{bottom:498.026467pt;}
.y83{bottom:498.346467pt;}
.y5b{bottom:498.666467pt;}
.ye9{bottom:499.306467pt;}
.y13e{bottom:500.106467pt;}
.yb9{bottom:500.586466pt;}
.y3e{bottom:501.066466pt;}
.y11d{bottom:503.306465pt;}
.y199{bottom:509.386463pt;}
.y174{bottom:511.626462pt;}
.y1e7{bottom:512.906462pt;}
.y15d{bottom:513.706461pt;}
.y3d{bottom:516.426460pt;}
.ye7{bottom:517.706460pt;}
.y1c3{bottom:517.866460pt;}
.ya7{bottom:518.186459pt;}
.y5a{bottom:518.666459pt;}
.yb8{bottom:518.986459pt;}
.y82{bottom:520.426458pt;}
.ye8{bottom:523.786457pt;}
.y198{bottom:527.786456pt;}
.y3c{bottom:531.786454pt;}
.y1e6{bottom:532.906454pt;}
.ye6{bottom:536.106452pt;}
.ya6{bottom:536.586452pt;}
.yb7{bottom:537.386452pt;}
.y1c2{bottom:537.706452pt;}
.y59{bottom:538.506451pt;}
.y173{bottom:538.666451pt;}
.y13d{bottom:540.586450pt;}
.yd7{bottom:540.746450pt;}
.y81{bottom:542.506450pt;}
.y29{bottom:542.666450pt;}
.y15c{bottom:545.546448pt;}
.y196{bottom:546.186448pt;}
.y3b{bottom:547.146448pt;}
.y197{bottom:552.266446pt;}
.ye5{bottom:554.506445pt;}
.ya5{bottom:554.986445pt;}
.yb6{bottom:555.786444pt;}
.y28{bottom:556.266444pt;}
.y1c1{bottom:557.546444pt;}
.yd6{bottom:559.146443pt;}
.y13c{bottom:560.906442pt;}
.y3a{bottom:562.346442pt;}
.y1e5{bottom:563.306441pt;}
.y80{bottom:564.586441pt;}
.y15b{bottom:565.226441pt;}
.y57{bottom:568.906439pt;}
.y27{bottom:569.866439pt;}
.ye4{bottom:572.906438pt;}
.ya4{bottom:573.386437pt;}
.yb5{bottom:574.186437pt;}
.y58{bottom:574.986437pt;}
.yd5{bottom:577.546436pt;}
.y39{bottom:577.706436pt;}
.y13b{bottom:581.066434pt;}
.y26{bottom:582.346434pt;}
.y195{bottom:582.986433pt;}
.y1e4{bottom:583.146433pt;}
.y56{bottom:585.226433pt;}
.y7f{bottom:586.666432pt;}
.ya3{bottom:591.626430pt;}
.yd4{bottom:592.426430pt;}
.yb4{bottom:592.586430pt;}
.y38{bottom:593.066429pt;}
.y15a{bottom:596.906428pt;}
.y1c0{bottom:597.386428pt;}
.y13a{bottom:601.386426pt;}
.y1e3{bottom:603.146425pt;}
.ye3{bottom:603.466425pt;}
.y37{bottom:608.426423pt;}
.y7e{bottom:608.746423pt;}
.ya2{bottom:610.026423pt;}
.yb3{bottom:610.986422pt;}
.y1bf{bottom:617.226420pt;}
.y194{bottom:619.786419pt;}
.y139{bottom:621.546418pt;}
.ye2{bottom:621.866418pt;}
.y10a{bottom:622.506418pt;}
.y36{bottom:623.786417pt;}
.ya1{bottom:628.426415pt;}
.y159{bottom:628.746415pt;}
.yb2{bottom:629.386415pt;}
.y7d{bottom:630.826414pt;}
.y1e2{bottom:633.546413pt;}
.y34{bottom:635.787200pt;}
.y25{bottom:636.266412pt;}
.y1be{bottom:637.066412pt;}
.y193{bottom:638.186411pt;}
.y33{bottom:638.986411pt;}
.y138{bottom:641.866410pt;}
.y109{bottom:642.346410pt;}
.ya0{bottom:646.826408pt;}
.y158{bottom:647.146408pt;}
.yb1{bottom:647.786408pt;}
.ye1{bottom:648.746407pt;}
.y7c{bottom:652.906406pt;}
.y1e1{bottom:653.386405pt;}
.y32{bottom:654.346405pt;}
.y192{bottom:656.586404pt;}
.y1bd{bottom:656.906404pt;}
.y137{bottom:662.026402pt;}
.y108{bottom:662.186402pt;}
.y9f{bottom:665.226401pt;}
.y157{bottom:665.546400pt;}
.yb0{bottom:666.186400pt;}
.y31{bottom:669.706399pt;}
.y7b{bottom:674.986397pt;}
.y1bc{bottom:676.746396pt;}
.y107{bottom:682.026394pt;}
.y136{bottom:682.346394pt;}
.y9e{bottom:683.626393pt;}
.y1e0{bottom:683.946393pt;}
.yaf{bottom:684.586393pt;}
.y30{bottom:685.066393pt;}
.y24{bottom:690.026391pt;}
.y191{bottom:693.386389pt;}
.y156{bottom:696.106388pt;}
.y7a{bottom:697.066388pt;}
.y2f{bottom:700.426386pt;}
.y106{bottom:701.866386pt;}
.y9d{bottom:702.026386pt;}
.y135{bottom:702.506386pt;}
.yae{bottom:702.986385pt;}
.y23{bottom:703.786385pt;}
.y1bb{bottom:707.946383pt;}
.y190{bottom:711.786382pt;}
.y2e{bottom:715.786380pt;}
.y155{bottom:715.946380pt;}
.y1a2{bottom:717.866380pt;}
.y79{bottom:719.146379pt;}
.y9b{bottom:720.426378pt;}
.yad{bottom:721.386378pt;}
.y105{bottom:721.706378pt;}
.y134{bottom:722.826378pt;}
.y1df{bottom:723.626377pt;}
.y9c{bottom:726.506376pt;}
.y1ba{bottom:728.906375pt;}
.y18f{bottom:730.186375pt;}
.y2d{bottom:730.986374pt;}
.y21{bottom:730.987200pt;}
.y154{bottom:735.786372pt;}
.yac{bottom:736.266372pt;}
.y9a{bottom:738.826371pt;}
.y104{bottom:740.106371pt;}
.y78{bottom:741.226370pt;}
.y133{bottom:742.986369pt;}
.y1b9{bottom:747.306368pt;}
.y18e{bottom:748.586367pt;}
.y20{bottom:753.866365pt;}
.y1de{bottom:754.186365pt;}
.y153{bottom:755.626364pt;}
.y99{bottom:757.226364pt;}
.y103{bottom:758.506363pt;}
.y77{bottom:763.306361pt;}
.y1b8{bottom:765.706360pt;}
.y18d{bottom:766.986360pt;}
.y132{bottom:769.386359pt;}
.y1dd{bottom:774.026357pt;}
.y12{bottom:775.146357pt;}
.y152{bottom:775.466356pt;}
.y98{bottom:775.626356pt;}
.y11c{bottom:777.066356pt;}
.y131{bottom:783.466353pt;}
.y1b7{bottom:784.106353pt;}
.y1fa{bottom:784.746353pt;}
.y76{bottom:785.226353pt;}
.y18c{bottom:785.386353pt;}
.y102{bottom:789.066351pt;}
.y11{bottom:790.506350pt;}
.y1dc{bottom:793.866349pt;}
.y97{bottom:794.026349pt;}
.y11b{bottom:796.906348pt;}
.y1b6{bottom:802.506346pt;}
.y130{bottom:803.626345pt;}
.y10{bottom:805.866344pt;}
.y150{bottom:806.026344pt;}
.y75{bottom:807.306344pt;}
.y96{bottom:808.906343pt;}
.y151{bottom:812.106342pt;}
.y1f9{bottom:815.306341pt;}
.y11a{bottom:816.746340pt;}
.y1b5{bottom:820.906338pt;}
.yf{bottom:821.066338pt;}
.y18b{bottom:822.026338pt;}
.y12f{bottom:823.946337pt;}
.y1db{bottom:824.426337pt;}
.y101{bottom:828.746335pt;}
.y74{bottom:829.386335pt;}
.y14f{bottom:832.906334pt;}
.y118{bottom:836.586332pt;}
.y1b4{bottom:839.306331pt;}
.y18a{bottom:840.426330pt;}
.y172{bottom:842.346330pt;}
.y119{bottom:842.666330pt;}
.y12e{bottom:844.106329pt;}
.y1da{bottom:844.266329pt;}
.yd{bottom:845.066329pt;}
.y1f8{bottom:845.706328pt;}
.y100{bottom:848.586327pt;}
.ye{bottom:850.346327pt;}
.y73{bottom:851.466326pt;}
.y117{bottom:856.426324pt;}
.y1b3{bottom:857.706324pt;}
.yd3{bottom:858.826323pt;}
.y171{bottom:862.186322pt;}
.y12d{bottom:864.426321pt;}
.yc{bottom:871.946318pt;}
.y72{bottom:873.546317pt;}
.y1d9{bottom:874.826317pt;}
.y1b2{bottom:876.106316pt;}
.y115{bottom:876.266316pt;}
.yd2{bottom:877.226316pt;}
.yff{bottom:877.706316pt;}
.y170{bottom:882.026314pt;}
.y116{bottom:882.346314pt;}
.y12c{bottom:884.586313pt;}
.y54{bottom:886.986312pt;}
.y55{bottom:893.066309pt;}
.yb{bottom:893.386309pt;}
.y1b1{bottom:894.506309pt;}
.y1d8{bottom:894.666309pt;}
.y71{bottom:895.626308pt;}
.y114{bottom:896.106308pt;}
.y16f{bottom:901.706306pt;}
.y12b{bottom:904.906305pt;}
.y53{bottom:906.826304pt;}
.y1b0{bottom:912.906302pt;}
.yd1{bottom:914.026301pt;}
.y1f7{bottom:915.946300pt;}
.y70{bottom:917.706300pt;}
.y19{bottom:920.907200pt;}
.y12a{bottom:925.066297pt;}
.y1d7{bottom:925.226297pt;}
.y52{bottom:926.666296pt;}
.y1f{bottom:927.786296pt;}
.y1af{bottom:931.306294pt;}
.yd0{bottom:932.426294pt;}
.y16e{bottom:933.546293pt;}
.yfe{bottom:935.786292pt;}
.y6f{bottom:939.786291pt;}
.y1e{bottom:943.146289pt;}
.y1d6{bottom:945.066289pt;}
.y128{bottom:945.386289pt;}
.y51{bottom:946.506288pt;}
.y1ae{bottom:949.706287pt;}
.ycf{bottom:950.826286pt;}
.y129{bottom:951.466286pt;}
.y16d{bottom:953.226285pt;}
.y1d{bottom:958.506283pt;}
.y6e{bottom:961.866282pt;}
.y127{bottom:965.546280pt;}
.y50{bottom:966.346280pt;}
.y1ad{bottom:968.106279pt;}
.yce{bottom:969.226279pt;}
.y1d5{bottom:975.626276pt;}
.y1c{bottom:981.706274pt;}
.y6d{bottom:983.946273pt;}
.y16c{bottom:985.066273pt;}
.y126{bottom:985.866272pt;}
.y4f{bottom:986.186272pt;}
.y1ac{bottom:987.306272pt;}
.ycd{bottom:987.626272pt;}
.y189{bottom:993.706269pt;}
.y1b{bottom:997.066268pt;}
.y16b{bottom:1004.746265pt;}
.y4e{bottom:1006.026264pt;}
.y4{bottom:1024.906257pt;}
.y5{bottom:1050.826246pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h15{height:11.680000pt;}
.hc{height:11.840000pt;}
.h16{height:12.320000pt;}
.hf{height:12.480000pt;}
.h14{height:14.720000pt;}
.h13{height:15.040000pt;}
.h5{height:18.080000pt;}
.h9{height:29.061238pt;}
.h4{height:29.165926pt;}
.h18{height:29.794051pt;}
.h10{height:29.961551pt;}
.h12{height:32.554674pt;}
.h3{height:32.624987pt;}
.h17{height:32.648424pt;}
.h11{height:34.968736pt;}
.hd{height:36.001236pt;}
.h6{height:36.130923pt;}
.h1{height:36.909048pt;}
.he{height:38.829047pt;}
.h2{height:40.048734pt;}
.h8{height:43.374983pt;}
.h1a{height:43.531233pt;}
.hb{height:44.468732pt;}
.h19{height:46.624981pt;}
.ha{height:46.703731pt;}
.h7{height:50.748730pt;}
.h0{height:1122.666667pt;}
.w6{width:4.000000pt;}
.w2{width:4.800000pt;}
.w5{width:6.240000pt;}
.w3{width:6.720000pt;}
.w9{width:7.040000pt;}
.w7{width:28.000000pt;}
.w4{width:101.120000pt;}
.w8{width:234.880000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x4{left:81.599967pt;}
.x1{left:95.999962pt;}
.x5{left:103.999958pt;}
.x1e{left:105.919958pt;}
.x1c{left:107.679957pt;}
.x5d{left:110.559956pt;}
.xe{left:111.519955pt;}
.x19{left:120.160000pt;}
.x1b{left:124.319879pt;}
.x44{left:130.239948pt;}
.x18{left:132.159947pt;}
.x42{left:139.519944pt;}
.x4e{left:143.999233pt;}
.x1f{left:149.119940pt;}
.x1d{left:158.079937pt;}
.x4f{left:167.999268pt;}
.x10{left:174.400631pt;}
.x32{left:177.120040pt;}
.x50{left:191.999423pt;}
.x2a{left:197.280218pt;}
.x5a{left:201.600318pt;}
.x33{left:207.999202pt;}
.x12{left:209.280000pt;}
.x47{left:218.879912pt;}
.x1a{left:221.280000pt;}
.x20{left:232.639916pt;}
.x21{left:233.599907pt;}
.x9{left:235.039906pt;}
.x3f{left:239.519904pt;}
.x37{left:249.278879pt;}
.x22{left:252.319865pt;}
.x15{left:256.319897pt;}
.x40{left:257.759897pt;}
.x2{left:268.959892pt;}
.x24{left:273.439891pt;}
.x8{left:280.799873pt;}
.x55{left:283.679887pt;}
.x35{left:286.558323pt;}
.x4b{left:290.239559pt;}
.x25{left:301.440000pt;}
.x3c{left:318.239873pt;}
.x2c{left:322.239871pt;}
.x2d{left:332.639867pt;}
.xa{left:336.639865pt;}
.x56{left:337.599865pt;}
.x6{left:340.479864pt;}
.xb{left:342.079863pt;}
.x14{left:347.199861pt;}
.x13{left:350.080045pt;}
.x16{left:354.879858pt;}
.x51{left:368.959852pt;}
.xf{left:381.280113pt;}
.x52{left:387.359845pt;}
.x2f{left:394.879842pt;}
.x11{left:396.799841pt;}
.x30{left:405.919838pt;}
.x5c{left:412.639835pt;}
.x45{left:454.559818pt;}
.x46{left:468.159813pt;}
.x4c{left:488.479805pt;}
.x4d{left:503.359799pt;}
.x36{left:516.798309pt;}
.x48{left:530.559788pt;}
.x26{left:536.320000pt;}
.x49{left:545.599782pt;}
.xc{left:553.279779pt;}
.xd{left:558.559777pt;}
.x3d{left:565.919774pt;}
.x5b{left:569.599772pt;}
.x43{left:579.839768pt;}
.x3e{left:580.799768pt;}
.x41{left:582.879833pt;}
.x17{left:586.400191pt;}
.x2e{left:589.759764pt;}
.x2b{left:592.799763pt;}
.x3{left:595.679762pt;}
.x3b{left:597.759548pt;}
.x38{left:598.879841pt;}
.x29{left:599.839740pt;}
.x57{left:600.959760pt;}
.x59{left:612.800070pt;}
.x34{left:620.158316pt;}
.x27{left:627.679749pt;}
.x31{left:628.799877pt;}
.x28{left:631.199748pt;}
.x39{left:642.719743pt;}
.x4a{left:648.799740pt;}
.x3a{left:650.399740pt;}
.x58{left:665.279734pt;}
.x53{left:678.559729pt;}
.x54{left:697.759721pt;}
.x7{left:715.520000pt;}
.x23{left:736.960000pt;}
}




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