
    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_293905b4222b2a133665be1d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.076000;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_713b115e60ca8a6349188479.woff')format("woff");}.ff2{font-family:ff2;line-height:1.076000;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_138a1678891558bedd97ea3b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_6a27058987c3dfcdddf8ce14.woff')format("woff");}.ff4{font-family:ff4;line-height:1.061000;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5112ca09d5ead26c4e012288.woff')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_e86164858191ecb8debaa11a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.975586;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_3ef5a77930c72f19aa6867fc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.975586;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_06adb50b8e937266a06c2632.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.m2{transform:matrix(0.277802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277802,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);}
.v3{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:45.480000px;}
.v1{vertical-align:87.000000px;}
.lse{letter-spacing:-1.282413px;}
.ls12{letter-spacing:-0.259200px;}
.ls1{letter-spacing:-0.139800px;}
.lsa{letter-spacing:-0.135600px;}
.ls9{letter-spacing:-0.100800px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.086400px;}
.ls10{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.226080px;}
.lsc{letter-spacing:0.298800px;}
.lsb{letter-spacing:38.088000px;}
.ls7{letter-spacing:75.600000px;}
.ls8{letter-spacing:77.040000px;}
.ls6{letter-spacing:111.549600px;}
.ls5{letter-spacing:111.600000px;}
.ls3{letter-spacing:115.257600px;}
.ls4{letter-spacing:115.344000px;}
.lsf{letter-spacing:157.233600px;}
.ls2{letter-spacing:157.284000px;}
.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;}
}
.ws2d{word-spacing:-147.486528px;}
.ws2c{word-spacing:-147.448080px;}
.ws0{word-spacing:-106.199280px;}
.ws8{word-spacing:-67.284000px;}
.ws9{word-spacing:-44.791920px;}
.ws2a{word-spacing:-42.014880px;}
.ws29{word-spacing:-41.754528px;}
.ws1{word-spacing:-41.716080px;}
.ws1e{word-spacing:-40.986000px;}
.ws2f{word-spacing:-39.985920px;}
.ws30{word-spacing:-39.726720px;}
.ws27{word-spacing:-39.565152px;}
.ws28{word-spacing:-39.528720px;}
.ws2e{word-spacing:-39.409200px;}
.wsc{word-spacing:-37.925712px;}
.wsa{word-spacing:-37.889280px;}
.ws19{word-spacing:-36.432000px;}
.ws5{word-spacing:-32.911488px;}
.ws4{word-spacing:-32.873040px;}
.ws7{word-spacing:-31.527360px;}
.ws1a{word-spacing:-30.656880px;}
.ws22{word-spacing:-30.154896px;}
.ws1b{word-spacing:-30.119040px;}
.ws6{word-spacing:-27.874800px;}
.ws18{word-spacing:-20.802672px;}
.ws16{word-spacing:-20.766240px;}
.ws24{word-spacing:-14.862208px;}
.wsd{word-spacing:-12.386880px;}
.ws11{word-spacing:-9.959040px;}
.ws3{word-spacing:-5.773920px;}
.ws14{word-spacing:-5.342400px;}
.ws15{word-spacing:-5.189760px;}
.ws13{word-spacing:-5.040000px;}
.ws10{word-spacing:-2.854080px;}
.wsf{word-spacing:-1.880640px;}
.wse{word-spacing:-1.275840px;}
.ws2{word-spacing:0.000000px;}
.ws12{word-spacing:0.120000px;}
.ws1f{word-spacing:0.439680px;}
.ws2b{word-spacing:1.117200px;}
.ws20{word-spacing:2.285280px;}
.ws21{word-spacing:2.772480px;}
.ws23{word-spacing:60.178231px;}
.ws17{word-spacing:239.891040px;}
.ws26{word-spacing:403.784580px;}
.ws25{word-spacing:447.055963px;}
.ws1d{word-spacing:1337.306304px;}
.wsb{word-spacing:4019.087760px;}
.ws1c{word-spacing:4019.207760px;}
._22{margin-left:-3859.674720px;}
._23{margin-left:-3458.614800px;}
._3{margin-left:-20.568240px;}
._4{margin-left:-19.304160px;}
._12{margin-left:-18.114720px;}
._10{margin-left:-14.955360px;}
._17{margin-left:-13.671360px;}
._a{margin-left:-12.348000px;}
._c{margin-left:-10.908720px;}
._6{margin-left:-9.064080px;}
._9{margin-left:-7.038720px;}
._b{margin-left:-5.814000px;}
._7{margin-left:-4.530960px;}
._1{margin-left:-3.358080px;}
._0{margin-left:-2.098800px;}
._5{margin-left:-1.015920px;}
._8{width:1.562400px;}
._11{width:2.597472px;}
._2{width:3.777840px;}
._14{width:5.277600px;}
._1d{width:6.586800px;}
._e{width:7.984560px;}
._1e{width:9.583200px;}
._1c{width:10.608480px;}
._15{width:11.894400px;}
._18{width:13.789440px;}
._1a{width:15.154560px;}
._1b{width:17.189280px;}
._20{width:20.050560px;}
._1f{width:21.421440px;}
._19{width:30.228000px;}
._21{width:47.016624px;}
._f{width:61.092000px;}
._d{width:68.842080px;}
._13{width:124.708800px;}
._26{width:160.049506px;}
._24{width:636.224882px;}
._16{width:1023.083280px;}
._25{width:1133.485898px;}
.fc10{color:rgb(0,132,255);}
.fce{color:rgb(153,153,153);}
.fc1{color:rgb(0,79,159);}
.fc3{color:rgb(7,43,85);}
.fc2{color:rgb(7,42,84);}
.fc4{color:rgb(255,255,255);}
.fcb{color:rgb(0,0,0);}
.fc5{color:rgb(21,43,76);}
.fcd{color:rgb(128,0,128);}
.fc9{color:rgb(2,53,121);}
.fc6{color:rgb(0,135,255);}
.fc7{color:rgb(24,45,78);}
.fcf{color:rgb(46,64,93);}
.fcc{color:rgb(19,83,138);}
.fc8{color:rgb(4,50,87);}
.fc0{color:rgb(19,41,75);}
.fca{color:rgb(7,48,91);}
.fs17{font-size:38.880000px;}
.fs19{font-size:45.360000px;}
.fs18{font-size:48.960000px;}
.fs16{font-size:53.280000px;}
.fs2{font-size:59.760000px;}
.fs23{font-size:65.761981px;}
.fs3{font-size:72.000000px;}
.fs1c{font-size:76.320000px;}
.fs1d{font-size:82.080000px;}
.fs1e{font-size:82.224000px;}
.fs1a{font-size:95.760000px;}
.fsa{font-size:100.080000px;}
.fsb{font-size:100.224000px;}
.fs7{font-size:104.400000px;}
.fs13{font-size:108.000000px;}
.fs9{font-size:118.080000px;}
.fs1f{font-size:120.960000px;}
.fs22{font-size:121.104000px;}
.fs6{font-size:123.120000px;}
.fs8{font-size:123.264000px;}
.fs12{font-size:138.240000px;}
.fs14{font-size:144.000000px;}
.fs15{font-size:144.144000px;}
.fs27{font-size:147.600000px;}
.fsf{font-size:149.760000px;}
.fse{font-size:149.904000px;}
.fs4{font-size:156.240000px;}
.fs11{font-size:156.384000px;}
.fs21{font-size:162.000000px;}
.fsc{font-size:167.760000px;}
.fsd{font-size:167.904000px;}
.fs10{font-size:192.240000px;}
.fs20{font-size:192.384000px;}
.fs5{font-size:252.000000px;}
.fs1b{font-size:252.144000px;}
.fs24{font-size:255.600000px;}
.fs1{font-size:419.760000px;}
.fs0{font-size:419.904000px;}
.fs25{font-size:552.240000px;}
.fs26{font-size:552.384000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:4.103285px;}
.yaf{bottom:4.130618px;}
.yaa{bottom:4.951275px;}
.y4{bottom:25.416000px;}
.y9b{bottom:25.462251px;}
.ya9{bottom:25.472099px;}
.ya6{bottom:25.495077px;}
.yae{bottom:25.495493px;}
.y45{bottom:46.440000px;}
.y9f{bottom:46.854044px;}
.yad{bottom:46.859930px;}
.y88{bottom:64.080000px;}
.ya3{bottom:68.191125px;}
.yac{bottom:68.224368px;}
.y90{bottom:69.660000px;}
.y6c{bottom:75.636000px;}
.ya2{bottom:89.561034px;}
.y44{bottom:98.568000px;}
.ya7{bottom:106.849957px;}
.y5{bottom:111.996000px;}
.yc6{bottom:112.572000px;}
.y84{bottom:112.824000px;}
.y69{bottom:126.468000px;}
.y6a{bottom:142.056000px;}
.y43{bottom:146.628000px;}
.y22{bottom:150.150000px;}
.ybc{bottom:153.645000px;}
.y50{bottom:161.925000px;}
.y1c{bottom:163.155000px;}
.yc5{bottom:175.575000px;}
.y9{bottom:175.830000px;}
.ya4{bottom:179.974872px;}
.y21{bottom:184.530000px;}
.y7d{bottom:191.850000px;}
.y1b{bottom:197.565000px;}
.ybb{bottom:199.830000px;}
.y94{bottom:214.845000px;}
.y20{bottom:219.090000px;}
.ycf{bottom:220.215000px;}
.y7c{bottom:230.910000px;}
.y8{bottom:231.480000px;}
.y1a{bottom:232.125000px;}
.ycc{bottom:233.355000px;}
.y37{bottom:240.735000px;}
.y38{bottom:242.610000px;}
.yba{bottom:245.955000px;}
.y42{bottom:251.175000px;}
.y41{bottom:253.050000px;}
.ya0{bottom:253.122766px;}
.y1f{bottom:253.650000px;}
.y83{bottom:264.090000px;}
.y19{bottom:266.685000px;}
.y4f{bottom:269.970000px;}
.y68{bottom:270.510000px;}
.yce{bottom:271.155000px;}
.y97{bottom:274.691621px;}
.yab{bottom:275.512278px;}
.ycb{bottom:284.295000px;}
.yb9{bottom:287.640000px;}
.y1e{bottom:288.030000px;}
.y29{bottom:294.510000px;}
.y18{bottom:301.065000px;}
.yc4{bottom:301.605000px;}
.ycd{bottom:322.095000px;}
.y93{bottom:323.355000px;}
.y4e{bottom:323.970000px;}
.y67{bottom:326.130000px;}
.yca{bottom:335.235000px;}
.y7{bottom:342.360000px;}
.yb8{bottom:343.110000px;}
.y35{bottom:354.990000px;}
.y36{bottom:356.865000px;}
.y28{bottom:357.510000px;}
.yc3{bottom:364.605000px;}
.y40{bottom:365.070000px;}
.y3f{bottom:366.945000px;}
.y7b{bottom:368.670000px;}
.y78{bottom:369.435000px;}
.y9d{bottom:377.206104px;}
.ya8{bottom:377.438292px;}
.y4d{bottom:377.970000px;}
.y1d{bottom:388.770000px;}
.y6{bottom:397.980000px;}
.y17{bottom:398.370000px;}
.yb7{bottom:398.550000px;}
.y96{bottom:410.835000px;}
.y81{bottom:415.335000px;}
.y5d{bottom:421.170000px;}
.y5c{bottom:433.230000px;}
.y92{bottom:438.660000px;}
.ya5{bottom:450.563208px;}
.y8d{bottom:451.770000px;}
.yb6{bottom:454.170000px;}
.y33{bottom:455.865000px;}
.y5b{bottom:456.015000px;}
.y99{bottom:456.919254px;}
.y56{bottom:463.110000px;}
.y5a{bottom:468.075000px;}
.y34{bottom:475.950000px;}
.yc9{bottom:478.800000px;}
.y3e{bottom:478.950000px;}
.y3d{bottom:480.810000px;}
.y27{bottom:483.555000px;}
.y4c{bottom:486.000000px;}
.y2c{bottom:486.615000px;}
.yc2{bottom:490.650000px;}
.y59{bottom:491.010000px;}
.yb5{bottom:497.310000px;}
.y32{bottom:500.865000px;}
.y58{bottom:503.070000px;}
.y55{bottom:517.110000px;}
.ya1{bottom:523.711102px;}
.y3{bottom:528.270000px;}
.y61{bottom:533.490000px;}
.y63{bottom:534.210000px;}
.y95{bottom:535.500000px;}
.y98{bottom:536.632404px;}
.y4b{bottom:540.000000px;}
.y2b{bottom:542.235000px;}
.y26{bottom:546.555000px;}
.y60{bottom:548.430000px;}
.y62{bottom:549.150000px;}
.yb4{bottom:552.780000px;}
.y91{bottom:553.470000px;}
.yc1{bottom:553.650000px;}
.y57{bottom:554.835000px;}
.y80{bottom:566.610000px;}
.y82{bottom:575.850000px;}
.y85{bottom:577.050000px;}
.y3c{bottom:592.815000px;}
.y4a{bottom:594.000000px;}
.y3b{bottom:594.690000px;}
.y10{bottom:595.695000px;}
.y30{bottom:599.730000px;}
.y31{bottom:599.940000px;}
.y89{bottom:601.635000px;}
.y16{bottom:606.060000px;}
.yb3{bottom:608.400000px;}
.y76{bottom:614.085000px;}
.y66{bottom:616.425000px;}
.y54{bottom:625.140000px;}
.yf{bottom:631.695000px;}
.y65{bottom:635.760000px;}
.y75{bottom:641.130000px;}
.y6f{bottom:641.550000px;}
.y15{bottom:642.060000px;}
.yc8{bottom:643.890000px;}
.y9e{bottom:647.794440px;}
.y2{bottom:654.300000px;}
.yb2{bottom:654.585000px;}
.y64{bottom:655.305000px;}
.y8b{bottom:655.890000px;}
.y6e{bottom:667.110000px;}
.ye{bottom:667.695000px;}
.y25{bottom:672.585000px;}
.y8e{bottom:673.740000px;}
.y14{bottom:678.060000px;}
.y53{bottom:679.140000px;}
.yc0{bottom:679.680000px;}
.y74{bottom:681.330000px;}
.y6d{bottom:692.670000px;}
.y2e{bottom:693.510000px;}
.yb1{bottom:700.770000px;}
.y49{bottom:702.030000px;}
.yd{bottom:703.695000px;}
.y3a{bottom:706.710000px;}
.y39{bottom:708.585000px;}
.y5f{bottom:712.410000px;}
.y13{bottom:714.060000px;}
.y7f{bottom:715.785000px;}
.y7e{bottom:715.830000px;}
.y2d{bottom:716.790000px;}
.y86{bottom:719.205000px;}
.y73{bottom:721.545000px;}
.y5e{bottom:727.350000px;}
.y9a{bottom:727.507589px;}
.ybf{bottom:742.680000px;}
.y8c{bottom:752.220000px;}
.y48{bottom:756.030000px;}
.y77{bottom:761.760000px;}
.y1{bottom:780.330000px;}
.y24{bottom:785.085000px;}
.y52{bottom:787.170000px;}
.y8f{bottom:793.365000px;}
.y12{bottom:801.255000px;}
.yc{bottom:802.545000px;}
.y72{bottom:804.780000px;}
.yc7{bottom:808.950000px;}
.y71{bottom:831.780000px;}
.y11{bottom:844.815000px;}
.yb{bottom:846.105000px;}
.y23{bottom:848.085000px;}
.y47{bottom:851.970000px;}
.y70{bottom:858.810000px;}
.ybe{bottom:868.680000px;}
.y87{bottom:874.290000px;}
.y2f{bottom:887.835000px;}
.y7a{bottom:890.175000px;}
.y51{bottom:895.170000px;}
.y46{bottom:905.970000px;}
.y8a{bottom:909.615000px;}
.y79{bottom:912.675000px;}
.ybd{bottom:931.710000px;}
.y2a{bottom:1048.500000px;}
.y6b{bottom:1049.685000px;}
.yb0{bottom:1051.170000px;}
.ya{bottom:1053.330000px;}
.h19{height:32.698080px;}
.h1b{height:38.147760px;}
.h1a{height:41.909760px;}
.h18{height:44.808480px;}
.h3{height:50.258160px;}
.h4{height:60.552000px;}
.h1e{height:64.185120px;}
.h2a{height:65.408767px;}
.h1f{height:70.260480px;}
.h21{height:70.383744px;}
.h2e{height:72.299882px;}
.h2d{height:72.327237px;}
.h2b{height:78.892493px;}
.h1c{height:80.534160px;}
.hb{height:84.167280px;}
.hc{height:84.288384px;}
.h8{height:87.800400px;}
.h15{height:90.828000px;}
.h24{height:92.137500px;}
.h28{height:92.247188px;}
.h23{height:93.782813px;}
.h25{height:93.892500px;}
.ha{height:99.305280px;}
.h2f{height:101.104942px;}
.h7{height:103.543920px;}
.h9{height:103.665024px;}
.h20{height:115.740480px;}
.h14{height:118.333440px;}
.h16{height:121.104000px;}
.h17{height:121.225104px;}
.h2c{height:123.262681px;}
.h22{height:123.264000px;}
.h35{height:124.131600px;}
.h36{height:125.948160px;}
.h10{height:128.194560px;}
.h13{height:128.317824px;}
.h5{height:131.397840px;}
.h12{height:131.518944px;}
.h32{height:133.741440px;}
.h31{height:133.864704px;}
.h27{height:138.672000px;}
.hd{height:141.086160px;}
.he{height:141.207264px;}
.h11{height:164.557440px;}
.h26{height:164.680704px;}
.h6{height:211.932000px;}
.h1d{height:212.053104px;}
.h30{height:214.959600px;}
.hf{height:215.317824px;}
.h2{height:359.314560px;}
.h1{height:359.437824px;}
.h33{height:464.433840px;}
.h34{height:464.554944px;}
.h29{height:587.590410px;}
.h0{height:1215.000000px;}
.w3{width:388.879118px;}
.w2{width:893.681499px;}
.w1{width:2159.999968px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x5c{left:2.735761px;}
.x3c{left:78.227968px;}
.x69{left:93.491968px;}
.x2a{left:112.571968px;}
.x29{left:120.419968px;}
.x4e{left:127.907968px;}
.x2b{left:136.511968px;}
.x5b{left:143.651910px;}
.x4f{left:147.599968px;}
.x51{left:160.589968px;}
.x17{left:197.744968px;}
.xa{left:198.794968px;}
.xc{left:200.594968px;}
.x68{left:213.404968px;}
.x19{left:234.644968px;}
.x1b{left:252.209968px;}
.x46{left:255.059968px;}
.x4a{left:263.699968px;}
.x39{left:277.664968px;}
.x18{left:281.669968px;}
.x4c{left:286.124968px;}
.x36{left:289.289968px;}
.x31{left:294.404968px;}
.x10{left:300.089968px;}
.x48{left:308.369968px;}
.x32{left:312.404968px;}
.x35{left:314.534968px;}
.xb{left:339.629968px;}
.x1c{left:341.609968px;}
.x1a{left:349.019968px;}
.x2{left:358.409968px;}
.x5d{left:359.995785px;}
.x3f{left:394.169968px;}
.x3d{left:416.129968px;}
.x3{left:424.874968px;}
.x30{left:429.764968px;}
.x2f{left:435.884968px;}
.x3e{left:462.029968px;}
.x33{left:546.404968px;}
.x34{left:561.164968px;}
.x37{left:571.784968px;}
.x38{left:587.234968px;}
.x67{left:604.004968px;}
.x5e{left:608.858513px;}
.x65{left:722.624968px;}
.x40{left:747.644968px;}
.x42{left:754.814968px;}
.x41{left:756.464968px;}
.x2d{left:768.089968px;}
.x2c{left:770.369968px;}
.x1{left:789.194968px;}
.x2e{left:792.029968px;}
.x8{left:819.464968px;}
.x53{left:845.099968px;}
.x56{left:875.879968px;}
.x66{left:888.089968px;}
.x7{left:911.849968px;}
.x13{left:915.479968px;}
.x24{left:916.709968px;}
.x22{left:921.449968px;}
.x52{left:928.184968px;}
.x54{left:940.424968px;}
.x23{left:961.949968px;}
.x6{left:966.209968px;}
.x27{left:967.679968px;}
.x14{left:969.479968px;}
.x25{left:970.739968px;}
.x4b{left:973.589968px;}
.x15{left:975.059968px;}
.x47{left:977.864968px;}
.x9{left:980.249968px;}
.x57{left:1005.764968px;}
.x28{left:1008.539968px;}
.x26{left:1011.239968px;}
.x16{left:1029.059968px;}
.x64{left:1034.174968px;}
.x58{left:1045.229968px;}
.x3a{left:1105.124968px;}
.x55{left:1226.129968px;}
.x3b{left:1327.214968px;}
.x5f{left:1373.759968px;}
.x1e{left:1395.179968px;}
.x60{left:1409.429968px;}
.x6c{left:1417.934968px;}
.x20{left:1420.409968px;}
.x61{left:1437.734968px;}
.x5{left:1479.524968px;}
.x62{left:1480.649968px;}
.x6b{left:1486.694968px;}
.x21{left:1511.894968px;}
.x49{left:1514.594968px;}
.xf{left:1517.114968px;}
.x12{left:1527.374968px;}
.x1f{left:1530.329968px;}
.x63{left:1533.209968px;}
.x43{left:1540.769968px;}
.x45{left:1547.099968px;}
.x6a{left:1561.574968px;}
.x44{left:1564.019968px;}
.x59{left:1633.109968px;}
.x50{left:1635.584968px;}
.xd{left:1652.219968px;}
.x11{left:1654.844968px;}
.x5a{left:1709.969968px;}
.xe{left:1745.099968px;}
.x1d{left:1758.419968px;}
.x4{left:1779.374968px;}
.x4d{left:1787.579968px;}
@media print{
.v3{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:40.426667pt;}
.v1{vertical-align:77.333333pt;}
.lse{letter-spacing:-1.139923pt;}
.ls12{letter-spacing:-0.230400pt;}
.ls1{letter-spacing:-0.124267pt;}
.lsa{letter-spacing:-0.120533pt;}
.ls9{letter-spacing:-0.089600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.076800pt;}
.ls10{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.200960pt;}
.lsc{letter-spacing:0.265600pt;}
.lsb{letter-spacing:33.856000pt;}
.ls7{letter-spacing:67.200000pt;}
.ls8{letter-spacing:68.480000pt;}
.ls6{letter-spacing:99.155200pt;}
.ls5{letter-spacing:99.200000pt;}
.ls3{letter-spacing:102.451200pt;}
.ls4{letter-spacing:102.528000pt;}
.lsf{letter-spacing:139.763200pt;}
.ls2{letter-spacing:139.808000pt;}
.ws2d{word-spacing:-131.099136pt;}
.ws2c{word-spacing:-131.064960pt;}
.ws0{word-spacing:-94.399360pt;}
.ws8{word-spacing:-59.808000pt;}
.ws9{word-spacing:-39.815040pt;}
.ws2a{word-spacing:-37.346560pt;}
.ws29{word-spacing:-37.115136pt;}
.ws1{word-spacing:-37.080960pt;}
.ws1e{word-spacing:-36.432000pt;}
.ws2f{word-spacing:-35.543040pt;}
.ws30{word-spacing:-35.312640pt;}
.ws27{word-spacing:-35.169024pt;}
.ws28{word-spacing:-35.136640pt;}
.ws2e{word-spacing:-35.030400pt;}
.wsc{word-spacing:-33.711744pt;}
.wsa{word-spacing:-33.679360pt;}
.ws19{word-spacing:-32.384000pt;}
.ws5{word-spacing:-29.254656pt;}
.ws4{word-spacing:-29.220480pt;}
.ws7{word-spacing:-28.024320pt;}
.ws1a{word-spacing:-27.250560pt;}
.ws22{word-spacing:-26.804352pt;}
.ws1b{word-spacing:-26.772480pt;}
.ws6{word-spacing:-24.777600pt;}
.ws18{word-spacing:-18.491264pt;}
.ws16{word-spacing:-18.458880pt;}
.ws24{word-spacing:-13.210851pt;}
.wsd{word-spacing:-11.010560pt;}
.ws11{word-spacing:-8.852480pt;}
.ws3{word-spacing:-5.132373pt;}
.ws14{word-spacing:-4.748800pt;}
.ws15{word-spacing:-4.613120pt;}
.ws13{word-spacing:-4.480000pt;}
.ws10{word-spacing:-2.536960pt;}
.wsf{word-spacing:-1.671680pt;}
.wse{word-spacing:-1.134080pt;}
.ws2{word-spacing:0.000000pt;}
.ws12{word-spacing:0.106667pt;}
.ws1f{word-spacing:0.390827pt;}
.ws2b{word-spacing:0.993067pt;}
.ws20{word-spacing:2.031360pt;}
.ws21{word-spacing:2.464427pt;}
.ws23{word-spacing:53.491760pt;}
.ws17{word-spacing:213.236480pt;}
.ws26{word-spacing:358.919627pt;}
.ws25{word-spacing:397.383079pt;}
.ws1d{word-spacing:1188.716715pt;}
.wsb{word-spacing:3572.522453pt;}
.ws1c{word-spacing:3572.629120pt;}
._22{margin-left:-3430.821973pt;}
._23{margin-left:-3074.324267pt;}
._3{margin-left:-18.282880pt;}
._4{margin-left:-17.159253pt;}
._12{margin-left:-16.101973pt;}
._10{margin-left:-13.293653pt;}
._17{margin-left:-12.152320pt;}
._a{margin-left:-10.976000pt;}
._c{margin-left:-9.696640pt;}
._6{margin-left:-8.056960pt;}
._9{margin-left:-6.256640pt;}
._b{margin-left:-5.168000pt;}
._7{margin-left:-4.027520pt;}
._1{margin-left:-2.984960pt;}
._0{margin-left:-1.865600pt;}
._5{margin-left:-0.903040pt;}
._8{width:1.388800pt;}
._11{width:2.308864pt;}
._2{width:3.358080pt;}
._14{width:4.691200pt;}
._1d{width:5.854933pt;}
._e{width:7.097387pt;}
._1e{width:8.518400pt;}
._1c{width:9.429760pt;}
._15{width:10.572800pt;}
._18{width:12.257280pt;}
._1a{width:13.470720pt;}
._1b{width:15.279360pt;}
._20{width:17.822720pt;}
._1f{width:19.041280pt;}
._19{width:26.869333pt;}
._21{width:41.792555pt;}
._f{width:54.304000pt;}
._d{width:61.192960pt;}
._13{width:110.852267pt;}
._26{width:142.266227pt;}
._24{width:565.533229pt;}
._16{width:909.407360pt;}
._25{width:1007.543020pt;}
.fs17{font-size:34.560000pt;}
.fs19{font-size:40.320000pt;}
.fs18{font-size:43.520000pt;}
.fs16{font-size:47.360000pt;}
.fs2{font-size:53.120000pt;}
.fs23{font-size:58.455094pt;}
.fs3{font-size:64.000000pt;}
.fs1c{font-size:67.840000pt;}
.fs1d{font-size:72.960000pt;}
.fs1e{font-size:73.088000pt;}
.fs1a{font-size:85.120000pt;}
.fsa{font-size:88.960000pt;}
.fsb{font-size:89.088000pt;}
.fs7{font-size:92.800000pt;}
.fs13{font-size:96.000000pt;}
.fs9{font-size:104.960000pt;}
.fs1f{font-size:107.520000pt;}
.fs22{font-size:107.648000pt;}
.fs6{font-size:109.440000pt;}
.fs8{font-size:109.568000pt;}
.fs12{font-size:122.880000pt;}
.fs14{font-size:128.000000pt;}
.fs15{font-size:128.128000pt;}
.fs27{font-size:131.200000pt;}
.fsf{font-size:133.120000pt;}
.fse{font-size:133.248000pt;}
.fs4{font-size:138.880000pt;}
.fs11{font-size:139.008000pt;}
.fs21{font-size:144.000000pt;}
.fsc{font-size:149.120000pt;}
.fsd{font-size:149.248000pt;}
.fs10{font-size:170.880000pt;}
.fs20{font-size:171.008000pt;}
.fs5{font-size:224.000000pt;}
.fs1b{font-size:224.128000pt;}
.fs24{font-size:227.200000pt;}
.fs1{font-size:373.120000pt;}
.fs0{font-size:373.248000pt;}
.fs25{font-size:490.880000pt;}
.fs26{font-size:491.008000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:3.647364pt;}
.yaf{bottom:3.671661pt;}
.yaa{bottom:4.401134pt;}
.y4{bottom:22.592000pt;}
.y9b{bottom:22.633112pt;}
.ya9{bottom:22.641866pt;}
.ya6{bottom:22.662291pt;}
.yae{bottom:22.662661pt;}
.y45{bottom:41.280000pt;}
.y9f{bottom:41.648039pt;}
.yad{bottom:41.653271pt;}
.y88{bottom:56.960000pt;}
.ya3{bottom:60.614334pt;}
.yac{bottom:60.643882pt;}
.y90{bottom:61.920000pt;}
.y6c{bottom:67.232000pt;}
.ya2{bottom:79.609808pt;}
.y44{bottom:87.616000pt;}
.ya7{bottom:94.977739pt;}
.y5{bottom:99.552000pt;}
.yc6{bottom:100.064000pt;}
.y84{bottom:100.288000pt;}
.y69{bottom:112.416000pt;}
.y6a{bottom:126.272000pt;}
.y43{bottom:130.336000pt;}
.y22{bottom:133.466667pt;}
.ybc{bottom:136.573333pt;}
.y50{bottom:143.933333pt;}
.y1c{bottom:145.026667pt;}
.yc5{bottom:156.066667pt;}
.y9{bottom:156.293333pt;}
.ya4{bottom:159.977664pt;}
.y21{bottom:164.026667pt;}
.y7d{bottom:170.533333pt;}
.y1b{bottom:175.613333pt;}
.ybb{bottom:177.626667pt;}
.y94{bottom:190.973333pt;}
.y20{bottom:194.746667pt;}
.ycf{bottom:195.746667pt;}
.y7c{bottom:205.253333pt;}
.y8{bottom:205.760000pt;}
.y1a{bottom:206.333333pt;}
.ycc{bottom:207.426667pt;}
.y37{bottom:213.986667pt;}
.y38{bottom:215.653333pt;}
.yba{bottom:218.626667pt;}
.y42{bottom:223.266667pt;}
.y41{bottom:224.933333pt;}
.ya0{bottom:224.998014pt;}
.y1f{bottom:225.466667pt;}
.y83{bottom:234.746667pt;}
.y19{bottom:237.053333pt;}
.y4f{bottom:239.973333pt;}
.y68{bottom:240.453333pt;}
.yce{bottom:241.026667pt;}
.y97{bottom:244.170329pt;}
.yab{bottom:244.899802pt;}
.ycb{bottom:252.706667pt;}
.yb9{bottom:255.680000pt;}
.y1e{bottom:256.026667pt;}
.y29{bottom:261.786667pt;}
.y18{bottom:267.613333pt;}
.yc4{bottom:268.093333pt;}
.ycd{bottom:286.306667pt;}
.y93{bottom:287.426667pt;}
.y4e{bottom:287.973333pt;}
.y67{bottom:289.893333pt;}
.yca{bottom:297.986667pt;}
.y7{bottom:304.320000pt;}
.yb8{bottom:304.986667pt;}
.y35{bottom:315.546667pt;}
.y36{bottom:317.213333pt;}
.y28{bottom:317.786667pt;}
.yc3{bottom:324.093333pt;}
.y40{bottom:324.506667pt;}
.y3f{bottom:326.173333pt;}
.y7b{bottom:327.706667pt;}
.y78{bottom:328.386667pt;}
.y9d{bottom:335.294315pt;}
.ya8{bottom:335.500704pt;}
.y4d{bottom:335.973333pt;}
.y1d{bottom:345.573333pt;}
.y6{bottom:353.760000pt;}
.y17{bottom:354.106667pt;}
.yb7{bottom:354.266667pt;}
.y96{bottom:365.186667pt;}
.y81{bottom:369.186667pt;}
.y5d{bottom:374.373333pt;}
.y5c{bottom:385.093333pt;}
.y92{bottom:389.920000pt;}
.ya5{bottom:400.500629pt;}
.y8d{bottom:401.573333pt;}
.yb6{bottom:403.706667pt;}
.y33{bottom:405.213333pt;}
.y5b{bottom:405.346667pt;}
.y99{bottom:406.150448pt;}
.y56{bottom:411.653333pt;}
.y5a{bottom:416.066667pt;}
.y34{bottom:423.066667pt;}
.yc9{bottom:425.600000pt;}
.y3e{bottom:425.733333pt;}
.y3d{bottom:427.386667pt;}
.y27{bottom:429.826667pt;}
.y4c{bottom:432.000000pt;}
.y2c{bottom:432.546667pt;}
.yc2{bottom:436.133333pt;}
.y59{bottom:436.453333pt;}
.yb5{bottom:442.053333pt;}
.y32{bottom:445.213333pt;}
.y58{bottom:447.173333pt;}
.y55{bottom:459.653333pt;}
.ya1{bottom:465.520979pt;}
.y3{bottom:469.573333pt;}
.y61{bottom:474.213333pt;}
.y63{bottom:474.853333pt;}
.y95{bottom:476.000000pt;}
.y98{bottom:477.006581pt;}
.y4b{bottom:480.000000pt;}
.y2b{bottom:481.986667pt;}
.y26{bottom:485.826667pt;}
.y60{bottom:487.493333pt;}
.y62{bottom:488.133333pt;}
.yb4{bottom:491.360000pt;}
.y91{bottom:491.973333pt;}
.yc1{bottom:492.133333pt;}
.y57{bottom:493.186667pt;}
.y80{bottom:503.653333pt;}
.y82{bottom:511.866667pt;}
.y85{bottom:512.933333pt;}
.y3c{bottom:526.946667pt;}
.y4a{bottom:528.000000pt;}
.y3b{bottom:528.613333pt;}
.y10{bottom:529.506667pt;}
.y30{bottom:533.093333pt;}
.y31{bottom:533.280000pt;}
.y89{bottom:534.786667pt;}
.y16{bottom:538.720000pt;}
.yb3{bottom:540.800000pt;}
.y76{bottom:545.853333pt;}
.y66{bottom:547.933333pt;}
.y54{bottom:555.680000pt;}
.yf{bottom:561.506667pt;}
.y65{bottom:565.120000pt;}
.y75{bottom:569.893333pt;}
.y6f{bottom:570.266667pt;}
.y15{bottom:570.720000pt;}
.yc8{bottom:572.346667pt;}
.y9e{bottom:575.817280pt;}
.y2{bottom:581.600000pt;}
.yb2{bottom:581.853333pt;}
.y64{bottom:582.493333pt;}
.y8b{bottom:583.013333pt;}
.y6e{bottom:592.986667pt;}
.ye{bottom:593.506667pt;}
.y25{bottom:597.853333pt;}
.y8e{bottom:598.880000pt;}
.y14{bottom:602.720000pt;}
.y53{bottom:603.680000pt;}
.yc0{bottom:604.160000pt;}
.y74{bottom:605.626667pt;}
.y6d{bottom:615.706667pt;}
.y2e{bottom:616.453333pt;}
.yb1{bottom:622.906667pt;}
.y49{bottom:624.026667pt;}
.yd{bottom:625.506667pt;}
.y3a{bottom:628.186667pt;}
.y39{bottom:629.853333pt;}
.y5f{bottom:633.253333pt;}
.y13{bottom:634.720000pt;}
.y7f{bottom:636.253333pt;}
.y7e{bottom:636.293333pt;}
.y2d{bottom:637.146667pt;}
.y86{bottom:639.293333pt;}
.y73{bottom:641.373333pt;}
.y5e{bottom:646.533333pt;}
.y9a{bottom:646.673413pt;}
.ybf{bottom:660.160000pt;}
.y8c{bottom:668.640000pt;}
.y48{bottom:672.026667pt;}
.y77{bottom:677.120000pt;}
.y1{bottom:693.626667pt;}
.y24{bottom:697.853333pt;}
.y52{bottom:699.706667pt;}
.y8f{bottom:705.213333pt;}
.y12{bottom:712.226667pt;}
.yc{bottom:713.373333pt;}
.y72{bottom:715.360000pt;}
.yc7{bottom:719.066667pt;}
.y71{bottom:739.360000pt;}
.y11{bottom:750.946667pt;}
.yb{bottom:752.093333pt;}
.y23{bottom:753.853333pt;}
.y47{bottom:757.306667pt;}
.y70{bottom:763.386667pt;}
.ybe{bottom:772.160000pt;}
.y87{bottom:777.146667pt;}
.y2f{bottom:789.186667pt;}
.y7a{bottom:791.266667pt;}
.y51{bottom:795.706667pt;}
.y46{bottom:805.306667pt;}
.y8a{bottom:808.546667pt;}
.y79{bottom:811.266667pt;}
.ybd{bottom:828.186667pt;}
.y2a{bottom:932.000000pt;}
.y6b{bottom:933.053333pt;}
.yb0{bottom:934.373333pt;}
.ya{bottom:936.293333pt;}
.h19{height:29.064960pt;}
.h1b{height:33.909120pt;}
.h1a{height:37.253120pt;}
.h18{height:39.829760pt;}
.h3{height:44.673920pt;}
.h4{height:53.824000pt;}
.h1e{height:57.053440pt;}
.h2a{height:58.141126pt;}
.h1f{height:62.453760pt;}
.h21{height:62.563328pt;}
.h2e{height:64.266561pt;}
.h2d{height:64.290877pt;}
.h2b{height:70.126660pt;}
.h1c{height:71.585920pt;}
.hb{height:74.815360pt;}
.hc{height:74.923008pt;}
.h8{height:78.044800pt;}
.h15{height:80.736000pt;}
.h24{height:81.900000pt;}
.h28{height:81.997500pt;}
.h23{height:83.362500pt;}
.h25{height:83.460000pt;}
.ha{height:88.271360pt;}
.h2f{height:89.871060pt;}
.h7{height:92.039040pt;}
.h9{height:92.146688pt;}
.h20{height:102.880427pt;}
.h14{height:105.185280pt;}
.h16{height:107.648000pt;}
.h17{height:107.755648pt;}
.h2c{height:109.566828pt;}
.h22{height:109.568000pt;}
.h35{height:110.339200pt;}
.h36{height:111.953920pt;}
.h10{height:113.950720pt;}
.h13{height:114.060288pt;}
.h5{height:116.798080pt;}
.h12{height:116.905728pt;}
.h32{height:118.881280pt;}
.h31{height:118.990848pt;}
.h27{height:123.264000pt;}
.hd{height:125.409920pt;}
.he{height:125.517568pt;}
.h11{height:146.273280pt;}
.h26{height:146.382848pt;}
.h6{height:188.384000pt;}
.h1d{height:188.491648pt;}
.h30{height:191.075200pt;}
.hf{height:191.393621pt;}
.h2{height:319.390720pt;}
.h1{height:319.500288pt;}
.h33{height:412.830080pt;}
.h34{height:412.937728pt;}
.h29{height:522.302587pt;}
.h0{height:1080.000000pt;}
.w3{width:345.670327pt;}
.w2{width:794.383555pt;}
.w1{width:1919.999971pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x5c{left:2.431787pt;}
.x3c{left:69.535971pt;}
.x69{left:83.103971pt;}
.x2a{left:100.063971pt;}
.x29{left:107.039971pt;}
.x4e{left:113.695971pt;}
.x2b{left:121.343971pt;}
.x5b{left:127.690586pt;}
.x4f{left:131.199971pt;}
.x51{left:142.746638pt;}
.x17{left:175.773305pt;}
.xa{left:176.706638pt;}
.xc{left:178.306638pt;}
.x68{left:189.693305pt;}
.x19{left:208.573305pt;}
.x1b{left:224.186638pt;}
.x46{left:226.719971pt;}
.x4a{left:234.399971pt;}
.x39{left:246.813305pt;}
.x18{left:250.373305pt;}
.x4c{left:254.333305pt;}
.x36{left:257.146638pt;}
.x31{left:261.693305pt;}
.x10{left:266.746638pt;}
.x48{left:274.106638pt;}
.x32{left:277.693305pt;}
.x35{left:279.586638pt;}
.xb{left:301.893305pt;}
.x1c{left:303.653305pt;}
.x1a{left:310.239971pt;}
.x2{left:318.586638pt;}
.x5d{left:319.996253pt;}
.x3f{left:350.373305pt;}
.x3d{left:369.893305pt;}
.x3{left:377.666638pt;}
.x30{left:382.013305pt;}
.x2f{left:387.453305pt;}
.x3e{left:410.693305pt;}
.x33{left:485.693305pt;}
.x34{left:498.813305pt;}
.x37{left:508.253305pt;}
.x38{left:521.986638pt;}
.x67{left:536.893305pt;}
.x5e{left:541.207567pt;}
.x65{left:642.333305pt;}
.x40{left:664.573305pt;}
.x42{left:670.946638pt;}
.x41{left:672.413305pt;}
.x2d{left:682.746638pt;}
.x2c{left:684.773305pt;}
.x1{left:701.506638pt;}
.x2e{left:704.026638pt;}
.x8{left:728.413305pt;}
.x53{left:751.199971pt;}
.x56{left:778.559971pt;}
.x66{left:789.413305pt;}
.x7{left:810.533305pt;}
.x13{left:813.759971pt;}
.x24{left:814.853305pt;}
.x22{left:819.066638pt;}
.x52{left:825.053305pt;}
.x54{left:835.933305pt;}
.x23{left:855.066638pt;}
.x6{left:858.853305pt;}
.x27{left:860.159971pt;}
.x14{left:861.759971pt;}
.x25{left:862.879971pt;}
.x4b{left:865.413305pt;}
.x15{left:866.719971pt;}
.x47{left:869.213305pt;}
.x9{left:871.333305pt;}
.x57{left:894.013305pt;}
.x28{left:896.479971pt;}
.x26{left:898.879971pt;}
.x16{left:914.719971pt;}
.x64{left:919.266638pt;}
.x58{left:929.093305pt;}
.x3a{left:982.333305pt;}
.x55{left:1089.893305pt;}
.x3b{left:1179.746638pt;}
.x5f{left:1221.119971pt;}
.x1e{left:1240.159971pt;}
.x60{left:1252.826638pt;}
.x6c{left:1260.386638pt;}
.x20{left:1262.586638pt;}
.x61{left:1277.986638pt;}
.x5{left:1315.133305pt;}
.x62{left:1316.133305pt;}
.x6b{left:1321.506638pt;}
.x21{left:1343.906638pt;}
.x49{left:1346.306638pt;}
.xf{left:1348.546638pt;}
.x12{left:1357.666638pt;}
.x1f{left:1360.293305pt;}
.x63{left:1362.853305pt;}
.x43{left:1369.573305pt;}
.x45{left:1375.199971pt;}
.x6a{left:1388.066638pt;}
.x44{left:1390.239971pt;}
.x59{left:1451.653305pt;}
.x50{left:1453.853305pt;}
.xd{left:1468.639971pt;}
.x11{left:1470.973305pt;}
.x5a{left:1519.973305pt;}
.xe{left:1551.199971pt;}
.x1d{left:1563.039971pt;}
.x4{left:1581.666638pt;}
.x4d{left:1588.959971pt;}
}




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