
    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_06fc3ebf11401b62979a9b5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_fc52095dabb6217b994f23b3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a3aaa6b60abe41e8ebdb97b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_5cc73292aa24244eee0215db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_c37f931d5fba93f5fe17be9f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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;}
.m1{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v3{vertical-align:-46.079960px;}
.v2{vertical-align:-20.879789px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.160050px;}
.v1{vertical-align:23.039978px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.050057px;}
.lsd{letter-spacing:0.058134px;}
.lsc{letter-spacing:0.058201px;}
.ls8{letter-spacing:0.282231px;}
.ls6{letter-spacing:0.282303px;}
.ls3{letter-spacing:0.282371px;}
.ls7{letter-spacing:0.282505px;}
.ls2{letter-spacing:0.282510px;}
.ls12{letter-spacing:0.441036px;}
.lsa{letter-spacing:0.479362px;}
.ls10{letter-spacing:0.581688px;}
.ls9{letter-spacing:1.002384px;}
.ls5{letter-spacing:1.237662px;}
.lse{letter-spacing:3.457800px;}
.ls11{letter-spacing:4.079309px;}
.lsf{letter-spacing:4.177818px;}
.ls4{letter-spacing:11.279403px;}
.lsb{letter-spacing:16.417822px;}
.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;}
}
.ws2{word-spacing:-20.499188px;}
.ws5{word-spacing:-17.520638px;}
.ws3{word-spacing:-16.119000px;}
.ws0{word-spacing:-14.542479px;}
.ws4{word-spacing:-14.542200px;}
.ws6{word-spacing:-11.738813px;}
.ws7{word-spacing:-9.461160px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-5.493266px;}
._2{margin-left:-2.518242px;}
._0{margin-left:-1.225084px;}
._1{width:1.382073px;}
._3{width:2.617605px;}
._6{width:4.443926px;}
._5{width:5.642374px;}
._4{width:6.782464px;}
._7{width:7.836164px;}
._c{width:8.861817px;}
._8{width:10.356481px;}
._a{width:11.832062px;}
._9{width:13.396444px;}
._15{width:14.897080px;}
._b{width:16.503578px;}
._14{width:17.797722px;}
._e{width:19.425202px;}
._d{width:20.442204px;}
._f{width:21.784449px;}
._10{width:22.959067px;}
._11{width:24.237757px;}
._19{width:25.301443px;}
._12{width:27.217215px;}
._13{width:29.006718px;}
._1e{width:30.339437px;}
._1d{width:31.494433px;}
._16{width:35.230717px;}
._17{width:36.741083px;}
._1c{width:41.197315px;}
._1b{width:42.960603px;}
._1a{width:189.222885px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs9{font-size:37.844640px;}
.fs2{font-size:40.649195px;}
.fs8{font-size:46.955250px;}
.fs7{font-size:58.168800px;}
.fs3{font-size:58.169916px;}
.fs4{font-size:64.476000px;}
.fs0{font-size:64.478084px;}
.fs5{font-size:70.082550px;}
.fs1{font-size:70.084361px;}
.fs6{font-size:81.996750px;}
.y0{bottom:0.000000px;}
.y5{bottom:108.711335px;}
.y3e{bottom:108.900055px;}
.y4{bottom:128.875003px;}
.y3d{bottom:129.060036px;}
.y6b{bottom:160.200096px;}
.y157{bottom:161.100083px;}
.y98{bottom:165.240074px;}
.y39{bottom:167.392219px;}
.y6a{bottom:176.940033px;}
.y156{bottom:179.640060px;}
.ydb{bottom:181.980079px;}
.y38{bottom:184.314309px;}
.yda{bottom:193.860077px;}
.y155{bottom:198.000068px;}
.y69{bottom:198.900055px;}
.y37{bottom:200.872516px;}
.y68{bottom:210.600083px;}
.ye3{bottom:215.640060px;}
.y154{bottom:216.360077px;}
.y36{bottom:217.435231px;}
.y97{bottom:227.340088px;}
.y67{bottom:232.560036px;}
.y35{bottom:234.539348px;}
.y153{bottom:234.900055px;}
.y66{bottom:244.080093px;}
.y144{bottom:244.800041px;}
.y96{bottom:249.120072px;}
.y34{bottom:251.452597px;}
.y152{bottom:253.260064px;}
.y65{bottom:260.820099px;}
.yd9{bottom:266.040047px;}
.y33{bottom:268.197166px;}
.y151{bottom:271.980079px;}
.y64{bottom:277.740074px;}
.y143{bottom:282.240074px;}
.y95{bottom:282.780052px;}
.y32{bottom:285.119342px;}
.y150{bottom:290.340088px;}
.y63{bottom:294.480079px;}
.yc7{bottom:299.520058px;}
.y31{bottom:301.677549px;}
.y142{bottom:302.400055px;}
.y14f{bottom:308.700096px;}
.y94{bottom:311.400055px;}
.y62{bottom:311.940033px;}
.ye2{bottom:316.440033px;}
.y30{bottom:318.413277px;}
.y141{bottom:322.560036px;}
.y14e{bottom:327.240074px;}
.yba{bottom:327.960091px;}
.y93{bottom:333.000068px;}
.y2f{bottom:335.335453px;}
.y105{bottom:338.940033px;}
.y17f{bottom:340.920043px;}
.y140{bottom:342.720085px;}
.y92{bottom:344.880066px;}
.y14d{bottom:345.600083px;}
.yc6{bottom:349.920043px;}
.y2e{bottom:352.080109px;}
.y104{bottom:359.460091px;}
.y17e{bottom:361.080093px;}
.y91{bottom:361.620072px;}
.ye1{bottom:362.160049px;}
.y13f{bottom:362.880066px;}
.y14c{bottom:364.320099px;}
.y2d{bottom:369.002199px;}
.y90{bottom:378.360077px;}
.yd8{bottom:378.900055px;}
.y103{bottom:379.620072px;}
.y17d{bottom:381.240074px;}
.y14b{bottom:382.680039px;}
.y13e{bottom:383.040047px;}
.yf9{bottom:383.580093px;}
.y2c{bottom:385.560406px;}
.y8f{bottom:395.280052px;}
.yf8{bottom:395.820099px;}
.y102{bottom:399.780052px;}
.y14a{bottom:401.220085px;}
.y17c{bottom:401.400055px;}
.y2b{bottom:402.473741px;}
.y13d{bottom:402.660049px;}
.y61{bottom:404.640060px;}
.yb9{bottom:412.020058px;}
.yc5{bottom:412.560036px;}
.yd7{bottom:413.100083px;}
.y124{bottom:416.520058px;}
.y8e{bottom:417.240074px;}
.y2a{bottom:419.218310px;}
.y13c{bottom:419.220085px;}
.y101{bottom:419.940033px;}
.y17b{bottom:421.380066px;}
.y60{bottom:424.800041px;}
.y8d{bottom:428.760064px;}
.yc4{bottom:433.260064px;}
.y13b{bottom:436.140060px;}
.y29{bottom:436.140487px;}
.y123{bottom:436.680039px;}
.y149{bottom:439.740074px;}
.y100{bottom:440.100083px;}
.y5f{bottom:444.960091px;}
.y8c{bottom:445.500068px;}
.y28{bottom:452.876215px;}
.y13a{bottom:452.880066px;}
.yc3{bottom:453.420043px;}
.y122{bottom:456.840088px;}
.y17a{bottom:458.100083px;}
.y148{bottom:459.720085px;}
.yff{bottom:460.080093px;}
.ye5{bottom:462.420043px;}
.y5e{bottom:465.120072px;}
.y8b{bottom:467.460091px;}
.y27{bottom:469.798391px;}
.y139{bottom:470.160049px;}
.yc2{bottom:473.580093px;}
.y179{bottom:476.640060px;}
.y121{bottom:476.820099px;}
.y8a{bottom:479.160049px;}
.y147{bottom:479.880066px;}
.yfe{bottom:480.240074px;}
.yb8{bottom:484.200096px;}
.y5d{bottom:485.280052px;}
.y26{bottom:486.356598px;}
.y138{bottom:490.320099px;}
.yc1{bottom:493.740074px;}
.y178{bottom:495.180039px;}
.y89{bottom:496.080093px;}
.y120{bottom:496.980079px;}
.yfd{bottom:500.400055px;}
.y25{bottom:503.101167px;}
.y5c{bottom:505.440033px;}
.y137{bottom:510.480079px;}
.y88{bottom:512.820099px;}
.ye0{bottom:513.360077px;}
.y177{bottom:513.720085px;}
.yc0{bottom:513.900055px;}
.y11f{bottom:517.140060px;}
.y24{bottom:520.018923px;}
.yfc{bottom:520.560036px;}
.y5b{bottom:525.600083px;}
.yb7{bottom:529.380066px;}
.ydf{bottom:530.100083px;}
.y136{bottom:530.640060px;}
.y176{bottom:532.080093px;}
.ybf{bottom:533.520058px;}
.yd6{bottom:534.060036px;}
.y87{bottom:534.600083px;}
.y23{bottom:536.759071px;}
.y11e{bottom:537.300041px;}
.yfb{bottom:540.720085px;}
.y5a{bottom:545.760064px;}
.yb6{bottom:546.300041px;}
.y86{bottom:546.840088px;}
.yde{bottom:547.020058px;}
.ybe{bottom:550.260064px;}
.y175{bottom:550.440033px;}
.y135{bottom:550.800041px;}
.ye4{bottom:551.340088px;}
.y22{bottom:553.676784px;}
.yd5{bottom:554.220085px;}
.y11d{bottom:557.460091px;}
.yfa{bottom:560.880066px;}
.yb5{bottom:563.040047px;}
.ydd{bottom:563.580093px;}
.y59{bottom:565.920043px;}
.ybd{bottom:567.180039px;}
.y174{bottom:568.980079px;}
.y21{bottom:570.416976px;}
.y134{bottom:570.960091px;}
.yd4{bottom:574.380066px;}
.y11c{bottom:577.620072px;}
.y85{bottom:581.040047px;}
.ybc{bottom:583.740074px;}
.yb4{bottom:585.000068px;}
.y58{bottom:586.080093px;}
.y20{bottom:587.157167px;}
.y173{bottom:587.520058px;}
.y133{bottom:591.120072px;}
.yd3{bottom:594.540047px;}
.yb3{bottom:596.700096px;}
.y11b{bottom:597.780052px;}
.y84{bottom:601.200096px;}
.y1f{bottom:603.542318px;}
.y172{bottom:606.060036px;}
.y57{bottom:606.240074px;}
.y132{bottom:611.280052px;}
.yb2{bottom:613.620072px;}
.yd2{bottom:614.520058px;}
.y11a{bottom:617.940033px;}
.y1e{bottom:620.815028px;}
.y83{bottom:621.180039px;}
.y171{bottom:624.420043px;}
.yb1{bottom:630.180039px;}
.y131{bottom:631.440033px;}
.yd1{bottom:634.680039px;}
.y56{bottom:635.940033px;}
.y1d{bottom:637.559684px;}
.y119{bottom:638.100083px;}
.y82{bottom:641.340088px;}
.y170{bottom:642.780052px;}
.yb0{bottom:647.100083px;}
.y130{bottom:651.600083px;}
.y1c{bottom:654.295412px;}
.yd0{bottom:654.840088px;}
.y55{bottom:656.280052px;}
.y118{bottom:658.260064px;}
.y81{bottom:661.140060px;}
.y16f{bottom:661.320099px;}
.ybb{bottom:661.500068px;}
.yaf{bottom:663.840088px;}
.y1b{bottom:671.217545px;}
.y12f{bottom:671.760064px;}
.yf7{bottom:674.460091px;}
.ycf{bottom:675.000068px;}
.y54{bottom:676.440033px;}
.y117{bottom:677.880066px;}
.y16e{bottom:679.860077px;}
.yae{bottom:680.580093px;}
.ydc{bottom:681.300041px;}
.y80{bottom:681.660049px;}
.y1a{bottom:687.775796px;}
.yf6{bottom:691.380066px;}
.y12e{bottom:691.920078px;}
.y116{bottom:694.620072px;}
.yce{bottom:695.160049px;}
.y53{bottom:696.240074px;}
.yad{bottom:697.500068px;}
.y16d{bottom:698.400055px;}
.y7f{bottom:701.820065px;}
.y19{bottom:704.697928px;}
.yf5{bottom:708.120072px;}
.y115{bottom:711.540081px;}
.y12d{bottom:712.080059px;}
.y52{bottom:712.800076px;}
.ycd{bottom:715.320065px;}
.y16c{bottom:716.760064px;}
.yac{bottom:719.280052px;}
.y18{bottom:721.078615px;}
.y7e{bottom:721.980079px;}
.yf4{bottom:724.860077px;}
.y114{bottom:728.280052px;}
.y51{bottom:729.540081px;}
.yab{bottom:731.520058px;}
.y12c{bottom:732.240074px;}
.y16b{bottom:735.120072px;}
.ycc{bottom:735.480079px;}
.y17{bottom:738.000748px;}
.yf3{bottom:741.600083px;}
.y7d{bottom:742.140060px;}
.y113{bottom:745.020058px;}
.y50{bottom:746.640060px;}
.y12b{bottom:752.400055px;}
.y16a{bottom:753.660049px;}
.y16{bottom:755.100445px;}
.yaa{bottom:755.640060px;}
.yf2{bottom:758.520058px;}
.y112{bottom:761.760064px;}
.y7c{bottom:762.300076px;}
.y4f{bottom:763.560070px;}
.y15{bottom:771.836173px;}
.y169{bottom:772.200061px;}
.y12a{bottom:772.380066px;}
.ycb{bottom:775.260064px;}
.ya9{bottom:775.800076px;}
.y111{bottom:778.680073px;}
.y4e{bottom:780.300076px;}
.y7b{bottom:782.460056px;}
.y14{bottom:788.216860px;}
.y168{bottom:790.740074px;}
.yca{bottom:792.000068px;}
.y129{bottom:792.540081px;}
.y110{bottom:795.420078px;}
.ya8{bottom:795.960056px;}
.y4d{bottom:796.680073px;}
.y7a{bottom:802.620072px;}
.y13{bottom:805.139036px;}
.yc9{bottom:808.740074px;}
.y167{bottom:809.100083px;}
.y10f{bottom:812.160049px;}
.y128{bottom:812.700061px;}
.y4c{bottom:813.420078px;}
.ya7{bottom:816.120072px;}
.y12{bottom:822.238690px;}
.y79{bottom:822.780052px;}
.yc8{bottom:825.480079px;}
.y166{bottom:827.460056px;}
.y10e{bottom:828.900055px;}
.y4b{bottom:830.700061px;}
.y127{bottom:832.320065px;}
.ya6{bottom:836.280052px;}
.y11{bottom:838.620286px;}
.yf1{bottom:842.400055px;}
.y78{bottom:842.940067px;}
.y10d{bottom:845.640060px;}
.y165{bottom:846.000068px;}
.y4a{bottom:847.440067px;}
.y126{bottom:849.060070px;}
.y10{bottom:855.541509px;}
.ya5{bottom:856.440067px;}
.yf0{bottom:859.140060px;}
.y10c{bottom:862.560070px;}
.y77{bottom:863.100083px;}
.y49{bottom:864.180073px;}
.y164{bottom:864.360077px;}
.y125{bottom:865.800076px;}
.yf{bottom:872.455668px;}
.yef{bottom:876.060070px;}
.ya4{bottom:876.600083px;}
.y10b{bottom:879.300076px;}
.y48{bottom:880.740074px;}
.y163{bottom:883.080059px;}
.y76{bottom:883.260064px;}
.ye{bottom:889.021893px;}
.yee{bottom:892.800076px;}
.y10a{bottom:896.220051px;}
.ya3{bottom:896.760064px;}
.y162{bottom:901.440067px;}
.y75{bottom:903.420078px;}
.yd{bottom:905.758531px;}
.y47{bottom:907.920078px;}
.yed{bottom:909.540081px;}
.y109{bottom:912.960056px;}
.ya2{bottom:916.740074px;}
.y161{bottom:919.980079px;}
.yc{bottom:923.041924px;}
.y74{bottom:923.400055px;}
.yec{bottom:926.280052px;}
.y46{bottom:928.620072px;}
.y108{bottom:929.700061px;}
.ya1{bottom:936.900055px;}
.y160{bottom:938.340054px;}
.yb{bottom:939.778562px;}
.yeb{bottom:943.020058px;}
.y146{bottom:943.200061px;}
.y73{bottom:943.560070px;}
.y107{bottom:946.440067px;}
.y45{bottom:948.780053px;}
.ya{bottom:956.337658px;}
.y15f{bottom:956.700061px;}
.ya0{bottom:957.060070px;}
.yea{bottom:959.940067px;}
.y145{bottom:963.360077px;}
.y72{bottom:963.720051px;}
.y9{bottom:972.896775px;}
.y15e{bottom:975.420061px;}
.ye9{bottom:976.680073px;}
.y9f{bottom:977.220068px;}
.y44{bottom:978.300058px;}
.y71{bottom:983.880066px;}
.y8{bottom:988.557528px;}
.ye8{bottom:993.600065px;}
.y15d{bottom:993.780069px;}
.y9e{bottom:997.380066px;}
.y43{bottom:998.280069px;}
.y7{bottom:1000.436700px;}
.y70{bottom:1004.040064px;}
.y6{bottom:1009.800427px;}
.ye7{bottom:1010.160067px;}
.y15c{bottom:1012.320065px;}
.y42{bottom:1017.180073px;}
.y9d{bottom:1017.540064px;}
.y6f{bottom:1024.200061px;}
.ye6{bottom:1027.080059px;}
.y15b{bottom:1030.680073px;}
.y9c{bottom:1037.160067px;}
.y41{bottom:1037.340070px;}
.y6e{bottom:1044.360060px;}
.y15a{bottom:1049.040064px;}
.y9b{bottom:1054.080059px;}
.y40{bottom:1058.040064px;}
.y6d{bottom:1064.520058px;}
.y159{bottom:1067.760064px;}
.y9a{bottom:1070.640060px;}
.y3f{bottom:1081.440067px;}
.y106{bottom:1084.320065px;}
.y6c{bottom:1084.680073px;}
.y158{bottom:1086.120072px;}
.y99{bottom:1087.560070px;}
.y3{bottom:1104.659825px;}
.y3c{bottom:1104.840070px;}
.y2{bottom:1124.636281px;}
.y3b{bottom:1124.820065px;}
.y1{bottom:1142.998999px;}
.y3a{bottom:1143.180064px;}
.h5{height:29.434939px;}
.h11{height:33.927128px;}
.hd{height:42.121255px;}
.h6{height:42.122063px;}
.hc{height:46.688432px;}
.h4{height:48.893781px;}
.hb{height:50.748253px;}
.hf{height:51.181727px;}
.he{height:52.147420px;}
.h7{height:52.148421px;}
.h1b{height:54.087178px;}
.h8{height:56.731324px;}
.h2{height:56.733158px;}
.h1d{height:57.801727px;}
.ha{height:59.375576px;}
.h16{height:61.664431px;}
.h9{height:62.827911px;}
.h3{height:62.829534px;}
.h1a{height:64.355095px;}
.h13{height:64.355230px;}
.h10{height:65.134625px;}
.h15{height:65.134630px;}
.h12{height:65.134693px;}
.h1c{height:65.134697px;}
.h14{height:65.134760px;}
.h19{height:65.134765px;}
.h18{height:65.854639px;}
.h17{height:65.854643px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:124.381726px;}
.x1c{left:125.816242px;}
.x1a{left:127.981939px;}
.x1f{left:129.238745px;}
.x21{left:133.918075px;}
.x1d{left:135.359504px;}
.x1e{left:136.616309px;}
.x19{left:138.235254px;}
.x20{left:140.578468px;}
.x18{left:146.159571px;}
.x17{left:148.318172px;}
.x1b{left:150.299246px;}
.x25{left:152.997491px;}
.x22{left:155.156081px;}
.x2b{left:165.599997px;}
.x2a{left:175.860008px;}
.x13{left:238.680923px;}
.x12{left:242.096329px;}
.x1{left:262.258922px;}
.x11{left:288.534511px;}
.x23{left:292.319142px;}
.xf{left:305.100294px;}
.x8{left:309.595012px;}
.x14{left:313.557159px;}
.xb{left:318.058962px;}
.x15{left:320.395079px;}
.xd{left:323.093313px;}
.xe{left:342.179837px;}
.x16{left:354.059216px;}
.x27{left:365.759994px;}
.xa{left:375.119695px;}
.x26{left:379.074757px;}
.x9{left:395.818078px;}
.x10{left:397.614517px;}
.xc{left:407.697435px;}
.x6{left:412.015902px;}
.x7{left:416.693977px;}
.x24{left:421.373274px;}
.x2{left:446.944423px;}
.x29{left:464.759994px;}
.x28{left:575.100014px;}
.x5{left:645.120305px;}
.x2c{left:734.220017px;}
.x4{left:743.219100px;}
@media print{
.v3{vertical-align:-40.959964pt;}
.v2{vertical-align:-18.559812pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.920044pt;}
.v1{vertical-align:20.479980pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.044495pt;}
.lsd{letter-spacing:0.051674pt;}
.lsc{letter-spacing:0.051734pt;}
.ls8{letter-spacing:0.250872pt;}
.ls6{letter-spacing:0.250936pt;}
.ls3{letter-spacing:0.250996pt;}
.ls7{letter-spacing:0.251116pt;}
.ls2{letter-spacing:0.251120pt;}
.ls12{letter-spacing:0.392032pt;}
.lsa{letter-spacing:0.426100pt;}
.ls10{letter-spacing:0.517056pt;}
.ls9{letter-spacing:0.891008pt;}
.ls5{letter-spacing:1.100144pt;}
.lse{letter-spacing:3.073600pt;}
.ls11{letter-spacing:3.626052pt;}
.lsf{letter-spacing:3.713616pt;}
.ls4{letter-spacing:10.026136pt;}
.lsb{letter-spacing:14.593620pt;}
.ws2{word-spacing:-18.221500pt;}
.ws5{word-spacing:-15.573900pt;}
.ws3{word-spacing:-14.328000pt;}
.ws0{word-spacing:-12.926648pt;}
.ws4{word-spacing:-12.926400pt;}
.ws6{word-spacing:-10.434500pt;}
.ws7{word-spacing:-8.409920pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-4.882903pt;}
._2{margin-left:-2.238437pt;}
._0{margin-left:-1.088963pt;}
._1{width:1.228509pt;}
._3{width:2.326760pt;}
._6{width:3.950157pt;}
._5{width:5.015443pt;}
._4{width:6.028857pt;}
._7{width:6.965479pt;}
._c{width:7.877171pt;}
._8{width:9.205761pt;}
._a{width:10.517389pt;}
._9{width:11.907950pt;}
._15{width:13.241849pt;}
._b{width:14.669847pt;}
._14{width:15.820197pt;}
._e{width:17.266847pt;}
._d{width:18.170848pt;}
._f{width:19.363955pt;}
._10{width:20.408060pt;}
._11{width:21.544673pt;}
._19{width:22.490172pt;}
._12{width:24.193080pt;}
._13{width:25.783749pt;}
._1e{width:26.968388pt;}
._1d{width:27.995052pt;}
._16{width:31.316193pt;}
._17{width:32.658740pt;}
._1c{width:36.619836pt;}
._1b{width:38.187203pt;}
._1a{width:168.198120pt;}
.fs9{font-size:33.639680pt;}
.fs2{font-size:36.132617pt;}
.fs8{font-size:41.738000pt;}
.fs7{font-size:51.705600pt;}
.fs3{font-size:51.706592pt;}
.fs4{font-size:57.312000pt;}
.fs0{font-size:57.313852pt;}
.fs5{font-size:62.295600pt;}
.fs1{font-size:62.297210pt;}
.fs6{font-size:72.886000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:96.632298pt;}
.y3e{bottom:96.800049pt;}
.y4{bottom:114.555558pt;}
.y3d{bottom:114.720032pt;}
.y6b{bottom:142.400086pt;}
.y157{bottom:143.200074pt;}
.y98{bottom:146.880066pt;}
.y39{bottom:148.793084pt;}
.y6a{bottom:157.280030pt;}
.y156{bottom:159.680054pt;}
.ydb{bottom:161.760071pt;}
.y38{bottom:163.834941pt;}
.yda{bottom:172.320069pt;}
.y155{bottom:176.000061pt;}
.y69{bottom:176.800049pt;}
.y37{bottom:178.553348pt;}
.y68{bottom:187.200074pt;}
.ye3{bottom:191.680054pt;}
.y154{bottom:192.320069pt;}
.y36{bottom:193.275761pt;}
.y97{bottom:202.080079pt;}
.y67{bottom:206.720032pt;}
.y35{bottom:208.479421pt;}
.y153{bottom:208.800049pt;}
.y66{bottom:216.960083pt;}
.y144{bottom:217.600037pt;}
.y96{bottom:221.440064pt;}
.y34{bottom:223.513419pt;}
.y152{bottom:225.120057pt;}
.y65{bottom:231.840088pt;}
.yd9{bottom:236.480042pt;}
.y33{bottom:238.397481pt;}
.y151{bottom:241.760071pt;}
.y64{bottom:246.880066pt;}
.y143{bottom:250.880066pt;}
.y95{bottom:251.360047pt;}
.y32{bottom:253.439415pt;}
.y150{bottom:258.080079pt;}
.y63{bottom:261.760071pt;}
.yc7{bottom:266.240052pt;}
.y31{bottom:268.157822pt;}
.y142{bottom:268.800049pt;}
.y14f{bottom:274.400086pt;}
.y94{bottom:276.800049pt;}
.y62{bottom:277.280030pt;}
.ye2{bottom:281.280030pt;}
.y30{bottom:283.034024pt;}
.y141{bottom:286.720032pt;}
.y14e{bottom:290.880066pt;}
.yba{bottom:291.520081pt;}
.y93{bottom:296.000061pt;}
.y2f{bottom:298.075959pt;}
.y105{bottom:301.280030pt;}
.y17f{bottom:303.040039pt;}
.y140{bottom:304.640076pt;}
.y92{bottom:306.560059pt;}
.y14d{bottom:307.200074pt;}
.yc6{bottom:311.040039pt;}
.y2e{bottom:312.960097pt;}
.y104{bottom:319.520081pt;}
.y17e{bottom:320.960083pt;}
.y91{bottom:321.440064pt;}
.ye1{bottom:321.920044pt;}
.y13f{bottom:322.560059pt;}
.y14c{bottom:323.840088pt;}
.y2d{bottom:328.001955pt;}
.y90{bottom:336.320069pt;}
.yd8{bottom:336.800049pt;}
.y103{bottom:337.440064pt;}
.y17d{bottom:338.880066pt;}
.y14b{bottom:340.160035pt;}
.y13e{bottom:340.480042pt;}
.yf9{bottom:340.960083pt;}
.y2c{bottom:342.720361pt;}
.y8f{bottom:351.360047pt;}
.yf8{bottom:351.840088pt;}
.y102{bottom:355.360047pt;}
.y14a{bottom:356.640076pt;}
.y17c{bottom:356.800049pt;}
.y2b{bottom:357.754437pt;}
.y13d{bottom:357.920044pt;}
.y61{bottom:359.680054pt;}
.yb9{bottom:366.240052pt;}
.yc5{bottom:366.720032pt;}
.yd7{bottom:367.200074pt;}
.y124{bottom:370.240052pt;}
.y8e{bottom:370.880066pt;}
.y2a{bottom:372.638498pt;}
.y13c{bottom:372.640076pt;}
.y101{bottom:373.280030pt;}
.y17b{bottom:374.560059pt;}
.y60{bottom:377.600037pt;}
.y8d{bottom:381.120057pt;}
.yc4{bottom:385.120057pt;}
.y13b{bottom:387.680054pt;}
.y29{bottom:387.680433pt;}
.y123{bottom:388.160035pt;}
.y149{bottom:390.880066pt;}
.y100{bottom:391.200074pt;}
.y5f{bottom:395.520081pt;}
.y8c{bottom:396.000061pt;}
.y28{bottom:402.556635pt;}
.y13a{bottom:402.560059pt;}
.yc3{bottom:403.040039pt;}
.y122{bottom:406.080079pt;}
.y17a{bottom:407.200074pt;}
.y148{bottom:408.640076pt;}
.yff{bottom:408.960083pt;}
.ye5{bottom:411.040039pt;}
.y5e{bottom:413.440064pt;}
.y8b{bottom:415.520081pt;}
.y27{bottom:417.598570pt;}
.y139{bottom:417.920044pt;}
.yc2{bottom:420.960083pt;}
.y179{bottom:423.680054pt;}
.y121{bottom:423.840088pt;}
.y8a{bottom:425.920044pt;}
.y147{bottom:426.560059pt;}
.yfe{bottom:426.880066pt;}
.yb8{bottom:430.400086pt;}
.y5d{bottom:431.360047pt;}
.y26{bottom:432.316976pt;}
.y138{bottom:435.840088pt;}
.yc1{bottom:438.880066pt;}
.y178{bottom:440.160035pt;}
.y89{bottom:440.960083pt;}
.y120{bottom:441.760071pt;}
.yfd{bottom:444.800049pt;}
.y25{bottom:447.201038pt;}
.y5c{bottom:449.280030pt;}
.y137{bottom:453.760071pt;}
.y88{bottom:455.840088pt;}
.ye0{bottom:456.320069pt;}
.y177{bottom:456.640076pt;}
.yc0{bottom:456.800049pt;}
.y11f{bottom:459.680054pt;}
.y24{bottom:462.239043pt;}
.yfc{bottom:462.720032pt;}
.y5b{bottom:467.200074pt;}
.yb7{bottom:470.560059pt;}
.ydf{bottom:471.200074pt;}
.y136{bottom:471.680054pt;}
.y176{bottom:472.960083pt;}
.ybf{bottom:474.240052pt;}
.yd6{bottom:474.720032pt;}
.y87{bottom:475.200074pt;}
.y23{bottom:477.119175pt;}
.y11e{bottom:477.600037pt;}
.yfb{bottom:480.640076pt;}
.y5a{bottom:485.120057pt;}
.yb6{bottom:485.600037pt;}
.y86{bottom:486.080079pt;}
.yde{bottom:486.240052pt;}
.ybe{bottom:489.120057pt;}
.y175{bottom:489.280030pt;}
.y135{bottom:489.600037pt;}
.ye4{bottom:490.080079pt;}
.y22{bottom:492.157141pt;}
.yd5{bottom:492.640076pt;}
.y11d{bottom:495.520081pt;}
.yfa{bottom:498.560059pt;}
.yb5{bottom:500.480042pt;}
.ydd{bottom:500.960083pt;}
.y59{bottom:503.040039pt;}
.ybd{bottom:504.160035pt;}
.y174{bottom:505.760071pt;}
.y21{bottom:507.037312pt;}
.y134{bottom:507.520081pt;}
.yd4{bottom:510.560059pt;}
.y11c{bottom:513.440064pt;}
.y85{bottom:516.480042pt;}
.ybc{bottom:518.880066pt;}
.yb4{bottom:520.000061pt;}
.y58{bottom:520.960083pt;}
.y20{bottom:521.917482pt;}
.y173{bottom:522.240052pt;}
.y133{bottom:525.440064pt;}
.yd3{bottom:528.480042pt;}
.yb3{bottom:530.400086pt;}
.y11b{bottom:531.360047pt;}
.y84{bottom:534.400086pt;}
.y1f{bottom:536.482061pt;}
.y172{bottom:538.720032pt;}
.y57{bottom:538.880066pt;}
.y132{bottom:543.360047pt;}
.yb2{bottom:545.440064pt;}
.yd2{bottom:546.240052pt;}
.y11a{bottom:549.280030pt;}
.y1e{bottom:551.835581pt;}
.y83{bottom:552.160035pt;}
.y171{bottom:555.040039pt;}
.yb1{bottom:560.160035pt;}
.y131{bottom:561.280030pt;}
.yd1{bottom:564.160035pt;}
.y56{bottom:565.280030pt;}
.y1d{bottom:566.719719pt;}
.y119{bottom:567.200074pt;}
.y82{bottom:570.080079pt;}
.y170{bottom:571.360047pt;}
.yb0{bottom:575.200074pt;}
.y130{bottom:579.200074pt;}
.y1c{bottom:581.595922pt;}
.yd0{bottom:582.080079pt;}
.y55{bottom:583.360047pt;}
.y118{bottom:585.120057pt;}
.y81{bottom:587.680054pt;}
.y16f{bottom:587.840088pt;}
.ybb{bottom:588.000061pt;}
.yaf{bottom:590.080079pt;}
.y1b{bottom:596.637818pt;}
.y12f{bottom:597.120057pt;}
.yf7{bottom:599.520081pt;}
.ycf{bottom:600.000061pt;}
.y54{bottom:601.280030pt;}
.y117{bottom:602.560059pt;}
.y16e{bottom:604.320069pt;}
.yae{bottom:604.960083pt;}
.ydc{bottom:605.600037pt;}
.y80{bottom:605.920044pt;}
.y1a{bottom:611.356263pt;}
.yf6{bottom:614.560059pt;}
.y12e{bottom:615.040070pt;}
.y116{bottom:617.440064pt;}
.yce{bottom:617.920044pt;}
.y53{bottom:618.880066pt;}
.yad{bottom:620.000061pt;}
.y16d{bottom:620.800049pt;}
.y7f{bottom:623.840058pt;}
.y19{bottom:626.398159pt;}
.yf5{bottom:629.440064pt;}
.y115{bottom:632.480072pt;}
.y12d{bottom:632.960053pt;}
.y52{bottom:633.600068pt;}
.ycd{bottom:635.840058pt;}
.y16c{bottom:637.120057pt;}
.yac{bottom:639.360047pt;}
.y18{bottom:640.958769pt;}
.y7e{bottom:641.760071pt;}
.yf4{bottom:644.320069pt;}
.y114{bottom:647.360047pt;}
.y51{bottom:648.480072pt;}
.yab{bottom:650.240052pt;}
.y12c{bottom:650.880066pt;}
.y16b{bottom:653.440064pt;}
.ycc{bottom:653.760071pt;}
.y17{bottom:656.000665pt;}
.yf3{bottom:659.200074pt;}
.y7d{bottom:659.680054pt;}
.y113{bottom:662.240052pt;}
.y50{bottom:663.680054pt;}
.y12b{bottom:668.800049pt;}
.y16a{bottom:669.920044pt;}
.y16{bottom:671.200396pt;}
.yaa{bottom:671.680054pt;}
.yf2{bottom:674.240052pt;}
.y112{bottom:677.120057pt;}
.y7c{bottom:677.600068pt;}
.y4f{bottom:678.720063pt;}
.y15{bottom:686.076598pt;}
.y169{bottom:686.400055pt;}
.y12a{bottom:686.560059pt;}
.ycb{bottom:689.120057pt;}
.ya9{bottom:689.600068pt;}
.y111{bottom:692.160065pt;}
.y4e{bottom:693.600068pt;}
.y7b{bottom:695.520050pt;}
.y14{bottom:700.637209pt;}
.y168{bottom:702.880066pt;}
.yca{bottom:704.000061pt;}
.y129{bottom:704.480072pt;}
.y110{bottom:707.040070pt;}
.ya8{bottom:707.520050pt;}
.y4d{bottom:708.160065pt;}
.y7a{bottom:713.440064pt;}
.y13{bottom:715.679143pt;}
.yc9{bottom:718.880066pt;}
.y167{bottom:719.200074pt;}
.y10f{bottom:721.920044pt;}
.y128{bottom:722.400055pt;}
.y4c{bottom:723.040070pt;}
.ya7{bottom:725.440064pt;}
.y12{bottom:730.878835pt;}
.y79{bottom:731.360047pt;}
.yc8{bottom:733.760071pt;}
.y166{bottom:735.520050pt;}
.y10e{bottom:736.800049pt;}
.y4b{bottom:738.400055pt;}
.y127{bottom:739.840058pt;}
.ya6{bottom:743.360047pt;}
.y11{bottom:745.440255pt;}
.yf1{bottom:748.800049pt;}
.y78{bottom:749.280060pt;}
.y10d{bottom:751.680054pt;}
.y165{bottom:752.000061pt;}
.y4a{bottom:753.280060pt;}
.y126{bottom:754.720063pt;}
.y10{bottom:760.481342pt;}
.ya5{bottom:761.280060pt;}
.yf0{bottom:763.680054pt;}
.y10c{bottom:766.720063pt;}
.y77{bottom:767.200074pt;}
.y49{bottom:768.160065pt;}
.y164{bottom:768.320069pt;}
.y125{bottom:769.600068pt;}
.yf{bottom:775.516149pt;}
.yef{bottom:778.720063pt;}
.ya4{bottom:779.200074pt;}
.y10b{bottom:781.600068pt;}
.y48{bottom:782.880066pt;}
.y163{bottom:784.960053pt;}
.y76{bottom:785.120057pt;}
.ye{bottom:790.241683pt;}
.yee{bottom:793.600068pt;}
.y10a{bottom:796.640046pt;}
.ya3{bottom:797.120057pt;}
.y162{bottom:801.280060pt;}
.y75{bottom:803.040070pt;}
.yd{bottom:805.118694pt;}
.y47{bottom:807.040070pt;}
.yed{bottom:808.480072pt;}
.y109{bottom:811.520050pt;}
.ya2{bottom:814.880066pt;}
.y161{bottom:817.760071pt;}
.yc{bottom:820.481710pt;}
.y74{bottom:820.800049pt;}
.yec{bottom:823.360047pt;}
.y46{bottom:825.440064pt;}
.y108{bottom:826.400055pt;}
.ya1{bottom:832.800049pt;}
.y160{bottom:834.080048pt;}
.yb{bottom:835.358722pt;}
.yeb{bottom:838.240052pt;}
.y146{bottom:838.400055pt;}
.y73{bottom:838.720063pt;}
.y107{bottom:841.280060pt;}
.y45{bottom:843.360047pt;}
.ya{bottom:850.077918pt;}
.y15f{bottom:850.400055pt;}
.ya0{bottom:850.720063pt;}
.yea{bottom:853.280060pt;}
.y145{bottom:856.320069pt;}
.y72{bottom:856.640046pt;}
.y9{bottom:864.797134pt;}
.y15e{bottom:867.040055pt;}
.ye9{bottom:868.160065pt;}
.y9f{bottom:868.640061pt;}
.y44{bottom:869.600052pt;}
.y71{bottom:874.560059pt;}
.y8{bottom:878.717802pt;}
.ye8{bottom:883.200058pt;}
.y15d{bottom:883.360062pt;}
.y9e{bottom:886.560059pt;}
.y43{bottom:887.360062pt;}
.y7{bottom:889.277067pt;}
.y70{bottom:892.480057pt;}
.y6{bottom:897.600379pt;}
.ye7{bottom:897.920060pt;}
.y15c{bottom:899.840058pt;}
.y42{bottom:904.160065pt;}
.y9d{bottom:904.480057pt;}
.y6f{bottom:910.400055pt;}
.ye6{bottom:912.960053pt;}
.y15b{bottom:916.160065pt;}
.y9c{bottom:921.920060pt;}
.y41{bottom:922.080063pt;}
.y6e{bottom:928.320054pt;}
.y15a{bottom:932.480057pt;}
.y9b{bottom:936.960053pt;}
.y40{bottom:940.480057pt;}
.y6d{bottom:946.240052pt;}
.y159{bottom:949.120057pt;}
.y9a{bottom:951.680054pt;}
.y3f{bottom:961.280060pt;}
.y106{bottom:963.840058pt;}
.y6c{bottom:964.160065pt;}
.y158{bottom:965.440064pt;}
.y99{bottom:966.720063pt;}
.y3{bottom:981.919845pt;}
.y3c{bottom:982.080063pt;}
.y2{bottom:999.676695pt;}
.y3b{bottom:999.840058pt;}
.y1{bottom:1015.999110pt;}
.y3a{bottom:1016.160057pt;}
.h5{height:26.164390pt;}
.h11{height:30.157447pt;}
.hd{height:37.441116pt;}
.h6{height:37.441834pt;}
.hc{height:41.500828pt;}
.h4{height:43.461139pt;}
.hb{height:45.109558pt;}
.hf{height:45.494869pt;}
.he{height:46.353263pt;}
.h7{height:46.354152pt;}
.h1b{height:48.077492pt;}
.h8{height:50.427844pt;}
.h2{height:50.429473pt;}
.h1d{height:51.379313pt;}
.ha{height:52.778290pt;}
.h16{height:54.812828pt;}
.h9{height:55.847032pt;}
.h3{height:55.848475pt;}
.h1a{height:57.204529pt;}
.h13{height:57.204649pt;}
.h10{height:57.897445pt;}
.h15{height:57.897449pt;}
.h12{height:57.897505pt;}
.h1c{height:57.897509pt;}
.h14{height:57.897565pt;}
.h19{height:57.897569pt;}
.h18{height:58.537457pt;}
.h17{height:58.537461pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:110.561534pt;}
.x1c{left:111.836659pt;}
.x1a{left:113.761724pt;}
.x1f{left:114.878884pt;}
.x21{left:119.038289pt;}
.x1d{left:120.319559pt;}
.x1e{left:121.436719pt;}
.x19{left:122.875782pt;}
.x20{left:124.958638pt;}
.x18{left:129.919619pt;}
.x17{left:131.838375pt;}
.x1b{left:133.599329pt;}
.x25{left:135.997770pt;}
.x22{left:137.916516pt;}
.x2b{left:147.199997pt;}
.x2a{left:156.320007pt;}
.x13{left:212.160821pt;}
.x12{left:215.196737pt;}
.x1{left:233.119041pt;}
.x11{left:256.475121pt;}
.x23{left:259.839238pt;}
.xf{left:271.200262pt;}
.x8{left:275.195566pt;}
.x14{left:278.717475pt;}
.xb{left:282.719078pt;}
.x15{left:284.795626pt;}
.xd{left:287.194056pt;}
.xe{left:304.159855pt;}
.x16{left:314.719303pt;}
.x27{left:325.119995pt;}
.xa{left:333.439729pt;}
.x26{left:336.955339pt;}
.x9{left:351.838291pt;}
.x10{left:353.435126pt;}
.xc{left:362.397720pt;}
.x6{left:366.236357pt;}
.x7{left:370.394646pt;}
.x24{left:374.554022pt;}
.x2{left:397.283932pt;}
.x29{left:413.119995pt;}
.x28{left:511.200012pt;}
.x5{left:573.440271pt;}
.x2c{left:652.640015pt;}
.x4{left:660.639200pt;}
}




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