
    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_0832639884ad44a2889d1fed.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_cc3892f6c6136a5227706100.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_fe29e9d8dd4e0a287babb65b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_59bf1057aeaaa1998e4b0098.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_39960aa135fc4fdddab887bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_e3099ff8ab39e27e89def0c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_de1552615bbdf8b9519bd1cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000023px;}
.ls2{letter-spacing:64.511718px;}
.ls3{letter-spacing:68.135741px;}
.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;}
}
.ws4f{word-spacing:-48.000002px;}
.ws5b{word-spacing:-39.000002px;}
.ws20{word-spacing:-36.000000px;}
.ws8{word-spacing:-33.996106px;}
.ws3{word-spacing:-33.996091px;}
.ws5c{word-spacing:-33.000001px;}
.ws4e{word-spacing:-24.017610px;}
.ws4d{word-spacing:-24.017545px;}
.ws15{word-spacing:-18.081936px;}
.ws1f{word-spacing:-18.055800px;}
.ws27{word-spacing:-18.012168px;}
.ws10{word-spacing:-18.011232px;}
.wsd{word-spacing:-18.009936px;}
.ws26{word-spacing:-18.001368px;}
.ws5a{word-spacing:-18.000034px;}
.ws2c{word-spacing:-18.000023px;}
.ws39{word-spacing:-18.000022px;}
.ws53{word-spacing:-18.000015px;}
.ws2f{word-spacing:-18.000012px;}
.ws2e{word-spacing:-18.000003px;}
.ws31{word-spacing:-18.000001px;}
.ws25{word-spacing:-18.000000px;}
.ws2d{word-spacing:-17.999998px;}
.ws33{word-spacing:-17.999978px;}
.ws50{word-spacing:-17.999967px;}
.ws2{word-spacing:-15.996128px;}
.ws5{word-spacing:-15.996127px;}
.ws6{word-spacing:-15.996126px;}
.ws1{word-spacing:-15.996117px;}
.ws7{word-spacing:-15.996104px;}
.wsc{word-spacing:-15.996095px;}
.ws0{word-spacing:-15.996083px;}
.ws13{word-spacing:-13.590000px;}
.ws21{word-spacing:-13.580136px;}
.ws22{word-spacing:-13.545936px;}
.ws12{word-spacing:-13.510800px;}
.ws47{word-spacing:-13.500033px;}
.ws3f{word-spacing:-13.500023px;}
.ws46{word-spacing:-13.500022px;}
.ws28{word-spacing:-13.500012px;}
.ws30{word-spacing:-13.500003px;}
.ws2b{word-spacing:-13.500001px;}
.ws3b{word-spacing:-13.499989px;}
.ws14{word-spacing:-13.499438px;}
.ws9{word-spacing:-11.496093px;}
.ws17{word-spacing:-9.080136px;}
.ws11{word-spacing:-9.079632px;}
.ws1a{word-spacing:-9.057168px;}
.wsf{word-spacing:-9.010800px;}
.ws16{word-spacing:-9.010368px;}
.ws1e{word-spacing:-9.009432px;}
.ws4a{word-spacing:-9.000033px;}
.ws34{word-spacing:-9.000023px;}
.ws35{word-spacing:-9.000012px;}
.ws51{word-spacing:-9.000002px;}
.ws32{word-spacing:-9.000000px;}
.ws37{word-spacing:-8.999998px;}
.ws36{word-spacing:-8.999989px;}
.wsa{word-spacing:-6.996093px;}
.wsb{word-spacing:-6.996082px;}
.ws18{word-spacing:-4.554936px;}
.ws1d{word-spacing:-4.511232px;}
.ws19{word-spacing:-4.510800px;}
.ws1b{word-spacing:-4.501838px;}
.ws41{word-spacing:-4.500033px;}
.ws49{word-spacing:-4.500023px;}
.ws38{word-spacing:-4.500012px;}
.ws58{word-spacing:-4.500003px;}
.ws1c{word-spacing:-4.500000px;}
.ws48{word-spacing:-4.499989px;}
.wse{word-spacing:-0.080136px;}
.ws24{word-spacing:-0.034200px;}
.ws3a{word-spacing:-0.000012px;}
.ws54{word-spacing:-0.000002px;}
.ws4{word-spacing:0.000000px;}
.ws23{word-spacing:0.068153px;}
.ws40{word-spacing:4.499966px;}
.ws3c{word-spacing:4.499988px;}
.ws45{word-spacing:4.500000px;}
.ws57{word-spacing:4.500033px;}
.ws3e{word-spacing:8.999988px;}
.ws52{word-spacing:8.999998px;}
.ws3d{word-spacing:9.000000px;}
.ws59{word-spacing:13.499988px;}
.ws4c{word-spacing:13.500000px;}
.ws29{word-spacing:17.999987px;}
.ws56{word-spacing:17.999989px;}
.ws2a{word-spacing:18.000000px;}
.ws55{word-spacing:18.000021px;}
.ws44{word-spacing:54.000000px;}
.ws4b{word-spacing:76.500000px;}
.ws43{word-spacing:85.500000px;}
.ws42{word-spacing:108.000000px;}
._15{margin-left:-8.989062px;}
._16{margin-left:-6.499490px;}
._5{margin-left:-5.343738px;}
._2{margin-left:-3.972656px;}
._1{margin-left:-2.671696px;}
._0{margin-left:-1.300781px;}
._8{width:17.726832px;}
._f{width:18.819515px;}
._a{width:21.516157px;}
._9{width:22.949153px;}
._4{width:24.503866px;}
._d{width:27.000001px;}
._3{width:29.003910px;}
._7{width:31.445064px;}
._c{width:35.999999px;}
._6{width:40.477032px;}
._10{width:45.000000px;}
._14{width:47.886921px;}
._11{width:49.500000px;}
._13{width:54.000000px;}
._b{width:58.500001px;}
._e{width:62.999985px;}
._12{width:72.000000px;}
.fc3{color:rgb(17,85,204);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:78.000003px;}
.fs2{font-size:81.000000px;}
.fs1{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y66{bottom:6.998283px;}
.y6e{bottom:6.998290px;}
.y72{bottom:6.998295px;}
.ya0{bottom:24.997558px;}
.ya3{bottom:24.997560px;}
.y32{bottom:24.998280px;}
.y7c{bottom:24.998283px;}
.y2e{bottom:24.998291px;}
.y35{bottom:24.998295px;}
.y6b{bottom:24.998298px;}
.y23{bottom:24.998700px;}
.ya2{bottom:24.999024px;}
.y71{bottom:30.801270px;}
.y65{bottom:30.801273px;}
.y7b{bottom:48.801258px;}
.y31{bottom:48.801270px;}
.y6a{bottom:48.801273px;}
.y64{bottom:54.604248px;}
.y69{bottom:72.604248px;}
.y5a{bottom:112.302983px;}
.y26{bottom:125.873550px;}
.y46{bottom:142.639897px;}
.y83{bottom:146.529787px;}
.yc9{bottom:148.746097px;}
.y118{bottom:153.629887px;}
.y45{bottom:166.442873px;}
.yf2{bottom:167.132812px;}
.yc8{bottom:172.549807px;}
.y44{bottom:190.245848px;}
.y6{bottom:191.567146px;}
.y117{bottom:195.026362px;}
.y9e{bottom:195.953618px;}
.yc7{bottom:196.353517px;}
.y10{bottom:201.041746px;}
.yf1{bottom:208.529302px;}
.y43{bottom:214.048823px;}
.y9d{bottom:219.769036px;}
.yc6{bottom:220.155757px;}
.y5{bottom:233.370121px;}
.y116{bottom:236.422852px;}
.y42{bottom:237.851812px;}
.yf{bottom:242.844721px;}
.y25{bottom:243.298800px;}
.y9c{bottom:243.651128px;}
.y103{bottom:252.955073px;}
.y41{bottom:261.654788px;}
.yc5{bottom:261.958012px;}
.y9b{bottom:267.454102px;}
.yf0{bottom:267.925777px;}
.y115{bottom:277.819342px;}
.y40{bottom:285.457762px;}
.y9a{bottom:291.269536px;}
.y102{bottom:294.351562px;}
.yc4{bottom:303.761722px;}
.y73{bottom:315.654788px;}
.y114{bottom:319.215817px;}
.ydf{bottom:319.352048px;}
.y3f{bottom:327.260738px;}
.yef{bottom:327.322267px;}
.yc3{bottom:327.565433px;}
.y99{bottom:333.150877px;}
.y3e{bottom:351.063727px;}
.y70{bottom:351.584467px;}
.y101{bottom:353.748053px;}
.y6f{bottom:357.387447px;}
.y113{bottom:360.612307px;}
.yde{bottom:360.748537px;}
.yee{bottom:368.718742px;}
.yc2{bottom:369.367673px;}
.y3d{bottom:374.866703px;}
.ydd{bottom:402.146483px;}
.yed{bottom:410.115233px;}
.yc1{bottom:411.169927px;}
.y100{bottom:411.644527px;}
.y3c{bottom:416.669678px;}
.y98{bottom:416.756842px;}
.y6c{bottom:418.315437px;}
.y112{bottom:420.008783px;}
.y27{bottom:428.022000px;}
.y24{bottom:430.836000px;}
.yc0{bottom:434.973637px;}
.y6d{bottom:436.315437px;}
.y97{bottom:440.560552px;}
.y82{bottom:445.150627px;}
.yec{bottom:451.511722px;}
.ye{bottom:451.859626px;}
.ybf{bottom:458.777347px;}
.y111{bottom:461.405272px;}
.ydc{bottom:461.542973px;}
.y96{bottom:464.375251px;}
.y22{bottom:465.012000px;}
.yff{bottom:471.041017px;}
.y68{bottom:479.243405px;}
.y81{bottom:481.080327px;}
.ybe{bottom:482.579587px;}
.y95{bottom:488.257328px;}
.y110{bottom:502.801762px;}
.y3b{bottom:503.275628px;}
.ybd{bottom:506.381842px;}
.yeb{bottom:510.908198px;}
.y94{bottom:512.060303px;}
.yfe{bottom:512.437492px;}
.ydb{bottom:523.939448px;}
.y12e{bottom:524.945069px;}
.y67{bottom:526.849362px;}
.ybc{bottom:530.185552px;}
.y59{bottom:530.332763px;}
.y93{bottom:535.874266px;}
.y21{bottom:538.942725px;}
.y3a{bottom:539.205322px;}
.y80{bottom:542.008302px;}
.y10f{bottom:544.198238px;}
.ybb{bottom:553.989262px;}
.y58{bottom:554.135738px;}
.y39{bottom:563.008302px;}
.yda{bottom:565.741702px;}
.y12d{bottom:568.585694px;}
.yea{bottom:570.304688px;}
.yfd{bottom:571.833983px;}
.y92{bottom:577.756342px;}
.yba{bottom:577.791502px;}
.y57{bottom:577.938728px;}
.y10e{bottom:585.594728px;}
.ya8{bottom:587.720214px;}
.y63{bottom:587.777344px;}
.yd9{bottom:589.543942px;}
.y12c{bottom:590.404544px;}
.yb9{bottom:601.593742px;}
.y56{bottom:601.741702px;}
.y7f{bottom:602.936277px;}
.ye9{bottom:611.701178px;}
.yd8{bottom:613.347652px;}
.y62{bottom:617.383302px;}
.y91{bottom:619.559332px;}
.y38{bottom:623.936272px;}
.y10d{bottom:626.989748px;}
.yfc{bottom:631.230473px;}
.y12b{bottom:634.042244px;}
.yd7{bottom:637.151362px;}
.y90{bottom:643.362308px;}
.yb8{bottom:643.397467px;}
.y55{bottom:643.544678px;}
.y37{bottom:647.739252px;}
.ya7{bottom:648.647458px;}
.y12a{bottom:655.861079px;}
.yd6{bottom:660.953617px;}
.y7e{bottom:663.864260px;}
.y8f{bottom:667.165282px;}
.y54{bottom:667.347652px;}
.y20{bottom:667.351350px;}
.yfb{bottom:672.626948px;}
.y61{bottom:678.311272px;}
.yd5{bottom:684.755857px;}
.yb7{bottom:685.201178px;}
.y10c{bottom:688.435546px;}
.y8e{bottom:690.968258px;}
.y1f{bottom:691.154100px;}
.y129{bottom:699.501704px;}
.y60{bottom:702.114252px;}
.y121{bottom:706.230473px;}
.y36{bottom:708.667242px;}
.yb6{bottom:709.003418px;}
.y53{bottom:709.150628px;}
.y7d{bottom:711.470217px;}
.y8d{bottom:714.783691px;}
.y1e{bottom:714.956850px;}
.yd4{bottom:726.559568px;}
.ye8{bottom:730.494142px;}
.y52{bottom:732.953618px;}
.yfa{bottom:735.023438px;}
.ya6{bottom:735.272458px;}
.y8c{bottom:738.665033px;}
.y1d{bottom:738.759600px;}
.y128{bottom:743.140874px;}
.y120{bottom:747.626948px;}
.yd3{bottom:750.363277px;}
.yb5{bottom:750.805658px;}
.y10b{bottom:752.311516px;}
.yd{bottom:756.086431px;}
.y51{bottom:756.756593px;}
.y8b{bottom:762.468742px;}
.y5f{bottom:763.042242px;}
.y34{bottom:769.595213px;}
.ye7{bottom:771.969721px;}
.y7a{bottom:772.398200px;}
.yf9{bottom:776.419928px;}
.yc{bottom:779.889406px;}
.y50{bottom:780.559568px;}
.y1c{bottom:780.562350px;}
.y8a{bottom:786.270998px;}
.y127{bottom:786.778559px;}
.y11f{bottom:789.023438px;}
.yd2{bottom:792.165533px;}
.y33{bottom:793.398192px;}
.yb4{bottom:793.483882px;}
.y10a{bottom:793.866211px;}
.ya5{bottom:796.201177px;}
.yb{bottom:803.692381px;}
.y4f{bottom:804.362543px;}
.y4{bottom:807.659551px;}
.y89{bottom:810.086431px;}
.ye6{bottom:813.445312px;}
.yf8{bottom:817.816402px;}
.ya4{bottom:820.003424px;}
.y79{bottom:820.004157px;}
.y126{bottom:830.416259px;}
.y11e{bottom:830.419928px;}
.yd1{bottom:833.967773px;}
.y109{bottom:835.420890px;}
.yb3{bottom:837.386723px;}
.ya{bottom:845.495356px;}
.y4e{bottom:846.165533px;}
.y5e{bottom:848.968508px;}
.y88{bottom:851.968507px;}
.y30{bottom:854.326178px;}
.ye5{bottom:854.920891px;}
.yd0{bottom:857.771482px;}
.yb2{bottom:861.190432px;}
.y1b{bottom:864.167850px;}
.y4d{bottom:869.968507px;}
.y11d{bottom:871.816402px;}
.y125{bottom:874.055414px;}
.yf7{bottom:877.212892px;}
.y2f{bottom:878.129157px;}
.y78{bottom:880.932127px;}
.ycf{bottom:881.575192px;}
.yb1{bottom:884.994142px;}
.y1a{bottom:887.970600px;}
.y5d{bottom:890.771483px;}
.y4c{bottom:893.771483px;}
.y108{bottom:894.896483px;}
.ye4{bottom:896.396483px;}
.ya1{bottom:904.734373px;}
.y77{bottom:904.735107px;}
.yce{bottom:905.377447px;}
.yb0{bottom:908.796382px;}
.y19{bottom:911.773350px;}
.y87{bottom:917.574457px;}
.y124{bottom:917.696039px;}
.y11c{bottom:931.212892px;}
.yaf{bottom:932.598637px;}
.y4b{bottom:935.574457px;}
.y18{bottom:935.576100px;}
.yf6{bottom:936.609367px;}
.ye3{bottom:937.872076px;}
.y2d{bottom:939.057132px;}
.y123{bottom:939.514889px;}
.ycd{bottom:947.179688px;}
.y107{bottom:954.292973px;}
.yae{bottom:956.402348px;}
.y86{bottom:959.377448px;}
.y17{bottom:959.378850px;}
.y76{bottom:965.663086px;}
.y11b{bottom:972.609367px;}
.y4a{bottom:977.377448px;}
.yf5{bottom:978.005858px;}
.ye2{bottom:979.347652px;}
.yad{bottom:980.206058px;}
.y85{bottom:983.180423px;}
.y16{bottom:983.181600px;}
.ycc{bottom:988.983398px;}
.y106{bottom:995.768554px;}
.y49{bottom:1001.180419px;}
.y84{bottom:1006.983399px;}
.y15{bottom:1006.984350px;}
.ycb{bottom:1012.787109px;}
.y11a{bottom:1014.005859px;}
.y5c{bottom:1019.180419px;}
.y122{bottom:1019.402343px;}
.ye1{bottom:1020.823241px;}
.yac{bottom:1022.882813px;}
.y2c{bottom:1024.983399px;}
.y3{bottom:1036.510253px;}
.y105{bottom:1037.244141px;}
.yf4{bottom:1037.402343px;}
.y5b{bottom:1042.983399px;}
.y48{bottom:1048.786377px;}
.y14{bottom:1048.787100px;}
.y75{bottom:1051.589356px;}
.y9{bottom:1054.510253px;}
.yca{bottom:1054.589355px;}
.y119{bottom:1055.402343px;}
.y2b{bottom:1066.786377px;}
.yab{bottom:1069.119142px;}
.y47{bottom:1072.589355px;}
.y13{bottom:1072.589850px;}
.y2{bottom:1078.313233px;}
.y104{bottom:1078.719727px;}
.ye0{bottom:1080.298828px;}
.y2a{bottom:1090.589355px;}
.y9f{bottom:1093.391602px;}
.y74{bottom:1093.392335px;}
.y8{bottom:1096.313233px;}
.y12{bottom:1096.392600px;}
.yf3{bottom:1096.798828px;}
.yaa{bottom:1100.856446px;}
.y29{bottom:1114.392335px;}
.y1{bottom:1120.116211px;}
.ya9{bottom:1132.593751px;}
.y7{bottom:1138.116211px;}
.y28{bottom:1138.195312px;}
.y11{bottom:1138.195350px;}
.hc{height:41.802978px;}
.h7{height:47.988281px;}
.h5{height:49.992188px;}
.h3{height:52.417969px;}
.h13{height:59.167970px;}
.he{height:59.802246px;}
.h8{height:59.802978px;}
.h6{height:59.803500px;}
.hf{height:59.803712px;}
.h4{height:63.949219px;}
.h1{height:64.546875px;}
.h2{height:65.144531px;}
.hd{height:65.605958px;}
.h12{height:69.278323px;}
.h11{height:71.942871px;}
.h9{height:83.605957px;}
.h10{height:85.265628px;}
.ha{height:89.408935px;}
.hb{height:107.408935px;}
.h0{height:1263.000000px;}
.w5{width:110.250000px;}
.w9{width:115.875000px;}
.w7{width:119.250000px;}
.w3{width:126.000000px;}
.w1{width:373.500000px;}
.w2{width:375.750000px;}
.w8{width:609.750000px;}
.wa{width:622.125000px;}
.w6{width:624.375000px;}
.w4{width:637.875000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x16{left:6.750000px;}
.xf{left:28.125000px;}
.xd{left:29.250000px;}
.x15{left:64.182129px;}
.x13{left:69.750000px;}
.x18{left:81.000000px;}
.x1b{left:84.375000px;}
.x23{left:87.750000px;}
.xc{left:93.375000px;}
.xa{left:108.000000px;}
.x22{left:130.500000px;}
.x21{left:135.000000px;}
.x1d{left:162.000000px;}
.x1f{left:168.750000px;}
.x12{left:171.442500px;}
.x1e{left:189.000000px;}
.x19{left:192.375000px;}
.x14{left:196.875000px;}
.x1c{left:204.750000px;}
.x7{left:210.131988px;}
.x20{left:216.000000px;}
.x3{left:232.258453px;}
.x11{left:276.511350px;}
.x9{left:283.946921px;}
.x4{left:286.943991px;}
.x1{left:288.921530px;}
.x8{left:298.879538px;}
.x2{left:319.621725px;}
.x17{left:330.476220px;}
.x1a{left:332.985499px;}
.x5{left:415.435702px;}
.x6{left:426.435221px;}
.xb{left:446.393846px;}
.xe{left:468.000000px;}
.x10{left:489.232500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000020pt;}
.ls2{letter-spacing:57.343750pt;}
.ls3{letter-spacing:60.565103pt;}
.ws4f{word-spacing:-42.666668pt;}
.ws5b{word-spacing:-34.666668pt;}
.ws20{word-spacing:-32.000000pt;}
.ws8{word-spacing:-30.218761pt;}
.ws3{word-spacing:-30.218748pt;}
.ws5c{word-spacing:-29.333334pt;}
.ws4e{word-spacing:-21.348987pt;}
.ws4d{word-spacing:-21.348929pt;}
.ws15{word-spacing:-16.072832pt;}
.ws1f{word-spacing:-16.049600pt;}
.ws27{word-spacing:-16.010816pt;}
.ws10{word-spacing:-16.009984pt;}
.wsd{word-spacing:-16.008832pt;}
.ws26{word-spacing:-16.001216pt;}
.ws5a{word-spacing:-16.000030pt;}
.ws2c{word-spacing:-16.000021pt;}
.ws39{word-spacing:-16.000020pt;}
.ws53{word-spacing:-16.000013pt;}
.ws2f{word-spacing:-16.000010pt;}
.ws2e{word-spacing:-16.000002pt;}
.ws31{word-spacing:-16.000001pt;}
.ws25{word-spacing:-16.000000pt;}
.ws2d{word-spacing:-15.999999pt;}
.ws33{word-spacing:-15.999980pt;}
.ws50{word-spacing:-15.999970pt;}
.ws2{word-spacing:-14.218781pt;}
.ws5{word-spacing:-14.218780pt;}
.ws6{word-spacing:-14.218778pt;}
.ws1{word-spacing:-14.218770pt;}
.ws7{word-spacing:-14.218759pt;}
.wsc{word-spacing:-14.218752pt;}
.ws0{word-spacing:-14.218740pt;}
.ws13{word-spacing:-12.080000pt;}
.ws21{word-spacing:-12.071232pt;}
.ws22{word-spacing:-12.040832pt;}
.ws12{word-spacing:-12.009600pt;}
.ws47{word-spacing:-12.000030pt;}
.ws3f{word-spacing:-12.000021pt;}
.ws46{word-spacing:-12.000020pt;}
.ws28{word-spacing:-12.000010pt;}
.ws30{word-spacing:-12.000002pt;}
.ws2b{word-spacing:-12.000001pt;}
.ws3b{word-spacing:-11.999990pt;}
.ws14{word-spacing:-11.999500pt;}
.ws9{word-spacing:-10.218750pt;}
.ws17{word-spacing:-8.071232pt;}
.ws11{word-spacing:-8.070784pt;}
.ws1a{word-spacing:-8.050816pt;}
.wsf{word-spacing:-8.009600pt;}
.ws16{word-spacing:-8.009216pt;}
.ws1e{word-spacing:-8.008384pt;}
.ws4a{word-spacing:-8.000030pt;}
.ws34{word-spacing:-8.000020pt;}
.ws35{word-spacing:-8.000010pt;}
.ws51{word-spacing:-8.000002pt;}
.ws32{word-spacing:-8.000000pt;}
.ws37{word-spacing:-7.999998pt;}
.ws36{word-spacing:-7.999990pt;}
.wsa{word-spacing:-6.218749pt;}
.wsb{word-spacing:-6.218740pt;}
.ws18{word-spacing:-4.048832pt;}
.ws1d{word-spacing:-4.009984pt;}
.ws19{word-spacing:-4.009600pt;}
.ws1b{word-spacing:-4.001634pt;}
.ws41{word-spacing:-4.000030pt;}
.ws49{word-spacing:-4.000020pt;}
.ws38{word-spacing:-4.000010pt;}
.ws58{word-spacing:-4.000002pt;}
.ws1c{word-spacing:-4.000000pt;}
.ws48{word-spacing:-3.999990pt;}
.wse{word-spacing:-0.071232pt;}
.ws24{word-spacing:-0.030400pt;}
.ws3a{word-spacing:-0.000011pt;}
.ws54{word-spacing:-0.000002pt;}
.ws4{word-spacing:0.000000pt;}
.ws23{word-spacing:0.060580pt;}
.ws40{word-spacing:3.999970pt;}
.ws3c{word-spacing:3.999990pt;}
.ws45{word-spacing:4.000000pt;}
.ws57{word-spacing:4.000030pt;}
.ws3e{word-spacing:7.999989pt;}
.ws52{word-spacing:7.999998pt;}
.ws3d{word-spacing:8.000000pt;}
.ws59{word-spacing:11.999990pt;}
.ws4c{word-spacing:12.000000pt;}
.ws29{word-spacing:15.999989pt;}
.ws56{word-spacing:15.999990pt;}
.ws2a{word-spacing:16.000000pt;}
.ws55{word-spacing:16.000018pt;}
.ws44{word-spacing:48.000000pt;}
.ws4b{word-spacing:68.000000pt;}
.ws43{word-spacing:76.000000pt;}
.ws42{word-spacing:96.000000pt;}
._15{margin-left:-7.990278pt;}
._16{margin-left:-5.777325pt;}
._5{margin-left:-4.749990pt;}
._2{margin-left:-3.531250pt;}
._1{margin-left:-2.374840pt;}
._0{margin-left:-1.156249pt;}
._8{width:15.757184pt;}
._f{width:16.728458pt;}
._a{width:19.125473pt;}
._9{width:20.399247pt;}
._4{width:21.781214pt;}
._d{width:24.000001pt;}
._3{width:25.781253pt;}
._7{width:27.951168pt;}
._c{width:31.999999pt;}
._6{width:35.979584pt;}
._10{width:40.000000pt;}
._14{width:42.566152pt;}
._11{width:44.000000pt;}
._13{width:48.000000pt;}
._b{width:52.000001pt;}
._e{width:55.999987pt;}
._12{width:64.000000pt;}
.fs3{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.333336pt;}
.fs2{font-size:72.000000pt;}
.fs1{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:6.220696pt;}
.y6e{bottom:6.220703pt;}
.y72{bottom:6.220707pt;}
.ya0{bottom:22.220052pt;}
.ya3{bottom:22.220053pt;}
.y32{bottom:22.220693pt;}
.y7c{bottom:22.220696pt;}
.y2e{bottom:22.220703pt;}
.y35{bottom:22.220707pt;}
.y6b{bottom:22.220709pt;}
.y23{bottom:22.221067pt;}
.ya2{bottom:22.221355pt;}
.y71{bottom:27.378907pt;}
.y65{bottom:27.378909pt;}
.y7b{bottom:43.378896pt;}
.y31{bottom:43.378907pt;}
.y6a{bottom:43.378909pt;}
.y64{bottom:48.537109pt;}
.y69{bottom:64.537109pt;}
.y5a{bottom:99.824873pt;}
.y26{bottom:111.887600pt;}
.y46{bottom:126.791020pt;}
.y83{bottom:130.248699pt;}
.yc9{bottom:132.218753pt;}
.y118{bottom:136.559900pt;}
.y45{bottom:147.949220pt;}
.yf2{bottom:148.562500pt;}
.yc8{bottom:153.377607pt;}
.y44{bottom:169.107420pt;}
.y6{bottom:170.281908pt;}
.y117{bottom:173.356767pt;}
.y9e{bottom:174.180993pt;}
.yc7{bottom:174.536460pt;}
.y10{bottom:178.703774pt;}
.yf1{bottom:185.359380pt;}
.y43{bottom:190.265620pt;}
.y9d{bottom:195.350254pt;}
.yc6{bottom:195.694007pt;}
.y5{bottom:207.440108pt;}
.y116{bottom:210.153647pt;}
.y42{bottom:211.423833pt;}
.yf{bottom:215.861974pt;}
.y25{bottom:216.265600pt;}
.y9c{bottom:216.578780pt;}
.y103{bottom:224.848953pt;}
.y41{bottom:232.582033pt;}
.yc5{bottom:232.851567pt;}
.y9b{bottom:237.736980pt;}
.yf0{bottom:238.156247pt;}
.y115{bottom:246.950527pt;}
.y40{bottom:253.740233pt;}
.y9a{bottom:258.906254pt;}
.y102{bottom:261.645833pt;}
.yc4{bottom:270.010420pt;}
.y73{bottom:280.582033pt;}
.y114{bottom:283.747393pt;}
.ydf{bottom:283.868487pt;}
.y3f{bottom:290.898433pt;}
.yef{bottom:290.953127pt;}
.yc3{bottom:291.169273pt;}
.y99{bottom:296.134113pt;}
.y3e{bottom:312.056647pt;}
.y70{bottom:312.519527pt;}
.y101{bottom:314.442713pt;}
.y6f{bottom:317.677731pt;}
.y113{bottom:320.544273pt;}
.yde{bottom:320.665367pt;}
.yee{bottom:327.749993pt;}
.yc2{bottom:328.326820pt;}
.y3d{bottom:333.214847pt;}
.ydd{bottom:357.463541pt;}
.yed{bottom:364.546873pt;}
.yc1{bottom:365.484380pt;}
.y100{bottom:365.906246pt;}
.y3c{bottom:370.373047pt;}
.y98{bottom:370.450527pt;}
.y6c{bottom:371.835944pt;}
.y112{bottom:373.341140pt;}
.y27{bottom:380.464000pt;}
.y24{bottom:382.965333pt;}
.yc0{bottom:386.643233pt;}
.y6d{bottom:387.835944pt;}
.y97{bottom:391.609380pt;}
.y82{bottom:395.689447pt;}
.yec{bottom:401.343753pt;}
.ye{bottom:401.653001pt;}
.ybf{bottom:407.802087pt;}
.y111{bottom:410.138020pt;}
.ydc{bottom:410.260421pt;}
.y96{bottom:412.778001pt;}
.y22{bottom:413.344000pt;}
.yff{bottom:418.703127pt;}
.y68{bottom:425.994137pt;}
.y81{bottom:427.626957pt;}
.ybe{bottom:428.959633pt;}
.y95{bottom:434.006513pt;}
.y110{bottom:446.934900pt;}
.y3b{bottom:447.356113pt;}
.ybd{bottom:450.117193pt;}
.yeb{bottom:454.140620pt;}
.y94{bottom:455.164713pt;}
.yfe{bottom:455.499993pt;}
.ydb{bottom:465.723953pt;}
.y12e{bottom:466.617839pt;}
.y67{bottom:468.310544pt;}
.ybc{bottom:471.276047pt;}
.y59{bottom:471.406900pt;}
.y93{bottom:476.332681pt;}
.y21{bottom:479.060200pt;}
.y3a{bottom:479.293620pt;}
.y80{bottom:481.785157pt;}
.y10f{bottom:483.731767pt;}
.ybb{bottom:492.434900pt;}
.y58{bottom:492.565100pt;}
.y39{bottom:500.451824pt;}
.yda{bottom:502.881513pt;}
.y12d{bottom:505.409505pt;}
.yea{bottom:506.937500pt;}
.yfd{bottom:508.296874pt;}
.y92{bottom:513.561193pt;}
.yba{bottom:513.592447pt;}
.y57{bottom:513.723313pt;}
.y10e{bottom:520.528647pt;}
.ya8{bottom:522.417968pt;}
.y63{bottom:522.468751pt;}
.yd9{bottom:524.039060pt;}
.y12c{bottom:524.804039pt;}
.yb9{bottom:534.749993pt;}
.y56{bottom:534.881513pt;}
.y7f{bottom:535.943357pt;}
.ye9{bottom:543.734380pt;}
.yd8{bottom:545.197913pt;}
.y62{bottom:548.785157pt;}
.y91{bottom:550.719407pt;}
.y38{bottom:554.610020pt;}
.y10d{bottom:557.324221pt;}
.yfc{bottom:561.093753pt;}
.y12b{bottom:563.593105pt;}
.yd7{bottom:566.356767pt;}
.y90{bottom:571.877607pt;}
.yb8{bottom:571.908860pt;}
.y55{bottom:572.039713pt;}
.y37{bottom:575.768224pt;}
.ya7{bottom:576.575519pt;}
.y12a{bottom:582.987625pt;}
.yd6{bottom:587.514327pt;}
.y7e{bottom:590.101564pt;}
.y8f{bottom:593.035807pt;}
.y54{bottom:593.197913pt;}
.y20{bottom:593.201200pt;}
.yfb{bottom:597.890621pt;}
.y61{bottom:602.943353pt;}
.yd5{bottom:608.671873pt;}
.yb7{bottom:609.067713pt;}
.y10c{bottom:611.942708pt;}
.y8e{bottom:614.194007pt;}
.y1f{bottom:614.359200pt;}
.y129{bottom:621.779292pt;}
.y60{bottom:624.101557pt;}
.y121{bottom:627.760420pt;}
.y36{bottom:629.926437pt;}
.yb6{bottom:630.225260pt;}
.y53{bottom:630.356113pt;}
.y7d{bottom:632.417971pt;}
.y8d{bottom:635.363281pt;}
.y1e{bottom:635.517200pt;}
.yd4{bottom:645.830727pt;}
.ye8{bottom:649.328127pt;}
.y52{bottom:651.514327pt;}
.yfa{bottom:653.354167pt;}
.ya6{bottom:653.575519pt;}
.y8c{bottom:656.591140pt;}
.y1d{bottom:656.675200pt;}
.y128{bottom:660.569665pt;}
.y120{bottom:664.557287pt;}
.yd3{bottom:666.989580pt;}
.yb5{bottom:667.382807pt;}
.y10b{bottom:668.721347pt;}
.yd{bottom:672.076828pt;}
.y51{bottom:672.672527pt;}
.y8b{bottom:677.749993pt;}
.y5f{bottom:678.259771pt;}
.y34{bottom:684.084633pt;}
.ye7{bottom:686.195307pt;}
.y7a{bottom:686.576177pt;}
.yf9{bottom:690.151047pt;}
.yc{bottom:693.235028pt;}
.y50{bottom:693.830727pt;}
.y1c{bottom:693.833200pt;}
.y8a{bottom:698.907553pt;}
.y127{bottom:699.358719pt;}
.y11f{bottom:701.354167pt;}
.yd2{bottom:704.147140pt;}
.y33{bottom:705.242837pt;}
.yb4{bottom:705.319006pt;}
.y10a{bottom:705.658854pt;}
.ya5{bottom:707.734380pt;}
.yb{bottom:714.393227pt;}
.y4f{bottom:714.988927pt;}
.y4{bottom:717.919601pt;}
.y89{bottom:720.076828pt;}
.ye6{bottom:723.062500pt;}
.yf8{bottom:726.947913pt;}
.ya4{bottom:728.891932pt;}
.y79{bottom:728.892584pt;}
.y126{bottom:738.147785pt;}
.y11e{bottom:738.151047pt;}
.yd1{bottom:741.304687pt;}
.y109{bottom:742.596347pt;}
.yb3{bottom:744.343753pt;}
.ya{bottom:751.551427pt;}
.y4e{bottom:752.147140pt;}
.y5e{bottom:754.638674pt;}
.y88{bottom:757.305340pt;}
.y30{bottom:759.401047pt;}
.ye5{bottom:759.929681pt;}
.yd0{bottom:762.463540pt;}
.yb2{bottom:765.502607pt;}
.y1b{bottom:768.149200pt;}
.y4d{bottom:773.305340pt;}
.y11d{bottom:774.947913pt;}
.y125{bottom:776.938145pt;}
.yf7{bottom:779.744793pt;}
.y2f{bottom:780.559251pt;}
.y78{bottom:783.050780pt;}
.ycf{bottom:783.622393pt;}
.yb1{bottom:786.661460pt;}
.y1a{bottom:789.307200pt;}
.y5d{bottom:791.796874pt;}
.y4c{bottom:794.463540pt;}
.y108{bottom:795.463540pt;}
.ye4{bottom:796.796873pt;}
.ya1{bottom:804.208332pt;}
.y77{bottom:804.208984pt;}
.yce{bottom:804.779953pt;}
.yb0{bottom:807.819007pt;}
.y19{bottom:810.465200pt;}
.y87{bottom:815.621740pt;}
.y124{bottom:815.729812pt;}
.y11c{bottom:827.744793pt;}
.yaf{bottom:828.976567pt;}
.y4b{bottom:831.621740pt;}
.y18{bottom:831.623200pt;}
.yf6{bottom:832.541660pt;}
.ye3{bottom:833.664067pt;}
.y2d{bottom:834.717451pt;}
.y123{bottom:835.124345pt;}
.ycd{bottom:841.937500pt;}
.y107{bottom:848.260420pt;}
.yae{bottom:850.135420pt;}
.y86{bottom:852.779953pt;}
.y17{bottom:852.781200pt;}
.y76{bottom:858.367188pt;}
.y11b{bottom:864.541660pt;}
.y4a{bottom:868.779953pt;}
.yf5{bottom:869.338540pt;}
.ye2{bottom:870.531247pt;}
.yad{bottom:871.294273pt;}
.y85{bottom:873.938153pt;}
.y16{bottom:873.939200pt;}
.ycc{bottom:879.096353pt;}
.y106{bottom:885.127603pt;}
.y49{bottom:889.938151pt;}
.y84{bottom:895.096355pt;}
.y15{bottom:895.097200pt;}
.ycb{bottom:900.255208pt;}
.y11a{bottom:901.338541pt;}
.y5c{bottom:905.938151pt;}
.y122{bottom:906.135416pt;}
.ye1{bottom:907.398436pt;}
.yac{bottom:909.229167pt;}
.y2c{bottom:911.096355pt;}
.y3{bottom:921.342448pt;}
.y105{bottom:921.994792pt;}
.yf4{bottom:922.135416pt;}
.y5b{bottom:927.096355pt;}
.y48{bottom:932.254557pt;}
.y14{bottom:932.255200pt;}
.y75{bottom:934.746094pt;}
.y9{bottom:937.342448pt;}
.yca{bottom:937.412760pt;}
.y119{bottom:938.135416pt;}
.y2b{bottom:948.254557pt;}
.yab{bottom:950.328126pt;}
.y47{bottom:953.412760pt;}
.y13{bottom:953.413200pt;}
.y2{bottom:958.500652pt;}
.y104{bottom:958.861979pt;}
.ye0{bottom:960.265625pt;}
.y2a{bottom:969.412760pt;}
.y9f{bottom:971.903646pt;}
.y74{bottom:971.904298pt;}
.y8{bottom:974.500652pt;}
.y12{bottom:974.571200pt;}
.yf3{bottom:974.932292pt;}
.yaa{bottom:978.539063pt;}
.y29{bottom:990.570964pt;}
.y1{bottom:995.658854pt;}
.ya9{bottom:1006.750001pt;}
.y7{bottom:1011.658854pt;}
.y28{bottom:1011.729167pt;}
.y11{bottom:1011.729200pt;}
.hc{height:37.158203pt;}
.h7{height:42.656250pt;}
.h5{height:44.437500pt;}
.h3{height:46.593750pt;}
.h13{height:52.593751pt;}
.he{height:53.157552pt;}
.h8{height:53.158203pt;}
.h6{height:53.158667pt;}
.hf{height:53.158855pt;}
.h4{height:56.843750pt;}
.h1{height:57.375000pt;}
.h2{height:57.906250pt;}
.hd{height:58.316407pt;}
.h12{height:61.580732pt;}
.h11{height:63.949219pt;}
.h9{height:74.316407pt;}
.h10{height:75.791669pt;}
.ha{height:79.474609pt;}
.hb{height:95.474609pt;}
.h0{height:1122.666667pt;}
.w5{width:98.000000pt;}
.w9{width:103.000000pt;}
.w7{width:106.000000pt;}
.w3{width:112.000000pt;}
.w1{width:332.000000pt;}
.w2{width:334.000000pt;}
.w8{width:542.000000pt;}
.wa{width:553.000000pt;}
.w6{width:555.000000pt;}
.w4{width:567.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x16{left:6.000000pt;}
.xf{left:25.000000pt;}
.xd{left:26.000000pt;}
.x15{left:57.050781pt;}
.x13{left:62.000000pt;}
.x18{left:72.000000pt;}
.x1b{left:75.000000pt;}
.x23{left:78.000000pt;}
.xc{left:83.000000pt;}
.xa{left:96.000000pt;}
.x22{left:116.000000pt;}
.x21{left:120.000000pt;}
.x1d{left:144.000000pt;}
.x1f{left:150.000000pt;}
.x12{left:152.393333pt;}
.x1e{left:168.000000pt;}
.x19{left:171.000000pt;}
.x14{left:175.000000pt;}
.x1c{left:182.000000pt;}
.x7{left:186.783989pt;}
.x20{left:192.000000pt;}
.x3{left:206.451958pt;}
.x11{left:245.787867pt;}
.x9{left:252.397263pt;}
.x4{left:255.061325pt;}
.x1{left:256.819138pt;}
.x8{left:265.670700pt;}
.x2{left:284.108200pt;}
.x17{left:293.756640pt;}
.x1a{left:295.987110pt;}
.x5{left:369.276180pt;}
.x6{left:379.053530pt;}
.xb{left:396.794530pt;}
.xe{left:416.000000pt;}
.x10{left:434.873333pt;}
}




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