
    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_d415c3d29e4948b81562fe0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ab3732fda264ff4158627749.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_c88b37196324d0281491429f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_ce972168f70052e3a07ce127.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_efb91ff870acd33d342a8d4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_905a2b7a8d749a085e040a74.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8d824ed921f11d28834dfe35.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ece6241d3531e4118ced8190.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_6db4d3029b93b0278cdd7bc0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_04a31627db758e2d9a8a19d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_6ccc47beb6d0d6f60d25108f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.718000;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_fe0ef2b6ce90c179062b1f2b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.996000;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_574b46d80d5e6b9a9c7489e6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9478b25294fe9b38ff25bcec.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_61c366fcfb990a5a85d507de.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_6b73a6494253bdfc5057b301.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_92da44930f13d98573d33f52.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_809963960c9d0805410ea284.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.896973;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;}
.ls2e{letter-spacing:-1.959552px;}
.ls2c{letter-spacing:-1.917216px;}
.ls2d{letter-spacing:-1.899072px;}
.ls22{letter-spacing:-1.838592px;}
.ls28{letter-spacing:-1.820448px;}
.ls29{letter-spacing:-1.802304px;}
.ls27{letter-spacing:-1.759968px;}
.ls23{letter-spacing:-1.741824px;}
.ls25{letter-spacing:-1.723680px;}
.ls26{letter-spacing:-1.675296px;}
.ls2b{letter-spacing:-1.657152px;}
.ls24{letter-spacing:-1.645056px;}
.ls2a{letter-spacing:-1.620864px;}
.ls9{letter-spacing:-1.209600px;}
.ls8{letter-spacing:-1.202400px;}
.ls7{letter-spacing:-1.188000px;}
.ls14{letter-spacing:-0.344736px;}
.ls13{letter-spacing:-0.338688px;}
.ls5{letter-spacing:-0.302400px;}
.ls10{letter-spacing:-0.278784px;}
.ls6{letter-spacing:-0.241920px;}
.lse{letter-spacing:-0.221760px;}
.lsc{letter-spacing:-0.215424px;}
.ls19{letter-spacing:-0.205344px;}
.lsf{letter-spacing:-0.202752px;}
.ls15{letter-spacing:-0.198720px;}
.lsd{letter-spacing:-0.177408px;}
.ls1a{letter-spacing:-0.158976px;}
.ls1{letter-spacing:-0.145728px;}
.ls4{letter-spacing:-0.132480px;}
.ls16{letter-spacing:-0.125856px;}
.ls18{letter-spacing:-0.119232px;}
.ls17{letter-spacing:-0.079488px;}
.ls3{letter-spacing:-0.066240px;}
.ls11{letter-spacing:-0.021600px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.015840px;}
.lsa{letter-spacing:0.165600px;}
.lsb{letter-spacing:0.166320px;}
.ls1b{letter-spacing:0.329760px;}
.ls21{letter-spacing:2.106720px;}
.ls1d{letter-spacing:6.565392px;}
.ls1e{letter-spacing:7.949664px;}
.ls12{letter-spacing:8.536320px;}
.ls1f{letter-spacing:13.352112px;}
.ls20{letter-spacing:21.359520px;}
.ls0{letter-spacing:58.732848px;}
.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:-18.414720px;}
.ws1{word-spacing:-18.282240px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.614080px;}
.wsa{word-spacing:-17.411328px;}
.ws7{word-spacing:-17.398656px;}
.ws9{word-spacing:-17.392320px;}
.wsb{word-spacing:-17.335296px;}
.ws3{word-spacing:-16.812000px;}
.ws13{word-spacing:-16.797600px;}
.ws5{word-spacing:-16.790400px;}
.ws12{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.480512px;}
.wsd{word-spacing:-16.474752px;}
.ws11{word-spacing:-16.440768px;}
.wsf{word-spacing:-16.434144px;}
.ws14{word-spacing:-16.401024px;}
.wse{word-spacing:-16.361280px;}
.ws16{word-spacing:-15.120000px;}
.ws2{word-spacing:-14.878080px;}
.ws17{word-spacing:-13.474944px;}
.ws1a{word-spacing:-13.462848px;}
.ws19{word-spacing:-13.444704px;}
.ws18{word-spacing:-13.396320px;}
.ws15{word-spacing:-13.378176px;}
.ws1b{word-spacing:-13.360032px;}
.wsc{word-spacing:-0.050400px;}
.ws6{word-spacing:0.000000px;}
._1c{margin-left:-2.390544px;}
._1{margin-left:-1.280448px;}
._0{width:1.059840px;}
._6{width:2.972160px;}
._b{width:3.991680px;}
._4{width:5.040000px;}
._8{width:6.120000px;}
._3{width:7.200000px;}
._7{width:9.072000px;}
._13{width:10.080000px;}
._10{width:11.088000px;}
._5{width:12.960000px;}
._15{width:13.968000px;}
._f{width:15.624000px;}
._1e{width:16.873920px;}
._e{width:18.180000px;}
._d{width:19.224000px;}
._14{width:20.664000px;}
._17{width:22.176000px;}
._a{width:23.616000px;}
._2{width:24.696000px;}
._18{width:25.848000px;}
._16{width:26.856000px;}
._19{width:27.864000px;}
._c{width:29.016000px;}
._1d{width:30.101760px;}
._9{width:31.104000px;}
._1a{width:32.184000px;}
._12{width:43.776000px;}
._1b{width:55.584000px;}
._11{width:59.994288px;}
._20{width:86.304960px;}
._1f{width:171.097920px;}
.fc1{color:rgb(28,30,41);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs8{font-size:38.880000px;}
.fs7{font-size:50.400000px;}
.fs4{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:5.040000px;}
.yb5{bottom:5.100000px;}
.ydb{bottom:6.300000px;}
.yd1{bottom:6.420000px;}
.yd9{bottom:6.480000px;}
.ycf{bottom:6.600000px;}
.ybe{bottom:6.660000px;}
.ybc{bottom:6.720000px;}
.yba{bottom:6.780000px;}
.yb8{bottom:6.840000px;}
.ye0{bottom:6.900000px;}
.yd7{bottom:7.020000px;}
.yde{bottom:7.080000px;}
.yd5{bottom:7.200000px;}
.yac{bottom:7.260000px;}
.ycd{bottom:7.320000px;}
.yd3{bottom:7.380000px;}
.yb2{bottom:7.440000px;}
.yb0{bottom:7.500000px;}
.yae{bottom:7.560000px;}
.ydd{bottom:7.620000px;}
.y90{bottom:9.660000px;}
.y83{bottom:10.320000px;}
.y81{bottom:10.380000px;}
.y7f{bottom:10.440000px;}
.y7d{bottom:10.500000px;}
.y7b{bottom:10.560000px;}
.y85{bottom:10.620000px;}
.yb6{bottom:14.820000px;}
.yaa{bottom:16.620000px;}
.y8c{bottom:24.120000px;}
.yb4{bottom:24.180000px;}
.yab{bottom:26.340000px;}
.y8f{bottom:28.380000px;}
.y5{bottom:57.960000px;}
.y4{bottom:79.200000px;}
.ybf{bottom:105.120000px;}
.y97{bottom:107.280000px;}
.ye1{bottom:108.720000px;}
.y35{bottom:110.520000px;}
.yf1{bottom:119.880000px;}
.y68{bottom:120.240000px;}
.ybd{bottom:121.500000px;}
.ydf{bottom:124.500000px;}
.y96{bottom:128.160000px;}
.y14a{bottom:128.520000px;}
.y34{bottom:131.040000px;}
.y112{bottom:138.240000px;}
.y67{bottom:140.760000px;}
.y123{bottom:141.120000px;}
.y149{bottom:145.800000px;}
.ybb{bottom:147.000000px;}
.y95{bottom:148.680000px;}
.y33{bottom:151.920000px;}
.y111{bottom:156.600000px;}
.yf0{bottom:161.280000px;}
.y66{bottom:161.640000px;}
.y148{bottom:163.080000px;}
.ydc{bottom:169.500000px;}
.y94{bottom:169.560000px;}
.y32{bottom:172.440000px;}
.yb9{bottom:172.500000px;}
.y110{bottom:177.120000px;}
.y147{bottom:180.360000px;}
.y65{bottom:182.160000px;}
.y122{bottom:182.520000px;}
.y93{bottom:190.080000px;}
.y31{bottom:193.320000px;}
.yda{bottom:193.500000px;}
.y146{bottom:197.640000px;}
.yb7{bottom:198.000000px;}
.y64{bottom:203.040000px;}
.y92{bottom:209.880000px;}
.y30{bottom:213.840000px;}
.yef{bottom:214.560000px;}
.y145{bottom:214.920000px;}
.yd8{bottom:216.000000px;}
.y10f{bottom:218.520000px;}
.yb3{bottom:223.500000px;}
.y63{bottom:223.560000px;}
.y121{bottom:223.920000px;}
.y91{bottom:228.240000px;}
.y144{bottom:232.200000px;}
.yd6{bottom:238.500000px;}
.y10e{bottom:239.400000px;}
.y62{bottom:244.440000px;}
.y8e{bottom:244.500000px;}
.y2f{bottom:246.240000px;}
.y143{bottom:249.480000px;}
.y10d{bottom:259.920000px;}
.yd4{bottom:261.000000px;}
.yb1{bottom:264.000000px;}
.y2e{bottom:264.960000px;}
.yee{bottom:265.320000px;}
.y142{bottom:266.400000px;}
.y10c{bottom:280.800000px;}
.yd2{bottom:283.500000px;}
.y141{bottom:283.680000px;}
.y2d{bottom:284.400000px;}
.y61{bottom:285.840000px;}
.y8b{bottom:288.000000px;}
.yaf{bottom:289.500000px;}
.y140{bottom:300.960000px;}
.y10b{bottom:301.320000px;}
.y2c{bottom:305.640000px;}
.y60{bottom:306.360000px;}
.yed{bottom:306.720000px;}
.yd0{bottom:307.500000px;}
.yad{bottom:315.000000px;}
.y13f{bottom:318.240000px;}
.y10a{bottom:322.200000px;}
.y2b{bottom:326.160000px;}
.y8a{bottom:327.000000px;}
.y5f{bottom:327.240000px;}
.yce{bottom:330.000000px;}
.y13e{bottom:335.520000px;}
.ya9{bottom:340.500000px;}
.y109{bottom:342.720000px;}
.y5e{bottom:347.760000px;}
.yec{bottom:348.120000px;}
.y89{bottom:352.500000px;}
.y13d{bottom:353.160000px;}
.y2a{bottom:355.680000px;}
.y108{bottom:363.600000px;}
.y5d{bottom:368.640000px;}
.y13c{bottom:370.440000px;}
.ycc{bottom:375.000000px;}
.y29{bottom:376.560000px;}
.y88{bottom:378.000000px;}
.y107{bottom:384.120000px;}
.ya8{bottom:388.080000px;}
.y5c{bottom:389.160000px;}
.yeb{bottom:389.520000px;}
.y28{bottom:397.440000px;}
.ycb{bottom:399.000000px;}
.ya7{bottom:401.400000px;}
.y87{bottom:403.500000px;}
.y13b{bottom:405.000000px;}
.y5b{bottom:410.040000px;}
.y106{bottom:416.520000px;}
.y27{bottom:417.960000px;}
.ya6{bottom:421.920000px;}
.y13a{bottom:422.280000px;}
.y86{bottom:429.000000px;}
.yca{bottom:430.200000px;}
.y5a{bottom:430.560000px;}
.yea{bottom:430.920000px;}
.y105{bottom:436.680000px;}
.y26{bottom:438.840000px;}
.y139{bottom:439.200000px;}
.ya5{bottom:442.800000px;}
.yc9{bottom:448.560000px;}
.y59{bottom:451.440000px;}
.y84{bottom:454.500000px;}
.y104{bottom:455.040000px;}
.y138{bottom:456.480000px;}
.y25{bottom:459.360000px;}
.yc8{bottom:459.720000px;}
.ya4{bottom:463.320000px;}
.y58{bottom:471.960000px;}
.ye9{bottom:472.320000px;}
.y137{bottom:473.760000px;}
.y103{bottom:475.560000px;}
.y82{bottom:480.000000px;}
.y24{bottom:480.240000px;}
.ya3{bottom:484.200000px;}
.y136{bottom:491.040000px;}
.y57{bottom:492.840000px;}
.y102{bottom:496.440000px;}
.y23{bottom:500.760000px;}
.yc7{bottom:501.120000px;}
.ya2{bottom:504.720000px;}
.y80{bottom:505.500000px;}
.y135{bottom:508.320000px;}
.y56{bottom:513.360000px;}
.ye8{bottom:513.720000px;}
.y101{bottom:516.960000px;}
.y22{bottom:521.640000px;}
.ya1{bottom:525.600000px;}
.y7e{bottom:531.000000px;}
.y55{bottom:534.240000px;}
.y100{bottom:537.840000px;}
.y21{bottom:542.160000px;}
.yc6{bottom:542.520000px;}
.y134{bottom:542.880000px;}
.ya0{bottom:546.120000px;}
.y54{bottom:554.760000px;}
.ye7{bottom:555.120000px;}
.y7c{bottom:556.500000px;}
.yff{bottom:558.360000px;}
.y133{bottom:560.520000px;}
.y20{bottom:563.040000px;}
.y9f{bottom:567.000000px;}
.y53{bottom:575.640000px;}
.y132{bottom:577.800000px;}
.yfe{bottom:579.240000px;}
.y7a{bottom:582.000000px;}
.y1f{bottom:583.560000px;}
.yc5{bottom:583.920000px;}
.y9e{bottom:587.520000px;}
.y131{bottom:595.080000px;}
.y52{bottom:596.160000px;}
.ye6{bottom:596.520000px;}
.yfd{bottom:599.760000px;}
.y1e{bottom:604.440000px;}
.y9d{bottom:608.400000px;}
.y130{bottom:612.000000px;}
.y51{bottom:617.040000px;}
.yfc{bottom:620.640000px;}
.y79{bottom:621.720000px;}
.y1d{bottom:624.960000px;}
.yc4{bottom:625.320000px;}
.y9c{bottom:628.920000px;}
.y12f{bottom:629.280000px;}
.y50{bottom:637.560000px;}
.yfb{bottom:641.160000px;}
.y1c{bottom:645.840000px;}
.y12e{bottom:646.560000px;}
.y78{bottom:647.280000px;}
.y9b{bottom:649.800000px;}
.y4f{bottom:658.440000px;}
.yfa{bottom:662.040000px;}
.y12d{bottom:663.840000px;}
.y1b{bottom:666.360000px;}
.yc3{bottom:666.720000px;}
.y9a{bottom:670.320000px;}
.y4e{bottom:678.960000px;}
.y12c{bottom:681.120000px;}
.yf9{bottom:682.560000px;}
.y1a{bottom:687.240000px;}
.y77{bottom:691.200000px;}
.y12b{bottom:698.400000px;}
.y4d{bottom:699.840000px;}
.y19{bottom:707.760000px;}
.yc2{bottom:708.120000px;}
.y76{bottom:711.720000px;}
.yf8{bottom:714.960000px;}
.y12a{bottom:715.680000px;}
.y4c{bottom:720.360000px;}
.y18{bottom:728.640000px;}
.y75{bottom:732.600000px;}
.y129{bottom:732.960000px;}
.yf7{bottom:735.120000px;}
.yc1{bottom:740.160000px;}
.y4b{bottom:741.240000px;}
.ye5{bottom:741.600000px;}
.y17{bottom:749.160000px;}
.y128{bottom:750.240000px;}
.y74{bottom:753.120000px;}
.yc0{bottom:761.040000px;}
.y4a{bottom:761.760000px;}
.ye4{bottom:762.480000px;}
.y127{bottom:767.520000px;}
.y16{bottom:770.040000px;}
.y73{bottom:774.000000px;}
.y49{bottom:782.280000px;}
.y120{bottom:782.640000px;}
.y126{bottom:784.800000px;}
.y15{bottom:790.560000px;}
.y72{bottom:794.520000px;}
.ye3{bottom:796.680000px;}
.y48{bottom:803.160000px;}
.y14{bottom:811.440000px;}
.y125{bottom:814.320000px;}
.y71{bottom:815.400000px;}
.y47{bottom:823.680000px;}
.y11f{bottom:824.040000px;}
.y13{bottom:831.960000px;}
.y124{bottom:833.040000px;}
.y70{bottom:835.920000px;}
.y46{bottom:844.560000px;}
.y99{bottom:847.800000px;}
.y12{bottom:852.840000px;}
.y6f{bottom:856.800000px;}
.y45{bottom:865.080000px;}
.y11e{bottom:865.440000px;}
.y98{bottom:867.960000px;}
.y11{bottom:873.360000px;}
.y6e{bottom:877.320000px;}
.y44{bottom:885.960000px;}
.y10{bottom:894.240000px;}
.y11d{bottom:897.840000px;}
.y6d{bottom:898.200000px;}
.y43{bottom:906.480000px;}
.yf{bottom:914.760000px;}
.y11c{bottom:918.000000px;}
.y6c{bottom:918.720000px;}
.y42{bottom:927.360000px;}
.ye{bottom:935.640000px;}
.y11b{bottom:936.000000px;}
.yf6{bottom:939.600000px;}
.y41{bottom:947.880000px;}
.y6b{bottom:951.120000px;}
.yd{bottom:955.080000px;}
.y11a{bottom:956.880000px;}
.yf5{bottom:960.120000px;}
.y40{bottom:968.760000px;}
.yc{bottom:970.920000px;}
.y6a{bottom:971.280000px;}
.y119{bottom:977.400000px;}
.yf4{bottom:981.000000px;}
.yb{bottom:988.200000px;}
.y3f{bottom:989.280000px;}
.y118{bottom:998.280000px;}
.y3e{bottom:1010.160000px;}
.yf3{bottom:1013.400000px;}
.ya{bottom:1014.840000px;}
.y117{bottom:1018.800000px;}
.y3d{bottom:1030.680000px;}
.yf2{bottom:1033.560000px;}
.y9{bottom:1035.000000px;}
.y116{bottom:1039.680000px;}
.y3c{bottom:1051.560000px;}
.y8{bottom:1054.800000px;}
.y115{bottom:1060.200000px;}
.y3b{bottom:1072.080000px;}
.y114{bottom:1081.080000px;}
.y7{bottom:1086.120000px;}
.y3a{bottom:1092.960000px;}
.y113{bottom:1101.600000px;}
.y39{bottom:1113.480000px;}
.y6{bottom:1117.080000px;}
.ye2{bottom:1134.000000px;}
.y38{bottom:1134.360000px;}
.y3{bottom:1146.600000px;}
.y37{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y1{bottom:1190.880000px;}
.y36{bottom:1191.600000px;}
.y69{bottom:1192.320000px;}
.hb{height:20.155078px;}
.h16{height:22.500000px;}
.h15{height:24.000000px;}
.h14{height:25.500000px;}
.h12{height:25.913672px;}
.hd{height:27.000000px;}
.h9{height:36.471094px;}
.hf{height:40.500000px;}
.h8{height:41.993438px;}
.h6{height:42.022969px;}
.h13{height:43.500000px;}
.h3{height:44.149219px;}
.h10{height:45.000000px;}
.he{height:45.992813px;}
.hc{height:48.660480px;}
.h7{height:48.796875px;}
.h17{height:49.042969px;}
.h11{height:49.992188px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.ha{height:51.679688px;}
.h5{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w8{width:54.000000px;}
.wc{width:73.500000px;}
.wa{width:75.000000px;}
.we{width:81.000000px;}
.w7{width:85.500000px;}
.w6{width:88.500000px;}
.wd{width:94.500000px;}
.w9{width:96.000000px;}
.w3{width:103.500000px;}
.w2{width:106.500000px;}
.w11{width:114.000000px;}
.w10{width:117.000000px;}
.wb{width:154.500000px;}
.w5{width:223.500000px;}
.w4{width:226.500000px;}
.wf{width:309.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:7.439928px;}
.x10{left:120.000000px;}
.x8{left:127.439928px;}
.x1a{left:129.000000px;}
.x2{left:131.453244px;}
.xe{left:134.162100px;}
.x5{left:154.439928px;}
.x28{left:167.939928px;}
.xc{left:169.965072px;}
.x21{left:177.000000px;}
.x6{left:199.361916px;}
.xd{left:213.815556px;}
.x26{left:224.171280px;}
.x12{left:226.500000px;}
.x19{left:233.426160px;}
.x27{left:234.463284px;}
.x7{left:240.626592px;}
.x1{left:244.823724px;}
.xa{left:248.478876px;}
.x20{left:280.946772px;}
.xf{left:282.917376px;}
.x24{left:285.845220px;}
.x13{left:330.000000px;}
.x1b{left:357.000000px;}
.xb{left:371.141280px;}
.x9{left:386.399880px;}
.x15{left:417.000000px;}
.x1c{left:432.000000px;}
.x3{left:446.152320px;}
.x22{left:484.500000px;}
.x16{left:502.500000px;}
.x1d{left:526.500000px;}
.x14{left:556.500000px;}
.x23{left:601.500000px;}
.x1e{left:607.500000px;}
.x17{left:651.000000px;}
.x1f{left:688.500000px;}
.x18{left:726.000000px;}
.x4{left:737.865000px;}
.x25{left:795.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2e{letter-spacing:-1.741824pt;}
.ls2c{letter-spacing:-1.704192pt;}
.ls2d{letter-spacing:-1.688064pt;}
.ls22{letter-spacing:-1.634304pt;}
.ls28{letter-spacing:-1.618176pt;}
.ls29{letter-spacing:-1.602048pt;}
.ls27{letter-spacing:-1.564416pt;}
.ls23{letter-spacing:-1.548288pt;}
.ls25{letter-spacing:-1.532160pt;}
.ls26{letter-spacing:-1.489152pt;}
.ls2b{letter-spacing:-1.473024pt;}
.ls24{letter-spacing:-1.462272pt;}
.ls2a{letter-spacing:-1.440768pt;}
.ls9{letter-spacing:-1.075200pt;}
.ls8{letter-spacing:-1.068800pt;}
.ls7{letter-spacing:-1.056000pt;}
.ls14{letter-spacing:-0.306432pt;}
.ls13{letter-spacing:-0.301056pt;}
.ls5{letter-spacing:-0.268800pt;}
.ls10{letter-spacing:-0.247808pt;}
.ls6{letter-spacing:-0.215040pt;}
.lse{letter-spacing:-0.197120pt;}
.lsc{letter-spacing:-0.191488pt;}
.ls19{letter-spacing:-0.182528pt;}
.lsf{letter-spacing:-0.180224pt;}
.ls15{letter-spacing:-0.176640pt;}
.lsd{letter-spacing:-0.157696pt;}
.ls1a{letter-spacing:-0.141312pt;}
.ls1{letter-spacing:-0.129536pt;}
.ls4{letter-spacing:-0.117760pt;}
.ls16{letter-spacing:-0.111872pt;}
.ls18{letter-spacing:-0.105984pt;}
.ls17{letter-spacing:-0.070656pt;}
.ls3{letter-spacing:-0.058880pt;}
.ls11{letter-spacing:-0.019200pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.014080pt;}
.lsa{letter-spacing:0.147200pt;}
.lsb{letter-spacing:0.147840pt;}
.ls1b{letter-spacing:0.293120pt;}
.ls21{letter-spacing:1.872640pt;}
.ls1d{letter-spacing:5.835904pt;}
.ls1e{letter-spacing:7.066368pt;}
.ls12{letter-spacing:7.587840pt;}
.ls1f{letter-spacing:11.868544pt;}
.ls20{letter-spacing:18.986240pt;}
.ls0{letter-spacing:52.206976pt;}
.ws0{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.250880pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.656960pt;}
.wsa{word-spacing:-15.476736pt;}
.ws7{word-spacing:-15.465472pt;}
.ws9{word-spacing:-15.459840pt;}
.wsb{word-spacing:-15.409152pt;}
.ws3{word-spacing:-14.944000pt;}
.ws13{word-spacing:-14.931200pt;}
.ws5{word-spacing:-14.924800pt;}
.ws12{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.649344pt;}
.wsd{word-spacing:-14.644224pt;}
.ws11{word-spacing:-14.614016pt;}
.wsf{word-spacing:-14.608128pt;}
.ws14{word-spacing:-14.578688pt;}
.wse{word-spacing:-14.543360pt;}
.ws16{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.224960pt;}
.ws17{word-spacing:-11.977728pt;}
.ws1a{word-spacing:-11.966976pt;}
.ws19{word-spacing:-11.950848pt;}
.ws18{word-spacing:-11.907840pt;}
.ws15{word-spacing:-11.891712pt;}
.ws1b{word-spacing:-11.875584pt;}
.wsc{word-spacing:-0.044800pt;}
.ws6{word-spacing:0.000000pt;}
._1c{margin-left:-2.124928pt;}
._1{margin-left:-1.138176pt;}
._0{width:0.942080pt;}
._6{width:2.641920pt;}
._b{width:3.548160pt;}
._4{width:4.480000pt;}
._8{width:5.440000pt;}
._3{width:6.400000pt;}
._7{width:8.064000pt;}
._13{width:8.960000pt;}
._10{width:9.856000pt;}
._5{width:11.520000pt;}
._15{width:12.416000pt;}
._f{width:13.888000pt;}
._1e{width:14.999040pt;}
._e{width:16.160000pt;}
._d{width:17.088000pt;}
._14{width:18.368000pt;}
._17{width:19.712000pt;}
._a{width:20.992000pt;}
._2{width:21.952000pt;}
._18{width:22.976000pt;}
._16{width:23.872000pt;}
._19{width:24.768000pt;}
._c{width:25.792000pt;}
._1d{width:26.757120pt;}
._9{width:27.648000pt;}
._1a{width:28.608000pt;}
._12{width:38.912000pt;}
._1b{width:49.408000pt;}
._11{width:53.328256pt;}
._20{width:76.715520pt;}
._1f{width:152.087040pt;}
.fs5{font-size:26.880000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:44.800000pt;}
.fs4{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:4.480000pt;}
.yb5{bottom:4.533333pt;}
.ydb{bottom:5.600000pt;}
.yd1{bottom:5.706667pt;}
.yd9{bottom:5.760000pt;}
.ycf{bottom:5.866667pt;}
.ybe{bottom:5.920000pt;}
.ybc{bottom:5.973333pt;}
.yba{bottom:6.026667pt;}
.yb8{bottom:6.080000pt;}
.ye0{bottom:6.133333pt;}
.yd7{bottom:6.240000pt;}
.yde{bottom:6.293333pt;}
.yd5{bottom:6.400000pt;}
.yac{bottom:6.453333pt;}
.ycd{bottom:6.506667pt;}
.yd3{bottom:6.560000pt;}
.yb2{bottom:6.613333pt;}
.yb0{bottom:6.666667pt;}
.yae{bottom:6.720000pt;}
.ydd{bottom:6.773333pt;}
.y90{bottom:8.586667pt;}
.y83{bottom:9.173333pt;}
.y81{bottom:9.226667pt;}
.y7f{bottom:9.280000pt;}
.y7d{bottom:9.333333pt;}
.y7b{bottom:9.386667pt;}
.y85{bottom:9.440000pt;}
.yb6{bottom:13.173333pt;}
.yaa{bottom:14.773333pt;}
.y8c{bottom:21.440000pt;}
.yb4{bottom:21.493333pt;}
.yab{bottom:23.413333pt;}
.y8f{bottom:25.226667pt;}
.y5{bottom:51.520000pt;}
.y4{bottom:70.400000pt;}
.ybf{bottom:93.440000pt;}
.y97{bottom:95.360000pt;}
.ye1{bottom:96.640000pt;}
.y35{bottom:98.240000pt;}
.yf1{bottom:106.560000pt;}
.y68{bottom:106.880000pt;}
.ybd{bottom:108.000000pt;}
.ydf{bottom:110.666667pt;}
.y96{bottom:113.920000pt;}
.y14a{bottom:114.240000pt;}
.y34{bottom:116.480000pt;}
.y112{bottom:122.880000pt;}
.y67{bottom:125.120000pt;}
.y123{bottom:125.440000pt;}
.y149{bottom:129.600000pt;}
.ybb{bottom:130.666667pt;}
.y95{bottom:132.160000pt;}
.y33{bottom:135.040000pt;}
.y111{bottom:139.200000pt;}
.yf0{bottom:143.360000pt;}
.y66{bottom:143.680000pt;}
.y148{bottom:144.960000pt;}
.ydc{bottom:150.666667pt;}
.y94{bottom:150.720000pt;}
.y32{bottom:153.280000pt;}
.yb9{bottom:153.333333pt;}
.y110{bottom:157.440000pt;}
.y147{bottom:160.320000pt;}
.y65{bottom:161.920000pt;}
.y122{bottom:162.240000pt;}
.y93{bottom:168.960000pt;}
.y31{bottom:171.840000pt;}
.yda{bottom:172.000000pt;}
.y146{bottom:175.680000pt;}
.yb7{bottom:176.000000pt;}
.y64{bottom:180.480000pt;}
.y92{bottom:186.560000pt;}
.y30{bottom:190.080000pt;}
.yef{bottom:190.720000pt;}
.y145{bottom:191.040000pt;}
.yd8{bottom:192.000000pt;}
.y10f{bottom:194.240000pt;}
.yb3{bottom:198.666667pt;}
.y63{bottom:198.720000pt;}
.y121{bottom:199.040000pt;}
.y91{bottom:202.880000pt;}
.y144{bottom:206.400000pt;}
.yd6{bottom:212.000000pt;}
.y10e{bottom:212.800000pt;}
.y62{bottom:217.280000pt;}
.y8e{bottom:217.333333pt;}
.y2f{bottom:218.880000pt;}
.y143{bottom:221.760000pt;}
.y10d{bottom:231.040000pt;}
.yd4{bottom:232.000000pt;}
.yb1{bottom:234.666667pt;}
.y2e{bottom:235.520000pt;}
.yee{bottom:235.840000pt;}
.y142{bottom:236.800000pt;}
.y10c{bottom:249.600000pt;}
.yd2{bottom:252.000000pt;}
.y141{bottom:252.160000pt;}
.y2d{bottom:252.800000pt;}
.y61{bottom:254.080000pt;}
.y8b{bottom:256.000000pt;}
.yaf{bottom:257.333333pt;}
.y140{bottom:267.520000pt;}
.y10b{bottom:267.840000pt;}
.y2c{bottom:271.680000pt;}
.y60{bottom:272.320000pt;}
.yed{bottom:272.640000pt;}
.yd0{bottom:273.333333pt;}
.yad{bottom:280.000000pt;}
.y13f{bottom:282.880000pt;}
.y10a{bottom:286.400000pt;}
.y2b{bottom:289.920000pt;}
.y8a{bottom:290.666667pt;}
.y5f{bottom:290.880000pt;}
.yce{bottom:293.333333pt;}
.y13e{bottom:298.240000pt;}
.ya9{bottom:302.666667pt;}
.y109{bottom:304.640000pt;}
.y5e{bottom:309.120000pt;}
.yec{bottom:309.440000pt;}
.y89{bottom:313.333333pt;}
.y13d{bottom:313.920000pt;}
.y2a{bottom:316.160000pt;}
.y108{bottom:323.200000pt;}
.y5d{bottom:327.680000pt;}
.y13c{bottom:329.280000pt;}
.ycc{bottom:333.333333pt;}
.y29{bottom:334.720000pt;}
.y88{bottom:336.000000pt;}
.y107{bottom:341.440000pt;}
.ya8{bottom:344.960000pt;}
.y5c{bottom:345.920000pt;}
.yeb{bottom:346.240000pt;}
.y28{bottom:353.280000pt;}
.ycb{bottom:354.666667pt;}
.ya7{bottom:356.800000pt;}
.y87{bottom:358.666667pt;}
.y13b{bottom:360.000000pt;}
.y5b{bottom:364.480000pt;}
.y106{bottom:370.240000pt;}
.y27{bottom:371.520000pt;}
.ya6{bottom:375.040000pt;}
.y13a{bottom:375.360000pt;}
.y86{bottom:381.333333pt;}
.yca{bottom:382.400000pt;}
.y5a{bottom:382.720000pt;}
.yea{bottom:383.040000pt;}
.y105{bottom:388.160000pt;}
.y26{bottom:390.080000pt;}
.y139{bottom:390.400000pt;}
.ya5{bottom:393.600000pt;}
.yc9{bottom:398.720000pt;}
.y59{bottom:401.280000pt;}
.y84{bottom:404.000000pt;}
.y104{bottom:404.480000pt;}
.y138{bottom:405.760000pt;}
.y25{bottom:408.320000pt;}
.yc8{bottom:408.640000pt;}
.ya4{bottom:411.840000pt;}
.y58{bottom:419.520000pt;}
.ye9{bottom:419.840000pt;}
.y137{bottom:421.120000pt;}
.y103{bottom:422.720000pt;}
.y82{bottom:426.666667pt;}
.y24{bottom:426.880000pt;}
.ya3{bottom:430.400000pt;}
.y136{bottom:436.480000pt;}
.y57{bottom:438.080000pt;}
.y102{bottom:441.280000pt;}
.y23{bottom:445.120000pt;}
.yc7{bottom:445.440000pt;}
.ya2{bottom:448.640000pt;}
.y80{bottom:449.333333pt;}
.y135{bottom:451.840000pt;}
.y56{bottom:456.320000pt;}
.ye8{bottom:456.640000pt;}
.y101{bottom:459.520000pt;}
.y22{bottom:463.680000pt;}
.ya1{bottom:467.200000pt;}
.y7e{bottom:472.000000pt;}
.y55{bottom:474.880000pt;}
.y100{bottom:478.080000pt;}
.y21{bottom:481.920000pt;}
.yc6{bottom:482.240000pt;}
.y134{bottom:482.560000pt;}
.ya0{bottom:485.440000pt;}
.y54{bottom:493.120000pt;}
.ye7{bottom:493.440000pt;}
.y7c{bottom:494.666667pt;}
.yff{bottom:496.320000pt;}
.y133{bottom:498.240000pt;}
.y20{bottom:500.480000pt;}
.y9f{bottom:504.000000pt;}
.y53{bottom:511.680000pt;}
.y132{bottom:513.600000pt;}
.yfe{bottom:514.880000pt;}
.y7a{bottom:517.333333pt;}
.y1f{bottom:518.720000pt;}
.yc5{bottom:519.040000pt;}
.y9e{bottom:522.240000pt;}
.y131{bottom:528.960000pt;}
.y52{bottom:529.920000pt;}
.ye6{bottom:530.240000pt;}
.yfd{bottom:533.120000pt;}
.y1e{bottom:537.280000pt;}
.y9d{bottom:540.800000pt;}
.y130{bottom:544.000000pt;}
.y51{bottom:548.480000pt;}
.yfc{bottom:551.680000pt;}
.y79{bottom:552.640000pt;}
.y1d{bottom:555.520000pt;}
.yc4{bottom:555.840000pt;}
.y9c{bottom:559.040000pt;}
.y12f{bottom:559.360000pt;}
.y50{bottom:566.720000pt;}
.yfb{bottom:569.920000pt;}
.y1c{bottom:574.080000pt;}
.y12e{bottom:574.720000pt;}
.y78{bottom:575.360000pt;}
.y9b{bottom:577.600000pt;}
.y4f{bottom:585.280000pt;}
.yfa{bottom:588.480000pt;}
.y12d{bottom:590.080000pt;}
.y1b{bottom:592.320000pt;}
.yc3{bottom:592.640000pt;}
.y9a{bottom:595.840000pt;}
.y4e{bottom:603.520000pt;}
.y12c{bottom:605.440000pt;}
.yf9{bottom:606.720000pt;}
.y1a{bottom:610.880000pt;}
.y77{bottom:614.400000pt;}
.y12b{bottom:620.800000pt;}
.y4d{bottom:622.080000pt;}
.y19{bottom:629.120000pt;}
.yc2{bottom:629.440000pt;}
.y76{bottom:632.640000pt;}
.yf8{bottom:635.520000pt;}
.y12a{bottom:636.160000pt;}
.y4c{bottom:640.320000pt;}
.y18{bottom:647.680000pt;}
.y75{bottom:651.200000pt;}
.y129{bottom:651.520000pt;}
.yf7{bottom:653.440000pt;}
.yc1{bottom:657.920000pt;}
.y4b{bottom:658.880000pt;}
.ye5{bottom:659.200000pt;}
.y17{bottom:665.920000pt;}
.y128{bottom:666.880000pt;}
.y74{bottom:669.440000pt;}
.yc0{bottom:676.480000pt;}
.y4a{bottom:677.120000pt;}
.ye4{bottom:677.760000pt;}
.y127{bottom:682.240000pt;}
.y16{bottom:684.480000pt;}
.y73{bottom:688.000000pt;}
.y49{bottom:695.360000pt;}
.y120{bottom:695.680000pt;}
.y126{bottom:697.600000pt;}
.y15{bottom:702.720000pt;}
.y72{bottom:706.240000pt;}
.ye3{bottom:708.160000pt;}
.y48{bottom:713.920000pt;}
.y14{bottom:721.280000pt;}
.y125{bottom:723.840000pt;}
.y71{bottom:724.800000pt;}
.y47{bottom:732.160000pt;}
.y11f{bottom:732.480000pt;}
.y13{bottom:739.520000pt;}
.y124{bottom:740.480000pt;}
.y70{bottom:743.040000pt;}
.y46{bottom:750.720000pt;}
.y99{bottom:753.600000pt;}
.y12{bottom:758.080000pt;}
.y6f{bottom:761.600000pt;}
.y45{bottom:768.960000pt;}
.y11e{bottom:769.280000pt;}
.y98{bottom:771.520000pt;}
.y11{bottom:776.320000pt;}
.y6e{bottom:779.840000pt;}
.y44{bottom:787.520000pt;}
.y10{bottom:794.880000pt;}
.y11d{bottom:798.080000pt;}
.y6d{bottom:798.400000pt;}
.y43{bottom:805.760000pt;}
.yf{bottom:813.120000pt;}
.y11c{bottom:816.000000pt;}
.y6c{bottom:816.640000pt;}
.y42{bottom:824.320000pt;}
.ye{bottom:831.680000pt;}
.y11b{bottom:832.000000pt;}
.yf6{bottom:835.200000pt;}
.y41{bottom:842.560000pt;}
.y6b{bottom:845.440000pt;}
.yd{bottom:848.960000pt;}
.y11a{bottom:850.560000pt;}
.yf5{bottom:853.440000pt;}
.y40{bottom:861.120000pt;}
.yc{bottom:863.040000pt;}
.y6a{bottom:863.360000pt;}
.y119{bottom:868.800000pt;}
.yf4{bottom:872.000000pt;}
.yb{bottom:878.400000pt;}
.y3f{bottom:879.360000pt;}
.y118{bottom:887.360000pt;}
.y3e{bottom:897.920000pt;}
.yf3{bottom:900.800000pt;}
.ya{bottom:902.080000pt;}
.y117{bottom:905.600000pt;}
.y3d{bottom:916.160000pt;}
.yf2{bottom:918.720000pt;}
.y9{bottom:920.000000pt;}
.y116{bottom:924.160000pt;}
.y3c{bottom:934.720000pt;}
.y8{bottom:937.600000pt;}
.y115{bottom:942.400000pt;}
.y3b{bottom:952.960000pt;}
.y114{bottom:960.960000pt;}
.y7{bottom:965.440000pt;}
.y3a{bottom:971.520000pt;}
.y113{bottom:979.200000pt;}
.y39{bottom:989.760000pt;}
.y6{bottom:992.960000pt;}
.ye2{bottom:1008.000000pt;}
.y38{bottom:1008.320000pt;}
.y3{bottom:1019.200000pt;}
.y37{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y1{bottom:1058.560000pt;}
.y36{bottom:1059.200000pt;}
.y69{bottom:1059.840000pt;}
.hb{height:17.915625pt;}
.h16{height:20.000000pt;}
.h15{height:21.333333pt;}
.h14{height:22.666667pt;}
.h12{height:23.034375pt;}
.hd{height:24.000000pt;}
.h9{height:32.418750pt;}
.hf{height:36.000000pt;}
.h8{height:37.327500pt;}
.h6{height:37.353750pt;}
.h13{height:38.666667pt;}
.h3{height:39.243750pt;}
.h10{height:40.000000pt;}
.he{height:40.882500pt;}
.hc{height:43.253760pt;}
.h7{height:43.375000pt;}
.h17{height:43.593750pt;}
.h11{height:44.437500pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.ha{height:45.937500pt;}
.h5{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w8{width:48.000000pt;}
.wc{width:65.333333pt;}
.wa{width:66.666667pt;}
.we{width:72.000000pt;}
.w7{width:76.000000pt;}
.w6{width:78.666667pt;}
.wd{width:84.000000pt;}
.w9{width:85.333333pt;}
.w3{width:92.000000pt;}
.w2{width:94.666667pt;}
.w11{width:101.333333pt;}
.w10{width:104.000000pt;}
.wb{width:137.333333pt;}
.w5{width:198.666667pt;}
.w4{width:201.333333pt;}
.wf{width:274.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:6.613269pt;}
.x10{left:106.666667pt;}
.x8{left:113.279936pt;}
.x1a{left:114.666667pt;}
.x2{left:116.847328pt;}
.xe{left:119.255200pt;}
.x5{left:137.279936pt;}
.x28{left:149.279936pt;}
.xc{left:151.080064pt;}
.x21{left:157.333333pt;}
.x6{left:177.210592pt;}
.xd{left:190.058272pt;}
.x26{left:199.263360pt;}
.x12{left:201.333333pt;}
.x19{left:207.489920pt;}
.x27{left:208.411808pt;}
.x7{left:213.890304pt;}
.x1{left:217.621088pt;}
.xa{left:220.870112pt;}
.x20{left:249.730464pt;}
.xf{left:251.482112pt;}
.x24{left:254.084640pt;}
.x13{left:293.333333pt;}
.x1b{left:317.333333pt;}
.xb{left:329.903360pt;}
.x9{left:343.466560pt;}
.x15{left:370.666667pt;}
.x1c{left:384.000000pt;}
.x3{left:396.579840pt;}
.x22{left:430.666667pt;}
.x16{left:446.666667pt;}
.x1d{left:468.000000pt;}
.x14{left:494.666667pt;}
.x23{left:534.666667pt;}
.x1e{left:540.000000pt;}
.x17{left:578.666667pt;}
.x1f{left:612.000000pt;}
.x18{left:645.333333pt;}
.x4{left:655.880000pt;}
.x25{left:707.200000pt;}
}




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