
    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_c939a20be4910ca7ff072a4c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_fb8d4ca99ff65d89b61f6d0f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.056641;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_05e012cf9d5beb68a263a764.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850098;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_0df4637acfcee421dab14dc2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_63a3167dfc5da9c965fe0228.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_5d9fa0e7fee36037f4a0e1d1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_8e15ba7d13ccc141bd581862.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_951214182a3c8e8129a7df6d.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_186837ca68a9ae58ef31920c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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:ffa;src:url('chunks/assets/font_6f747f31202a4580af3e38ff.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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:ffb;src:url('chunks/assets/font_22ddc0ddba480d5a1bf95bc1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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:ffc;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6d51cfc3f2369bc325d5bae9.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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:ffe;src:url('chunks/assets/font_6026e23e9c41f0cbdfd64f3e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.850586;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:fff;src:url('chunks/assets/font_0d47f043927cfb6bedbeb48c.woff')format("woff");}.fff{font-family:fff;line-height:1.196289;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls3{letter-spacing:-0.334200px;}
.lsd{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.023040px;}
.ls13{letter-spacing:0.025920px;}
.lsc{letter-spacing:0.109200px;}
.ls7{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.483920px;}
.ls6{letter-spacing:3.744000px;}
.ls16{letter-spacing:6.624000px;}
.ls11{letter-spacing:39.185280px;}
.lsf{letter-spacing:39.881280px;}
.lsb{letter-spacing:39.905280px;}
.lsa{letter-spacing:43.505280px;}
.ls14{letter-spacing:44.622720px;}
.lse{letter-spacing:46.002720px;}
.ls19{letter-spacing:46.026720px;}
.ls15{letter-spacing:46.062720px;}
.ls8{letter-spacing:57.744000px;}
.ls17{letter-spacing:59.345280px;}
.ls9{letter-spacing:64.026720px;}
.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;}
}
.ws0{word-spacing:-66.240000px;}
.ws6{word-spacing:-59.760000px;}
.ws4{word-spacing:-32.940000px;}
.wsd{word-spacing:-19.465920px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.784000px;}
.wse{word-spacing:-17.573760px;}
.wsb{word-spacing:-16.712400px;}
.ws7{word-spacing:-16.669200px;}
.ws8{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.272000px;}
.ws1{word-spacing:-15.505800px;}
.wsa{word-spacing:-15.300000px;}
.wsc{word-spacing:-14.595840px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-4.611600px;}
._2{margin-left:-2.385600px;}
._0{margin-left:-1.293120px;}
._1{width:1.317600px;}
._3{width:2.448000px;}
._5{width:3.593520px;}
._4{width:4.658400px;}
.fc4{color:rgb(79,129,189);}
.fc3{color:transparent;}
.fc2{color:rgb(23,54,93);}
.fc1{color:rgb(54,95,145);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:59.760000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y89{bottom:-87.345000px;}
.y88{bottom:-50.625000px;}
.y87{bottom:-13.689000px;}
.y0{bottom:0.000000px;}
.y86{bottom:19.251000px;}
.y2{bottom:57.420000px;}
.y6d{bottom:92.196000px;}
.y6e{bottom:106.425000px;}
.ya9{bottom:118.836000px;}
.yc0{bottom:119.376000px;}
.y5f{bottom:120.276000px;}
.y10a{bottom:125.856000px;}
.y2e{bottom:133.236000px;}
.yee{bottom:134.676000px;}
.y99{bottom:135.576000px;}
.y4a{bottom:139.896000px;}
.yfd{bottom:148.896000px;}
.y19{bottom:154.110000px;}
.y144{bottom:156.090000px;}
.y5e{bottom:156.990000px;}
.y109{bottom:162.930000px;}
.yed{bottom:171.570000px;}
.yfc{bottom:172.650000px;}
.y98{bottom:172.830000px;}
.y49{bottom:176.610000px;}
.y143{bottom:179.850000px;}
.yb6{bottom:180.030000px;}
.y18{bottom:182.010000px;}
.y5d{bottom:193.890000px;}
.y125{bottom:194.970000px;}
.yfb{bottom:196.410000px;}
.y108{bottom:200.190000px;}
.y2d{bottom:202.710000px;}
.y142{bottom:203.610000px;}
.y97{bottom:206.490000px;}
.yec{bottom:208.470000px;}
.y17{bottom:209.730000px;}
.y48{bottom:213.510000px;}
.yb5{bottom:216.930000px;}
.y124{bottom:217.290000px;}
.y5c{bottom:230.610000px;}
.yfa{bottom:235.290000px;}
.y107{bottom:237.450000px;}
.y141{bottom:242.490000px;}
.yeb{bottom:245.190000px;}
.yb4{bottom:249.690000px;}
.y47{bottom:250.230000px;}
.y16{bottom:252.570000px;}
.yf9{bottom:259.050000px;}
.y5b{bottom:263.550000px;}
.y140{bottom:266.250000px;}
.y106{bottom:274.710000px;}
.y123{bottom:274.890000px;}
.yea{bottom:282.090000px;}
.yf8{bottom:282.810000px;}
.y46{bottom:287.670000px;}
.y13f{bottom:290.010000px;}
.y15{bottom:295.230000px;}
.y85{bottom:307.650000px;}
.y45{bottom:311.430000px;}
.y122{bottom:311.790000px;}
.y105{bottom:311.970000px;}
.y13e{bottom:313.950000px;}
.ye9{bottom:318.855000px;}
.yf7{bottom:321.735000px;}
.ydb{bottom:322.635000px;}
.y14{bottom:335.955000px;}
.y13d{bottom:337.755000px;}
.y84{bottom:344.370000px;}
.yf6{bottom:345.495000px;}
.y121{bottom:348.555000px;}
.y104{bottom:349.275000px;}
.y44{bottom:350.355000px;}
.ye8{bottom:355.755000px;}
.yf5{bottom:369.255000px;}
.y13{bottom:373.215000px;}
.y43{bottom:374.115000px;}
.y13c{bottom:376.455000px;}
.yda{bottom:377.355000px;}
.y83{bottom:381.270000px;}
.y120{bottom:385.455000px;}
.y103{bottom:386.535000px;}
.ye7{bottom:392.475000px;}
.yd9{bottom:397.695000px;}
.y13b{bottom:400.395000px;}
.y82{bottom:403.050000px;}
.yf4{bottom:407.775000px;}
.y12{bottom:410.475000px;}
.y42{bottom:412.815000px;}
.yd8{bottom:417.135000px;}
.y102{bottom:420.015000px;}
.y11f{bottom:422.175000px;}
.y13a{bottom:424.155000px;}
.y81{bottom:424.830000px;}
.ye6{bottom:429.375000px;}
.yf3{bottom:431.895000px;}
.y41{bottom:436.755000px;}
.yd7{bottom:437.835000px;}
.y11{bottom:447.735000px;}
.y139{bottom:447.915000px;}
.y6c{bottom:453.855000px;}
.yf2{bottom:455.655000px;}
.yd6{bottom:458.535000px;}
.y11e{bottom:459.075000px;}
.y80{bottom:461.370000px;}
.ye5{bottom:462.315000px;}
.y138{bottom:471.675000px;}
.y40{bottom:475.095000px;}
.ya8{bottom:477.615000px;}
.yd5{bottom:479.235000px;}
.y10{bottom:484.995000px;}
.yf1{bottom:490.035000px;}
.y11d{bottom:495.795000px;}
.y7f{bottom:498.480000px;}
.ya7{bottom:501.555000px;}
.y137{bottom:510.015000px;}
.y3f{bottom:514.335000px;}
.y7e{bottom:520.260000px;}
.y2c{bottom:520.455000px;}
.yd4{bottom:520.815000px;}
.yf{bottom:522.255000px;}
.ya6{bottom:525.315000px;}
.y136{bottom:531.795000px;}
.y11c{bottom:533.235000px;}
.y3e{bottom:538.095000px;}
.ybf{bottom:539.535000px;}
.yd3{bottom:541.515000px;}
.y7d{bottom:542.220000px;}
.ya5{bottom:549.075000px;}
.y135{bottom:554.115000px;}
.y11b{bottom:556.995000px;}
.ye{bottom:559.515000px;}
.y2b{bottom:560.595000px;}
.y150{bottom:560.955000px;}
.yd2{bottom:562.215000px;}
.y7c{bottom:564.000000px;}
.ya4{bottom:572.865000px;}
.ybe{bottom:576.825000px;}
.y3d{bottom:577.005000px;}
.y134{bottom:578.085000px;}
.y96{bottom:579.165000px;}
.y11a{bottom:580.965000px;}
.y2a{bottom:581.325000px;}
.yd1{bottom:585.465000px;}
.y14f{bottom:599.145000px;}
.yd{bottom:600.045000px;}
.y7b{bottom:600.360000px;}
.y3c{bottom:600.765000px;}
.y133{bottom:601.845000px;}
.y95{bottom:602.205000px;}
.y119{bottom:604.725000px;}
.y5a{bottom:604.905000px;}
.ya3{bottom:611.385000px;}
.ye4{bottom:620.025000px;}
.y29{bottom:620.205000px;}
.y14e{bottom:622.905000px;}
.ybd{bottom:624.525000px;}
.yd0{bottom:625.065000px;}
.y94{bottom:625.965000px;}
.y118{bottom:628.485000px;}
.y7a{bottom:637.620000px;}
.y3b{bottom:639.105000px;}
.y59{bottom:641.805000px;}
.y28{bottom:644.145000px;}
.ycf{bottom:644.505000px;}
.yc{bottom:646.845000px;}
.y132{bottom:647.385000px;}
.ybc{bottom:648.285000px;}
.y93{bottom:649.725000px;}
.ya2{bottom:650.445000px;}
.y79{bottom:659.400000px;}
.y14d{bottom:660.885000px;}
.ye3{bottom:661.245000px;}
.yce{bottom:665.205000px;}
.y117{bottom:666.825000px;}
.y27{bottom:667.905000px;}
.y131{bottom:671.325000px;}
.ybb{bottom:672.045000px;}
.y92{bottom:673.665000px;}
.ya1{bottom:674.385000px;}
.y3a{bottom:677.805000px;}
.y58{bottom:679.065000px;}
.y78{bottom:681.180000px;}
.ye2{bottom:681.405000px;}
.ycd{bottom:685.905000px;}
.y26{bottom:691.665000px;}
.yb{bottom:693.645000px;}
.y130{bottom:695.085000px;}
.yb3{bottom:695.265000px;}
.yba{bottom:695.985000px;}
.ya0{bottom:698.145000px;}
.y14c{bottom:699.045000px;}
.ye1{bottom:700.845000px;}
.y57{bottom:702.825000px;}
.y116{bottom:704.445000px;}
.ycc{bottom:706.605000px;}
.y91{bottom:712.005000px;}
.y39{bottom:715.245000px;}
.y6b{bottom:717.045000px;}
.y77{bottom:718.125000px;}
.y12f{bottom:718.845000px;}
.yb2{bottom:719.025000px;}
.yb9{bottom:719.745000px;}
.ye0{bottom:721.185000px;}
.y115{bottom:728.205000px;}
.y25{bottom:730.545000px;}
.y9f{bottom:732.345000px;}
.y14b{bottom:737.025000px;}
.y38{bottom:739.005000px;}
.y76{bottom:739.905000px;}
.ya{bottom:740.265000px;}
.ydf{bottom:740.625000px;}
.y6a{bottom:740.805000px;}
.y56{bottom:741.705000px;}
.y12e{bottom:742.065000px;}
.yb1{bottom:742.785000px;}
.y90{bottom:746.745000px;}
.ycb{bottom:748.005000px;}
.y24{bottom:754.305000px;}
.yb8{bottom:758.085000px;}
.yde{bottom:761.325000px;}
.y75{bottom:761.685000px;}
.y37{bottom:762.765000px;}
.y12d{bottom:764.385000px;}
.y69{bottom:764.565000px;}
.y55{bottom:765.465000px;}
.yb0{bottom:766.545000px;}
.y114{bottom:767.085000px;}
.y14a{bottom:775.005000px;}
.y23{bottom:778.065000px;}
.ydd{bottom:781.485000px;}
.y36{bottom:786.525000px;}
.y12c{bottom:788.325000px;}
.y54{bottom:789.405000px;}
.yca{bottom:789.945000px;}
.y9{bottom:790.305000px;}
.yaf{bottom:790.485000px;}
.y113{bottom:790.845000px;}
.yb7{bottom:792.825000px;}
.ydc{bottom:796.425000px;}
.y74{bottom:798.585000px;}
.y149{bottom:798.765000px;}
.y22{bottom:801.825000px;}
.y68{bottom:802.905000px;}
.yc9{bottom:810.645000px;}
.y12b{bottom:812.085000px;}
.y53{bottom:813.165000px;}
.yae{bottom:814.245000px;}
.y112{bottom:814.605000px;}
.y101{bottom:817.125000px;}
.y73{bottom:820.365000px;}
.y35{bottom:825.450000px;}
.y8{bottom:828.150000px;}
.yc8{bottom:831.390000px;}
.y12a{bottom:835.350000px;}
.y148{bottom:836.790000px;}
.y67{bottom:840.390000px;}
.y21{bottom:840.750000px;}
.y34{bottom:849.210000px;}
.y52{bottom:851.910000px;}
.yad{bottom:852.630000px;}
.y111{bottom:853.530000px;}
.y100{bottom:855.330000px;}
.y72{bottom:857.265000px;}
.y129{bottom:857.670000px;}
.y66{bottom:864.150000px;}
.y20{bottom:864.510000px;}
.y7{bottom:872.610000px;}
.y33{bottom:872.970000px;}
.yc7{bottom:873.150000px;}
.y147{bottom:874.950000px;}
.y51{bottom:875.850000px;}
.y110{bottom:877.290000px;}
.y71{bottom:879.045000px;}
.y128{bottom:881.610000px;}
.yac{bottom:887.370000px;}
.y65{bottom:887.910000px;}
.y1f{bottom:888.450000px;}
.yf0{bottom:892.230000px;}
.yc6{bottom:893.850000px;}
.y9e{bottom:895.290000px;}
.y146{bottom:898.710000px;}
.y10f{bottom:901.050000px;}
.y127{bottom:905.370000px;}
.y64{bottom:911.130000px;}
.y32{bottom:913.830000px;}
.y50{bottom:914.550000px;}
.y70{bottom:915.585000px;}
.y6{bottom:916.170000px;}
.y9d{bottom:919.050000px;}
.y1e{bottom:927.150000px;}
.y126{bottom:928.590000px;}
.yef{bottom:929.490000px;}
.y8f{bottom:931.110000px;}
.y63{bottom:932.910000px;}
.yc5{bottom:935.610000px;}
.y145{bottom:936.690000px;}
.y10e{bottom:939.930000px;}
.y9c{bottom:942.450000px;}
.y31{bottom:943.890000px;}
.y1d{bottom:950.910000px;}
.y6f{bottom:952.305000px;}
.y4f{bottom:953.430000px;}
.y8e{bottom:954.870000px;}
.y62{bottom:955.410000px;}
.yc4{bottom:956.310000px;}
.y10d{bottom:963.690000px;}
.y5{bottom:974.850000px;}
.y4e{bottom:977.190000px;}
.y61{bottom:978.630000px;}
.y8d{bottom:978.810000px;}
.y9b{bottom:982.230000px;}
.y10c{bottom:987.630000px;}
.yc3{bottom:997.890000px;}
.y1c{bottom:998.610000px;}
.y4d{bottom:1000.950000px;}
.y8c{bottom:1002.570000px;}
.y9a{bottom:1005.090000px;}
.y30{bottom:1011.210000px;}
.yff{bottom:1016.070000px;}
.yc2{bottom:1018.590000px;}
.y4c{bottom:1024.710000px;}
.y10b{bottom:1025.970000px;}
.y4{bottom:1027.050000px;}
.y1b{bottom:1036.590000px;}
.yab{bottom:1038.030000px;}
.yfe{bottom:1039.830000px;}
.y8b{bottom:1040.550000px;}
.y2f{bottom:1049.370000px;}
.y1a{bottom:1060.710000px;}
.yaa{bottom:1061.430000px;}
.yc1{bottom:1063.050000px;}
.y4b{bottom:1063.230000px;}
.y8a{bottom:1063.410000px;}
.y60{bottom:1063.590000px;}
.y3{bottom:1064.310000px;}
.y1{bottom:1118.340000px;}
.h9{height:50.273438px;}
.hb{height:54.386719px;}
.h1{height:55.825312px;}
.h16{height:61.423863px;}
.hf{height:65.010937px;}
.h12{height:66.757500px;}
.h13{height:68.084282px;}
.ha{height:70.628906px;}
.h3{height:70.664062px;}
.he{height:72.562500px;}
.h10{height:74.953125px;}
.hd{height:80.703984px;}
.h14{height:80.949375px;}
.h7{height:82.676953px;}
.h8{height:84.898125px;}
.h15{height:86.255508px;}
.h5{height:93.983203px;}
.h6{height:95.304375px;}
.h2{height:129.250898px;}
.h4{height:129.315234px;}
.hc{height:132.789375px;}
.h11{height:967.635000px;}
.h0{height:1188.000000px;}
.w1{width:740.835000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x26{left:10.836000px;}
.x29{left:37.836000px;}
.x27{left:44.676000px;}
.x2a{left:64.836000px;}
.x28{left:71.670000px;}
.x25{left:81.540000px;}
.x3{left:135.036000px;}
.x10{left:136.656000px;}
.x6{left:138.276000px;}
.x38{left:140.436000px;}
.x15{left:142.056000px;}
.x19{left:143.136000px;}
.x18{left:144.936000px;}
.x3a{left:150.330000px;}
.x13{left:154.110000px;}
.x3b{left:155.370000px;}
.x3d{left:156.630000px;}
.x1a{left:159.150000px;}
.xf{left:160.770000px;}
.xe{left:162.750000px;}
.x5{left:165.630000px;}
.x12{left:167.970000px;}
.x1d{left:171.030000px;}
.xb{left:179.310000px;}
.x16{left:182.370000px;}
.x20{left:189.030000px;}
.xa{left:193.710000px;}
.x37{left:198.570000px;}
.x14{left:210.090000px;}
.x3c{left:212.250000px;}
.x22{left:216.030000px;}
.x11{left:237.270000px;}
.x23{left:243.030000px;}
.xc{left:263.550000px;}
.x9{left:270.390000px;}
.x1b{left:291.495000px;}
.x17{left:299.595000px;}
.x1{left:316.155000px;}
.x3e{left:320.295000px;}
.x39{left:337.575000px;}
.x7{left:340.275000px;}
.x8{left:364.755000px;}
.x1c{left:377.895000px;}
.x1f{left:406.335000px;}
.x3f{left:410.115000px;}
.xd{left:420.015000px;}
.x32{left:449.895000px;}
.x2{left:454.395000px;}
.x4{left:459.075000px;}
.x2b{left:630.330000px;}
.x34{left:648.825000px;}
.x2f{left:720.150000px;}
.x2d{left:725.730000px;}
.x36{left:740.670000px;}
.x31{left:742.650000px;}
.x33{left:761.730000px;}
.x2e{left:772.350000px;}
.x2c{left:783.150000px;}
.x1e{left:797.370000px;}
.x30{left:864.150000px;}
.x24{left:875.340000px;}
.x35{left:889.560000px;}
.x21{left:907.740000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls3{letter-spacing:-0.297067pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.020480pt;}
.ls13{letter-spacing:0.023040pt;}
.lsc{letter-spacing:0.097067pt;}
.ls7{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.319040pt;}
.ls6{letter-spacing:3.328000pt;}
.ls16{letter-spacing:5.888000pt;}
.ls11{letter-spacing:34.831360pt;}
.lsf{letter-spacing:35.450027pt;}
.lsb{letter-spacing:35.471360pt;}
.lsa{letter-spacing:38.671360pt;}
.ls14{letter-spacing:39.664640pt;}
.lse{letter-spacing:40.891307pt;}
.ls19{letter-spacing:40.912640pt;}
.ls15{letter-spacing:40.944640pt;}
.ls8{letter-spacing:51.328000pt;}
.ls17{letter-spacing:52.751360pt;}
.ls9{letter-spacing:56.912640pt;}
.ws0{word-spacing:-58.880000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws4{word-spacing:-29.280000pt;}
.wsd{word-spacing:-17.303040pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.621120pt;}
.wsb{word-spacing:-14.855467pt;}
.ws7{word-spacing:-14.817067pt;}
.ws8{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.464000pt;}
.ws1{word-spacing:-13.782933pt;}
.wsa{word-spacing:-13.600000pt;}
.wsc{word-spacing:-12.974080pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-4.099200pt;}
._2{margin-left:-2.120533pt;}
._0{margin-left:-1.149440pt;}
._1{width:1.171200pt;}
._3{width:2.176000pt;}
._5{width:3.194240pt;}
._4{width:4.140800pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y89{bottom:-77.640000pt;}
.y88{bottom:-45.000000pt;}
.y87{bottom:-12.168000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:17.112000pt;}
.y2{bottom:51.040000pt;}
.y6d{bottom:81.952000pt;}
.y6e{bottom:94.600000pt;}
.ya9{bottom:105.632000pt;}
.yc0{bottom:106.112000pt;}
.y5f{bottom:106.912000pt;}
.y10a{bottom:111.872000pt;}
.y2e{bottom:118.432000pt;}
.yee{bottom:119.712000pt;}
.y99{bottom:120.512000pt;}
.y4a{bottom:124.352000pt;}
.yfd{bottom:132.352000pt;}
.y19{bottom:136.986667pt;}
.y144{bottom:138.746667pt;}
.y5e{bottom:139.546667pt;}
.y109{bottom:144.826667pt;}
.yed{bottom:152.506667pt;}
.yfc{bottom:153.466667pt;}
.y98{bottom:153.626667pt;}
.y49{bottom:156.986667pt;}
.y143{bottom:159.866667pt;}
.yb6{bottom:160.026667pt;}
.y18{bottom:161.786667pt;}
.y5d{bottom:172.346667pt;}
.y125{bottom:173.306667pt;}
.yfb{bottom:174.586667pt;}
.y108{bottom:177.946667pt;}
.y2d{bottom:180.186667pt;}
.y142{bottom:180.986667pt;}
.y97{bottom:183.546667pt;}
.yec{bottom:185.306667pt;}
.y17{bottom:186.426667pt;}
.y48{bottom:189.786667pt;}
.yb5{bottom:192.826667pt;}
.y124{bottom:193.146667pt;}
.y5c{bottom:204.986667pt;}
.yfa{bottom:209.146667pt;}
.y107{bottom:211.066667pt;}
.y141{bottom:215.546667pt;}
.yeb{bottom:217.946667pt;}
.yb4{bottom:221.946667pt;}
.y47{bottom:222.426667pt;}
.y16{bottom:224.506667pt;}
.yf9{bottom:230.266667pt;}
.y5b{bottom:234.266667pt;}
.y140{bottom:236.666667pt;}
.y106{bottom:244.186667pt;}
.y123{bottom:244.346667pt;}
.yea{bottom:250.746667pt;}
.yf8{bottom:251.386667pt;}
.y46{bottom:255.706667pt;}
.y13f{bottom:257.786667pt;}
.y15{bottom:262.426667pt;}
.y85{bottom:273.466667pt;}
.y45{bottom:276.826667pt;}
.y122{bottom:277.146667pt;}
.y105{bottom:277.306667pt;}
.y13e{bottom:279.066667pt;}
.ye9{bottom:283.426667pt;}
.yf7{bottom:285.986667pt;}
.ydb{bottom:286.786667pt;}
.y14{bottom:298.626667pt;}
.y13d{bottom:300.226667pt;}
.y84{bottom:306.106667pt;}
.yf6{bottom:307.106667pt;}
.y121{bottom:309.826667pt;}
.y104{bottom:310.466667pt;}
.y44{bottom:311.426667pt;}
.ye8{bottom:316.226667pt;}
.yf5{bottom:328.226667pt;}
.y13{bottom:331.746667pt;}
.y43{bottom:332.546667pt;}
.y13c{bottom:334.626667pt;}
.yda{bottom:335.426667pt;}
.y83{bottom:338.906667pt;}
.y120{bottom:342.626667pt;}
.y103{bottom:343.586667pt;}
.ye7{bottom:348.866667pt;}
.yd9{bottom:353.506667pt;}
.y13b{bottom:355.906667pt;}
.y82{bottom:358.266667pt;}
.yf4{bottom:362.466667pt;}
.y12{bottom:364.866667pt;}
.y42{bottom:366.946667pt;}
.yd8{bottom:370.786667pt;}
.y102{bottom:373.346667pt;}
.y11f{bottom:375.266667pt;}
.y13a{bottom:377.026667pt;}
.y81{bottom:377.626667pt;}
.ye6{bottom:381.666667pt;}
.yf3{bottom:383.906667pt;}
.y41{bottom:388.226667pt;}
.yd7{bottom:389.186667pt;}
.y11{bottom:397.986667pt;}
.y139{bottom:398.146667pt;}
.y6c{bottom:403.426667pt;}
.yf2{bottom:405.026667pt;}
.yd6{bottom:407.586667pt;}
.y11e{bottom:408.066667pt;}
.y80{bottom:410.106667pt;}
.ye5{bottom:410.946667pt;}
.y138{bottom:419.266667pt;}
.y40{bottom:422.306667pt;}
.ya8{bottom:424.546667pt;}
.yd5{bottom:425.986667pt;}
.y10{bottom:431.106667pt;}
.yf1{bottom:435.586667pt;}
.y11d{bottom:440.706667pt;}
.y7f{bottom:443.093333pt;}
.ya7{bottom:445.826667pt;}
.y137{bottom:453.346667pt;}
.y3f{bottom:457.186667pt;}
.y7e{bottom:462.453333pt;}
.y2c{bottom:462.626667pt;}
.yd4{bottom:462.946667pt;}
.yf{bottom:464.226667pt;}
.ya6{bottom:466.946667pt;}
.y136{bottom:472.706667pt;}
.y11c{bottom:473.986667pt;}
.y3e{bottom:478.306667pt;}
.ybf{bottom:479.586667pt;}
.yd3{bottom:481.346667pt;}
.y7d{bottom:481.973333pt;}
.ya5{bottom:488.066667pt;}
.y135{bottom:492.546667pt;}
.y11b{bottom:495.106667pt;}
.ye{bottom:497.346667pt;}
.y2b{bottom:498.306667pt;}
.y150{bottom:498.626667pt;}
.yd2{bottom:499.746667pt;}
.y7c{bottom:501.333333pt;}
.ya4{bottom:509.213333pt;}
.ybe{bottom:512.733333pt;}
.y3d{bottom:512.893333pt;}
.y134{bottom:513.853333pt;}
.y96{bottom:514.813333pt;}
.y11a{bottom:516.413333pt;}
.y2a{bottom:516.733333pt;}
.yd1{bottom:520.413333pt;}
.y14f{bottom:532.573333pt;}
.yd{bottom:533.373333pt;}
.y7b{bottom:533.653333pt;}
.y3c{bottom:534.013333pt;}
.y133{bottom:534.973333pt;}
.y95{bottom:535.293333pt;}
.y119{bottom:537.533333pt;}
.y5a{bottom:537.693333pt;}
.ya3{bottom:543.453333pt;}
.ye4{bottom:551.133333pt;}
.y29{bottom:551.293333pt;}
.y14e{bottom:553.693333pt;}
.ybd{bottom:555.133333pt;}
.yd0{bottom:555.613333pt;}
.y94{bottom:556.413333pt;}
.y118{bottom:558.653333pt;}
.y7a{bottom:566.773333pt;}
.y3b{bottom:568.093333pt;}
.y59{bottom:570.493333pt;}
.y28{bottom:572.573333pt;}
.ycf{bottom:572.893333pt;}
.yc{bottom:574.973333pt;}
.y132{bottom:575.453333pt;}
.ybc{bottom:576.253333pt;}
.y93{bottom:577.533333pt;}
.ya2{bottom:578.173333pt;}
.y79{bottom:586.133333pt;}
.y14d{bottom:587.453333pt;}
.ye3{bottom:587.773333pt;}
.yce{bottom:591.293333pt;}
.y117{bottom:592.733333pt;}
.y27{bottom:593.693333pt;}
.y131{bottom:596.733333pt;}
.ybb{bottom:597.373333pt;}
.y92{bottom:598.813333pt;}
.ya1{bottom:599.453333pt;}
.y3a{bottom:602.493333pt;}
.y58{bottom:603.613333pt;}
.y78{bottom:605.493333pt;}
.ye2{bottom:605.693333pt;}
.ycd{bottom:609.693333pt;}
.y26{bottom:614.813333pt;}
.yb{bottom:616.573333pt;}
.y130{bottom:617.853333pt;}
.yb3{bottom:618.013333pt;}
.yba{bottom:618.653333pt;}
.ya0{bottom:620.573333pt;}
.y14c{bottom:621.373333pt;}
.ye1{bottom:622.973333pt;}
.y57{bottom:624.733333pt;}
.y116{bottom:626.173333pt;}
.ycc{bottom:628.093333pt;}
.y91{bottom:632.893333pt;}
.y39{bottom:635.773333pt;}
.y6b{bottom:637.373333pt;}
.y77{bottom:638.333333pt;}
.y12f{bottom:638.973333pt;}
.yb2{bottom:639.133333pt;}
.yb9{bottom:639.773333pt;}
.ye0{bottom:641.053333pt;}
.y115{bottom:647.293333pt;}
.y25{bottom:649.373333pt;}
.y9f{bottom:650.973333pt;}
.y14b{bottom:655.133333pt;}
.y38{bottom:656.893333pt;}
.y76{bottom:657.693333pt;}
.ya{bottom:658.013333pt;}
.ydf{bottom:658.333333pt;}
.y6a{bottom:658.493333pt;}
.y56{bottom:659.293333pt;}
.y12e{bottom:659.613333pt;}
.yb1{bottom:660.253333pt;}
.y90{bottom:663.773333pt;}
.ycb{bottom:664.893333pt;}
.y24{bottom:670.493333pt;}
.yb8{bottom:673.853333pt;}
.yde{bottom:676.733333pt;}
.y75{bottom:677.053333pt;}
.y37{bottom:678.013333pt;}
.y12d{bottom:679.453333pt;}
.y69{bottom:679.613333pt;}
.y55{bottom:680.413333pt;}
.yb0{bottom:681.373333pt;}
.y114{bottom:681.853333pt;}
.y14a{bottom:688.893333pt;}
.y23{bottom:691.613333pt;}
.ydd{bottom:694.653333pt;}
.y36{bottom:699.133333pt;}
.y12c{bottom:700.733333pt;}
.y54{bottom:701.693333pt;}
.yca{bottom:702.173333pt;}
.y9{bottom:702.493333pt;}
.yaf{bottom:702.653333pt;}
.y113{bottom:702.973333pt;}
.yb7{bottom:704.733333pt;}
.ydc{bottom:707.933333pt;}
.y74{bottom:709.853333pt;}
.y149{bottom:710.013333pt;}
.y22{bottom:712.733333pt;}
.y68{bottom:713.693333pt;}
.yc9{bottom:720.573333pt;}
.y12b{bottom:721.853333pt;}
.y53{bottom:722.813333pt;}
.yae{bottom:723.773333pt;}
.y112{bottom:724.093333pt;}
.y101{bottom:726.333333pt;}
.y73{bottom:729.213333pt;}
.y35{bottom:733.733333pt;}
.y8{bottom:736.133333pt;}
.yc8{bottom:739.013333pt;}
.y12a{bottom:742.533333pt;}
.y148{bottom:743.813333pt;}
.y67{bottom:747.013333pt;}
.y21{bottom:747.333333pt;}
.y34{bottom:754.853333pt;}
.y52{bottom:757.253333pt;}
.yad{bottom:757.893333pt;}
.y111{bottom:758.693333pt;}
.y100{bottom:760.293333pt;}
.y72{bottom:762.013333pt;}
.y129{bottom:762.373333pt;}
.y66{bottom:768.133333pt;}
.y20{bottom:768.453333pt;}
.y7{bottom:775.653333pt;}
.y33{bottom:775.973333pt;}
.yc7{bottom:776.133333pt;}
.y147{bottom:777.733333pt;}
.y51{bottom:778.533333pt;}
.y110{bottom:779.813333pt;}
.y71{bottom:781.373333pt;}
.y128{bottom:783.653333pt;}
.yac{bottom:788.773333pt;}
.y65{bottom:789.253333pt;}
.y1f{bottom:789.733333pt;}
.yf0{bottom:793.093333pt;}
.yc6{bottom:794.533333pt;}
.y9e{bottom:795.813333pt;}
.y146{bottom:798.853333pt;}
.y10f{bottom:800.933333pt;}
.y127{bottom:804.773333pt;}
.y64{bottom:809.893333pt;}
.y32{bottom:812.293333pt;}
.y50{bottom:812.933333pt;}
.y70{bottom:813.853333pt;}
.y6{bottom:814.373333pt;}
.y9d{bottom:816.933333pt;}
.y1e{bottom:824.133333pt;}
.y126{bottom:825.413333pt;}
.yef{bottom:826.213333pt;}
.y8f{bottom:827.653333pt;}
.y63{bottom:829.253333pt;}
.yc5{bottom:831.653333pt;}
.y145{bottom:832.613333pt;}
.y10e{bottom:835.493333pt;}
.y9c{bottom:837.733333pt;}
.y31{bottom:839.013333pt;}
.y1d{bottom:845.253333pt;}
.y6f{bottom:846.493333pt;}
.y4f{bottom:847.493333pt;}
.y8e{bottom:848.773333pt;}
.y62{bottom:849.253333pt;}
.yc4{bottom:850.053333pt;}
.y10d{bottom:856.613333pt;}
.y5{bottom:866.533333pt;}
.y4e{bottom:868.613333pt;}
.y61{bottom:869.893333pt;}
.y8d{bottom:870.053333pt;}
.y9b{bottom:873.093333pt;}
.y10c{bottom:877.893333pt;}
.yc3{bottom:887.013333pt;}
.y1c{bottom:887.653333pt;}
.y4d{bottom:889.733333pt;}
.y8c{bottom:891.173333pt;}
.y9a{bottom:893.413333pt;}
.y30{bottom:898.853333pt;}
.yff{bottom:903.173333pt;}
.yc2{bottom:905.413333pt;}
.y4c{bottom:910.853333pt;}
.y10b{bottom:911.973333pt;}
.y4{bottom:912.933333pt;}
.y1b{bottom:921.413333pt;}
.yab{bottom:922.693333pt;}
.yfe{bottom:924.293333pt;}
.y8b{bottom:924.933333pt;}
.y2f{bottom:932.773333pt;}
.y1a{bottom:942.853333pt;}
.yaa{bottom:943.493333pt;}
.yc1{bottom:944.933333pt;}
.y4b{bottom:945.093333pt;}
.y8a{bottom:945.253333pt;}
.y60{bottom:945.413333pt;}
.y3{bottom:946.053333pt;}
.y1{bottom:994.080000pt;}
.h9{height:44.687500pt;}
.hb{height:48.343750pt;}
.h1{height:49.622500pt;}
.h16{height:54.598989pt;}
.hf{height:57.787500pt;}
.h12{height:59.340000pt;}
.h13{height:60.519362pt;}
.ha{height:62.781250pt;}
.h3{height:62.812500pt;}
.he{height:64.500000pt;}
.h10{height:66.625000pt;}
.hd{height:71.736875pt;}
.h14{height:71.955000pt;}
.h7{height:73.490625pt;}
.h8{height:75.465000pt;}
.h15{height:76.671562pt;}
.h5{height:83.540625pt;}
.h6{height:84.715000pt;}
.h2{height:114.889687pt;}
.h4{height:114.946875pt;}
.hc{height:118.035000pt;}
.h11{height:860.120000pt;}
.h0{height:1056.000000pt;}
.w1{width:658.520000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x26{left:9.632000pt;}
.x29{left:33.632000pt;}
.x27{left:39.712000pt;}
.x2a{left:57.632000pt;}
.x28{left:63.706667pt;}
.x25{left:72.480000pt;}
.x3{left:120.032000pt;}
.x10{left:121.472000pt;}
.x6{left:122.912000pt;}
.x38{left:124.832000pt;}
.x15{left:126.272000pt;}
.x19{left:127.232000pt;}
.x18{left:128.832000pt;}
.x3a{left:133.626667pt;}
.x13{left:136.986667pt;}
.x3b{left:138.106667pt;}
.x3d{left:139.226667pt;}
.x1a{left:141.466667pt;}
.xf{left:142.906667pt;}
.xe{left:144.666667pt;}
.x5{left:147.226667pt;}
.x12{left:149.306667pt;}
.x1d{left:152.026667pt;}
.xb{left:159.386667pt;}
.x16{left:162.106667pt;}
.x20{left:168.026667pt;}
.xa{left:172.186667pt;}
.x37{left:176.506667pt;}
.x14{left:186.746667pt;}
.x3c{left:188.666667pt;}
.x22{left:192.026667pt;}
.x11{left:210.906667pt;}
.x23{left:216.026667pt;}
.xc{left:234.266667pt;}
.x9{left:240.346667pt;}
.x1b{left:259.106667pt;}
.x17{left:266.306667pt;}
.x1{left:281.026667pt;}
.x3e{left:284.706667pt;}
.x39{left:300.066667pt;}
.x7{left:302.466667pt;}
.x8{left:324.226667pt;}
.x1c{left:335.906667pt;}
.x1f{left:361.186667pt;}
.x3f{left:364.546667pt;}
.xd{left:373.346667pt;}
.x32{left:399.906667pt;}
.x2{left:403.906667pt;}
.x4{left:408.066667pt;}
.x2b{left:560.293333pt;}
.x34{left:576.733333pt;}
.x2f{left:640.133333pt;}
.x2d{left:645.093333pt;}
.x36{left:658.373333pt;}
.x31{left:660.133333pt;}
.x33{left:677.093333pt;}
.x2e{left:686.533333pt;}
.x2c{left:696.133333pt;}
.x1e{left:708.773333pt;}
.x30{left:768.133333pt;}
.x24{left:778.080000pt;}
.x35{left:790.720000pt;}
.x21{left:806.880000pt;}
}




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