
    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_45973e2bd419195e2abaca1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_d84a45b2c2c939bddb68fd41.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_2a31ee0a42fced12dd0410cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_23bf5c1bb4445cb27d222c6c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.044000;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_47c978dbd6c38197a24fd937.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_ec7606bbe2561920f4099e03.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_1eebc815dc05be0fcff7d312.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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_3d39044f570032e57bd82bf8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941000;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_d35909020b39e4add3cc2e50.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946000;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_de3d73d977b5dce4126caf73.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.945000;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_c503ec760b9fac1ff6087471.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.044000;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_31dd5a6eb70f78a452c3fac8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011230;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_ffd742505c333c7898845d4c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.117188;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_93f7a7c9ca09f267bfd78bf6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.968262;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_653ee2ddf1aa5d5295be57b7.woff2')format("woff");}.fff{font-family:fff;line-height:0.730469;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_f47832dbc38aba1f18415c47.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.031738;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_7707c92176fdee059749ce38.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.031738;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_653ee2ddf1aa5d5295be57b7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.730469;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_f47832dbc38aba1f18415c47.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.031738;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:ff14;src:url('chunks/assets/font_7707c92176fdee059749ce38.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.031738;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:ff15;src:url('chunks/assets/font_fafaede7b88f1ab77754f395.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.953125;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-3.894000px;}
.ls11{letter-spacing:-2.178000px;}
.ls18{letter-spacing:-0.924000px;}
.lse{letter-spacing:-0.858000px;}
.ls15{letter-spacing:-0.660000px;}
.ls1a{letter-spacing:-0.462000px;}
.ls16{letter-spacing:-0.396000px;}
.ls7{letter-spacing:-0.198000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.001200px;}
.lsc{letter-spacing:0.001800px;}
.ls1b{letter-spacing:0.002400px;}
.ls1d{letter-spacing:0.003000px;}
.ls13{letter-spacing:0.003600px;}
.ls1f{letter-spacing:0.011400px;}
.ls4{letter-spacing:0.012600px;}
.ls14{letter-spacing:0.016200px;}
.ls1c{letter-spacing:0.017400px;}
.ls1e{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.021000px;}
.ls9{letter-spacing:0.024600px;}
.ls12{letter-spacing:0.025200px;}
.ls10{letter-spacing:0.330000px;}
.lsf{letter-spacing:1.452000px;}
.ls21{letter-spacing:2.021400px;}
.ls2{letter-spacing:2.320800px;}
.ls1{letter-spacing:2.520000px;}
.ls20{letter-spacing:4.394400px;}
.ls19{letter-spacing:4.401600px;}
.ls3{letter-spacing:4.501800px;}
.ls5{letter-spacing:4.558800px;}
.ls6{letter-spacing:4.617600px;}
.lsb{letter-spacing:4.913400px;}
.ls8{letter-spacing:5.544000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(210,32,39),0 0.015em rgb(210,32,39),0.015em 0 rgb(210,32,39),0 -0.015em  rgb(210,32,39);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(210,32,39);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-17.928000px;}
.ws2{word-spacing:-16.962000px;}
.ws7{word-spacing:-16.434000px;}
.ws6{word-spacing:-16.368000px;}
.ws0{word-spacing:-16.200000px;}
.ws1f{word-spacing:-16.038000px;}
.ws24{word-spacing:-15.906000px;}
.ws1e{word-spacing:-15.708000px;}
.ws11{word-spacing:-15.510000px;}
.ws3{word-spacing:-15.420000px;}
.ws4{word-spacing:-14.940000px;}
.ws20{word-spacing:-12.540000px;}
.wse{word-spacing:-5.544000px;}
.wsf{word-spacing:-4.158000px;}
.wsd{word-spacing:-4.092000px;}
.ws1d{word-spacing:-3.762000px;}
.ws15{word-spacing:-2.904000px;}
.ws5{word-spacing:-2.592000px;}
.ws1b{word-spacing:-2.178000px;}
.ws21{word-spacing:-1.584000px;}
.ws13{word-spacing:-1.452000px;}
.ws26{word-spacing:-1.320000px;}
.ws19{word-spacing:-0.858000px;}
.ws1c{word-spacing:-0.726000px;}
.ws17{word-spacing:-0.330000px;}
.ws8{word-spacing:-0.144000px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.198000px;}
.ws16{word-spacing:0.528000px;}
.ws23{word-spacing:0.660000px;}
.ws22{word-spacing:0.924000px;}
.ws14{word-spacing:1.452000px;}
.wsb{word-spacing:1.650000px;}
.ws1a{word-spacing:2.178000px;}
.ws9{word-spacing:3.300000px;}
.ws25{word-spacing:4.422000px;}
.ws18{word-spacing:4.950000px;}
.ws10{word-spacing:5.874000px;}
.wsa{word-spacing:7.062000px;}
._4{margin-left:-22.730400px;}
._d{margin-left:-16.514400px;}
._11{margin-left:-10.923600px;}
._8{margin-left:-9.423600px;}
._2{margin-left:-7.804800px;}
._5{margin-left:-6.737400px;}
._3{margin-left:-5.402400px;}
._1{margin-left:-3.862800px;}
._0{margin-left:-1.990800px;}
._6{width:1.071000px;}
._7{width:2.397000px;}
._c{width:4.083000px;}
._b{width:5.451000px;}
._a{width:6.522000px;}
._9{width:7.570800px;}
._e{width:9.098400px;}
._f{width:10.523400px;}
._12{width:14.737800px;}
._10{width:18.493200px;}
.fc5{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(48,88,159);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:114.000000px;}
.fs5{font-size:126.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:45.129900px;}
.y3d{bottom:45.165300px;}
.y9d{bottom:98.417100px;}
.y67{bottom:98.884800px;}
.y10b{bottom:102.442950px;}
.y129{bottom:102.881700px;}
.yd3{bottom:108.593400px;}
.y12{bottom:109.849650px;}
.yba{bottom:110.705250px;}
.y153{bottom:117.225000px;}
.y66{bottom:118.684800px;}
.y10a{bottom:118.942950px;}
.y9c{bottom:122.469000px;}
.y128{bottom:122.681700px;}
.yd2{bottom:128.393400px;}
.yb9{bottom:130.505250px;}
.y11{bottom:131.449650px;}
.y109{bottom:135.442950px;}
.y65{bottom:138.484800px;}
.y152{bottom:141.276900px;}
.y9b{bottom:142.269000px;}
.y127{bottom:142.481550px;}
.yb8{bottom:150.305250px;}
.y108{bottom:151.942950px;}
.yd1{bottom:152.445300px;}
.y64{bottom:158.284800px;}
.y151{bottom:161.076900px;}
.y9a{bottom:162.069000px;}
.yb7{bottom:170.105250px;}
.y39{bottom:171.080250px;}
.y126{bottom:175.037550px;}
.yd0{bottom:176.497350px;}
.y63{bottom:178.084800px;}
.y99{bottom:181.869000px;}
.y150{bottom:185.128950px;}
.y4{bottom:188.629200px;}
.y38{bottom:190.880250px;}
.yb6{bottom:194.157300px;}
.y101{bottom:196.297350px;}
.y62{bottom:197.884800px;}
.ycf{bottom:200.549400px;}
.y98{bottom:201.669000px;}
.y125{bottom:203.341500px;}
.y14f{bottom:204.928950px;}
.y3{bottom:210.229200px;}
.yb5{bottom:213.957150px;}
.y100{bottom:216.097350px;}
.y61{bottom:217.684800px;}
.y97{bottom:221.469000px;}
.y124{bottom:223.141500px;}
.y37{bottom:228.680100px;}
.y14e{bottom:228.980850px;}
.y2{bottom:231.829200px;}
.yb4{bottom:233.757150px;}
.y60{bottom:237.484800px;}
.y96{bottom:241.269000px;}
.y123{bottom:242.941500px;}
.yd9{bottom:244.175250px;}
.y36{bottom:246.680100px;}
.yff{bottom:248.653350px;}
.y14d{bottom:248.780850px;}
.y5f{bottom:257.284800px;}
.yd8{bottom:260.675250px;}
.y95{bottom:261.069000px;}
.y35{bottom:264.680100px;}
.y14c{bottom:272.832750px;}
.y5e{bottom:277.084800px;}
.yd7{bottom:277.175250px;}
.y94{bottom:280.869000px;}
.yb3{bottom:281.861100px;}
.y34{bottom:282.680100px;}
.y122{bottom:291.045450px;}
.y14b{bottom:292.632900px;}
.y5d{bottom:296.884800px;}
.y93{bottom:300.669000px;}
.y33{bottom:300.680100px;}
.yfe{bottom:301.009200px;}
.yb2{bottom:305.913150px;}
.y121{bottom:310.845450px;}
.y14a{bottom:316.684800px;}
.y32{bottom:318.680100px;}
.y92{bottom:320.469000px;}
.yce{bottom:320.809200px;}
.ye{bottom:326.852550px;}
.yb1{bottom:329.965050px;}
.y120{bottom:334.897350px;}
.y31{bottom:336.680100px;}
.y6a{bottom:336.844500px;}
.y91{bottom:340.269000px;}
.yfd{bottom:340.609200px;}
.y149{bottom:340.736700px;}
.ycd{bottom:344.861100px;}
.y69{bottom:353.344500px;}
.yb0{bottom:354.017100px;}
.y30{bottom:354.680100px;}
.y11f{bottom:358.949400px;}
.yfc{bottom:360.409200px;}
.y90{bottom:364.321050px;}
.y148{bottom:364.788750px;}
.ycc{bottom:368.913150px;}
.y68{bottom:369.844500px;}
.y2f{bottom:372.680100px;}
.yaf{bottom:378.069000px;}
.yfb{bottom:380.209200px;}
.y11e{bottom:383.001300px;}
.y8f{bottom:384.121050px;}
.y147{bottom:384.588750px;}
.y2e{bottom:390.680100px;}
.ycb{bottom:392.965050px;}
.y10{bottom:397.404600px;}
.yae{bottom:402.121050px;}
.y8e{bottom:403.921050px;}
.yfa{bottom:404.261100px;}
.y11d{bottom:407.053350px;}
.y146{bottom:408.640650px;}
.y2d{bottom:408.680250px;}
.y8d{bottom:423.721050px;}
.yf9{bottom:424.061100px;}
.yad{bottom:426.172950px;}
.y2c{bottom:426.680250px;}
.y11c{bottom:431.105250px;}
.y145{bottom:432.692700px;}
.ye2{bottom:442.423200px;}
.y8c{bottom:443.521050px;}
.yf8{bottom:443.861100px;}
.y2b{bottom:444.680250px;}
.yd{bottom:445.365150px;}
.yac{bottom:450.225000px;}
.y144{bottom:452.492700px;}
.y11b{bottom:455.157150px;}
.ye1{bottom:458.923200px;}
.y2a{bottom:462.680250px;}
.y8b{bottom:463.321050px;}
.yf7{bottom:467.913150px;}
.yab{bottom:474.276900px;}
.ye0{bottom:475.423200px;}
.y143{bottom:476.544600px;}
.yc{bottom:477.765150px;}
.y11a{bottom:479.209200px;}
.y29{bottom:480.680250px;}
.y8a{bottom:483.121050px;}
.yf6{bottom:487.713150px;}
.ydf{bottom:491.923200px;}
.yaa{bottom:498.328800px;}
.y28{bottom:498.680250px;}
.y142{bottom:500.596500px;}
.y89{bottom:502.921050px;}
.y119{bottom:503.261100px;}
.yf5{bottom:507.513150px;}
.yb{bottom:510.165150px;}
.y27{bottom:516.680250px;}
.y141{bottom:520.396650px;}
.y88{bottom:522.721050px;}
.y118{bottom:527.313150px;}
.ya9{bottom:530.884800px;}
.y26{bottom:534.680250px;}
.yca{bottom:537.276900px;}
.y87{bottom:542.521050px;}
.ya{bottom:542.565150px;}
.y140{bottom:544.448550px;}
.y117{bottom:551.365050px;}
.y25{bottom:552.680250px;}
.yf4{bottom:555.617100px;}
.yc9{bottom:561.328800px;}
.y5c{bottom:561.456450px;}
.y86{bottom:562.321050px;}
.y13f{bottom:564.248550px;}
.y24{bottom:570.680250px;}
.y116{bottom:575.417100px;}
.yf3{bottom:579.669000px;}
.y5b{bottom:581.256450px;}
.yc8{bottom:585.380850px;}
.y13e{bottom:588.300450px;}
.y23{bottom:588.680250px;}
.ybc{bottom:592.328700px;}
.y115{bottom:599.469000px;}
.y5a{bottom:601.056450px;}
.yf2{bottom:603.721050px;}
.y22{bottom:606.680250px;}
.ybb{bottom:608.828700px;}
.yc7{bottom:609.432750px;}
.y85{bottom:610.425000px;}
.y59{bottom:620.856450px;}
.yf{bottom:621.061200px;}
.y114{bottom:623.521050px;}
.yf1{bottom:627.772950px;}
.y84{bottom:634.476900px;}
.y13d{bottom:636.404550px;}
.y58{bottom:640.656450px;}
.y113{bottom:647.572950px;}
.yde{bottom:651.017700px;}
.yf0{bottom:651.825000px;}
.y9{bottom:657.442350px;}
.y83{bottom:658.528950px;}
.y57{bottom:660.456450px;}
.y21{bottom:666.080250px;}
.ydd{bottom:667.517700px;}
.y112{bottom:671.625000px;}
.yef{bottom:675.876900px;}
.y13c{bottom:680.256450px;}
.y82{bottom:682.580850px;}
.ydc{bottom:684.017700px;}
.y20{bottom:684.080250px;}
.y56{bottom:684.508350px;}
.y8{bottom:693.442350px;}
.yee{bottom:699.928950px;}
.y13b{bottom:700.056450px;}
.ydb{bottom:700.517700px;}
.y1f{bottom:702.080250px;}
.y55{bottom:704.308350px;}
.y81{bottom:706.632750px;}
.y12e{bottom:712.683150px;}
.yda{bottom:717.017700px;}
.y160{bottom:718.396650px;}
.y13a{bottom:719.856450px;}
.yed{bottom:723.980850px;}
.y54{bottom:724.108350px;}
.y12d{bottom:729.183150px;}
.y7{bottom:729.442350px;}
.y80{bottom:730.684800px;}
.y15f{bottom:738.196650px;}
.y139{bottom:739.656450px;}
.y53{bottom:743.908350px;}
.y1e{bottom:745.280250px;}
.y12c{bottom:745.683150px;}
.yec{bottom:748.032750px;}
.y7f{bottom:750.484800px;}
.yc6{bottom:753.744600px;}
.y138{bottom:759.456450px;}
.y12b{bottom:762.183150px;}
.y15e{bottom:762.248550px;}
.y6{bottom:765.442350px;}
.y52{bottom:767.960400px;}
.yeb{bottom:772.084650px;}
.y7e{bottom:774.536700px;}
.yc5{bottom:777.796650px;}
.y12a{bottom:778.683150px;}
.y137{bottom:779.256450px;}
.y15d{bottom:782.048550px;}
.y1d{bottom:783.236100px;}
.y51{bottom:787.760400px;}
.y7d{bottom:798.588750px;}
.y136{bottom:799.056450px;}
.y5{bottom:801.442350px;}
.yc4{bottom:801.848550px;}
.y50{bottom:807.560400px;}
.y1c{bottom:808.436100px;}
.y111{bottom:815.936700px;}
.ya8{bottom:816.064200px;}
.yea{bottom:820.188750px;}
.y7c{bottom:822.640650px;}
.y135{bottom:823.108500px;}
.yc3{bottom:825.900450px;}
.y4f{bottom:831.612300px;}
.y1b{bottom:833.636100px;}
.ya7{bottom:835.864350px;}
.ye9{bottom:839.988750px;}
.y134{bottom:842.908500px;}
.y15c{bottom:845.700600px;}
.y7b{bottom:846.692700px;}
.y4e{bottom:851.412300px;}
.ya6{bottom:855.664350px;}
.yd6{bottom:856.848450px;}
.y133{bottom:862.708350px;}
.y110{bottom:864.040650px;}
.y15b{bottom:869.752500px;}
.y7a{bottom:870.744600px;}
.y4d{bottom:871.212300px;}
.yd5{bottom:873.348450px;}
.ya5{bottom:875.464350px;}
.y132{bottom:882.508350px;}
.ye8{bottom:888.092700px;}
.y15a{bottom:889.552500px;}
.yd4{bottom:889.848450px;}
.y79{bottom:890.544600px;}
.y4c{bottom:891.012300px;}
.y1a{bottom:891.236100px;}
.ya4{bottom:895.264350px;}
.y131{bottom:906.560400px;}
.y19{bottom:909.236100px;}
.y4b{bottom:910.812450px;}
.ye7{bottom:912.144600px;}
.y159{bottom:913.604400px;}
.y78{bottom:914.596650px;}
.ya3{bottom:915.064200px;}
.yc2{bottom:922.108500px;}
.y130{bottom:926.360400px;}
.y18{bottom:927.236100px;}
.y4a{bottom:930.612300px;}
.y158{bottom:933.404550px;}
.ya2{bottom:934.864350px;}
.ye6{bottom:936.196500px;}
.y77{bottom:938.648550px;}
.yc1{bottom:941.908500px;}
.y49{bottom:950.412300px;}
.ya1{bottom:954.664350px;}
.y157{bottom:957.456450px;}
.ye5{bottom:960.248550px;}
.yc0{bottom:961.708350px;}
.y76{bottom:962.700600px;}
.y17{bottom:967.488150px;}
.y48{bottom:970.212300px;}
.ya0{bottom:974.464350px;}
.y156{bottom:977.256450px;}
.ybf{bottom:981.508350px;}
.y10f{bottom:984.300450px;}
.y47{bottom:990.012300px;}
.y9f{bottom:994.264350px;}
.y107{bottom:994.482300px;}
.y75{bottom:995.256450px;}
.ybe{bottom:1001.308350px;}
.y10e{bottom:1008.352500px;}
.y46{bottom:1009.812450px;}
.y106{bottom:1010.982300px;}
.y9e{bottom:1014.064200px;}
.ybd{bottom:1021.108500px;}
.y16{bottom:1021.147950px;}
.y155{bottom:1025.360400px;}
.y105{bottom:1027.482300px;}
.y12f{bottom:1029.612300px;}
.y10d{bottom:1032.404550px;}
.y45{bottom:1033.864350px;}
.y154{bottom:1045.160400px;}
.y74{bottom:1049.412300px;}
.y44{bottom:1053.664350px;}
.ye4{bottom:1056.456450px;}
.y15{bottom:1058.947950px;}
.y73{bottom:1069.212300px;}
.y43{bottom:1073.464350px;}
.ye3{bottom:1080.508350px;}
.y72{bottom:1089.012300px;}
.y42{bottom:1093.264350px;}
.y14{bottom:1096.747950px;}
.y10c{bottom:1104.560400px;}
.y71{bottom:1108.812450px;}
.y41{bottom:1113.064200px;}
.y104{bottom:1120.789350px;}
.y70{bottom:1128.612300px;}
.y40{bottom:1132.864350px;}
.y13{bottom:1134.547800px;}
.y103{bottom:1137.289350px;}
.y3f{bottom:1152.664350px;}
.y1{bottom:1153.541250px;}
.y102{bottom:1153.789350px;}
.y6d{bottom:1188.134700px;}
.y3c{bottom:1189.634700px;}
.y6f{bottom:1195.334700px;}
.y3e{bottom:1198.334700px;}
.y6c{bottom:1209.734550px;}
.y3b{bottom:1211.234550px;}
.y6b{bottom:1231.334700px;}
.y3a{bottom:1232.834700px;}
.he{height:44.820000px;}
.h10{height:45.615234px;}
.hc{height:49.302000px;}
.h12{height:51.890625px;}
.h14{height:52.078125px;}
.hf{height:53.261719px;}
.h3{height:54.738281px;}
.h13{height:56.812500px;}
.h9{height:57.761719px;}
.h11{height:58.587891px;}
.hd{height:63.084000px;}
.h2{height:67.388672px;}
.h6{height:70.728000px;}
.h8{height:73.920000px;}
.hb{height:80.136000px;}
.h7{height:84.996000px;}
.h5{height:95.040000px;}
.ha{height:99.162000px;}
.h4{height:103.884000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:95.669250px;}
.x17{left:97.795200px;}
.x20{left:102.533100px;}
.x9{left:104.133300px;}
.x34{left:106.299150px;}
.x1a{left:119.055150px;}
.x35{left:127.559100px;}
.x3{left:130.748100px;}
.x21{left:140.314950px;}
.x8{left:146.375400px;}
.x11{left:150.077400px;}
.x10{left:197.022300px;}
.x22{left:201.472800px;}
.xa{left:218.447250px;}
.x1d{left:237.682800px;}
.x2{left:242.905500px;}
.x12{left:260.273400px;}
.xb{left:273.838200px;}
.x1c{left:306.292350px;}
.x1b{left:312.455700px;}
.xc{left:339.051600px;}
.x13{left:355.506300px;}
.x14{left:379.076700px;}
.x6{left:400.122300px;}
.x7{left:406.494300px;}
.x1f{left:407.689350px;}
.x33{left:453.852000px;}
.x30{left:466.207950px;}
.x2d{left:468.592350px;}
.x29{left:470.415900px;}
.xd{left:471.582600px;}
.x23{left:472.828950px;}
.x28{left:476.077500px;}
.x2e{left:478.914600px;}
.x2c{left:481.332900px;}
.x26{left:485.771250px;}
.x25{left:487.521750px;}
.x2f{left:503.986650px;}
.x2a{left:517.049100px;}
.x24{left:518.938500px;}
.xf{left:524.397900px;}
.x32{left:530.679450px;}
.x31{left:537.685050px;}
.x16{left:550.930950px;}
.x4{left:554.144250px;}
.xe{left:563.303400px;}
.x2b{left:578.096400px;}
.x15{left:582.444750px;}
.x5{left:601.311900px;}
.x27{left:611.927250px;}
.x19{left:661.641750px;}
.x1e{left:708.064350px;}
.x18{left:775.078950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-3.461333pt;}
.ls11{letter-spacing:-1.936000pt;}
.ls18{letter-spacing:-0.821333pt;}
.lse{letter-spacing:-0.762667pt;}
.ls15{letter-spacing:-0.586667pt;}
.ls1a{letter-spacing:-0.410667pt;}
.ls16{letter-spacing:-0.352000pt;}
.ls7{letter-spacing:-0.176000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.001067pt;}
.lsc{letter-spacing:0.001600pt;}
.ls1b{letter-spacing:0.002133pt;}
.ls1d{letter-spacing:0.002667pt;}
.ls13{letter-spacing:0.003200pt;}
.ls1f{letter-spacing:0.010133pt;}
.ls4{letter-spacing:0.011200pt;}
.ls14{letter-spacing:0.014400pt;}
.ls1c{letter-spacing:0.015467pt;}
.ls1e{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.018667pt;}
.ls9{letter-spacing:0.021867pt;}
.ls12{letter-spacing:0.022400pt;}
.ls10{letter-spacing:0.293333pt;}
.lsf{letter-spacing:1.290667pt;}
.ls21{letter-spacing:1.796800pt;}
.ls2{letter-spacing:2.062933pt;}
.ls1{letter-spacing:2.240000pt;}
.ls20{letter-spacing:3.906133pt;}
.ls19{letter-spacing:3.912533pt;}
.ls3{letter-spacing:4.001600pt;}
.ls5{letter-spacing:4.052267pt;}
.ls6{letter-spacing:4.104533pt;}
.lsb{letter-spacing:4.367467pt;}
.ls8{letter-spacing:4.928000pt;}
.ws12{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.077333pt;}
.ws7{word-spacing:-14.608000pt;}
.ws6{word-spacing:-14.549333pt;}
.ws0{word-spacing:-14.400000pt;}
.ws1f{word-spacing:-14.256000pt;}
.ws24{word-spacing:-14.138667pt;}
.ws1e{word-spacing:-13.962667pt;}
.ws11{word-spacing:-13.786667pt;}
.ws3{word-spacing:-13.706667pt;}
.ws4{word-spacing:-13.280000pt;}
.ws20{word-spacing:-11.146667pt;}
.wse{word-spacing:-4.928000pt;}
.wsf{word-spacing:-3.696000pt;}
.wsd{word-spacing:-3.637333pt;}
.ws1d{word-spacing:-3.344000pt;}
.ws15{word-spacing:-2.581333pt;}
.ws5{word-spacing:-2.304000pt;}
.ws1b{word-spacing:-1.936000pt;}
.ws21{word-spacing:-1.408000pt;}
.ws13{word-spacing:-1.290667pt;}
.ws26{word-spacing:-1.173333pt;}
.ws19{word-spacing:-0.762667pt;}
.ws1c{word-spacing:-0.645333pt;}
.ws17{word-spacing:-0.293333pt;}
.ws8{word-spacing:-0.128000pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.176000pt;}
.ws16{word-spacing:0.469333pt;}
.ws23{word-spacing:0.586667pt;}
.ws22{word-spacing:0.821333pt;}
.ws14{word-spacing:1.290667pt;}
.wsb{word-spacing:1.466667pt;}
.ws1a{word-spacing:1.936000pt;}
.ws9{word-spacing:2.933333pt;}
.ws25{word-spacing:3.930667pt;}
.ws18{word-spacing:4.400000pt;}
.ws10{word-spacing:5.221333pt;}
.wsa{word-spacing:6.277333pt;}
._4{margin-left:-20.204800pt;}
._d{margin-left:-14.679467pt;}
._11{margin-left:-9.709867pt;}
._8{margin-left:-8.376533pt;}
._2{margin-left:-6.937600pt;}
._5{margin-left:-5.988800pt;}
._3{margin-left:-4.802133pt;}
._1{margin-left:-3.433600pt;}
._0{margin-left:-1.769600pt;}
._6{width:0.952000pt;}
._7{width:2.130667pt;}
._c{width:3.629333pt;}
._b{width:4.845333pt;}
._a{width:5.797333pt;}
._9{width:6.729600pt;}
._e{width:8.087467pt;}
._f{width:9.354133pt;}
._12{width:13.100267pt;}
._10{width:16.438400pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:101.333333pt;}
.fs5{font-size:112.000000pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:40.115467pt;}
.y3d{bottom:40.146933pt;}
.y9d{bottom:87.481867pt;}
.y67{bottom:87.897600pt;}
.y10b{bottom:91.060400pt;}
.y129{bottom:91.450400pt;}
.yd3{bottom:96.527467pt;}
.y12{bottom:97.644133pt;}
.yba{bottom:98.404667pt;}
.y153{bottom:104.200000pt;}
.y66{bottom:105.497600pt;}
.y10a{bottom:105.727067pt;}
.y9c{bottom:108.861333pt;}
.y128{bottom:109.050400pt;}
.yd2{bottom:114.127467pt;}
.yb9{bottom:116.004667pt;}
.y11{bottom:116.844133pt;}
.y109{bottom:120.393733pt;}
.y65{bottom:123.097600pt;}
.y152{bottom:125.579467pt;}
.y9b{bottom:126.461333pt;}
.y127{bottom:126.650267pt;}
.yb8{bottom:133.604667pt;}
.y108{bottom:135.060400pt;}
.yd1{bottom:135.506933pt;}
.y64{bottom:140.697600pt;}
.y151{bottom:143.179467pt;}
.y9a{bottom:144.061333pt;}
.yb7{bottom:151.204667pt;}
.y39{bottom:152.071333pt;}
.y126{bottom:155.588933pt;}
.yd0{bottom:156.886533pt;}
.y63{bottom:158.297600pt;}
.y99{bottom:161.661333pt;}
.y150{bottom:164.559067pt;}
.y4{bottom:167.670400pt;}
.y38{bottom:169.671333pt;}
.yb6{bottom:172.584267pt;}
.y101{bottom:174.486533pt;}
.y62{bottom:175.897600pt;}
.ycf{bottom:178.266133pt;}
.y98{bottom:179.261333pt;}
.y125{bottom:180.748000pt;}
.y14f{bottom:182.159067pt;}
.y3{bottom:186.870400pt;}
.yb5{bottom:190.184133pt;}
.y100{bottom:192.086533pt;}
.y61{bottom:193.497600pt;}
.y97{bottom:196.861333pt;}
.y124{bottom:198.348000pt;}
.y37{bottom:203.271200pt;}
.y14e{bottom:203.538533pt;}
.y2{bottom:206.070400pt;}
.yb4{bottom:207.784133pt;}
.y60{bottom:211.097600pt;}
.y96{bottom:214.461333pt;}
.y123{bottom:215.948000pt;}
.yd9{bottom:217.044667pt;}
.y36{bottom:219.271200pt;}
.yff{bottom:221.025200pt;}
.y14d{bottom:221.138533pt;}
.y5f{bottom:228.697600pt;}
.yd8{bottom:231.711333pt;}
.y95{bottom:232.061333pt;}
.y35{bottom:235.271200pt;}
.y14c{bottom:242.518000pt;}
.y5e{bottom:246.297600pt;}
.yd7{bottom:246.378000pt;}
.y94{bottom:249.661333pt;}
.yb3{bottom:250.543200pt;}
.y34{bottom:251.271200pt;}
.y122{bottom:258.707067pt;}
.y14b{bottom:260.118133pt;}
.y5d{bottom:263.897600pt;}
.y93{bottom:267.261333pt;}
.y33{bottom:267.271200pt;}
.yfe{bottom:267.563733pt;}
.yb2{bottom:271.922800pt;}
.y121{bottom:276.307067pt;}
.y14a{bottom:281.497600pt;}
.y32{bottom:283.271200pt;}
.y92{bottom:284.861333pt;}
.yce{bottom:285.163733pt;}
.ye{bottom:290.535600pt;}
.yb1{bottom:293.302267pt;}
.y120{bottom:297.686533pt;}
.y31{bottom:299.271200pt;}
.y6a{bottom:299.417333pt;}
.y91{bottom:302.461333pt;}
.yfd{bottom:302.763733pt;}
.y149{bottom:302.877067pt;}
.ycd{bottom:306.543200pt;}
.y69{bottom:314.084000pt;}
.yb0{bottom:314.681867pt;}
.y30{bottom:315.271200pt;}
.y11f{bottom:319.066133pt;}
.yfc{bottom:320.363733pt;}
.y90{bottom:323.840933pt;}
.y148{bottom:324.256667pt;}
.ycc{bottom:327.922800pt;}
.y68{bottom:328.750667pt;}
.y2f{bottom:331.271200pt;}
.yaf{bottom:336.061333pt;}
.yfb{bottom:337.963733pt;}
.y11e{bottom:340.445600pt;}
.y8f{bottom:341.440933pt;}
.y147{bottom:341.856667pt;}
.y2e{bottom:347.271200pt;}
.ycb{bottom:349.302267pt;}
.y10{bottom:353.248533pt;}
.yae{bottom:357.440933pt;}
.y8e{bottom:359.040933pt;}
.yfa{bottom:359.343200pt;}
.y11d{bottom:361.825200pt;}
.y146{bottom:363.236133pt;}
.y2d{bottom:363.271333pt;}
.y8d{bottom:376.640933pt;}
.yf9{bottom:376.943200pt;}
.yad{bottom:378.820400pt;}
.y2c{bottom:379.271333pt;}
.y11c{bottom:383.204667pt;}
.y145{bottom:384.615733pt;}
.ye2{bottom:393.265067pt;}
.y8c{bottom:394.240933pt;}
.yf8{bottom:394.543200pt;}
.y2b{bottom:395.271333pt;}
.yd{bottom:395.880133pt;}
.yac{bottom:400.200000pt;}
.y144{bottom:402.215733pt;}
.y11b{bottom:404.584133pt;}
.ye1{bottom:407.931733pt;}
.y2a{bottom:411.271333pt;}
.y8b{bottom:411.840933pt;}
.yf7{bottom:415.922800pt;}
.yab{bottom:421.579467pt;}
.ye0{bottom:422.598400pt;}
.y143{bottom:423.595200pt;}
.yc{bottom:424.680133pt;}
.y11a{bottom:425.963733pt;}
.y29{bottom:427.271333pt;}
.y8a{bottom:429.440933pt;}
.yf6{bottom:433.522800pt;}
.ydf{bottom:437.265067pt;}
.yaa{bottom:442.958933pt;}
.y28{bottom:443.271333pt;}
.y142{bottom:444.974667pt;}
.y89{bottom:447.040933pt;}
.y119{bottom:447.343200pt;}
.yf5{bottom:451.122800pt;}
.yb{bottom:453.480133pt;}
.y27{bottom:459.271333pt;}
.y141{bottom:462.574800pt;}
.y88{bottom:464.640933pt;}
.y118{bottom:468.722800pt;}
.ya9{bottom:471.897600pt;}
.y26{bottom:475.271333pt;}
.yca{bottom:477.579467pt;}
.y87{bottom:482.240933pt;}
.ya{bottom:482.280133pt;}
.y140{bottom:483.954267pt;}
.y117{bottom:490.102267pt;}
.y25{bottom:491.271333pt;}
.yf4{bottom:493.881867pt;}
.yc9{bottom:498.958933pt;}
.y5c{bottom:499.072400pt;}
.y86{bottom:499.840933pt;}
.y13f{bottom:501.554267pt;}
.y24{bottom:507.271333pt;}
.y116{bottom:511.481867pt;}
.yf3{bottom:515.261333pt;}
.y5b{bottom:516.672400pt;}
.yc8{bottom:520.338533pt;}
.y13e{bottom:522.933733pt;}
.y23{bottom:523.271333pt;}
.ybc{bottom:526.514400pt;}
.y115{bottom:532.861333pt;}
.y5a{bottom:534.272400pt;}
.yf2{bottom:536.640933pt;}
.y22{bottom:539.271333pt;}
.ybb{bottom:541.181067pt;}
.yc7{bottom:541.718000pt;}
.y85{bottom:542.600000pt;}
.y59{bottom:551.872400pt;}
.yf{bottom:552.054400pt;}
.y114{bottom:554.240933pt;}
.yf1{bottom:558.020400pt;}
.y84{bottom:563.979467pt;}
.y13d{bottom:565.692933pt;}
.y58{bottom:569.472400pt;}
.y113{bottom:575.620400pt;}
.yde{bottom:578.682400pt;}
.yf0{bottom:579.400000pt;}
.y9{bottom:584.393200pt;}
.y83{bottom:585.359067pt;}
.y57{bottom:587.072400pt;}
.y21{bottom:592.071333pt;}
.ydd{bottom:593.349067pt;}
.y112{bottom:597.000000pt;}
.yef{bottom:600.779467pt;}
.y13c{bottom:604.672400pt;}
.y82{bottom:606.738533pt;}
.ydc{bottom:608.015733pt;}
.y20{bottom:608.071333pt;}
.y56{bottom:608.451867pt;}
.y8{bottom:616.393200pt;}
.yee{bottom:622.159067pt;}
.y13b{bottom:622.272400pt;}
.ydb{bottom:622.682400pt;}
.y1f{bottom:624.071333pt;}
.y55{bottom:626.051867pt;}
.y81{bottom:628.118000pt;}
.y12e{bottom:633.496133pt;}
.yda{bottom:637.349067pt;}
.y160{bottom:638.574800pt;}
.y13a{bottom:639.872400pt;}
.yed{bottom:643.538533pt;}
.y54{bottom:643.651867pt;}
.y12d{bottom:648.162800pt;}
.y7{bottom:648.393200pt;}
.y80{bottom:649.497600pt;}
.y15f{bottom:656.174800pt;}
.y139{bottom:657.472400pt;}
.y53{bottom:661.251867pt;}
.y1e{bottom:662.471333pt;}
.y12c{bottom:662.829467pt;}
.yec{bottom:664.918000pt;}
.y7f{bottom:667.097600pt;}
.yc6{bottom:669.995200pt;}
.y138{bottom:675.072400pt;}
.y12b{bottom:677.496133pt;}
.y15e{bottom:677.554267pt;}
.y6{bottom:680.393200pt;}
.y52{bottom:682.631467pt;}
.yeb{bottom:686.297467pt;}
.y7e{bottom:688.477067pt;}
.yc5{bottom:691.374800pt;}
.y12a{bottom:692.162800pt;}
.y137{bottom:692.672400pt;}
.y15d{bottom:695.154267pt;}
.y1d{bottom:696.209867pt;}
.y51{bottom:700.231467pt;}
.y7d{bottom:709.856667pt;}
.y136{bottom:710.272400pt;}
.y5{bottom:712.393200pt;}
.yc4{bottom:712.754267pt;}
.y50{bottom:717.831467pt;}
.y1c{bottom:718.609867pt;}
.y111{bottom:725.277067pt;}
.ya8{bottom:725.390400pt;}
.yea{bottom:729.056667pt;}
.y7c{bottom:731.236133pt;}
.y135{bottom:731.652000pt;}
.yc3{bottom:734.133733pt;}
.y4f{bottom:739.210933pt;}
.y1b{bottom:741.009867pt;}
.ya7{bottom:742.990533pt;}
.ye9{bottom:746.656667pt;}
.y134{bottom:749.252000pt;}
.y15c{bottom:751.733867pt;}
.y7b{bottom:752.615733pt;}
.y4e{bottom:756.810933pt;}
.ya6{bottom:760.590533pt;}
.yd6{bottom:761.643067pt;}
.y133{bottom:766.851867pt;}
.y110{bottom:768.036133pt;}
.y15b{bottom:773.113333pt;}
.y7a{bottom:773.995200pt;}
.y4d{bottom:774.410933pt;}
.yd5{bottom:776.309733pt;}
.ya5{bottom:778.190533pt;}
.y132{bottom:784.451867pt;}
.ye8{bottom:789.415733pt;}
.y15a{bottom:790.713333pt;}
.yd4{bottom:790.976400pt;}
.y79{bottom:791.595200pt;}
.y4c{bottom:792.010933pt;}
.y1a{bottom:792.209867pt;}
.ya4{bottom:795.790533pt;}
.y131{bottom:805.831467pt;}
.y19{bottom:808.209867pt;}
.y4b{bottom:809.611067pt;}
.ye7{bottom:810.795200pt;}
.y159{bottom:812.092800pt;}
.y78{bottom:812.974800pt;}
.ya3{bottom:813.390400pt;}
.yc2{bottom:819.652000pt;}
.y130{bottom:823.431467pt;}
.y18{bottom:824.209867pt;}
.y4a{bottom:827.210933pt;}
.y158{bottom:829.692933pt;}
.ya2{bottom:830.990533pt;}
.ye6{bottom:832.174667pt;}
.y77{bottom:834.354267pt;}
.yc1{bottom:837.252000pt;}
.y49{bottom:844.810933pt;}
.ya1{bottom:848.590533pt;}
.y157{bottom:851.072400pt;}
.ye5{bottom:853.554267pt;}
.yc0{bottom:854.851867pt;}
.y76{bottom:855.733867pt;}
.y17{bottom:859.989467pt;}
.y48{bottom:862.410933pt;}
.ya0{bottom:866.190533pt;}
.y156{bottom:868.672400pt;}
.ybf{bottom:872.451867pt;}
.y10f{bottom:874.933733pt;}
.y47{bottom:880.010933pt;}
.y9f{bottom:883.790533pt;}
.y107{bottom:883.984267pt;}
.y75{bottom:884.672400pt;}
.ybe{bottom:890.051867pt;}
.y10e{bottom:896.313333pt;}
.y46{bottom:897.611067pt;}
.y106{bottom:898.650933pt;}
.y9e{bottom:901.390400pt;}
.ybd{bottom:907.652000pt;}
.y16{bottom:907.687067pt;}
.y155{bottom:911.431467pt;}
.y105{bottom:913.317600pt;}
.y12f{bottom:915.210933pt;}
.y10d{bottom:917.692933pt;}
.y45{bottom:918.990533pt;}
.y154{bottom:929.031467pt;}
.y74{bottom:932.810933pt;}
.y44{bottom:936.590533pt;}
.ye4{bottom:939.072400pt;}
.y15{bottom:941.287067pt;}
.y73{bottom:950.410933pt;}
.y43{bottom:954.190533pt;}
.ye3{bottom:960.451867pt;}
.y72{bottom:968.010933pt;}
.y42{bottom:971.790533pt;}
.y14{bottom:974.887067pt;}
.y10c{bottom:981.831467pt;}
.y71{bottom:985.611067pt;}
.y41{bottom:989.390400pt;}
.y104{bottom:996.257200pt;}
.y70{bottom:1003.210933pt;}
.y40{bottom:1006.990533pt;}
.y13{bottom:1008.486933pt;}
.y103{bottom:1010.923867pt;}
.y3f{bottom:1024.590533pt;}
.y1{bottom:1025.370000pt;}
.y102{bottom:1025.590533pt;}
.y6d{bottom:1056.119733pt;}
.y3c{bottom:1057.453067pt;}
.y6f{bottom:1062.519733pt;}
.y3e{bottom:1065.186400pt;}
.y6c{bottom:1075.319600pt;}
.y3b{bottom:1076.652933pt;}
.y6b{bottom:1094.519733pt;}
.y3a{bottom:1095.853067pt;}
.he{height:39.840000pt;}
.h10{height:40.546875pt;}
.hc{height:43.824000pt;}
.h12{height:46.125000pt;}
.h14{height:46.291667pt;}
.hf{height:47.343750pt;}
.h3{height:48.656250pt;}
.h13{height:50.500000pt;}
.h9{height:51.343750pt;}
.h11{height:52.078125pt;}
.hd{height:56.074667pt;}
.h2{height:59.901042pt;}
.h6{height:62.869333pt;}
.h8{height:65.706667pt;}
.hb{height:71.232000pt;}
.h7{height:75.552000pt;}
.h5{height:84.480000pt;}
.ha{height:88.144000pt;}
.h4{height:92.341333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:85.039333pt;}
.x17{left:86.929067pt;}
.x20{left:91.140533pt;}
.x9{left:92.562933pt;}
.x34{left:94.488133pt;}
.x1a{left:105.826800pt;}
.x35{left:113.385867pt;}
.x3{left:116.220533pt;}
.x21{left:124.724400pt;}
.x8{left:130.111467pt;}
.x11{left:133.402133pt;}
.x10{left:175.130933pt;}
.x22{left:179.086933pt;}
.xa{left:194.175333pt;}
.x1d{left:211.273600pt;}
.x2{left:215.916000pt;}
.x12{left:231.354133pt;}
.xb{left:243.411733pt;}
.x1c{left:272.259867pt;}
.x1b{left:277.738400pt;}
.xc{left:301.379200pt;}
.x13{left:316.005600pt;}
.x14{left:336.957067pt;}
.x6{left:355.664267pt;}
.x7{left:361.328267pt;}
.x1f{left:362.390533pt;}
.x33{left:403.424000pt;}
.x30{left:414.407067pt;}
.x2d{left:416.526533pt;}
.x29{left:418.147467pt;}
.xd{left:419.184533pt;}
.x23{left:420.292400pt;}
.x28{left:423.180000pt;}
.x2e{left:425.701867pt;}
.x2c{left:427.851467pt;}
.x26{left:431.796667pt;}
.x25{left:433.352667pt;}
.x2f{left:447.988133pt;}
.x2a{left:459.599200pt;}
.x24{left:461.278667pt;}
.xf{left:466.131467pt;}
.x32{left:471.715067pt;}
.x31{left:477.942267pt;}
.x16{left:489.716400pt;}
.x4{left:492.572667pt;}
.xe{left:500.714133pt;}
.x2b{left:513.863467pt;}
.x15{left:517.728667pt;}
.x5{left:534.499467pt;}
.x27{left:543.935333pt;}
.x19{left:588.126000pt;}
.x1e{left:629.390533pt;}
.x18{left:688.959067pt;}
}




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