
    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_caa2bf2473a3386d0d7928c6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f1b702ae61be951ee339205e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9a82be41a2bf86b6c5aa0bfa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d29aa210db8ed0d95378f2eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_776fbd6bfe2b02c5bc67fcef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_ec7fc334be6b5de25d998b33.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.575000;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);}
.v1{vertical-align:-88.200000px;}
.v5{vertical-align:-81.000000px;}
.v3{vertical-align:-74.880000px;}
.v6{vertical-align:-64.440000px;}
.v2{vertical-align:-60.840000px;}
.v4{vertical-align:-55.437912px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.268272px;}
.ls3c{letter-spacing:-0.172800px;}
.ls2d{letter-spacing:-0.124200px;}
.ls39{letter-spacing:-0.119232px;}
.ls26{letter-spacing:-0.104328px;}
.ls42{letter-spacing:-0.086400px;}
.ls29{letter-spacing:-0.081000px;}
.ls41{letter-spacing:-0.079488px;}
.ls3a{letter-spacing:-0.069552px;}
.ls2e{letter-spacing:-0.064584px;}
.ls3e{letter-spacing:-0.050400px;}
.ls27{letter-spacing:-0.049680px;}
.ls2c{letter-spacing:-0.044712px;}
.ls3d{letter-spacing:-0.043200px;}
.ls43{letter-spacing:-0.036000px;}
.ls31{letter-spacing:-0.028800px;}
.ls36{letter-spacing:-0.021600px;}
.ls35{letter-spacing:-0.014400px;}
.ls34{letter-spacing:-0.007200px;}
.ls23{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.007200px;}
.ls17{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.019872px;}
.ls19{letter-spacing:0.021600px;}
.ls6{letter-spacing:0.023904px;}
.ls37{letter-spacing:0.028800px;}
.lsd{letter-spacing:0.029808px;}
.ls7{letter-spacing:0.037800px;}
.ls3f{letter-spacing:0.039744px;}
.ls28{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.054648px;}
.ls25{letter-spacing:0.059616px;}
.ls8{letter-spacing:0.064584px;}
.ls2{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.065736px;}
.lsb{letter-spacing:0.069552px;}
.lse{letter-spacing:0.074520px;}
.ls11{letter-spacing:0.084456px;}
.ls3b{letter-spacing:0.089424px;}
.ls40{letter-spacing:0.094392px;}
.ls1c{letter-spacing:0.108000px;}
.ls32{letter-spacing:0.114912px;}
.ls1{letter-spacing:0.129600px;}
.ls1e{letter-spacing:0.130500px;}
.ls1d{letter-spacing:0.132768px;}
.ls33{letter-spacing:0.134064px;}
.ls4{letter-spacing:0.137448px;}
.ls38{letter-spacing:0.144072px;}
.ls1f{letter-spacing:0.157500px;}
.ls16{letter-spacing:0.161352px;}
.ls13{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.166500px;}
.ls2a{letter-spacing:0.171000px;}
.ls14{letter-spacing:0.175500px;}
.ls3{letter-spacing:0.178848px;}
.ls20{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.184500px;}
.lsc{letter-spacing:0.198720px;}
.ls2f{letter-spacing:0.238464px;}
.ls2b{letter-spacing:0.319500px;}
.ls10{letter-spacing:0.360000px;}
.ls22{letter-spacing:29.880000px;}
.ls30{letter-spacing:45.000000px;}
.ls15{letter-spacing:58.190184px;}
.lsf{letter-spacing:100.800000px;}
.ls0{letter-spacing:146.880000px;}
.ls12{letter-spacing:148.320000px;}
.ls21{letter-spacing:163.080000px;}
.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;}
}
.ws8{word-spacing:-58.680000px;}
.ws9{word-spacing:-58.320000px;}
.ws1{word-spacing:-20.314800px;}
.ws0{word-spacing:-20.250000px;}
.wse{word-spacing:-17.992800px;}
.ws2{word-spacing:-16.637184px;}
.ws4{word-spacing:-13.865688px;}
.ws45{word-spacing:-13.850784px;}
.ws5{word-spacing:-13.830912px;}
.wsb{word-spacing:-13.766328px;}
.wsc{word-spacing:-13.746456px;}
.ws3{word-spacing:-13.542768px;}
.ws7{word-spacing:-12.681000px;}
.wsd{word-spacing:-12.676500px;}
.ws6{word-spacing:-12.429000px;}
.wsa{word-spacing:-0.364500px;}
.ws17{word-spacing:-0.322920px;}
.ws1c{word-spacing:-0.261000px;}
.ws10{word-spacing:-0.218700px;}
.ws1e{word-spacing:-0.208656px;}
.ws24{word-spacing:-0.203184px;}
.ws43{word-spacing:-0.199800px;}
.ws1a{word-spacing:-0.198720px;}
.ws13{word-spacing:-0.193752px;}
.ws22{word-spacing:-0.188784px;}
.ws15{word-spacing:-0.183816px;}
.ws16{word-spacing:-0.178848px;}
.ws23{word-spacing:-0.144072px;}
.ws27{word-spacing:-0.095760px;}
.ws3c{word-spacing:-0.085500px;}
.ws42{word-spacing:-0.081000px;}
.ws21{word-spacing:-0.076500px;}
.ws41{word-spacing:-0.070200px;}
.ws3a{word-spacing:-0.067500px;}
.ws4c{word-spacing:-0.064800px;}
.ws20{word-spacing:-0.063000px;}
.ws40{word-spacing:-0.058500px;}
.ws3e{word-spacing:-0.054648px;}
.ws46{word-spacing:-0.044712px;}
.ws11{word-spacing:-0.041832px;}
.ws3f{word-spacing:-0.031500px;}
.ws38{word-spacing:-0.028800px;}
.ws30{word-spacing:-0.021600px;}
.ws2a{word-spacing:-0.014400px;}
.ws29{word-spacing:-0.007200px;}
.wsf{word-spacing:0.000000px;}
.ws28{word-spacing:0.007200px;}
.ws3d{word-spacing:0.010800px;}
.ws2d{word-spacing:0.014400px;}
.ws31{word-spacing:0.021600px;}
.ws2b{word-spacing:0.028800px;}
.ws4a{word-spacing:0.036000px;}
.ws26{word-spacing:0.038304px;}
.ws35{word-spacing:0.043200px;}
.ws1d{word-spacing:0.045000px;}
.ws48{word-spacing:0.057600px;}
.ws37{word-spacing:0.072000px;}
.ws36{word-spacing:0.079200px;}
.ws12{word-spacing:0.081000px;}
.ws2c{word-spacing:0.086400px;}
.ws34{word-spacing:0.093600px;}
.ws39{word-spacing:0.094392px;}
.ws2e{word-spacing:0.100800px;}
.ws2f{word-spacing:0.108000px;}
.ws32{word-spacing:0.115200px;}
.ws1f{word-spacing:0.118800px;}
.ws49{word-spacing:0.122400px;}
.ws47{word-spacing:0.144072px;}
.ws4b{word-spacing:0.165600px;}
.ws14{word-spacing:0.173880px;}
.ws33{word-spacing:0.201600px;}
.ws19{word-spacing:0.208656px;}
.ws44{word-spacing:0.230400px;}
.ws1b{word-spacing:0.288144px;}
.ws18{word-spacing:0.342792px;}
.ws3b{word-spacing:0.357696px;}
.ws25{word-spacing:0.388800px;}
._8{margin-left:-2920.320000px;}
._4{margin-left:-58.680000px;}
._5{margin-left:-57.600000px;}
._6{margin-left:-45.000000px;}
._1{margin-left:-1.219500px;}
._0{width:1.066152px;}
._2{width:18.901008px;}
._7{width:81.076752px;}
._3{width:90.657000px;}
.fcf{color:transparent;}
.fce{color:rgb(0,0,128);}
.fcd{color:rgb(0,119,0);}
.fc0{color:rgb(0,0,0);}
.fc6{color:rgb(51,51,51);}
.fc2{color:rgb(51,101,204);}
.fc1{color:rgb(107,104,103);}
.fc9{color:rgb(112,111,100);}
.fc5{color:rgb(128,0,128);}
.fc3{color:rgb(154,0,0);}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(108,104,101);}
.fcb{color:rgb(53,0,106);}
.fc8{color:rgb(241,239,226);}
.fca{color:rgb(172,168,154);}
.fcc{color:rgb(255,0,0);}
.fs5{font-size:45.000000px;}
.fs2{font-size:49.680000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:58.320000px;}
.fs6{font-size:58.680000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:81.000000px;}
.fs8{font-size:95.760000px;}
.yde{bottom:-427.379550px;}
.y88{bottom:-22.379550px;}
.y0{bottom:0.000000px;}
.y1b{bottom:2.610450px;}
.y21{bottom:2.700450px;}
.y3b{bottom:3.870450px;}
.y42{bottom:4.050450px;}
.ya0{bottom:4.050600px;}
.y6a{bottom:54.750000px;}
.y6b{bottom:58.620450px;}
.ycd{bottom:60.420450px;}
.y38{bottom:62.130450px;}
.y69{bottom:78.600450px;}
.ycc{bottom:80.400450px;}
.y37{bottom:80.851122px;}
.y36{bottom:94.710600px;}
.y68{bottom:98.490450px;}
.ycb{bottom:100.290450px;}
.y35{bottom:109.920450px;}
.y67{bottom:118.470450px;}
.yca{bottom:120.270450px;}
.y34{bottom:128.550306px;}
.y66{bottom:138.450450px;}
.yc9{bottom:140.160450px;}
.yc7{bottom:156.090000px;}
.y33{bottom:156.359970px;}
.y65{bottom:158.340450px;}
.yc8{bottom:160.140450px;}
.y32{bottom:170.040450px;}
.y64{bottom:178.320450px;}
.yc6{bottom:180.030450px;}
.y31{bottom:182.730450px;}
.y30{bottom:196.860450px;}
.y63{bottom:198.210450px;}
.yc5{bottom:200.010450px;}
.y2f{bottom:215.760450px;}
.y62{bottom:218.190450px;}
.yc4{bottom:219.900450px;}
.y2e{bottom:236.370450px;}
.y61{bottom:238.080450px;}
.yc3{bottom:239.880450px;}
.y60{bottom:258.060450px;}
.yc2{bottom:259.860450px;}
.y2b{bottom:261.390450px;}
.y2d{bottom:262.650450px;}
.y5f{bottom:277.950450px;}
.yc1{bottom:279.750450px;}
.y2c{bottom:280.830450px;}
.y2a{bottom:282.000450px;}
.y5e{bottom:297.930450px;}
.yc0{bottom:299.730450px;}
.y5d{bottom:317.910450px;}
.ybf{bottom:319.620450px;}
.y29{bottom:324.300450px;}
.y5c{bottom:337.800450px;}
.y28{bottom:339.420450px;}
.ybe{bottom:339.600450px;}
.ybc{bottom:355.440000px;}
.y5b{bottom:357.780450px;}
.y27{bottom:359.400450px;}
.ybd{bottom:359.490450px;}
.y86{bottom:373.980450px;}
.y5a{bottom:377.670450px;}
.ybb{bottom:379.470450px;}
.y26{bottom:393.060450px;}
.y59{bottom:397.650450px;}
.yba{bottom:399.360450px;}
.y85{bottom:408.990450px;}
.y25{bottom:411.780972px;}
.y58{bottom:417.540450px;}
.yb9{bottom:419.340450px;}
.y24{bottom:425.640450px;}
.y84{bottom:431.220450px;}
.y57{bottom:437.520450px;}
.yb8{bottom:439.320450px;}
.y23{bottom:440.850450px;}
.y20{bottom:456.870000px;}
.y56{bottom:457.410450px;}
.yb7{bottom:459.210450px;}
.y22{bottom:459.570450px;}
.yce{bottom:463.980450px;}
.y83{bottom:471.270600px;}
.y1f{bottom:473.430600px;}
.y55{bottom:477.390450px;}
.yb6{bottom:479.190450px;}
.y1e{bottom:488.640450px;}
.ydc{bottom:490.800000px;}
.ydb{bottom:494.670450px;}
.y54{bottom:497.370450px;}
.yb5{bottom:499.080450px;}
.y1d{bottom:507.270450px;}
.y52{bottom:513.210000px;}
.yda{bottom:514.650450px;}
.y53{bottom:517.260450px;}
.yb4{bottom:519.060450px;}
.y1c{bottom:522.480450px;}
.yd9{bottom:534.540450px;}
.y51{bottom:537.240450px;}
.y1a{bottom:538.500000px;}
.yb3{bottom:538.950450px;}
.y19{bottom:541.110450px;}
.yd8{bottom:554.520450px;}
.yb1{bottom:554.880000px;}
.y18{bottom:555.060450px;}
.y50{bottom:557.130450px;}
.yb2{bottom:558.930450px;}
.y17{bottom:568.920306px;}
.yd7{bottom:574.410450px;}
.y4f{bottom:577.110450px;}
.yb0{bottom:578.820450px;}
.y16{bottom:582.870450px;}
.y82{bottom:589.080450px;}
.yd6{bottom:594.390450px;}
.y4e{bottom:597.000450px;}
.y15{bottom:597.990450px;}
.y8f{bottom:598.800450px;}
.y81{bottom:613.470450px;}
.yd5{bottom:614.280450px;}
.y14{bottom:616.710450px;}
.y4d{bottom:616.980450px;}
.yaf{bottom:618.780450px;}
.y13{bottom:630.660450px;}
.yd4{bottom:634.260450px;}
.y80{bottom:636.420450px;}
.y4c{bottom:636.870450px;}
.yae{bottom:638.670450px;}
.y12{bottom:645.780450px;}
.y7f{bottom:649.110450px;}
.yd3{bottom:654.150450px;}
.y4b{bottom:656.850450px;}
.yad{bottom:658.650450px;}
.y7e{bottom:661.710450px;}
.y11{bottom:664.500972px;}
.yd2{bottom:674.130450px;}
.y7d{bottom:674.580450px;}
.y4a{bottom:676.830450px;}
.y10{bottom:678.360450px;}
.yac{bottom:678.540450px;}
.y7c{bottom:693.210450px;}
.yf{bottom:693.570450px;}
.yd1{bottom:694.110450px;}
.y49{bottom:696.720450px;}
.yab{bottom:698.520450px;}
.y47{bottom:712.650000px;}
.y7b{bottom:713.820450px;}
.yd0{bottom:714.000450px;}
.y48{bottom:716.700450px;}
.yaa{bottom:718.410450px;}
.ycf{bottom:733.980450px;}
.y46{bottom:736.590450px;}
.y7a{bottom:736.770450px;}
.ya9{bottom:738.390450px;}
.y79{bottom:749.460450px;}
.ya7{bottom:754.320000px;}
.y45{bottom:756.570450px;}
.ya8{bottom:758.370450px;}
.y78{bottom:762.330306px;}
.ya5{bottom:774.210000px;}
.y77{bottom:776.280450px;}
.y44{bottom:776.460450px;}
.ya6{bottom:778.260450px;}
.y41{bottom:792.390000px;}
.y76{bottom:794.820450px;}
.y43{bottom:796.440450px;}
.ya4{bottom:798.240600px;}
.ydd{bottom:814.980450px;}
.y75{bottom:815.520450px;}
.y40{bottom:816.330450px;}
.ya3{bottom:818.130600px;}
.y3f{bottom:836.310450px;}
.ya2{bottom:838.110600px;}
.y74{bottom:838.380450px;}
.y73{bottom:851.070450px;}
.y9f{bottom:853.950000px;}
.ya1{bottom:858.000600px;}
.y72{bottom:863.760450px;}
.y71{bottom:876.360450px;}
.y9e{bottom:877.980450px;}
.y3e{bottom:878.790468px;}
.y70{bottom:889.230450px;}
.y9d{bottom:897.870450px;}
.y3d{bottom:905.610450px;}
.y6f{bottom:907.410450px;}
.ye{bottom:911.460450px;}
.y9c{bottom:917.850450px;}
.y6e{bottom:920.100450px;}
.yd{bottom:930.180450px;}
.y6d{bottom:932.700450px;}
.y9b{bottom:937.830450px;}
.y3c{bottom:942.690450px;}
.yc{bottom:945.300450px;}
.y6c{bottom:945.570450px;}
.y9a{bottom:957.720450px;}
.y3a{bottom:958.800000px;}
.y39{bottom:962.670450px;}
.yb{bottom:964.200450px;}
.y99{bottom:977.700450px;}
.ya{bottom:984.810450px;}
.y98{bottom:997.590450px;}
.y9{bottom:1004.069910px;}
.y97{bottom:1017.570450px;}
.y1{bottom:1018.200450px;}
.y8{bottom:1020.810180px;}
.y96{bottom:1037.460450px;}
.y7{bottom:1037.550450px;}
.y94{bottom:1053.390000px;}
.y95{bottom:1057.440450px;}
.y2{bottom:1060.770450px;}
.y8e{bottom:1061.130450px;}
.y93{bottom:1077.330450px;}
.y6{bottom:1078.410450px;}
.y8d{bottom:1079.849730px;}
.y8c{bottom:1093.710450px;}
.y92{bottom:1097.310450px;}
.y3{bottom:1098.030450px;}
.y5{bottom:1099.200162px;}
.y8b{bottom:1108.920450px;}
.y91{bottom:1117.290450px;}
.y8a{bottom:1127.550306px;}
.y4{bottom:1136.730450px;}
.y90{bottom:1137.180450px;}
.y89{bottom:1141.500450px;}
.y87{bottom:1219.980450px;}
.h17{height:-411.269490px;}
.h14{height:-6.269490px;}
.h9{height:14.130000px;}
.ha{height:14.220000px;}
.h10{height:19.890000px;}
.h13{height:20.070000px;}
.h12{height:20.250000px;}
.hd{height:46.933594px;}
.hc{height:48.015000px;}
.h3{height:50.068125px;}
.h8{height:51.814687px;}
.hf{height:51.815264px;}
.he{height:51.815287px;}
.h15{height:51.817567px;}
.hb{height:55.035000px;}
.h7{height:56.320312px;}
.h6{height:62.327813px;}
.h5{height:63.763920px;}
.h1{height:70.664062px;}
.h2{height:75.093750px;}
.h4{height:81.632812px;}
.h11{height:99.874688px;}
.h16{height:804.000000px;}
.h0{height:1209.000000px;}
.w1{width:-68.580000px;}
.w2{width:-39.510000px;}
.w3{width:46.980000px;}
.w8{width:226.170000px;}
.we{width:231.930000px;}
.wa{width:315.900000px;}
.w4{width:326.430000px;}
.wb{width:334.980000px;}
.w7{width:335.970000px;}
.w6{width:340.380000px;}
.w9{width:340.920000px;}
.wd{width:364.950000px;}
.wc{width:365.850000px;}
.w5{width:376.920000px;}
.w0{width:393.000000px;}
.xb{left:-144.000000px;}
.x10{left:-140.580000px;}
.xa{left:-139.500000px;}
.x13{left:-125.370000px;}
.x11{left:-119.610000px;}
.xc{left:-106.650000px;}
.x14{left:-102.510000px;}
.xd{left:-99.090000px;}
.xe{left:-72.720000px;}
.xf{left:-68.580000px;}
.x1{left:-39.960000px;}
.x1e{left:-37.080000px;}
.x12{left:-35.730000px;}
.x1f{left:-27.990000px;}
.x2{left:-2.250000px;}
.x0{left:0.000000px;}
.x15{left:11.250000px;}
.x19{left:20.250000px;}
.x22{left:24.210000px;}
.x17{left:28.980000px;}
.x20{left:106.470000px;}
.x21{left:115.470000px;}
.x3{left:175.680000px;}
.x23{left:178.380000px;}
.x24{left:194.670000px;}
.x16{left:287.640000px;}
.x18{left:325.620000px;}
.x1b{left:401.670000px;}
.x4{left:403.830000px;}
.x1a{left:408.420000px;}
.x7{left:409.680000px;}
.x8{left:432.450054px;}
.x6{left:450.990000px;}
.x9{left:459.089568px;}
.x5{left:491.579586px;}
.x1d{left:497.610000px;}
.x1c{left:500.130000px;}
@media print{
.v1{vertical-align:-78.400000pt;}
.v5{vertical-align:-72.000000pt;}
.v3{vertical-align:-66.560000pt;}
.v6{vertical-align:-57.280000pt;}
.v2{vertical-align:-54.080000pt;}
.v4{vertical-align:-49.278144pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.238464pt;}
.ls3c{letter-spacing:-0.153600pt;}
.ls2d{letter-spacing:-0.110400pt;}
.ls39{letter-spacing:-0.105984pt;}
.ls26{letter-spacing:-0.092736pt;}
.ls42{letter-spacing:-0.076800pt;}
.ls29{letter-spacing:-0.072000pt;}
.ls41{letter-spacing:-0.070656pt;}
.ls3a{letter-spacing:-0.061824pt;}
.ls2e{letter-spacing:-0.057408pt;}
.ls3e{letter-spacing:-0.044800pt;}
.ls27{letter-spacing:-0.044160pt;}
.ls2c{letter-spacing:-0.039744pt;}
.ls3d{letter-spacing:-0.038400pt;}
.ls43{letter-spacing:-0.032000pt;}
.ls31{letter-spacing:-0.025600pt;}
.ls36{letter-spacing:-0.019200pt;}
.ls35{letter-spacing:-0.012800pt;}
.ls34{letter-spacing:-0.006400pt;}
.ls23{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.006400pt;}
.ls17{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.017664pt;}
.ls19{letter-spacing:0.019200pt;}
.ls6{letter-spacing:0.021248pt;}
.ls37{letter-spacing:0.025600pt;}
.lsd{letter-spacing:0.026496pt;}
.ls7{letter-spacing:0.033600pt;}
.ls3f{letter-spacing:0.035328pt;}
.ls28{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.048576pt;}
.ls25{letter-spacing:0.052992pt;}
.ls8{letter-spacing:0.057408pt;}
.ls2{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.058432pt;}
.lsb{letter-spacing:0.061824pt;}
.lse{letter-spacing:0.066240pt;}
.ls11{letter-spacing:0.075072pt;}
.ls3b{letter-spacing:0.079488pt;}
.ls40{letter-spacing:0.083904pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls32{letter-spacing:0.102144pt;}
.ls1{letter-spacing:0.115200pt;}
.ls1e{letter-spacing:0.116000pt;}
.ls1d{letter-spacing:0.118016pt;}
.ls33{letter-spacing:0.119168pt;}
.ls4{letter-spacing:0.122176pt;}
.ls38{letter-spacing:0.128064pt;}
.ls1f{letter-spacing:0.140000pt;}
.ls16{letter-spacing:0.143424pt;}
.ls13{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.148000pt;}
.ls2a{letter-spacing:0.152000pt;}
.ls14{letter-spacing:0.156000pt;}
.ls3{letter-spacing:0.158976pt;}
.ls20{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.164000pt;}
.lsc{letter-spacing:0.176640pt;}
.ls2f{letter-spacing:0.211968pt;}
.ls2b{letter-spacing:0.284000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls22{letter-spacing:26.560000pt;}
.ls30{letter-spacing:40.000000pt;}
.ls15{letter-spacing:51.724608pt;}
.lsf{letter-spacing:89.600000pt;}
.ls0{letter-spacing:130.560000pt;}
.ls12{letter-spacing:131.840000pt;}
.ls21{letter-spacing:144.960000pt;}
.ws8{word-spacing:-52.160000pt;}
.ws9{word-spacing:-51.840000pt;}
.ws1{word-spacing:-18.057600pt;}
.ws0{word-spacing:-18.000000pt;}
.wse{word-spacing:-15.993600pt;}
.ws2{word-spacing:-14.788608pt;}
.ws4{word-spacing:-12.325056pt;}
.ws45{word-spacing:-12.311808pt;}
.ws5{word-spacing:-12.294144pt;}
.wsb{word-spacing:-12.236736pt;}
.wsc{word-spacing:-12.219072pt;}
.ws3{word-spacing:-12.038016pt;}
.ws7{word-spacing:-11.272000pt;}
.wsd{word-spacing:-11.268000pt;}
.ws6{word-spacing:-11.048000pt;}
.wsa{word-spacing:-0.324000pt;}
.ws17{word-spacing:-0.287040pt;}
.ws1c{word-spacing:-0.232000pt;}
.ws10{word-spacing:-0.194400pt;}
.ws1e{word-spacing:-0.185472pt;}
.ws24{word-spacing:-0.180608pt;}
.ws43{word-spacing:-0.177600pt;}
.ws1a{word-spacing:-0.176640pt;}
.ws13{word-spacing:-0.172224pt;}
.ws22{word-spacing:-0.167808pt;}
.ws15{word-spacing:-0.163392pt;}
.ws16{word-spacing:-0.158976pt;}
.ws23{word-spacing:-0.128064pt;}
.ws27{word-spacing:-0.085120pt;}
.ws3c{word-spacing:-0.076000pt;}
.ws42{word-spacing:-0.072000pt;}
.ws21{word-spacing:-0.068000pt;}
.ws41{word-spacing:-0.062400pt;}
.ws3a{word-spacing:-0.060000pt;}
.ws4c{word-spacing:-0.057600pt;}
.ws20{word-spacing:-0.056000pt;}
.ws40{word-spacing:-0.052000pt;}
.ws3e{word-spacing:-0.048576pt;}
.ws46{word-spacing:-0.039744pt;}
.ws11{word-spacing:-0.037184pt;}
.ws3f{word-spacing:-0.028000pt;}
.ws38{word-spacing:-0.025600pt;}
.ws30{word-spacing:-0.019200pt;}
.ws2a{word-spacing:-0.012800pt;}
.ws29{word-spacing:-0.006400pt;}
.wsf{word-spacing:0.000000pt;}
.ws28{word-spacing:0.006400pt;}
.ws3d{word-spacing:0.009600pt;}
.ws2d{word-spacing:0.012800pt;}
.ws31{word-spacing:0.019200pt;}
.ws2b{word-spacing:0.025600pt;}
.ws4a{word-spacing:0.032000pt;}
.ws26{word-spacing:0.034048pt;}
.ws35{word-spacing:0.038400pt;}
.ws1d{word-spacing:0.040000pt;}
.ws48{word-spacing:0.051200pt;}
.ws37{word-spacing:0.064000pt;}
.ws36{word-spacing:0.070400pt;}
.ws12{word-spacing:0.072000pt;}
.ws2c{word-spacing:0.076800pt;}
.ws34{word-spacing:0.083200pt;}
.ws39{word-spacing:0.083904pt;}
.ws2e{word-spacing:0.089600pt;}
.ws2f{word-spacing:0.096000pt;}
.ws32{word-spacing:0.102400pt;}
.ws1f{word-spacing:0.105600pt;}
.ws49{word-spacing:0.108800pt;}
.ws47{word-spacing:0.128064pt;}
.ws4b{word-spacing:0.147200pt;}
.ws14{word-spacing:0.154560pt;}
.ws33{word-spacing:0.179200pt;}
.ws19{word-spacing:0.185472pt;}
.ws44{word-spacing:0.204800pt;}
.ws1b{word-spacing:0.256128pt;}
.ws18{word-spacing:0.304704pt;}
.ws3b{word-spacing:0.317952pt;}
.ws25{word-spacing:0.345600pt;}
._8{margin-left:-2595.840000pt;}
._4{margin-left:-52.160000pt;}
._5{margin-left:-51.200000pt;}
._6{margin-left:-40.000000pt;}
._1{margin-left:-1.084000pt;}
._0{width:0.947691pt;}
._2{width:16.800896pt;}
._7{width:72.068224pt;}
._3{width:80.584000pt;}
.fs5{font-size:40.000000pt;}
.fs2{font-size:44.160000pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:51.840000pt;}
.fs6{font-size:52.160000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:72.000000pt;}
.fs8{font-size:85.120000pt;}
.yde{bottom:-379.892933pt;}
.y88{bottom:-19.892933pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:2.320400pt;}
.y21{bottom:2.400400pt;}
.y3b{bottom:3.440400pt;}
.y42{bottom:3.600400pt;}
.ya0{bottom:3.600533pt;}
.y6a{bottom:48.666667pt;}
.y6b{bottom:52.107067pt;}
.ycd{bottom:53.707067pt;}
.y38{bottom:55.227067pt;}
.y69{bottom:69.867067pt;}
.ycc{bottom:71.467067pt;}
.y37{bottom:71.867664pt;}
.y36{bottom:84.187200pt;}
.y68{bottom:87.547067pt;}
.ycb{bottom:89.147067pt;}
.y35{bottom:97.707067pt;}
.y67{bottom:105.307067pt;}
.yca{bottom:106.907067pt;}
.y34{bottom:114.266939pt;}
.y66{bottom:123.067067pt;}
.yc9{bottom:124.587067pt;}
.yc7{bottom:138.746667pt;}
.y33{bottom:138.986640pt;}
.y65{bottom:140.747067pt;}
.yc8{bottom:142.347067pt;}
.y32{bottom:151.147067pt;}
.y64{bottom:158.507067pt;}
.yc6{bottom:160.027067pt;}
.y31{bottom:162.427067pt;}
.y30{bottom:174.987067pt;}
.y63{bottom:176.187067pt;}
.yc5{bottom:177.787067pt;}
.y2f{bottom:191.787067pt;}
.y62{bottom:193.947067pt;}
.yc4{bottom:195.467067pt;}
.y2e{bottom:210.107067pt;}
.y61{bottom:211.627067pt;}
.yc3{bottom:213.227067pt;}
.y60{bottom:229.387067pt;}
.yc2{bottom:230.987067pt;}
.y2b{bottom:232.347067pt;}
.y2d{bottom:233.467067pt;}
.y5f{bottom:247.067067pt;}
.yc1{bottom:248.667067pt;}
.y2c{bottom:249.627067pt;}
.y2a{bottom:250.667067pt;}
.y5e{bottom:264.827067pt;}
.yc0{bottom:266.427067pt;}
.y5d{bottom:282.587067pt;}
.ybf{bottom:284.107067pt;}
.y29{bottom:288.267067pt;}
.y5c{bottom:300.267067pt;}
.y28{bottom:301.707067pt;}
.ybe{bottom:301.867067pt;}
.ybc{bottom:315.946667pt;}
.y5b{bottom:318.027067pt;}
.y27{bottom:319.467067pt;}
.ybd{bottom:319.547067pt;}
.y86{bottom:332.427067pt;}
.y5a{bottom:335.707067pt;}
.ybb{bottom:337.307067pt;}
.y26{bottom:349.387067pt;}
.y59{bottom:353.467067pt;}
.yba{bottom:354.987067pt;}
.y85{bottom:363.547067pt;}
.y25{bottom:366.027531pt;}
.y58{bottom:371.147067pt;}
.yb9{bottom:372.747067pt;}
.y24{bottom:378.347067pt;}
.y84{bottom:383.307067pt;}
.y57{bottom:388.907067pt;}
.yb8{bottom:390.507067pt;}
.y23{bottom:391.867067pt;}
.y20{bottom:406.106667pt;}
.y56{bottom:406.587067pt;}
.yb7{bottom:408.187067pt;}
.y22{bottom:408.507067pt;}
.yce{bottom:412.427067pt;}
.y83{bottom:418.907200pt;}
.y1f{bottom:420.827200pt;}
.y55{bottom:424.347067pt;}
.yb6{bottom:425.947067pt;}
.y1e{bottom:434.347067pt;}
.ydc{bottom:436.266667pt;}
.ydb{bottom:439.707067pt;}
.y54{bottom:442.107067pt;}
.yb5{bottom:443.627067pt;}
.y1d{bottom:450.907067pt;}
.y52{bottom:456.186667pt;}
.yda{bottom:457.467067pt;}
.y53{bottom:459.787067pt;}
.yb4{bottom:461.387067pt;}
.y1c{bottom:464.427067pt;}
.yd9{bottom:475.147067pt;}
.y51{bottom:477.547067pt;}
.y1a{bottom:478.666667pt;}
.yb3{bottom:479.067067pt;}
.y19{bottom:480.987067pt;}
.yd8{bottom:492.907067pt;}
.yb1{bottom:493.226667pt;}
.y18{bottom:493.387067pt;}
.y50{bottom:495.227067pt;}
.yb2{bottom:496.827067pt;}
.y17{bottom:505.706939pt;}
.yd7{bottom:510.587067pt;}
.y4f{bottom:512.987067pt;}
.yb0{bottom:514.507067pt;}
.y16{bottom:518.107067pt;}
.y82{bottom:523.627067pt;}
.yd6{bottom:528.347067pt;}
.y4e{bottom:530.667067pt;}
.y15{bottom:531.547067pt;}
.y8f{bottom:532.267067pt;}
.y81{bottom:545.307067pt;}
.yd5{bottom:546.027067pt;}
.y14{bottom:548.187067pt;}
.y4d{bottom:548.427067pt;}
.yaf{bottom:550.027067pt;}
.y13{bottom:560.587067pt;}
.yd4{bottom:563.787067pt;}
.y80{bottom:565.707067pt;}
.y4c{bottom:566.107067pt;}
.yae{bottom:567.707067pt;}
.y12{bottom:574.027067pt;}
.y7f{bottom:576.987067pt;}
.yd3{bottom:581.467067pt;}
.y4b{bottom:583.867067pt;}
.yad{bottom:585.467067pt;}
.y7e{bottom:588.187067pt;}
.y11{bottom:590.667531pt;}
.yd2{bottom:599.227067pt;}
.y7d{bottom:599.627067pt;}
.y4a{bottom:601.627067pt;}
.y10{bottom:602.987067pt;}
.yac{bottom:603.147067pt;}
.y7c{bottom:616.187067pt;}
.yf{bottom:616.507067pt;}
.yd1{bottom:616.987067pt;}
.y49{bottom:619.307067pt;}
.yab{bottom:620.907067pt;}
.y47{bottom:633.466667pt;}
.y7b{bottom:634.507067pt;}
.yd0{bottom:634.667067pt;}
.y48{bottom:637.067067pt;}
.yaa{bottom:638.587067pt;}
.ycf{bottom:652.427067pt;}
.y46{bottom:654.747067pt;}
.y7a{bottom:654.907067pt;}
.ya9{bottom:656.347067pt;}
.y79{bottom:666.187067pt;}
.ya7{bottom:670.506667pt;}
.y45{bottom:672.507067pt;}
.ya8{bottom:674.107067pt;}
.y78{bottom:677.626939pt;}
.ya5{bottom:688.186667pt;}
.y77{bottom:690.027067pt;}
.y44{bottom:690.187067pt;}
.ya6{bottom:691.787067pt;}
.y41{bottom:704.346667pt;}
.y76{bottom:706.507067pt;}
.y43{bottom:707.947067pt;}
.ya4{bottom:709.547200pt;}
.ydd{bottom:724.427067pt;}
.y75{bottom:724.907067pt;}
.y40{bottom:725.627067pt;}
.ya3{bottom:727.227200pt;}
.y3f{bottom:743.387067pt;}
.ya2{bottom:744.987200pt;}
.y74{bottom:745.227067pt;}
.y73{bottom:756.507067pt;}
.y9f{bottom:759.066667pt;}
.ya1{bottom:762.667200pt;}
.y72{bottom:767.787067pt;}
.y71{bottom:778.987067pt;}
.y9e{bottom:780.427067pt;}
.y3e{bottom:781.147083pt;}
.y70{bottom:790.427067pt;}
.y9d{bottom:798.107067pt;}
.y3d{bottom:804.987067pt;}
.y6f{bottom:806.587067pt;}
.ye{bottom:810.187067pt;}
.y9c{bottom:815.867067pt;}
.y6e{bottom:817.867067pt;}
.yd{bottom:826.827067pt;}
.y6d{bottom:829.067067pt;}
.y9b{bottom:833.627067pt;}
.y3c{bottom:837.947067pt;}
.yc{bottom:840.267067pt;}
.y6c{bottom:840.507067pt;}
.y9a{bottom:851.307067pt;}
.y3a{bottom:852.266667pt;}
.y39{bottom:855.707067pt;}
.yb{bottom:857.067067pt;}
.y99{bottom:869.067067pt;}
.ya{bottom:875.387067pt;}
.y98{bottom:886.747067pt;}
.y9{bottom:892.506587pt;}
.y97{bottom:904.507067pt;}
.y1{bottom:905.067067pt;}
.y8{bottom:907.386827pt;}
.y96{bottom:922.187067pt;}
.y7{bottom:922.267067pt;}
.y94{bottom:936.346667pt;}
.y95{bottom:939.947067pt;}
.y2{bottom:942.907067pt;}
.y8e{bottom:943.227067pt;}
.y93{bottom:957.627067pt;}
.y6{bottom:958.587067pt;}
.y8d{bottom:959.866427pt;}
.y8c{bottom:972.187067pt;}
.y92{bottom:975.387067pt;}
.y3{bottom:976.027067pt;}
.y5{bottom:977.066811pt;}
.y8b{bottom:985.707067pt;}
.y91{bottom:993.147067pt;}
.y8a{bottom:1002.266939pt;}
.y4{bottom:1010.427067pt;}
.y90{bottom:1010.827067pt;}
.y89{bottom:1014.667067pt;}
.y87{bottom:1084.427067pt;}
.h17{height:-365.572880pt;}
.h14{height:-5.572880pt;}
.h9{height:12.560000pt;}
.ha{height:12.640000pt;}
.h10{height:17.680000pt;}
.h13{height:17.840000pt;}
.h12{height:18.000000pt;}
.hd{height:41.718750pt;}
.hc{height:42.680000pt;}
.h3{height:44.505000pt;}
.h8{height:46.057500pt;}
.hf{height:46.058012pt;}
.he{height:46.058033pt;}
.h15{height:46.060060pt;}
.hb{height:48.920000pt;}
.h7{height:50.062500pt;}
.h6{height:55.402500pt;}
.h5{height:56.679040pt;}
.h1{height:62.812500pt;}
.h2{height:66.750000pt;}
.h4{height:72.562500pt;}
.h11{height:88.777500pt;}
.h16{height:714.666667pt;}
.h0{height:1074.666667pt;}
.w1{width:-60.960000pt;}
.w2{width:-35.120000pt;}
.w3{width:41.760000pt;}
.w8{width:201.040000pt;}
.we{width:206.160000pt;}
.wa{width:280.800000pt;}
.w4{width:290.160000pt;}
.wb{width:297.760000pt;}
.w7{width:298.640000pt;}
.w6{width:302.560000pt;}
.w9{width:303.040000pt;}
.wd{width:324.400000pt;}
.wc{width:325.200000pt;}
.w5{width:335.040000pt;}
.w0{width:349.333333pt;}
.xb{left:-128.000000pt;}
.x10{left:-124.960000pt;}
.xa{left:-124.000000pt;}
.x13{left:-111.440000pt;}
.x11{left:-106.320000pt;}
.xc{left:-94.800000pt;}
.x14{left:-91.120000pt;}
.xd{left:-88.080000pt;}
.xe{left:-64.640000pt;}
.xf{left:-60.960000pt;}
.x1{left:-35.520000pt;}
.x1e{left:-32.960000pt;}
.x12{left:-31.760000pt;}
.x1f{left:-24.880000pt;}
.x2{left:-2.000000pt;}
.x0{left:0.000000pt;}
.x15{left:10.000000pt;}
.x19{left:18.000000pt;}
.x22{left:21.520000pt;}
.x17{left:25.760000pt;}
.x20{left:94.640000pt;}
.x21{left:102.640000pt;}
.x3{left:156.160000pt;}
.x23{left:158.560000pt;}
.x24{left:173.040000pt;}
.x16{left:255.680000pt;}
.x18{left:289.440000pt;}
.x1b{left:357.040000pt;}
.x4{left:358.960000pt;}
.x1a{left:363.040000pt;}
.x7{left:364.160000pt;}
.x8{left:384.400048pt;}
.x6{left:400.880000pt;}
.x9{left:408.079616pt;}
.x5{left:436.959632pt;}
.x1d{left:442.320000pt;}
.x1c{left:444.560000pt;}
}




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