
    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_89628a30151a498623b5723b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.967773;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_7d5240bc2d33007dbca8fb44.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.116000;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_9423ce3509048cacfebe7770.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.117667;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_04cadb17cf85f69b13d95a2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107000;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_0d40ba32e3fabb3e58d28951.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.205078;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_2ea7623aa77f7c6fff5316a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.996094;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_3a9613c7c1238910e07dd6f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:146.532004px;}
.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:-16.212000px;}
.ws1{word-spacing:-10.746000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:58.380000px;}
._19{margin-left:-5.466017px;}
._0{margin-left:-4.416000px;}
._2{margin-left:-2.622007px;}
._1{margin-left:-1.122000px;}
._c{width:1.050000px;}
._7{width:3.024000px;}
._8{width:4.164000px;}
._f{width:5.322002px;}
._b{width:6.504000px;}
._a{width:7.968001px;}
._4{width:9.000000px;}
._9{width:10.716000px;}
._d{width:12.533998px;}
._3{width:13.661989px;}
._5{width:14.730011px;}
._18{width:15.744010px;}
._13{width:16.751995px;}
._11{width:17.922002px;}
._6{width:19.770000px;}
._e{width:21.353998px;}
._12{width:22.829994px;}
._14{width:24.161998px;}
._15{width:25.457998px;}
._10{width:26.802000px;}
._16{width:27.972000px;}
._1d{width:29.412007px;}
._20{width:30.653987px;}
._1c{width:32.153999px;}
._1b{width:34.194002px;}
._1a{width:36.738000px;}
._23{width:38.262002px;}
._1f{width:41.849999px;}
._22{width:46.091999px;}
._17{width:47.472004px;}
._21{width:52.031998px;}
._1e{width:63.899999px;}
._24{width:146.532004px;}
.fc2{color:rgb(195,197,200);}
.fc1{color:rgb(127,128,128);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(140,27,52);}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:60.372000px;}
.y18{bottom:74.772000px;}
.y2{bottom:102.892500px;}
.y5a{bottom:115.469990px;}
.y1{bottom:117.292500px;}
.y91{bottom:118.664998px;}
.ybb{bottom:122.575490px;}
.y8b{bottom:126.485982px;}
.y152{bottom:128.758504px;}
.y59{bottom:137.070027px;}
.y90{bottom:140.265034px;}
.yff{bottom:142.690541px;}
.yba{bottom:144.175526px;}
.y8a{bottom:148.086018px;}
.y151{bottom:148.558522px;}
.y12f{bottom:157.060475px;}
.y58{bottom:158.669972px;}
.y180{bottom:160.785023px;}
.y8f{bottom:161.864979px;}
.yfe{bottom:162.490468px;}
.yb9{bottom:165.775471px;}
.y166{bottom:168.358540px;}
.y89{bottom:169.685963px;}
.y150{bottom:172.609517px;}
.y12e{bottom:176.860493px;}
.y57{bottom:180.270009px;}
.yfd{bottom:182.290486px;}
.y17f{bottom:182.384969px;}
.y8e{bottom:183.465016px;}
.yb8{bottom:187.375508px;}
.y88{bottom:191.286000px;}
.y14f{bottom:192.409535px;}
.y12d{bottom:196.660512px;}
.y17e{bottom:203.985005px;}
.yd6{bottom:205.064961px;}
.yfc{bottom:206.341481px;}
.yb7{bottom:208.975545px;}
.y14e{bottom:212.209462px;}
.y87{bottom:212.886037px;}
.y12c{bottom:216.460530px;}
.y17d{bottom:225.585042px;}
.yfb{bottom:226.141499px;}
.yd5{bottom:226.664998px;}
.y8d{bottom:230.575490px;}
.y165{bottom:232.009480px;}
.y86{bottom:234.485982px;}
.y14d{bottom:236.260457px;}
.y12b{bottom:240.511525px;}
.yfa{bottom:245.941518px;}
.y17c{bottom:247.184987px;}
.yd4{bottom:248.265034px;}
.y164{bottom:251.809499px;}
.y8c{bottom:252.175526px;}
.y56{bottom:253.891499px;}
.y14c{bottom:256.060475px;}
.y85{bottom:256.086018px;}
.y12a{bottom:260.311543px;}
.yf9{bottom:265.741536px;}
.y17b{bottom:268.785023px;}
.yd3{bottom:269.864979px;}
.yb6{bottom:273.775471px;}
.y55{bottom:274.016988px;}
.y163{bottom:275.860493px;}
.y84{bottom:277.685963px;}
.y129{bottom:280.111470px;}
.yf8{bottom:289.792531px;}
.y17a{bottom:290.384969px;}
.yd2{bottom:291.465016px;}
.y54{bottom:292.016988px;}
.yb5{bottom:295.375508px;}
.y162{bottom:295.660512px;}
.y83{bottom:299.286000px;}
.y128{bottom:299.911488px;}
.yf7{bottom:309.592458px;}
.y53{bottom:310.016988px;}
.y179{bottom:311.985005px;}
.yd1{bottom:313.064961px;}
.y161{bottom:315.460530px;}
.yb4{bottom:316.975545px;}
.y14b{bottom:319.711507px;}
.y82{bottom:320.886037px;}
.y127{bottom:323.962483px;}
.y52{bottom:328.016988px;}
.yf6{bottom:329.392476px;}
.y178{bottom:333.585042px;}
.yd0{bottom:334.664998px;}
.yb3{bottom:338.575490px;}
.y160{bottom:339.511525px;}
.y81{bottom:342.485982px;}
.y126{bottom:343.762501px;}
.y51{bottom:346.016988px;}
.yf5{bottom:353.443471px;}
.y177{bottom:355.184987px;}
.ycf{bottom:356.265034px;}
.y15f{bottom:359.311543px;}
.yb2{bottom:360.175526px;}
.y14a{bottom:363.562520px;}
.y50{bottom:364.016988px;}
.y80{bottom:364.086018px;}
.y125{bottom:367.813496px;}
.yf4{bottom:373.243489px;}
.yce{bottom:377.864979px;}
.y15e{bottom:379.111470px;}
.yb1{bottom:381.775471px;}
.y4f{bottom:382.016988px;}
.y149{bottom:383.362538px;}
.y7f{bottom:385.685963px;}
.y124{bottom:387.613515px;}
.y2e{bottom:390.661489px;}
.yf3{bottom:393.043507px;}
.ycd{bottom:399.465016px;}
.y4e{bottom:400.016988px;}
.y176{bottom:400.495488px;}
.y148{bottom:403.162511px;}
.yb0{bottom:403.375508px;}
.y2d{bottom:404.161489px;}
.y7e{bottom:407.286000px;}
.y123{bottom:407.413487px;}
.yf2{bottom:412.843480px;}
.y2c{bottom:417.661489px;}
.y4d{bottom:418.016988px;}
.ycc{bottom:421.065007px;}
.y15d{bottom:422.962483px;}
.yaf{bottom:424.975499px;}
.y17{bottom:425.864979px;}
.y147{bottom:427.213505px;}
.y7d{bottom:428.885991px;}
.y2b{bottom:431.161489px;}
.y122{bottom:431.464482px;}
.y4c{bottom:436.016988px;}
.yf1{bottom:436.894521px;}
.y16{bottom:437.864979px;}
.ycb{bottom:442.664998px;}
.y15c{bottom:442.762501px;}
.y2a{bottom:444.661489px;}
.y175{bottom:444.680989px;}
.yae{bottom:446.575490px;}
.y146{bottom:447.013478px;}
.y15{bottom:449.864979px;}
.y7c{bottom:450.485982px;}
.y121{bottom:451.264500px;}
.y4b{bottom:454.016988px;}
.yf0{bottom:456.694493px;}
.y29{bottom:458.161489px;}
.y19b{bottom:460.356007px;}
.y14{bottom:461.864979px;}
.y174{bottom:462.680989px;}
.yca{bottom:464.264989px;}
.y145{bottom:466.813496px;}
.yad{bottom:468.175481px;}
.y120{bottom:471.064519px;}
.y28{bottom:471.661489px;}
.y4a{bottom:472.016988px;}
.y7b{bottom:472.086018px;}
.yef{bottom:480.745488px;}
.y19a{bottom:481.955998px;}
.y27{bottom:485.161489px;}
.yc9{bottom:485.864979px;}
.y144{bottom:486.613515px;}
.yac{bottom:489.775517px;}
.y49{bottom:490.016988px;}
.y11f{bottom:490.864491px;}
.y13{bottom:490.871999px;}
.y7a{bottom:493.686009px;}
.y26{bottom:498.661489px;}
.yee{bottom:500.545506px;}
.y199{bottom:503.555989px;}
.y173{bottom:505.516499px;}
.y143{bottom:506.413487px;}
.y12{bottom:507.123021px;}
.yc8{bottom:507.465016px;}
.y48{bottom:510.142489px;}
.y15b{bottom:510.664510px;}
.yab{bottom:511.375508px;}
.y25{bottom:512.161489px;}
.y11e{bottom:514.915486px;}
.y79{bottom:515.286000px;}
.yed{bottom:520.345479px;}
.y11{bottom:523.373997px;}
.y198{bottom:525.155980px;}
.yc7{bottom:529.065007px;}
.y47{bottom:530.268000px;}
.y142{bottom:530.464482px;}
.yaa{bottom:532.975499px;}
.y11d{bottom:534.715504px;}
.y78{bottom:536.885991px;}
.y10{bottom:539.625020px;}
.yec{bottom:544.396519px;}
.y197{bottom:546.756016px;}
.y46{bottom:548.268000px;}
.y141{bottom:550.264500px;}
.yc6{bottom:550.664998px;}
.y24{bottom:551.170507px;}
.y11c{bottom:554.515523px;}
.ya9{bottom:554.575490px;}
.yf{bottom:555.875996px;}
.y77{bottom:558.485982px;}
.yeb{bottom:564.196492px;}
.y23{bottom:564.670507px;}
.y45{bottom:566.268000px;}
.ye{bottom:569.817006px;}
.y140{bottom:570.064519px;}
.yc5{bottom:572.264989px;}
.y15a{bottom:574.315495px;}
.ya8{bottom:576.175481px;}
.y11b{bottom:578.566518px;}
.y76{bottom:580.086018px;}
.yea{bottom:583.996510px;}
.y44{bottom:584.268000px;}
.y13f{bottom:589.864491px;}
.y22{bottom:590.924993px;}
.yc4{bottom:593.864979px;}
.y196{bottom:593.866490px;}
.y159{bottom:594.115514px;}
.ya7{bottom:597.775517px;}
.y11a{bottom:598.366490px;}
.y75{bottom:601.686009px;}
.y43{bottom:602.268000px;}
.y21{bottom:604.424993px;}
.ye9{bottom:608.047505px;}
.y13e{bottom:613.915486px;}
.yc3{bottom:615.465016px;}
.y158{bottom:618.166508px;}
.ya6{bottom:619.375508px;}
.y42{bottom:620.268000px;}
.y119{bottom:622.417485px;}
.y74{bottom:623.286000px;}
.yd{bottom:627.502507px;}
.ye8{bottom:627.847478px;}
.y20{bottom:630.679479px;}
.y13d{bottom:633.715504px;}
.yc2{bottom:637.065007px;}
.y157{bottom:637.966481px;}
.y41{bottom:638.268000px;}
.ya5{bottom:640.975499px;}
.y195{bottom:640.977010px;}
.y118{bottom:642.217503px;}
.y1f{bottom:644.179479px;}
.y73{bottom:644.885991px;}
.ye7{bottom:647.647496px;}
.y13c{bottom:653.515523px;}
.y40{bottom:656.268000px;}
.y172{bottom:657.766499px;}
.yc1{bottom:658.664998px;}
.yc{bottom:659.002507px;}
.y117{bottom:662.017522px;}
.ya4{bottom:662.575490px;}
.y194{bottom:662.577000px;}
.y72{bottom:666.485982px;}
.y1e{bottom:670.434011px;}
.ye6{bottom:671.698491px;}
.y3f{bottom:674.268000px;}
.y13b{bottom:677.566518px;}
.yc0{bottom:680.264989px;}
.y116{bottom:681.817494px;}
.y1d{bottom:683.934011px;}
.ya3{bottom:684.175481px;}
.y193{bottom:684.176991px;}
.y71{bottom:688.086018px;}
.yb{bottom:690.502507px;}
.ye5{bottom:691.498509px;}
.y3e{bottom:692.268000px;}
.y13a{bottom:697.366490px;}
.y156{bottom:701.617512px;}
.ybf{bottom:701.864979px;}
.ya2{bottom:705.775517px;}
.y192{bottom:705.776982px;}
.y115{bottom:705.868489px;}
.y70{bottom:709.686009px;}
.y1c{bottom:710.188497px;}
.y3d{bottom:710.268000px;}
.ye4{bottom:711.298482px;}
.y139{bottom:717.166508px;}
.y155{bottom:721.417485px;}
.ybe{bottom:723.465016px;}
.y1b{bottom:723.688497px;}
.y114{bottom:725.668507px;}
.ya1{bottom:727.375508px;}
.y191{bottom:727.377019px;}
.y3c{bottom:728.268000px;}
.ye3{bottom:731.098500px;}
.y6f{bottom:731.286000px;}
.y1a{bottom:737.188497px;}
.y138{bottom:741.217503px;}
.ybd{bottom:745.065007px;}
.y113{bottom:745.468480px;}
.y3b{bottom:746.268000px;}
.ya0{bottom:748.975499px;}
.y190{bottom:748.977010px;}
.y6e{bottom:752.885991px;}
.ye2{bottom:755.149495px;}
.y137{bottom:761.017522px;}
.y154{bottom:765.268498px;}
.ybc{bottom:766.664998px;}
.y112{bottom:769.519521px;}
.y9f{bottom:770.575490px;}
.y18f{bottom:770.577000px;}
.y6d{bottom:774.486005px;}
.ye1{bottom:774.949490px;}
.y171{bottom:780.817494px;}
.y136{bottom:785.068494px;}
.y111{bottom:789.319493px;}
.y9e{bottom:792.175503px;}
.y18e{bottom:792.176991px;}
.y6c{bottom:796.085995px;}
.ye0{bottom:799.000508px;}
.y170{bottom:804.868489px;}
.y110{bottom:809.119511px;}
.y9d{bottom:813.775494px;}
.y18d{bottom:813.777005px;}
.y6b{bottom:817.686009px;}
.ydf{bottom:818.800503px;}
.y16f{bottom:824.668507px;}
.y135{bottom:828.919507px;}
.y10f{bottom:833.170506px;}
.y3a{bottom:833.494511px;}
.y9c{bottom:835.375508px;}
.y18c{bottom:835.376996px;}
.yde{bottom:838.600499px;}
.y6a{bottom:839.286000px;}
.y16e{bottom:844.468503px;}
.y134{bottom:848.719502px;}
.y10e{bottom:852.970502px;}
.y39{bottom:855.094502px;}
.y9b{bottom:856.975499px;}
.y18b{bottom:856.977010px;}
.y69{bottom:860.885991px;}
.ydd{bottom:862.651494px;}
.y133{bottom:868.519498px;}
.y10d{bottom:872.770497px;}
.y38{bottom:876.694493px;}
.y9a{bottom:878.575490px;}
.y18a{bottom:878.577000px;}
.ydc{bottom:882.451489px;}
.y68{bottom:882.486005px;}
.y16d{bottom:888.319493px;}
.y10c{bottom:892.570493px;}
.y37{bottom:898.294507px;}
.y99{bottom:900.175503px;}
.ydb{bottom:902.251508px;}
.y67{bottom:904.085995px;}
.y16c{bottom:908.119511px;}
.y10b{bottom:912.370511px;}
.y189{bottom:912.931500px;}
.y36{bottom:919.894498px;}
.y98{bottom:921.775494px;}
.y66{bottom:925.686009px;}
.yda{bottom:926.302502px;}
.y132{bottom:932.170506px;}
.y188{bottom:934.531491px;}
.y10a{bottom:936.421506px;}
.y35{bottom:941.494511px;}
.y97{bottom:943.375508px;}
.yd9{bottom:946.102498px;}
.y65{bottom:947.286000px;}
.y16b{bottom:951.970502px;}
.y187{bottom:956.131505px;}
.y109{bottom:956.221501px;}
.y96{bottom:964.975499px;}
.yd8{bottom:965.902505px;}
.y64{bottom:968.886002px;}
.y16a{bottom:971.770497px;}
.y34{bottom:975.777005px;}
.y108{bottom:976.021497px;}
.y186{bottom:977.731496px;}
.ya{bottom:981.568495px;}
.y95{bottom:986.575501px;}
.y63{bottom:990.486005px;}
.y107{bottom:995.821503px;}
.y33{bottom:997.376996px;}
.y9{bottom:997.768499px;}
.y185{bottom:999.331498px;}
.y131{bottom:1000.072503px;}
.y94{bottom:1008.175503px;}
.yd7{bottom:1009.975499px;}
.y62{bottom:1012.085995px;}
.y8{bottom:1013.968504px;}
.y106{bottom:1015.621499px;}
.y130{bottom:1019.872498px;}
.y184{bottom:1020.931500px;}
.y93{bottom:1029.775494px;}
.y7{bottom:1030.168503px;}
.y61{bottom:1033.685998px;}
.y32{bottom:1035.106496px;}
.y169{bottom:1035.421506px;}
.y105{bottom:1039.672505px;}
.y183{bottom:1042.531502px;}
.y6{bottom:1046.368501px;}
.y92{bottom:1051.375497px;}
.y168{bottom:1055.221501px;}
.y60{bottom:1055.286000px;}
.y104{bottom:1059.472501px;}
.y5{bottom:1062.568500px;}
.y182{bottom:1064.131499px;}
.y31{bottom:1067.506499px;}
.y5f{bottom:1076.886002px;}
.y4{bottom:1078.768499px;}
.y103{bottom:1079.272502px;}
.y153{bottom:1083.523501px;}
.y181{bottom:1085.731501px;}
.y3{bottom:1094.968499px;}
.y5e{bottom:1098.485999px;}
.y167{bottom:1099.072503px;}
.y30{bottom:1099.906502px;}
.y102{bottom:1103.323502px;}
.y5d{bottom:1120.086001px;}
.y101{bottom:1123.123501px;}
.y5c{bottom:1141.686001px;}
.y2f{bottom:1141.758000px;}
.y100{bottom:1142.923500px;}
.y5b{bottom:1187.917500px;}
.h2{height:35.835938px;}
.hc{height:38.718000px;}
.h3{height:40.315430px;}
.h5{height:44.160000px;}
.h6{height:45.396000px;}
.ha{height:47.405273px;}
.hb{height:50.440000px;}
.he{height:55.484000px;}
.h9{height:60.528000px;}
.h7{height:66.585938px;}
.hd{height:70.560000px;}
.h8{height:90.792000px;}
.h4{height:94.069336px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:85.038000px;}
.x4{left:144.565502px;}
.x2{left:216.133507px;}
.x1{left:306.823494px;}
.x6{left:318.895500px;}
.x10{left:335.902500px;}
.x13{left:340.155001px;}
.x12{left:355.036500px;}
.x14{left:376.155001px;}
.x15{left:382.674002px;}
.xa{left:417.580501px;}
.x8{left:459.007496px;}
.x7{left:472.642502px;}
.xe{left:477.088497px;}
.x11{left:479.190008px;}
.x3{left:480.334501px;}
.xc{left:504.538502px;}
.x9{left:575.161491px;}
.xd{left:584.200493px;}
.xf{left:588.325493px;}
.xb{left:697.120491px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:130.250670pt;}
.ws2{word-spacing:-14.410667pt;}
.ws1{word-spacing:-9.552000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:51.893333pt;}
._19{margin-left:-4.858682pt;}
._0{margin-left:-3.925333pt;}
._2{margin-left:-2.330673pt;}
._1{margin-left:-0.997333pt;}
._c{width:0.933333pt;}
._7{width:2.688000pt;}
._8{width:3.701333pt;}
._f{width:4.730669pt;}
._b{width:5.781333pt;}
._a{width:7.082667pt;}
._4{width:8.000000pt;}
._9{width:9.525333pt;}
._d{width:11.141331pt;}
._3{width:12.143991pt;}
._5{width:13.093343pt;}
._18{width:13.994675pt;}
._13{width:14.890662pt;}
._11{width:15.930669pt;}
._6{width:17.573333pt;}
._e{width:18.981331pt;}
._12{width:20.293328pt;}
._14{width:21.477331pt;}
._15{width:22.629331pt;}
._10{width:23.824000pt;}
._16{width:24.864000pt;}
._1d{width:26.144006pt;}
._20{width:27.247989pt;}
._1c{width:28.581332pt;}
._1b{width:30.394669pt;}
._1a{width:32.656000pt;}
._23{width:34.010668pt;}
._1f{width:37.199999pt;}
._22{width:40.970666pt;}
._17{width:42.197337pt;}
._21{width:46.250665pt;}
._1e{width:56.799999pt;}
._24{width:130.250670pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:53.664000pt;}
.y18{bottom:66.464000pt;}
.y2{bottom:91.460000pt;}
.y5a{bottom:102.639992pt;}
.y1{bottom:104.260000pt;}
.y91{bottom:105.479998pt;}
.ybb{bottom:108.955991pt;}
.y8b{bottom:112.431984pt;}
.y152{bottom:114.452003pt;}
.y59{bottom:121.840024pt;}
.y90{bottom:124.680031pt;}
.yff{bottom:126.836036pt;}
.yba{bottom:128.156023pt;}
.y8a{bottom:131.632016pt;}
.y151{bottom:132.052020pt;}
.y12f{bottom:139.609311pt;}
.y58{bottom:141.039975pt;}
.y180{bottom:142.920021pt;}
.y8f{bottom:143.879982pt;}
.yfe{bottom:144.435971pt;}
.yb9{bottom:147.355975pt;}
.y166{bottom:149.652036pt;}
.y89{bottom:150.831967pt;}
.y150{bottom:153.430682pt;}
.y12e{bottom:157.209327pt;}
.y57{bottom:160.240008pt;}
.yfd{bottom:162.035988pt;}
.y17f{bottom:162.119972pt;}
.y8e{bottom:163.080014pt;}
.yb8{bottom:166.556007pt;}
.y88{bottom:170.032000pt;}
.y14f{bottom:171.030698pt;}
.y12d{bottom:174.809344pt;}
.y17e{bottom:181.320005pt;}
.yd6{bottom:182.279965pt;}
.yfc{bottom:183.414650pt;}
.yb7{bottom:185.756040pt;}
.y14e{bottom:188.630633pt;}
.y87{bottom:189.232033pt;}
.y12c{bottom:192.409360pt;}
.y17d{bottom:200.520037pt;}
.yfb{bottom:201.014666pt;}
.yd5{bottom:201.479998pt;}
.y8d{bottom:204.955991pt;}
.y165{bottom:206.230649pt;}
.y86{bottom:208.431984pt;}
.y14d{bottom:210.009295pt;}
.y12b{bottom:213.788022pt;}
.yfa{bottom:218.614682pt;}
.y17c{bottom:219.719988pt;}
.yd4{bottom:220.680031pt;}
.y164{bottom:223.830665pt;}
.y8c{bottom:224.156023pt;}
.y56{bottom:225.681333pt;}
.y14c{bottom:227.609311pt;}
.y85{bottom:227.632016pt;}
.y12a{bottom:231.388038pt;}
.yf9{bottom:236.214699pt;}
.y17b{bottom:238.920021pt;}
.yd3{bottom:239.879982pt;}
.yb6{bottom:243.355975pt;}
.y55{bottom:243.570656pt;}
.y163{bottom:245.209327pt;}
.y84{bottom:246.831967pt;}
.y129{bottom:248.987973pt;}
.yf8{bottom:257.593361pt;}
.y17a{bottom:258.119972pt;}
.yd2{bottom:259.080014pt;}
.y54{bottom:259.570656pt;}
.yb5{bottom:262.556007pt;}
.y162{bottom:262.809344pt;}
.y83{bottom:266.032000pt;}
.y128{bottom:266.587990pt;}
.yf7{bottom:275.193296pt;}
.y53{bottom:275.570656pt;}
.y179{bottom:277.320005pt;}
.yd1{bottom:278.279965pt;}
.y161{bottom:280.409360pt;}
.yb4{bottom:281.756040pt;}
.y14b{bottom:284.188006pt;}
.y82{bottom:285.232033pt;}
.y127{bottom:287.966652pt;}
.y52{bottom:291.570656pt;}
.yf6{bottom:292.793312pt;}
.y178{bottom:296.520037pt;}
.yd0{bottom:297.479998pt;}
.yb3{bottom:300.955991pt;}
.y160{bottom:301.788022pt;}
.y81{bottom:304.431984pt;}
.y126{bottom:305.566668pt;}
.y51{bottom:307.570656pt;}
.yf5{bottom:314.171974pt;}
.y177{bottom:315.719988pt;}
.ycf{bottom:316.680031pt;}
.y15f{bottom:319.388038pt;}
.yb2{bottom:320.156023pt;}
.y14a{bottom:323.166684pt;}
.y50{bottom:323.570656pt;}
.y80{bottom:323.632016pt;}
.y125{bottom:326.945330pt;}
.yf4{bottom:331.771990pt;}
.yce{bottom:335.879982pt;}
.y15e{bottom:336.987973pt;}
.yb1{bottom:339.355975pt;}
.y4f{bottom:339.570656pt;}
.y149{bottom:340.766701pt;}
.y7f{bottom:342.831967pt;}
.y124{bottom:344.545346pt;}
.y2e{bottom:347.254657pt;}
.yf3{bottom:349.372007pt;}
.ycd{bottom:355.080014pt;}
.y4e{bottom:355.570656pt;}
.y176{bottom:355.995989pt;}
.y148{bottom:358.366676pt;}
.yb0{bottom:358.556007pt;}
.y2d{bottom:359.254657pt;}
.y7e{bottom:362.032000pt;}
.y123{bottom:362.145322pt;}
.yf2{bottom:366.971982pt;}
.y2c{bottom:371.254657pt;}
.y4d{bottom:371.570656pt;}
.ycc{bottom:374.280006pt;}
.y15d{bottom:375.966652pt;}
.yaf{bottom:377.755999pt;}
.y17{bottom:378.546648pt;}
.y147{bottom:379.745338pt;}
.y7d{bottom:381.231992pt;}
.y2b{bottom:383.254657pt;}
.y122{bottom:383.523984pt;}
.y4c{bottom:387.570656pt;}
.yf1{bottom:388.350685pt;}
.y16{bottom:389.213315pt;}
.ycb{bottom:393.479998pt;}
.y15c{bottom:393.566668pt;}
.y2a{bottom:395.254657pt;}
.y175{bottom:395.271990pt;}
.yae{bottom:396.955991pt;}
.y146{bottom:397.345314pt;}
.y15{bottom:399.879982pt;}
.y7c{bottom:400.431984pt;}
.y121{bottom:401.124000pt;}
.y4b{bottom:403.570656pt;}
.yf0{bottom:405.950660pt;}
.y29{bottom:407.254657pt;}
.y19b{bottom:409.205340pt;}
.y14{bottom:410.546648pt;}
.y174{bottom:411.271990pt;}
.yca{bottom:412.679990pt;}
.y145{bottom:414.945330pt;}
.yad{bottom:416.155983pt;}
.y120{bottom:418.724017pt;}
.y28{bottom:419.254657pt;}
.y4a{bottom:419.570656pt;}
.y7b{bottom:419.632016pt;}
.yef{bottom:427.329323pt;}
.y19a{bottom:428.405332pt;}
.y27{bottom:431.254657pt;}
.yc9{bottom:431.879982pt;}
.y144{bottom:432.545346pt;}
.yac{bottom:435.356015pt;}
.y49{bottom:435.570656pt;}
.y11f{bottom:436.323992pt;}
.y13{bottom:436.330665pt;}
.y7a{bottom:438.832008pt;}
.y26{bottom:443.254657pt;}
.yee{bottom:444.929339pt;}
.y199{bottom:447.605324pt;}
.y173{bottom:449.347999pt;}
.y143{bottom:450.145322pt;}
.y12{bottom:450.776019pt;}
.yc8{bottom:451.080014pt;}
.y48{bottom:453.459990pt;}
.y15b{bottom:453.924008pt;}
.yab{bottom:454.556007pt;}
.y25{bottom:455.254657pt;}
.y11e{bottom:457.702654pt;}
.y79{bottom:458.032000pt;}
.yed{bottom:462.529314pt;}
.y11{bottom:465.221331pt;}
.y198{bottom:466.805315pt;}
.yc7{bottom:470.280006pt;}
.y47{bottom:471.349333pt;}
.y142{bottom:471.523984pt;}
.yaa{bottom:473.755999pt;}
.y11d{bottom:475.302671pt;}
.y78{bottom:477.231992pt;}
.y10{bottom:479.666684pt;}
.yec{bottom:483.908017pt;}
.y197{bottom:486.005348pt;}
.y46{bottom:487.349333pt;}
.y141{bottom:489.124000pt;}
.yc6{bottom:489.479998pt;}
.y24{bottom:489.929340pt;}
.y11c{bottom:492.902687pt;}
.ya9{bottom:492.955991pt;}
.yf{bottom:494.111997pt;}
.y77{bottom:496.431984pt;}
.yeb{bottom:501.507993pt;}
.y23{bottom:501.929340pt;}
.y45{bottom:503.349333pt;}
.ye{bottom:506.504005pt;}
.y140{bottom:506.724017pt;}
.yc5{bottom:508.679990pt;}
.y15a{bottom:510.502662pt;}
.ya8{bottom:512.155983pt;}
.y11b{bottom:514.281349pt;}
.y76{bottom:515.632016pt;}
.yea{bottom:519.108009pt;}
.y44{bottom:519.349333pt;}
.y13f{bottom:524.323992pt;}
.y22{bottom:525.266661pt;}
.yc4{bottom:527.879982pt;}
.y196{bottom:527.881325pt;}
.y159{bottom:528.102679pt;}
.ya7{bottom:531.356015pt;}
.y11a{bottom:531.881325pt;}
.y75{bottom:534.832008pt;}
.y43{bottom:535.349333pt;}
.y21{bottom:537.266661pt;}
.ye9{bottom:540.486671pt;}
.y13e{bottom:545.702654pt;}
.yc3{bottom:547.080014pt;}
.y158{bottom:549.481341pt;}
.ya6{bottom:550.556007pt;}
.y42{bottom:551.349333pt;}
.y119{bottom:553.259987pt;}
.y74{bottom:554.032000pt;}
.yd{bottom:557.780006pt;}
.ye8{bottom:558.086647pt;}
.y20{bottom:560.603982pt;}
.y13d{bottom:563.302671pt;}
.yc2{bottom:566.280006pt;}
.y157{bottom:567.081316pt;}
.y41{bottom:567.349333pt;}
.ya5{bottom:569.755999pt;}
.y195{bottom:569.757342pt;}
.y118{bottom:570.860003pt;}
.y1f{bottom:572.603982pt;}
.y73{bottom:573.231992pt;}
.ye7{bottom:575.686663pt;}
.y13c{bottom:580.902687pt;}
.y40{bottom:583.349333pt;}
.y172{bottom:584.681333pt;}
.yc1{bottom:585.479998pt;}
.yc{bottom:585.780006pt;}
.y117{bottom:588.460019pt;}
.ya4{bottom:588.955991pt;}
.y194{bottom:588.957334pt;}
.y72{bottom:592.431984pt;}
.y1e{bottom:595.941343pt;}
.ye6{bottom:597.065325pt;}
.y3f{bottom:599.349333pt;}
.y13b{bottom:602.281349pt;}
.yc0{bottom:604.679990pt;}
.y116{bottom:606.059995pt;}
.y1d{bottom:607.941343pt;}
.ya3{bottom:608.155983pt;}
.y193{bottom:608.157326pt;}
.y71{bottom:611.632016pt;}
.yb{bottom:613.780006pt;}
.ye5{bottom:614.665341pt;}
.y3e{bottom:615.349333pt;}
.y13a{bottom:619.881325pt;}
.y156{bottom:623.660011pt;}
.ybf{bottom:623.879982pt;}
.ya2{bottom:627.356015pt;}
.y192{bottom:627.357317pt;}
.y115{bottom:627.438657pt;}
.y70{bottom:630.832008pt;}
.y1c{bottom:631.278664pt;}
.y3d{bottom:631.349333pt;}
.ye4{bottom:632.265317pt;}
.y139{bottom:637.481341pt;}
.y155{bottom:641.259987pt;}
.ybe{bottom:643.080014pt;}
.y1b{bottom:643.278664pt;}
.y114{bottom:645.038673pt;}
.ya1{bottom:646.556007pt;}
.y191{bottom:646.557350pt;}
.y3c{bottom:647.349333pt;}
.ye3{bottom:649.865333pt;}
.y6f{bottom:650.032000pt;}
.y1a{bottom:655.278664pt;}
.y138{bottom:658.860003pt;}
.ybd{bottom:662.280006pt;}
.y113{bottom:662.638649pt;}
.y3b{bottom:663.349333pt;}
.ya0{bottom:665.755999pt;}
.y190{bottom:665.757342pt;}
.y6e{bottom:669.231992pt;}
.ye2{bottom:671.243995pt;}
.y137{bottom:676.460019pt;}
.y154{bottom:680.238665pt;}
.ybc{bottom:681.479998pt;}
.y112{bottom:684.017352pt;}
.y9f{bottom:684.955991pt;}
.y18f{bottom:684.957334pt;}
.y6d{bottom:688.432004pt;}
.ye1{bottom:688.843991pt;}
.y171{bottom:694.059995pt;}
.y136{bottom:697.838661pt;}
.y111{bottom:701.617327pt;}
.y9e{bottom:704.156003pt;}
.y18e{bottom:704.157326pt;}
.y6c{bottom:707.631996pt;}
.ye0{bottom:710.222674pt;}
.y170{bottom:715.438657pt;}
.y110{bottom:719.217343pt;}
.y9d{bottom:723.355995pt;}
.y18d{bottom:723.357338pt;}
.y6b{bottom:726.832008pt;}
.ydf{bottom:727.822670pt;}
.y16f{bottom:733.038673pt;}
.y135{bottom:736.817339pt;}
.y10f{bottom:740.596006pt;}
.y3a{bottom:740.884010pt;}
.y9c{bottom:742.556007pt;}
.y18c{bottom:742.557330pt;}
.yde{bottom:745.422666pt;}
.y6a{bottom:746.032000pt;}
.y16e{bottom:750.638669pt;}
.y134{bottom:754.417335pt;}
.y10e{bottom:758.196001pt;}
.y39{bottom:760.084002pt;}
.y9b{bottom:761.755999pt;}
.y18b{bottom:761.757342pt;}
.y69{bottom:765.231992pt;}
.ydd{bottom:766.801328pt;}
.y133{bottom:772.017331pt;}
.y10d{bottom:775.795997pt;}
.y38{bottom:779.283994pt;}
.y9a{bottom:780.955991pt;}
.y18a{bottom:780.957334pt;}
.ydc{bottom:784.401324pt;}
.y68{bottom:784.432004pt;}
.y16d{bottom:789.617327pt;}
.y10c{bottom:793.395993pt;}
.y37{bottom:798.484006pt;}
.y99{bottom:800.156003pt;}
.ydb{bottom:802.001340pt;}
.y67{bottom:803.631996pt;}
.y16c{bottom:807.217343pt;}
.y10b{bottom:810.996010pt;}
.y189{bottom:811.494667pt;}
.y36{bottom:817.683998pt;}
.y98{bottom:819.355995pt;}
.y66{bottom:822.832008pt;}
.yda{bottom:823.380002pt;}
.y132{bottom:828.596006pt;}
.y188{bottom:830.694659pt;}
.y10a{bottom:832.374672pt;}
.y35{bottom:836.884010pt;}
.y97{bottom:838.556007pt;}
.yd9{bottom:840.979998pt;}
.y65{bottom:842.032000pt;}
.y16b{bottom:846.196001pt;}
.y187{bottom:849.894671pt;}
.y109{bottom:849.974668pt;}
.y96{bottom:857.755999pt;}
.yd8{bottom:858.580004pt;}
.y64{bottom:861.232002pt;}
.y16a{bottom:863.795997pt;}
.y34{bottom:867.357338pt;}
.y108{bottom:867.574664pt;}
.y186{bottom:869.094663pt;}
.ya{bottom:872.505329pt;}
.y95{bottom:876.956001pt;}
.y63{bottom:880.432004pt;}
.y107{bottom:885.174670pt;}
.y33{bottom:886.557330pt;}
.y9{bottom:886.905333pt;}
.y185{bottom:888.294665pt;}
.y131{bottom:888.953336pt;}
.y94{bottom:896.156003pt;}
.yd7{bottom:897.755999pt;}
.y62{bottom:899.631996pt;}
.y8{bottom:901.305337pt;}
.y106{bottom:902.774666pt;}
.y130{bottom:906.553332pt;}
.y184{bottom:907.494667pt;}
.y93{bottom:915.355995pt;}
.y7{bottom:915.705336pt;}
.y61{bottom:918.831998pt;}
.y32{bottom:920.094663pt;}
.y169{bottom:920.374672pt;}
.y105{bottom:924.153338pt;}
.y183{bottom:926.694669pt;}
.y6{bottom:930.105335pt;}
.y92{bottom:934.555997pt;}
.y168{bottom:937.974668pt;}
.y60{bottom:938.032000pt;}
.y104{bottom:941.753334pt;}
.y5{bottom:944.505334pt;}
.y182{bottom:945.894666pt;}
.y31{bottom:948.894666pt;}
.y5f{bottom:957.232002pt;}
.y4{bottom:958.905333pt;}
.y103{bottom:959.353335pt;}
.y153{bottom:963.132001pt;}
.y181{bottom:965.094668pt;}
.y3{bottom:973.305333pt;}
.y5e{bottom:976.431999pt;}
.y167{bottom:976.953336pt;}
.y30{bottom:977.694669pt;}
.y102{bottom:980.732002pt;}
.y5d{bottom:995.632001pt;}
.y101{bottom:998.332001pt;}
.y5c{bottom:1014.832001pt;}
.y2f{bottom:1014.896000pt;}
.y100{bottom:1015.932000pt;}
.y5b{bottom:1055.926666pt;}
.h2{height:31.854167pt;}
.hc{height:34.416000pt;}
.h3{height:35.835938pt;}
.h5{height:39.253333pt;}
.h6{height:40.352000pt;}
.ha{height:42.138021pt;}
.hb{height:44.835556pt;}
.he{height:49.319111pt;}
.h9{height:53.802667pt;}
.h7{height:59.187500pt;}
.hd{height:62.720000pt;}
.h8{height:80.704000pt;}
.h4{height:83.617188pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:75.589333pt;}
.x4{left:128.502668pt;}
.x2{left:192.118673pt;}
.x1{left:272.731995pt;}
.x6{left:283.462667pt;}
.x10{left:298.580000pt;}
.x13{left:302.360000pt;}
.x12{left:315.588000pt;}
.x14{left:334.360000pt;}
.x15{left:340.154668pt;}
.xa{left:371.182668pt;}
.x8{left:408.006663pt;}
.x7{left:420.126668pt;}
.xe{left:424.078664pt;}
.x11{left:425.946674pt;}
.x3{left:426.964001pt;}
.xc{left:448.478668pt;}
.x9{left:511.254659pt;}
.xd{left:519.289327pt;}
.xf{left:522.955993pt;}
.xb{left:619.662659pt;}
}




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