
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a2f66016f429e4c602b0c50e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_e58d4fb91380b21ded351b31.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_27cf03f9f59ead4fffed7cf5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.987305;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_6fd86eccb6a31b4ec17872d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_fe88337ddd307fe8c253c7ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1f329a568db8c90f1dc45dc5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_858394ab10c41cda8dafd577.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_a9138a6681491ef2251f4d08.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_829a9190c6a3e62db87a03cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_740fb848f0154eee1f501325.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.163086;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_266ba1c6017360972a56de6d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_101627361249f9a4b184a428.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_624141c851f576c5d2c2cd08.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.255143,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.255143,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.255143,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.244961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244961,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.444600px;}
.ls10{letter-spacing:-0.427200px;}
.lsc{letter-spacing:-0.391800px;}
.ls2f{letter-spacing:-0.246600px;}
.ls15{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.162000px;}
.ls21{letter-spacing:-0.141600px;}
.ls8{letter-spacing:-0.135000px;}
.ls26{letter-spacing:-0.127136px;}
.ls24{letter-spacing:-0.125400px;}
.lse{letter-spacing:-0.121200px;}
.ls20{letter-spacing:-0.101400px;}
.lsa{letter-spacing:-0.092400px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.086400px;}
.ls9{letter-spacing:-0.084600px;}
.ls29{letter-spacing:-0.080520px;}
.ls34{letter-spacing:-0.068400px;}
.ls33{letter-spacing:-0.063600px;}
.ls1b{letter-spacing:-0.037800px;}
.lsd{letter-spacing:-0.031800px;}
.ls2a{letter-spacing:-0.015892px;}
.ls1c{letter-spacing:-0.014760px;}
.ls1f{letter-spacing:-0.013320px;}
.ls1e{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.041760px;}
.ls12{letter-spacing:0.045360px;}
.ls28{letter-spacing:0.046776px;}
.ls13{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.060480px;}
.ls3{letter-spacing:0.065520px;}
.ls11{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.097800px;}
.ls1d{letter-spacing:0.098400px;}
.ls22{letter-spacing:0.102000px;}
.ls2e{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.173400px;}
.ls32{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.190704px;}
.ls19{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.453600px;}
.ls2b{letter-spacing:1.173600px;}
.ls2c{letter-spacing:2.253600px;}
.ls1a{letter-spacing:5.493600px;}
.ls23{letter-spacing:28.893600px;}
.ls31{letter-spacing:47.726640px;}
.ls25{letter-spacing:78.213600px;}
.ls30{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb{word-spacing:-60.120000px;}
.ws1b{word-spacing:-16.082744px;}
.ws1a{word-spacing:-15.764903px;}
.ws4{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws17{word-spacing:-13.328400px;}
.ws11{word-spacing:-13.324800px;}
.wse{word-spacing:-13.324200px;}
.wsd{word-spacing:-13.275360px;}
.ws15{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.218840px;}
.ws13{word-spacing:-13.213080px;}
.ws10{word-spacing:-13.211640px;}
.wsf{word-spacing:-13.188600px;}
.ws2b{word-spacing:-13.162800px;}
.ws2c{word-spacing:-13.158000px;}
.ws3{word-spacing:-13.134000px;}
.ws14{word-spacing:-13.125000px;}
.ws19{word-spacing:-13.101000px;}
.ws16{word-spacing:-13.084800px;}
.ws6{word-spacing:-13.064400px;}
.wsa{word-spacing:-13.039800px;}
.ws2a{word-spacing:-12.979800px;}
.ws7{word-spacing:-12.799200px;}
.ws29{word-spacing:-10.758911px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws18{word-spacing:-8.553600px;}
.ws22{word-spacing:-1.039604px;}
.ws23{word-spacing:-0.816639px;}
.ws8{word-spacing:0.000000px;}
.ws25{word-spacing:0.937630px;}
.ws5{word-spacing:4.304880px;}
.ws1d{word-spacing:4.660341px;}
.ws1e{word-spacing:4.904495px;}
.ws28{word-spacing:7.273257px;}
.ws21{word-spacing:11.100102px;}
.ws24{word-spacing:12.983796px;}
.ws20{word-spacing:15.499188px;}
.ws1c{word-spacing:16.831831px;}
.ws27{word-spacing:19.541911px;}
.ws1f{word-spacing:27.521877px;}
.ws26{word-spacing:31.535104px;}
._9{margin-left:-3.509759px;}
._8{margin-left:-2.116680px;}
._0{margin-left:-1.068000px;}
._4{width:1.066093px;}
._3{width:2.079576px;}
._a{width:3.131556px;}
._d{width:4.137888px;}
._7{width:5.651400px;}
._6{width:7.399803px;}
._5{width:8.476800px;}
._b{width:10.039800px;}
._c{width:11.062801px;}
._29{width:12.076053px;}
._12{width:14.849640px;}
._13{width:16.218480px;}
._e{width:18.216600px;}
._f{width:19.418399px;}
._14{width:21.461160px;}
._10{width:22.845600px;}
._11{width:23.987880px;}
._1{width:24.995988px;}
._2{width:26.003471px;}
._15{width:27.715320px;}
._26{width:29.967089px;}
._24{width:33.981588px;}
._1c{width:36.252360px;}
._2a{width:38.741907px;}
._22{width:39.840453px;}
._19{width:44.188200px;}
._23{width:50.244442px;}
._1d{width:52.845480px;}
._25{width:54.387857px;}
._1a{width:69.692760px;}
._1e{width:77.675040px;}
._1f{width:89.218080px;}
._18{width:99.258120px;}
._17{width:119.759040px;}
._16{width:131.939640px;}
._1b{width:156.915120px;}
._21{width:683.977281px;}
._20{width:804.597862px;}
._28{width:987.274798px;}
._27{width:995.896867px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fsb{font-size:47.676119px;}
.fsc{font-size:47.803255px;}
.fs8{font-size:47.880000px;}
.fsd{font-size:51.698024px;}
.fsf{font-size:52.761572px;}
.fse{font-size:52.888708px;}
.fs2{font-size:54.000000px;}
.fs10{font-size:57.480460px;}
.fs1{font-size:60.120000px;}
.fsa{font-size:63.568158px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:74.374745px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y159{bottom:3.161485px;}
.y10c{bottom:3.496407px;}
.ya0{bottom:6.210000px;}
.ya8{bottom:6.300000px;}
.yc2{bottom:7.830000px;}
.yc0{bottom:7.920000px;}
.yf3{bottom:7.950000px;}
.ya4{bottom:8.910000px;}
.y158{bottom:16.526171px;}
.y10b{bottom:18.276375px;}
.y132{bottom:19.928631px;}
.y13b{bottom:19.928633px;}
.y115{bottom:19.957767px;}
.y120{bottom:19.957768px;}
.ya6{bottom:23.850000px;}
.y9f{bottom:23.880000px;}
.ya7{bottom:23.940000px;}
.yb2{bottom:23.970000px;}
.yec{bottom:25.380000px;}
.ye4{bottom:25.470000px;}
.yf2{bottom:25.500000px;}
.ya2{bottom:26.460000px;}
.ya3{bottom:26.550000px;}
.y144{bottom:39.730115px;}
.y130{bottom:39.730116px;}
.y139{bottom:39.730120px;}
.y127{bottom:39.756602px;}
.y113{bottom:39.756604px;}
.y11e{bottom:39.756606px;}
.yea{bottom:43.020000px;}
.ye6{bottom:43.050000px;}
.ye3{bottom:43.110000px;}
.y122{bottom:55.238100px;}
.y10e{bottom:55.238101px;}
.y117{bottom:55.238103px;}
.y13d{bottom:55.240747px;}
.y12a{bottom:55.240749px;}
.y134{bottom:55.240753px;}
.yf6{bottom:60.570000px;}
.ye2{bottom:60.660000px;}
.y131{bottom:71.228144px;}
.y13e{bottom:71.387062px;}
.y118{bottom:72.494212px;}
.y145{bottom:72.626642px;}
.y13a{bottom:72.626647px;}
.y2{bottom:73.380000px;}
.y12b{bottom:74.025142px;}
.y29{bottom:74.190000px;}
.y11f{bottom:75.990462px;}
.y128{bottom:76.374515px;}
.y114{bottom:76.785060px;}
.ye9{bottom:78.210000px;}
.y135{bottom:79.460222px;}
.y123{bottom:81.301046px;}
.y10f{bottom:81.459968px;}
.y13f{bottom:87.501589px;}
.y119{bottom:89.750317px;}
.y12c{bottom:92.809532px;}
.ye8{bottom:95.760000px;}
.y1{bottom:101.640000px;}
.y140{bottom:103.647902px;}
.y136{bottom:103.647907px;}
.y11a{bottom:106.979938px;}
.y124{bottom:107.337504px;}
.y110{bottom:107.655346px;}
.y12d{bottom:111.562139px;}
.yc8{bottom:111.630000px;}
.y141{bottom:119.762430px;}
.y107{bottom:123.060000px;}
.y11b{bottom:124.236043px;}
.y87{bottom:125.130000px;}
.y137{bottom:127.840888px;}
.y59{bottom:129.720000px;}
.y12e{bottom:130.343881px;}
.y125{bottom:133.360719px;}
.y111{bottom:133.877212px;}
.yee{bottom:135.750000px;}
.y142{bottom:135.906094px;}
.y154{bottom:137.910000px;}
.yc7{bottom:138.900000px;}
.ybb{bottom:139.530000px;}
.y106{bottom:140.610000px;}
.y11c{bottom:141.505394px;}
.y86{bottom:142.680000px;}
.y1a7{bottom:143.130000px;}
.y12f{bottom:149.136218px;}
.y143{bottom:152.049757px;}
.y138{bottom:152.049762px;}
.y153{bottom:155.460000px;}
.yba{bottom:157.170000px;}
.y105{bottom:158.250000px;}
.y11d{bottom:158.721769px;}
.y126{bottom:159.397177px;}
.y27{bottom:160.050000px;}
.y112{bottom:160.059347px;}
.y85{bottom:160.320000px;}
.y1a6{bottom:160.680000px;}
.y58{bottom:165.270000px;}
.y189{bottom:166.170000px;}
.yc6{bottom:166.260000px;}
.yad{bottom:167.070000px;}
.yb9{bottom:174.720000px;}
.y104{bottom:175.800000px;}
.y26{bottom:177.600000px;}
.y84{bottom:177.870000px;}
.yff{bottom:181.560000px;}
.y57{bottom:182.910000px;}
.y188{bottom:183.720000px;}
.y1c3{bottom:186.870000px;}
.y1a5{bottom:187.320000px;}
.y152{bottom:187.680000px;}
.y155{bottom:191.690851px;}
.y10a{bottom:191.918124px;}
.yc5{bottom:193.620000px;}
.y25{bottom:195.240000px;}
.y83{bottom:195.510000px;}
.yed{bottom:198.210000px;}
.y56{bottom:200.460000px;}
.y187{bottom:201.270000px;}
.y1c2{bottom:204.510000px;}
.y1a4{bottom:204.870000px;}
.y109{bottom:206.697694px;}
.yb8{bottom:206.940000px;}
.y103{bottom:208.020000px;}
.yac{bottom:209.010000px;}
.y24{bottom:212.790000px;}
.y82{bottom:213.060000px;}
.yfe{bottom:213.780000px;}
.y55{bottom:218.100000px;}
.y186{bottom:218.910000px;}
.yc4{bottom:220.890000px;}
.y1c1{bottom:222.060000px;}
.y23{bottom:230.340000px;}
.y81{bottom:230.610000px;}
.y1a3{bottom:231.420000px;}
.y54{bottom:235.650000px;}
.y185{bottom:236.460000px;}
.y22{bottom:247.980000px;}
.y80{bottom:248.250000px;}
.y1c0{bottom:248.610000px;}
.y1a2{bottom:249.060000px;}
.yab{bottom:250.860000px;}
.y53{bottom:253.200000px;}
.y184{bottom:254.100000px;}
.yeb{bottom:260.760000px;}
.y7f{bottom:265.800000px;}
.y1bf{bottom:266.250000px;}
.y1a1{bottom:266.610000px;}
.y52{bottom:270.840000px;}
.y183{bottom:271.650000px;}
.yc3{bottom:275.610000px;}
.y7e{bottom:283.440000px;}
.y21{bottom:283.530000px;}
.y51{bottom:288.390000px;}
.yaa{bottom:292.800000px;}
.y1a0{bottom:293.250000px;}
.y7d{bottom:300.990000px;}
.y20{bottom:301.170000px;}
.yc1{bottom:302.970000px;}
.y50{bottom:305.940000px;}
.y182{bottom:307.200000px;}
.y1be{bottom:310.440000px;}
.y19f{bottom:310.800000px;}
.y1f{bottom:318.720000px;}
.y157{bottom:322.493461px;}
.ye7{bottom:323.220000px;}
.y181{bottom:324.840000px;}
.y7c{bottom:327.540000px;}
.y1bd{bottom:327.990000px;}
.ybf{bottom:330.240000px;}
.y4f{bottom:332.580000px;}
.ya9{bottom:334.740000px;}
.y156{bottom:335.857668px;}
.y1e{bottom:336.270000px;}
.y19e{bottom:337.350000px;}
.y180{bottom:342.390000px;}
.y1d{bottom:353.910000px;}
.y1bc{bottom:354.540000px;}
.y19d{bottom:354.990000px;}
.y17f{bottom:359.940000px;}
.y7b{bottom:363.180000px;}
.y4e{bottom:368.490000px;}
.y1c{bottom:371.460000px;}
.y1bb{bottom:372.180000px;}
.ya5{bottom:376.680000px;}
.y17e{bottom:377.580000px;}
.ybe{bottom:378.930000px;}
.y7a{bottom:380.730000px;}
.y19c{bottom:381.540000px;}
.y17d{bottom:395.130000px;}
.y1b{bottom:398.370000px;}
.y1ba{bottom:398.730000px;}
.y19b{bottom:399.090000px;}
.ybd{bottom:414.570000px;}
.y79{bottom:415.920000px;}
.y1b9{bottom:416.370000px;}
.y4d{bottom:416.730000px;}
.ya1{bottom:418.620000px;}
.y19a{bottom:425.730000px;}
.y17c{bottom:430.770000px;}
.y78{bottom:433.470000px;}
.y1b8{bottom:433.920000px;}
.y4c{bottom:434.370000px;}
.ye5{bottom:438.510000px;}
.y199{bottom:443.280000px;}
.ybc{bottom:446.790000px;}
.y1a{bottom:446.970000px;}
.y17b{bottom:448.320000px;}
.y4b{bottom:451.920000px;}
.y77{bottom:460.110000px;}
.y1b7{bottom:460.470000px;}
.y9e{bottom:463.170000px;}
.y17a{bottom:465.870000px;}
.y4a{bottom:469.470000px;}
.y198{bottom:470.220000px;}
.y1b6{bottom:478.140000px;}
.y179{bottom:483.540000px;}
.y19{bottom:484.080000px;}
.y49{bottom:487.140000px;}
.y76{bottom:495.690000px;}
.ye1{bottom:501.000000px;}
.y178{bottom:501.090000px;}
.y18{bottom:501.630000px;}
.y48{bottom:504.690000px;}
.y75{bottom:513.330000px;}
.y1d4{bottom:513.690000px;}
.y197{bottom:518.550000px;}
.y177{bottom:518.730000px;}
.y17{bottom:519.180000px;}
.y47{bottom:522.330000px;}
.y9d{bottom:526.470000px;}
.y74{bottom:530.880000px;}
.y1d3{bottom:531.330000px;}
.y176{bottom:536.280000px;}
.y16{bottom:536.820000px;}
.y46{bottom:539.880000px;}
.y196{bottom:545.460000px;}
.y15{bottom:554.370000px;}
.y73{bottom:557.430000px;}
.y1d2{bottom:557.880000px;}
.y9c{bottom:562.020000px;}
.yb7{bottom:570.300000px;}
.y175{bottom:571.830000px;}
.y14{bottom:571.920000px;}
.y45{bottom:575.430000px;}
.y9b{bottom:579.660000px;}
.y195{bottom:582.450000px;}
.y1b5{bottom:584.070000px;}
.yb6{bottom:587.940000px;}
.y174{bottom:589.470000px;}
.y13{bottom:589.560000px;}
.y44{bottom:593.070000px;}
.y9a{bottom:597.210000px;}
.y194{bottom:600.000000px;}
.y1b4{bottom:601.620000px;}
.y1d1{bottom:602.070000px;}
.ye0{bottom:602.520000px;}
.yb5{bottom:605.490000px;}
.y173{bottom:607.020000px;}
.y12{bottom:607.110000px;}
.y72{bottom:610.620000px;}
.y99{bottom:614.760000px;}
.y1b3{bottom:619.260000px;}
.y1d0{bottom:619.620000px;}
.ydf{bottom:620.070000px;}
.y172{bottom:624.660000px;}
.y11{bottom:624.750000px;}
.y193{bottom:626.910000px;}
.y71{bottom:628.260000px;}
.y43{bottom:628.620000px;}
.y98{bottom:632.400000px;}
.y1cf{bottom:637.260000px;}
.yb4{bottom:637.710000px;}
.yfd{bottom:637.890000px;}
.y171{bottom:642.210000px;}
.y10{bottom:642.300000px;}
.y70{bottom:645.810000px;}
.y42{bottom:646.260000px;}
.yfc{bottom:652.830000px;}
.yde{bottom:655.620000px;}
.y97{bottom:658.950000px;}
.y170{bottom:659.760000px;}
.yf{bottom:659.850000px;}
.y6f{bottom:663.360000px;}
.y41{bottom:663.810000px;}
.y192{bottom:664.260000px;}
.ydd{bottom:673.260000px;}
.y16f{bottom:677.400000px;}
.ye{bottom:677.490000px;}
.y6e{bottom:681.000000px;}
.y40{bottom:681.360000px;}
.ydc{bottom:690.810000px;}
.y96{bottom:694.590000px;}
.y16e{bottom:694.950000px;}
.yd{bottom:695.040000px;}
.y102{bottom:697.470000px;}
.yfb{bottom:697.740000px;}
.y6d{bottom:698.550000px;}
.y1ce{bottom:699.000000px;}
.y1b2{bottom:707.550000px;}
.ydb{bottom:708.450000px;}
.y95{bottom:712.140000px;}
.y16d{bottom:712.590000px;}
.yc{bottom:712.680000px;}
.y6c{bottom:716.190000px;}
.y3f{bottom:717.000000px;}
.yfa{bottom:725.100000px;}
.y1b1{bottom:725.190000px;}
.y1cd{bottom:725.550000px;}
.yda{bottom:726.000000px;}
.y94{bottom:729.690000px;}
.y16c{bottom:730.140000px;}
.y101{bottom:733.020000px;}
.y6b{bottom:733.740000px;}
.y3e{bottom:734.550000px;}
.yb{bottom:739.590000px;}
.y1cc{bottom:743.190000px;}
.yd9{bottom:743.550000px;}
.y93{bottom:747.330000px;}
.y16b{bottom:747.690000px;}
.y6a{bottom:751.290000px;}
.y1b0{bottom:751.740000px;}
.y3d{bottom:752.190000px;}
.y1cb{bottom:760.740000px;}
.y92{bottom:764.880000px;}
.y100{bottom:765.240000px;}
.y191{bottom:765.330000px;}
.y108{bottom:767.330963px;}
.y1af{bottom:769.290000px;}
.y3c{bottom:769.740000px;}
.yd8{bottom:770.190000px;}
.y69{bottom:777.930000px;}
.y190{bottom:782.880000px;}
.y16a{bottom:783.330000px;}
.y13c{bottom:785.797986px;}
.y133{bottom:785.798012px;}
.y129{bottom:785.798042px;}
.y1ae{bottom:786.930000px;}
.y1ca{bottom:787.290000px;}
.ya{bottom:787.830000px;}
.yf9{bottom:791.430000px;}
.y91{bottom:791.520000px;}
.y169{bottom:800.880000px;}
.y1c9{bottom:804.930000px;}
.y3b{bottom:805.290000px;}
.yd7{bottom:805.740000px;}
.yf8{bottom:808.980000px;}
.y18f{bottom:809.790000px;}
.y68{bottom:813.480000px;}
.y151{bottom:814.290000px;}
.y168{bottom:818.520000px;}
.y1c8{bottom:822.480000px;}
.y3a{bottom:822.930000px;}
.y9{bottom:823.380000px;}
.y90{bottom:827.070000px;}
.y67{bottom:831.030000px;}
.y150{bottom:831.930000px;}
.y167{bottom:836.070000px;}
.y39{bottom:840.480000px;}
.yd6{bottom:840.930000px;}
.yf7{bottom:844.530000px;}
.y8f{bottom:844.620000px;}
.y66{bottom:848.670000px;}
.y1c7{bottom:849.030000px;}
.y14f{bottom:849.480000px;}
.y166{bottom:853.620000px;}
.y1ad{bottom:857.670000px;}
.y18e{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.yf5{bottom:859.560000px;}
.y8e{bottom:862.260000px;}
.y1c6{bottom:866.670000px;}
.y14e{bottom:867.030000px;}
.yd5{bottom:867.480000px;}
.y65{bottom:875.220000px;}
.y18d{bottom:875.670000px;}
.y38{bottom:876.030000px;}
.y8d{bottom:879.810000px;}
.y14d{bottom:884.670000px;}
.y165{bottom:889.260000px;}
.y18c{bottom:893.220000px;}
.y37{bottom:893.670000px;}
.y8c{bottom:897.450000px;}
.y7{bottom:898.980000px;}
.y1ac{bottom:901.860000px;}
.y14c{bottom:902.220000px;}
.yd4{bottom:903.120000px;}
.y164{bottom:906.810000px;}
.y64{bottom:910.860000px;}
.y36{bottom:911.220000px;}
.y8b{bottom:915.000000px;}
.y6{bottom:916.980000px;}
.y1ab{bottom:919.410000px;}
.y14b{bottom:919.860000px;}
.yd3{bottom:920.670000px;}
.y163{bottom:924.450000px;}
.y63{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.y8a{bottom:932.550000px;}
.y1c5{bottom:937.410000px;}
.yd2{bottom:938.310000px;}
.y162{bottom:942.000000px;}
.y62{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y1c4{bottom:954.960000px;}
.yd1{bottom:955.860000px;}
.yf4{bottom:957.210000px;}
.y89{bottom:959.190000px;}
.y161{bottom:959.550000px;}
.y1aa{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.yb3{bottom:971.880000px;}
.y61{bottom:972.600000px;}
.yd0{bottom:973.410000px;}
.y121{bottom:974.280224px;}
.y116{bottom:974.280250px;}
.y10d{bottom:974.280281px;}
.y160{bottom:977.190000px;}
.y32{bottom:981.600000px;}
.y14a{bottom:981.960000px;}
.yb1{bottom:986.820000px;}
.y4{bottom:987.630000px;}
.y1a9{bottom:990.150000px;}
.ycf{bottom:991.050000px;}
.y15f{bottom:994.740000px;}
.y88{bottom:995.100000px;}
.y31{bottom:999.150000px;}
.y149{bottom:999.600000px;}
.yf1{bottom:1002.120000px;}
.y1a8{bottom:1007.790000px;}
.y60{bottom:1008.150000px;}
.yce{bottom:1008.600000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.y148{bottom:1017.180000px;}
.y5f{bottom:1025.820000px;}
.ycd{bottom:1026.270000px;}
.yb0{bottom:1028.790000px;}
.y15e{bottom:1029.960000px;}
.y2f{bottom:1034.370000px;}
.y147{bottom:1034.820000px;}
.y5e{bottom:1043.370000px;}
.yf0{bottom:1047.060000px;}
.y18b{bottom:1051.920000px;}
.y146{bottom:1052.370000px;}
.ycc{bottom:1052.820000px;}
.y5d{bottom:1060.920000px;}
.y15d{bottom:1065.510000px;}
.y18a{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.yaf{bottom:1070.640000px;}
.y5c{bottom:1078.560000px;}
.y15c{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.ycb{bottom:1087.650000px;}
.yef{bottom:1091.970000px;}
.y5b{bottom:1096.110000px;}
.yca{bottom:1099.890000px;}
.y15b{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.yae{bottom:1112.580000px;}
.y5a{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.yc9{bottom:1127.160000px;}
.y15a{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h13{height:26.550000px;}
.h12{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h10{height:41.130000px;}
.hd{height:41.160000px;}
.h11{height:41.220000px;}
.h14{height:41.661211px;}
.hf{height:43.740000px;}
.h1a{height:44.190000px;}
.h1b{height:44.220000px;}
.h21{height:47.420046px;}
.h22{height:47.546499px;}
.he{height:50.902383px;}
.h23{height:51.420349px;}
.h8{height:52.311445px;}
.h28{height:52.478184px;}
.h24{height:52.604638px;}
.h9{height:55.779258px;}
.h2c{height:56.413928px;}
.h7{height:56.704219px;}
.h5{height:57.323320px;}
.h18{height:61.740000px;}
.h16{height:61.770000px;}
.ha{height:61.793886px;}
.h19{height:61.830000px;}
.h1f{height:62.388671px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1e{height:73.975272px;}
.h15{height:79.380000px;}
.h1c{height:96.930000px;}
.h17{height:114.480000px;}
.h27{height:167.184283px;}
.h2a{height:170.044849px;}
.h29{height:170.044854px;}
.h25{height:176.719510px;}
.h26{height:177.355187px;}
.h20{height:177.989719px;}
.h1d{height:384.931779px;}
.h2b{height:599.030217px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:37.710000px;}
.w9{width:41.130000px;}
.wa{width:41.160000px;}
.w3{width:79.560000px;}
.w12{width:87.030000px;}
.w11{width:87.480000px;}
.w10{width:92.160000px;}
.wd{width:92.790000px;}
.wf{width:95.520000px;}
.w6{width:117.450000px;}
.we{width:127.260000px;}
.w5{width:130.170000px;}
.w17{width:133.380000px;}
.w16{width:137.430000px;}
.wc{width:142.500000px;}
.w7{width:146.970000px;}
.w13{width:150.960000px;}
.w1d{width:156.899940px;}
.w1b{width:156.899951px;}
.w15{width:160.050000px;}
.w14{width:170.910000px;}
.w19{width:175.648698px;}
.w1c{width:175.648707px;}
.w1a{width:197.137656px;}
.w8{width:223.770000px;}
.w4{width:278.310000px;}
.w1e{width:502.153201px;}
.w18{width:538.095000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x38{left:28.465042px;}
.x36{left:35.908311px;}
.x3b{left:41.952744px;}
.x35{left:44.753035px;}
.x3a{left:50.828611px;}
.x20{left:56.610000px;}
.x37{left:58.549556px;}
.x3c{left:64.622537px;}
.x1{left:68.040000px;}
.x30{left:71.189987px;}
.xf{left:74.609987px;}
.x32{left:77.399987px;}
.x31{left:79.649987px;}
.xa{left:81.719987px;}
.x3d{left:84.803444px;}
.xb{left:91.079987px;}
.x3e{left:92.677540px;}
.x21{left:95.130000px;}
.xe{left:102.869987px;}
.x43{left:111.239987px;}
.x5{left:149.130000px;}
.x34{left:175.869297px;}
.x2c{left:177.779987px;}
.x41{left:195.720000px;}
.x2{left:202.799987px;}
.x12{left:207.299987px;}
.x2e{left:217.919987px;}
.x27{left:220.440000px;}
.x22{left:238.350000px;}
.x42{left:254.352452px;}
.x40{left:279.119987px;}
.x13{left:293.250000px;}
.x23{left:331.950000px;}
.x14{left:335.100000px;}
.x1f{left:352.559987px;}
.x39{left:357.573046px;}
.xc{left:375.059987px;}
.x15{left:376.950000px;}
.x28{left:392.160000px;}
.x16{left:418.800000px;}
.x10{left:420.419987px;}
.x33{left:422.219987px;}
.x6{left:428.250000px;}
.x17{left:460.650000px;}
.x18{left:502.500000px;}
.x19{left:544.380000px;}
.x29{left:552.930000px;}
.x24{left:556.170000px;}
.x7{left:559.230000px;}
.x1a{left:586.230000px;}
.x1b{left:628.080000px;}
.x25{left:649.140000px;}
.x1c{left:669.930000px;}
.x8{left:677.490000px;}
.x2a{left:691.080000px;}
.x3f{left:699.809987px;}
.x1d{left:711.780000px;}
.x2d{left:717.809987px;}
.x26{left:737.430000px;}
.x2b{left:742.559987px;}
.x2f{left:743.639987px;}
.x9{left:749.309987px;}
.x1e{left:753.630000px;}
.xd{left:754.889987px;}
.x3{left:792.059987px;}
.x11{left:807.809987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.395200pt;}
.ls10{letter-spacing:-0.379733pt;}
.lsc{letter-spacing:-0.348267pt;}
.ls2f{letter-spacing:-0.219200pt;}
.ls15{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls21{letter-spacing:-0.125867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls26{letter-spacing:-0.113010pt;}
.ls24{letter-spacing:-0.111467pt;}
.lse{letter-spacing:-0.107733pt;}
.ls20{letter-spacing:-0.090133pt;}
.lsa{letter-spacing:-0.082133pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.076800pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls29{letter-spacing:-0.071573pt;}
.ls34{letter-spacing:-0.060800pt;}
.ls33{letter-spacing:-0.056533pt;}
.ls1b{letter-spacing:-0.033600pt;}
.lsd{letter-spacing:-0.028267pt;}
.ls2a{letter-spacing:-0.014126pt;}
.ls1c{letter-spacing:-0.013120pt;}
.ls1f{letter-spacing:-0.011840pt;}
.ls1e{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.037120pt;}
.ls12{letter-spacing:0.040320pt;}
.ls28{letter-spacing:0.041578pt;}
.ls13{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.053760pt;}
.ls3{letter-spacing:0.058240pt;}
.ls11{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.086933pt;}
.ls1d{letter-spacing:0.087467pt;}
.ls22{letter-spacing:0.090667pt;}
.ls2e{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.154133pt;}
.ls32{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.169515pt;}
.ls19{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.403200pt;}
.ls2b{letter-spacing:1.043200pt;}
.ls2c{letter-spacing:2.003200pt;}
.ls1a{letter-spacing:4.883200pt;}
.ls23{letter-spacing:25.683200pt;}
.ls31{letter-spacing:42.423680pt;}
.ls25{letter-spacing:69.523200pt;}
.ls30{letter-spacing:71.863680pt;}
.wsb{word-spacing:-53.440000pt;}
.ws1b{word-spacing:-14.295773pt;}
.ws1a{word-spacing:-14.013247pt;}
.ws4{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws17{word-spacing:-11.847467pt;}
.ws11{word-spacing:-11.844267pt;}
.wse{word-spacing:-11.843733pt;}
.wsd{word-spacing:-11.800320pt;}
.ws15{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.750080pt;}
.ws13{word-spacing:-11.744960pt;}
.ws10{word-spacing:-11.743680pt;}
.wsf{word-spacing:-11.723200pt;}
.ws2b{word-spacing:-11.700267pt;}
.ws2c{word-spacing:-11.696000pt;}
.ws3{word-spacing:-11.674667pt;}
.ws14{word-spacing:-11.666667pt;}
.ws19{word-spacing:-11.645333pt;}
.ws16{word-spacing:-11.630933pt;}
.ws6{word-spacing:-11.612800pt;}
.wsa{word-spacing:-11.590933pt;}
.ws2a{word-spacing:-11.537600pt;}
.ws7{word-spacing:-11.377067pt;}
.ws29{word-spacing:-9.563476pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws18{word-spacing:-7.603200pt;}
.ws22{word-spacing:-0.924093pt;}
.ws23{word-spacing:-0.725901pt;}
.ws8{word-spacing:0.000000pt;}
.ws25{word-spacing:0.833449pt;}
.ws5{word-spacing:3.826560pt;}
.ws1d{word-spacing:4.142525pt;}
.ws1e{word-spacing:4.359551pt;}
.ws28{word-spacing:6.465117pt;}
.ws21{word-spacing:9.866758pt;}
.ws24{word-spacing:11.541152pt;}
.ws20{word-spacing:13.777056pt;}
.ws1c{word-spacing:14.961628pt;}
.ws27{word-spacing:17.370588pt;}
.ws1f{word-spacing:24.463890pt;}
.ws26{word-spacing:28.031204pt;}
._9{margin-left:-3.119786pt;}
._8{margin-left:-1.881494pt;}
._0{margin-left:-0.949333pt;}
._4{width:0.947638pt;}
._3{width:1.848512pt;}
._a{width:2.783606pt;}
._d{width:3.678122pt;}
._7{width:5.023467pt;}
._6{width:6.577603pt;}
._5{width:7.534933pt;}
._b{width:8.924266pt;}
._c{width:9.833601pt;}
._29{width:10.734269pt;}
._12{width:13.199680pt;}
._13{width:14.416427pt;}
._e{width:16.192534pt;}
._f{width:17.260799pt;}
._14{width:19.076587pt;}
._10{width:20.307200pt;}
._11{width:21.322560pt;}
._1{width:22.218656pt;}
._2{width:23.114196pt;}
._15{width:24.635840pt;}
._26{width:26.637413pt;}
._24{width:30.205856pt;}
._1c{width:32.224320pt;}
._2a{width:34.437250pt;}
._22{width:35.413736pt;}
._19{width:39.278400pt;}
._23{width:44.661726pt;}
._1d{width:46.973760pt;}
._25{width:48.344762pt;}
._1a{width:61.949120pt;}
._1e{width:69.044480pt;}
._1f{width:79.304960pt;}
._18{width:88.229440pt;}
._17{width:106.452480pt;}
._16{width:117.279680pt;}
._1b{width:139.480107pt;}
._21{width:607.979806pt;}
._20{width:715.198100pt;}
._28{width:877.577598pt;}
._27{width:885.241660pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fsb{font-size:42.378772pt;}
.fsc{font-size:42.491782pt;}
.fs8{font-size:42.560000pt;}
.fsd{font-size:45.953799pt;}
.fsf{font-size:46.899175pt;}
.fse{font-size:47.012185pt;}
.fs2{font-size:48.000000pt;}
.fs10{font-size:51.093742pt;}
.fs1{font-size:53.440000pt;}
.fsa{font-size:56.505030pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:66.110885pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y159{bottom:2.810209pt;}
.y10c{bottom:3.107918pt;}
.ya0{bottom:5.520000pt;}
.ya8{bottom:5.600000pt;}
.yc2{bottom:6.960000pt;}
.yc0{bottom:7.040000pt;}
.yf3{bottom:7.066667pt;}
.ya4{bottom:7.920000pt;}
.y158{bottom:14.689930pt;}
.y10b{bottom:16.245667pt;}
.y132{bottom:17.714339pt;}
.y13b{bottom:17.714341pt;}
.y115{bottom:17.740238pt;}
.y120{bottom:17.740239pt;}
.ya6{bottom:21.200000pt;}
.y9f{bottom:21.226667pt;}
.ya7{bottom:21.280000pt;}
.yb2{bottom:21.306667pt;}
.yec{bottom:22.560000pt;}
.ye4{bottom:22.640000pt;}
.yf2{bottom:22.666667pt;}
.ya2{bottom:23.520000pt;}
.ya3{bottom:23.600000pt;}
.y144{bottom:35.315657pt;}
.y130{bottom:35.315659pt;}
.y139{bottom:35.315662pt;}
.y127{bottom:35.339202pt;}
.y113{bottom:35.339203pt;}
.y11e{bottom:35.339205pt;}
.yea{bottom:38.240000pt;}
.ye6{bottom:38.266667pt;}
.ye3{bottom:38.320000pt;}
.y122{bottom:49.100533pt;}
.y10e{bottom:49.100534pt;}
.y117{bottom:49.100536pt;}
.y13d{bottom:49.102887pt;}
.y12a{bottom:49.102888pt;}
.y134{bottom:49.102891pt;}
.yf6{bottom:53.840000pt;}
.ye2{bottom:53.920000pt;}
.y131{bottom:63.313906pt;}
.y13e{bottom:63.455166pt;}
.y118{bottom:64.439299pt;}
.y145{bottom:64.557015pt;}
.y13a{bottom:64.557019pt;}
.y2{bottom:65.226667pt;}
.y12b{bottom:65.800126pt;}
.y29{bottom:65.946667pt;}
.y11f{bottom:67.547077pt;}
.y128{bottom:67.888458pt;}
.y114{bottom:68.253387pt;}
.ye9{bottom:69.520000pt;}
.y135{bottom:70.631309pt;}
.y123{bottom:72.267596pt;}
.y10f{bottom:72.408860pt;}
.y13f{bottom:77.779190pt;}
.y119{bottom:79.778060pt;}
.y12c{bottom:82.497361pt;}
.ye8{bottom:85.120000pt;}
.y1{bottom:90.346667pt;}
.y140{bottom:92.131469pt;}
.y136{bottom:92.131473pt;}
.y11a{bottom:95.093278pt;}
.y124{bottom:95.411115pt;}
.y110{bottom:95.693641pt;}
.y12d{bottom:99.166346pt;}
.yc8{bottom:99.226667pt;}
.y141{bottom:106.455493pt;}
.y107{bottom:109.386667pt;}
.y11b{bottom:110.432038pt;}
.y87{bottom:111.226667pt;}
.y137{bottom:113.636345pt;}
.y59{bottom:115.306667pt;}
.y12e{bottom:115.861227pt;}
.y125{bottom:118.542861pt;}
.y111{bottom:119.001966pt;}
.yee{bottom:120.666667pt;}
.y142{bottom:120.805417pt;}
.y154{bottom:122.586667pt;}
.yc7{bottom:123.466667pt;}
.ybb{bottom:124.026667pt;}
.y106{bottom:124.986667pt;}
.y11c{bottom:125.782572pt;}
.y86{bottom:126.826667pt;}
.y1a7{bottom:127.226667pt;}
.y12f{bottom:132.565527pt;}
.y143{bottom:135.155339pt;}
.y138{bottom:135.155344pt;}
.y153{bottom:138.186667pt;}
.yba{bottom:139.706667pt;}
.y105{bottom:140.666667pt;}
.y11d{bottom:141.086017pt;}
.y126{bottom:141.686380pt;}
.y27{bottom:142.266667pt;}
.y112{bottom:142.274975pt;}
.y85{bottom:142.506667pt;}
.y1a6{bottom:142.826667pt;}
.y58{bottom:146.906667pt;}
.y189{bottom:147.706667pt;}
.yc6{bottom:147.786667pt;}
.yad{bottom:148.506667pt;}
.yb9{bottom:155.306667pt;}
.y104{bottom:156.266667pt;}
.y26{bottom:157.866667pt;}
.y84{bottom:158.106667pt;}
.yff{bottom:161.386667pt;}
.y57{bottom:162.586667pt;}
.y188{bottom:163.306667pt;}
.y1c3{bottom:166.106667pt;}
.y1a5{bottom:166.506667pt;}
.y152{bottom:166.826667pt;}
.y155{bottom:170.391868pt;}
.y10a{bottom:170.593888pt;}
.yc5{bottom:172.106667pt;}
.y25{bottom:173.546667pt;}
.y83{bottom:173.786667pt;}
.yed{bottom:176.186667pt;}
.y56{bottom:178.186667pt;}
.y187{bottom:178.906667pt;}
.y1c2{bottom:181.786667pt;}
.y1a4{bottom:182.106667pt;}
.y109{bottom:183.731284pt;}
.yb8{bottom:183.946667pt;}
.y103{bottom:184.906667pt;}
.yac{bottom:185.786667pt;}
.y24{bottom:189.146667pt;}
.y82{bottom:189.386667pt;}
.yfe{bottom:190.026667pt;}
.y55{bottom:193.866667pt;}
.y186{bottom:194.586667pt;}
.yc4{bottom:196.346667pt;}
.y1c1{bottom:197.386667pt;}
.y23{bottom:204.746667pt;}
.y81{bottom:204.986667pt;}
.y1a3{bottom:205.706667pt;}
.y54{bottom:209.466667pt;}
.y185{bottom:210.186667pt;}
.y22{bottom:220.426667pt;}
.y80{bottom:220.666667pt;}
.y1c0{bottom:220.986667pt;}
.y1a2{bottom:221.386667pt;}
.yab{bottom:222.986667pt;}
.y53{bottom:225.066667pt;}
.y184{bottom:225.866667pt;}
.yeb{bottom:231.786667pt;}
.y7f{bottom:236.266667pt;}
.y1bf{bottom:236.666667pt;}
.y1a1{bottom:236.986667pt;}
.y52{bottom:240.746667pt;}
.y183{bottom:241.466667pt;}
.yc3{bottom:244.986667pt;}
.y7e{bottom:251.946667pt;}
.y21{bottom:252.026667pt;}
.y51{bottom:256.346667pt;}
.yaa{bottom:260.266667pt;}
.y1a0{bottom:260.666667pt;}
.y7d{bottom:267.546667pt;}
.y20{bottom:267.706667pt;}
.yc1{bottom:269.306667pt;}
.y50{bottom:271.946667pt;}
.y182{bottom:273.066667pt;}
.y1be{bottom:275.946667pt;}
.y19f{bottom:276.266667pt;}
.y1f{bottom:283.306667pt;}
.y157{bottom:286.660854pt;}
.ye7{bottom:287.306667pt;}
.y181{bottom:288.746667pt;}
.y7c{bottom:291.146667pt;}
.y1bd{bottom:291.546667pt;}
.ybf{bottom:293.546667pt;}
.y4f{bottom:295.626667pt;}
.ya9{bottom:297.546667pt;}
.y156{bottom:298.540150pt;}
.y1e{bottom:298.906667pt;}
.y19e{bottom:299.866667pt;}
.y180{bottom:304.346667pt;}
.y1d{bottom:314.586667pt;}
.y1bc{bottom:315.146667pt;}
.y19d{bottom:315.546667pt;}
.y17f{bottom:319.946667pt;}
.y7b{bottom:322.826667pt;}
.y4e{bottom:327.546667pt;}
.y1c{bottom:330.186667pt;}
.y1bb{bottom:330.826667pt;}
.ya5{bottom:334.826667pt;}
.y17e{bottom:335.626667pt;}
.ybe{bottom:336.826667pt;}
.y7a{bottom:338.426667pt;}
.y19c{bottom:339.146667pt;}
.y17d{bottom:351.226667pt;}
.y1b{bottom:354.106667pt;}
.y1ba{bottom:354.426667pt;}
.y19b{bottom:354.746667pt;}
.ybd{bottom:368.506667pt;}
.y79{bottom:369.706667pt;}
.y1b9{bottom:370.106667pt;}
.y4d{bottom:370.426667pt;}
.ya1{bottom:372.106667pt;}
.y19a{bottom:378.426667pt;}
.y17c{bottom:382.906667pt;}
.y78{bottom:385.306667pt;}
.y1b8{bottom:385.706667pt;}
.y4c{bottom:386.106667pt;}
.ye5{bottom:389.786667pt;}
.y199{bottom:394.026667pt;}
.ybc{bottom:397.146667pt;}
.y1a{bottom:397.306667pt;}
.y17b{bottom:398.506667pt;}
.y4b{bottom:401.706667pt;}
.y77{bottom:408.986667pt;}
.y1b7{bottom:409.306667pt;}
.y9e{bottom:411.706667pt;}
.y17a{bottom:414.106667pt;}
.y4a{bottom:417.306667pt;}
.y198{bottom:417.973333pt;}
.y1b6{bottom:425.013333pt;}
.y179{bottom:429.813333pt;}
.y19{bottom:430.293333pt;}
.y49{bottom:433.013333pt;}
.y76{bottom:440.613333pt;}
.ye1{bottom:445.333333pt;}
.y178{bottom:445.413333pt;}
.y18{bottom:445.893333pt;}
.y48{bottom:448.613333pt;}
.y75{bottom:456.293333pt;}
.y1d4{bottom:456.613333pt;}
.y197{bottom:460.933333pt;}
.y177{bottom:461.093333pt;}
.y17{bottom:461.493333pt;}
.y47{bottom:464.293333pt;}
.y9d{bottom:467.973333pt;}
.y74{bottom:471.893333pt;}
.y1d3{bottom:472.293333pt;}
.y176{bottom:476.693333pt;}
.y16{bottom:477.173333pt;}
.y46{bottom:479.893333pt;}
.y196{bottom:484.853333pt;}
.y15{bottom:492.773333pt;}
.y73{bottom:495.493333pt;}
.y1d2{bottom:495.893333pt;}
.y9c{bottom:499.573333pt;}
.yb7{bottom:506.933333pt;}
.y175{bottom:508.293333pt;}
.y14{bottom:508.373333pt;}
.y45{bottom:511.493333pt;}
.y9b{bottom:515.253333pt;}
.y195{bottom:517.733333pt;}
.y1b5{bottom:519.173333pt;}
.yb6{bottom:522.613333pt;}
.y174{bottom:523.973333pt;}
.y13{bottom:524.053333pt;}
.y44{bottom:527.173333pt;}
.y9a{bottom:530.853333pt;}
.y194{bottom:533.333333pt;}
.y1b4{bottom:534.773333pt;}
.y1d1{bottom:535.173333pt;}
.ye0{bottom:535.573333pt;}
.yb5{bottom:538.213333pt;}
.y173{bottom:539.573333pt;}
.y12{bottom:539.653333pt;}
.y72{bottom:542.773333pt;}
.y99{bottom:546.453333pt;}
.y1b3{bottom:550.453333pt;}
.y1d0{bottom:550.773333pt;}
.ydf{bottom:551.173333pt;}
.y172{bottom:555.253333pt;}
.y11{bottom:555.333333pt;}
.y193{bottom:557.253333pt;}
.y71{bottom:558.453333pt;}
.y43{bottom:558.773333pt;}
.y98{bottom:562.133333pt;}
.y1cf{bottom:566.453333pt;}
.yb4{bottom:566.853333pt;}
.yfd{bottom:567.013333pt;}
.y171{bottom:570.853333pt;}
.y10{bottom:570.933333pt;}
.y70{bottom:574.053333pt;}
.y42{bottom:574.453333pt;}
.yfc{bottom:580.293333pt;}
.yde{bottom:582.773333pt;}
.y97{bottom:585.733333pt;}
.y170{bottom:586.453333pt;}
.yf{bottom:586.533333pt;}
.y6f{bottom:589.653333pt;}
.y41{bottom:590.053333pt;}
.y192{bottom:590.453333pt;}
.ydd{bottom:598.453333pt;}
.y16f{bottom:602.133333pt;}
.ye{bottom:602.213333pt;}
.y6e{bottom:605.333333pt;}
.y40{bottom:605.653333pt;}
.ydc{bottom:614.053333pt;}
.y96{bottom:617.413333pt;}
.y16e{bottom:617.733333pt;}
.yd{bottom:617.813333pt;}
.y102{bottom:619.973333pt;}
.yfb{bottom:620.213333pt;}
.y6d{bottom:620.933333pt;}
.y1ce{bottom:621.333333pt;}
.y1b2{bottom:628.933333pt;}
.ydb{bottom:629.733333pt;}
.y95{bottom:633.013333pt;}
.y16d{bottom:633.413333pt;}
.yc{bottom:633.493333pt;}
.y6c{bottom:636.613333pt;}
.y3f{bottom:637.333333pt;}
.yfa{bottom:644.533333pt;}
.y1b1{bottom:644.613333pt;}
.y1cd{bottom:644.933333pt;}
.yda{bottom:645.333333pt;}
.y94{bottom:648.613333pt;}
.y16c{bottom:649.013333pt;}
.y101{bottom:651.573333pt;}
.y6b{bottom:652.213333pt;}
.y3e{bottom:652.933333pt;}
.yb{bottom:657.413333pt;}
.y1cc{bottom:660.613333pt;}
.yd9{bottom:660.933333pt;}
.y93{bottom:664.293333pt;}
.y16b{bottom:664.613333pt;}
.y6a{bottom:667.813333pt;}
.y1b0{bottom:668.213333pt;}
.y3d{bottom:668.613333pt;}
.y1cb{bottom:676.213333pt;}
.y92{bottom:679.893333pt;}
.y100{bottom:680.213333pt;}
.y191{bottom:680.293333pt;}
.y108{bottom:682.071967pt;}
.y1af{bottom:683.813333pt;}
.y3c{bottom:684.213333pt;}
.yd8{bottom:684.613333pt;}
.y69{bottom:691.493333pt;}
.y190{bottom:695.893333pt;}
.y16a{bottom:696.293333pt;}
.y13c{bottom:698.487098pt;}
.y133{bottom:698.487122pt;}
.y129{bottom:698.487149pt;}
.y1ae{bottom:699.493333pt;}
.y1ca{bottom:699.813333pt;}
.ya{bottom:700.293333pt;}
.yf9{bottom:703.493333pt;}
.y91{bottom:703.573333pt;}
.y169{bottom:711.893333pt;}
.y1c9{bottom:715.493333pt;}
.y3b{bottom:715.813333pt;}
.yd7{bottom:716.213333pt;}
.yf8{bottom:719.093333pt;}
.y18f{bottom:719.813333pt;}
.y68{bottom:723.093333pt;}
.y151{bottom:723.813333pt;}
.y168{bottom:727.573333pt;}
.y1c8{bottom:731.093333pt;}
.y3a{bottom:731.493333pt;}
.y9{bottom:731.893333pt;}
.y90{bottom:735.173333pt;}
.y67{bottom:738.693333pt;}
.y150{bottom:739.493333pt;}
.y167{bottom:743.173333pt;}
.y39{bottom:747.093333pt;}
.yd6{bottom:747.493333pt;}
.yf7{bottom:750.693333pt;}
.y8f{bottom:750.773333pt;}
.y66{bottom:754.373333pt;}
.y1c7{bottom:754.693333pt;}
.y14f{bottom:755.093333pt;}
.y166{bottom:758.773333pt;}
.y1ad{bottom:762.373333pt;}
.y18e{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.yf5{bottom:764.053333pt;}
.y8e{bottom:766.453333pt;}
.y1c6{bottom:770.373333pt;}
.y14e{bottom:770.693333pt;}
.yd5{bottom:771.093333pt;}
.y65{bottom:777.973333pt;}
.y18d{bottom:778.373333pt;}
.y38{bottom:778.693333pt;}
.y8d{bottom:782.053333pt;}
.y14d{bottom:786.373333pt;}
.y165{bottom:790.453333pt;}
.y18c{bottom:793.973333pt;}
.y37{bottom:794.373333pt;}
.y8c{bottom:797.733333pt;}
.y7{bottom:799.093333pt;}
.y1ac{bottom:801.653333pt;}
.y14c{bottom:801.973333pt;}
.yd4{bottom:802.773333pt;}
.y164{bottom:806.053333pt;}
.y64{bottom:809.653333pt;}
.y36{bottom:809.973333pt;}
.y8b{bottom:813.333333pt;}
.y6{bottom:815.093333pt;}
.y1ab{bottom:817.253333pt;}
.y14b{bottom:817.653333pt;}
.yd3{bottom:818.373333pt;}
.y163{bottom:821.733333pt;}
.y63{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.y8a{bottom:828.933333pt;}
.y1c5{bottom:833.253333pt;}
.yd2{bottom:834.053333pt;}
.y162{bottom:837.333333pt;}
.y62{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y1c4{bottom:848.853333pt;}
.yd1{bottom:849.653333pt;}
.yf4{bottom:850.853333pt;}
.y89{bottom:852.613333pt;}
.y161{bottom:852.933333pt;}
.y1aa{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.yb3{bottom:863.893333pt;}
.y61{bottom:864.533333pt;}
.yd0{bottom:865.253333pt;}
.y121{bottom:866.026866pt;}
.y116{bottom:866.026889pt;}
.y10d{bottom:866.026916pt;}
.y160{bottom:868.613333pt;}
.y32{bottom:872.533333pt;}
.y14a{bottom:872.853333pt;}
.yb1{bottom:877.173333pt;}
.y4{bottom:877.893333pt;}
.y1a9{bottom:880.133333pt;}
.ycf{bottom:880.933333pt;}
.y15f{bottom:884.213333pt;}
.y88{bottom:884.533333pt;}
.y31{bottom:888.133333pt;}
.y149{bottom:888.533333pt;}
.yf1{bottom:890.773333pt;}
.y1a8{bottom:895.813333pt;}
.y60{bottom:896.133333pt;}
.yce{bottom:896.533333pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.y148{bottom:904.160000pt;}
.y5f{bottom:911.840000pt;}
.ycd{bottom:912.240000pt;}
.yb0{bottom:914.480000pt;}
.y15e{bottom:915.520000pt;}
.y2f{bottom:919.440000pt;}
.y147{bottom:919.840000pt;}
.y5e{bottom:927.440000pt;}
.yf0{bottom:930.720000pt;}
.y18b{bottom:935.040000pt;}
.y146{bottom:935.440000pt;}
.ycc{bottom:935.840000pt;}
.y5d{bottom:943.040000pt;}
.y15d{bottom:947.120000pt;}
.y18a{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.yaf{bottom:951.680000pt;}
.y5c{bottom:958.720000pt;}
.y15c{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.ycb{bottom:966.800000pt;}
.yef{bottom:970.640000pt;}
.y5b{bottom:974.320000pt;}
.yca{bottom:977.680000pt;}
.y15b{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.yae{bottom:988.960000pt;}
.y5a{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.yc9{bottom:1001.920000pt;}
.y15a{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h13{height:23.600000pt;}
.h12{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h10{height:36.560000pt;}
.hd{height:36.586667pt;}
.h11{height:36.640000pt;}
.h14{height:37.032187pt;}
.hf{height:38.880000pt;}
.h1a{height:39.280000pt;}
.h1b{height:39.306667pt;}
.h21{height:42.151152pt;}
.h22{height:42.263555pt;}
.he{height:45.246562pt;}
.h23{height:45.706977pt;}
.h8{height:46.499062pt;}
.h28{height:46.647275pt;}
.h24{height:46.759678pt;}
.h9{height:49.581562pt;}
.h2c{height:50.145714pt;}
.h7{height:50.403750pt;}
.h5{height:50.954062pt;}
.h18{height:54.880000pt;}
.h16{height:54.906667pt;}
.ha{height:54.927899pt;}
.h19{height:54.960000pt;}
.h1f{height:55.456597pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1e{height:65.755797pt;}
.h15{height:70.560000pt;}
.h1c{height:86.160000pt;}
.h17{height:101.760000pt;}
.h27{height:148.608252pt;}
.h2a{height:151.150977pt;}
.h29{height:151.150981pt;}
.h25{height:157.084009pt;}
.h26{height:157.649056pt;}
.h20{height:158.213084pt;}
.h1d{height:342.161581pt;}
.h2b{height:532.471304pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:33.520000pt;}
.w9{width:36.560000pt;}
.wa{width:36.586667pt;}
.w3{width:70.720000pt;}
.w12{width:77.360000pt;}
.w11{width:77.760000pt;}
.w10{width:81.920000pt;}
.wd{width:82.480000pt;}
.wf{width:84.906667pt;}
.w6{width:104.400000pt;}
.we{width:113.120000pt;}
.w5{width:115.706667pt;}
.w17{width:118.560000pt;}
.w16{width:122.160000pt;}
.wc{width:126.666667pt;}
.w7{width:130.640000pt;}
.w13{width:134.186667pt;}
.w1d{width:139.466614pt;}
.w1b{width:139.466623pt;}
.w15{width:142.266667pt;}
.w14{width:151.920000pt;}
.w19{width:156.132176pt;}
.w1c{width:156.132184pt;}
.w1a{width:175.233472pt;}
.w8{width:198.906667pt;}
.w4{width:247.386667pt;}
.w1e{width:446.358401pt;}
.w18{width:478.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x38{left:25.302259pt;}
.x36{left:31.918499pt;}
.x3b{left:37.291328pt;}
.x35{left:39.780475pt;}
.x3a{left:45.180988pt;}
.x20{left:50.320000pt;}
.x37{left:52.044050pt;}
.x3c{left:57.442255pt;}
.x1{left:60.480000pt;}
.x30{left:63.279988pt;}
.xf{left:66.319988pt;}
.x32{left:68.799988pt;}
.x31{left:70.799988pt;}
.xa{left:72.639988pt;}
.x3d{left:75.380839pt;}
.xb{left:80.959988pt;}
.x3e{left:82.380036pt;}
.x21{left:84.560000pt;}
.xe{left:91.439988pt;}
.x43{left:98.879988pt;}
.x5{left:132.560000pt;}
.x34{left:156.328264pt;}
.x2c{left:158.026655pt;}
.x41{left:173.973333pt;}
.x2{left:180.266655pt;}
.x12{left:184.266655pt;}
.x2e{left:193.706655pt;}
.x27{left:195.946667pt;}
.x22{left:211.866667pt;}
.x42{left:226.091068pt;}
.x40{left:248.106655pt;}
.x13{left:260.666667pt;}
.x23{left:295.066667pt;}
.x14{left:297.866667pt;}
.x1f{left:313.386655pt;}
.x39{left:317.842707pt;}
.xc{left:333.386655pt;}
.x15{left:335.066667pt;}
.x28{left:348.586667pt;}
.x16{left:372.266667pt;}
.x10{left:373.706655pt;}
.x33{left:375.306655pt;}
.x6{left:380.666667pt;}
.x17{left:409.466667pt;}
.x18{left:446.666667pt;}
.x19{left:483.893333pt;}
.x29{left:491.493333pt;}
.x24{left:494.373333pt;}
.x7{left:497.093333pt;}
.x1a{left:521.093333pt;}
.x1b{left:558.293333pt;}
.x25{left:577.013333pt;}
.x1c{left:595.493333pt;}
.x8{left:602.213333pt;}
.x2a{left:614.293333pt;}
.x3f{left:622.053322pt;}
.x1d{left:632.693333pt;}
.x2d{left:638.053322pt;}
.x26{left:655.493333pt;}
.x2b{left:660.053322pt;}
.x2f{left:661.013322pt;}
.x9{left:666.053322pt;}
.x1e{left:669.893333pt;}
.xd{left:671.013322pt;}
.x3{left:704.053322pt;}
.x11{left:718.053322pt;}
}




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