
    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_7abaafa6052abda1731af8ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.729980;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_6ad0eeda6fa27417de1e056d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d392fc74a45906e3039776c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_cffc844168b6a267dbbdbbf5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.687988;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_2fef81020cdcd8023d9a33f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.718000;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_cf7d54d25831a2dddfb00c5b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ca706bad763ee669b9e96cb0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3fc7fc7a833d9d164a79e3cf.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2eeb87e0b5f1f360092d12cb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_92182813b0fce692de50489d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_92182813b0fce692de50489d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_06d1eb24c73de842f5236d9c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_504f631c137f1062b5990717.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-3.164062px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000023px;}
.ls1{letter-spacing:9.000000px;}
.ls4{letter-spacing:16.664062px;}
.ls2{letter-spacing:198.000000px;}
.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;}
}
.ws1{word-spacing:-54.000000px;}
.ws4{word-spacing:-36.000000px;}
.ws5{word-spacing:-20.003906px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-9.281243px;}
._c{margin-left:-7.980466px;}
._2{margin-left:-6.609375px;}
._0{margin-left:-5.343728px;}
._1{margin-left:-3.972657px;}
._3{margin-left:-2.882812px;}
._4{margin-left:-1.300780px;}
._10{width:2.671858px;}
._5{width:4.500000px;}
._6{width:9.000002px;}
._7{width:13.500002px;}
._9{width:22.499995px;}
._8{width:27.000002px;}
._e{width:31.500000px;}
._b{width:36.000002px;}
._a{width:40.500000px;}
._12{width:103.500009px;}
._11{width:108.000000px;}
._f{width:198.000000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(17,85,204);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(204,80,62);}
.fc5{color:rgb(0,0,238);}
.fc2{color:rgb(0,109,180);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:43.200002px;}
.fs3{font-size:59.999999px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y39{bottom:5.167969px;}
.y2{bottom:5.167973px;}
.y1ea{bottom:9.515625px;}
.y1ed{bottom:9.515627px;}
.y1a8{bottom:9.518548px;}
.y23c{bottom:9.518550px;}
.y193{bottom:9.518552px;}
.y184{bottom:9.518553px;}
.y17f{bottom:9.518554px;}
.y204{bottom:9.518556px;}
.y19e{bottom:9.518559px;}
.y1b1{bottom:9.518560px;}
.y18b{bottom:9.518562px;}
.y1a4{bottom:9.518564px;}
.y18f{bottom:9.518567px;}
.y1f0{bottom:9.521479px;}
.y1f2{bottom:9.521484px;}
.y1e8{bottom:9.521485px;}
.y238{bottom:10.306641px;}
.y180{bottom:10.309570px;}
.y209{bottom:10.792969px;}
.y1e4{bottom:23.159179px;}
.y1b8{bottom:30.216789px;}
.y1b0{bottom:30.216791px;}
.y1a3{bottom:30.216793px;}
.y183{bottom:30.216796px;}
.y1e7{bottom:30.216798px;}
.y1ef{bottom:30.216799px;}
.y19d{bottom:30.216804px;}
.y18a{bottom:30.216807px;}
.y219{bottom:30.216808px;}
.y23b{bottom:30.628418px;}
.y1ec{bottom:50.912111px;}
.y19c{bottom:50.915034px;}
.y1af{bottom:50.915035px;}
.y189{bottom:50.915037px;}
.y1a2{bottom:50.915039px;}
.y203{bottom:50.915040px;}
.y1b5{bottom:50.915049px;}
.y1e6{bottom:50.917969px;}
.y206{bottom:51.518554px;}
.y37{bottom:68.542973px;}
.y19b{bottom:71.613279px;}
.y188{bottom:71.613282px;}
.y1b4{bottom:71.613294px;}
.y19a{bottom:92.311524px;}
.y164{bottom:94.025392px;}
.y139{bottom:94.025419px;}
.y100{bottom:94.026847px;}
.y10d{bottom:94.026850px;}
.y12b{bottom:94.026853px;}
.yf5{bottom:94.026854px;}
.y11c{bottom:94.026858px;}
.yb7{bottom:94.026862px;}
.yd3{bottom:94.026865px;}
.ya1{bottom:94.027219px;}
.y6e{bottom:94.027223px;}
.y229{bottom:94.945312px;}
.y1bf{bottom:98.463863px;}
.y36{bottom:107.588647px;}
.y1e2{bottom:107.926762px;}
.y1ab{bottom:111.524408px;}
.y17c{bottom:114.723637px;}
.y8a{bottom:114.725463px;}
.y6d{bottom:114.725467px;}
.y228{bottom:115.643558px;}
.y1be{bottom:119.162108px;}
.y35{bottom:128.286893px;}
.y1aa{bottom:128.329101px;}
.y155{bottom:128.522467px;}
.y1e1{bottom:128.624992px;}
.y170{bottom:135.421867px;}
.y163{bottom:135.421873px;}
.y138{bottom:135.421897px;}
.y127{bottom:135.423333px;}
.yb6{bottom:135.423338px;}
.yf2{bottom:135.423340px;}
.y11b{bottom:135.423343px;}
.yd2{bottom:135.423344px;}
.ya0{bottom:135.423709px;}
.y6c{bottom:135.423712px;}
.y1bd{bottom:135.966801px;}
.y227{bottom:136.341803px;}
.y34{bottom:148.985137px;}
.y1e0{bottom:149.323238px;}
.y17b{bottom:156.120113px;}
.y6b{bottom:156.121942px;}
.y89{bottom:156.121953px;}
.y226{bottom:157.040033px;}
.y33{bottom:169.683382px;}
.y154{bottom:169.918942px;}
.y1df{bottom:170.021483px;}
.y162{bottom:176.818358px;}
.y16f{bottom:176.818363px;}
.y137{bottom:176.818387px;}
.yff{bottom:176.819815px;}
.y10c{bottom:176.819819px;}
.ye2{bottom:176.819823px;}
.yb5{bottom:176.819827px;}
.yf1{bottom:176.819830px;}
.yd1{bottom:176.819834px;}
.y6a{bottom:176.820187px;}
.y225{bottom:177.738278px;}
.y1bc{bottom:189.738283px;}
.y1a7{bottom:189.755859px;}
.y32{bottom:190.381627px;}
.y1de{bottom:190.719727px;}
.y17a{bottom:197.516602px;}
.y69{bottom:197.518433px;}
.y224{bottom:198.436523px;}
.y31{bottom:211.079857px;}
.y153{bottom:211.315433px;}
.y1dd{bottom:211.417973px;}
.y161{bottom:218.214848px;}
.y136{bottom:218.214866px;}
.y11a{bottom:218.216302px;}
.yfe{bottom:218.216305px;}
.ye1{bottom:218.216309px;}
.yd0{bottom:218.216313px;}
.y68{bottom:218.216678px;}
.yb4{bottom:218.216684px;}
.y223{bottom:219.134767px;}
.y1a9{bottom:231.152343px;}
.y30{bottom:231.778102px;}
.y1dc{bottom:232.116217px;}
.y179{bottom:238.913092px;}
.y67{bottom:238.914728px;}
.y88{bottom:238.914922px;}
.y222{bottom:239.833012px;}
.y2f{bottom:252.476347px;}
.y152{bottom:252.711908px;}
.y1db{bottom:252.814447px;}
.y16e{bottom:259.611323px;}
.y160{bottom:259.611328px;}
.y135{bottom:259.611356px;}
.yfd{bottom:259.612784px;}
.y10b{bottom:259.612788px;}
.y126{bottom:259.612792px;}
.ye0{bottom:259.612794px;}
.y12a{bottom:259.612796px;}
.ycf{bottom:259.612799px;}
.y119{bottom:259.612803px;}
.y66{bottom:259.612973px;}
.y9f{bottom:259.613157px;}
.yb3{bottom:259.613163px;}
.y221{bottom:260.531242px;}
.y1a6{bottom:264.225588px;}
.y2e{bottom:273.174592px;}
.y1da{bottom:273.512693px;}
.y65{bottom:280.311217px;}
.y87{bottom:280.311400px;}
.y220{bottom:281.229488px;}
.y2d{bottom:293.872838px;}
.y151{bottom:294.108398px;}
.y1d9{bottom:294.210938px;}
.y1a1{bottom:297.298824px;}
.y15f{bottom:301.007812px;}
.y134{bottom:301.007835px;}
.y125{bottom:301.009270px;}
.yfc{bottom:301.009274px;}
.ydf{bottom:301.009278px;}
.y118{bottom:301.009282px;}
.yce{bottom:301.009284px;}
.y64{bottom:301.009462px;}
.y9e{bottom:301.009647px;}
.yb2{bottom:301.009649px;}
.y21f{bottom:301.927733px;}
.y1bb{bottom:310.333011px;}
.y2c{bottom:314.571083px;}
.y1d8{bottom:314.909183px;}
.y63{bottom:321.707707px;}
.y86{bottom:321.707890px;}
.y21e{bottom:322.625977px;}
.y2b{bottom:335.269312px;}
.y150{bottom:335.504887px;}
.y1d7{bottom:335.607428px;}
.y1a5{bottom:338.695308px;}
.y16d{bottom:342.404293px;}
.y15e{bottom:342.404303px;}
.y133{bottom:342.404325px;}
.yfb{bottom:342.405753px;}
.y10a{bottom:342.405759px;}
.y124{bottom:342.405760px;}
.yde{bottom:342.405763px;}
.y129{bottom:342.405765px;}
.ycd{bottom:342.405768px;}
.y117{bottom:342.405772px;}
.y62{bottom:342.405938px;}
.y9d{bottom:342.406126px;}
.yb1{bottom:342.406134px;}
.y2a{bottom:355.967557px;}
.y1d6{bottom:356.305657px;}
.y61{bottom:363.104183px;}
.y85{bottom:363.104369px;}
.y21d{bottom:364.022467px;}
.y1a0{bottom:371.768553px;}
.y1ba{bottom:374.238283px;}
.y29{bottom:376.665802px;}
.y14f{bottom:376.901363px;}
.y16c{bottom:383.800778px;}
.y15d{bottom:383.800783px;}
.y132{bottom:383.800804px;}
.yfa{bottom:383.802239px;}
.y109{bottom:383.802243px;}
.ydd{bottom:383.802248px;}
.y116{bottom:383.802250px;}
.ycc{bottom:383.802253px;}
.y60{bottom:383.802428px;}
.y9c{bottom:383.802616px;}
.yb0{bottom:383.802618px;}
.y1d5{bottom:390.641603px;}
.y28{bottom:397.364048px;}
.y5f{bottom:404.500672px;}
.y84{bottom:404.500859px;}
.y21c{bottom:405.418943px;}
.y199{bottom:405.975583px;}
.y27{bottom:418.062292px;}
.y14e{bottom:418.297853px;}
.y1d4{bottom:424.977533px;}
.y175{bottom:425.197258px;}
.y15c{bottom:425.197268px;}
.y131{bottom:425.197294px;}
.yf9{bottom:425.198724px;}
.y108{bottom:425.198728px;}
.y123{bottom:425.198729px;}
.y128{bottom:425.198734px;}
.ycb{bottom:425.198738px;}
.y115{bottom:425.198740px;}
.y5e{bottom:425.198918px;}
.y9b{bottom:425.199094px;}
.yaf{bottom:425.199103px;}
.y26{bottom:438.760522px;}
.y5d{bottom:445.897163px;}
.y83{bottom:445.897338px;}
.y21b{bottom:446.815433px;}
.y1d3{bottom:459.316402px;}
.y25{bottom:459.458768px;}
.y14d{bottom:459.694342px;}
.y15b{bottom:466.593742px;}
.y16b{bottom:466.593748px;}
.y130{bottom:466.593772px;}
.yf8{bottom:466.595208px;}
.yca{bottom:466.595212px;}
.yf0{bottom:466.595215px;}
.y114{bottom:466.595219px;}
.y5c{bottom:466.595392px;}
.y9a{bottom:466.595584px;}
.yae{bottom:466.595587px;}
.y218{bottom:468.571284px;}
.y24{bottom:480.157012px;}
.y5b{bottom:487.293638px;}
.y82{bottom:487.293824px;}
.y19f{bottom:488.768553px;}
.y21a{bottom:489.269538px;}
.y1d2{bottom:493.652348px;}
.y1b9{bottom:494.833011px;}
.y23{bottom:500.855258px;}
.y14c{bottom:501.090818px;}
.y16a{bottom:507.990233px;}
.y15a{bottom:507.990238px;}
.y12f{bottom:507.990262px;}
.yf7{bottom:507.991693px;}
.y122{bottom:507.991694px;}
.yc9{bottom:507.991698px;}
.ydc{bottom:507.991702px;}
.yef{bottom:507.991705px;}
.y113{bottom:507.991709px;}
.y5a{bottom:507.991882px;}
.y99{bottom:507.992063px;}
.yad{bottom:507.992069px;}
.y1ff{bottom:511.523436px;}
.y22{bottom:521.553503px;}
.y198{bottom:521.841798px;}
.y1d1{bottom:527.988277px;}
.y59{bottom:528.690128px;}
.y81{bottom:528.690309px;}
.y200{bottom:532.218748px;}
.y21{bottom:542.251733px;}
.y14b{bottom:542.487308px;}
.y174{bottom:549.386713px;}
.y177{bottom:549.386718px;}
.y159{bottom:549.386723px;}
.y12e{bottom:549.386741px;}
.yf6{bottom:549.388178px;}
.y121{bottom:549.388179px;}
.ydb{bottom:549.388180px;}
.yc8{bottom:549.388183px;}
.yee{bottom:549.388184px;}
.y112{bottom:549.388188px;}
.y58{bottom:549.388373px;}
.yac{bottom:549.388548px;}
.y98{bottom:549.388553px;}
.y216{bottom:550.019538px;}
.y196{bottom:554.915036px;}
.y1b7{bottom:558.738283px;}
.y217{bottom:560.707038px;}
.y1d0{bottom:562.324223px;}
.y20{bottom:562.949978px;}
.y14a{bottom:564.483406px;}
.y57{bottom:570.086603px;}
.y80{bottom:570.086793px;}
.y1fc{bottom:572.947263px;}
.y1f{bottom:583.648222px;}
.y158{bottom:590.783198px;}
.y169{bottom:590.783203px;}
.y12d{bottom:590.783231px;}
.y120{bottom:590.784663px;}
.y107{bottom:590.784666px;}
.yc7{bottom:590.784668px;}
.yda{bottom:590.784670px;}
.yed{bottom:590.784674px;}
.y56{bottom:590.784848px;}
.y97{bottom:590.785032px;}
.yab{bottom:590.785034px;}
.y1fd{bottom:593.648436px;}
.y1cf{bottom:596.660152px;}
.y1e{bottom:604.346468px;}
.y149{bottom:611.481448px;}
.y55{bottom:611.483092px;}
.y7f{bottom:611.483278px;}
.y1fe{bottom:614.343748px;}
.y197{bottom:617.009763px;}
.y215{bottom:621.457038px;}
.y1d{bottom:625.044712px;}
.y1ce{bottom:630.999022px;}
.y12c{bottom:632.179676px;}
.y168{bottom:632.179688px;}
.y157{bottom:632.179693px;}
.y11f{bottom:632.181148px;}
.yd9{bottom:632.181149px;}
.yec{bottom:632.181153px;}
.y106{bottom:632.181156px;}
.yc6{bottom:632.181157px;}
.y111{bottom:632.181159px;}
.y54{bottom:632.181337px;}
.yaa{bottom:632.181519px;}
.y96{bottom:632.181522px;}
.y1c{bottom:645.742958px;}
.y195{bottom:650.083008px;}
.y148{bottom:652.877932px;}
.y53{bottom:652.879582px;}
.y7e{bottom:652.879762px;}
.y1cd{bottom:665.337893px;}
.y1b{bottom:666.441188px;}
.y214{bottom:673.546878px;}
.y173{bottom:673.576168px;}
.y147{bottom:673.576178px;}
.y11e{bottom:673.577633px;}
.y105{bottom:673.577635px;}
.yc5{bottom:673.577639px;}
.y110{bottom:673.577643px;}
.y52{bottom:673.577812px;}
.y95{bottom:673.578001px;}
.ya9{bottom:673.578003px;}
.y1b6{bottom:674.604486px;}
.y1f9{bottom:677.572263px;}
.y192{bottom:683.156256px;}
.y1a{bottom:688.437286px;}
.y51{bottom:694.276058px;}
.y7d{bottom:694.276249px;}
.y1fa{bottom:698.273436px;}
.y1cc{bottom:699.673822px;}
.y194{bottom:703.854498px;}
.y213{bottom:711.796878px;}
.y19{bottom:714.737092px;}
.y146{bottom:714.972652px;}
.y176{bottom:714.972658px;}
.yd8{bottom:714.974118px;}
.y11d{bottom:714.974122px;}
.yeb{bottom:714.974124px;}
.y10f{bottom:714.974128px;}
.yc4{bottom:714.974129px;}
.y50{bottom:714.974302px;}
.ya8{bottom:714.974488px;}
.y94{bottom:714.974491px;}
.y1fb{bottom:718.968748px;}
.y1cb{bottom:734.009768px;}
.y18{bottom:735.435338px;}
.y4f{bottom:735.672548px;}
.y7c{bottom:735.672727px;}
.y191{bottom:736.927728px;}
.y1b3{bottom:738.509758px;}
.y211{bottom:752.525394px;}
.y17{bottom:756.133582px;}
.y156{bottom:756.369133px;}
.y178{bottom:756.369138px;}
.y145{bottom:756.369142px;}
.y104{bottom:756.370603px;}
.yc3{bottom:756.370608px;}
.y10e{bottom:756.370612px;}
.y4e{bottom:756.370792px;}
.y93{bottom:756.370969px;}
.ya7{bottom:756.370972px;}
.y1f6{bottom:759.697263px;}
.y1ca{bottom:768.345698px;}
.y18e{bottom:775.854486px;}
.y16{bottom:776.831812px;}
.y4d{bottom:777.069037px;}
.y7b{bottom:777.069217px;}
.y1f7{bottom:780.398436px;}
.y20f{bottom:788.519538px;}
.y212{bottom:793.921878px;}
.y190{bottom:796.552728px;}
.y15{bottom:797.530057px;}
.y144{bottom:797.765618px;}
.y167{bottom:797.765623px;}
.yd7{bottom:797.767087px;}
.yea{bottom:797.767093px;}
.yc2{bottom:797.767094px;}
.y4c{bottom:797.767268px;}
.y92{bottom:797.767459px;}
.ya6{bottom:797.767463px;}
.y1f8{bottom:801.093748px;}
.y1c9{bottom:802.684567px;}
.y235{bottom:815.361322px;}
.y14{bottom:818.228303px;}
.y4b{bottom:818.465512px;}
.y7a{bottom:818.465696px;}
.y18d{bottom:829.625973px;}
.y210{bottom:832.171878px;}
.y234{bottom:836.056643px;}
.y1c8{bottom:837.020512px;}
.y13{bottom:838.926541px;}
.y143{bottom:839.162107px;}
.y103{bottom:839.163572px;}
.yd6{bottom:839.163577px;}
.yc1{bottom:839.163579px;}
.y4a{bottom:839.163757px;}
.y91{bottom:839.163938px;}
.ya5{bottom:839.163943px;}
.y1f4{bottom:840.023436px;}
.y240{bottom:852.169927px;}
.y1b2{bottom:854.375979px;}
.y233{bottom:856.757812px;}
.y12{bottom:859.703887px;}
.ye9{bottom:859.861822px;}
.y49{bottom:859.862003px;}
.y79{bottom:859.862186px;}
.y1f5{bottom:860.718748px;}
.y20e{bottom:870.421878px;}
.y1c7{bottom:871.356442px;}
.y187{bottom:872.156245px;}
.y232{bottom:877.453117px;}
.y11{bottom:880.402147px;}
.y172{bottom:880.558588px;}
.y142{bottom:880.558593px;}
.y166{bottom:880.558598px;}
.ye8{bottom:880.560052px;}
.yd5{bottom:880.560055px;}
.y102{bottom:880.560062px;}
.yc0{bottom:880.560063px;}
.y48{bottom:880.560248px;}
.ya4{bottom:880.560422px;}
.y90{bottom:880.560428px;}
.y23f{bottom:888.169927px;}
.y231{bottom:898.154302px;}
.y10{bottom:901.100392px;}
.ye7{bottom:901.258298px;}
.y47{bottom:901.258478px;}
.y78{bottom:901.258665px;}
.y1ee{bottom:901.447263px;}
.y1c6{bottom:905.695312px;}
.y20d{bottom:908.671878px;}
.y230{bottom:918.849608px;}
.yf{bottom:921.798638px;}
.y171{bottom:921.955073px;}
.y141{bottom:921.955077px;}
.y101{bottom:921.956541px;}
.yd4{bottom:921.956542px;}
.yf4{bottom:921.956546px;}
.ybf{bottom:921.956548px;}
.y46{bottom:921.956723px;}
.y8f{bottom:921.956907px;}
.ya3{bottom:921.956912px;}
.y1f3{bottom:922.148436px;}
.y23e{bottom:924.169927px;}
.y18c{bottom:934.250973px;}
.y1ae{bottom:938.979492px;}
.y22f{bottom:939.550777px;}
.y1c5{bottom:940.031242px;}
.ye{bottom:942.496876px;}
.y45{bottom:942.654967px;}
.y77{bottom:942.655151px;}
.y1f1{bottom:942.843748px;}
.y20b{bottom:946.473636px;}
.y23d{bottom:960.169927px;}
.y22e{bottom:960.246098px;}
.yd{bottom:963.274223px;}
.y140{bottom:963.351562px;}
.yf3{bottom:963.353025px;}
.ybe{bottom:963.353026px;}
.ye6{bottom:963.353027px;}
.y44{bottom:963.353212px;}
.ya2{bottom:963.353391px;}
.y8e{bottom:963.353393px;}
.y20c{bottom:965.185549px;}
.y186{bottom:967.324218px;}
.y1c4{bottom:974.367188px;}
.y20a{bottom:976.526359px;}
.y23a{bottom:977.264648px;}
.y22d{bottom:980.947267px;}
.yc{bottom:983.972467px;}
.y43{bottom:984.051457px;}
.y76{bottom:984.051636px;}
.y1eb{bottom:985.376952px;}
.y239{bottom:996.169921px;}
.y22c{bottom:1001.642579px;}
.yb{bottom:1004.670708px;}
.y13f{bottom:1004.748046px;}
.ybd{bottom:1004.749511px;}
.ye5{bottom:1004.749512px;}
.y42{bottom:1004.749695px;}
.y8d{bottom:1004.749878px;}
.y182{bottom:1005.125977px;}
.y1e5{bottom:1006.072265px;}
.y1c3{bottom:1008.703125px;}
.y208{bottom:1011.310547px;}
.y22b{bottom:1022.343750px;}
.ya{bottom:1025.368950px;}
.y41{bottom:1025.447937px;}
.y75{bottom:1025.448120px;}
.y185{bottom:1025.824220px;}
.y202{bottom:1026.272460px;}
.y1e9{bottom:1026.773438px;}
.y237{bottom:1032.169921px;}
.y1e3{bottom:1033.831054px;}
.y1c2{bottom:1043.039062px;}
.y9{bottom:1046.067192px;}
.y13e{bottom:1046.144530px;}
.ybc{bottom:1046.145995px;}
.ye4{bottom:1046.145996px;}
.y40{bottom:1046.146180px;}
.y8c{bottom:1046.146362px;}
.y205{bottom:1046.367188px;}
.y1ad{bottom:1054.845704px;}
.y181{bottom:1058.897461px;}
.y1c1{bottom:1063.740234px;}
.y8{bottom:1066.765435px;}
.y3f{bottom:1066.844422px;}
.y74{bottom:1066.844605px;}
.y236{bottom:1068.169921px;}
.y22a{bottom:1084.435546px;}
.y13d{bottom:1087.541015px;}
.y165{bottom:1087.541016px;}
.ybb{bottom:1087.542480px;}
.y3e{bottom:1087.542664px;}
.y7{bottom:1087.542778px;}
.y8b{bottom:1087.542847px;}
.y207{bottom:1088.367188px;}
.y17e{bottom:1091.970704px;}
.y1c0{bottom:1108.239258px;}
.y3d{bottom:1108.240906px;}
.y6{bottom:1108.241008px;}
.y73{bottom:1108.241090px;}
.y1ac{bottom:1112.668946px;}
.y13c{bottom:1128.937499px;}
.yba{bottom:1128.938965px;}
.y3c{bottom:1128.939149px;}
.y5{bottom:1128.939251px;}
.y72{bottom:1128.939331px;}
.y201{bottom:1133.367188px;}
.y17d{bottom:1149.635742px;}
.ye3{bottom:1149.637207px;}
.y3b{bottom:1149.637391px;}
.y4{bottom:1149.637494px;}
.y71{bottom:1149.637573px;}
.y13b{bottom:1170.333984px;}
.yb9{bottom:1170.335450px;}
.y3a{bottom:1170.335632px;}
.y3{bottom:1170.335736px;}
.y70{bottom:1170.335816px;}
.y13a{bottom:1187.138672px;}
.yb8{bottom:1187.140137px;}
.y38{bottom:1187.140320px;}
.y1{bottom:1187.140423px;}
.y6f{bottom:1187.140503px;}
.h1c{height:31.945312px;}
.h12{height:31.948242px;}
.h19{height:31.951172px;}
.h1b{height:33.934570px;}
.h1e{height:43.066405px;}
.h17{height:45.588867px;}
.hb{height:47.988281px;}
.h3{height:48.972656px;}
.h7{height:49.992188px;}
.h11{height:50.027344px;}
.h1d{height:50.850586px;}
.h2{height:51.679688px;}
.hd{height:51.679712px;}
.h5{height:51.696000px;}
.h13{height:52.646484px;}
.h4{height:56.705276px;}
.he{height:58.329429px;}
.hf{height:58.329492px;}
.h6{height:68.906252px;}
.h16{height:73.344726px;}
.h18{height:73.347657px;}
.h1a{height:73.948242px;}
.ha{height:75.859497px;}
.h1{height:75.859577px;}
.h9{height:75.859680px;}
.hc{height:75.859863px;}
.h10{height:75.861328px;}
.h8{height:86.059575px;}
.h14{height:94.042970px;}
.h15{height:114.741212px;}
.h0{height:1263.000000px;}
.w17{width:40.500000px;}
.w14{width:41.625000px;}
.w15{width:61.874977px;}
.w16{width:70.875000px;}
.w18{width:81.000000px;}
.w11{width:91.125000px;}
.wf{width:94.499977px;}
.w10{width:95.625000px;}
.we{width:97.874977px;}
.wd{width:97.875000px;}
.w4{width:104.625000px;}
.w3{width:114.749977px;}
.w13{width:130.499977px;}
.wa{width:140.625000px;}
.w9{width:169.875000px;}
.w1a{width:178.875000px;}
.w1b{width:179.999954px;}
.w1c{width:180.000000px;}
.w5{width:185.625000px;}
.w2{width:283.500000px;}
.w8{width:316.124955px;}
.w12{width:431.999955px;}
.wb{width:628.874955px;}
.wc{width:629.999955px;}
.w6{width:691.874955px;}
.w7{width:692.999955px;}
.w19{width:721.124955px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x29{left:4.500000px;}
.x3e{left:6.613770px;}
.x4f{left:8.244141px;}
.x4e{left:9.931641px;}
.x4c{left:11.184082px;}
.x56{left:12.353027px;}
.x41{left:13.684570px;}
.x49{left:15.411621px;}
.x3f{left:16.620117px;}
.x42{left:18.193359px;}
.x50{left:19.880859px;}
.x48{left:21.181641px;}
.x45{left:23.418457px;}
.x44{left:25.242188px;}
.x4d{left:26.437500px;}
.x47{left:28.252441px;}
.x3d{left:29.373047px;}
.x2c{left:30.761719px;}
.x60{left:34.470703px;}
.x25{left:36.000000px;}
.x2b{left:37.511719px;}
.x27{left:39.761719px;}
.x5e{left:41.220703px;}
.x1{left:42.524997px;}
.x28{left:44.595703px;}
.x2a{left:47.812500px;}
.x23{left:50.312988px;}
.x21{left:51.524997px;}
.x33{left:54.000000px;}
.x31{left:56.131347px;}
.x35{left:58.500000px;}
.x5c{left:60.121582px;}
.x13{left:61.192530px;}
.x2{left:62.383449px;}
.x20{left:63.899997px;}
.x58{left:71.775003px;}
.x39{left:72.899997px;}
.x34{left:75.375000px;}
.x62{left:78.187500px;}
.x36{left:79.875000px;}
.x61{left:84.937500px;}
.x5f{left:88.875000px;}
.x2d{left:90.470215px;}
.x16{left:96.524997px;}
.x22{left:105.016113px;}
.x3b{left:117.900009px;}
.x2f{left:121.328613px;}
.x38{left:128.702637px;}
.x14{left:129.971337px;}
.x37{left:164.025009px;}
.x2e{left:165.150009px;}
.x51{left:197.775009px;}
.x3c{left:216.900009px;}
.x3a{left:245.969390px;}
.x5a{left:251.775015px;}
.xa{left:252.811673px;}
.x17{left:253.875158px;}
.x6{left:256.054846px;}
.x11{left:265.072418px;}
.x59{left:280.186526px;}
.x63{left:283.675781px;}
.xb{left:297.556793px;}
.x7{left:299.806793px;}
.xe{left:302.056793px;}
.x12{left:306.508452px;}
.x40{left:315.899985px;}
.x8{left:324.222815px;}
.x5{left:325.312658px;}
.xf{left:328.472322px;}
.xd{left:335.692516px;}
.x9{left:342.961073px;}
.x57{left:346.292131px;}
.x1d{left:350.945941px;}
.x1e{left:365.386362px;}
.xc{left:368.506482px;}
.x52{left:372.149985px;}
.x1f{left:379.123670px;}
.x1a{left:382.714006px;}
.x18{left:384.955220px;}
.x3{left:390.729639px;}
.x10{left:396.772107px;}
.x1c{left:403.443008px;}
.x1b{left:405.943501px;}
.x43{left:411.524970px;}
.x15{left:412.965953px;}
.x19{left:418.454727px;}
.x5b{left:432.899970px;}
.x53{left:435.149970px;}
.x4{left:446.456675px;}
.x24{left:452.024970px;}
.x30{left:482.399970px;}
.x54{left:507.149970px;}
.x46{left:508.274970px;}
.x55{left:548.774970px;}
.x26{left:557.774970px;}
.x4a{left:605.024970px;}
.x5d{left:614.024970px;}
.x32{left:653.399970px;}
.x4b{left:701.774970px;}
@media print{
.v2{vertical-align:-2.812500pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000020pt;}
.ls1{letter-spacing:8.000000pt;}
.ls4{letter-spacing:14.812500pt;}
.ls2{letter-spacing:176.000000pt;}
.ws1{word-spacing:-48.000000pt;}
.ws4{word-spacing:-32.000000pt;}
.ws5{word-spacing:-17.781250pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-8.249994pt;}
._c{margin-left:-7.093748pt;}
._2{margin-left:-5.875000pt;}
._0{margin-left:-4.749980pt;}
._1{margin-left:-3.531250pt;}
._3{margin-left:-2.562500pt;}
._4{margin-left:-1.156249pt;}
._10{width:2.374985pt;}
._5{width:4.000000pt;}
._6{width:8.000002pt;}
._7{width:12.000002pt;}
._9{width:19.999996pt;}
._8{width:24.000002pt;}
._e{width:28.000000pt;}
._b{width:32.000002pt;}
._a{width:36.000000pt;}
._12{width:92.000008pt;}
._11{width:96.000000pt;}
._f{width:176.000000pt;}
.fs1{font-size:38.400002pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:4.593750pt;}
.y2{bottom:4.593754pt;}
.y1ea{bottom:8.458333pt;}
.y1ed{bottom:8.458335pt;}
.y1a8{bottom:8.460932pt;}
.y23c{bottom:8.460933pt;}
.y193{bottom:8.460935pt;}
.y184{bottom:8.460936pt;}
.y17f{bottom:8.460937pt;}
.y204{bottom:8.460939pt;}
.y19e{bottom:8.460941pt;}
.y1b1{bottom:8.460943pt;}
.y18b{bottom:8.460944pt;}
.y1a4{bottom:8.460945pt;}
.y18f{bottom:8.460948pt;}
.y1f0{bottom:8.463537pt;}
.y1f2{bottom:8.463541pt;}
.y1e8{bottom:8.463543pt;}
.y238{bottom:9.161458pt;}
.y180{bottom:9.164062pt;}
.y209{bottom:9.593750pt;}
.y1e4{bottom:20.585937pt;}
.y1b8{bottom:26.859368pt;}
.y1b0{bottom:26.859369pt;}
.y1a3{bottom:26.859372pt;}
.y183{bottom:26.859375pt;}
.y1e7{bottom:26.859376pt;}
.y1ef{bottom:26.859377pt;}
.y19d{bottom:26.859381pt;}
.y18a{bottom:26.859384pt;}
.y219{bottom:26.859385pt;}
.y23b{bottom:27.225261pt;}
.y1ec{bottom:45.255209pt;}
.y19c{bottom:45.257808pt;}
.y1af{bottom:45.257809pt;}
.y189{bottom:45.257811pt;}
.y1a2{bottom:45.257812pt;}
.y203{bottom:45.257813pt;}
.y1b5{bottom:45.257821pt;}
.y1e6{bottom:45.260417pt;}
.y206{bottom:45.794271pt;}
.y37{bottom:60.927087pt;}
.y19b{bottom:63.656248pt;}
.y188{bottom:63.656251pt;}
.y1b4{bottom:63.656261pt;}
.y19a{bottom:82.054688pt;}
.y164{bottom:83.578127pt;}
.y139{bottom:83.578150pt;}
.y100{bottom:83.579419pt;}
.y10d{bottom:83.579422pt;}
.y12b{bottom:83.579425pt;}
.yf5{bottom:83.579426pt;}
.y11c{bottom:83.579429pt;}
.yb7{bottom:83.579433pt;}
.yd3{bottom:83.579436pt;}
.ya1{bottom:83.579750pt;}
.y6e{bottom:83.579753pt;}
.y229{bottom:84.395833pt;}
.y1bf{bottom:87.523433pt;}
.y36{bottom:95.634353pt;}
.y1e2{bottom:95.934900pt;}
.y1ab{bottom:99.132807pt;}
.y17c{bottom:101.976567pt;}
.y8a{bottom:101.978189pt;}
.y6d{bottom:101.978193pt;}
.y228{bottom:102.794273pt;}
.y1be{bottom:105.921873pt;}
.y35{bottom:114.032793pt;}
.y1aa{bottom:114.070312pt;}
.y155{bottom:114.242193pt;}
.y1e1{bottom:114.333327pt;}
.y170{bottom:120.374993pt;}
.y163{bottom:120.374998pt;}
.y138{bottom:120.375020pt;}
.y127{bottom:120.376296pt;}
.yb6{bottom:120.376300pt;}
.yf2{bottom:120.376302pt;}
.y11b{bottom:120.376304pt;}
.yd2{bottom:120.376306pt;}
.ya0{bottom:120.376630pt;}
.y6c{bottom:120.376633pt;}
.y1bd{bottom:120.859379pt;}
.y227{bottom:121.192713pt;}
.y34{bottom:132.431233pt;}
.y1e0{bottom:132.731767pt;}
.y17b{bottom:138.773433pt;}
.y6b{bottom:138.775060pt;}
.y89{bottom:138.775069pt;}
.y226{bottom:139.591140pt;}
.y33{bottom:150.829673pt;}
.y154{bottom:151.039060pt;}
.y1df{bottom:151.130207pt;}
.y162{bottom:157.171873pt;}
.y16f{bottom:157.171878pt;}
.y137{bottom:157.171900pt;}
.yff{bottom:157.173169pt;}
.y10c{bottom:157.173172pt;}
.ye2{bottom:157.173176pt;}
.yb5{bottom:157.173180pt;}
.yf1{bottom:157.173182pt;}
.yd1{bottom:157.173186pt;}
.y6a{bottom:157.173500pt;}
.y225{bottom:157.989580pt;}
.y1bc{bottom:168.656252pt;}
.y1a7{bottom:168.671875pt;}
.y32{bottom:169.228113pt;}
.y1de{bottom:169.528647pt;}
.y17a{bottom:175.570313pt;}
.y69{bottom:175.571940pt;}
.y224{bottom:176.388020pt;}
.y31{bottom:187.626540pt;}
.y153{bottom:187.835940pt;}
.y1dd{bottom:187.927087pt;}
.y161{bottom:193.968753pt;}
.y136{bottom:193.968770pt;}
.y11a{bottom:193.970047pt;}
.yfe{bottom:193.970049pt;}
.ye1{bottom:193.970053pt;}
.yd0{bottom:193.970056pt;}
.y68{bottom:193.970380pt;}
.yb4{bottom:193.970386pt;}
.y223{bottom:194.786460pt;}
.y1a9{bottom:205.468749pt;}
.y30{bottom:206.024980pt;}
.y1dc{bottom:206.325527pt;}
.y179{bottom:212.367193pt;}
.y67{bottom:212.368647pt;}
.y88{bottom:212.368819pt;}
.y222{bottom:213.184900pt;}
.y2f{bottom:224.423420pt;}
.y152{bottom:224.632807pt;}
.y1db{bottom:224.723953pt;}
.y16e{bottom:230.765620pt;}
.y160{bottom:230.765624pt;}
.y135{bottom:230.765650pt;}
.yfd{bottom:230.766919pt;}
.y10b{bottom:230.766922pt;}
.y126{bottom:230.766926pt;}
.ye0{bottom:230.766928pt;}
.y12a{bottom:230.766930pt;}
.ycf{bottom:230.766933pt;}
.y119{bottom:230.766936pt;}
.y66{bottom:230.767087pt;}
.y9f{bottom:230.767250pt;}
.yb3{bottom:230.767256pt;}
.y221{bottom:231.583327pt;}
.y1a6{bottom:234.867189pt;}
.y2e{bottom:242.821860pt;}
.y1da{bottom:243.122393pt;}
.y65{bottom:249.165527pt;}
.y87{bottom:249.165689pt;}
.y220{bottom:249.981767pt;}
.y2d{bottom:261.220300pt;}
.y151{bottom:261.429687pt;}
.y1d9{bottom:261.520833pt;}
.y1a1{bottom:264.265621pt;}
.y15f{bottom:267.562500pt;}
.y134{bottom:267.562520pt;}
.y125{bottom:267.563796pt;}
.yfc{bottom:267.563799pt;}
.ydf{bottom:267.563803pt;}
.y118{bottom:267.563806pt;}
.yce{bottom:267.563808pt;}
.y64{bottom:267.563967pt;}
.y9e{bottom:267.564130pt;}
.yb2{bottom:267.564133pt;}
.y21f{bottom:268.380207pt;}
.y1bb{bottom:275.851565pt;}
.y2c{bottom:279.618740pt;}
.y1d8{bottom:279.919273pt;}
.y63{bottom:285.962407pt;}
.y86{bottom:285.962569pt;}
.y21e{bottom:286.778647pt;}
.y2b{bottom:298.017167pt;}
.y150{bottom:298.226567pt;}
.y1d7{bottom:298.317713pt;}
.y1a5{bottom:301.062496pt;}
.y16d{bottom:304.359371pt;}
.y15e{bottom:304.359380pt;}
.y133{bottom:304.359400pt;}
.yfb{bottom:304.360669pt;}
.y10a{bottom:304.360674pt;}
.y124{bottom:304.360676pt;}
.yde{bottom:304.360678pt;}
.y129{bottom:304.360680pt;}
.ycd{bottom:304.360683pt;}
.y117{bottom:304.360686pt;}
.y62{bottom:304.360833pt;}
.y9d{bottom:304.361000pt;}
.yb1{bottom:304.361008pt;}
.y2a{bottom:316.415607pt;}
.y1d6{bottom:316.716140pt;}
.y61{bottom:322.759273pt;}
.y85{bottom:322.759439pt;}
.y21d{bottom:323.575527pt;}
.y1a0{bottom:330.460936pt;}
.y1ba{bottom:332.656252pt;}
.y29{bottom:334.814047pt;}
.y14f{bottom:335.023433pt;}
.y16c{bottom:341.156247pt;}
.y15d{bottom:341.156251pt;}
.y132{bottom:341.156270pt;}
.yfa{bottom:341.157546pt;}
.y109{bottom:341.157549pt;}
.ydd{bottom:341.157553pt;}
.y116{bottom:341.157556pt;}
.ycc{bottom:341.157558pt;}
.y60{bottom:341.157713pt;}
.y9c{bottom:341.157880pt;}
.yb0{bottom:341.157883pt;}
.y1d5{bottom:347.236980pt;}
.y28{bottom:353.212487pt;}
.y5f{bottom:359.556153pt;}
.y84{bottom:359.556319pt;}
.y21c{bottom:360.372393pt;}
.y199{bottom:360.867185pt;}
.y27{bottom:371.610927pt;}
.y14e{bottom:371.820313pt;}
.y1d4{bottom:377.757807pt;}
.y175{bottom:377.953118pt;}
.y15c{bottom:377.953127pt;}
.y131{bottom:377.953150pt;}
.yf9{bottom:377.954421pt;}
.y108{bottom:377.954424pt;}
.y123{bottom:377.954426pt;}
.y128{bottom:377.954430pt;}
.ycb{bottom:377.954433pt;}
.y115{bottom:377.954436pt;}
.y5e{bottom:377.954593pt;}
.y9b{bottom:377.954750pt;}
.yaf{bottom:377.954758pt;}
.y26{bottom:390.009353pt;}
.y5d{bottom:396.353033pt;}
.y83{bottom:396.353189pt;}
.y21b{bottom:397.169273pt;}
.y1d3{bottom:408.281247pt;}
.y25{bottom:408.407793pt;}
.y14d{bottom:408.617193pt;}
.y15b{bottom:414.749993pt;}
.y16b{bottom:414.749998pt;}
.y130{bottom:414.750020pt;}
.yf8{bottom:414.751296pt;}
.yca{bottom:414.751300pt;}
.yf0{bottom:414.751302pt;}
.y114{bottom:414.751306pt;}
.y5c{bottom:414.751460pt;}
.y9a{bottom:414.751630pt;}
.yae{bottom:414.751633pt;}
.y218{bottom:416.507808pt;}
.y24{bottom:426.806233pt;}
.y5b{bottom:433.149900pt;}
.y82{bottom:433.150066pt;}
.y19f{bottom:434.460936pt;}
.y21a{bottom:434.906256pt;}
.y1d2{bottom:438.802087pt;}
.y1b9{bottom:439.851565pt;}
.y23{bottom:445.204673pt;}
.y14c{bottom:445.414060pt;}
.y16a{bottom:451.546873pt;}
.y15a{bottom:451.546878pt;}
.y12f{bottom:451.546900pt;}
.yf7{bottom:451.548171pt;}
.y122{bottom:451.548173pt;}
.yc9{bottom:451.548176pt;}
.ydc{bottom:451.548179pt;}
.yef{bottom:451.548182pt;}
.y113{bottom:451.548186pt;}
.y5a{bottom:451.548340pt;}
.y99{bottom:451.548500pt;}
.yad{bottom:451.548506pt;}
.y1ff{bottom:454.687499pt;}
.y22{bottom:463.603113pt;}
.y198{bottom:463.859376pt;}
.y1d1{bottom:469.322913pt;}
.y59{bottom:469.946780pt;}
.y81{bottom:469.946941pt;}
.y200{bottom:473.083332pt;}
.y21{bottom:482.001540pt;}
.y14b{bottom:482.210940pt;}
.y174{bottom:488.343745pt;}
.y177{bottom:488.343749pt;}
.y159{bottom:488.343753pt;}
.y12e{bottom:488.343770pt;}
.yf6{bottom:488.345047pt;}
.y121{bottom:488.345048pt;}
.ydb{bottom:488.345049pt;}
.yc8{bottom:488.345051pt;}
.yee{bottom:488.345052pt;}
.y112{bottom:488.345056pt;}
.y58{bottom:488.345220pt;}
.yac{bottom:488.345376pt;}
.y98{bottom:488.345380pt;}
.y216{bottom:488.906256pt;}
.y196{bottom:493.257809pt;}
.y1b7{bottom:496.656252pt;}
.y217{bottom:498.406256pt;}
.y1d0{bottom:499.843753pt;}
.y20{bottom:500.399980pt;}
.y14a{bottom:501.763027pt;}
.y57{bottom:506.743647pt;}
.y80{bottom:506.743816pt;}
.y1fc{bottom:509.286456pt;}
.y1f{bottom:518.798420pt;}
.y158{bottom:525.140620pt;}
.y169{bottom:525.140625pt;}
.y12d{bottom:525.140650pt;}
.y120{bottom:525.141923pt;}
.y107{bottom:525.141925pt;}
.yc7{bottom:525.141927pt;}
.yda{bottom:525.141929pt;}
.yed{bottom:525.141932pt;}
.y56{bottom:525.142087pt;}
.y97{bottom:525.142250pt;}
.yab{bottom:525.142253pt;}
.y1fd{bottom:527.687499pt;}
.y1cf{bottom:530.364580pt;}
.y1e{bottom:537.196860pt;}
.y149{bottom:543.539064pt;}
.y55{bottom:543.540527pt;}
.y7f{bottom:543.540691pt;}
.y1fe{bottom:546.083332pt;}
.y197{bottom:548.453123pt;}
.y215{bottom:552.406256pt;}
.y1d{bottom:555.595300pt;}
.y1ce{bottom:560.888020pt;}
.y12c{bottom:561.937490pt;}
.y168{bottom:561.937500pt;}
.y157{bottom:561.937505pt;}
.y11f{bottom:561.938798pt;}
.yd9{bottom:561.938799pt;}
.yec{bottom:561.938802pt;}
.y106{bottom:561.938805pt;}
.yc6{bottom:561.938807pt;}
.y111{bottom:561.938808pt;}
.y54{bottom:561.938967pt;}
.yaa{bottom:561.939128pt;}
.y96{bottom:561.939130pt;}
.y1c{bottom:573.993740pt;}
.y195{bottom:577.851563pt;}
.y148{bottom:580.335940pt;}
.y53{bottom:580.337407pt;}
.y7e{bottom:580.337567pt;}
.y1cd{bottom:591.411460pt;}
.y1b{bottom:592.392167pt;}
.y214{bottom:598.708336pt;}
.y173{bottom:598.734371pt;}
.y147{bottom:598.734380pt;}
.y11e{bottom:598.735673pt;}
.y105{bottom:598.735675pt;}
.yc5{bottom:598.735679pt;}
.y110{bottom:598.735683pt;}
.y52{bottom:598.735833pt;}
.y95{bottom:598.736000pt;}
.ya9{bottom:598.736003pt;}
.y1b6{bottom:599.648432pt;}
.y1f9{bottom:602.286456pt;}
.y192{bottom:607.250005pt;}
.y1a{bottom:611.944254pt;}
.y51{bottom:617.134273pt;}
.y7d{bottom:617.134443pt;}
.y1fa{bottom:620.687499pt;}
.y1cc{bottom:621.932287pt;}
.y194{bottom:625.648443pt;}
.y213{bottom:632.708336pt;}
.y19{bottom:635.321860pt;}
.y146{bottom:635.531247pt;}
.y176{bottom:635.531251pt;}
.yd8{bottom:635.532549pt;}
.y11d{bottom:635.532553pt;}
.yeb{bottom:635.532554pt;}
.y10f{bottom:635.532558pt;}
.yc4{bottom:635.532559pt;}
.y50{bottom:635.532713pt;}
.ya8{bottom:635.532878pt;}
.y94{bottom:635.532881pt;}
.y1fb{bottom:639.083332pt;}
.y1cb{bottom:652.453127pt;}
.y18{bottom:653.720300pt;}
.y4f{bottom:653.931153pt;}
.y7c{bottom:653.931313pt;}
.y191{bottom:655.046869pt;}
.y1b3{bottom:656.453119pt;}
.y211{bottom:668.911461pt;}
.y17{bottom:672.118740pt;}
.y156{bottom:672.328118pt;}
.y178{bottom:672.328123pt;}
.y145{bottom:672.328127pt;}
.y104{bottom:672.329425pt;}
.yc3{bottom:672.329429pt;}
.y10e{bottom:672.329433pt;}
.y4e{bottom:672.329593pt;}
.y93{bottom:672.329750pt;}
.ya7{bottom:672.329753pt;}
.y1f6{bottom:675.286456pt;}
.y1ca{bottom:682.973953pt;}
.y18e{bottom:689.648432pt;}
.y16{bottom:690.517167pt;}
.y4d{bottom:690.728033pt;}
.y7b{bottom:690.728193pt;}
.y1f7{bottom:693.687499pt;}
.y20f{bottom:700.906256pt;}
.y212{bottom:705.708336pt;}
.y190{bottom:708.046869pt;}
.y15{bottom:708.915607pt;}
.y144{bottom:709.124993pt;}
.y167{bottom:709.124998pt;}
.yd7{bottom:709.126299pt;}
.yea{bottom:709.126304pt;}
.yc2{bottom:709.126306pt;}
.y4c{bottom:709.126460pt;}
.y92{bottom:709.126630pt;}
.ya6{bottom:709.126633pt;}
.y1f8{bottom:712.083332pt;}
.y1c9{bottom:713.497393pt;}
.y235{bottom:724.765620pt;}
.y14{bottom:727.314047pt;}
.y4b{bottom:727.524900pt;}
.y7a{bottom:727.525063pt;}
.y18d{bottom:737.445309pt;}
.y210{bottom:739.708336pt;}
.y234{bottom:743.161460pt;}
.y1c8{bottom:744.018233pt;}
.y13{bottom:745.712481pt;}
.y143{bottom:745.921873pt;}
.y103{bottom:745.923175pt;}
.yd6{bottom:745.923179pt;}
.yc1{bottom:745.923181pt;}
.y4a{bottom:745.923340pt;}
.y91{bottom:745.923500pt;}
.ya5{bottom:745.923505pt;}
.y1f4{bottom:746.687499pt;}
.y240{bottom:757.484380pt;}
.y1b2{bottom:759.445315pt;}
.y233{bottom:761.562500pt;}
.y12{bottom:764.181233pt;}
.ye9{bottom:764.321620pt;}
.y49{bottom:764.321780pt;}
.y79{bottom:764.321943pt;}
.y1f5{bottom:765.083332pt;}
.y20e{bottom:773.708336pt;}
.y1c7{bottom:774.539060pt;}
.y187{bottom:775.249996pt;}
.y232{bottom:779.958327pt;}
.y11{bottom:782.579687pt;}
.y172{bottom:782.718745pt;}
.y142{bottom:782.718749pt;}
.y166{bottom:782.718753pt;}
.ye8{bottom:782.720047pt;}
.yd5{bottom:782.720049pt;}
.y102{bottom:782.720055pt;}
.yc0{bottom:782.720056pt;}
.y48{bottom:782.720220pt;}
.ya4{bottom:782.720375pt;}
.y90{bottom:782.720381pt;}
.y23f{bottom:789.484380pt;}
.y231{bottom:798.359380pt;}
.y10{bottom:800.978127pt;}
.ye7{bottom:801.118487pt;}
.y47{bottom:801.118647pt;}
.y78{bottom:801.118813pt;}
.y1ee{bottom:801.286456pt;}
.y1c6{bottom:805.062500pt;}
.y20d{bottom:807.708336pt;}
.y230{bottom:816.755207pt;}
.yf{bottom:819.376567pt;}
.y171{bottom:819.515620pt;}
.y141{bottom:819.515624pt;}
.y101{bottom:819.516925pt;}
.yd4{bottom:819.516926pt;}
.yf4{bottom:819.516930pt;}
.ybf{bottom:819.516931pt;}
.y46{bottom:819.517087pt;}
.y8f{bottom:819.517250pt;}
.ya3{bottom:819.517255pt;}
.y1f3{bottom:819.687499pt;}
.y23e{bottom:821.484380pt;}
.y18c{bottom:830.445309pt;}
.y1ae{bottom:834.648437pt;}
.y22f{bottom:835.156247pt;}
.y1c5{bottom:835.583327pt;}
.ye{bottom:837.775001pt;}
.y45{bottom:837.915527pt;}
.y77{bottom:837.915690pt;}
.y1f1{bottom:838.083332pt;}
.y20b{bottom:841.309899pt;}
.y23d{bottom:853.484380pt;}
.y22e{bottom:853.552087pt;}
.yd{bottom:856.243753pt;}
.y140{bottom:856.312499pt;}
.yf3{bottom:856.313800pt;}
.ybe{bottom:856.313801pt;}
.ye6{bottom:856.313802pt;}
.y44{bottom:856.313967pt;}
.ya2{bottom:856.314125pt;}
.y8e{bottom:856.314127pt;}
.y20c{bottom:857.942711pt;}
.y186{bottom:859.843749pt;}
.y1c4{bottom:866.104167pt;}
.y20a{bottom:868.023431pt;}
.y23a{bottom:868.679687pt;}
.y22d{bottom:871.953127pt;}
.yc{bottom:874.642193pt;}
.y43{bottom:874.712407pt;}
.y76{bottom:874.712565pt;}
.y1eb{bottom:875.890624pt;}
.y239{bottom:885.484375pt;}
.y22c{bottom:890.348959pt;}
.yb{bottom:893.040629pt;}
.y13f{bottom:893.109375pt;}
.ybd{bottom:893.110676pt;}
.ye5{bottom:893.110677pt;}
.y42{bottom:893.110840pt;}
.y8d{bottom:893.111002pt;}
.y182{bottom:893.445313pt;}
.y1e5{bottom:894.286457pt;}
.y1c3{bottom:896.625000pt;}
.y208{bottom:898.942708pt;}
.y22b{bottom:908.750000pt;}
.ya{bottom:911.439067pt;}
.y41{bottom:911.509277pt;}
.y75{bottom:911.509440pt;}
.y185{bottom:911.843751pt;}
.y202{bottom:912.242187pt;}
.y1e9{bottom:912.687500pt;}
.y237{bottom:917.484375pt;}
.y1e3{bottom:918.960937pt;}
.y1c2{bottom:927.145833pt;}
.y9{bottom:929.837504pt;}
.y13e{bottom:929.906249pt;}
.ybc{bottom:929.907551pt;}
.ye4{bottom:929.907552pt;}
.y40{bottom:929.907715pt;}
.y8c{bottom:929.907877pt;}
.y205{bottom:930.104167pt;}
.y1ad{bottom:937.640625pt;}
.y181{bottom:941.242188pt;}
.y1c1{bottom:945.546875pt;}
.y8{bottom:948.235942pt;}
.y3f{bottom:948.306152pt;}
.y74{bottom:948.306315pt;}
.y236{bottom:949.484375pt;}
.y22a{bottom:963.942708pt;}
.y13d{bottom:966.703124pt;}
.y165{bottom:966.703125pt;}
.ybb{bottom:966.704427pt;}
.y3e{bottom:966.704590pt;}
.y7{bottom:966.704692pt;}
.y8b{bottom:966.704752pt;}
.y207{bottom:967.437500pt;}
.y17e{bottom:970.640625pt;}
.y1c0{bottom:985.101563pt;}
.y3d{bottom:985.103028pt;}
.y6{bottom:985.103119pt;}
.y73{bottom:985.103191pt;}
.y1ac{bottom:989.039063pt;}
.y13c{bottom:1003.499999pt;}
.yba{bottom:1003.501303pt;}
.y3c{bottom:1003.501465pt;}
.y5{bottom:1003.501556pt;}
.y72{bottom:1003.501628pt;}
.y201{bottom:1007.437500pt;}
.y17d{bottom:1021.898437pt;}
.ye3{bottom:1021.899740pt;}
.y3b{bottom:1021.899903pt;}
.y4{bottom:1021.899994pt;}
.y71{bottom:1021.900065pt;}
.y13b{bottom:1040.296875pt;}
.yb9{bottom:1040.298177pt;}
.y3a{bottom:1040.298340pt;}
.y3{bottom:1040.298432pt;}
.y70{bottom:1040.298503pt;}
.y13a{bottom:1055.234375pt;}
.yb8{bottom:1055.235677pt;}
.y38{bottom:1055.235840pt;}
.y1{bottom:1055.235932pt;}
.y6f{bottom:1055.236003pt;}
.h1c{height:28.395833pt;}
.h12{height:28.398437pt;}
.h19{height:28.401041pt;}
.h1b{height:30.164063pt;}
.h1e{height:38.281249pt;}
.h17{height:40.523437pt;}
.hb{height:42.656250pt;}
.h3{height:43.531250pt;}
.h7{height:44.437500pt;}
.h11{height:44.468750pt;}
.h1d{height:45.200521pt;}
.h2{height:45.937500pt;}
.hd{height:45.937522pt;}
.h5{height:45.952000pt;}
.h13{height:46.796875pt;}
.h4{height:50.404689pt;}
.he{height:51.848381pt;}
.hf{height:51.848437pt;}
.h6{height:61.250002pt;}
.h16{height:65.195312pt;}
.h18{height:65.197917pt;}
.h1a{height:65.731771pt;}
.ha{height:67.430664pt;}
.h1{height:67.430735pt;}
.h9{height:67.430827pt;}
.hc{height:67.430989pt;}
.h10{height:67.432292pt;}
.h8{height:76.497400pt;}
.h14{height:83.593751pt;}
.h15{height:101.992188pt;}
.h0{height:1122.666667pt;}
.w17{width:36.000000pt;}
.w14{width:37.000000pt;}
.w15{width:54.999980pt;}
.w16{width:63.000000pt;}
.w18{width:72.000000pt;}
.w11{width:81.000000pt;}
.wf{width:83.999980pt;}
.w10{width:85.000000pt;}
.we{width:86.999980pt;}
.wd{width:87.000000pt;}
.w4{width:93.000000pt;}
.w3{width:101.999980pt;}
.w13{width:115.999980pt;}
.wa{width:125.000000pt;}
.w9{width:151.000000pt;}
.w1a{width:159.000000pt;}
.w1b{width:159.999959pt;}
.w1c{width:160.000000pt;}
.w5{width:165.000000pt;}
.w2{width:252.000000pt;}
.w8{width:280.999960pt;}
.w12{width:383.999960pt;}
.wb{width:558.999960pt;}
.wc{width:559.999960pt;}
.w6{width:614.999960pt;}
.w7{width:615.999960pt;}
.w19{width:640.999960pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x29{left:4.000000pt;}
.x3e{left:5.878906pt;}
.x4f{left:7.328125pt;}
.x4e{left:8.828125pt;}
.x4c{left:9.941406pt;}
.x56{left:10.980469pt;}
.x41{left:12.164062pt;}
.x49{left:13.699219pt;}
.x3f{left:14.773438pt;}
.x42{left:16.171875pt;}
.x50{left:17.671875pt;}
.x48{left:18.828125pt;}
.x45{left:20.816406pt;}
.x44{left:22.437500pt;}
.x4d{left:23.500000pt;}
.x47{left:25.113281pt;}
.x3d{left:26.109375pt;}
.x2c{left:27.343750pt;}
.x60{left:30.640625pt;}
.x25{left:32.000000pt;}
.x2b{left:33.343750pt;}
.x27{left:35.343750pt;}
.x5e{left:36.640625pt;}
.x1{left:37.799997pt;}
.x28{left:39.640625pt;}
.x2a{left:42.500000pt;}
.x23{left:44.722656pt;}
.x21{left:45.799997pt;}
.x33{left:48.000000pt;}
.x31{left:49.894531pt;}
.x35{left:52.000000pt;}
.x5c{left:53.441406pt;}
.x13{left:54.393360pt;}
.x2{left:55.451954pt;}
.x20{left:56.799997pt;}
.x58{left:63.800003pt;}
.x39{left:64.799997pt;}
.x34{left:67.000000pt;}
.x62{left:69.500000pt;}
.x36{left:71.000000pt;}
.x61{left:75.500000pt;}
.x5f{left:79.000000pt;}
.x2d{left:80.417969pt;}
.x16{left:85.799997pt;}
.x22{left:93.347656pt;}
.x3b{left:104.800008pt;}
.x2f{left:107.847656pt;}
.x38{left:114.402344pt;}
.x14{left:115.530077pt;}
.x37{left:145.800008pt;}
.x2e{left:146.800008pt;}
.x51{left:175.800008pt;}
.x3c{left:192.800008pt;}
.x3a{left:218.639457pt;}
.x5a{left:223.800013pt;}
.xa{left:224.721487pt;}
.x17{left:225.666807pt;}
.x6{left:227.604307pt;}
.x11{left:235.619927pt;}
.x59{left:249.054690pt;}
.x63{left:252.156250pt;}
.xb{left:264.494927pt;}
.x7{left:266.494927pt;}
.xe{left:268.494927pt;}
.x12{left:272.451957pt;}
.x40{left:280.799987pt;}
.x8{left:288.198057pt;}
.x5{left:289.166807pt;}
.xf{left:291.975397pt;}
.xd{left:298.393347pt;}
.x9{left:304.854287pt;}
.x57{left:307.815227pt;}
.x1d{left:311.951947pt;}
.x1e{left:324.787877pt;}
.xc{left:327.561317pt;}
.x52{left:330.799987pt;}
.x1f{left:336.998817pt;}
.x1a{left:340.190227pt;}
.x18{left:342.182417pt;}
.x3{left:347.315234pt;}
.x10{left:352.686317pt;}
.x1c{left:358.616007pt;}
.x1b{left:360.838667pt;}
.x43{left:365.799973pt;}
.x15{left:367.080847pt;}
.x19{left:371.959757pt;}
.x5b{left:384.799973pt;}
.x53{left:386.799973pt;}
.x4{left:396.850377pt;}
.x24{left:401.799973pt;}
.x30{left:428.799973pt;}
.x54{left:450.799973pt;}
.x46{left:451.799973pt;}
.x55{left:487.799973pt;}
.x26{left:495.799973pt;}
.x4a{left:537.799973pt;}
.x5d{left:545.799973pt;}
.x32{left:580.799973pt;}
.x4b{left:623.799973pt;}
}




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