
    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_7679211b91df081c10c3373e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_45d8bbb1b0c93cd0ac5390b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e35f51bd54caf8cbb1611769.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_583b5d4bc80fc86db968b7ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_5071c93095aa2758b8f1b193.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_37404a917649767fd836f4e0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_145efdc678e50b6155afc056.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_f586caaed868ea0c064b7d7b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_79e99c4c6587367781fc95bf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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_c705d472043799dcd4f43c6e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_4b4dd04a604897e4ed1988db.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_04bf1c2cb76709c52923d2ea.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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_18757654272593e06346fd80.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_22f5e0ec6ba6f32a4ab372c2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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_6ab7aac258526046f9e5c52c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;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_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-4.680000px;}
.ls8{letter-spacing:-0.127200px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.lsf{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls13{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.ls10{letter-spacing:55.386720px;}
.lsc{letter-spacing:64.026720px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws6{word-spacing:-10.260000px;}
.ws3{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._1b{margin-left:-8.190720px;}
._4{margin-left:-5.557680px;}
._d{margin-left:-4.302720px;}
._2{margin-left:-3.210240px;}
._3{margin-left:-2.106000px;}
._0{margin-left:-1.086000px;}
._1{width:1.188000px;}
._7{width:2.412000px;}
._9{width:3.449040px;}
._6{width:4.769040px;}
._5{width:5.827440px;}
._14{width:7.087920px;}
._c{width:8.784720px;}
._8{width:10.458000px;}
._e{width:11.768640px;}
._f{width:13.685040px;}
._1a{width:15.973680px;}
._a{width:17.053200px;}
._11{width:18.686880px;}
._12{width:20.684160px;}
._13{width:23.911200px;}
._b{width:25.591680px;}
._10{width:26.617680px;}
._19{width:29.050560px;}
._16{width:84.261600px;}
._15{width:85.755600px;}
._18{width:90.185040px;}
._17{width:91.671840px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.240000px;}
.y3{bottom:3.636000px;}
.y4b{bottom:3.960000px;}
.y18{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y49{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.680000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.y45{bottom:20.565000px;}
.y4a{bottom:22.140000px;}
.y48{bottom:25.200000px;}
.y17{bottom:29.385000px;}
.yb{bottom:30.060000px;}
.y44{bottom:37.845000px;}
.y5{bottom:44.820000px;}
.y16{bottom:45.945000px;}
.ya{bottom:46.440000px;}
.y43{bottom:55.125000px;}
.y15{bottom:62.325000px;}
.y1{bottom:67.320000px;}
.y42{bottom:72.225000px;}
.y9{bottom:73.260000px;}
.y14{bottom:75.465000px;}
.y41{bottom:89.505000px;}
.y8{bottom:92.910000px;}
.y13{bottom:93.825000px;}
.y40{bottom:106.785000px;}
.y7{bottom:111.270000px;}
.ybc{bottom:112.536000px;}
.y12{bottom:112.725000px;}
.yf7{bottom:116.856000px;}
.y91{bottom:117.936000px;}
.y131{bottom:118.836000px;}
.y17e{bottom:123.336000px;}
.y3f{bottom:124.065000px;}
.ybb{bottom:130.896000px;}
.yf6{bottom:134.136000px;}
.y54{bottom:134.496000px;}
.y90{bottom:135.216000px;}
.y130{bottom:137.196000px;}
.y11{bottom:138.465000px;}
.y17d{bottom:140.616000px;}
.y3e{bottom:141.345000px;}
.y165{bottom:142.776000px;}
.yba{bottom:148.176000px;}
.yf5{bottom:151.410000px;}
.y53{bottom:151.770000px;}
.y8f{bottom:152.490000px;}
.y12f{bottom:155.370000px;}
.y17c{bottom:157.890000px;}
.y3d{bottom:158.625000px;}
.y164{bottom:160.050000px;}
.y10{bottom:162.945000px;}
.yb9{bottom:165.450000px;}
.yf4{bottom:168.690000px;}
.y52{bottom:169.050000px;}
.y8e{bottom:170.850000px;}
.y12e{bottom:172.650000px;}
.y17b{bottom:175.170000px;}
.y3c{bottom:175.725000px;}
.y163{bottom:177.330000px;}
.yb8{bottom:182.730000px;}
.yf3{bottom:185.970000px;}
.y51{bottom:186.330000px;}
.y8d{bottom:189.210000px;}
.y12d{bottom:189.930000px;}
.y17a{bottom:192.450000px;}
.y3b{bottom:193.005000px;}
.y162{bottom:194.610000px;}
.yb7{bottom:200.010000px;}
.yf2{bottom:203.070000px;}
.y50{bottom:203.610000px;}
.y12c{bottom:207.210000px;}
.y8c{bottom:207.390000px;}
.y179{bottom:209.550000px;}
.y3a{bottom:210.285000px;}
.y161{bottom:211.710000px;}
.yb6{bottom:217.110000px;}
.yf1{bottom:220.350000px;}
.y4f{bottom:220.710000px;}
.y12b{bottom:225.570000px;}
.y8b{bottom:225.750000px;}
.y178{bottom:226.830000px;}
.y39{bottom:227.565000px;}
.y160{bottom:228.990000px;}
.yb5{bottom:234.390000px;}
.yf0{bottom:237.630000px;}
.y4e{bottom:237.990000px;}
.y12a{bottom:243.930000px;}
.y8a{bottom:244.110000px;}
.y38{bottom:244.845000px;}
.y15f{bottom:246.270000px;}
.y29{bottom:251.325000px;}
.yb4{bottom:251.670000px;}
.yef{bottom:254.910000px;}
.y4d{bottom:255.270000px;}
.y129{bottom:261.030000px;}
.y89{bottom:261.390000px;}
.y37{bottom:262.125000px;}
.y15e{bottom:263.550000px;}
.y28{bottom:266.625000px;}
.yb3{bottom:268.950000px;}
.yee{bottom:272.190000px;}
.y4c{bottom:272.550000px;}
.y128{bottom:278.310000px;}
.y88{bottom:278.670000px;}
.y36{bottom:279.225000px;}
.y15d{bottom:280.830000px;}
.y27{bottom:284.295000px;}
.yb2{bottom:286.230000px;}
.y47{bottom:286.590000px;}
.yed{bottom:289.470000px;}
.y87{bottom:295.950000px;}
.y35{bottom:296.535000px;}
.y127{bottom:296.670000px;}
.y15c{bottom:297.930000px;}
.y26{bottom:301.575000px;}
.yb1{bottom:303.510000px;}
.yec{bottom:306.570000px;}
.y86{bottom:313.050000px;}
.y34{bottom:313.815000px;}
.y126{bottom:315.030000px;}
.y15b{bottom:315.210000px;}
.y25{bottom:318.675000px;}
.yb0{bottom:320.610000px;}
.y1b{bottom:323.130000px;}
.yeb{bottom:323.850000px;}
.y177{bottom:330.330000px;}
.y33{bottom:331.095000px;}
.y85{bottom:331.410000px;}
.y125{bottom:332.310000px;}
.y15a{bottom:332.490000px;}
.y24{bottom:336.495000px;}
.yaf{bottom:337.935000px;}
.yea{bottom:341.175000px;}
.y176{bottom:347.655000px;}
.y32{bottom:348.375000px;}
.y124{bottom:349.455000px;}
.y84{bottom:349.815000px;}
.y23{bottom:353.955000px;}
.yae{bottom:355.215000px;}
.ye9{bottom:358.455000px;}
.y175{bottom:364.935000px;}
.y31{bottom:365.475000px;}
.y159{bottom:367.095000px;}
.y123{bottom:367.815000px;}
.y83{bottom:368.175000px;}
.y22{bottom:371.415000px;}
.yad{bottom:373.575000px;}
.ye8{bottom:375.735000px;}
.y174{bottom:382.215000px;}
.y30{bottom:382.755000px;}
.y158{bottom:384.375000px;}
.y122{bottom:386.175000px;}
.y82{bottom:386.535000px;}
.y21{bottom:388.695000px;}
.yac{bottom:391.935000px;}
.ye7{bottom:393.015000px;}
.y173{bottom:399.315000px;}
.y2f{bottom:400.035000px;}
.y157{bottom:401.475000px;}
.y121{bottom:403.455000px;}
.y81{bottom:404.715000px;}
.y20{bottom:406.155000px;}
.yab{bottom:409.035000px;}
.ye6{bottom:410.115000px;}
.y172{bottom:416.595000px;}
.y2e{bottom:417.315000px;}
.y156{bottom:418.755000px;}
.y120{bottom:420.735000px;}
.y80{bottom:421.995000px;}
.y1f{bottom:423.435000px;}
.yaa{bottom:426.315000px;}
.ye5{bottom:427.395000px;}
.y171{bottom:433.875000px;}
.y2d{bottom:434.595000px;}
.y155{bottom:436.035000px;}
.y11f{bottom:438.015000px;}
.y7f{bottom:439.275000px;}
.ya9{bottom:443.595000px;}
.y1e{bottom:443.775000px;}
.ye4{bottom:444.675000px;}
.y170{bottom:451.155000px;}
.y2c{bottom:451.875000px;}
.y154{bottom:453.315000px;}
.y11e{bottom:455.115000px;}
.y7e{bottom:456.555000px;}
.ya8{bottom:461.955000px;}
.y16f{bottom:468.435000px;}
.y2b{bottom:468.975000px;}
.y153{bottom:470.595000px;}
.y1d{bottom:471.315000px;}
.y11d{bottom:472.395000px;}
.y7d{bottom:473.835000px;}
.ye3{bottom:479.235000px;}
.ya7{bottom:480.315000px;}
.y16e{bottom:485.715000px;}
.y2a{bottom:486.255000px;}
.y152{bottom:487.875000px;}
.y1c{bottom:488.955000px;}
.y11c{bottom:489.675000px;}
.y7c{bottom:490.935000px;}
.ye2{bottom:496.515000px;}
.ya6{bottom:498.495000px;}
.y16d{bottom:502.815000px;}
.y151{bottom:504.975000px;}
.y11b{bottom:506.955000px;}
.y7b{bottom:508.215000px;}
.ye1{bottom:513.615000px;}
.ya5{bottom:516.855000px;}
.y16c{bottom:520.095000px;}
.y150{bottom:522.255000px;}
.y11a{bottom:525.315000px;}
.y7a{bottom:525.495000px;}
.ye0{bottom:530.895000px;}
.ya4{bottom:535.215000px;}
.y16b{bottom:537.375000px;}
.y14f{bottom:539.535000px;}
.y119{bottom:542.415000px;}
.y79{bottom:542.775000px;}
.ydf{bottom:548.175000px;}
.ya3{bottom:553.575000px;}
.y16a{bottom:554.655000px;}
.y14e{bottom:556.815000px;}
.y118{bottom:559.695000px;}
.y78{bottom:560.055000px;}
.yde{bottom:565.455000px;}
.ya2{bottom:571.935000px;}
.y14d{bottom:574.095000px;}
.y117{bottom:576.975000px;}
.y77{bottom:577.335000px;}
.ydd{bottom:582.735000px;}
.ya1{bottom:589.215000px;}
.y14c{bottom:591.195000px;}
.y116{bottom:594.255000px;}
.y76{bottom:594.435000px;}
.ydc{bottom:599.835000px;}
.ya0{bottom:606.345000px;}
.y14b{bottom:608.505000px;}
.y115{bottom:611.565000px;}
.y75{bottom:611.745000px;}
.ydb{bottom:617.145000px;}
.y9f{bottom:623.625000px;}
.y14a{bottom:625.785000px;}
.y74{bottom:629.025000px;}
.y114{bottom:629.925000px;}
.yda{bottom:635.505000px;}
.y9e{bottom:640.905000px;}
.y149{bottom:643.065000px;}
.y73{bottom:646.305000px;}
.y113{bottom:648.105000px;}
.yd9{bottom:653.865000px;}
.y9d{bottom:658.185000px;}
.y148{bottom:660.345000px;}
.y72{bottom:663.585000px;}
.y112{bottom:665.385000px;}
.yd8{bottom:671.145000px;}
.y9c{bottom:675.465000px;}
.y147{bottom:677.625000px;}
.y71{bottom:680.865000px;}
.y111{bottom:682.665000px;}
.yd7{bottom:688.425000px;}
.y9b{bottom:692.565000px;}
.y146{bottom:694.725000px;}
.y70{bottom:697.965000px;}
.y110{bottom:701.025000px;}
.yd6{bottom:705.525000px;}
.y9a{bottom:709.845000px;}
.y145{bottom:712.005000px;}
.y6f{bottom:715.245000px;}
.y10f{bottom:719.385000px;}
.yd5{bottom:723.885000px;}
.y99{bottom:727.125000px;}
.y144{bottom:729.285000px;}
.y6e{bottom:732.525000px;}
.y10e{bottom:737.565000px;}
.yd4{bottom:742.245000px;}
.y98{bottom:744.405000px;}
.y143{bottom:746.565000px;}
.y6d{bottom:749.805000px;}
.y10d{bottom:754.845000px;}
.yd3{bottom:759.525000px;}
.y97{bottom:761.685000px;}
.y142{bottom:763.845000px;}
.y6c{bottom:767.085000px;}
.y10c{bottom:769.605000px;}
.yd2{bottom:776.805000px;}
.y96{bottom:778.965000px;}
.y141{bottom:781.125000px;}
.y6b{bottom:784.365000px;}
.y10b{bottom:787.605000px;}
.yd1{bottom:793.905000px;}
.y169{bottom:796.065000px;}
.y95{bottom:797.145000px;}
.y140{bottom:798.225000px;}
.y6a{bottom:801.465000px;}
.y10a{bottom:805.605000px;}
.yd0{bottom:812.265000px;}
.y168{bottom:813.345000px;}
.y94{bottom:815.505000px;}
.y69{bottom:818.745000px;}
.y19{bottom:823.425000px;}
.y109{bottom:826.845000px;}
.ycf{bottom:830.625000px;}
.y13f{bottom:832.785000px;}
.y93{bottom:833.865000px;}
.y68{bottom:836.025000px;}
.y108{bottom:844.125000px;}
.yce{bottom:848.985000px;}
.y13e{bottom:850.065000px;}
.y92{bottom:852.225000px;}
.yf{bottom:852.945000px;}
.y67{bottom:853.305000px;}
.y107{bottom:861.405000px;}
.ycd{bottom:867.345000px;}
.y66{bottom:870.630000px;}
.y106{bottom:878.730000px;}
.ycc{bottom:884.670000px;}
.y167{bottom:885.750000px;}
.y65{bottom:887.730000px;}
.y105{bottom:896.010000px;}
.ycb{bottom:901.770000px;}
.y166{bottom:903.930000px;}
.y64{bottom:905.010000px;}
.y104{bottom:914.190000px;}
.yca{bottom:919.050000px;}
.y63{bottom:922.290000px;}
.y103{bottom:932.550000px;}
.y13d{bottom:936.330000px;}
.yc9{bottom:937.410000px;}
.y62{bottom:939.570000px;}
.y102{bottom:949.830000px;}
.y13c{bottom:953.610000px;}
.yc8{bottom:954.690000px;}
.y61{bottom:956.850000px;}
.y101{bottom:967.110000px;}
.y13b{bottom:970.890000px;}
.yc7{bottom:971.970000px;}
.y60{bottom:974.130000px;}
.y100{bottom:984.390000px;}
.y13a{bottom:987.990000px;}
.yc6{bottom:989.070000px;}
.y5f{bottom:991.230000px;}
.yff{bottom:1002.570000px;}
.y139{bottom:1005.270000px;}
.yc5{bottom:1007.430000px;}
.y5e{bottom:1008.510000px;}
.yfe{bottom:1020.930000px;}
.y138{bottom:1022.550000px;}
.yc4{bottom:1024.710000px;}
.y5d{bottom:1025.790000px;}
.yd{bottom:1031.010000px;}
.yfd{bottom:1039.290000px;}
.y137{bottom:1039.830000px;}
.yc3{bottom:1041.990000px;}
.y5c{bottom:1043.070000px;}
.y6{bottom:1056.390000px;}
.yfc{bottom:1056.570000px;}
.y136{bottom:1057.110000px;}
.yc2{bottom:1059.270000px;}
.y5b{bottom:1060.350000px;}
.yfb{bottom:1071.330000px;}
.y135{bottom:1074.390000px;}
.yc1{bottom:1076.550000px;}
.y5a{bottom:1077.630000px;}
.yfa{bottom:1089.330000px;}
.y134{bottom:1091.490000px;}
.yc0{bottom:1093.650000px;}
.y59{bottom:1094.730000px;}
.yf9{bottom:1107.330000px;}
.y133{bottom:1108.770000px;}
.ybf{bottom:1110.930000px;}
.y58{bottom:1112.010000px;}
.yf8{bottom:1125.330000px;}
.y132{bottom:1127.130000px;}
.ybe{bottom:1128.210000px;}
.y57{bottom:1129.290000px;}
.ybd{bottom:1145.520000px;}
.y56{bottom:1146.600000px;}
.y55{bottom:1163.880000px;}
.h20{height:17.280000px;}
.h1f{height:17.316000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h1b{height:36.540000px;}
.h19{height:38.818125px;}
.h1d{height:42.164648px;}
.h1a{height:43.215117px;}
.h1e{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1c{height:48.088125px;}
.h18{height:49.255313px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:178.050000px;}
.h14{height:500.295000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:61.200000px;}
.w3{width:73.080000px;}
.we{width:104.220000px;}
.wc{width:104.256000px;}
.wf{width:120.276000px;}
.w10{width:141.156000px;}
.w5{width:151.950000px;}
.wb{width:157.710000px;}
.wa{width:177.870000px;}
.wd{width:182.550000px;}
.w8{width:216.075000px;}
.w12{width:263.010000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.xc{left:25.416000px;}
.xb{left:27.216000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x14{left:108.035987px;}
.xf{left:114.870000px;}
.x10{left:133.410000px;}
.x19{left:135.035987px;}
.xe{left:162.570000px;}
.xd{left:194.430000px;}
.x1a{left:202.710000px;}
.x11{left:215.175000px;}
.x5{left:232.950000px;}
.x15{left:260.310000px;}
.x8{left:272.235000px;}
.x12{left:297.075000px;}
.x6{left:331.995000px;}
.x1b{left:344.595000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x16{left:418.935000px;}
.x9{left:439.500000px;}
.x1c{left:486.465000px;}
.x17{left:523.905000px;}
.x1d{left:548.385000px;}
.x18{left:707.190000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-4.160000pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.lsf{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls13{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ls10{letter-spacing:49.232640pt;}
.lsc{letter-spacing:56.912640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws6{word-spacing:-9.120000pt;}
.ws3{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._1b{margin-left:-7.280640pt;}
._4{margin-left:-4.940160pt;}
._d{margin-left:-3.824640pt;}
._2{margin-left:-2.853547pt;}
._3{margin-left:-1.872000pt;}
._0{margin-left:-0.965333pt;}
._1{width:1.056000pt;}
._7{width:2.144000pt;}
._9{width:3.065813pt;}
._6{width:4.239147pt;}
._5{width:5.179947pt;}
._14{width:6.300373pt;}
._c{width:7.808640pt;}
._8{width:9.296000pt;}
._e{width:10.461013pt;}
._f{width:12.164480pt;}
._1a{width:14.198827pt;}
._a{width:15.158400pt;}
._11{width:16.610560pt;}
._12{width:18.385920pt;}
._13{width:21.254400pt;}
._b{width:22.748160pt;}
._10{width:23.660160pt;}
._19{width:25.822720pt;}
._16{width:74.899200pt;}
._15{width:76.227200pt;}
._18{width:80.164480pt;}
._17{width:81.486080pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.880000pt;}
.y3{bottom:3.232000pt;}
.y4b{bottom:3.520000pt;}
.y18{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y49{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.160000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.y45{bottom:18.280000pt;}
.y4a{bottom:19.680000pt;}
.y48{bottom:22.400000pt;}
.y17{bottom:26.120000pt;}
.yb{bottom:26.720000pt;}
.y44{bottom:33.640000pt;}
.y5{bottom:39.840000pt;}
.y16{bottom:40.840000pt;}
.ya{bottom:41.280000pt;}
.y43{bottom:49.000000pt;}
.y15{bottom:55.400000pt;}
.y1{bottom:59.840000pt;}
.y42{bottom:64.200000pt;}
.y9{bottom:65.120000pt;}
.y14{bottom:67.080000pt;}
.y41{bottom:79.560000pt;}
.y8{bottom:82.586667pt;}
.y13{bottom:83.400000pt;}
.y40{bottom:94.920000pt;}
.y7{bottom:98.906667pt;}
.ybc{bottom:100.032000pt;}
.y12{bottom:100.200000pt;}
.yf7{bottom:103.872000pt;}
.y91{bottom:104.832000pt;}
.y131{bottom:105.632000pt;}
.y17e{bottom:109.632000pt;}
.y3f{bottom:110.280000pt;}
.ybb{bottom:116.352000pt;}
.yf6{bottom:119.232000pt;}
.y54{bottom:119.552000pt;}
.y90{bottom:120.192000pt;}
.y130{bottom:121.952000pt;}
.y11{bottom:123.080000pt;}
.y17d{bottom:124.992000pt;}
.y3e{bottom:125.640000pt;}
.y165{bottom:126.912000pt;}
.yba{bottom:131.712000pt;}
.yf5{bottom:134.586667pt;}
.y53{bottom:134.906667pt;}
.y8f{bottom:135.546667pt;}
.y12f{bottom:138.106667pt;}
.y17c{bottom:140.346667pt;}
.y3d{bottom:141.000000pt;}
.y164{bottom:142.266667pt;}
.y10{bottom:144.840000pt;}
.yb9{bottom:147.066667pt;}
.yf4{bottom:149.946667pt;}
.y52{bottom:150.266667pt;}
.y8e{bottom:151.866667pt;}
.y12e{bottom:153.466667pt;}
.y17b{bottom:155.706667pt;}
.y3c{bottom:156.200000pt;}
.y163{bottom:157.626667pt;}
.yb8{bottom:162.426667pt;}
.yf3{bottom:165.306667pt;}
.y51{bottom:165.626667pt;}
.y8d{bottom:168.186667pt;}
.y12d{bottom:168.826667pt;}
.y17a{bottom:171.066667pt;}
.y3b{bottom:171.560000pt;}
.y162{bottom:172.986667pt;}
.yb7{bottom:177.786667pt;}
.yf2{bottom:180.506667pt;}
.y50{bottom:180.986667pt;}
.y12c{bottom:184.186667pt;}
.y8c{bottom:184.346667pt;}
.y179{bottom:186.266667pt;}
.y3a{bottom:186.920000pt;}
.y161{bottom:188.186667pt;}
.yb6{bottom:192.986667pt;}
.yf1{bottom:195.866667pt;}
.y4f{bottom:196.186667pt;}
.y12b{bottom:200.506667pt;}
.y8b{bottom:200.666667pt;}
.y178{bottom:201.626667pt;}
.y39{bottom:202.280000pt;}
.y160{bottom:203.546667pt;}
.yb5{bottom:208.346667pt;}
.yf0{bottom:211.226667pt;}
.y4e{bottom:211.546667pt;}
.y12a{bottom:216.826667pt;}
.y8a{bottom:216.986667pt;}
.y38{bottom:217.640000pt;}
.y15f{bottom:218.906667pt;}
.y29{bottom:223.400000pt;}
.yb4{bottom:223.706667pt;}
.yef{bottom:226.586667pt;}
.y4d{bottom:226.906667pt;}
.y129{bottom:232.026667pt;}
.y89{bottom:232.346667pt;}
.y37{bottom:233.000000pt;}
.y15e{bottom:234.266667pt;}
.y28{bottom:237.000000pt;}
.yb3{bottom:239.066667pt;}
.yee{bottom:241.946667pt;}
.y4c{bottom:242.266667pt;}
.y128{bottom:247.386667pt;}
.y88{bottom:247.706667pt;}
.y36{bottom:248.200000pt;}
.y15d{bottom:249.626667pt;}
.y27{bottom:252.706667pt;}
.yb2{bottom:254.426667pt;}
.y47{bottom:254.746667pt;}
.yed{bottom:257.306667pt;}
.y87{bottom:263.066667pt;}
.y35{bottom:263.586667pt;}
.y127{bottom:263.706667pt;}
.y15c{bottom:264.826667pt;}
.y26{bottom:268.066667pt;}
.yb1{bottom:269.786667pt;}
.yec{bottom:272.506667pt;}
.y86{bottom:278.266667pt;}
.y34{bottom:278.946667pt;}
.y126{bottom:280.026667pt;}
.y15b{bottom:280.186667pt;}
.y25{bottom:283.266667pt;}
.yb0{bottom:284.986667pt;}
.y1b{bottom:287.226667pt;}
.yeb{bottom:287.866667pt;}
.y177{bottom:293.626667pt;}
.y33{bottom:294.306667pt;}
.y85{bottom:294.586667pt;}
.y125{bottom:295.386667pt;}
.y15a{bottom:295.546667pt;}
.y24{bottom:299.106667pt;}
.yaf{bottom:300.386667pt;}
.yea{bottom:303.266667pt;}
.y176{bottom:309.026667pt;}
.y32{bottom:309.666667pt;}
.y124{bottom:310.626667pt;}
.y84{bottom:310.946667pt;}
.y23{bottom:314.626667pt;}
.yae{bottom:315.746667pt;}
.ye9{bottom:318.626667pt;}
.y175{bottom:324.386667pt;}
.y31{bottom:324.866667pt;}
.y159{bottom:326.306667pt;}
.y123{bottom:326.946667pt;}
.y83{bottom:327.266667pt;}
.y22{bottom:330.146667pt;}
.yad{bottom:332.066667pt;}
.ye8{bottom:333.986667pt;}
.y174{bottom:339.746667pt;}
.y30{bottom:340.226667pt;}
.y158{bottom:341.666667pt;}
.y122{bottom:343.266667pt;}
.y82{bottom:343.586667pt;}
.y21{bottom:345.506667pt;}
.yac{bottom:348.386667pt;}
.ye7{bottom:349.346667pt;}
.y173{bottom:354.946667pt;}
.y2f{bottom:355.586667pt;}
.y157{bottom:356.866667pt;}
.y121{bottom:358.626667pt;}
.y81{bottom:359.746667pt;}
.y20{bottom:361.026667pt;}
.yab{bottom:363.586667pt;}
.ye6{bottom:364.546667pt;}
.y172{bottom:370.306667pt;}
.y2e{bottom:370.946667pt;}
.y156{bottom:372.226667pt;}
.y120{bottom:373.986667pt;}
.y80{bottom:375.106667pt;}
.y1f{bottom:376.386667pt;}
.yaa{bottom:378.946667pt;}
.ye5{bottom:379.906667pt;}
.y171{bottom:385.666667pt;}
.y2d{bottom:386.306667pt;}
.y155{bottom:387.586667pt;}
.y11f{bottom:389.346667pt;}
.y7f{bottom:390.466667pt;}
.ya9{bottom:394.306667pt;}
.y1e{bottom:394.466667pt;}
.ye4{bottom:395.266667pt;}
.y170{bottom:401.026667pt;}
.y2c{bottom:401.666667pt;}
.y154{bottom:402.946667pt;}
.y11e{bottom:404.546667pt;}
.y7e{bottom:405.826667pt;}
.ya8{bottom:410.626667pt;}
.y16f{bottom:416.386667pt;}
.y2b{bottom:416.866667pt;}
.y153{bottom:418.306667pt;}
.y1d{bottom:418.946667pt;}
.y11d{bottom:419.906667pt;}
.y7d{bottom:421.186667pt;}
.ye3{bottom:425.986667pt;}
.ya7{bottom:426.946667pt;}
.y16e{bottom:431.746667pt;}
.y2a{bottom:432.226667pt;}
.y152{bottom:433.666667pt;}
.y1c{bottom:434.626667pt;}
.y11c{bottom:435.266667pt;}
.y7c{bottom:436.386667pt;}
.ye2{bottom:441.346667pt;}
.ya6{bottom:443.106667pt;}
.y16d{bottom:446.946667pt;}
.y151{bottom:448.866667pt;}
.y11b{bottom:450.626667pt;}
.y7b{bottom:451.746667pt;}
.ye1{bottom:456.546667pt;}
.ya5{bottom:459.426667pt;}
.y16c{bottom:462.306667pt;}
.y150{bottom:464.226667pt;}
.y11a{bottom:466.946667pt;}
.y7a{bottom:467.106667pt;}
.ye0{bottom:471.906667pt;}
.ya4{bottom:475.746667pt;}
.y16b{bottom:477.666667pt;}
.y14f{bottom:479.586667pt;}
.y119{bottom:482.146667pt;}
.y79{bottom:482.466667pt;}
.ydf{bottom:487.266667pt;}
.ya3{bottom:492.066667pt;}
.y16a{bottom:493.026667pt;}
.y14e{bottom:494.946667pt;}
.y118{bottom:497.506667pt;}
.y78{bottom:497.826667pt;}
.yde{bottom:502.626667pt;}
.ya2{bottom:508.386667pt;}
.y14d{bottom:510.306667pt;}
.y117{bottom:512.866667pt;}
.y77{bottom:513.186667pt;}
.ydd{bottom:517.986667pt;}
.ya1{bottom:523.746667pt;}
.y14c{bottom:525.506667pt;}
.y116{bottom:528.226667pt;}
.y76{bottom:528.386667pt;}
.ydc{bottom:533.186667pt;}
.ya0{bottom:538.973333pt;}
.y14b{bottom:540.893333pt;}
.y115{bottom:543.613333pt;}
.y75{bottom:543.773333pt;}
.ydb{bottom:548.573333pt;}
.y9f{bottom:554.333333pt;}
.y14a{bottom:556.253333pt;}
.y74{bottom:559.133333pt;}
.y114{bottom:559.933333pt;}
.yda{bottom:564.893333pt;}
.y9e{bottom:569.693333pt;}
.y149{bottom:571.613333pt;}
.y73{bottom:574.493333pt;}
.y113{bottom:576.093333pt;}
.yd9{bottom:581.213333pt;}
.y9d{bottom:585.053333pt;}
.y148{bottom:586.973333pt;}
.y72{bottom:589.853333pt;}
.y112{bottom:591.453333pt;}
.yd8{bottom:596.573333pt;}
.y9c{bottom:600.413333pt;}
.y147{bottom:602.333333pt;}
.y71{bottom:605.213333pt;}
.y111{bottom:606.813333pt;}
.yd7{bottom:611.933333pt;}
.y9b{bottom:615.613333pt;}
.y146{bottom:617.533333pt;}
.y70{bottom:620.413333pt;}
.y110{bottom:623.133333pt;}
.yd6{bottom:627.133333pt;}
.y9a{bottom:630.973333pt;}
.y145{bottom:632.893333pt;}
.y6f{bottom:635.773333pt;}
.y10f{bottom:639.453333pt;}
.yd5{bottom:643.453333pt;}
.y99{bottom:646.333333pt;}
.y144{bottom:648.253333pt;}
.y6e{bottom:651.133333pt;}
.y10e{bottom:655.613333pt;}
.yd4{bottom:659.773333pt;}
.y98{bottom:661.693333pt;}
.y143{bottom:663.613333pt;}
.y6d{bottom:666.493333pt;}
.y10d{bottom:670.973333pt;}
.yd3{bottom:675.133333pt;}
.y97{bottom:677.053333pt;}
.y142{bottom:678.973333pt;}
.y6c{bottom:681.853333pt;}
.y10c{bottom:684.093333pt;}
.yd2{bottom:690.493333pt;}
.y96{bottom:692.413333pt;}
.y141{bottom:694.333333pt;}
.y6b{bottom:697.213333pt;}
.y10b{bottom:700.093333pt;}
.yd1{bottom:705.693333pt;}
.y169{bottom:707.613333pt;}
.y95{bottom:708.573333pt;}
.y140{bottom:709.533333pt;}
.y6a{bottom:712.413333pt;}
.y10a{bottom:716.093333pt;}
.yd0{bottom:722.013333pt;}
.y168{bottom:722.973333pt;}
.y94{bottom:724.893333pt;}
.y69{bottom:727.773333pt;}
.y19{bottom:731.933333pt;}
.y109{bottom:734.973333pt;}
.ycf{bottom:738.333333pt;}
.y13f{bottom:740.253333pt;}
.y93{bottom:741.213333pt;}
.y68{bottom:743.133333pt;}
.y108{bottom:750.333333pt;}
.yce{bottom:754.653333pt;}
.y13e{bottom:755.613333pt;}
.y92{bottom:757.533333pt;}
.yf{bottom:758.173333pt;}
.y67{bottom:758.493333pt;}
.y107{bottom:765.693333pt;}
.ycd{bottom:770.973333pt;}
.y66{bottom:773.893333pt;}
.y106{bottom:781.093333pt;}
.ycc{bottom:786.373333pt;}
.y167{bottom:787.333333pt;}
.y65{bottom:789.093333pt;}
.y105{bottom:796.453333pt;}
.ycb{bottom:801.573333pt;}
.y166{bottom:803.493333pt;}
.y64{bottom:804.453333pt;}
.y104{bottom:812.613333pt;}
.yca{bottom:816.933333pt;}
.y63{bottom:819.813333pt;}
.y103{bottom:828.933333pt;}
.y13d{bottom:832.293333pt;}
.yc9{bottom:833.253333pt;}
.y62{bottom:835.173333pt;}
.y102{bottom:844.293333pt;}
.y13c{bottom:847.653333pt;}
.yc8{bottom:848.613333pt;}
.y61{bottom:850.533333pt;}
.y101{bottom:859.653333pt;}
.y13b{bottom:863.013333pt;}
.yc7{bottom:863.973333pt;}
.y60{bottom:865.893333pt;}
.y100{bottom:875.013333pt;}
.y13a{bottom:878.213333pt;}
.yc6{bottom:879.173333pt;}
.y5f{bottom:881.093333pt;}
.yff{bottom:891.173333pt;}
.y139{bottom:893.573333pt;}
.yc5{bottom:895.493333pt;}
.y5e{bottom:896.453333pt;}
.yfe{bottom:907.493333pt;}
.y138{bottom:908.933333pt;}
.yc4{bottom:910.853333pt;}
.y5d{bottom:911.813333pt;}
.yd{bottom:916.453333pt;}
.yfd{bottom:923.813333pt;}
.y137{bottom:924.293333pt;}
.yc3{bottom:926.213333pt;}
.y5c{bottom:927.173333pt;}
.y6{bottom:939.013333pt;}
.yfc{bottom:939.173333pt;}
.y136{bottom:939.653333pt;}
.yc2{bottom:941.573333pt;}
.y5b{bottom:942.533333pt;}
.yfb{bottom:952.293333pt;}
.y135{bottom:955.013333pt;}
.yc1{bottom:956.933333pt;}
.y5a{bottom:957.893333pt;}
.yfa{bottom:968.293333pt;}
.y134{bottom:970.213333pt;}
.yc0{bottom:972.133333pt;}
.y59{bottom:973.093333pt;}
.yf9{bottom:984.293333pt;}
.y133{bottom:985.573333pt;}
.ybf{bottom:987.493333pt;}
.y58{bottom:988.453333pt;}
.yf8{bottom:1000.293333pt;}
.y132{bottom:1001.893333pt;}
.ybe{bottom:1002.853333pt;}
.y57{bottom:1003.813333pt;}
.ybd{bottom:1018.240000pt;}
.y56{bottom:1019.200000pt;}
.y55{bottom:1034.560000pt;}
.h20{height:15.360000pt;}
.h1f{height:15.392000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h1b{height:32.480000pt;}
.h19{height:34.505000pt;}
.h1d{height:37.479688pt;}
.h1a{height:38.413438pt;}
.h1e{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h18{height:43.782500pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:158.266667pt;}
.h14{height:444.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:54.400000pt;}
.w3{width:64.960000pt;}
.we{width:92.640000pt;}
.wc{width:92.672000pt;}
.wf{width:106.912000pt;}
.w10{width:125.472000pt;}
.w5{width:135.066667pt;}
.wb{width:140.186667pt;}
.wa{width:158.106667pt;}
.wd{width:162.266667pt;}
.w8{width:192.066667pt;}
.w12{width:233.786667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.xc{left:22.592000pt;}
.xb{left:24.192000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x14{left:96.031988pt;}
.xf{left:102.106667pt;}
.x10{left:118.586667pt;}
.x19{left:120.031988pt;}
.xe{left:144.506667pt;}
.xd{left:172.826667pt;}
.x1a{left:180.186667pt;}
.x11{left:191.266667pt;}
.x5{left:207.066667pt;}
.x15{left:231.386667pt;}
.x8{left:241.986667pt;}
.x12{left:264.066667pt;}
.x6{left:295.106667pt;}
.x1b{left:306.306667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x16{left:372.386667pt;}
.x9{left:390.666667pt;}
.x1c{left:432.413333pt;}
.x17{left:465.693333pt;}
.x1d{left:487.453333pt;}
.x18{left:628.613333pt;}
.x3{left:656.933333pt;}
}




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