
    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_c2d5b343d17bd75481f8ee07.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_5b9d6695d7aa62e52f722581.woff')format("woff");}.ff2{font-family:ff2;line-height:0.713867;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_f20f8e4a71e743ae016c80cb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_b6e5079061cf9af0fedb4ac6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_032c70b0fa844b4fa9249261.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_9be33b8c2b386aa9cb72ba7a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_0cb0675d33ec9ac1e304f90b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_1c7c8a3d8f5046df45f92136.woff')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_3f990f7b400161f5229c02d4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.975586;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_ee6051bf881d5811230cf5a6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.988281;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_0bcc5c3281a5ff97ba984ff3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.759277;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_ca0613a21dbf15e59a47ab57.woff')format("woff");}.ffc{font-family:ffc;line-height:0.988281;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_8a5bab219f3ac98abf923349.woff')format("woff");}.ffd{font-family:ffd;line-height:0.795410;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_f34561cb297d716c61d297e6.woff')format("woff");}.ffe{font-family:ffe;line-height:0.988281;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_6f7172d2f86e511b670453f0.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;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_9a6605e2f217683397708d2a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.783203;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;}
.v1{vertical-align:49.499998px;}
.v2{vertical-align:98.999996px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.007909px;}
.ls2{letter-spacing:537.908158px;}
.ls1{letter-spacing:550.423827px;}
.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;}
}
.wsc{word-spacing:-34.163964px;}
.ws15{word-spacing:-20.651916px;}
.ws14{word-spacing:-20.629416px;}
.ws17{word-spacing:-20.620056px;}
.ws16{word-spacing:-20.612136px;}
.ws18{word-spacing:-20.612091px;}
.ws0{word-spacing:-16.365234px;}
.ws1{word-spacing:-0.063000px;}
.wsd{word-spacing:-0.056700px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:234.566861px;}
.ws6{word-spacing:249.916982px;}
.wse{word-spacing:259.831044px;}
.ws4{word-spacing:293.361316px;}
.ws12{word-spacing:300.607920px;}
.ws3{word-spacing:307.160167px;}
.ws7{word-spacing:377.455061px;}
.ws9{word-spacing:396.013166px;}
.wsa{word-spacing:453.106914px;}
.ws8{word-spacing:456.306133px;}
.wsb{word-spacing:534.058593px;}
.wsf{word-spacing:1797.833443px;}
.ws11{word-spacing:2141.021027px;}
.ws10{word-spacing:2261.929960px;}
.ws13{word-spacing:2554.127824px;}
._46{margin-left:-4.007812px;}
._48{width:13.565917px;}
._7{width:132.499505px;}
._9{width:174.027823px;}
._27{width:180.782220px;}
._28{width:188.494622px;}
._3{width:194.453583px;}
._29{width:196.066399px;}
._17{width:198.369132px;}
._8{width:201.590323px;}
._23{width:216.404288px;}
._6{width:240.789541px;}
._1b{width:250.756338px;}
._24{width:260.138661px;}
._1e{width:263.592762px;}
._19{width:279.087879px;}
._15{width:282.317859px;}
._13{width:292.161609px;}
._33{width:298.054699px;}
._25{width:303.732410px;}
._22{width:304.800278px;}
._20{width:324.645983px;}
._11{width:331.475084px;}
._35{width:334.076670px;}
._2b{width:347.260240px;}
._1f{width:349.347642px;}
._2d{width:357.086433px;}
._f{width:363.867172px;}
._38{width:370.098641px;}
._2e{width:388.124961px;}
._21{width:392.049300px;}
._2a{width:400.069317px;}
._31{width:422.885703px;}
._d{width:437.849103px;}
._30{width:458.907718px;}
._32{width:490.781228px;}
._39{width:492.657693px;}
._47{width:499.721900px;}
._36{width:504.839333px;}
._34{width:527.141578px;}
._37{width:529.018043px;}
._5{width:537.908158px;}
._2{width:550.423827px;}
._2f{width:570.700171px;}
._a{width:584.244116px;}
._1d{width:670.095675px;}
._26{width:689.752411px;}
._41{width:746.723111px;}
._1a{width:752.304190px;}
._2c{width:807.503873px;}
._45{width:810.861291px;}
._b{width:814.629604px;}
._16{width:860.370102px;}
._3e{width:922.295618px;}
._18{width:928.199690px;}
._44{width:962.531940px;}
._e{width:1080.602006px;}
._3b{width:1284.745551px;}
._3a{width:1332.987616px;}
._3f{width:1408.822940px;}
._10{width:1418.233849px;}
._1c{width:1523.346639px;}
._14{width:1566.320757px;}
._12{width:1590.503862px;}
._3d{width:1757.291674px;}
._4{width:1833.419234px;}
._0{width:2051.058385px;}
._1{width:2140.644198px;}
._40{width:2181.341951px;}
._c{width:2200.398834px;}
._43{width:2390.429341px;}
._3c{width:2399.827048px;}
._42{width:2444.354632px;}
.fc9{color:rgb(119,0,136);}
.fc8{color:rgb(152,26,26);}
.fc7{color:rgb(170,85,0);}
.fc6{color:rgb(51,0,170);}
.fc3{color:rgb(170,17,17);}
.fc1{color:rgb(65,131,196);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(153,153,153);}
.fc2{color:rgb(119,119,119);}
.fc0{color:rgb(51,51,51);}
.fs3{font-size:53.999998px;}
.fs4{font-size:56.699999px;}
.fs1{font-size:62.999997px;}
.fs5{font-size:94.499996px;}
.fs2{font-size:110.249995px;}
.fs0{font-size:141.749994px;}
.y0{bottom:0.000000px;}
.y22{bottom:0.125859px;}
.yf3{bottom:7.875000px;}
.y118{bottom:16.874999px;}
.ya1{bottom:20.249999px;}
.yca{bottom:26.999999px;}
.yf2{bottom:30.374999px;}
.y23{bottom:30.744139px;}
.y2d{bottom:31.499999px;}
.y8a{bottom:32.624999px;}
.y70{bottom:33.749999px;}
.y132{bottom:34.874999px;}
.y21{bottom:37.124998px;}
.ycd{bottom:39.374998px;}
.ya0{bottom:42.749998px;}
.y2b{bottom:44.999998px;}
.y147{bottom:48.374998px;}
.yc9{bottom:49.499998px;}
.y117{bottom:50.624998px;}
.yf1{bottom:52.874998px;}
.y2a{bottom:57.374998px;}
.y131{bottom:59.624998px;}
.y20{bottom:61.874997px;}
.ycc{bottom:64.124997px;}
.y9f{bottom:65.249997px;}
.y1{bottom:67.320050px;}
.yc8{bottom:73.124997px;}
.y89{bottom:74.249997px;}
.y6f{bottom:75.374997px;}
.y2c{bottom:82.124997px;}
.y1f{bottom:87.749996px;}
.ycb{bottom:89.999996px;}
.y130{bottom:93.374996px;}
.yc7{bottom:95.624996px;}
.y88{bottom:98.999996px;}
.y146{bottom:111.374995px;}
.y1e{bottom:112.499995px;}
.y6e{bottom:115.874995px;}
.yc6{bottom:118.124995px;}
.yf0{bottom:121.499995px;}
.y28{bottom:122.624995px;}
.y116{bottom:129.374995px;}
.y87{bottom:131.624995px;}
.y29{bottom:134.999994px;}
.y9e{bottom:136.124994px;}
.y1d{bottom:137.249994px;}
.yc5{bottom:140.624994px;}
.yef{bottom:143.999994px;}
.y27{bottom:147.374994px;}
.y6d{bottom:152.999994px;}
.y12f{bottom:156.374993px;}
.y9d{bottom:161.999993px;}
.yc4{bottom:163.124993px;}
.yee{bottom:166.499993px;}
.y26{bottom:172.124993px;}
.y86{bottom:173.249993px;}
.y1c{bottom:178.874993px;}
.y12e{bottom:181.124992px;}
.yc3{bottom:185.624992px;}
.yed{bottom:188.999992px;}
.y108{bottom:195.749992px;}
.yce{bottom:200.070044px;}
.y6c{bottom:203.624992px;}
.yc2{bottom:208.124991px;}
.yec{bottom:211.499991px;}
.y25{bottom:212.624991px;}
.y85{bottom:213.749991px;}
.y115{bottom:215.999991px;}
.y12d{bottom:219.374991px;}
.y107{bottom:220.499991px;}
.y145{bottom:227.249991px;}
.y1b{bottom:229.499990px;}
.yc1{bottom:231.749990px;}
.yeb{bottom:233.999990px;}
.y24{bottom:237.374990px;}
.y12c{bottom:244.124990px;}
.y84{bottom:247.499990px;}
.y114{bottom:249.749990px;}
.y9c{bottom:253.124989px;}
.y1a{bottom:254.249989px;}
.yea{bottom:256.499989px;}
.y106{bottom:258.749989px;}
.y144{bottom:265.499989px;}
.y6b{bottom:271.124989px;}
.yc0{bottom:276.749988px;}
.y9b{bottom:278.999988px;}
.y83{bottom:280.124988px;}
.y113{bottom:282.374988px;}
.y105{bottom:283.499988px;}
.y12b{bottom:285.749988px;}
.y4b{bottom:289.124988px;}
.y143{bottom:290.249988px;}
.y19{bottom:292.499988px;}
.ybf{bottom:299.249988px;}
.ye9{bottom:302.624987px;}
.y9a{bottom:303.749987px;}
.y104{bottom:308.249987px;}
.y4a{bottom:314.999987px;}
.y142{bottom:316.124987px;}
.y82{bottom:320.624987px;}
.ybe{bottom:321.749987px;}
.y112{bottom:323.999986px;}
.ye8{bottom:325.124986px;}
.y99{bottom:328.499986px;}
.y18{bottom:329.624986px;}
.y6a{bottom:331.874986px;}
.y12a{bottom:335.249986px;}
.ybd{bottom:344.249986px;}
.y103{bottom:346.499986px;}
.ye7{bottom:347.624986px;}
.y49{bottom:352.124985px;}
.y141{bottom:353.249985px;}
.y69{bottom:356.624985px;}
.y81{bottom:362.249985px;}
.y98{bottom:366.749985px;}
.y17{bottom:367.874985px;}
.y66{bottom:368.999985px;}
.ye6{bottom:370.124985px;}
.y102{bottom:371.249985px;}
.y129{bottom:372.374984px;}
.y48{bottom:377.999984px;}
.y140{bottom:379.124984px;}
.y68{bottom:382.499984px;}
.y111{bottom:383.624984px;}
.ybc{bottom:389.249984px;}
.ye5{bottom:392.624984px;}
.y101{bottom:397.124983px;}
.y47{bottom:402.749983px;}
.y16{bottom:404.999983px;}
.y67{bottom:407.249983px;}
.y128{bottom:410.624983px;}
.ybb{bottom:412.874983px;}
.ye4{bottom:415.124983px;}
.y13f{bottom:420.749982px;}
.y100{bottom:421.874982px;}
.y110{bottom:424.124982px;}
.y46{bottom:427.499982px;}
.yba{bottom:435.374982px;}
.y97{bottom:437.624982px;}
.y15{bottom:438.749982px;}
.y80{bottom:444.374981px;}
.y65{bottom:446.624981px;}
.yff{bottom:447.749981px;}
.yb9{bottom:457.874981px;}
.ye3{bottom:461.249981px;}
.y10f{bottom:463.499981px;}
.y45{bottom:465.749981px;}
.y127{bottom:469.124980px;}
.y13e{bottom:470.249980px;}
.y14{bottom:471.374980px;}
.y64{bottom:472.499980px;}
.y96{bottom:478.124980px;}
.yb8{bottom:480.374980px;}
.ye2{bottom:483.749980px;}
.y61{bottom:484.874980px;}
.y44{bottom:490.499980px;}
.y126{bottom:493.874979px;}
.y63{bottom:497.249979px;}
.yb7{bottom:502.874979px;}
.y13{bottom:505.124979px;}
.ye1{bottom:506.249979px;}
.yfe{bottom:514.124979px;}
.y43{bottom:516.374978px;}
.y95{bottom:519.749978px;}
.y62{bottom:523.124978px;}
.y7f{bottom:525.374978px;}
.ye0{bottom:528.749978px;}
.y125{bottom:530.999978px;}
.y42{bottom:541.124977px;}
.y12{bottom:542.249977px;}
.y10e{bottom:543.374977px;}
.y13d{bottom:544.499977px;}
.yb6{bottom:547.874977px;}
.y7e{bottom:551.249977px;}
.y94{bottom:552.374977px;}
.y154{bottom:555.749977px;}
.y124{bottom:556.874977px;}
.y5e{bottom:562.499977px;}
.yb5{bottom:571.499976px;}
.ydf{bottom:573.749976px;}
.y60{bottom:574.874976px;}
.y13c{bottom:578.249976px;}
.y41{bottom:579.374976px;}
.y11{bottom:580.499976px;}
.y123{bottom:581.624976px;}
.y10d{bottom:582.749976px;}
.y7d{bottom:583.874976px;}
.y5d{bottom:587.249976px;}
.y93{bottom:593.999975px;}
.yde{bottom:597.374975px;}
.y5a{bottom:600.749975px;}
.y40{bottom:604.124975px;}
.y10{bottom:605.249975px;}
.y153{bottom:606.374975px;}
.y5c{bottom:613.124974px;}
.y13b{bottom:615.374974px;}
.yb4{bottom:616.499974px;}
.y7c{bottom:617.624974px;}
.ydd{bottom:619.874974px;}
.y10c{bottom:622.124974px;}
.y122{bottom:623.249974px;}
.y5f{bottom:625.499974px;}
.y3f{bottom:629.999974px;}
.y152{bottom:632.249974px;}
.y92{bottom:634.499974px;}
.y5b{bottom:637.874973px;}
.yb3{bottom:638.999973px;}
.yfc{bottom:640.124973px;}
.ydc{bottom:642.374973px;}
.yf{bottom:643.499973px;}
.yfb{bottom:652.499973px;}
.y13a{bottom:653.624973px;}
.y3e{bottom:654.749973px;}
.y7b{bottom:658.124973px;}
.yb2{bottom:661.499972px;}
.ydb{bottom:664.874972px;}
.ye{bottom:668.249972px;}
.y121{bottom:672.749972px;}
.y91{bottom:674.999972px;}
.y59{bottom:678.374972px;}
.y3d{bottom:679.499972px;}
.yb1{bottom:683.999971px;}
.yda{bottom:687.374971px;}
.y58{bottom:690.749971px;}
.y7a{bottom:698.624971px;}
.y3c{bottom:705.374971px;}
.yd{bottom:706.499971px;}
.yd9{bottom:709.874970px;}
.y90{bottom:716.624970px;}
.y139{bottom:719.999970px;}
.y151{bottom:723.374970px;}
.y10b{bottom:726.749970px;}
.y3b{bottom:730.124970px;}
.yc{bottom:731.249970px;}
.y79{bottom:732.374969px;}
.y120{bottom:737.999969px;}
.y57{bottom:742.499969px;}
.yfa{bottom:744.749969px;}
.y150{bottom:748.124969px;}
.y8f{bottom:749.249969px;}
.yb0{bottom:752.624969px;}
.y3a{bottom:755.999969px;}
.y78{bottom:757.124968px;}
.y10a{bottom:766.124968px;}
.y55{bottom:768.374968px;}
.yb{bottom:769.499968px;}
.yaf{bottom:775.124968px;}
.yd8{bottom:778.499968px;}
.y11f{bottom:779.624968px;}
.y39{bottom:780.749967px;}
.yf9{bottom:784.124967px;}
.y14f{bottom:785.249967px;}
.y77{bottom:789.749967px;}
.y56{bottom:793.124967px;}
.ya{bottom:794.249967px;}
.yae{bottom:797.624967px;}
.yd7{bottom:800.999967px;}
.y38{bottom:805.499966px;}
.y109{bottom:806.624966px;}
.y9{bottom:818.999966px;}
.yad{bottom:820.124966px;}
.yd6{bottom:823.499966px;}
.yf8{bottom:824.624966px;}
.y14e{bottom:826.874966px;}
.y11e{bottom:829.124965px;}
.y37{bottom:831.374965px;}
.y54{bottom:832.499965px;}
.yac{bottom:842.624965px;}
.y138{bottom:844.874965px;}
.yd5{bottom:845.999965px;}
.y11d{bottom:853.874964px;}
.y36{bottom:856.124964px;}
.y8{bottom:857.249964px;}
.y52{bottom:858.374964px;}
.y14d{bottom:861.749964px;}
.y8e{bottom:863.999964px;}
.yab{bottom:865.124964px;}
.yd4{bottom:868.499964px;}
.y137{bottom:869.624964px;}
.y76{bottom:871.874964px;}
.y11c{bottom:879.749963px;}
.y35{bottom:880.874963px;}
.y53{bottom:883.124963px;}
.yaa{bottom:888.749963px;}
.y7{bottom:889.874963px;}
.yd3{bottom:890.999963px;}
.y136{bottom:895.499963px;}
.y8d{bottom:897.749963px;}
.yf7{bottom:904.499962px;}
.y34{bottom:906.749962px;}
.y14c{bottom:910.124962px;}
.ya9{bottom:911.249962px;}
.y75{bottom:913.499962px;}
.yd2{bottom:914.624962px;}
.y135{bottom:920.249962px;}
.y6{bottom:923.624962px;}
.ya8{bottom:933.749961px;}
.y51{bottom:935.999961px;}
.yd1{bottom:937.124961px;}
.y8c{bottom:938.249961px;}
.yf6{bottom:943.874961px;}
.y134{bottom:944.999961px;}
.y11b{bottom:946.124961px;}
.y33{bottom:948.374960px;}
.y74{bottom:953.999960px;}
.ya7{bottom:956.249960px;}
.yd0{bottom:959.624960px;}
.y5{bottom:960.749960px;}
.y14b{bottom:974.249959px;}
.y73{bottom:978.749959px;}
.ycf{bottom:982.124959px;}
.yf5{bottom:983.249959px;}
.y4{bottom:986.624959px;}
.y50{bottom:987.749959px;}
.y11a{bottom:994.499959px;}
.yf4{bottom:996.749958px;}
.y32{bottom:997.874958px;}
.y14a{bottom:998.999958px;}
.ya6{bottom:1001.249958px;}
.y3{bottom:1011.374958px;}
.y72{bottom:1012.499958px;}
.y4e{bottom:1013.624958px;}
.y119{bottom:1020.374957px;}
.y31{bottom:1023.749957px;}
.y133{bottom:1036.124957px;}
.y149{bottom:1037.249957px;}
.y4f{bottom:1038.374957px;}
.y8b{bottom:1045.124956px;}
.ya5{bottom:1047.374956px;}
.y71{bottom:1052.999956px;}
.y30{bottom:1060.874956px;}
.y148{bottom:1061.999956px;}
.ya4{bottom:1069.874955px;}
.y2{bottom:1076.624955px;}
.y4d{bottom:1078.874955px;}
.y2f{bottom:1086.749955px;}
.ya3{bottom:1092.374954px;}
.yfd{bottom:1102.499954px;}
.y4c{bottom:1103.624954px;}
.y2e{bottom:1111.499954px;}
.ya2{bottom:1114.874954px;}
.h7{height:39.313475px;}
.hd{height:42.026660px;}
.hb{height:43.715478px;}
.hc{height:44.407617px;}
.h4{height:48.203611px;}
.h10{height:67.460446px;}
.h6{height:68.994138px;}
.hf{height:72.305417px;}
.h5{height:84.356320px;}
.h9{height:97.703609px;}
.ha{height:102.374996px;}
.h3{height:108.458125px;}
.h8{height:147.203607px;}
.he{height:996.749958px;}
.h2{height:1129.499953px;}
.h0{height:1264.320000px;}
.h1{height:1264.500000px;}
.w2{width:748.124969px;}
.w0{width:893.879970px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.xd{left:12.181640px;}
.xc{left:20.724609px;}
.xb{left:47.249998px;}
.x1{left:69.749997px;}
.xa{left:70.874997px;}
.x13{left:73.124997px;}
.x4{left:85.499996px;}
.x2{left:114.749995px;}
.x9{left:136.124994px;}
.x10{left:159.749993px;}
.x7{left:227.197262px;}
.xf{left:242.050771px;}
.x5{left:377.349599px;}
.x11{left:426.533191px;}
.x3{left:430.294910px;}
.x8{left:515.917947px;}
.x6{left:656.578098px;}
.xe{left:733.535126px;}
.x12{left:823.499966px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:43.999998pt;}
.v2{vertical-align:87.999996pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007030pt;}
.ls2{letter-spacing:478.140585pt;}
.ls1{letter-spacing:489.265624pt;}
.wsc{word-spacing:-30.367968pt;}
.ws15{word-spacing:-18.357258pt;}
.ws14{word-spacing:-18.337258pt;}
.ws17{word-spacing:-18.328938pt;}
.ws16{word-spacing:-18.321898pt;}
.ws18{word-spacing:-18.321858pt;}
.ws0{word-spacing:-14.546875pt;}
.ws1{word-spacing:-0.056000pt;}
.wsd{word-spacing:-0.050400pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:208.503877pt;}
.ws6{word-spacing:222.148428pt;}
.wse{word-spacing:230.960928pt;}
.ws4{word-spacing:260.765614pt;}
.ws12{word-spacing:267.207040pt;}
.ws3{word-spacing:273.031259pt;}
.ws7{word-spacing:335.515610pt;}
.ws9{word-spacing:352.011703pt;}
.wsa{word-spacing:402.761702pt;}
.ws8{word-spacing:405.605451pt;}
.wsb{word-spacing:474.718750pt;}
.wsf{word-spacing:1598.074172pt;}
.ws11{word-spacing:1903.129802pt;}
.ws10{word-spacing:2010.604409pt;}
.ws13{word-spacing:2270.335843pt;}
._46{margin-left:-3.562500pt;}
._48{width:12.058593pt;}
._7{width:117.777338pt;}
._9{width:154.691398pt;}
._27{width:160.695307pt;}
._28{width:167.550775pt;}
._3{width:172.847629pt;}
._29{width:174.281244pt;}
._17{width:176.328117pt;}
._8{width:179.191398pt;}
._23{width:192.359367pt;}
._6{width:214.035147pt;}
._1b{width:222.894522pt;}
._24{width:231.234366pt;}
._1e{width:234.304678pt;}
._19{width:248.078114pt;}
._15{width:250.949208pt;}
._13{width:259.699208pt;}
._33{width:264.937510pt;}
._25{width:269.984364pt;}
._22{width:270.933580pt;}
._20{width:288.574207pt;}
._11{width:294.644519pt;}
._35{width:296.957040pt;}
._2b{width:308.675769pt;}
._1f{width:310.531237pt;}
._2d{width:317.410163pt;}
._f{width:323.437487pt;}
._38{width:328.976569pt;}
._2e{width:344.999966pt;}
._21{width:348.488267pt;}
._2a{width:355.617171pt;}
._31{width:375.898402pt;}
._d{width:389.199203pt;}
._30{width:407.917972pt;}
._32{width:436.249980pt;}
._39{width:437.917949pt;}
._47{width:444.197244pt;}
._36{width:448.746074pt;}
._34{width:468.570291pt;}
._37{width:470.238260pt;}
._5{width:478.140585pt;}
._2{width:489.265624pt;}
._2f{width:507.289041pt;}
._a{width:519.328103pt;}
._1d{width:595.640600pt;}
._26{width:613.113254pt;}
._41{width:663.753877pt;}
._1a{width:668.714835pt;}
._2c{width:717.781221pt;}
._45{width:720.765592pt;}
._b{width:724.115203pt;}
._16{width:764.773424pt;}
._3e{width:819.818327pt;}
._18{width:825.066391pt;}
._44{width:855.583946pt;}
._e{width:960.535116pt;}
._3b{width:1141.996046pt;}
._3a{width:1184.877881pt;}
._3f{width:1252.287058pt;}
._10{width:1260.652311pt;}
._1c{width:1354.085901pt;}
._14{width:1392.285118pt;}
._12{width:1413.781211pt;}
._3d{width:1562.037044pt;}
._4{width:1629.705985pt;}
._0{width:1823.163009pt;}
._1{width:1902.794843pt;}
._40{width:1938.970623pt;}
._c{width:1955.910074pt;}
._43{width:2124.826081pt;}
._3c{width:2133.179598pt;}
._42{width:2172.759673pt;}
.fs3{font-size:47.999998pt;}
.fs4{font-size:50.399999pt;}
.fs1{font-size:55.999998pt;}
.fs5{font-size:83.999997pt;}
.fs2{font-size:97.999996pt;}
.fs0{font-size:125.999995pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:0.111875pt;}
.yf3{bottom:7.000000pt;}
.y118{bottom:14.999999pt;}
.ya1{bottom:17.999999pt;}
.yca{bottom:23.999999pt;}
.yf2{bottom:26.999999pt;}
.y23{bottom:27.328124pt;}
.y2d{bottom:27.999999pt;}
.y8a{bottom:28.999999pt;}
.y70{bottom:29.999999pt;}
.y132{bottom:30.999999pt;}
.y21{bottom:32.999999pt;}
.ycd{bottom:34.999999pt;}
.ya0{bottom:37.999998pt;}
.y2b{bottom:39.999998pt;}
.y147{bottom:42.999998pt;}
.yc9{bottom:43.999998pt;}
.y117{bottom:44.999998pt;}
.yf1{bottom:46.999998pt;}
.y2a{bottom:50.999998pt;}
.y131{bottom:52.999998pt;}
.y20{bottom:54.999998pt;}
.ycc{bottom:56.999998pt;}
.y9f{bottom:57.999998pt;}
.y1{bottom:59.840044pt;}
.yc8{bottom:64.999997pt;}
.y89{bottom:65.999997pt;}
.y6f{bottom:66.999997pt;}
.y2c{bottom:72.999997pt;}
.y1f{bottom:77.999997pt;}
.ycb{bottom:79.999997pt;}
.y130{bottom:82.999997pt;}
.yc7{bottom:84.999996pt;}
.y88{bottom:87.999996pt;}
.y146{bottom:98.999996pt;}
.y1e{bottom:99.999996pt;}
.y6e{bottom:102.999996pt;}
.yc6{bottom:104.999996pt;}
.yf0{bottom:107.999995pt;}
.y28{bottom:108.999995pt;}
.y116{bottom:114.999995pt;}
.y87{bottom:116.999995pt;}
.y29{bottom:119.999995pt;}
.y9e{bottom:120.999995pt;}
.y1d{bottom:121.999995pt;}
.yc5{bottom:124.999995pt;}
.yef{bottom:127.999995pt;}
.y27{bottom:130.999995pt;}
.y6d{bottom:135.999994pt;}
.y12f{bottom:138.999994pt;}
.y9d{bottom:143.999994pt;}
.yc4{bottom:144.999994pt;}
.yee{bottom:147.999994pt;}
.y26{bottom:152.999994pt;}
.y86{bottom:153.999994pt;}
.y1c{bottom:158.999993pt;}
.y12e{bottom:160.999993pt;}
.yc3{bottom:164.999993pt;}
.yed{bottom:167.999993pt;}
.y108{bottom:173.999993pt;}
.yce{bottom:177.840039pt;}
.y6c{bottom:180.999992pt;}
.yc2{bottom:184.999992pt;}
.yec{bottom:187.999992pt;}
.y25{bottom:188.999992pt;}
.y85{bottom:189.999992pt;}
.y115{bottom:191.999992pt;}
.y12d{bottom:194.999992pt;}
.y107{bottom:195.999992pt;}
.y145{bottom:201.999992pt;}
.y1b{bottom:203.999991pt;}
.yc1{bottom:205.999991pt;}
.yeb{bottom:207.999991pt;}
.y24{bottom:210.999991pt;}
.y12c{bottom:216.999991pt;}
.y84{bottom:219.999991pt;}
.y114{bottom:221.999991pt;}
.y9c{bottom:224.999991pt;}
.y1a{bottom:225.999991pt;}
.yea{bottom:227.999990pt;}
.y106{bottom:229.999990pt;}
.y144{bottom:235.999990pt;}
.y6b{bottom:240.999990pt;}
.yc0{bottom:245.999990pt;}
.y9b{bottom:247.999990pt;}
.y83{bottom:248.999990pt;}
.y113{bottom:250.999990pt;}
.y105{bottom:251.999989pt;}
.y12b{bottom:253.999989pt;}
.y4b{bottom:256.999989pt;}
.y143{bottom:257.999989pt;}
.y19{bottom:259.999989pt;}
.ybf{bottom:265.999989pt;}
.ye9{bottom:268.999989pt;}
.y9a{bottom:269.999989pt;}
.y104{bottom:273.999989pt;}
.y4a{bottom:279.999988pt;}
.y142{bottom:280.999988pt;}
.y82{bottom:284.999988pt;}
.ybe{bottom:285.999988pt;}
.y112{bottom:287.999988pt;}
.ye8{bottom:288.999988pt;}
.y99{bottom:291.999988pt;}
.y18{bottom:292.999988pt;}
.y6a{bottom:294.999988pt;}
.y12a{bottom:297.999988pt;}
.ybd{bottom:305.999987pt;}
.y103{bottom:307.999987pt;}
.ye7{bottom:308.999987pt;}
.y49{bottom:312.999987pt;}
.y141{bottom:313.999987pt;}
.y69{bottom:316.999987pt;}
.y81{bottom:321.999987pt;}
.y98{bottom:325.999986pt;}
.y17{bottom:326.999986pt;}
.y66{bottom:327.999986pt;}
.ye6{bottom:328.999986pt;}
.y102{bottom:329.999986pt;}
.y129{bottom:330.999986pt;}
.y48{bottom:335.999986pt;}
.y140{bottom:336.999986pt;}
.y68{bottom:339.999986pt;}
.y111{bottom:340.999986pt;}
.ybc{bottom:345.999986pt;}
.ye5{bottom:348.999985pt;}
.y101{bottom:352.999985pt;}
.y47{bottom:357.999985pt;}
.y16{bottom:359.999985pt;}
.y67{bottom:361.999985pt;}
.y128{bottom:364.999985pt;}
.ybb{bottom:366.999985pt;}
.ye4{bottom:368.999985pt;}
.y13f{bottom:373.999984pt;}
.y100{bottom:374.999984pt;}
.y110{bottom:376.999984pt;}
.y46{bottom:379.999984pt;}
.yba{bottom:386.999984pt;}
.y97{bottom:388.999984pt;}
.y15{bottom:389.999984pt;}
.y80{bottom:394.999984pt;}
.y65{bottom:396.999983pt;}
.yff{bottom:397.999983pt;}
.yb9{bottom:406.999983pt;}
.ye3{bottom:409.999983pt;}
.y10f{bottom:411.999983pt;}
.y45{bottom:413.999983pt;}
.y127{bottom:416.999983pt;}
.y13e{bottom:417.999983pt;}
.y14{bottom:418.999983pt;}
.y64{bottom:419.999982pt;}
.y96{bottom:424.999982pt;}
.yb8{bottom:426.999982pt;}
.ye2{bottom:429.999982pt;}
.y61{bottom:430.999982pt;}
.y44{bottom:435.999982pt;}
.y126{bottom:438.999982pt;}
.y63{bottom:441.999982pt;}
.yb7{bottom:446.999981pt;}
.y13{bottom:448.999981pt;}
.ye1{bottom:449.999981pt;}
.yfe{bottom:456.999981pt;}
.y43{bottom:458.999981pt;}
.y95{bottom:461.999981pt;}
.y62{bottom:464.999981pt;}
.y7f{bottom:466.999981pt;}
.ye0{bottom:469.999980pt;}
.y125{bottom:471.999980pt;}
.y42{bottom:480.999980pt;}
.y12{bottom:481.999980pt;}
.y10e{bottom:482.999980pt;}
.y13d{bottom:483.999980pt;}
.yb6{bottom:486.999980pt;}
.y7e{bottom:489.999980pt;}
.y94{bottom:490.999980pt;}
.y154{bottom:493.999979pt;}
.y124{bottom:494.999979pt;}
.y5e{bottom:499.999979pt;}
.yb5{bottom:507.999979pt;}
.ydf{bottom:509.999979pt;}
.y60{bottom:510.999979pt;}
.y13c{bottom:513.999979pt;}
.y41{bottom:514.999979pt;}
.y11{bottom:515.999978pt;}
.y123{bottom:516.999978pt;}
.y10d{bottom:517.999978pt;}
.y7d{bottom:518.999978pt;}
.y5d{bottom:521.999978pt;}
.y93{bottom:527.999978pt;}
.yde{bottom:530.999978pt;}
.y5a{bottom:533.999978pt;}
.y40{bottom:536.999978pt;}
.y10{bottom:537.999978pt;}
.y153{bottom:538.999978pt;}
.y5c{bottom:544.999977pt;}
.y13b{bottom:546.999977pt;}
.yb4{bottom:547.999977pt;}
.y7c{bottom:548.999977pt;}
.ydd{bottom:550.999977pt;}
.y10c{bottom:552.999977pt;}
.y122{bottom:553.999977pt;}
.y5f{bottom:555.999977pt;}
.y3f{bottom:559.999977pt;}
.y152{bottom:561.999977pt;}
.y92{bottom:563.999977pt;}
.y5b{bottom:566.999976pt;}
.yb3{bottom:567.999976pt;}
.yfc{bottom:568.999976pt;}
.ydc{bottom:570.999976pt;}
.yf{bottom:571.999976pt;}
.yfb{bottom:579.999976pt;}
.y13a{bottom:580.999976pt;}
.y3e{bottom:581.999976pt;}
.y7b{bottom:584.999976pt;}
.yb2{bottom:587.999975pt;}
.ydb{bottom:590.999975pt;}
.ye{bottom:593.999975pt;}
.y121{bottom:597.999975pt;}
.y91{bottom:599.999975pt;}
.y59{bottom:602.999975pt;}
.y3d{bottom:603.999975pt;}
.yb1{bottom:607.999975pt;}
.yda{bottom:610.999975pt;}
.y58{bottom:613.999974pt;}
.y7a{bottom:620.999974pt;}
.y3c{bottom:626.999974pt;}
.yd{bottom:627.999974pt;}
.yd9{bottom:630.999974pt;}
.y90{bottom:636.999973pt;}
.y139{bottom:639.999973pt;}
.y151{bottom:642.999973pt;}
.y10b{bottom:645.999973pt;}
.y3b{bottom:648.999973pt;}
.yc{bottom:649.999973pt;}
.y79{bottom:650.999973pt;}
.y120{bottom:655.999973pt;}
.y57{bottom:659.999972pt;}
.yfa{bottom:661.999972pt;}
.y150{bottom:664.999972pt;}
.y8f{bottom:665.999972pt;}
.yb0{bottom:668.999972pt;}
.y3a{bottom:671.999972pt;}
.y78{bottom:672.999972pt;}
.y10a{bottom:680.999972pt;}
.y55{bottom:682.999972pt;}
.yb{bottom:683.999972pt;}
.yaf{bottom:688.999971pt;}
.yd8{bottom:691.999971pt;}
.y11f{bottom:692.999971pt;}
.y39{bottom:693.999971pt;}
.yf9{bottom:696.999971pt;}
.y14f{bottom:697.999971pt;}
.y77{bottom:701.999971pt;}
.y56{bottom:704.999971pt;}
.ya{bottom:705.999971pt;}
.yae{bottom:708.999970pt;}
.yd7{bottom:711.999970pt;}
.y38{bottom:715.999970pt;}
.y109{bottom:716.999970pt;}
.y9{bottom:727.999970pt;}
.yad{bottom:728.999970pt;}
.yd6{bottom:731.999969pt;}
.yf8{bottom:732.999969pt;}
.y14e{bottom:734.999969pt;}
.y11e{bottom:736.999969pt;}
.y37{bottom:738.999969pt;}
.y54{bottom:739.999969pt;}
.yac{bottom:748.999969pt;}
.y138{bottom:750.999969pt;}
.yd5{bottom:751.999969pt;}
.y11d{bottom:758.999968pt;}
.y36{bottom:760.999968pt;}
.y8{bottom:761.999968pt;}
.y52{bottom:762.999968pt;}
.y14d{bottom:765.999968pt;}
.y8e{bottom:767.999968pt;}
.yab{bottom:768.999968pt;}
.yd4{bottom:771.999968pt;}
.y137{bottom:772.999968pt;}
.y76{bottom:774.999968pt;}
.y11c{bottom:781.999967pt;}
.y35{bottom:782.999967pt;}
.y53{bottom:784.999967pt;}
.yaa{bottom:789.999967pt;}
.y7{bottom:790.999967pt;}
.yd3{bottom:791.999967pt;}
.y136{bottom:795.999967pt;}
.y8d{bottom:797.999967pt;}
.yf7{bottom:803.999966pt;}
.y34{bottom:805.999966pt;}
.y14c{bottom:808.999966pt;}
.ya9{bottom:809.999966pt;}
.y75{bottom:811.999966pt;}
.yd2{bottom:812.999966pt;}
.y135{bottom:817.999966pt;}
.y6{bottom:820.999966pt;}
.ya8{bottom:829.999965pt;}
.y51{bottom:831.999965pt;}
.yd1{bottom:832.999965pt;}
.y8c{bottom:833.999965pt;}
.yf6{bottom:838.999965pt;}
.y134{bottom:839.999965pt;}
.y11b{bottom:840.999965pt;}
.y33{bottom:842.999965pt;}
.y74{bottom:847.999965pt;}
.ya7{bottom:849.999965pt;}
.yd0{bottom:852.999964pt;}
.y5{bottom:853.999964pt;}
.y14b{bottom:865.999964pt;}
.y73{bottom:869.999964pt;}
.ycf{bottom:872.999964pt;}
.yf5{bottom:873.999964pt;}
.y4{bottom:876.999963pt;}
.y50{bottom:877.999963pt;}
.y11a{bottom:883.999963pt;}
.yf4{bottom:885.999963pt;}
.y32{bottom:886.999963pt;}
.y14a{bottom:887.999963pt;}
.ya6{bottom:889.999963pt;}
.y3{bottom:898.999963pt;}
.y72{bottom:899.999963pt;}
.y4e{bottom:900.999962pt;}
.y119{bottom:906.999962pt;}
.y31{bottom:909.999962pt;}
.y133{bottom:920.999962pt;}
.y149{bottom:921.999962pt;}
.y4f{bottom:922.999962pt;}
.y8b{bottom:928.999961pt;}
.ya5{bottom:930.999961pt;}
.y71{bottom:935.999961pt;}
.y30{bottom:942.999961pt;}
.y148{bottom:943.999961pt;}
.ya4{bottom:950.999960pt;}
.y2{bottom:956.999960pt;}
.y4d{bottom:958.999960pt;}
.y2f{bottom:965.999960pt;}
.ya3{bottom:970.999960pt;}
.yfd{bottom:979.999959pt;}
.y4c{bottom:980.999959pt;}
.y2e{bottom:987.999959pt;}
.ya2{bottom:990.999959pt;}
.h7{height:34.945311pt;}
.hd{height:37.357031pt;}
.hb{height:38.858203pt;}
.hc{height:39.473437pt;}
.h4{height:42.847654pt;}
.h10{height:59.964841pt;}
.h6{height:61.328122pt;}
.hf{height:64.271482pt;}
.h5{height:74.983395pt;}
.h9{height:86.847653pt;}
.ha{height:90.999996pt;}
.h3{height:96.407223pt;}
.h8{height:130.847651pt;}
.he{height:885.999963pt;}
.h2{height:1003.999958pt;}
.h0{height:1123.840000pt;}
.h1{height:1124.000000pt;}
.w2{width:664.999972pt;}
.w0{width:794.559973pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.xd{left:10.828125pt;}
.xc{left:18.421874pt;}
.xb{left:41.999998pt;}
.x1{left:61.999997pt;}
.xa{left:62.999997pt;}
.x13{left:64.999997pt;}
.x4{left:75.999997pt;}
.x2{left:101.999996pt;}
.x9{left:120.999995pt;}
.x10{left:141.999994pt;}
.x7{left:201.953122pt;}
.xf{left:215.156241pt;}
.x5{left:335.421866pt;}
.x11{left:379.140614pt;}
.x3{left:382.484364pt;}
.x8{left:458.593731pt;}
.x6{left:583.624976pt;}
.xe{left:652.031223pt;}
.x12{left:731.999970pt;}
}




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