
    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_c004815818c96f99c848d648.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ac46df00a132cc284bdb6bcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_730d4ac0ce22d0bb9ebfc7fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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_d881f45721f2d7958e13e8b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_2fb1ada2d4e903417a1ad346.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_1aea236f4defbc98a45774de.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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_2211e614f43ced9de68725b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.117676;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_958a05946d849a0371ef47fb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_456bfb93a7f3b68fecf61780.woff2')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_77068b382be40a420c68fd60.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9d5b6db78b7960912bd135f5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.372070;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_b484d3c53fb0e75d582661fd.woff2')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_a4b1c63c92c7c9a5bd830045.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_316d132d20ca1e344ac5a690.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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:ff10;src:url('chunks/assets/font_a20c7e8cfbeec9b168c68043.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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;}
.lse{letter-spacing:-3.522000px;}
.ls12{letter-spacing:-1.944000px;}
.ls13{letter-spacing:-0.888000px;}
.ls14{letter-spacing:-0.756000px;}
.lsf{letter-spacing:-0.696000px;}
.lsa{letter-spacing:-0.522000px;}
.ls15{letter-spacing:-0.444000px;}
.lsb{letter-spacing:-0.348000px;}
.ls5{letter-spacing:-0.336000px;}
.ls6{letter-spacing:-0.024000px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.078000px;}
.ls0{letter-spacing:0.312000px;}
.ls10{letter-spacing:0.612000px;}
.ls11{letter-spacing:0.744000px;}
.ls9{letter-spacing:0.804000px;}
.lsc{letter-spacing:34.152000px;}
.lsd{letter-spacing:59.832000px;}
.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;}
}
.wsb{word-spacing:-66.000000px;}
.wsa{word-spacing:-19.152000px;}
.ws8{word-spacing:-18.348000px;}
.wsd{word-spacing:-18.000000px;}
.wse{word-spacing:-17.826000px;}
.wsc{word-spacing:-17.652000px;}
.ws5{word-spacing:-15.030000px;}
.ws7{word-spacing:-15.024000px;}
.ws6{word-spacing:-15.012000px;}
.ws4{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.988000px;}
.wsf{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.656000px;}
.ws1{word-spacing:-13.344000px;}
.ws11{word-spacing:-11.556000px;}
.ws0{word-spacing:-10.512000px;}
.ws12{word-spacing:-10.500000px;}
.ws10{word-spacing:-10.056000px;}
.ws9{word-spacing:0.000000px;}
._14{margin-left:-7.326000px;}
._1b{margin-left:-6.084000px;}
._6{margin-left:-4.692000px;}
._2{margin-left:-2.748000px;}
._0{margin-left:-1.536000px;}
._1{width:1.152000px;}
._3{width:2.400000px;}
._c{width:3.450000px;}
._9{width:4.506000px;}
._d{width:5.874000px;}
._7{width:7.548000px;}
._8{width:8.634000px;}
._a{width:10.584000px;}
._b{width:12.576000px;}
._4{width:13.896000px;}
._5{width:15.264000px;}
._13{width:16.308000px;}
._e{width:17.874000px;}
._f{width:19.050000px;}
._11{width:20.898000px;}
._12{width:22.284000px;}
._10{width:24.084000px;}
._15{width:25.104000px;}
._1a{width:26.592000px;}
._20{width:28.116000px;}
._16{width:29.286000px;}
._19{width:30.300000px;}
._1c{width:31.878000px;}
._18{width:33.336000px;}
._17{width:34.854000px;}
._1e{width:36.426000px;}
._1d{width:37.548000px;}
._21{width:39.084000px;}
._22{width:41.334000px;}
._23{width:43.278000px;}
._1f{width:46.152000px;}
._24{width:185.256000px;}
._25{width:343.440000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,10);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.625000px;}
.y11{bottom:3.000000px;}
.y2{bottom:3.375000px;}
.y7{bottom:5.280000px;}
.y8{bottom:6.030000px;}
.yd{bottom:10.125000px;}
.yf{bottom:18.375000px;}
.yfb{bottom:109.537500px;}
.ye2{bottom:110.287500px;}
.y6e{bottom:112.162500px;}
.y3a{bottom:123.412500px;}
.y93{bottom:124.912500px;}
.ye1{bottom:129.037500px;}
.y6d{bottom:131.287500px;}
.yc8{bottom:139.912500px;}
.y39{bottom:142.162500px;}
.y92{bottom:144.037500px;}
.yb7{bottom:145.912500px;}
.ye0{bottom:148.162500px;}
.yfa{bottom:149.287500px;}
.y6c{bottom:150.045000px;}
.y119{bottom:151.530000px;}
.y147{bottom:152.280000px;}
.yc7{bottom:159.030000px;}
.y38{bottom:161.295000px;}
.y131{bottom:162.795000px;}
.y91{bottom:163.170000px;}
.yb6{bottom:165.030000px;}
.y146{bottom:166.170000px;}
.ydf{bottom:166.920000px;}
.yf9{bottom:168.405000px;}
.y6b{bottom:169.155000px;}
.y127{bottom:171.045000px;}
.yc6{bottom:177.825000px;}
.y37{bottom:180.075000px;}
.y90{bottom:181.950000px;}
.yb5{bottom:184.200000px;}
.yde{bottom:186.075000px;}
.y6a{bottom:187.950000px;}
.yf8{bottom:188.700000px;}
.y126{bottom:190.200000px;}
.y118{bottom:191.700000px;}
.yc5{bottom:196.950000px;}
.y36{bottom:199.200000px;}
.y145{bottom:200.325000px;}
.y8f{bottom:201.075000px;}
.yb4{bottom:202.950000px;}
.ydd{bottom:205.200000px;}
.y69{bottom:207.075000px;}
.yf7{bottom:207.450000px;}
.y125{bottom:208.950000px;}
.y117{bottom:210.825000px;}
.y144{bottom:214.200000px;}
.yc4{bottom:216.075000px;}
.y35{bottom:218.325000px;}
.y8e{bottom:219.825000px;}
.yb3{bottom:222.075000px;}
.ydc{bottom:223.950000px;}
.y68{bottom:226.200000px;}
.yf6{bottom:227.700000px;}
.y124{bottom:228.075000px;}
.y116{bottom:229.575000px;}
.yc3{bottom:234.825000px;}
.y34{bottom:237.075000px;}
.y8d{bottom:238.950000px;}
.yb2{bottom:240.825000px;}
.ydb{bottom:243.075000px;}
.y67{bottom:244.950000px;}
.y123{bottom:247.200000px;}
.y143{bottom:248.700000px;}
.y115{bottom:249.825000px;}
.y33{bottom:256.200000px;}
.yb1{bottom:259.950000px;}
.yda{bottom:261.825000px;}
.y142{bottom:262.575000px;}
.y66{bottom:264.075000px;}
.y122{bottom:265.950000px;}
.yf5{bottom:268.575000px;}
.yc2{bottom:274.575000px;}
.y32{bottom:274.950000px;}
.y141{bottom:276.075000px;}
.y8c{bottom:278.700000px;}
.yb0{bottom:279.075000px;}
.yd9{bottom:280.950000px;}
.y65{bottom:282.825000px;}
.y121{bottom:285.075000px;}
.y114{bottom:288.825000px;}
.y31{bottom:294.075000px;}
.y8b{bottom:297.825000px;}
.yd8{bottom:300.075000px;}
.y64{bottom:301.950000px;}
.y120{bottom:303.855000px;}
.y113{bottom:307.980000px;}
.yf4{bottom:308.745000px;}
.y140{bottom:310.245000px;}
.yc1{bottom:314.730000px;}
.y8a{bottom:316.995000px;}
.yd7{bottom:318.870000px;}
.y11f{bottom:322.995000px;}
.y13f{bottom:324.105000px;}
.yf3{bottom:327.855000px;}
.y30{bottom:333.870000px;}
.y89{bottom:335.745000px;}
.yd6{bottom:337.980000px;}
.y63{bottom:341.730000px;}
.y11e{bottom:342.120000px;}
.y152{bottom:344.730000px;}
.y112{bottom:348.870000px;}
.y13e{bottom:351.480000px;}
.yc0{bottom:352.995000px;}
.y88{bottom:354.855000px;}
.yd5{bottom:356.745000px;}
.y12f{bottom:358.605000px;}
.y151{bottom:358.995000px;}
.y62{bottom:360.870000px;}
.yf2{bottom:367.620000px;}
.ybf{bottom:371.730000px;}
.y2f{bottom:373.995000px;}
.yaf{bottom:375.870000px;}
.y12e{bottom:377.745000px;}
.y61{bottom:379.995000px;}
.y13d{bottom:385.605000px;}
.yf1{bottom:386.745000px;}
.y111{bottom:388.605000px;}
.y87{bottom:392.745000px;}
.y150{bottom:393.120000px;}
.yae{bottom:394.980000px;}
.y12d{bottom:396.870000px;}
.y60{bottom:398.730000px;}
.y13c{bottom:399.495000px;}
.yf0{bottom:405.870000px;}
.y14f{bottom:406.995000px;}
.y110{bottom:407.745000px;}
.ybe{bottom:411.495000px;}
.y86{bottom:411.870000px;}
.y2e{bottom:413.370000px;}
.yad{bottom:413.745000px;}
.y12c{bottom:415.995000px;}
.y5f{bottom:417.870000px;}
.y14e{bottom:420.495000px;}
.y85{bottom:430.620000px;}
.yac{bottom:432.900000px;}
.y14d{bottom:434.400000px;}
.y12b{bottom:434.775000px;}
.y5e{bottom:437.025000px;}
.yef{bottom:445.650000px;}
.y13b{bottom:447.525000px;}
.y10f{bottom:447.900000px;}
.y84{bottom:449.775000px;}
.y2d{bottom:450.150000px;}
.yab{bottom:451.650000px;}
.y12a{bottom:453.900000px;}
.y5d{bottom:455.775000px;}
.y13a{bottom:461.400000px;}
.y2c{bottom:465.525000px;}
.y10e{bottom:467.025000px;}
.y83{bottom:468.900000px;}
.yaa{bottom:470.775000px;}
.yd4{bottom:472.650000px;}
.y5c{bottom:474.900000px;}
.y2b{bottom:480.900000px;}
.y14c{bottom:482.025000px;}
.yee{bottom:485.400000px;}
.ya9{bottom:489.900000px;}
.yd3{bottom:491.775000px;}
.y5b{bottom:493.650000px;}
.y139{bottom:495.525000px;}
.y14b{bottom:495.900000px;}
.y2a{bottom:496.650000px;}
.yed{bottom:504.525000px;}
.y10d{bottom:506.775000px;}
.y82{bottom:508.650000px;}
.y138{bottom:509.775000px;}
.yd2{bottom:510.900000px;}
.y29{bottom:512.025000px;}
.y5a{bottom:512.775000px;}
.y137{bottom:523.275000px;}
.yec{bottom:523.650000px;}
.y28{bottom:527.775000px;}
.yd1{bottom:529.650000px;}
.y59{bottom:531.900000px;}
.y136{bottom:536.775000px;}
.yeb{bottom:542.775000px;}
.y27{bottom:543.150000px;}
.y81{bottom:546.525000px;}
.yd0{bottom:548.775000px;}
.y135{bottom:550.275000px;}
.y58{bottom:550.650000px;}
.y14a{bottom:557.400000px;}
.y26{bottom:558.525000px;}
.yea{bottom:561.570000px;}
.y80{bottom:565.695000px;}
.ycf{bottom:567.570000px;}
.y11d{bottom:569.820000px;}
.y149{bottom:571.320000px;}
.y25{bottom:574.320000px;}
.ye9{bottom:580.695000px;}
.y7f{bottom:584.820000px;}
.y148{bottom:585.195000px;}
.y10c{bottom:585.945000px;}
.yce{bottom:586.695000px;}
.y11c{bottom:588.570000px;}
.y24{bottom:589.695000px;}
.y57{bottom:590.445000px;}
.y134{bottom:598.695000px;}
.ye8{bottom:599.445000px;}
.y7e{bottom:603.570000px;}
.y23{bottom:605.445000px;}
.ycd{bottom:605.820000px;}
.y11b{bottom:607.695000px;}
.y56{bottom:609.570000px;}
.y133{bottom:612.195000px;}
.ye7{bottom:618.570000px;}
.y22{bottom:620.820000px;}
.ya8{bottom:622.695000px;}
.ycc{bottom:624.570000px;}
.y11a{bottom:626.820000px;}
.y55{bottom:628.695000px;}
.ye6{bottom:637.320000px;}
.ya7{bottom:641.445000px;}
.y7d{bottom:643.320000px;}
.ycb{bottom:643.695000px;}
.y129{bottom:645.570000px;}
.y10b{bottom:647.070000px;}
.y54{bottom:647.820000px;}
.ye5{bottom:656.445000px;}
.y21{bottom:657.195000px;}
.ya6{bottom:660.570000px;}
.yca{bottom:662.445000px;}
.y128{bottom:664.695000px;}
.y53{bottom:666.570000px;}
.y20{bottom:672.945000px;}
.ya5{bottom:679.320000px;}
.yc9{bottom:681.570000px;}
.y7c{bottom:683.445000px;}
.y132{bottom:685.320000px;}
.y52{bottom:685.695000px;}
.y10a{bottom:686.820000px;}
.ye4{bottom:696.225000px;}
.ya4{bottom:698.475000px;}
.y7b{bottom:702.600000px;}
.y51{bottom:704.475000px;}
.y109{bottom:705.975000px;}
.y1f{bottom:709.350000px;}
.ya3{bottom:717.600000px;}
.y7a{bottom:721.350000px;}
.y50{bottom:723.600000px;}
.ya2{bottom:736.350000px;}
.y130{bottom:738.225000px;}
.y79{bottom:740.475000px;}
.y4f{bottom:742.350000px;}
.y108{bottom:745.725000px;}
.y1e{bottom:746.100000px;}
.ya1{bottom:755.475000px;}
.y78{bottom:759.600000px;}
.y1d{bottom:761.475000px;}
.y107{bottom:764.850000px;}
.ya0{bottom:774.225000px;}
.y1c{bottom:776.850000px;}
.y77{bottom:778.350000px;}
.y4e{bottom:780.600000px;}
.y1b{bottom:792.600000px;}
.y9f{bottom:793.350000px;}
.ye3{bottom:795.225000px;}
.y76{bottom:797.475000px;}
.y4d{bottom:799.350000px;}
.y106{bottom:804.975000px;}
.y1a{bottom:807.975000px;}
.y9e{bottom:812.475000px;}
.y75{bottom:816.225000px;}
.y4c{bottom:818.520000px;}
.y19{bottom:823.770000px;}
.y9d{bottom:831.255000px;}
.y74{bottom:835.395000px;}
.y4b{bottom:837.255000px;}
.y18{bottom:839.130000px;}
.y105{bottom:844.755000px;}
.y9c{bottom:850.380000px;}
.y17{bottom:854.505000px;}
.y4a{bottom:856.395000px;}
.y104{bottom:863.880000px;}
.y9b{bottom:869.145000px;}
.y16{bottom:870.255000px;}
.y73{bottom:873.270000px;}
.y49{bottom:875.505000px;}
.y103{bottom:883.005000px;}
.y15{bottom:885.630000px;}
.y9a{bottom:888.255000px;}
.y72{bottom:892.380000px;}
.y48{bottom:894.255000px;}
.y14{bottom:901.380000px;}
.y102{bottom:902.880000px;}
.ybd{bottom:907.380000px;}
.y71{bottom:911.130000px;}
.y47{bottom:913.380000px;}
.y13{bottom:916.755000px;}
.y101{bottom:923.130000px;}
.y99{bottom:928.005000px;}
.y70{bottom:930.255000px;}
.y46{bottom:932.130000px;}
.y12{bottom:932.505000px;}
.ybc{bottom:947.175000px;}
.y6f{bottom:949.425000px;}
.y45{bottom:951.300000px;}
.y100{bottom:964.050000px;}
.y10{bottom:965.925000px;}
.ybb{bottom:966.300000px;}
.y98{bottom:968.175000px;}
.y44{bottom:970.425000px;}
.ye{bottom:981.675000px;}
.yba{bottom:985.050000px;}
.y97{bottom:987.300000px;}
.y43{bottom:989.175000px;}
.yb9{bottom:1004.175000px;}
.y96{bottom:1006.050000px;}
.y42{bottom:1008.300000px;}
.yc{bottom:1012.800000px;}
.yff{bottom:1023.300000px;}
.y95{bottom:1025.175000px;}
.y41{bottom:1027.050000px;}
.yb{bottom:1043.175000px;}
.yb8{bottom:1043.925000px;}
.y40{bottom:1046.175000px;}
.y9{bottom:1058.550000px;}
.yfe{bottom:1063.050000px;}
.y94{bottom:1064.925000px;}
.y3f{bottom:1065.300000px;}
.y6{bottom:1073.925000px;}
.yfd{bottom:1082.205000px;}
.y3e{bottom:1084.080000px;}
.yfc{bottom:1100.955000px;}
.y3d{bottom:1103.205000px;}
.y5{bottom:1118.955000px;}
.y3c{bottom:1121.955000px;}
.y4{bottom:1139.955000px;}
.y3b{bottom:1141.080000px;}
.y3{bottom:1183.830000px;}
.y1{bottom:1195.080000px;}
.h1{height:14.662500px;}
.h6{height:15.375000px;}
.hc{height:15.750000px;}
.h5{height:20.287500px;}
.h8{height:30.375000px;}
.h9{height:31.125000px;}
.h17{height:34.968750px;}
.h16{height:45.865723px;}
.h2{height:47.742188px;}
.ha{height:48.410156px;}
.hd{height:48.858398px;}
.he{height:48.990234px;}
.hb{height:53.709961px;}
.h7{height:56.320312px;}
.h13{height:59.006836px;}
.h10{height:59.167969px;}
.h11{height:59.876953px;}
.h3{height:65.144531px;}
.h4{height:65.645508px;}
.h14{height:65.838867px;}
.hf{height:68.707031px;}
.h12{height:68.835938px;}
.h15{height:74.004654px;}
.h0{height:1263.000000px;}
.w6{width:25.875000px;}
.w3{width:39.037500px;}
.wa{width:41.287500px;}
.w7{width:144.450000px;}
.wb{width:171.450000px;}
.w9{width:425.445000px;}
.w5{width:467.850000px;}
.w2{width:598.380000px;}
.w8{width:638.175000px;}
.w4{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.125000px;}
.x8{left:16.500000px;}
.xb{left:30.420000px;}
.x1{left:118.912500px;}
.x6{left:127.537487px;}
.xd{left:154.574987px;}
.xe{left:181.574987px;}
.x2{left:207.862500px;}
.xf{left:234.869987px;}
.x5{left:446.444987px;}
.x10{left:473.819987px;}
.xa{left:552.975000px;}
.xc{left:594.270000px;}
.x7{left:595.395000px;}
.x9{left:621.270000px;}
.x3{left:718.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-3.130667pt;}
.ls12{letter-spacing:-1.728000pt;}
.ls13{letter-spacing:-0.789333pt;}
.ls14{letter-spacing:-0.672000pt;}
.lsf{letter-spacing:-0.618667pt;}
.lsa{letter-spacing:-0.464000pt;}
.ls15{letter-spacing:-0.394667pt;}
.lsb{letter-spacing:-0.309333pt;}
.ls5{letter-spacing:-0.298667pt;}
.ls6{letter-spacing:-0.021333pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.069333pt;}
.ls0{letter-spacing:0.277333pt;}
.ls10{letter-spacing:0.544000pt;}
.ls11{letter-spacing:0.661333pt;}
.ls9{letter-spacing:0.714667pt;}
.lsc{letter-spacing:30.357333pt;}
.lsd{letter-spacing:53.184000pt;}
.wsb{word-spacing:-58.666667pt;}
.wsa{word-spacing:-17.024000pt;}
.ws8{word-spacing:-16.309333pt;}
.wsd{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.845333pt;}
.wsc{word-spacing:-15.690667pt;}
.ws5{word-spacing:-13.360000pt;}
.ws7{word-spacing:-13.354667pt;}
.ws6{word-spacing:-13.344000pt;}
.ws4{word-spacing:-13.333333pt;}
.ws3{word-spacing:-13.322667pt;}
.wsf{word-spacing:-12.160000pt;}
.ws2{word-spacing:-12.138667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws11{word-spacing:-10.272000pt;}
.ws0{word-spacing:-9.344000pt;}
.ws12{word-spacing:-9.333333pt;}
.ws10{word-spacing:-8.938667pt;}
.ws9{word-spacing:0.000000pt;}
._14{margin-left:-6.512000pt;}
._1b{margin-left:-5.408000pt;}
._6{margin-left:-4.170667pt;}
._2{margin-left:-2.442667pt;}
._0{margin-left:-1.365333pt;}
._1{width:1.024000pt;}
._3{width:2.133333pt;}
._c{width:3.066667pt;}
._9{width:4.005333pt;}
._d{width:5.221333pt;}
._7{width:6.709333pt;}
._8{width:7.674667pt;}
._a{width:9.408000pt;}
._b{width:11.178667pt;}
._4{width:12.352000pt;}
._5{width:13.568000pt;}
._13{width:14.496000pt;}
._e{width:15.888000pt;}
._f{width:16.933333pt;}
._11{width:18.576000pt;}
._12{width:19.808000pt;}
._10{width:21.408000pt;}
._15{width:22.314667pt;}
._1a{width:23.637333pt;}
._20{width:24.992000pt;}
._16{width:26.032000pt;}
._19{width:26.933333pt;}
._1c{width:28.336000pt;}
._18{width:29.632000pt;}
._17{width:30.981333pt;}
._1e{width:32.378667pt;}
._1d{width:33.376000pt;}
._21{width:34.741333pt;}
._22{width:36.741333pt;}
._23{width:38.469333pt;}
._1f{width:41.024000pt;}
._24{width:164.672000pt;}
._25{width:305.280000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.333333pt;}
.y11{bottom:2.666667pt;}
.y2{bottom:3.000000pt;}
.y7{bottom:4.693333pt;}
.y8{bottom:5.360000pt;}
.yd{bottom:9.000000pt;}
.yf{bottom:16.333333pt;}
.yfb{bottom:97.366667pt;}
.ye2{bottom:98.033333pt;}
.y6e{bottom:99.700000pt;}
.y3a{bottom:109.700000pt;}
.y93{bottom:111.033333pt;}
.ye1{bottom:114.700000pt;}
.y6d{bottom:116.700000pt;}
.yc8{bottom:124.366667pt;}
.y39{bottom:126.366667pt;}
.y92{bottom:128.033333pt;}
.yb7{bottom:129.700000pt;}
.ye0{bottom:131.700000pt;}
.yfa{bottom:132.700000pt;}
.y6c{bottom:133.373333pt;}
.y119{bottom:134.693333pt;}
.y147{bottom:135.360000pt;}
.yc7{bottom:141.360000pt;}
.y38{bottom:143.373333pt;}
.y131{bottom:144.706667pt;}
.y91{bottom:145.040000pt;}
.yb6{bottom:146.693333pt;}
.y146{bottom:147.706667pt;}
.ydf{bottom:148.373333pt;}
.yf9{bottom:149.693333pt;}
.y6b{bottom:150.360000pt;}
.y127{bottom:152.040000pt;}
.yc6{bottom:158.066667pt;}
.y37{bottom:160.066667pt;}
.y90{bottom:161.733333pt;}
.yb5{bottom:163.733333pt;}
.yde{bottom:165.400000pt;}
.y6a{bottom:167.066667pt;}
.yf8{bottom:167.733333pt;}
.y126{bottom:169.066667pt;}
.y118{bottom:170.400000pt;}
.yc5{bottom:175.066667pt;}
.y36{bottom:177.066667pt;}
.y145{bottom:178.066667pt;}
.y8f{bottom:178.733333pt;}
.yb4{bottom:180.400000pt;}
.ydd{bottom:182.400000pt;}
.y69{bottom:184.066667pt;}
.yf7{bottom:184.400000pt;}
.y125{bottom:185.733333pt;}
.y117{bottom:187.400000pt;}
.y144{bottom:190.400000pt;}
.yc4{bottom:192.066667pt;}
.y35{bottom:194.066667pt;}
.y8e{bottom:195.400000pt;}
.yb3{bottom:197.400000pt;}
.ydc{bottom:199.066667pt;}
.y68{bottom:201.066667pt;}
.yf6{bottom:202.400000pt;}
.y124{bottom:202.733333pt;}
.y116{bottom:204.066667pt;}
.yc3{bottom:208.733333pt;}
.y34{bottom:210.733333pt;}
.y8d{bottom:212.400000pt;}
.yb2{bottom:214.066667pt;}
.ydb{bottom:216.066667pt;}
.y67{bottom:217.733333pt;}
.y123{bottom:219.733333pt;}
.y143{bottom:221.066667pt;}
.y115{bottom:222.066667pt;}
.y33{bottom:227.733333pt;}
.yb1{bottom:231.066667pt;}
.yda{bottom:232.733333pt;}
.y142{bottom:233.400000pt;}
.y66{bottom:234.733333pt;}
.y122{bottom:236.400000pt;}
.yf5{bottom:238.733333pt;}
.yc2{bottom:244.066667pt;}
.y32{bottom:244.400000pt;}
.y141{bottom:245.400000pt;}
.y8c{bottom:247.733333pt;}
.yb0{bottom:248.066667pt;}
.yd9{bottom:249.733333pt;}
.y65{bottom:251.400000pt;}
.y121{bottom:253.400000pt;}
.y114{bottom:256.733333pt;}
.y31{bottom:261.400000pt;}
.y8b{bottom:264.733333pt;}
.yd8{bottom:266.733333pt;}
.y64{bottom:268.400000pt;}
.y120{bottom:270.093333pt;}
.y113{bottom:273.760000pt;}
.yf4{bottom:274.440000pt;}
.y140{bottom:275.773333pt;}
.yc1{bottom:279.760000pt;}
.y8a{bottom:281.773333pt;}
.yd7{bottom:283.440000pt;}
.y11f{bottom:287.106667pt;}
.y13f{bottom:288.093333pt;}
.yf3{bottom:291.426667pt;}
.y30{bottom:296.773333pt;}
.y89{bottom:298.440000pt;}
.yd6{bottom:300.426667pt;}
.y63{bottom:303.760000pt;}
.y11e{bottom:304.106667pt;}
.y152{bottom:306.426667pt;}
.y112{bottom:310.106667pt;}
.y13e{bottom:312.426667pt;}
.yc0{bottom:313.773333pt;}
.y88{bottom:315.426667pt;}
.yd5{bottom:317.106667pt;}
.y12f{bottom:318.760000pt;}
.y151{bottom:319.106667pt;}
.y62{bottom:320.773333pt;}
.yf2{bottom:326.773333pt;}
.ybf{bottom:330.426667pt;}
.y2f{bottom:332.440000pt;}
.yaf{bottom:334.106667pt;}
.y12e{bottom:335.773333pt;}
.y61{bottom:337.773333pt;}
.y13d{bottom:342.760000pt;}
.yf1{bottom:343.773333pt;}
.y111{bottom:345.426667pt;}
.y87{bottom:349.106667pt;}
.y150{bottom:349.440000pt;}
.yae{bottom:351.093333pt;}
.y12d{bottom:352.773333pt;}
.y60{bottom:354.426667pt;}
.y13c{bottom:355.106667pt;}
.yf0{bottom:360.773333pt;}
.y14f{bottom:361.773333pt;}
.y110{bottom:362.440000pt;}
.ybe{bottom:365.773333pt;}
.y86{bottom:366.106667pt;}
.y2e{bottom:367.440000pt;}
.yad{bottom:367.773333pt;}
.y12c{bottom:369.773333pt;}
.y5f{bottom:371.440000pt;}
.y14e{bottom:373.773333pt;}
.y85{bottom:382.773333pt;}
.yac{bottom:384.800000pt;}
.y14d{bottom:386.133333pt;}
.y12b{bottom:386.466667pt;}
.y5e{bottom:388.466667pt;}
.yef{bottom:396.133333pt;}
.y13b{bottom:397.800000pt;}
.y10f{bottom:398.133333pt;}
.y84{bottom:399.800000pt;}
.y2d{bottom:400.133333pt;}
.yab{bottom:401.466667pt;}
.y12a{bottom:403.466667pt;}
.y5d{bottom:405.133333pt;}
.y13a{bottom:410.133333pt;}
.y2c{bottom:413.800000pt;}
.y10e{bottom:415.133333pt;}
.y83{bottom:416.800000pt;}
.yaa{bottom:418.466667pt;}
.yd4{bottom:420.133333pt;}
.y5c{bottom:422.133333pt;}
.y2b{bottom:427.466667pt;}
.y14c{bottom:428.466667pt;}
.yee{bottom:431.466667pt;}
.ya9{bottom:435.466667pt;}
.yd3{bottom:437.133333pt;}
.y5b{bottom:438.800000pt;}
.y139{bottom:440.466667pt;}
.y14b{bottom:440.800000pt;}
.y2a{bottom:441.466667pt;}
.yed{bottom:448.466667pt;}
.y10d{bottom:450.466667pt;}
.y82{bottom:452.133333pt;}
.y138{bottom:453.133333pt;}
.yd2{bottom:454.133333pt;}
.y29{bottom:455.133333pt;}
.y5a{bottom:455.800000pt;}
.y137{bottom:465.133333pt;}
.yec{bottom:465.466667pt;}
.y28{bottom:469.133333pt;}
.yd1{bottom:470.800000pt;}
.y59{bottom:472.800000pt;}
.y136{bottom:477.133333pt;}
.yeb{bottom:482.466667pt;}
.y27{bottom:482.800000pt;}
.y81{bottom:485.800000pt;}
.yd0{bottom:487.800000pt;}
.y135{bottom:489.133333pt;}
.y58{bottom:489.466667pt;}
.y14a{bottom:495.466667pt;}
.y26{bottom:496.466667pt;}
.yea{bottom:499.173333pt;}
.y80{bottom:502.840000pt;}
.ycf{bottom:504.506667pt;}
.y11d{bottom:506.506667pt;}
.y149{bottom:507.840000pt;}
.y25{bottom:510.506667pt;}
.ye9{bottom:516.173333pt;}
.y7f{bottom:519.840000pt;}
.y148{bottom:520.173333pt;}
.y10c{bottom:520.840000pt;}
.yce{bottom:521.506667pt;}
.y11c{bottom:523.173333pt;}
.y24{bottom:524.173333pt;}
.y57{bottom:524.840000pt;}
.y134{bottom:532.173333pt;}
.ye8{bottom:532.840000pt;}
.y7e{bottom:536.506667pt;}
.y23{bottom:538.173333pt;}
.ycd{bottom:538.506667pt;}
.y11b{bottom:540.173333pt;}
.y56{bottom:541.840000pt;}
.y133{bottom:544.173333pt;}
.ye7{bottom:549.840000pt;}
.y22{bottom:551.840000pt;}
.ya8{bottom:553.506667pt;}
.ycc{bottom:555.173333pt;}
.y11a{bottom:557.173333pt;}
.y55{bottom:558.840000pt;}
.ye6{bottom:566.506667pt;}
.ya7{bottom:570.173333pt;}
.y7d{bottom:571.840000pt;}
.ycb{bottom:572.173333pt;}
.y129{bottom:573.840000pt;}
.y10b{bottom:575.173333pt;}
.y54{bottom:575.840000pt;}
.ye5{bottom:583.506667pt;}
.y21{bottom:584.173333pt;}
.ya6{bottom:587.173333pt;}
.yca{bottom:588.840000pt;}
.y128{bottom:590.840000pt;}
.y53{bottom:592.506667pt;}
.y20{bottom:598.173333pt;}
.ya5{bottom:603.840000pt;}
.yc9{bottom:605.840000pt;}
.y7c{bottom:607.506667pt;}
.y132{bottom:609.173333pt;}
.y52{bottom:609.506667pt;}
.y10a{bottom:610.506667pt;}
.ye4{bottom:618.866667pt;}
.ya4{bottom:620.866667pt;}
.y7b{bottom:624.533333pt;}
.y51{bottom:626.200000pt;}
.y109{bottom:627.533333pt;}
.y1f{bottom:630.533333pt;}
.ya3{bottom:637.866667pt;}
.y7a{bottom:641.200000pt;}
.y50{bottom:643.200000pt;}
.ya2{bottom:654.533333pt;}
.y130{bottom:656.200000pt;}
.y79{bottom:658.200000pt;}
.y4f{bottom:659.866667pt;}
.y108{bottom:662.866667pt;}
.y1e{bottom:663.200000pt;}
.ya1{bottom:671.533333pt;}
.y78{bottom:675.200000pt;}
.y1d{bottom:676.866667pt;}
.y107{bottom:679.866667pt;}
.ya0{bottom:688.200000pt;}
.y1c{bottom:690.533333pt;}
.y77{bottom:691.866667pt;}
.y4e{bottom:693.866667pt;}
.y1b{bottom:704.533333pt;}
.y9f{bottom:705.200000pt;}
.ye3{bottom:706.866667pt;}
.y76{bottom:708.866667pt;}
.y4d{bottom:710.533333pt;}
.y106{bottom:715.533333pt;}
.y1a{bottom:718.200000pt;}
.y9e{bottom:722.200000pt;}
.y75{bottom:725.533333pt;}
.y4c{bottom:727.573333pt;}
.y19{bottom:732.240000pt;}
.y9d{bottom:738.893333pt;}
.y74{bottom:742.573333pt;}
.y4b{bottom:744.226667pt;}
.y18{bottom:745.893333pt;}
.y105{bottom:750.893333pt;}
.y9c{bottom:755.893333pt;}
.y17{bottom:759.560000pt;}
.y4a{bottom:761.240000pt;}
.y104{bottom:767.893333pt;}
.y9b{bottom:772.573333pt;}
.y16{bottom:773.560000pt;}
.y73{bottom:776.240000pt;}
.y49{bottom:778.226667pt;}
.y103{bottom:784.893333pt;}
.y15{bottom:787.226667pt;}
.y9a{bottom:789.560000pt;}
.y72{bottom:793.226667pt;}
.y48{bottom:794.893333pt;}
.y14{bottom:801.226667pt;}
.y102{bottom:802.560000pt;}
.ybd{bottom:806.560000pt;}
.y71{bottom:809.893333pt;}
.y47{bottom:811.893333pt;}
.y13{bottom:814.893333pt;}
.y101{bottom:820.560000pt;}
.y99{bottom:824.893333pt;}
.y70{bottom:826.893333pt;}
.y46{bottom:828.560000pt;}
.y12{bottom:828.893333pt;}
.ybc{bottom:841.933333pt;}
.y6f{bottom:843.933333pt;}
.y45{bottom:845.600000pt;}
.y100{bottom:856.933333pt;}
.y10{bottom:858.600000pt;}
.ybb{bottom:858.933333pt;}
.y98{bottom:860.600000pt;}
.y44{bottom:862.600000pt;}
.ye{bottom:872.600000pt;}
.yba{bottom:875.600000pt;}
.y97{bottom:877.600000pt;}
.y43{bottom:879.266667pt;}
.yb9{bottom:892.600000pt;}
.y96{bottom:894.266667pt;}
.y42{bottom:896.266667pt;}
.yc{bottom:900.266667pt;}
.yff{bottom:909.600000pt;}
.y95{bottom:911.266667pt;}
.y41{bottom:912.933333pt;}
.yb{bottom:927.266667pt;}
.yb8{bottom:927.933333pt;}
.y40{bottom:929.933333pt;}
.y9{bottom:940.933333pt;}
.yfe{bottom:944.933333pt;}
.y94{bottom:946.600000pt;}
.y3f{bottom:946.933333pt;}
.y6{bottom:954.600000pt;}
.yfd{bottom:961.960000pt;}
.y3e{bottom:963.626667pt;}
.yfc{bottom:978.626667pt;}
.y3d{bottom:980.626667pt;}
.y5{bottom:994.626667pt;}
.y3c{bottom:997.293333pt;}
.y4{bottom:1013.293333pt;}
.y3b{bottom:1014.293333pt;}
.y3{bottom:1052.293333pt;}
.y1{bottom:1062.293333pt;}
.h1{height:13.033333pt;}
.h6{height:13.666667pt;}
.hc{height:14.000000pt;}
.h5{height:18.033333pt;}
.h8{height:27.000000pt;}
.h9{height:27.666667pt;}
.h17{height:31.083333pt;}
.h16{height:40.769531pt;}
.h2{height:42.437500pt;}
.ha{height:43.031250pt;}
.hd{height:43.429688pt;}
.he{height:43.546875pt;}
.hb{height:47.742188pt;}
.h7{height:50.062500pt;}
.h13{height:52.450521pt;}
.h10{height:52.593750pt;}
.h11{height:53.223958pt;}
.h3{height:57.906250pt;}
.h4{height:58.351562pt;}
.h14{height:58.523438pt;}
.hf{height:61.072917pt;}
.h12{height:61.187500pt;}
.h15{height:65.781915pt;}
.h0{height:1122.666667pt;}
.w6{width:23.000000pt;}
.w3{width:34.700000pt;}
.wa{width:36.700000pt;}
.w7{width:128.400000pt;}
.wb{width:152.400000pt;}
.w9{width:378.173333pt;}
.w5{width:415.866667pt;}
.w2{width:531.893333pt;}
.w8{width:567.266667pt;}
.w4{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.333333pt;}
.x8{left:14.666667pt;}
.xb{left:27.040000pt;}
.x1{left:105.700000pt;}
.x6{left:113.366655pt;}
.xd{left:137.399988pt;}
.xe{left:161.399988pt;}
.x2{left:184.766667pt;}
.xf{left:208.773322pt;}
.x5{left:396.839988pt;}
.x10{left:421.173322pt;}
.xa{left:491.533333pt;}
.xc{left:528.240000pt;}
.x7{left:529.240000pt;}
.x9{left:552.240000pt;}
.x3{left:638.266667pt;}
}




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