
    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_ab7ebee6f502aed6c1b9a37b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_675ff3e7f83524cbd7b576e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_2c281832cf273df4954573ef.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_14ae27efb373928304f7345f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cd02d38158ef71d47d91a20f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_a4222949720f0c4a9068993c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-31.680036px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v4{vertical-align:25.920045px;}
.v2{vertical-align:31.679968px;}
.v5{vertical-align:47.519991px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.030382px;}
.ls4{letter-spacing:0.030454px;}
.ls1{letter-spacing:0.094301px;}
.ls3{letter-spacing:12.958983px;}
.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:-79.203150px;}
.ws1{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.760900px;}
.ws4{word-spacing:-19.800788px;}
.ws5{word-spacing:-13.860563px;}
.ws7{word-spacing:-11.520450px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:3.516677px;}
.ws8{word-spacing:255.763027px;}
.ws9{word-spacing:1571.615205px;}
._23{margin-left:-24.455879px;}
._13{margin-left:-11.839982px;}
._5{margin-left:-10.452661px;}
._c{margin-left:-8.422496px;}
._2{margin-left:-6.653052px;}
._3{margin-left:-4.910338px;}
._1a{margin-left:-3.854357px;}
._9{margin-left:-2.853629px;}
._4{margin-left:-1.552626px;}
._0{width:1.064507px;}
._8{width:2.468436px;}
._f{width:3.642517px;}
._e{width:4.696206px;}
._25{width:5.716675px;}
._a{width:6.719607px;}
._b{width:7.726823px;}
._d{width:8.795356px;}
._10{width:10.247318px;}
._7{width:11.454610px;}
._6{width:12.610355px;}
._11{width:13.961019px;}
._12{width:15.245500px;}
._22{width:16.702768px;}
._24{width:17.717547px;}
._1b{width:22.598568px;}
._18{width:27.652225px;}
._1f{width:39.919055px;}
._1e{width:45.045302px;}
._20{width:55.126773px;}
._21{width:60.621852px;}
._17{width:61.947777px;}
._14{width:67.365262px;}
._16{width:88.390548px;}
._19{width:179.722813px;}
._1c{width:225.468693px;}
._1d{width:260.835647px;}
._15{width:369.719604px;}
._1{width:1695.553076px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:46.081800px;}
.fs4{font-size:55.442250px;}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y1d{bottom:41.040115px;}
.yb7{bottom:97.920043px;}
.yf7{bottom:100.620072px;}
.y160{bottom:102.420043px;}
.y14f{bottom:118.260064px;}
.y85{bottom:119.520058px;}
.yb6{bottom:121.680039px;}
.y1b{bottom:121.860077px;}
.y15f{bottom:130.860077px;}
.y10e{bottom:131.400055px;}
.y137{bottom:142.020058px;}
.y84{bottom:143.280052px;}
.y120{bottom:147.960091px;}
.yb5{bottom:149.760064px;}
.y173{bottom:150.300041px;}
.y6b{bottom:152.280052px;}
.y10d{bottom:160.020058px;}
.y14e{bottom:166.500068px;}
.y83{bottom:167.040047px;}
.y39{bottom:167.760064px;}
.y136{bottom:170.460091px;}
.yb4{bottom:173.520058px;}
.y6a{bottom:176.040047px;}
.y11f{bottom:176.580093px;}
.yf6{bottom:177.480079px;}
.y1a{bottom:178.920043px;}
.y9d{bottom:185.580093px;}
.y15e{bottom:187.920043px;}
.y10c{bottom:188.460091px;}
.y82{bottom:190.800041px;}
.y4f{bottom:193.500068px;}
.y14d{bottom:195.120072px;}
.y38{bottom:196.380066px;}
.y135{bottom:199.080093px;}
.y69{bottom:199.800041px;}
.y11e{bottom:205.020058px;}
.yf5{bottom:206.100083px;}
.y19{bottom:207.360077px;}
.y9c{bottom:214.020058px;}
.y81{bottom:214.560036px;}
.y15d{bottom:216.540047px;}
.y10b{bottom:217.080093px;}
.y37{bottom:224.820099px;}
.y134{bottom:227.520058px;}
.y18{bottom:235.980079px;}
.y80{bottom:238.320099px;}
.y9b{bottom:242.640060px;}
.y68{bottom:247.320099px;}
.y14c{bottom:253.260064px;}
.y133{bottom:256.140060px;}
.y7f{bottom:262.080093px;}
.y17{bottom:264.420043px;}
.y9a{bottom:271.080093px;}
.y67{bottom:271.260064px;}
.y15c{bottom:273.600083px;}
.y10a{bottom:274.140060px;}
.y4e{bottom:279.180039px;}
.y14b{bottom:281.880066px;}
.y132{bottom:284.580093px;}
.y7e{bottom:286.020058px;}
.y11d{bottom:290.700096px;}
.y16{bottom:293.040047px;}
.y66{bottom:295.020058px;}
.y15b{bottom:302.040047px;}
.y109{bottom:302.580093px;}
.y4d{bottom:307.620072px;}
.y7d{bottom:309.780052px;}
.y11c{bottom:319.140060px;}
.y15{bottom:321.480079px;}
.yf4{bottom:327.960091px;}
.y99{bottom:328.320099px;}
.y108{bottom:331.200096px;}
.y16b{bottom:332.280052px;}
.y7c{bottom:333.540047px;}
.y65{bottom:342.540047px;}
.y11b{bottom:347.760064px;}
.ycc{bottom:348.840088px;}
.y14{bottom:350.100083px;}
.y131{bottom:351.540047px;}
.yf3{bottom:356.400055px;}
.y98{bottom:356.760064px;}
.y7b{bottom:357.300041px;}
.yb3{bottom:359.100083px;}
.y107{bottom:359.640060px;}
.y16a{bottom:360.720085px;}
.y11a{bottom:376.200096px;}
.y14a{bottom:377.280052px;}
.ycb{bottom:377.460091px;}
.y175{bottom:378.540047px;}
.yf2{bottom:385.020058px;}
.y97{bottom:385.380066px;}
.yb2{bottom:387.720085px;}
.y106{bottom:388.260064px;}
.y169{bottom:389.340088px;}
.y64{bottom:389.880066px;}
.y4c{bottom:393.300041px;}
.y36{bottom:399.240074px;}
.y119{bottom:404.820099px;}
.y149{bottom:405.900055px;}
.y172{bottom:407.160049px;}
.y7a{bottom:408.060036px;}
.yd4{bottom:410.580093px;}
.y96{bottom:413.820099px;}
.yb1{bottom:416.160049px;}
.y105{bottom:416.700096px;}
.y168{bottom:417.780052px;}
.y63{bottom:418.500068px;}
.y130{bottom:418.680039px;}
.y4b{bottom:421.740074px;}
.y35{bottom:427.680039px;}
.y118{bottom:433.260064px;}
.y13{bottom:435.600083px;}
.y79{bottom:436.680039px;}
.yf1{bottom:437.760064px;}
.yd3{bottom:439.200096px;}
.yb0{bottom:444.780052px;}
.y104{bottom:445.320099px;}
.y167{bottom:446.400055px;}
.y4a{bottom:450.360077px;}
.y34{bottom:456.300041px;}
.yf0{bottom:461.520058px;}
.y117{bottom:461.880066px;}
.y148{bottom:462.960091px;}
.y174{bottom:464.220085px;}
.y78{bottom:465.120072px;}
.y95{bottom:470.880066px;}
.yaf{bottom:473.220085px;}
.y103{bottom:473.760064px;}
.y12f{bottom:475.740074px;}
.y49{bottom:478.800041px;}
.y33{bottom:484.740074px;}
.yef{bottom:485.280052px;}
.y62{bottom:485.460091px;}
.y116{bottom:490.320099px;}
.y147{bottom:491.400055px;}
.y12{bottom:492.660049px;}
.y94{bottom:499.500068px;}
.yca{bottom:501.480079px;}
.y102{bottom:502.380066px;}
.y12e{bottom:504.180039px;}
.y32{bottom:513.360077px;}
.yee{bottom:513.900055px;}
.y115{bottom:518.940033px;}
.y146{bottom:520.020058px;}
.y11{bottom:521.280052px;}
.y77{bottom:522.180039px;}
.yc9{bottom:525.240074px;}
.y93{bottom:527.940033px;}
.y101{bottom:530.820099px;}
.y12d{bottom:532.800041px;}
.y48{bottom:535.860077px;}
.y166{bottom:537.120072px;}
.yed{bottom:537.660049px;}
.y31{bottom:541.800041px;}
.y15a{bottom:542.160049px;}
.y114{bottom:547.380066px;}
.y145{bottom:548.460091px;}
.yc8{bottom:549.000068px;}
.y10{bottom:549.720085px;}
.y61{bottom:552.420043px;}
.y100{bottom:559.440033px;}
.y165{bottom:560.880066px;}
.y47{bottom:564.480079px;}
.yec{bottom:567.180039px;}
.y30{bottom:570.420043px;}
.y159{bottom:570.780052px;}
.y113{bottom:576.000068px;}
.y144{bottom:577.080093px;}
.yf{bottom:578.340088px;}
.y60{bottom:580.680039px;}
.y164{bottom:584.640060px;}
.y92{bottom:585.000068px;}
.yd2{bottom:586.980079px;}
.yae{bottom:587.340088px;}
.yff{bottom:587.880066px;}
.yeb{bottom:590.940033px;}
.yc7{bottom:596.520058px;}
.y2f{bottom:598.860077px;}
.y12c{bottom:601.740074px;}
.y112{bottom:604.440033px;}
.ye{bottom:606.780052px;}
.y163{bottom:608.400055px;}
.y5f{bottom:609.120072px;}
.yd1{bottom:610.740074px;}
.yad{bottom:611.280052px;}
.y91{bottom:613.620072px;}
.yc6{bottom:620.280052px;}
.yea{bottom:620.640060px;}
.y46{bottom:621.540047px;}
.y2e{bottom:627.480079px;}
.y162{bottom:632.160049px;}
.y111{bottom:633.060036px;}
.y143{bottom:634.140060px;}
.yd0{bottom:634.500068px;}
.yac{bottom:635.040047px;}
.yd{bottom:635.400055px;}
.y76{bottom:636.300041px;}
.y5e{bottom:637.380066px;}
.y158{bottom:639.720085px;}
.y90{bottom:642.060036px;}
.ye9{bottom:644.400055px;}
.y45{bottom:649.980079px;}
.y2d{bottom:655.920043px;}
.ycf{bottom:658.260064px;}
.yab{bottom:658.800041px;}
.y110{bottom:661.500068px;}
.y142{bottom:662.580093px;}
.yc{bottom:663.840088px;}
.y75{bottom:664.920043px;}
.y5d{bottom:665.820099px;}
.ye8{bottom:668.160049px;}
.y44{bottom:678.600083px;}
.y157{bottom:680.220085px;}
.yce{bottom:682.020058px;}
.yaa{bottom:682.560036px;}
.y2c{bottom:684.540047px;}
.y141{bottom:691.200061px;}
.yb{bottom:692.460056px;}
.y74{bottom:693.360077px;}
.y5c{bottom:694.080059px;}
.ye7{bottom:697.680073px;}
.y8f{bottom:699.120072px;}
.yc5{bottom:701.100083px;}
.ycd{bottom:705.960056px;}
.ya9{bottom:706.320065px;}
.y156{bottom:708.660049px;}
.y2b{bottom:712.980079px;}
.y140{bottom:719.640060px;}
.ya{bottom:720.900055px;}
.ye6{bottom:721.440067px;}
.y5b{bottom:722.520058px;}
.y12b{bottom:722.880066px;}
.y8e{bottom:727.740074px;}
.yc4{bottom:729.720051px;}
.ya8{bottom:730.080059px;}
.y2a{bottom:741.600083px;}
.ye5{bottom:745.200061px;}
.y13f{bottom:748.260064px;}
.y155{bottom:749.160049px;}
.y171{bottom:749.520058px;}
.y12a{bottom:751.500068px;}
.ya7{bottom:753.840054px;}
.y8d{bottom:756.180073px;}
.yc3{bottom:758.160049px;}
.ye4{bottom:769.140060px;}
.y29{bottom:770.040081px;}
.yfe{bottom:770.220051px;}
.y154{bottom:777.600083px;}
.y170{bottom:777.960056px;}
.y5a{bottom:779.040081px;}
.y8c{bottom:784.800076px;}
.yc2{bottom:786.780052px;}
.y129{bottom:791.820065px;}
.y28{bottom:798.660049px;}
.y16f{bottom:806.580059px;}
.y59{bottom:807.480079px;}
.ye3{bottom:810.540081px;}
.y8b{bottom:813.240074px;}
.yc1{bottom:815.220051px;}
.y27{bottom:827.100083px;}
.y128{bottom:832.320065px;}
.ye2{bottom:834.300076px;}
.ya6{bottom:834.660049px;}
.y9{bottom:835.020058px;}
.y58{bottom:835.740074px;}
.y73{bottom:836.100083px;}
.y8a{bottom:841.860077px;}
.yc0{bottom:843.840054px;}
.y13e{bottom:853.740074px;}
.y26{bottom:855.720051px;}
.y153{bottom:863.280052px;}
.y8{bottom:863.640060px;}
.y89{bottom:870.300076px;}
.ybf{bottom:872.280052px;}
.y127{bottom:872.640060px;}
.y57{bottom:874.080059px;}
.ye1{bottom:875.700061px;}
.y13d{bottom:882.180073px;}
.y25{bottom:884.160049px;}
.y43{bottom:889.380066px;}
.ya5{bottom:891.720051px;}
.y16e{bottom:892.080059px;}
.y88{bottom:898.920078px;}
.ydf{bottom:899.640060px;}
.ybe{bottom:900.900055px;}
.y56{bottom:902.340054px;}
.y72{bottom:905.040081px;}
.y13c{bottom:910.800076px;}
.y24{bottom:912.780052px;}
.y42{bottom:917.820065px;}
.y152{bottom:920.340054px;}
.y7{bottom:920.700061px;}
.yde{bottom:923.400055px;}
.ybd{bottom:929.340054px;}
.y126{bottom:929.700061px;}
.y87{bottom:937.260064px;}
.y13b{bottom:939.240074px;}
.y23{bottom:941.220051px;}
.y71{bottom:945.360077px;}
.ydd{bottom:947.160049px;}
.y151{bottom:948.780053px;}
.y6{bottom:949.140060px;}
.ya4{bottom:956.700061px;}
.ybc{bottom:957.960056px;}
.y55{bottom:959.040081px;}
.y86{bottom:961.020058px;}
.y22{bottom:969.840054px;}
.y125{bottom:970.200061px;}
.ydc{bottom:970.920078px;}
.yfd{bottom:973.080059px;}
.ya3{bottom:977.400072px;}
.y5{bottom:977.760064px;}
.y41{bottom:984.780069px;}
.y70{bottom:985.860060px;}
.ybb{bottom:986.400072px;}
.y54{bottom:987.480063px;}
.ye0{bottom:994.680073px;}
.y21{bottom:998.280069px;}
.yfc{bottom:1001.520058px;}
.ya2{bottom:1005.840070px;}
.y16d{bottom:1006.200061px;}
.y40{bottom:1008.540064px;}
.y124{bottom:1010.700061px;}
.yba{bottom:1015.020058px;}
.y53{bottom:1015.740074px;}
.y13a{bottom:1024.920061px;}
.y6f{bottom:1026.360060px;}
.y20{bottom:1026.900072px;}
.y3f{bottom:1032.480063px;}
.y150{bottom:1034.460074px;}
.y4{bottom:1034.820065px;}
.yb9{bottom:1043.460074px;}
.y52{bottom:1044.000068px;}
.ydb{bottom:1047.960074px;}
.y123{bottom:1051.020058px;}
.y139{bottom:1053.360060px;}
.y1f{bottom:1055.340070px;}
.y3e{bottom:1056.240074px;}
.yfb{bottom:1058.760064px;}
.yd7{bottom:1059.840070px;}
.ya1{bottom:1062.900072px;}
.y3{bottom:1063.260064px;}
.y6e{bottom:1066.680073px;}
.yda{bottom:1071.900072px;}
.yb8{bottom:1072.080059px;}
.y51{bottom:1072.440067px;}
.y122{bottom:1079.640060px;}
.y3d{bottom:1080.000068px;}
.yd6{bottom:1083.780069px;}
.y161{bottom:1083.960074px;}
.yfa{bottom:1087.200061px;}
.ya0{bottom:1091.520058px;}
.y16c{bottom:1091.880066px;}
.yd9{bottom:1095.660067px;}
.y1c{bottom:1097.640060px;}
.y10f{bottom:1100.520058px;}
.y50{bottom:1100.700061px;}
.y3c{bottom:1103.760064px;}
.y121{bottom:1108.080059px;}
.y138{bottom:1110.420061px;}
.yf9{bottom:1115.820065px;}
.yd8{bottom:1119.420069px;}
.y9f{bottom:1119.960065px;}
.y2{bottom:1120.320065px;}
.y6d{bottom:1123.740066px;}
.y3b{bottom:1127.520066px;}
.yf8{bottom:1144.260064px;}
.y9e{bottom:1148.580068px;}
.y1e{bottom:1148.940067px;}
.yd5{bottom:1149.480063px;}
.y3a{bottom:1151.280069px;}
.y6c{bottom:1152.360068px;}
.hb{height:51.715154px;}
.hd{height:54.993593px;}
.h7{height:55.302981px;}
.h9{height:55.596662px;}
.h8{height:57.534328px;}
.h5{height:64.414315px;}
.h6{height:65.992187px;}
.h2{height:67.837080px;}
.ha{height:69.496123px;}
.hc{height:70.346938px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.hf{height:117.016110px;}
.he{height:117.016114px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:89.819996px;}
.x28{left:99.540003px;}
.x1c{left:101.340002px;}
.x29{left:107.459997px;}
.x21{left:109.260003px;}
.x23{left:112.680005px;}
.x27{left:114.840002px;}
.x1d{left:118.439999px;}
.x26{left:126.360000px;}
.x20{left:127.439999px;}
.x25{left:129.780001px;}
.x24{left:135.180005px;}
.x1{left:140.939999px;}
.x2a{left:148.139992px;}
.x22{left:156.960005px;}
.x2b{left:160.020006px;}
.xf{left:174.240006px;}
.x1b{left:179.280001px;}
.x17{left:202.139992px;}
.x31{left:205.919992px;}
.x13{left:224.639992px;}
.x2d{left:227.520006px;}
.x18{left:252.719999px;}
.x2c{left:261.180005px;}
.x2e{left:263.159998px;}
.x5{left:264.780001px;}
.x2f{left:274.319996px;}
.x1f{left:277.740006px;}
.x4{left:289.800007px;}
.x3{left:302.759994px;}
.xb{left:307.800007px;}
.x14{left:314.459988px;}
.x19{left:320.040012px;}
.x2{left:323.819996px;}
.x6{left:334.980011px;}
.xe{left:338.579990px;}
.x10{left:357.660015px;}
.x7{left:362.519989px;}
.x12{left:365.040012px;}
.x9{left:366.660015px;}
.x30{left:386.459988px;}
.x16{left:398.879998px;}
.xa{left:410.939999px;}
.x8{left:419.579990px;}
.x11{left:449.279983px;}
.xc{left:532.800007px;}
.x15{left:555.120002px;}
.x1e{left:629.460023px;}
.x1a{left:714.240006px;}
@media print{
.v3{vertical-align:-28.160032pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v4{vertical-align:23.040040pt;}
.v2{vertical-align:28.159972pt;}
.v5{vertical-align:42.239992pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.027006pt;}
.ls4{letter-spacing:0.027070pt;}
.ls1{letter-spacing:0.083823pt;}
.ls3{letter-spacing:11.519096pt;}
.ws2{word-spacing:-70.402800pt;}
.ws1{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.120800pt;}
.ws4{word-spacing:-17.600700pt;}
.ws5{word-spacing:-12.320500pt;}
.ws7{word-spacing:-10.240400pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:3.125935pt;}
.ws8{word-spacing:227.344913pt;}
.ws9{word-spacing:1396.991293pt;}
._23{margin-left:-21.738559pt;}
._13{margin-left:-10.524428pt;}
._5{margin-left:-9.291255pt;}
._c{margin-left:-7.486663pt;}
._2{margin-left:-5.913824pt;}
._3{margin-left:-4.364745pt;}
._1a{margin-left:-3.426095pt;}
._9{margin-left:-2.536559pt;}
._4{margin-left:-1.380112pt;}
._0{width:0.946228pt;}
._8{width:2.194166pt;}
._f{width:3.237793pt;}
._e{width:4.174405pt;}
._25{width:5.081489pt;}
._a{width:5.972984pt;}
._b{width:6.868287pt;}
._d{width:7.818094pt;}
._10{width:9.108727pt;}
._7{width:10.181876pt;}
._6{width:11.209205pt;}
._11{width:12.409795pt;}
._12{width:13.551556pt;}
._22{width:14.846905pt;}
._24{width:15.748931pt;}
._1b{width:20.087616pt;}
._18{width:24.579756pt;}
._1f{width:35.483604pt;}
._1e{width:40.040269pt;}
._20{width:49.001576pt;}
._21{width:53.886091pt;}
._17{width:55.064690pt;}
._14{width:59.880233pt;}
._16{width:78.569376pt;}
._19{width:159.753612pt;}
._1c{width:200.416616pt;}
._1d{width:231.853908pt;}
._15{width:328.639648pt;}
._1{width:1507.158290pt;}
.fs5{font-size:40.961600pt;}
.fs4{font-size:49.282000pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y1d{bottom:36.480103pt;}
.yb7{bottom:87.040039pt;}
.yf7{bottom:89.440064pt;}
.y160{bottom:91.040039pt;}
.y14f{bottom:105.120057pt;}
.y85{bottom:106.240052pt;}
.yb6{bottom:108.160035pt;}
.y1b{bottom:108.320069pt;}
.y15f{bottom:116.320069pt;}
.y10e{bottom:116.800049pt;}
.y137{bottom:126.240052pt;}
.y84{bottom:127.360047pt;}
.y120{bottom:131.520081pt;}
.yb5{bottom:133.120057pt;}
.y173{bottom:133.600037pt;}
.y6b{bottom:135.360047pt;}
.y10d{bottom:142.240052pt;}
.y14e{bottom:148.000061pt;}
.y83{bottom:148.480042pt;}
.y39{bottom:149.120057pt;}
.y136{bottom:151.520081pt;}
.yb4{bottom:154.240052pt;}
.y6a{bottom:156.480042pt;}
.y11f{bottom:156.960083pt;}
.yf6{bottom:157.760071pt;}
.y1a{bottom:159.040039pt;}
.y9d{bottom:164.960083pt;}
.y15e{bottom:167.040039pt;}
.y10c{bottom:167.520081pt;}
.y82{bottom:169.600037pt;}
.y4f{bottom:172.000061pt;}
.y14d{bottom:173.440064pt;}
.y38{bottom:174.560059pt;}
.y135{bottom:176.960083pt;}
.y69{bottom:177.600037pt;}
.y11e{bottom:182.240052pt;}
.yf5{bottom:183.200074pt;}
.y19{bottom:184.320069pt;}
.y9c{bottom:190.240052pt;}
.y81{bottom:190.720032pt;}
.y15d{bottom:192.480042pt;}
.y10b{bottom:192.960083pt;}
.y37{bottom:199.840088pt;}
.y134{bottom:202.240052pt;}
.y18{bottom:209.760071pt;}
.y80{bottom:211.840088pt;}
.y9b{bottom:215.680054pt;}
.y68{bottom:219.840088pt;}
.y14c{bottom:225.120057pt;}
.y133{bottom:227.680054pt;}
.y7f{bottom:232.960083pt;}
.y17{bottom:235.040039pt;}
.y9a{bottom:240.960083pt;}
.y67{bottom:241.120057pt;}
.y15c{bottom:243.200074pt;}
.y10a{bottom:243.680054pt;}
.y4e{bottom:248.160035pt;}
.y14b{bottom:250.560059pt;}
.y132{bottom:252.960083pt;}
.y7e{bottom:254.240052pt;}
.y11d{bottom:258.400086pt;}
.y16{bottom:260.480042pt;}
.y66{bottom:262.240052pt;}
.y15b{bottom:268.480042pt;}
.y109{bottom:268.960083pt;}
.y4d{bottom:273.440064pt;}
.y7d{bottom:275.360047pt;}
.y11c{bottom:283.680054pt;}
.y15{bottom:285.760071pt;}
.yf4{bottom:291.520081pt;}
.y99{bottom:291.840088pt;}
.y108{bottom:294.400086pt;}
.y16b{bottom:295.360047pt;}
.y7c{bottom:296.480042pt;}
.y65{bottom:304.480042pt;}
.y11b{bottom:309.120057pt;}
.ycc{bottom:310.080079pt;}
.y14{bottom:311.200074pt;}
.y131{bottom:312.480042pt;}
.yf3{bottom:316.800049pt;}
.y98{bottom:317.120057pt;}
.y7b{bottom:317.600037pt;}
.yb3{bottom:319.200074pt;}
.y107{bottom:319.680054pt;}
.y16a{bottom:320.640076pt;}
.y11a{bottom:334.400086pt;}
.y14a{bottom:335.360047pt;}
.ycb{bottom:335.520081pt;}
.y175{bottom:336.480042pt;}
.yf2{bottom:342.240052pt;}
.y97{bottom:342.560059pt;}
.yb2{bottom:344.640076pt;}
.y106{bottom:345.120057pt;}
.y169{bottom:346.080079pt;}
.y64{bottom:346.560059pt;}
.y4c{bottom:349.600037pt;}
.y36{bottom:354.880066pt;}
.y119{bottom:359.840088pt;}
.y149{bottom:360.800049pt;}
.y172{bottom:361.920044pt;}
.y7a{bottom:362.720032pt;}
.yd4{bottom:364.960083pt;}
.y96{bottom:367.840088pt;}
.yb1{bottom:369.920044pt;}
.y105{bottom:370.400086pt;}
.y168{bottom:371.360047pt;}
.y63{bottom:372.000061pt;}
.y130{bottom:372.160035pt;}
.y4b{bottom:374.880066pt;}
.y35{bottom:380.160035pt;}
.y118{bottom:385.120057pt;}
.y13{bottom:387.200074pt;}
.y79{bottom:388.160035pt;}
.yf1{bottom:389.120057pt;}
.yd3{bottom:390.400086pt;}
.yb0{bottom:395.360047pt;}
.y104{bottom:395.840088pt;}
.y167{bottom:396.800049pt;}
.y4a{bottom:400.320069pt;}
.y34{bottom:405.600037pt;}
.yf0{bottom:410.240052pt;}
.y117{bottom:410.560059pt;}
.y148{bottom:411.520081pt;}
.y174{bottom:412.640076pt;}
.y78{bottom:413.440064pt;}
.y95{bottom:418.560059pt;}
.yaf{bottom:420.640076pt;}
.y103{bottom:421.120057pt;}
.y12f{bottom:422.880066pt;}
.y49{bottom:425.600037pt;}
.y33{bottom:430.880066pt;}
.yef{bottom:431.360047pt;}
.y62{bottom:431.520081pt;}
.y116{bottom:435.840088pt;}
.y147{bottom:436.800049pt;}
.y12{bottom:437.920044pt;}
.y94{bottom:444.000061pt;}
.yca{bottom:445.760071pt;}
.y102{bottom:446.560059pt;}
.y12e{bottom:448.160035pt;}
.y32{bottom:456.320069pt;}
.yee{bottom:456.800049pt;}
.y115{bottom:461.280030pt;}
.y146{bottom:462.240052pt;}
.y11{bottom:463.360047pt;}
.y77{bottom:464.160035pt;}
.yc9{bottom:466.880066pt;}
.y93{bottom:469.280030pt;}
.y101{bottom:471.840088pt;}
.y12d{bottom:473.600037pt;}
.y48{bottom:476.320069pt;}
.y166{bottom:477.440064pt;}
.yed{bottom:477.920044pt;}
.y31{bottom:481.600037pt;}
.y15a{bottom:481.920044pt;}
.y114{bottom:486.560059pt;}
.y145{bottom:487.520081pt;}
.yc8{bottom:488.000061pt;}
.y10{bottom:488.640076pt;}
.y61{bottom:491.040039pt;}
.y100{bottom:497.280030pt;}
.y165{bottom:498.560059pt;}
.y47{bottom:501.760071pt;}
.yec{bottom:504.160035pt;}
.y30{bottom:507.040039pt;}
.y159{bottom:507.360047pt;}
.y113{bottom:512.000061pt;}
.y144{bottom:512.960083pt;}
.yf{bottom:514.080079pt;}
.y60{bottom:516.160035pt;}
.y164{bottom:519.680054pt;}
.y92{bottom:520.000061pt;}
.yd2{bottom:521.760071pt;}
.yae{bottom:522.080079pt;}
.yff{bottom:522.560059pt;}
.yeb{bottom:525.280030pt;}
.yc7{bottom:530.240052pt;}
.y2f{bottom:532.320069pt;}
.y12c{bottom:534.880066pt;}
.y112{bottom:537.280030pt;}
.ye{bottom:539.360047pt;}
.y163{bottom:540.800049pt;}
.y5f{bottom:541.440064pt;}
.yd1{bottom:542.880066pt;}
.yad{bottom:543.360047pt;}
.y91{bottom:545.440064pt;}
.yc6{bottom:551.360047pt;}
.yea{bottom:551.680054pt;}
.y46{bottom:552.480042pt;}
.y2e{bottom:557.760071pt;}
.y162{bottom:561.920044pt;}
.y111{bottom:562.720032pt;}
.y143{bottom:563.680054pt;}
.yd0{bottom:564.000061pt;}
.yac{bottom:564.480042pt;}
.yd{bottom:564.800049pt;}
.y76{bottom:565.600037pt;}
.y5e{bottom:566.560059pt;}
.y158{bottom:568.640076pt;}
.y90{bottom:570.720032pt;}
.ye9{bottom:572.800049pt;}
.y45{bottom:577.760071pt;}
.y2d{bottom:583.040039pt;}
.ycf{bottom:585.120057pt;}
.yab{bottom:585.600037pt;}
.y110{bottom:588.000061pt;}
.y142{bottom:588.960083pt;}
.yc{bottom:590.080079pt;}
.y75{bottom:591.040039pt;}
.y5d{bottom:591.840088pt;}
.ye8{bottom:593.920044pt;}
.y44{bottom:603.200074pt;}
.y157{bottom:604.640076pt;}
.yce{bottom:606.240052pt;}
.yaa{bottom:606.720032pt;}
.y2c{bottom:608.480042pt;}
.y141{bottom:614.400055pt;}
.yb{bottom:615.520050pt;}
.y74{bottom:616.320069pt;}
.y5c{bottom:616.960053pt;}
.ye7{bottom:620.160065pt;}
.y8f{bottom:621.440064pt;}
.yc5{bottom:623.200074pt;}
.ycd{bottom:627.520050pt;}
.ya9{bottom:627.840058pt;}
.y156{bottom:629.920044pt;}
.y2b{bottom:633.760071pt;}
.y140{bottom:639.680054pt;}
.ya{bottom:640.800049pt;}
.ye6{bottom:641.280060pt;}
.y5b{bottom:642.240052pt;}
.y12b{bottom:642.560059pt;}
.y8e{bottom:646.880066pt;}
.yc4{bottom:648.640046pt;}
.ya8{bottom:648.960053pt;}
.y2a{bottom:659.200074pt;}
.ye5{bottom:662.400055pt;}
.y13f{bottom:665.120057pt;}
.y155{bottom:665.920044pt;}
.y171{bottom:666.240052pt;}
.y12a{bottom:668.000061pt;}
.ya7{bottom:670.080048pt;}
.y8d{bottom:672.160065pt;}
.yc3{bottom:673.920044pt;}
.ye4{bottom:683.680054pt;}
.y29{bottom:684.480072pt;}
.yfe{bottom:684.640046pt;}
.y154{bottom:691.200074pt;}
.y170{bottom:691.520050pt;}
.y5a{bottom:692.480072pt;}
.y8c{bottom:697.600068pt;}
.yc2{bottom:699.360047pt;}
.y129{bottom:703.840058pt;}
.y28{bottom:709.920044pt;}
.y16f{bottom:716.960053pt;}
.y59{bottom:717.760071pt;}
.ye3{bottom:720.480072pt;}
.y8b{bottom:722.880066pt;}
.yc1{bottom:724.640046pt;}
.y27{bottom:735.200074pt;}
.y128{bottom:739.840058pt;}
.ye2{bottom:741.600068pt;}
.ya6{bottom:741.920044pt;}
.y9{bottom:742.240052pt;}
.y58{bottom:742.880066pt;}
.y73{bottom:743.200074pt;}
.y8a{bottom:748.320069pt;}
.yc0{bottom:750.080048pt;}
.y13e{bottom:758.880066pt;}
.y26{bottom:760.640046pt;}
.y153{bottom:767.360047pt;}
.y8{bottom:767.680054pt;}
.y89{bottom:773.600068pt;}
.ybf{bottom:775.360047pt;}
.y127{bottom:775.680054pt;}
.y57{bottom:776.960053pt;}
.ye1{bottom:778.400055pt;}
.y13d{bottom:784.160065pt;}
.y25{bottom:785.920044pt;}
.y43{bottom:790.560059pt;}
.ya5{bottom:792.640046pt;}
.y16e{bottom:792.960053pt;}
.y88{bottom:799.040070pt;}
.ydf{bottom:799.680054pt;}
.ybe{bottom:800.800049pt;}
.y56{bottom:802.080048pt;}
.y72{bottom:804.480072pt;}
.y13c{bottom:809.600068pt;}
.y24{bottom:811.360047pt;}
.y42{bottom:815.840058pt;}
.y152{bottom:818.080048pt;}
.y7{bottom:818.400055pt;}
.yde{bottom:820.800049pt;}
.ybd{bottom:826.080048pt;}
.y126{bottom:826.400055pt;}
.y87{bottom:833.120057pt;}
.y13b{bottom:834.880066pt;}
.y23{bottom:836.640046pt;}
.y71{bottom:840.320069pt;}
.ydd{bottom:841.920044pt;}
.y151{bottom:843.360047pt;}
.y6{bottom:843.680054pt;}
.ya4{bottom:850.400055pt;}
.ybc{bottom:851.520050pt;}
.y55{bottom:852.480072pt;}
.y86{bottom:854.240052pt;}
.y22{bottom:862.080048pt;}
.y125{bottom:862.400055pt;}
.ydc{bottom:863.040070pt;}
.yfd{bottom:864.960053pt;}
.ya3{bottom:868.800064pt;}
.y5{bottom:869.120057pt;}
.y41{bottom:875.360062pt;}
.y70{bottom:876.320054pt;}
.ybb{bottom:876.800064pt;}
.y54{bottom:877.760056pt;}
.ye0{bottom:884.160065pt;}
.y21{bottom:887.360062pt;}
.yfc{bottom:890.240052pt;}
.ya2{bottom:894.080063pt;}
.y16d{bottom:894.400055pt;}
.y40{bottom:896.480057pt;}
.y124{bottom:898.400055pt;}
.yba{bottom:902.240052pt;}
.y53{bottom:902.880066pt;}
.y13a{bottom:911.040055pt;}
.y6f{bottom:912.320054pt;}
.y20{bottom:912.800064pt;}
.y3f{bottom:917.760056pt;}
.y150{bottom:919.520066pt;}
.y4{bottom:919.840058pt;}
.yb9{bottom:927.520066pt;}
.y52{bottom:928.000061pt;}
.ydb{bottom:931.520066pt;}
.y123{bottom:934.240052pt;}
.y139{bottom:936.320054pt;}
.y1f{bottom:938.080063pt;}
.y3e{bottom:938.880066pt;}
.yfb{bottom:941.120057pt;}
.yd7{bottom:942.080063pt;}
.ya1{bottom:944.800064pt;}
.y3{bottom:945.120057pt;}
.y6e{bottom:948.160065pt;}
.yda{bottom:952.800064pt;}
.yb8{bottom:952.960053pt;}
.y51{bottom:953.280060pt;}
.y122{bottom:959.680054pt;}
.y3d{bottom:960.000061pt;}
.yd6{bottom:963.360062pt;}
.y161{bottom:963.520066pt;}
.yfa{bottom:966.400055pt;}
.ya0{bottom:970.240052pt;}
.y16c{bottom:970.560059pt;}
.yd9{bottom:973.920060pt;}
.y1c{bottom:975.680054pt;}
.y10f{bottom:978.240052pt;}
.y50{bottom:978.400055pt;}
.y3c{bottom:981.120057pt;}
.y121{bottom:984.960053pt;}
.y138{bottom:987.040055pt;}
.yf9{bottom:991.840058pt;}
.yd8{bottom:995.040062pt;}
.y9f{bottom:995.520058pt;}
.y2{bottom:995.840058pt;}
.y6d{bottom:998.880059pt;}
.y3b{bottom:1002.240059pt;}
.yf8{bottom:1017.120057pt;}
.y9e{bottom:1020.960061pt;}
.y1e{bottom:1021.280060pt;}
.yd5{bottom:1021.760056pt;}
.y3a{bottom:1023.360062pt;}
.y6c{bottom:1024.320061pt;}
.hb{height:45.969026pt;}
.hd{height:48.883194pt;}
.h7{height:49.158205pt;}
.h9{height:49.419255pt;}
.h8{height:51.141625pt;}
.h5{height:57.257169pt;}
.h6{height:58.659722pt;}
.h2{height:60.299627pt;}
.ha{height:61.774332pt;}
.hc{height:62.530612pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.hf{height:104.014320pt;}
.he{height:104.014324pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:79.839996pt;}
.x28{left:88.480003pt;}
.x1c{left:90.080002pt;}
.x29{left:95.519997pt;}
.x21{left:97.120003pt;}
.x23{left:100.160004pt;}
.x27{left:102.080002pt;}
.x1d{left:105.279999pt;}
.x26{left:112.320000pt;}
.x20{left:113.279999pt;}
.x25{left:115.360001pt;}
.x24{left:120.160004pt;}
.x1{left:125.279999pt;}
.x2a{left:131.679993pt;}
.x22{left:139.520004pt;}
.x2b{left:142.240005pt;}
.xf{left:154.880005pt;}
.x1b{left:159.360001pt;}
.x17{left:179.679993pt;}
.x31{left:183.039993pt;}
.x13{left:199.679993pt;}
.x2d{left:202.240005pt;}
.x18{left:224.639999pt;}
.x2c{left:232.160004pt;}
.x2e{left:233.919998pt;}
.x5{left:235.360001pt;}
.x2f{left:243.839996pt;}
.x1f{left:246.880005pt;}
.x4{left:257.600006pt;}
.x3{left:269.119995pt;}
.xb{left:273.600006pt;}
.x14{left:279.519989pt;}
.x19{left:284.480011pt;}
.x2{left:287.839996pt;}
.x6{left:297.760010pt;}
.xe{left:300.959991pt;}
.x10{left:317.920013pt;}
.x7{left:322.239990pt;}
.x12{left:324.480011pt;}
.x9{left:325.920013pt;}
.x30{left:343.519989pt;}
.x16{left:354.559998pt;}
.xa{left:365.279999pt;}
.x8{left:372.959991pt;}
.x11{left:399.359985pt;}
.xc{left:473.600006pt;}
.x15{left:493.440002pt;}
.x1e{left:559.520020pt;}
.x1a{left:634.880005pt;}
}




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