
    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_2754b46b3330a59572f9eed4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.134277;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_b1abc88518b47b732e55ff53.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_fd3329a9cca54de6faa95727.woff')format("woff");}.ff3{font-family:ff3;line-height:1.456055;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_674eca94e0969d7977c3f1d8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.134277;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_db29064c78530a07d0d5c744.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_ed476e3ba6f5a5a22c29c48a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.134277;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_c19885f3ebbcb10b065175c4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_95906a28fff202f0ee4de6b5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.070312;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_b3e25ab497e0cefdf2258c3a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.965600px;}
.v3{vertical-align:16.812600px;}
.ls13{letter-spacing:-4.200000px;}
.ls33{letter-spacing:-3.225000px;}
.ls37{letter-spacing:-2.850000px;}
.ls3a{letter-spacing:-2.691000px;}
.ls38{letter-spacing:-2.622000px;}
.ls10{letter-spacing:-1.863000px;}
.ls1f{letter-spacing:-1.800000px;}
.ls20{letter-spacing:-1.740000px;}
.ls28{letter-spacing:-1.620000px;}
.ls1b{letter-spacing:-1.449000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.380000px;}
.ls45{letter-spacing:-1.260000px;}
.ls2b{letter-spacing:-1.140000px;}
.ls14{letter-spacing:-1.104000px;}
.lsd{letter-spacing:-1.035000px;}
.ls1e{letter-spacing:-1.020000px;}
.ls11{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.840000px;}
.ls35{letter-spacing:-0.828000px;}
.lsb{letter-spacing:-0.825000px;}
.ls27{letter-spacing:-0.780000px;}
.ls26{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.660000px;}
.ls30{letter-spacing:-0.621000px;}
.ls42{letter-spacing:-0.567000px;}
.ls3c{letter-spacing:-0.552000px;}
.ls22{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.420000px;}
.ls2f{letter-spacing:-0.414000px;}
.ls23{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.207000px;}
.ls2c{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.138000px;}
.ls7{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.000300px;}
.ls19{letter-spacing:0.012000px;}
.ls29{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.240000px;}
.ls43{letter-spacing:0.252000px;}
.ls2a{letter-spacing:0.300000px;}
.ls41{letter-spacing:0.675000px;}
.ls44{letter-spacing:0.756000px;}
.ls3d{letter-spacing:0.828000px;}
.ls2e{letter-spacing:1.260000px;}
.ls9{letter-spacing:2.100000px;}
.lsa{letter-spacing:2.400000px;}
.ls39{letter-spacing:4.071000px;}
.ls1{letter-spacing:4.200000px;}
.ls5{letter-spacing:5.760000px;}
.ls6{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls3f{letter-spacing:6.300000px;}
.ls3e{letter-spacing:8.820000px;}
.ls18{letter-spacing:388.920000px;}
.ls1a{letter-spacing:438.360000px;}
.ls17{letter-spacing:461.400000px;}
.ls16{letter-spacing:468.300000px;}
.ls40{letter-spacing:504.787200px;}
.ls8{letter-spacing:512.184000px;}
.ls36{letter-spacing:514.224000px;}
.ls31{letter-spacing:514.591800px;}
.ls12{letter-spacing:515.551800px;}
.ls3b{letter-spacing:990.022800px;}
.lse{letter-spacing:990.517800px;}
.ls15{letter-spacing:993.142800px;}
.ls34{letter-spacing:997.192800px;}
.ls0{letter-spacing:999.172800px;}
.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;}
}
.ws45{word-spacing:-26.523000px;}
.ws4c{word-spacing:-22.860000px;}
.ws3{word-spacing:-22.740000px;}
.ws0{word-spacing:-22.620000px;}
.ws48{word-spacing:-21.750000px;}
.ws9{word-spacing:-20.250000px;}
.ws10{word-spacing:-19.389000px;}
.ws31{word-spacing:-18.768000px;}
.ws17{word-spacing:-18.285000px;}
.ws3e{word-spacing:-18.225000px;}
.ws2d{word-spacing:-18.120000px;}
.ws44{word-spacing:-17.871000px;}
.ws39{word-spacing:-17.850000px;}
.ws46{word-spacing:-17.703000px;}
.wsc{word-spacing:-17.043000px;}
.ws16{word-spacing:-16.875000px;}
.ws2{word-spacing:-16.860000px;}
.ws3f{word-spacing:-16.698000px;}
.ws30{word-spacing:-16.629000px;}
.ws43{word-spacing:-16.491000px;}
.ws40{word-spacing:-16.422000px;}
.ws3b{word-spacing:-16.215000px;}
.ws4a{word-spacing:-15.813000px;}
.ws18{word-spacing:-15.594000px;}
.ws4b{word-spacing:-15.561000px;}
.ws12{word-spacing:-15.180000px;}
.ws26{word-spacing:-15.120000px;}
.ws25{word-spacing:-15.000000px;}
.ws49{word-spacing:-14.994000px;}
.ws28{word-spacing:-14.832000px;}
.ws1{word-spacing:-14.820000px;}
.wsb{word-spacing:-14.760000px;}
.ws2c{word-spacing:-14.640000px;}
.ws1f{word-spacing:-14.460000px;}
.ws23{word-spacing:-14.400000px;}
.ws1e{word-spacing:-14.280000px;}
.ws21{word-spacing:-14.100000px;}
.ws2f{word-spacing:-14.040000px;}
.ws1d{word-spacing:-13.980000px;}
.wsa{word-spacing:-13.902000px;}
.ws29{word-spacing:-13.440000px;}
.ws19{word-spacing:-13.380000px;}
.ws13{word-spacing:-13.338000px;}
.ws2b{word-spacing:-13.200000px;}
.ws1b{word-spacing:-13.080000px;}
.ws1a{word-spacing:-13.020000px;}
.ws14{word-spacing:-12.474000px;}
.ws3a{word-spacing:-11.303787px;}
.ws11{word-spacing:-9.829380px;}
.ws47{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.ws7{word-spacing:-4.200000px;}
.ws42{word-spacing:-4.071000px;}
.wsd{word-spacing:-2.400000px;}
.ws3c{word-spacing:-2.139000px;}
.ws4d{word-spacing:-0.756000px;}
.ws32{word-spacing:-0.240000px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:0.060000px;}
.ws15{word-spacing:0.138000px;}
.ws50{word-spacing:0.180000px;}
.wse{word-spacing:0.207000px;}
.ws6{word-spacing:0.240000px;}
.ws35{word-spacing:0.420000px;}
.ws38{word-spacing:0.660000px;}
.ws36{word-spacing:0.780000px;}
.ws33{word-spacing:1.020000px;}
.wsf{word-spacing:1.035000px;}
.ws37{word-spacing:1.140000px;}
.ws4f{word-spacing:1.260000px;}
.ws34{word-spacing:1.740000px;}
.ws41{word-spacing:2.622000px;}
.ws3d{word-spacing:4.692000px;}
.ws4e{word-spacing:6.426000px;}
.ws20{word-spacing:353.016000px;}
.ws1c{word-spacing:389.370000px;}
.ws2a{word-spacing:407.514000px;}
.ws2e{word-spacing:457.080000px;}
.ws27{word-spacing:459.060000px;}
.ws24{word-spacing:462.054000px;}
.ws22{word-spacing:504.540000px;}
._b{margin-left:-7.432200px;}
._8{margin-left:-6.288600px;}
._9{margin-left:-4.644000px;}
._c{margin-left:-2.706000px;}
._7{margin-left:-1.428000px;}
._2{width:1.241400px;}
._1{width:2.400000px;}
._a{width:3.774000px;}
._4{width:5.284200px;}
._3{width:6.451800px;}
._5{width:7.506000px;}
._6{width:8.604600px;}
._d{width:9.750000px;}
._10{width:10.764000px;}
._f{width:11.868000px;}
._12{width:12.967200px;}
._28{width:14.547900px;}
._19{width:15.939000px;}
._14{width:17.112000px;}
._22{width:18.128100px;}
._2a{width:22.302000px;}
._29{width:24.132600px;}
._25{width:32.838000px;}
._13{width:43.445160px;}
._27{width:71.298000px;}
._e{width:85.554000px;}
._15{width:87.507600px;}
._2c{width:103.992000px;}
._1b{width:117.211200px;}
._2b{width:155.784600px;}
._17{width:164.305200px;}
._23{width:167.550600px;}
._1f{width:175.511400px;}
._24{width:178.105200px;}
._26{width:180.450600px;}
._1a{width:217.573200px;}
._16{width:248.670000px;}
._11{width:260.610000px;}
._18{width:332.719200px;}
._21{width:380.896800px;}
._1d{width:384.351000px;}
._1e{width:419.859600px;}
._20{width:457.464600px;}
._1c{width:493.503600px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fsc{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.ydc{bottom:106.130850px;}
.y102{bottom:106.165350px;}
.y48{bottom:106.166100px;}
.y95{bottom:106.167600px;}
.y20{bottom:106.262250px;}
.y121{bottom:106.283850px;}
.yba{bottom:106.287300px;}
.y59{bottom:106.296450px;}
.y13e{bottom:106.327350px;}
.y74{bottom:109.294800px;}
.yb9{bottom:123.540300px;}
.y1f{bottom:126.062250px;}
.y94{bottom:126.539850px;}
.y58{bottom:126.544950px;}
.y13d{bottom:126.547350px;}
.y101{bottom:126.589350px;}
.y47{bottom:126.745350px;}
.ydb{bottom:126.917100px;}
.y120{bottom:135.815100px;}
.yb8{bottom:140.793300px;}
.y1e{bottom:145.862250px;}
.y13c{bottom:146.767350px;}
.y93{bottom:146.912100px;}
.y100{bottom:147.013350px;}
.y46{bottom:147.324600px;}
.y73{bottom:153.343350px;}
.y11f{bottom:156.841350px;}
.yb7{bottom:158.046300px;}
.y1d{bottom:165.662250px;}
.y13b{bottom:166.987350px;}
.y92{bottom:167.284350px;}
.yff{bottom:167.437350px;}
.y45{bottom:167.903850px;}
.yda{bottom:168.472350px;}
.y57{bottom:170.564700px;}
.y72{bottom:174.560850px;}
.yb6{bottom:178.294800px;}
.y15f{bottom:183.942750px;}
.y1c{bottom:185.462250px;}
.y11e{bottom:186.372600px;}
.y13a{bottom:187.207350px;}
.y91{bottom:187.656600px;}
.yfe{bottom:187.861350px;}
.y44{bottom:188.483100px;}
.yd9{bottom:189.258600px;}
.y56{bottom:191.143950px;}
.y71{bottom:195.778350px;}
.yb5{bottom:196.795200px;}
.y15e{bottom:204.192750px;}
.y11d{bottom:207.398850px;}
.y90{bottom:208.028850px;}
.yfd{bottom:208.285350px;}
.y43{bottom:209.062350px;}
.yd8{bottom:210.044850px;}
.y55{bottom:211.726800px;}
.yb4{bottom:214.048200px;}
.y70{bottom:216.995850px;}
.y1b{bottom:218.012250px;}
.y139{bottom:220.192350px;}
.y15d{bottom:224.442750px;}
.y8f{bottom:228.401100px;}
.yfc{bottom:228.709350px;}
.y42{bottom:229.641600px;}
.yb3{bottom:234.296700px;}
.y11c{bottom:236.930100px;}
.y6f{bottom:238.213350px;}
.y15c{bottom:244.692750px;}
.y8e{bottom:248.773350px;}
.yfb{bottom:249.133350px;}
.y41{bottom:250.220850px;}
.yd7{bottom:251.600100px;}
.y54{bottom:252.885300px;}
.y11b{bottom:257.956350px;}
.y6e{bottom:259.430850px;}
.y1a{bottom:267.572250px;}
.y8d{bottom:269.145600px;}
.yfa{bottom:269.557350px;}
.y40{bottom:270.800100px;}
.yd6{bottom:272.386350px;}
.y53{bottom:273.464550px;}
.y15b{bottom:277.692750px;}
.yb2{bottom:278.335500px;}
.y138{bottom:278.687400px;}
.y6d{bottom:280.648350px;}
.y11a{bottom:287.487600px;}
.y19{bottom:288.872250px;}
.y8c{bottom:289.517850px;}
.yf9{bottom:289.981350px;}
.y3f{bottom:291.379350px;}
.yd5{bottom:293.172600px;}
.yb1{bottom:299.863500px;}
.y6c{bottom:301.865850px;}
.y119{bottom:308.513850px;}
.y8b{bottom:309.890100px;}
.y18{bottom:310.172250px;}
.yf8{bottom:310.405350px;}
.y3e{bottom:311.958600px;}
.yd4{bottom:313.958850px;}
.y52{bottom:314.623050px;}
.y15a{bottom:319.197750px;}
.yb0{bottom:321.391500px;}
.y6b{bottom:323.083350px;}
.y8a{bottom:330.262350px;}
.yf7{bottom:330.829350px;}
.y17{bottom:331.396350px;}
.y3d{bottom:332.537850px;}
.yd3{bottom:334.745100px;}
.y118{bottom:338.045100px;}
.y159{bottom:338.697750px;}
.yaf{bottom:342.919500px;}
.y6a{bottom:344.300850px;}
.y51{bottom:344.533050px;}
.y89{bottom:350.634600px;}
.y16{bottom:351.196350px;}
.yf6{bottom:351.253350px;}
.y3c{bottom:353.117100px;}
.yd2{bottom:355.531350px;}
.y137{bottom:357.110850px;}
.y158{bottom:358.197750px;}
.y117{bottom:359.071350px;}
.yae{bottom:364.447500px;}
.y69{bottom:365.518350px;}
.y15{bottom:370.996350px;}
.y88{bottom:371.006850px;}
.y3b{bottom:373.696350px;}
.yd1{bottom:376.317600px;}
.y157{bottom:377.697750px;}
.y136{bottom:378.089850px;}
.yad{bottom:385.975500px;}
.y68{bottom:386.735850px;}
.y116{bottom:388.602600px;}
.y14{bottom:390.796350px;}
.yf5{bottom:392.101350px;}
.y3a{bottom:394.275600px;}
.y156{bottom:397.197750px;}
.yac{bottom:407.503500px;}
.y135{bottom:407.573850px;}
.y13{bottom:410.596350px;}
.y87{bottom:411.734100px;}
.yf4{bottom:412.525350px;}
.y39{bottom:414.854850px;}
.y155{bottom:416.697750px;}
.yd0{bottom:417.872850px;}
.y134{bottom:428.552850px;}
.yab{bottom:429.031500px;}
.y12{bottom:430.396350px;}
.y86{bottom:432.106350px;}
.yf3{bottom:432.949350px;}
.y38{bottom:435.434100px;}
.y67{bottom:435.915600px;}
.y154{bottom:436.197750px;}
.ycf{bottom:438.659100px;}
.y133{bottom:449.531850px;}
.y11{bottom:450.196350px;}
.yaa{bottom:450.572250px;}
.yf2{bottom:453.373350px;}
.y153{bottom:455.697750px;}
.y37{bottom:456.013350px;}
.yce{bottom:459.445350px;}
.y115{bottom:461.118600px;}
.y10{bottom:469.996350px;}
.ya9{bottom:472.100250px;}
.y85{bottom:472.833600px;}
.yf1{bottom:473.797350px;}
.y152{bottom:475.197750px;}
.y36{bottom:476.592600px;}
.y66{bottom:478.350600px;}
.y132{bottom:479.015850px;}
.ycd{bottom:480.231600px;}
.y114{bottom:482.146350px;}
.yf{bottom:489.796350px;}
.y84{bottom:493.205850px;}
.ya8{bottom:493.628250px;}
.yf0{bottom:494.221350px;}
.y151{bottom:494.697750px;}
.y35{bottom:497.171850px;}
.y65{bottom:499.568100px;}
.y131{bottom:499.994850px;}
.ycc{bottom:501.017850px;}
.y113{bottom:503.174100px;}
.ye{bottom:509.596350px;}
.y83{bottom:513.578100px;}
.y150{bottom:514.197750px;}
.yef{bottom:514.645350px;}
.ya7{bottom:515.156250px;}
.y34{bottom:517.751100px;}
.ycb{bottom:521.804100px;}
.y112{bottom:524.201850px;}
.yd{bottom:529.396350px;}
.y130{bottom:529.478850px;}
.y82{bottom:533.950350px;}
.yee{bottom:535.069350px;}
.ya6{bottom:536.684250px;}
.y33{bottom:538.330350px;}
.y64{bottom:542.003100px;}
.yca{bottom:542.590350px;}
.y111{bottom:545.229600px;}
.yc{bottom:549.196350px;}
.y12f{bottom:550.457850px;}
.y14f{bottom:553.197750px;}
.yed{bottom:555.493350px;}
.ya5{bottom:558.253350px;}
.y32{bottom:558.909600px;}
.yc9{bottom:563.376600px;}
.y110{bottom:566.257350px;}
.yb{bottom:568.996350px;}
.y14e{bottom:572.697750px;}
.yec{bottom:575.917350px;}
.y31{bottom:579.488850px;}
.ya4{bottom:579.781350px;}
.y12e{bottom:579.941850px;}
.y81{bottom:582.327450px;}
.yc8{bottom:584.162850px;}
.y63{bottom:584.438100px;}
.y10f{bottom:587.285100px;}
.yeb{bottom:596.341350px;}
.y30{bottom:600.068100px;}
.y12d{bottom:600.920850px;}
.ya3{bottom:601.309350px;}
.ya{bottom:601.546350px;}
.yc7{bottom:604.949100px;}
.y80{bottom:605.059050px;}
.y10e{bottom:608.312850px;}
.y14d{bottom:611.697750px;}
.yea{bottom:616.765350px;}
.y2f{bottom:620.647350px;}
.ya2{bottom:622.837350px;}
.yc6{bottom:625.735350px;}
.y62{bottom:626.873100px;}
.y7f{bottom:627.790500px;}
.y10d{bottom:629.340600px;}
.y12c{bottom:630.404850px;}
.y14c{bottom:631.197750px;}
.ye9{bottom:637.189350px;}
.y2e{bottom:641.226600px;}
.ya1{bottom:644.365350px;}
.yc5{bottom:646.521600px;}
.y61{bottom:648.090600px;}
.y10c{bottom:650.368350px;}
.y7e{bottom:650.521950px;}
.y14b{bottom:650.697750px;}
.y12b{bottom:651.383850px;}
.ye8{bottom:657.613350px;}
.y9{bottom:659.608350px;}
.y2d{bottom:661.805850px;}
.ya0{bottom:665.893350px;}
.yc4{bottom:667.307850px;}
.y14a{bottom:670.197750px;}
.y10b{bottom:671.396100px;}
.y50{bottom:671.744550px;}
.y12a{bottom:672.362850px;}
.y7d{bottom:673.253400px;}
.ye7{bottom:678.037350px;}
.y9f{bottom:687.421350px;}
.yc3{bottom:688.094100px;}
.y149{bottom:689.697750px;}
.y60{bottom:690.525600px;}
.y4f{bottom:692.323800px;}
.y10a{bottom:692.423850px;}
.y7c{bottom:695.991450px;}
.ye6{bottom:698.461350px;}
.y129{bottom:701.846850px;}
.y2c{bottom:702.948750px;}
.y8{bottom:708.150450px;}
.yc2{bottom:708.880350px;}
.y9e{bottom:708.949350px;}
.y148{bottom:709.197750px;}
.y5f{bottom:711.743100px;}
.y4e{bottom:712.903050px;}
.y7b{bottom:718.716450px;}
.ye5{bottom:718.885350px;}
.y2b{bottom:724.278750px;}
.y147{bottom:728.697750px;}
.yc1{bottom:729.666600px;}
.y9d{bottom:730.477350px;}
.y128{bottom:731.330850px;}
.y109{bottom:734.479350px;}
.ye4{bottom:739.309350px;}
.y7{bottom:739.956450px;}
.y4d{bottom:741.312900px;}
.y7a{bottom:741.447900px;}
.y2a{bottom:745.557750px;}
.y146{bottom:748.197750px;}
.yc0{bottom:750.452850px;}
.y9c{bottom:752.005350px;}
.y127{bottom:752.309850px;}
.y5e{bottom:754.178100px;}
.y108{bottom:755.507100px;}
.ye3{bottom:759.733350px;}
.y79{bottom:764.179350px;}
.y29{bottom:765.387750px;}
.y145{bottom:767.697750px;}
.ybf{bottom:771.239100px;}
.y9b{bottom:773.533350px;}
.ye2{bottom:780.157350px;}
.y126{bottom:781.793850px;}
.y28{bottom:785.217750px;}
.y78{bottom:786.910950px;}
.y144{bottom:787.197750px;}
.ybe{bottom:792.025350px;}
.y9a{bottom:795.061350px;}
.y5d{bottom:796.613100px;}
.y107{bottom:797.562600px;}
.ye1{bottom:800.581350px;}
.y6{bottom:801.494700px;}
.y125{bottom:802.772850px;}
.y27{bottom:805.047750px;}
.y143{bottom:806.697750px;}
.y77{bottom:809.642400px;}
.ybd{bottom:812.811600px;}
.y99{bottom:816.589350px;}
.y5c{bottom:817.830600px;}
.y106{bottom:818.590350px;}
.ye0{bottom:821.005350px;}
.y26{bottom:824.877750px;}
.y142{bottom:826.197750px;}
.y5{bottom:831.299700px;}
.y124{bottom:832.256850px;}
.y76{bottom:832.374000px;}
.y98{bottom:838.117350px;}
.y105{bottom:839.618100px;}
.y4c{bottom:840.963600px;}
.ydf{bottom:841.429350px;}
.y25{bottom:844.707750px;}
.y141{bottom:845.697750px;}
.y4{bottom:852.599700px;}
.y123{bottom:853.235850px;}
.y97{bottom:859.645350px;}
.y5b{bottom:860.265600px;}
.y104{bottom:860.645850px;}
.ybc{bottom:861.128850px;}
.y4b{bottom:861.542850px;}
.yde{bottom:861.853350px;}
.y24{bottom:864.537750px;}
.y140{bottom:865.197750px;}
.y96{bottom:881.173350px;}
.y5a{bottom:881.483850px;}
.y103{bottom:881.673600px;}
.ybb{bottom:881.915100px;}
.y4a{bottom:882.122100px;}
.ydd{bottom:882.277350px;}
.y75{bottom:882.329100px;}
.y3{bottom:882.404700px;}
.y122{bottom:882.719850px;}
.y23{bottom:884.367750px;}
.y13f{bottom:884.697750px;}
.y49{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.hf{height:34.872492px;}
.h8{height:41.648438px;}
.hd{height:42.228937px;}
.h11{height:46.854492px;}
.h10{height:50.068359px;}
.h4{height:52.060547px;}
.he{height:54.210938px;}
.h3{height:54.663574px;}
.h9{height:59.869629px;}
.h7{height:60.234375px;}
.h12{height:63.246094px;}
.h2{height:65.075684px;}
.hc{height:69.255131px;}
.ha{height:69.269531px;}
.h6{height:72.884766px;}
.h5{height:93.708984px;}
.hb{height:1020.472500px;}
.h0{height:1020.472503px;}
.h1{height:1020.750000px;}
.w2{width:722.835000px;}
.w0{width:722.835022px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xd{left:80.894250px;}
.x5{left:82.980600px;}
.xb{left:84.012150px;}
.x1{left:85.039350px;}
.xa{left:93.940200px;}
.x6{left:103.724850px;}
.x4{left:105.780600px;}
.xc{left:106.855800px;}
.x8{left:122.931900px;}
.x7{left:126.537150px;}
.x3{left:231.330450px;}
.x2{left:233.415450px;}
.x9{left:531.411900px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.413867pt;}
.v3{vertical-align:14.944533pt;}
.ls13{letter-spacing:-3.733333pt;}
.ls33{letter-spacing:-2.866667pt;}
.ls37{letter-spacing:-2.533333pt;}
.ls3a{letter-spacing:-2.392000pt;}
.ls38{letter-spacing:-2.330667pt;}
.ls10{letter-spacing:-1.656000pt;}
.ls1f{letter-spacing:-1.600000pt;}
.ls20{letter-spacing:-1.546667pt;}
.ls28{letter-spacing:-1.440000pt;}
.ls1b{letter-spacing:-1.288000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-1.226667pt;}
.ls45{letter-spacing:-1.120000pt;}
.ls2b{letter-spacing:-1.013333pt;}
.ls14{letter-spacing:-0.981333pt;}
.lsd{letter-spacing:-0.920000pt;}
.ls1e{letter-spacing:-0.906667pt;}
.ls11{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.746667pt;}
.ls35{letter-spacing:-0.736000pt;}
.lsb{letter-spacing:-0.733333pt;}
.ls27{letter-spacing:-0.693333pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.586667pt;}
.ls30{letter-spacing:-0.552000pt;}
.ls42{letter-spacing:-0.504000pt;}
.ls3c{letter-spacing:-0.490667pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.373333pt;}
.ls2f{letter-spacing:-0.368000pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.184000pt;}
.ls2c{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.122667pt;}
.ls7{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.000267pt;}
.ls19{letter-spacing:0.010667pt;}
.ls29{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls43{letter-spacing:0.224000pt;}
.ls2a{letter-spacing:0.266667pt;}
.ls41{letter-spacing:0.600000pt;}
.ls44{letter-spacing:0.672000pt;}
.ls3d{letter-spacing:0.736000pt;}
.ls2e{letter-spacing:1.120000pt;}
.ls9{letter-spacing:1.866667pt;}
.lsa{letter-spacing:2.133333pt;}
.ls39{letter-spacing:3.618667pt;}
.ls1{letter-spacing:3.733333pt;}
.ls5{letter-spacing:5.120000pt;}
.ls6{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls3f{letter-spacing:5.600000pt;}
.ls3e{letter-spacing:7.840000pt;}
.ls18{letter-spacing:345.706667pt;}
.ls1a{letter-spacing:389.653333pt;}
.ls17{letter-spacing:410.133333pt;}
.ls16{letter-spacing:416.266667pt;}
.ls40{letter-spacing:448.699733pt;}
.ls8{letter-spacing:455.274667pt;}
.ls36{letter-spacing:457.088000pt;}
.ls31{letter-spacing:457.414933pt;}
.ls12{letter-spacing:458.268267pt;}
.ls3b{letter-spacing:880.020267pt;}
.lse{letter-spacing:880.460267pt;}
.ls15{letter-spacing:882.793600pt;}
.ls34{letter-spacing:886.393600pt;}
.ls0{letter-spacing:888.153600pt;}
.ws45{word-spacing:-23.576000pt;}
.ws4c{word-spacing:-20.320000pt;}
.ws3{word-spacing:-20.213333pt;}
.ws0{word-spacing:-20.106667pt;}
.ws48{word-spacing:-19.333333pt;}
.ws9{word-spacing:-18.000000pt;}
.ws10{word-spacing:-17.234667pt;}
.ws31{word-spacing:-16.682667pt;}
.ws17{word-spacing:-16.253333pt;}
.ws3e{word-spacing:-16.200000pt;}
.ws2d{word-spacing:-16.106667pt;}
.ws44{word-spacing:-15.885333pt;}
.ws39{word-spacing:-15.866667pt;}
.ws46{word-spacing:-15.736000pt;}
.wsc{word-spacing:-15.149333pt;}
.ws16{word-spacing:-15.000000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws3f{word-spacing:-14.842667pt;}
.ws30{word-spacing:-14.781333pt;}
.ws43{word-spacing:-14.658667pt;}
.ws40{word-spacing:-14.597333pt;}
.ws3b{word-spacing:-14.413333pt;}
.ws4a{word-spacing:-14.056000pt;}
.ws18{word-spacing:-13.861333pt;}
.ws4b{word-spacing:-13.832000pt;}
.ws12{word-spacing:-13.493333pt;}
.ws26{word-spacing:-13.440000pt;}
.ws25{word-spacing:-13.333333pt;}
.ws49{word-spacing:-13.328000pt;}
.ws28{word-spacing:-13.184000pt;}
.ws1{word-spacing:-13.173333pt;}
.wsb{word-spacing:-13.120000pt;}
.ws2c{word-spacing:-13.013333pt;}
.ws1f{word-spacing:-12.853333pt;}
.ws23{word-spacing:-12.800000pt;}
.ws1e{word-spacing:-12.693333pt;}
.ws21{word-spacing:-12.533333pt;}
.ws2f{word-spacing:-12.480000pt;}
.ws1d{word-spacing:-12.426667pt;}
.wsa{word-spacing:-12.357333pt;}
.ws29{word-spacing:-11.946667pt;}
.ws19{word-spacing:-11.893333pt;}
.ws13{word-spacing:-11.856000pt;}
.ws2b{word-spacing:-11.733333pt;}
.ws1b{word-spacing:-11.626667pt;}
.ws1a{word-spacing:-11.573333pt;}
.ws14{word-spacing:-11.088000pt;}
.ws3a{word-spacing:-10.047811pt;}
.ws11{word-spacing:-8.737227pt;}
.ws47{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws7{word-spacing:-3.733333pt;}
.ws42{word-spacing:-3.618667pt;}
.wsd{word-spacing:-2.133333pt;}
.ws3c{word-spacing:-1.901333pt;}
.ws4d{word-spacing:-0.672000pt;}
.ws32{word-spacing:-0.213333pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:0.053333pt;}
.ws15{word-spacing:0.122667pt;}
.ws50{word-spacing:0.160000pt;}
.wse{word-spacing:0.184000pt;}
.ws6{word-spacing:0.213333pt;}
.ws35{word-spacing:0.373333pt;}
.ws38{word-spacing:0.586667pt;}
.ws36{word-spacing:0.693333pt;}
.ws33{word-spacing:0.906667pt;}
.wsf{word-spacing:0.920000pt;}
.ws37{word-spacing:1.013333pt;}
.ws4f{word-spacing:1.120000pt;}
.ws34{word-spacing:1.546667pt;}
.ws41{word-spacing:2.330667pt;}
.ws3d{word-spacing:4.170667pt;}
.ws4e{word-spacing:5.712000pt;}
.ws20{word-spacing:313.792000pt;}
.ws1c{word-spacing:346.106667pt;}
.ws2a{word-spacing:362.234667pt;}
.ws2e{word-spacing:406.293333pt;}
.ws27{word-spacing:408.053333pt;}
.ws24{word-spacing:410.714667pt;}
.ws22{word-spacing:448.480000pt;}
._b{margin-left:-6.606400pt;}
._8{margin-left:-5.589867pt;}
._9{margin-left:-4.128000pt;}
._c{margin-left:-2.405333pt;}
._7{margin-left:-1.269333pt;}
._2{width:1.103467pt;}
._1{width:2.133333pt;}
._a{width:3.354667pt;}
._4{width:4.697067pt;}
._3{width:5.734933pt;}
._5{width:6.672000pt;}
._6{width:7.648533pt;}
._d{width:8.666667pt;}
._10{width:9.568000pt;}
._f{width:10.549333pt;}
._12{width:11.526400pt;}
._28{width:12.931467pt;}
._19{width:14.168000pt;}
._14{width:15.210667pt;}
._22{width:16.113867pt;}
._2a{width:19.824000pt;}
._29{width:21.451200pt;}
._25{width:29.189333pt;}
._13{width:38.617920pt;}
._27{width:63.376000pt;}
._e{width:76.048000pt;}
._15{width:77.784533pt;}
._2c{width:92.437333pt;}
._1b{width:104.187733pt;}
._2b{width:138.475200pt;}
._17{width:146.049067pt;}
._23{width:148.933867pt;}
._1f{width:156.010133pt;}
._24{width:158.315733pt;}
._26{width:160.400533pt;}
._1a{width:193.398400pt;}
._16{width:221.040000pt;}
._11{width:231.653333pt;}
._18{width:295.750400pt;}
._21{width:338.574933pt;}
._1d{width:341.645333pt;}
._1e{width:373.208533pt;}
._20{width:406.635200pt;}
._1c{width:438.669867pt;}
._0{width:514.133333pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fsc{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.ydc{bottom:94.338533pt;}
.y102{bottom:94.369200pt;}
.y48{bottom:94.369867pt;}
.y95{bottom:94.371200pt;}
.y20{bottom:94.455333pt;}
.y121{bottom:94.474533pt;}
.yba{bottom:94.477600pt;}
.y59{bottom:94.485733pt;}
.y13e{bottom:94.513200pt;}
.y74{bottom:97.150933pt;}
.yb9{bottom:109.813600pt;}
.y1f{bottom:112.055333pt;}
.y94{bottom:112.479867pt;}
.y58{bottom:112.484400pt;}
.y13d{bottom:112.486533pt;}
.y101{bottom:112.523867pt;}
.y47{bottom:112.662533pt;}
.ydb{bottom:112.815200pt;}
.y120{bottom:120.724533pt;}
.yb8{bottom:125.149600pt;}
.y1e{bottom:129.655333pt;}
.y13c{bottom:130.459867pt;}
.y93{bottom:130.588533pt;}
.y100{bottom:130.678533pt;}
.y46{bottom:130.955200pt;}
.y73{bottom:136.305200pt;}
.y11f{bottom:139.414533pt;}
.yb7{bottom:140.485600pt;}
.y1d{bottom:147.255333pt;}
.y13b{bottom:148.433200pt;}
.y92{bottom:148.697200pt;}
.yff{bottom:148.833200pt;}
.y45{bottom:149.247867pt;}
.yda{bottom:149.753200pt;}
.y57{bottom:151.613067pt;}
.y72{bottom:155.165200pt;}
.yb6{bottom:158.484267pt;}
.y15f{bottom:163.504667pt;}
.y1c{bottom:164.855333pt;}
.y11e{bottom:165.664533pt;}
.y13a{bottom:166.406533pt;}
.y91{bottom:166.805867pt;}
.yfe{bottom:166.987867pt;}
.y44{bottom:167.540533pt;}
.yd9{bottom:168.229867pt;}
.y56{bottom:169.905733pt;}
.y71{bottom:174.025200pt;}
.yb5{bottom:174.929067pt;}
.y15e{bottom:181.504667pt;}
.y11d{bottom:184.354533pt;}
.y90{bottom:184.914533pt;}
.yfd{bottom:185.142533pt;}
.y43{bottom:185.833200pt;}
.yd8{bottom:186.706533pt;}
.y55{bottom:188.201600pt;}
.yb4{bottom:190.265067pt;}
.y70{bottom:192.885200pt;}
.y1b{bottom:193.788667pt;}
.y139{bottom:195.726533pt;}
.y15d{bottom:199.504667pt;}
.y8f{bottom:203.023200pt;}
.yfc{bottom:203.297200pt;}
.y42{bottom:204.125867pt;}
.yb3{bottom:208.263733pt;}
.y11c{bottom:210.604533pt;}
.y6f{bottom:211.745200pt;}
.y15c{bottom:217.504667pt;}
.y8e{bottom:221.131867pt;}
.yfb{bottom:221.451867pt;}
.y41{bottom:222.418533pt;}
.yd7{bottom:223.644533pt;}
.y54{bottom:224.786933pt;}
.y11b{bottom:229.294533pt;}
.y6e{bottom:230.605200pt;}
.y1a{bottom:237.842000pt;}
.y8d{bottom:239.240533pt;}
.yfa{bottom:239.606533pt;}
.y40{bottom:240.711200pt;}
.yd6{bottom:242.121200pt;}
.y53{bottom:243.079600pt;}
.y15b{bottom:246.838000pt;}
.yb2{bottom:247.409333pt;}
.y138{bottom:247.722133pt;}
.y6d{bottom:249.465200pt;}
.y11a{bottom:255.544533pt;}
.y19{bottom:256.775333pt;}
.y8c{bottom:257.349200pt;}
.yf9{bottom:257.761200pt;}
.y3f{bottom:259.003867pt;}
.yd5{bottom:260.597867pt;}
.yb1{bottom:266.545333pt;}
.y6c{bottom:268.325200pt;}
.y119{bottom:274.234533pt;}
.y8b{bottom:275.457867pt;}
.y18{bottom:275.708667pt;}
.yf8{bottom:275.915867pt;}
.y3e{bottom:277.296533pt;}
.yd4{bottom:279.074533pt;}
.y52{bottom:279.664933pt;}
.y15a{bottom:283.731333pt;}
.yb0{bottom:285.681333pt;}
.y6b{bottom:287.185200pt;}
.y8a{bottom:293.566533pt;}
.yf7{bottom:294.070533pt;}
.y17{bottom:294.574533pt;}
.y3d{bottom:295.589200pt;}
.yd3{bottom:297.551200pt;}
.y118{bottom:300.484533pt;}
.y159{bottom:301.064667pt;}
.yaf{bottom:304.817333pt;}
.y6a{bottom:306.045200pt;}
.y51{bottom:306.251600pt;}
.y89{bottom:311.675200pt;}
.y16{bottom:312.174533pt;}
.yf6{bottom:312.225200pt;}
.y3c{bottom:313.881867pt;}
.yd2{bottom:316.027867pt;}
.y137{bottom:317.431867pt;}
.y158{bottom:318.398000pt;}
.y117{bottom:319.174533pt;}
.yae{bottom:323.953333pt;}
.y69{bottom:324.905200pt;}
.y15{bottom:329.774533pt;}
.y88{bottom:329.783867pt;}
.y3b{bottom:332.174533pt;}
.yd1{bottom:334.504533pt;}
.y157{bottom:335.731333pt;}
.y136{bottom:336.079867pt;}
.yad{bottom:343.089333pt;}
.y68{bottom:343.765200pt;}
.y116{bottom:345.424533pt;}
.y14{bottom:347.374533pt;}
.yf5{bottom:348.534533pt;}
.y3a{bottom:350.467200pt;}
.y156{bottom:353.064667pt;}
.yac{bottom:362.225333pt;}
.y135{bottom:362.287867pt;}
.y13{bottom:364.974533pt;}
.y87{bottom:365.985867pt;}
.yf4{bottom:366.689200pt;}
.y39{bottom:368.759867pt;}
.y155{bottom:370.398000pt;}
.yd0{bottom:371.442533pt;}
.y134{bottom:380.935867pt;}
.yab{bottom:381.361333pt;}
.y12{bottom:382.574533pt;}
.y86{bottom:384.094533pt;}
.yf3{bottom:384.843867pt;}
.y38{bottom:387.052533pt;}
.y67{bottom:387.480533pt;}
.y154{bottom:387.731333pt;}
.ycf{bottom:389.919200pt;}
.y133{bottom:399.583867pt;}
.y11{bottom:400.174533pt;}
.yaa{bottom:400.508667pt;}
.yf2{bottom:402.998533pt;}
.y153{bottom:405.064667pt;}
.y37{bottom:405.345200pt;}
.yce{bottom:408.395867pt;}
.y115{bottom:409.883200pt;}
.y10{bottom:417.774533pt;}
.ya9{bottom:419.644667pt;}
.y85{bottom:420.296533pt;}
.yf1{bottom:421.153200pt;}
.y152{bottom:422.398000pt;}
.y36{bottom:423.637867pt;}
.y66{bottom:425.200533pt;}
.y132{bottom:425.791867pt;}
.ycd{bottom:426.872533pt;}
.y114{bottom:428.574533pt;}
.yf{bottom:435.374533pt;}
.y84{bottom:438.405200pt;}
.ya8{bottom:438.780667pt;}
.yf0{bottom:439.307867pt;}
.y151{bottom:439.731333pt;}
.y35{bottom:441.930533pt;}
.y65{bottom:444.060533pt;}
.y131{bottom:444.439867pt;}
.ycc{bottom:445.349200pt;}
.y113{bottom:447.265867pt;}
.ye{bottom:452.974533pt;}
.y83{bottom:456.513867pt;}
.y150{bottom:457.064667pt;}
.yef{bottom:457.462533pt;}
.ya7{bottom:457.916667pt;}
.y34{bottom:460.223200pt;}
.ycb{bottom:463.825867pt;}
.y112{bottom:465.957200pt;}
.yd{bottom:470.574533pt;}
.y130{bottom:470.647867pt;}
.y82{bottom:474.622533pt;}
.yee{bottom:475.617200pt;}
.ya6{bottom:477.052667pt;}
.y33{bottom:478.515867pt;}
.y64{bottom:481.780533pt;}
.yca{bottom:482.302533pt;}
.y111{bottom:484.648533pt;}
.yc{bottom:488.174533pt;}
.y12f{bottom:489.295867pt;}
.y14f{bottom:491.731333pt;}
.yed{bottom:493.771867pt;}
.ya5{bottom:496.225200pt;}
.y32{bottom:496.808533pt;}
.yc9{bottom:500.779200pt;}
.y110{bottom:503.339867pt;}
.yb{bottom:505.774533pt;}
.y14e{bottom:509.064667pt;}
.yec{bottom:511.926533pt;}
.y31{bottom:515.101200pt;}
.ya4{bottom:515.361200pt;}
.y12e{bottom:515.503867pt;}
.y81{bottom:517.624400pt;}
.yc8{bottom:519.255867pt;}
.y63{bottom:519.500533pt;}
.y10f{bottom:522.031200pt;}
.yeb{bottom:530.081200pt;}
.y30{bottom:533.393867pt;}
.y12d{bottom:534.151867pt;}
.ya3{bottom:534.497200pt;}
.ya{bottom:534.707867pt;}
.yc7{bottom:537.732533pt;}
.y80{bottom:537.830267pt;}
.y10e{bottom:540.722533pt;}
.y14d{bottom:543.731333pt;}
.yea{bottom:548.235867pt;}
.y2f{bottom:551.686533pt;}
.ya2{bottom:553.633200pt;}
.yc6{bottom:556.209200pt;}
.y62{bottom:557.220533pt;}
.y7f{bottom:558.036000pt;}
.y10d{bottom:559.413867pt;}
.y12c{bottom:560.359867pt;}
.y14c{bottom:561.064667pt;}
.ye9{bottom:566.390533pt;}
.y2e{bottom:569.979200pt;}
.ya1{bottom:572.769200pt;}
.yc5{bottom:574.685867pt;}
.y61{bottom:576.080533pt;}
.y10c{bottom:578.105200pt;}
.y7e{bottom:578.241733pt;}
.y14b{bottom:578.398000pt;}
.y12b{bottom:579.007867pt;}
.ye8{bottom:584.545200pt;}
.y9{bottom:586.318533pt;}
.y2d{bottom:588.271867pt;}
.ya0{bottom:591.905200pt;}
.yc4{bottom:593.162533pt;}
.y14a{bottom:595.731333pt;}
.y10b{bottom:596.796533pt;}
.y50{bottom:597.106267pt;}
.y12a{bottom:597.655867pt;}
.y7d{bottom:598.447467pt;}
.ye7{bottom:602.699867pt;}
.y9f{bottom:611.041200pt;}
.yc3{bottom:611.639200pt;}
.y149{bottom:613.064667pt;}
.y60{bottom:613.800533pt;}
.y4f{bottom:615.398933pt;}
.y10a{bottom:615.487867pt;}
.y7c{bottom:618.659067pt;}
.ye6{bottom:620.854533pt;}
.y129{bottom:623.863867pt;}
.y2c{bottom:624.843333pt;}
.y8{bottom:629.467067pt;}
.yc2{bottom:630.115867pt;}
.y9e{bottom:630.177200pt;}
.y148{bottom:630.398000pt;}
.y5f{bottom:632.660533pt;}
.y4e{bottom:633.691600pt;}
.y7b{bottom:638.859067pt;}
.ye5{bottom:639.009200pt;}
.y2b{bottom:643.803333pt;}
.y147{bottom:647.731333pt;}
.yc1{bottom:648.592533pt;}
.y9d{bottom:649.313200pt;}
.y128{bottom:650.071867pt;}
.y109{bottom:652.870533pt;}
.ye4{bottom:657.163867pt;}
.y7{bottom:657.739067pt;}
.y4d{bottom:658.944800pt;}
.y7a{bottom:659.064800pt;}
.y2a{bottom:662.718000pt;}
.y146{bottom:665.064667pt;}
.yc0{bottom:667.069200pt;}
.y9c{bottom:668.449200pt;}
.y127{bottom:668.719867pt;}
.y5e{bottom:670.380533pt;}
.y108{bottom:671.561867pt;}
.ye3{bottom:675.318533pt;}
.y79{bottom:679.270533pt;}
.y29{bottom:680.344667pt;}
.y145{bottom:682.398000pt;}
.ybf{bottom:685.545867pt;}
.y9b{bottom:687.585200pt;}
.ye2{bottom:693.473200pt;}
.y126{bottom:694.927867pt;}
.y28{bottom:697.971333pt;}
.y78{bottom:699.476400pt;}
.y144{bottom:699.731333pt;}
.ybe{bottom:704.022533pt;}
.y9a{bottom:706.721200pt;}
.y5d{bottom:708.100533pt;}
.y107{bottom:708.944533pt;}
.ye1{bottom:711.627867pt;}
.y6{bottom:712.439733pt;}
.y125{bottom:713.575867pt;}
.y27{bottom:715.598000pt;}
.y143{bottom:717.064667pt;}
.y77{bottom:719.682133pt;}
.ybd{bottom:722.499200pt;}
.y99{bottom:725.857200pt;}
.y5c{bottom:726.960533pt;}
.y106{bottom:727.635867pt;}
.ye0{bottom:729.782533pt;}
.y26{bottom:733.224667pt;}
.y142{bottom:734.398000pt;}
.y5{bottom:738.933067pt;}
.y124{bottom:739.783867pt;}
.y76{bottom:739.888000pt;}
.y98{bottom:744.993200pt;}
.y105{bottom:746.327200pt;}
.y4c{bottom:747.523200pt;}
.ydf{bottom:747.937200pt;}
.y25{bottom:750.851333pt;}
.y141{bottom:751.731333pt;}
.y4{bottom:757.866400pt;}
.y123{bottom:758.431867pt;}
.y97{bottom:764.129200pt;}
.y5b{bottom:764.680533pt;}
.y104{bottom:765.018533pt;}
.ybc{bottom:765.447867pt;}
.y4b{bottom:765.815867pt;}
.yde{bottom:766.091867pt;}
.y24{bottom:768.478000pt;}
.y140{bottom:769.064667pt;}
.y96{bottom:783.265200pt;}
.y5a{bottom:783.541200pt;}
.y103{bottom:783.709867pt;}
.ybb{bottom:783.924533pt;}
.y4a{bottom:784.108533pt;}
.ydd{bottom:784.246533pt;}
.y75{bottom:784.292533pt;}
.y3{bottom:784.359733pt;}
.y122{bottom:784.639867pt;}
.y23{bottom:786.104667pt;}
.y13f{bottom:786.398000pt;}
.y49{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.hf{height:30.997771pt;}
.h8{height:37.020833pt;}
.hd{height:37.536833pt;}
.h11{height:41.648438pt;}
.h10{height:44.505208pt;}
.h4{height:46.276042pt;}
.he{height:48.187500pt;}
.h3{height:48.589844pt;}
.h9{height:53.217448pt;}
.h7{height:53.541667pt;}
.h12{height:56.218750pt;}
.h2{height:57.845052pt;}
.hc{height:61.560117pt;}
.ha{height:61.572917pt;}
.h6{height:64.786458pt;}
.h5{height:83.296875pt;}
.hb{height:907.086667pt;}
.h0{height:907.086669pt;}
.h1{height:907.333333pt;}
.w2{width:642.520000pt;}
.w0{width:642.520020pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xd{left:71.906000pt;}
.x5{left:73.760533pt;}
.xb{left:74.677467pt;}
.x1{left:75.590533pt;}
.xa{left:83.502400pt;}
.x6{left:92.199867pt;}
.x4{left:94.027200pt;}
.xc{left:94.982933pt;}
.x8{left:109.272800pt;}
.x7{left:112.477467pt;}
.x3{left:205.627067pt;}
.x2{left:207.480400pt;}
.x9{left:472.366133pt;}
}




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