
    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_c0d4db62f2d1eceedce6243f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_98adfbee4979fb8b6219635c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_853680434a0e6d55057e202c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_4bf2ed1fcca2d5a6570e3898.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_cc1e461a92720b43d4641184.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_d201aeb5e78bf8417c4b5924.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.407227;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_eaece16aa3211406715300c1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_be6cd7f86daade935db299c2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f73746cf272d4a9173a1cc4b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.741699;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.039977px;}
.v2{vertical-align:26.640059px;}
.ls7{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.058311px;}
.lsf{letter-spacing:0.144183px;}
.ls12{letter-spacing:0.144187px;}
.ls2e{letter-spacing:0.232096px;}
.ls0{letter-spacing:0.282370px;}
.ls1{letter-spacing:0.282505px;}
.ls23{letter-spacing:0.422502px;}
.lse{letter-spacing:0.479362px;}
.ls10{letter-spacing:0.684221px;}
.ls22{letter-spacing:0.864201px;}
.ls37{letter-spacing:1.199376px;}
.ls33{letter-spacing:1.919259px;}
.ls5{letter-spacing:1.919394px;}
.ls4{letter-spacing:1.919399px;}
.ls34{letter-spacing:2.639273px;}
.ls2{letter-spacing:2.639412px;}
.ls13{letter-spacing:3.359425px;}
.ls6{letter-spacing:3.359430px;}
.ls20{letter-spacing:4.079309px;}
.ls11{letter-spacing:4.079376px;}
.ls15{letter-spacing:4.799187px;}
.ls39{letter-spacing:5.519340px;}
.ls3a{letter-spacing:6.239219px;}
.ls1d{letter-spacing:6.239358px;}
.ls1f{letter-spacing:6.239497px;}
.ls1e{letter-spacing:6.959371px;}
.ls16{letter-spacing:7.679255px;}
.ls1c{letter-spacing:8.399273px;}
.ls14{letter-spacing:8.399336px;}
.ls26{letter-spacing:8.399340px;}
.ls3b{letter-spacing:8.399403px;}
.ls25{letter-spacing:9.119353px;}
.ls1b{letter-spacing:9.839299px;}
.ls36{letter-spacing:11.279336px;}
.ls1a{letter-spacing:12.719367px;}
.ls32{letter-spacing:12.719506px;}
.ls35{letter-spacing:14.159398px;}
.ls8{letter-spacing:14.159538px;}
.ls17{letter-spacing:14.159542px;}
.ls19{letter-spacing:15.599300px;}
.ls18{letter-spacing:17.759345px;}
.ls24{letter-spacing:17.759484px;}
.ls21{letter-spacing:18.479362px;}
.ls2c{letter-spacing:20.639277px;}
.ls27{letter-spacing:20.639340px;}
.ls28{letter-spacing:20.639344px;}
.ls2a{letter-spacing:20.639412px;}
.ls2d{letter-spacing:21.359156px;}
.ls2b{letter-spacing:21.359290px;}
.ls38{letter-spacing:21.359358px;}
.ls29{letter-spacing:21.359430px;}
.ls3{letter-spacing:23.519340px;}
.lsc{letter-spacing:32.159264px;}
.lsb{letter-spacing:32.159331px;}
.ls9{letter-spacing:32.159367px;}
.lsd{letter-spacing:32.159398px;}
.lsa{letter-spacing:32.879349px;}
.ls30{letter-spacing:33.147170px;}
.ls2f{letter-spacing:53.307152px;}
.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;}
}
.ws5{word-spacing:-19.132536px;}
.ws17{word-spacing:-17.578948px;}
.ws1{word-spacing:-17.520638px;}
.ws0{word-spacing:-16.119000px;}
.ws3{word-spacing:-14.571576px;}
.ws18{word-spacing:-14.542200px;}
.wse{word-spacing:-11.738813px;}
.ws16{word-spacing:-1.634363px;}
.wsa{word-spacing:-1.443436px;}
.wsf{word-spacing:-1.440809px;}
.ws15{word-spacing:-1.347195px;}
.ws4{word-spacing:-1.246213px;}
.wsc{word-spacing:-1.246150px;}
.ws9{word-spacing:-1.238403px;}
.wsb{word-spacing:-1.132536px;}
.ws10{word-spacing:-1.014492px;}
.wsd{word-spacing:-0.952062px;}
.ws6{word-spacing:-0.911073px;}
.ws13{word-spacing:-0.904463px;}
.ws14{word-spacing:-0.827333px;}
.ws7{word-spacing:-0.518525px;}
.ws8{word-spacing:-0.210248px;}
.ws12{word-spacing:-0.083746px;}
.ws2{word-spacing:0.000000px;}
.ws11{word-spacing:3.766727px;}
._17{margin-left:-23.469148px;}
._1a{margin-left:-22.390729px;}
._1c{margin-left:-18.950018px;}
._15{margin-left:-4.307189px;}
._10{margin-left:-2.253318px;}
._2{margin-left:-1.031616px;}
._3{width:1.258038px;}
._4{width:3.214216px;}
._5{width:4.282021px;}
._7{width:5.587374px;}
._b{width:7.276814px;}
._8{width:8.281158px;}
._9{width:9.404040px;}
._16{width:10.827916px;}
._0{width:12.046182px;}
._1{width:13.064820px;}
._a{width:14.574088px;}
._11{width:16.236703px;}
._12{width:19.187135px;}
._13{width:21.157702px;}
._d{width:22.276122px;}
._c{width:24.014224px;}
._6{width:25.451190px;}
._1e{width:27.343419px;}
._1f{width:28.630638px;}
._14{width:32.575564px;}
._20{width:33.757341px;}
._21{width:36.561190px;}
._1d{width:81.578910px;}
._18{width:106.745676px;}
._1b{width:136.229253px;}
._19{width:145.844609px;}
._f{width:211.382452px;}
._e{width:339.237157px;}
.fc5{color:rgb(112,48,160);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc6{color:rgb(38,38,38);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.606595px;}
.fs7{font-size:17.520660px;}
.fs6{font-size:40.647960px;}
.fs3{font-size:46.955250px;}
.fs8{font-size:58.168800px;}
.fs0{font-size:64.476000px;}
.fs2{font-size:70.082550px;}
.fs1{font-size:81.996750px;}
.fs4{font-size:93.209855px;}
.y0{bottom:0.000000px;}
.yd7{bottom:3.239937px;}
.yda{bottom:3.240006px;}
.y5{bottom:3.420044px;}
.ye1{bottom:3.600014px;}
.y6a{bottom:3.779984px;}
.y18{bottom:3.780018px;}
.y73{bottom:4.319962px;}
.y36{bottom:4.320030px;}
.y4{bottom:73.620072px;}
.y3{bottom:95.580093px;}
.y37{bottom:106.740005px;}
.y1{bottom:109.800110px;}
.y2{bottom:114.120072px;}
.y35{bottom:116.280052px;}
.y32{bottom:138.780052px;}
.ybf{bottom:149.940033px;}
.y31{bottom:154.080093px;}
.y94{bottom:155.340088px;}
.y56{bottom:159.660049px;}
.y30{bottom:173.340088px;}
.yd4{bottom:176.400055px;}
.y79{bottom:184.680039px;}
.ybe{bottom:185.220085px;}
.yc1{bottom:187.920043px;}
.y2f{bottom:188.820099px;}
.yb3{bottom:189.180039px;}
.y55{bottom:189.900055px;}
.y93{bottom:190.440033px;}
.ye0{bottom:194.040047px;}
.ydf{bottom:197.640060px;}
.y2e{bottom:209.880066px;}
.yde{bottom:214.380066px;}
.y78{bottom:214.740074px;}
.ybd{bottom:218.340088px;}
.yb2{bottom:219.600083px;}
.y54{bottom:222.120072px;}
.y92{bottom:223.200096px;}
.ydc{bottom:228.060036px;}
.ydd{bottom:231.300041px;}
.y2d{bottom:235.620072px;}
.y77{bottom:242.280052px;}
.yd9{bottom:245.880066px;}
.ybc{bottom:248.400055px;}
.ydb{bottom:249.120072px;}
.yb1{bottom:249.660049px;}
.y91{bottom:253.440033px;}
.y53{bottom:255.060036px;}
.y2c{bottom:261.180039px;}
.y76{bottom:263.700096px;}
.yd8{bottom:266.940033px;}
.ybb{bottom:278.820099px;}
.yb0{bottom:279.900055px;}
.y90{bottom:283.680039px;}
.yd6{bottom:284.760064px;}
.y52{bottom:285.300041px;}
.y75{bottom:286.380066px;}
.y2b{bottom:286.740074px;}
.yd5{bottom:298.620072px;}
.y72{bottom:303.480079px;}
.y74{bottom:307.800041px;}
.yba{bottom:308.880066px;}
.yaf{bottom:310.140060px;}
.y2a{bottom:312.300041px;}
.y8f{bottom:313.920043px;}
.y51{bottom:315.540047px;}
.y71{bottom:331.200096px;}
.y29{bottom:338.040047px;}
.yb9{bottom:339.120072px;}
.yae{bottom:340.380066px;}
.y8e{bottom:344.160049px;}
.y50{bottom:347.760064px;}
.y70{bottom:353.880066px;}
.y28{bottom:363.600083px;}
.yb8{bottom:369.360077px;}
.yad{bottom:370.620072px;}
.y6f{bottom:374.040047px;}
.y8d{bottom:374.400055px;}
.y4f{bottom:380.520058px;}
.y27{bottom:389.160049px;}
.y6e{bottom:391.140060px;}
.y6d{bottom:395.460091px;}
.yb7{bottom:399.600083px;}
.yac{bottom:400.860077px;}
.yd3{bottom:401.760064px;}
.y8c{bottom:404.460091px;}
.y4e{bottom:410.760064px;}
.y26{bottom:414.900055px;}
.y6c{bottom:418.140060px;}
.yb6{bottom:429.840088px;}
.yab{bottom:430.920043px;}
.y8b{bottom:434.880066px;}
.yd2{bottom:437.040047px;}
.y6b{bottom:438.300041px;}
.y25{bottom:440.460091px;}
.y4d{bottom:441.000068px;}
.y69{bottom:455.400055px;}
.yb5{bottom:460.080093px;}
.yaa{bottom:461.340088px;}
.y8a{bottom:464.940033px;}
.y24{bottom:466.020058px;}
.yd1{bottom:472.320099px;}
.y4c{bottom:473.400055px;}
.y68{bottom:490.140060px;}
.ya9{bottom:491.400055px;}
.y23{bottom:491.580093px;}
.y89{bottom:495.360077px;}
.yd0{bottom:507.600083px;}
.y4b{bottom:508.320099px;}
.y22{bottom:517.140060px;}
.y67{bottom:520.560036px;}
.ya8{bottom:521.820099px;}
.y88{bottom:525.420043px;}
.y4a{bottom:541.260064px;}
.y21{bottom:542.700096px;}
.y66{bottom:550.620072px;}
.ya7{bottom:551.700096px;}
.y87{bottom:555.660049px;}
.y20{bottom:568.440033px;}
.y49{bottom:571.320099px;}
.ycf{bottom:578.160049px;}
.y65{bottom:581.040047px;}
.ya6{bottom:583.380066px;}
.y86{bottom:585.900055px;}
.y1f{bottom:594.180039px;}
.y48{bottom:601.560036px;}
.y64{bottom:611.100083px;}
.yce{bottom:613.440033px;}
.ya5{bottom:613.620072px;}
.y85{bottom:616.140060px;}
.y1e{bottom:619.740074px;}
.y47{bottom:631.800041px;}
.y63{bottom:641.160049px;}
.ya4{bottom:643.860077px;}
.y1d{bottom:645.300041px;}
.y84{bottom:646.380066px;}
.ycd{bottom:648.540047px;}
.y46{bottom:664.200096px;}
.y1c{bottom:670.860077px;}
.y62{bottom:671.580093px;}
.ya3{bottom:673.920043px;}
.y83{bottom:676.620072px;}
.ycc{bottom:683.820099px;}
.y1b{bottom:696.420078px;}
.y45{bottom:696.960056px;}
.y61{bottom:701.640060px;}
.ya2{bottom:704.340054px;}
.y82{bottom:706.680073px;}
.ycb{bottom:719.100083px;}
.y1a{bottom:721.980079px;}
.y44{bottom:727.200061px;}
.y60{bottom:732.060070px;}
.yc0{bottom:734.220051px;}
.ya1{bottom:734.400055px;}
.y81{bottom:737.100083px;}
.y19{bottom:742.320065px;}
.yca{bottom:754.380066px;}
.y17{bottom:755.820065px;}
.y43{bottom:757.440067px;}
.y5f{bottom:762.120072px;}
.ya0{bottom:764.820065px;}
.y80{bottom:767.160049px;}
.y16{bottom:779.760064px;}
.yc9{bottom:789.660049px;}
.y42{bottom:789.840054px;}
.y5e{bottom:792.360077px;}
.yb4{bottom:794.700061px;}
.y9f{bottom:794.880066px;}
.y7f{bottom:797.580059px;}
.y15{bottom:799.920078px;}
.y14{bottom:820.080059px;}
.y41{bottom:822.600083px;}
.yc8{bottom:824.760064px;}
.y9e{bottom:825.120072px;}
.y7e{bottom:827.640060px;}
.y13{bottom:840.240074px;}
.y40{bottom:852.840054px;}
.y9d{bottom:855.360077px;}
.y7d{bottom:857.880066px;}
.yc7{bottom:860.040081px;}
.y12{bottom:860.400055px;}
.y11{bottom:880.560070px;}
.y3f{bottom:883.080059px;}
.y9c{bottom:885.420078px;}
.y7c{bottom:888.120072px;}
.yc6{bottom:895.500068px;}
.y10{bottom:900.720051px;}
.y3e{bottom:913.320065px;}
.y9b{bottom:916.920078px;}
.y7b{bottom:918.360077px;}
.yf{bottom:922.140060px;}
.yc5{bottom:930.600083px;}
.y3d{bottom:943.380066px;}
.y5d{bottom:945.720051px;}
.y9a{bottom:947.340054px;}
.y7a{bottom:948.600083px;}
.ye{bottom:948.960056px;}
.yc4{bottom:965.880066px;}
.y3c{bottom:973.800076px;}
.yd{bottom:975.780069px;}
.y99{bottom:977.400072px;}
.y5c{bottom:978.840070px;}
.yc{bottom:997.560070px;}
.yc3{bottom:1001.160067px;}
.y3b{bottom:1003.860060px;}
.y98{bottom:1007.820065px;}
.y5b{bottom:1008.900072px;}
.yb{bottom:1014.840070px;}
.y3a{bottom:1034.280069px;}
.ya{bottom:1035.000068px;}
.yc2{bottom:1036.440067px;}
.y97{bottom:1037.880066px;}
.y5a{bottom:1039.320065px;}
.y9{bottom:1054.980063px;}
.y39{bottom:1064.340070px;}
.y96{bottom:1068.120072px;}
.y59{bottom:1069.380066px;}
.y8{bottom:1075.140060px;}
.y7{bottom:1091.520058px;}
.y38{bottom:1094.580059px;}
.y95{bottom:1098.360060px;}
.y58{bottom:1099.800058px;}
.y6{bottom:1126.980063px;}
.y57{bottom:1129.860068px;}
.y34{bottom:1161.360068px;}
.y33{bottom:1166.580068px;}
.hf{height:3.914761px;}
.h12{height:5.576481px;}
.h1e{height:16.379997px;}
.h21{height:16.379998px;}
.h14{height:17.426555px;}
.h5{height:18.000000px;}
.h22{height:19.080025px;}
.h13{height:19.259994px;}
.he{height:19.439999px;}
.h19{height:19.440034px;}
.h1a{height:23.220017px;}
.h10{height:28.382121px;}
.h9{height:32.786136px;}
.h20{height:41.041951px;}
.h1f{height:42.348477px;}
.h23{height:42.462088px;}
.h4{height:45.019863px;}
.h1d{height:47.205345px;}
.h7{height:48.934593px;}
.h8{height:49.447893px;}
.h1b{height:51.022013px;}
.h1c{height:51.158893px;}
.h3{height:53.142328px;}
.hc{height:56.170024px;}
.h11{height:56.873632px;}
.h15{height:57.253590px;}
.hd{height:57.763352px;}
.h6{height:57.854152px;}
.h18{height:59.426060px;}
.h17{height:59.426195px;}
.h2{height:64.129693px;}
.hb{height:65.765742px;}
.h16{height:75.626189px;}
.ha{height:75.641982px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w7{width:4.500000px;}
.w1b{width:7.200028px;}
.w15{width:7.560001px;}
.w4{width:8.099980px;}
.wc{width:8.100013px;}
.wf{width:8.819997px;}
.w9{width:8.820030px;}
.w6{width:9.179971px;}
.w1a{width:10.439999px;}
.w14{width:11.519989px;}
.w18{width:15.120003px;}
.w3{width:19.980010px;}
.w13{width:33.659981px;}
.w17{width:35.099946px;}
.w16{width:38.519989px;}
.w19{width:38.520006px;}
.w12{width:46.979978px;}
.w8{width:52.559966px;}
.w11{width:58.500000px;}
.we{width:62.459997px;}
.wd{width:68.580003px;}
.w10{width:85.500017px;}
.wa{width:104.759996px;}
.w2{width:228.240006px;}
.wb{width:237.060001px;}
.w5{width:239.039979px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x32{left:-9.180004px;}
.x0{left:0.000000px;}
.x19{left:57.960000px;}
.x1{left:105.120002px;}
.xe{left:115.200002px;}
.xd{left:117.719999px;}
.x9{left:124.200002px;}
.x10{left:126.719999px;}
.x2e{left:131.400003px;}
.xa{left:141.840002px;}
.x2f{left:157.680005px;}
.x1a{left:188.819996px;}
.x16{left:209.699993px;}
.x1b{left:216.539996px;}
.x2b{left:254.699993px;}
.x2c{left:259.199993px;}
.x2d{left:266.580008px;}
.x11{left:294.300007px;}
.x1c{left:302.040012px;}
.x22{left:319.680005px;}
.xf{left:328.860008px;}
.x23{left:330.839985px;}
.x2{left:333.180005px;}
.x3{left:353.160015px;}
.x1d{left:360.360008px;}
.x1e{left:364.860008px;}
.xb{left:395.459988px;}
.x1f{left:411.660015px;}
.x20{left:416.160015px;}
.xc{left:446.759994px;}
.x21{left:449.819996px;}
.x24{left:462.959988px;}
.x25{left:470.339985px;}
.x31{left:473.399987px;}
.x12{left:533.160015px;}
.x13{left:542.160015px;}
.x14{left:546.480011px;}
.x7{left:595.620002px;}
.x15{left:599.039978px;}
.x8{left:602.820030px;}
.x26{left:621.899987px;}
.x4{left:659.700027px;}
.x27{left:664.200027px;}
.x6{left:668.700027px;}
.x30{left:672.480011px;}
.x28{left:698.039978px;}
.x29{left:702.360008px;}
.x2a{left:717.480011px;}
.x33{left:754.019989px;}
.x17{left:757.799973px;}
.x18{left:765.720017px;}
.x5{left:788.399987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.479980pt;}
.v2{vertical-align:23.680052pt;}
.ls7{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.051832pt;}
.lsf{letter-spacing:0.128162pt;}
.ls12{letter-spacing:0.128166pt;}
.ls2e{letter-spacing:0.206308pt;}
.ls0{letter-spacing:0.250996pt;}
.ls1{letter-spacing:0.251116pt;}
.ls23{letter-spacing:0.375557pt;}
.lse{letter-spacing:0.426100pt;}
.ls10{letter-spacing:0.608197pt;}
.ls22{letter-spacing:0.768178pt;}
.ls37{letter-spacing:1.066112pt;}
.ls33{letter-spacing:1.706008pt;}
.ls5{letter-spacing:1.706128pt;}
.ls4{letter-spacing:1.706132pt;}
.ls34{letter-spacing:2.346020pt;}
.ls2{letter-spacing:2.346144pt;}
.ls13{letter-spacing:2.986156pt;}
.ls6{letter-spacing:2.986160pt;}
.ls20{letter-spacing:3.626052pt;}
.ls11{letter-spacing:3.626112pt;}
.ls15{letter-spacing:4.265944pt;}
.ls39{letter-spacing:4.906080pt;}
.ls3a{letter-spacing:5.545972pt;}
.ls1d{letter-spacing:5.546096pt;}
.ls1f{letter-spacing:5.546220pt;}
.ls1e{letter-spacing:6.186108pt;}
.ls16{letter-spacing:6.826004pt;}
.ls1c{letter-spacing:7.466020pt;}
.ls14{letter-spacing:7.466076pt;}
.ls26{letter-spacing:7.466080pt;}
.ls3b{letter-spacing:7.466136pt;}
.ls25{letter-spacing:8.106092pt;}
.ls1b{letter-spacing:8.746044pt;}
.ls36{letter-spacing:10.026076pt;}
.ls1a{letter-spacing:11.306104pt;}
.ls32{letter-spacing:11.306228pt;}
.ls35{letter-spacing:12.586132pt;}
.ls8{letter-spacing:12.586256pt;}
.ls17{letter-spacing:12.586260pt;}
.ls19{letter-spacing:13.866044pt;}
.ls18{letter-spacing:15.786084pt;}
.ls24{letter-spacing:15.786208pt;}
.ls21{letter-spacing:16.426100pt;}
.ls2c{letter-spacing:18.346024pt;}
.ls27{letter-spacing:18.346080pt;}
.ls28{letter-spacing:18.346084pt;}
.ls2a{letter-spacing:18.346144pt;}
.ls2d{letter-spacing:18.985916pt;}
.ls2b{letter-spacing:18.986036pt;}
.ls38{letter-spacing:18.986096pt;}
.ls29{letter-spacing:18.986160pt;}
.ls3{letter-spacing:20.906080pt;}
.lsc{letter-spacing:28.586012pt;}
.lsb{letter-spacing:28.586072pt;}
.ls9{letter-spacing:28.586104pt;}
.lsd{letter-spacing:28.586132pt;}
.lsa{letter-spacing:29.226088pt;}
.ls30{letter-spacing:29.464151pt;}
.ls2f{letter-spacing:47.384135pt;}
.ws5{word-spacing:-17.006699pt;}
.ws17{word-spacing:-15.625732pt;}
.ws1{word-spacing:-15.573900pt;}
.ws0{word-spacing:-14.328000pt;}
.ws3{word-spacing:-12.952512pt;}
.ws18{word-spacing:-12.926400pt;}
.wse{word-spacing:-10.434500pt;}
.ws16{word-spacing:-1.452767pt;}
.wsa{word-spacing:-1.283054pt;}
.wsf{word-spacing:-1.280719pt;}
.ws15{word-spacing:-1.197506pt;}
.ws4{word-spacing:-1.107745pt;}
.wsc{word-spacing:-1.107689pt;}
.ws9{word-spacing:-1.100803pt;}
.wsb{word-spacing:-1.006699pt;}
.ws10{word-spacing:-0.901771pt;}
.wsd{word-spacing:-0.846277pt;}
.ws6{word-spacing:-0.809843pt;}
.ws13{word-spacing:-0.803967pt;}
.ws14{word-spacing:-0.735407pt;}
.ws7{word-spacing:-0.460911pt;}
.ws8{word-spacing:-0.186887pt;}
.ws12{word-spacing:-0.074441pt;}
.ws2{word-spacing:0.000000pt;}
.ws11{word-spacing:3.348202pt;}
._17{margin-left:-20.861465pt;}
._1a{margin-left:-19.902870pt;}
._1c{margin-left:-16.844460pt;}
._15{margin-left:-3.828613pt;}
._10{margin-left:-2.002950pt;}
._2{margin-left:-0.916992pt;}
._3{width:1.118256pt;}
._4{width:2.857081pt;}
._5{width:3.806241pt;}
._7{width:4.966554pt;}
._b{width:6.468279pt;}
._8{width:7.361029pt;}
._9{width:8.359146pt;}
._16{width:9.624814pt;}
._0{width:10.707717pt;}
._1{width:11.613173pt;}
._a{width:12.954745pt;}
._11{width:14.432625pt;}
._12{width:17.055231pt;}
._13{width:18.806846pt;}
._d{width:19.800997pt;}
._c{width:21.345977pt;}
._6{width:22.623280pt;}
._1e{width:24.305261pt;}
._1f{width:25.449456pt;}
._14{width:28.956057pt;}
._20{width:30.006525pt;}
._21{width:32.498836pt;}
._1d{width:72.514587pt;}
._18{width:94.885046pt;}
._1b{width:121.092669pt;}
._19{width:129.639652pt;}
._f{width:187.895513pt;}
._e{width:301.544139pt;}
.fs5{font-size:4.983640pt;}
.fs7{font-size:15.573920pt;}
.fs6{font-size:36.131520pt;}
.fs3{font-size:41.738000pt;}
.fs8{font-size:51.705600pt;}
.fs0{font-size:57.312000pt;}
.fs2{font-size:62.295600pt;}
.fs1{font-size:72.886000pt;}
.fs4{font-size:82.853204pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:2.879944pt;}
.yda{bottom:2.880005pt;}
.y5{bottom:3.040039pt;}
.ye1{bottom:3.200012pt;}
.y6a{bottom:3.359986pt;}
.y18{bottom:3.360016pt;}
.y73{bottom:3.839966pt;}
.y36{bottom:3.840027pt;}
.y4{bottom:65.440064pt;}
.y3{bottom:84.960083pt;}
.y37{bottom:94.880005pt;}
.y1{bottom:97.600098pt;}
.y2{bottom:101.440064pt;}
.y35{bottom:103.360047pt;}
.y32{bottom:123.360047pt;}
.ybf{bottom:133.280030pt;}
.y31{bottom:136.960083pt;}
.y94{bottom:138.080079pt;}
.y56{bottom:141.920044pt;}
.y30{bottom:154.080079pt;}
.yd4{bottom:156.800049pt;}
.y79{bottom:164.160035pt;}
.ybe{bottom:164.640076pt;}
.yc1{bottom:167.040039pt;}
.y2f{bottom:167.840088pt;}
.yb3{bottom:168.160035pt;}
.y55{bottom:168.800049pt;}
.y93{bottom:169.280030pt;}
.ye0{bottom:172.480042pt;}
.ydf{bottom:175.680054pt;}
.y2e{bottom:186.560059pt;}
.yde{bottom:190.560059pt;}
.y78{bottom:190.880066pt;}
.ybd{bottom:194.080079pt;}
.yb2{bottom:195.200074pt;}
.y54{bottom:197.440064pt;}
.y92{bottom:198.400086pt;}
.ydc{bottom:202.720032pt;}
.ydd{bottom:205.600037pt;}
.y2d{bottom:209.440064pt;}
.y77{bottom:215.360047pt;}
.yd9{bottom:218.560059pt;}
.ybc{bottom:220.800049pt;}
.ydb{bottom:221.440064pt;}
.yb1{bottom:221.920044pt;}
.y91{bottom:225.280030pt;}
.y53{bottom:226.720032pt;}
.y2c{bottom:232.160035pt;}
.y76{bottom:234.400086pt;}
.yd8{bottom:237.280030pt;}
.ybb{bottom:247.840088pt;}
.yb0{bottom:248.800049pt;}
.y90{bottom:252.160035pt;}
.yd6{bottom:253.120057pt;}
.y52{bottom:253.600037pt;}
.y75{bottom:254.560059pt;}
.y2b{bottom:254.880066pt;}
.yd5{bottom:265.440064pt;}
.y72{bottom:269.760071pt;}
.y74{bottom:273.600037pt;}
.yba{bottom:274.560059pt;}
.yaf{bottom:275.680054pt;}
.y2a{bottom:277.600037pt;}
.y8f{bottom:279.040039pt;}
.y51{bottom:280.480042pt;}
.y71{bottom:294.400086pt;}
.y29{bottom:300.480042pt;}
.yb9{bottom:301.440064pt;}
.yae{bottom:302.560059pt;}
.y8e{bottom:305.920044pt;}
.y50{bottom:309.120057pt;}
.y70{bottom:314.560059pt;}
.y28{bottom:323.200074pt;}
.yb8{bottom:328.320069pt;}
.yad{bottom:329.440064pt;}
.y6f{bottom:332.480042pt;}
.y8d{bottom:332.800049pt;}
.y4f{bottom:338.240052pt;}
.y27{bottom:345.920044pt;}
.y6e{bottom:347.680054pt;}
.y6d{bottom:351.520081pt;}
.yb7{bottom:355.200074pt;}
.yac{bottom:356.320069pt;}
.yd3{bottom:357.120057pt;}
.y8c{bottom:359.520081pt;}
.y4e{bottom:365.120057pt;}
.y26{bottom:368.800049pt;}
.y6c{bottom:371.680054pt;}
.yb6{bottom:382.080079pt;}
.yab{bottom:383.040039pt;}
.y8b{bottom:386.560059pt;}
.yd2{bottom:388.480042pt;}
.y6b{bottom:389.600037pt;}
.y25{bottom:391.520081pt;}
.y4d{bottom:392.000061pt;}
.y69{bottom:404.800049pt;}
.yb5{bottom:408.960083pt;}
.yaa{bottom:410.080079pt;}
.y8a{bottom:413.280030pt;}
.y24{bottom:414.240052pt;}
.yd1{bottom:419.840088pt;}
.y4c{bottom:420.800049pt;}
.y68{bottom:435.680054pt;}
.ya9{bottom:436.800049pt;}
.y23{bottom:436.960083pt;}
.y89{bottom:440.320069pt;}
.yd0{bottom:451.200074pt;}
.y4b{bottom:451.840088pt;}
.y22{bottom:459.680054pt;}
.y67{bottom:462.720032pt;}
.ya8{bottom:463.840088pt;}
.y88{bottom:467.040039pt;}
.y4a{bottom:481.120057pt;}
.y21{bottom:482.400086pt;}
.y66{bottom:489.440064pt;}
.ya7{bottom:490.400086pt;}
.y87{bottom:493.920044pt;}
.y20{bottom:505.280030pt;}
.y49{bottom:507.840088pt;}
.ycf{bottom:513.920044pt;}
.y65{bottom:516.480042pt;}
.ya6{bottom:518.560059pt;}
.y86{bottom:520.800049pt;}
.y1f{bottom:528.160035pt;}
.y48{bottom:534.720032pt;}
.y64{bottom:543.200074pt;}
.yce{bottom:545.280030pt;}
.ya5{bottom:545.440064pt;}
.y85{bottom:547.680054pt;}
.y1e{bottom:550.880066pt;}
.y47{bottom:561.600037pt;}
.y63{bottom:569.920044pt;}
.ya4{bottom:572.320069pt;}
.y1d{bottom:573.600037pt;}
.y84{bottom:574.560059pt;}
.ycd{bottom:576.480042pt;}
.y46{bottom:590.400086pt;}
.y1c{bottom:596.320069pt;}
.y62{bottom:596.960083pt;}
.ya3{bottom:599.040039pt;}
.y83{bottom:601.440064pt;}
.ycc{bottom:607.840088pt;}
.y1b{bottom:619.040070pt;}
.y45{bottom:619.520050pt;}
.y61{bottom:623.680054pt;}
.ya2{bottom:626.080048pt;}
.y82{bottom:628.160065pt;}
.ycb{bottom:639.200074pt;}
.y1a{bottom:641.760071pt;}
.y44{bottom:646.400055pt;}
.y60{bottom:650.720063pt;}
.yc0{bottom:652.640046pt;}
.ya1{bottom:652.800049pt;}
.y81{bottom:655.200074pt;}
.y19{bottom:659.840058pt;}
.yca{bottom:670.560059pt;}
.y17{bottom:671.840058pt;}
.y43{bottom:673.280060pt;}
.y5f{bottom:677.440064pt;}
.ya0{bottom:679.840058pt;}
.y80{bottom:681.920044pt;}
.y16{bottom:693.120057pt;}
.yc9{bottom:701.920044pt;}
.y42{bottom:702.080048pt;}
.y5e{bottom:704.320069pt;}
.yb4{bottom:706.400055pt;}
.y9f{bottom:706.560059pt;}
.y7f{bottom:708.960053pt;}
.y15{bottom:711.040070pt;}
.y14{bottom:728.960053pt;}
.y41{bottom:731.200074pt;}
.yc8{bottom:733.120057pt;}
.y9e{bottom:733.440064pt;}
.y7e{bottom:735.680054pt;}
.y13{bottom:746.880066pt;}
.y40{bottom:758.080048pt;}
.y9d{bottom:760.320069pt;}
.y7d{bottom:762.560059pt;}
.yc7{bottom:764.480072pt;}
.y12{bottom:764.800049pt;}
.y11{bottom:782.720063pt;}
.y3f{bottom:784.960053pt;}
.y9c{bottom:787.040070pt;}
.y7c{bottom:789.440064pt;}
.yc6{bottom:796.000061pt;}
.y10{bottom:800.640046pt;}
.y3e{bottom:811.840058pt;}
.y9b{bottom:815.040070pt;}
.y7b{bottom:816.320069pt;}
.yf{bottom:819.680054pt;}
.yc5{bottom:827.200074pt;}
.y3d{bottom:838.560059pt;}
.y5d{bottom:840.640046pt;}
.y9a{bottom:842.080048pt;}
.y7a{bottom:843.200074pt;}
.ye{bottom:843.520050pt;}
.yc4{bottom:858.560059pt;}
.y3c{bottom:865.600068pt;}
.yd{bottom:867.360062pt;}
.y99{bottom:868.800064pt;}
.y5c{bottom:870.080063pt;}
.yc{bottom:886.720063pt;}
.yc3{bottom:889.920060pt;}
.y3b{bottom:892.320054pt;}
.y98{bottom:895.840058pt;}
.y5b{bottom:896.800064pt;}
.yb{bottom:902.080063pt;}
.y3a{bottom:919.360062pt;}
.ya{bottom:920.000061pt;}
.yc2{bottom:921.280060pt;}
.y97{bottom:922.560059pt;}
.y5a{bottom:923.840058pt;}
.y9{bottom:937.760056pt;}
.y39{bottom:946.080063pt;}
.y96{bottom:949.440064pt;}
.y59{bottom:950.560059pt;}
.y8{bottom:955.680054pt;}
.y7{bottom:970.240052pt;}
.y38{bottom:972.960053pt;}
.y95{bottom:976.320054pt;}
.y58{bottom:977.600052pt;}
.y6{bottom:1001.760056pt;}
.y57{bottom:1004.320061pt;}
.y34{bottom:1032.320061pt;}
.y33{bottom:1036.960061pt;}
.hf{height:3.479788pt;}
.h12{height:4.956872pt;}
.h1e{height:14.559997pt;}
.h21{height:14.559998pt;}
.h14{height:15.490271pt;}
.h5{height:16.000000pt;}
.h22{height:16.960022pt;}
.h13{height:17.119995pt;}
.he{height:17.279999pt;}
.h19{height:17.280030pt;}
.h1a{height:20.640015pt;}
.h10{height:25.228552pt;}
.h9{height:29.143232pt;}
.h20{height:36.481734pt;}
.h1f{height:37.643091pt;}
.h23{height:37.744078pt;}
.h4{height:40.017656pt;}
.h1d{height:41.960306pt;}
.h7{height:43.497416pt;}
.h8{height:43.953683pt;}
.h1b{height:45.352900pt;}
.h1c{height:45.474571pt;}
.h3{height:47.237625pt;}
.hc{height:49.928911pt;}
.h11{height:50.554339pt;}
.h15{height:50.892080pt;}
.hd{height:51.345202pt;}
.h6{height:51.425913pt;}
.h18{height:52.823164pt;}
.h17{height:52.823284pt;}
.h2{height:57.004172pt;}
.hb{height:58.458437pt;}
.h16{height:67.223279pt;}
.ha{height:67.237317pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w7{width:4.000000pt;}
.w1b{width:6.400025pt;}
.w15{width:6.720001pt;}
.w4{width:7.199982pt;}
.wc{width:7.200012pt;}
.wf{width:7.839997pt;}
.w9{width:7.840027pt;}
.w6{width:8.159974pt;}
.w1a{width:9.279999pt;}
.w14{width:10.239990pt;}
.w18{width:13.440003pt;}
.w3{width:17.760009pt;}
.w13{width:29.919983pt;}
.w17{width:31.199952pt;}
.w16{width:34.239990pt;}
.w19{width:34.240005pt;}
.w12{width:41.759980pt;}
.w8{width:46.719970pt;}
.w11{width:52.000000pt;}
.we{width:55.519997pt;}
.wd{width:60.960003pt;}
.w10{width:76.000015pt;}
.wa{width:93.119996pt;}
.w2{width:202.880005pt;}
.wb{width:210.720001pt;}
.w5{width:212.479981pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x32{left:-8.160004pt;}
.x0{left:0.000000pt;}
.x19{left:51.520000pt;}
.x1{left:93.440002pt;}
.xe{left:102.400002pt;}
.xd{left:104.639999pt;}
.x9{left:110.400002pt;}
.x10{left:112.639999pt;}
.x2e{left:116.800003pt;}
.xa{left:126.080002pt;}
.x2f{left:140.160004pt;}
.x1a{left:167.839996pt;}
.x16{left:186.399994pt;}
.x1b{left:192.479996pt;}
.x2b{left:226.399994pt;}
.x2c{left:230.399994pt;}
.x2d{left:236.960007pt;}
.x11{left:261.600006pt;}
.x1c{left:268.480011pt;}
.x22{left:284.160004pt;}
.xf{left:292.320007pt;}
.x23{left:294.079987pt;}
.x2{left:296.160004pt;}
.x3{left:313.920013pt;}
.x1d{left:320.320007pt;}
.x1e{left:324.320007pt;}
.xb{left:351.519989pt;}
.x1f{left:365.920013pt;}
.x20{left:369.920013pt;}
.xc{left:397.119995pt;}
.x21{left:399.839996pt;}
.x24{left:411.519989pt;}
.x25{left:418.079987pt;}
.x31{left:420.799988pt;}
.x12{left:473.920013pt;}
.x13{left:481.920013pt;}
.x14{left:485.760010pt;}
.x7{left:529.440002pt;}
.x15{left:532.479980pt;}
.x8{left:535.840027pt;}
.x26{left:552.799988pt;}
.x4{left:586.400024pt;}
.x27{left:590.400024pt;}
.x6{left:594.400024pt;}
.x30{left:597.760010pt;}
.x28{left:620.479980pt;}
.x29{left:624.320007pt;}
.x2a{left:637.760010pt;}
.x33{left:670.239990pt;}
.x17{left:673.599976pt;}
.x18{left:680.640015pt;}
.x5{left:700.799988pt;}
}




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