
    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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960449;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_985d9943a4c3fea84bc05282.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0122a09c81858ff189e66f31.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.726074;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_3b7402b4ad0b9209774b220b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930176;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_95238e1f5ec46c5b56b5d579.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_81eb3586d9d348c2b035cd89.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c29c54a59c7216f93c3e2c4a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_13376eac648bf3972b1edd03.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107422;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_ce7f33e59c80e37206cc1a17.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.774902;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_f7dd690a20e8dd1e19706694.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls1b{letter-spacing:-0.306600px;}
.ls10{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.253200px;}
.ls3{letter-spacing:-0.252000px;}
.ls9{letter-spacing:-0.106800px;}
.ls16{letter-spacing:-0.100200px;}
.lsd{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.017280px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.037440px;}
.lsf{letter-spacing:0.053280px;}
.ls22{letter-spacing:0.090720px;}
.ls1d{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.160560px;}
.ls7{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.413400px;}
.ls21{letter-spacing:0.433440px;}
.lsa{letter-spacing:0.612000px;}
.ls25{letter-spacing:0.613440px;}
.ls23{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.666720px;}
.ls12{letter-spacing:0.702720px;}
.ls20{letter-spacing:0.711360px;}
.ls1c{letter-spacing:0.732000px;}
.ls14{letter-spacing:0.882720px;}
.ls24{letter-spacing:0.979920px;}
.ls1e{letter-spacing:41.706720px;}
.ls5{letter-spacing:74.826720px;}
.lsc{letter-spacing:98.789760px;}
.lsb{letter-spacing:99.485760px;}
.ls6{letter-spacing:200.988000px;}
.ls8{letter-spacing:847.542720px;}
.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;}
}
.ws1{word-spacing:-32.344560px;}
.ws0{word-spacing:-29.052000px;}
.ws2{word-spacing:-28.800000px;}
.ws15{word-spacing:-20.304000px;}
.ws11{word-spacing:-20.160000px;}
.ws5{word-spacing:-17.225280px;}
.wsf{word-spacing:-17.026680px;}
.wse{word-spacing:-16.973280px;}
.ws10{word-spacing:-16.873080px;}
.ws16{word-spacing:-16.666560px;}
.ws4{word-spacing:-16.613280px;}
.ws8{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.513080px;}
.ws9{word-spacing:-16.506480px;}
.wsb{word-spacing:-16.360080px;}
.wsc{word-spacing:-16.353480px;}
.ws13{word-spacing:-16.306680px;}
.ws6{word-spacing:-15.174000px;}
.ws7{word-spacing:-15.012000px;}
.ws14{word-spacing:-11.540640px;}
.wsa{word-spacing:-10.808640px;}
.ws12{word-spacing:-10.791360px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-15.005760px;}
._a{margin-left:-13.856160px;}
._7{margin-left:-11.751120px;}
._9{margin-left:-10.006560px;}
._4{margin-left:-8.933280px;}
._3{margin-left:-7.141200px;}
._12{margin-left:-3.699120px;}
._5{margin-left:-2.371920px;}
._0{margin-left:-1.089600px;}
._1{width:1.137600px;}
._8{width:3.082800px;}
._c{width:4.108560px;}
._11{width:5.512800px;}
._d{width:6.596400px;}
._e{width:7.747680px;}
._10{width:9.501840px;}
._17{width:10.789200px;}
._f{width:12.222480px;}
._19{width:13.326480px;}
._1a{width:14.400000px;}
._14{width:17.779440px;}
._18{width:19.242720px;}
._1c{width:23.886720px;}
._16{width:27.725040px;}
._15{width:29.689680px;}
._1b{width:42.549120px;}
._1d{width:49.026000px;}
._13{width:95.880000px;}
._2{width:201.378720px;}
._b{width:837.534720px;}
.fca{color:rgb(95,99,104);}
.fc8{color:rgb(0,0,255);}
.fc6{color:rgb(31,55,99);}
.fc5{color:rgb(47,84,150);}
.fc4{color:rgb(239,177,11);}
.fc2{color:rgb(5,62,128);}
.fcb{color:rgb(34,34,34);}
.fc9{color:rgb(51,51,51);}
.fc7{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc0{color:rgb(118,113,113);}
.fsb{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fsc{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:87.120000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.240000px;}
.y122{bottom:3.285000px;}
.y141{bottom:3.420000px;}
.y17b{bottom:3.960000px;}
.y169{bottom:6.840000px;}
.yf{bottom:7.740000px;}
.y1a{bottom:7.920000px;}
.y51{bottom:8.460000px;}
.y14e{bottom:11.880000px;}
.yc{bottom:12.780000px;}
.y128{bottom:14.760000px;}
.y15{bottom:15.840000px;}
.y126{bottom:16.560000px;}
.y23{bottom:17.100000px;}
.y16{bottom:17.280000px;}
.y2a{bottom:17.310000px;}
.y20{bottom:17.325000px;}
.y8{bottom:18.180000px;}
.y18{bottom:18.360000px;}
.y124{bottom:18.540000px;}
.y170{bottom:19.260000px;}
.y2c{bottom:19.620000px;}
.y36{bottom:20.160000px;}
.y33{bottom:20.205000px;}
.y153{bottom:20.340000px;}
.y11c{bottom:20.520000px;}
.y158{bottom:20.880000px;}
.y17a{bottom:21.240000px;}
.y140{bottom:21.420000px;}
.y1c{bottom:21.780000px;}
.y2{bottom:23.040000px;}
.y19{bottom:25.740000px;}
.y125{bottom:27.180000px;}
.y14d{bottom:29.160000px;}
.y127{bottom:32.040000px;}
.y120{bottom:33.840000px;}
.yd{bottom:34.020000px;}
.y37{bottom:35.100000px;}
.y34{bottom:35.145000px;}
.y123{bottom:35.820000px;}
.y16f{bottom:36.405000px;}
.y165{bottom:37.080000px;}
.y173{bottom:37.620000px;}
.y144{bottom:37.800000px;}
.y16d{bottom:37.845000px;}
.y157{bottom:38.160000px;}
.y13f{bottom:38.520000px;}
.y166{bottom:40.320000px;}
.yb{bottom:45.180000px;}
.y155{bottom:46.440000px;}
.y11f{bottom:51.165000px;}
.y16e{bottom:53.685000px;}
.y172{bottom:54.900000px;}
.y143{bottom:55.080000px;}
.y16c{bottom:55.125000px;}
.y156{bottom:55.260000px;}
.y164{bottom:55.620000px;}
.y13e{bottom:55.800000px;}
.y163{bottom:57.600000px;}
.y154{bottom:63.720000px;}
.y13{bottom:69.480000px;}
.y17e{bottom:69.660000px;}
.y7{bottom:71.640000px;}
.y15a{bottom:72.180000px;}
.y142{bottom:72.360000px;}
.y16b{bottom:72.405000px;}
.y151{bottom:72.540000px;}
.y13d{bottom:73.080000px;}
.ya{bottom:77.580000px;}
.y15f{bottom:89.460000px;}
.y152{bottom:89.685000px;}
.y150{bottom:89.865000px;}
.y134{bottom:90.000000px;}
.y13c{bottom:90.360000px;}
.y15e{bottom:106.740000px;}
.y133{bottom:107.100000px;}
.y13b{bottom:107.640000px;}
.ya0{bottom:110.880000px;}
.yd1{bottom:111.060000px;}
.y102{bottom:113.760000px;}
.y167{bottom:115.560000px;}
.y15d{bottom:124.020000px;}
.y132{bottom:124.380000px;}
.y13a{bottom:124.920000px;}
.yd0{bottom:128.340000px;}
.y161{bottom:128.520000px;}
.y9f{bottom:129.240000px;}
.yf5{bottom:132.840000px;}
.y101{bottom:139.860000px;}
.y15c{bottom:141.300000px;}
.y131{bottom:141.660000px;}
.y139{bottom:142.020000px;}
.ycf{bottom:145.620000px;}
.y9e{bottom:146.520000px;}
.yce{bottom:150.120000px;}
.y130{bottom:158.940000px;}
.y138{bottom:159.300000px;}
.ycd{bottom:162.900000px;}
.y14a{bottom:162.930000px;}
.y9d{bottom:163.800000px;}
.yf4{bottom:167.400000px;}
.y149{bottom:167.430000px;}
.y9c{bottom:168.300000px;}
.y12f{bottom:176.250000px;}
.y137{bottom:176.610000px;}
.yf3{bottom:180.000000px;}
.y148{bottom:180.030000px;}
.y9b{bottom:181.080000px;}
.y160{bottom:181.650000px;}
.y136{bottom:193.890000px;}
.y147{bottom:197.310000px;}
.y9a{bottom:198.390000px;}
.y146{bottom:201.810000px;}
.y135{bottom:211.170000px;}
.yf2{bottom:212.430000px;}
.ycc{bottom:212.610000px;}
.y145{bottom:214.590000px;}
.y99{bottom:215.670000px;}
.y98{bottom:220.170000px;}
.y112{bottom:226.650000px;}
.y12e{bottom:228.450000px;}
.y129{bottom:229.890000px;}
.ycb{bottom:232.410000px;}
.y97{bottom:232.770000px;}
.y111{bottom:242.310000px;}
.y12d{bottom:245.550000px;}
.y17c{bottom:247.530000px;}
.y96{bottom:250.050000px;}
.yc9{bottom:252.210000px;}
.y162{bottom:255.090000px;}
.yca{bottom:256.710000px;}
.y179{bottom:262.290000px;}
.y12c{bottom:262.830000px;}
.y1a3{bottom:263.550000px;}
.y95{bottom:267.330000px;}
.y110{bottom:268.230000px;}
.y94{bottom:271.830000px;}
.yc8{bottom:272.010000px;}
.y93{bottom:287.850000px;}
.y1a2{bottom:289.830000px;}
.yf1{bottom:291.810000px;}
.yc7{bottom:303.870000px;}
.y92{bottom:305.130000px;}
.y1a1{bottom:307.110000px;}
.y91{bottom:309.630000px;}
.yf0{bottom:311.610000px;}
.y12b{bottom:318.135000px;}
.yc6{bottom:323.670000px;}
.y1a0{bottom:324.390000px;}
.y90{bottom:325.830000px;}
.y15b{bottom:326.055000px;}
.yef{bottom:331.590000px;}
.y178{bottom:333.975000px;}
.y38{bottom:334.290000px;}
.y19f{bottom:341.490000px;}
.yc5{bottom:343.650000px;}
.y12a{bottom:351.075000px;}
.yee{bottom:351.390000px;}
.y35{bottom:355.350000px;}
.y8f{bottom:356.610000px;}
.y19e{bottom:358.770000px;}
.yc4{bottom:363.450000px;}
.yed{bottom:371.190000px;}
.y19d{bottom:376.050000px;}
.y8e{bottom:376.410000px;}
.yc3{bottom:383.250000px;}
.y19c{bottom:393.330000px;}
.y8d{bottom:396.390000px;}
.yec{bottom:398.730000px;}
.yc2{bottom:403.050000px;}
.y32{bottom:404.670000px;}
.y8c{bottom:416.190000px;}
.y19b{bottom:419.610000px;}
.y177{bottom:421.995000px;}
.yc1{bottom:422.850000px;}
.yeb{bottom:430.635000px;}
.y8b{bottom:436.035000px;}
.y19a{bottom:436.935000px;}
.yc0{bottom:442.875000px;}
.yea{bottom:450.615000px;}
.y31{bottom:453.855000px;}
.ybf{bottom:462.675000px;}
.y199{bottom:463.035000px;}
.y8a{bottom:464.475000px;}
.ye9{bottom:470.415000px;}
.y176{bottom:476.175000px;}
.y198{bottom:480.315000px;}
.ybe{bottom:482.475000px;}
.y159{bottom:483.225000px;}
.y30{bottom:485.175000px;}
.ye8{bottom:490.215000px;}
.y89{bottom:499.215000px;}
.ybd{bottom:502.275000px;}
.y197{bottom:506.595000px;}
.y175{bottom:506.625000px;}
.ye7{bottom:510.015000px;}
.y100{bottom:510.915000px;}
.y2f{bottom:516.495000px;}
.y88{bottom:519.015000px;}
.ybc{bottom:522.075000px;}
.y196{bottom:523.875000px;}
.yff{bottom:526.755000px;}
.ye6{bottom:529.815000px;}
.y174{bottom:536.145000px;}
.y87{bottom:538.815000px;}
.ybb{bottom:542.055000px;}
.y2e{bottom:547.995000px;}
.ye5{bottom:549.795000px;}
.y195{bottom:550.155000px;}
.y171{bottom:550.905000px;}
.yfe{bottom:552.675000px;}
.y86{bottom:558.795000px;}
.yba{bottom:561.855000px;}
.y194{bottom:567.435000px;}
.ye4{bottom:569.595000px;}
.y14f{bottom:571.425000px;}
.y9{bottom:573.375000px;}
.y109{bottom:576.795000px;}
.y85{bottom:578.595000px;}
.y2d{bottom:579.315000px;}
.yb9{bottom:581.655000px;}
.y10c{bottom:586.155000px;}
.y193{bottom:593.535000px;}
.y6b{bottom:595.515000px;}
.y11e{bottom:596.805000px;}
.ye3{bottom:597.135000px;}
.y10b{bottom:597.315000px;}
.y84{bottom:598.395000px;}
.yb8{bottom:601.455000px;}
.y108{bottom:608.475000px;}
.y192{bottom:610.815000px;}
.y2b{bottom:615.495000px;}
.y83{bottom:618.195000px;}
.y16a{bottom:621.645000px;}
.y10a{bottom:623.235000px;}
.y107{bottom:624.135000px;}
.y10f{bottom:624.495000px;}
.ye2{bottom:628.635000px;}
.yb7{bottom:633.315000px;}
.y191{bottom:637.095000px;}
.y82{bottom:637.995000px;}
.y106{bottom:639.795000px;}
.y6a{bottom:640.155000px;}
.y10e{bottom:640.335000px;}
.y121{bottom:644.685000px;}
.y29{bottom:651.495000px;}
.yb6{bottom:653.115000px;}
.y190{bottom:654.375000px;}
.y104{bottom:655.275000px;}
.y81{bottom:657.975000px;}
.y105{bottom:659.775000px;}
.ye1{bottom:663.375000px;}
.y11d{bottom:663.990000px;}
.y10d{bottom:666.105000px;}
.y69{bottom:670.785000px;}
.yb5{bottom:672.945000px;}
.y14c{bottom:677.130000px;}
.y80{bottom:677.805000px;}
.y18f{bottom:680.685000px;}
.y28{bottom:683.025000px;}
.y11b{bottom:683.070000px;}
.ye0{bottom:683.205000px;}
.yb4{bottom:692.925000px;}
.y103{bottom:696.705000px;}
.y7f{bottom:697.605000px;}
.y18e{bottom:697.965000px;}
.y68{bottom:701.385000px;}
.y116{bottom:707.865000px;}
.yb3{bottom:712.725000px;}
.y27{bottom:714.345000px;}
.ydf{bottom:715.065000px;}
.y7e{bottom:717.405000px;}
.y18d{bottom:724.065000px;}
.y168{bottom:727.170000px;}
.y6{bottom:729.825000px;}
.y14b{bottom:730.770000px;}
.y67{bottom:731.985000px;}
.yde{bottom:734.865000px;}
.y11a{bottom:737.070000px;}
.y7d{bottom:737.205000px;}
.y115{bottom:739.725000px;}
.yb2{bottom:744.585000px;}
.y26{bottom:745.665000px;}
.y46{bottom:745.845000px;}
.y18c{bottom:750.345000px;}
.y119{bottom:753.270000px;}
.ydd{bottom:754.665000px;}
.y114{bottom:755.385000px;}
.y7c{bottom:757.185000px;}
.y66{bottom:762.585000px;}
.yb1{bottom:764.385000px;}
.ydc{bottom:774.465000px;}
.y18b{bottom:776.625000px;}
.y25{bottom:776.985000px;}
.y118{bottom:778.290000px;}
.y113{bottom:781.125000px;}
.y65{bottom:782.385000px;}
.yb0{bottom:784.185000px;}
.y45{bottom:784.905000px;}
.y18a{bottom:793.905000px;}
.y117{bottom:795.570000px;}
.y7b{bottom:796.785000px;}
.y64{bottom:802.365000px;}
.ydb{bottom:803.085000px;}
.yaf{bottom:803.985000px;}
.y24{bottom:808.305000px;}
.y44{bottom:811.185000px;}
.y7a{bottom:816.585000px;}
.y63{bottom:822.165000px;}
.yae{bottom:823.965000px;}
.yfd{bottom:828.105000px;}
.y56{bottom:833.505000px;}
.y79{bottom:836.385000px;}
.y43{bottom:837.285000px;}
.y22{bottom:839.805000px;}
.y62{bottom:841.965000px;}
.yad{bottom:843.765000px;}
.yda{bottom:846.645000px;}
.yfc{bottom:847.905000px;}
.y189{bottom:854.565000px;}
.y78{bottom:856.365000px;}
.y55{bottom:856.725000px;}
.y42{bottom:863.385000px;}
.yac{bottom:863.565000px;}
.yd9{bottom:866.625000px;}
.yfb{bottom:867.705000px;}
.y61{bottom:870.765000px;}
.y21{bottom:871.125000px;}
.y188{bottom:871.845000px;}
.y54{bottom:874.725000px;}
.y76{bottom:876.165000px;}
.y77{bottom:880.665000px;}
.yd8{bottom:886.425000px;}
.yfa{bottom:887.685000px;}
.y41{bottom:889.485000px;}
.y60{bottom:890.565000px;}
.y53{bottom:892.725000px;}
.yab{bottom:895.425000px;}
.y74{bottom:895.965000px;}
.y187{bottom:898.125000px;}
.y75{bottom:900.465000px;}
.y1f{bottom:902.445000px;}
.yd7{bottom:906.270000px;}
.yf9{bottom:907.530000px;}
.y5f{bottom:910.590000px;}
.y52{bottom:910.770000px;}
.yaa{bottom:915.270000px;}
.y186{bottom:915.450000px;}
.y40{bottom:915.630000px;}
.y73{bottom:915.810000px;}
.yd6{bottom:926.070000px;}
.yf8{bottom:927.330000px;}
.y5e{bottom:930.390000px;}
.y185{bottom:932.730000px;}
.y1e{bottom:933.810000px;}
.y50{bottom:933.990000px;}
.ya9{bottom:935.070000px;}
.y72{bottom:935.610000px;}
.y3f{bottom:941.730000px;}
.yd5{bottom:945.870000px;}
.yf7{bottom:947.130000px;}
.y5d{bottom:950.190000px;}
.ya8{bottom:954.870000px;}
.y71{bottom:955.590000px;}
.y4f{bottom:957.210000px;}
.y184{bottom:958.830000px;}
.y1d{bottom:965.130000px;}
.yd4{bottom:965.850000px;}
.y3e{bottom:967.830000px;}
.y5c{bottom:969.990000px;}
.ya7{bottom:974.850000px;}
.y4e{bottom:975.210000px;}
.y70{bottom:975.390000px;}
.y183{bottom:976.110000px;}
.yd3{bottom:985.650000px;}
.y5b{bottom:989.790000px;}
.y4d{bottom:993.210000px;}
.y182{bottom:993.390000px;}
.y3d{bottom:993.930000px;}
.ya6{bottom:994.650000px;}
.y6f{bottom:995.190000px;}
.y1b{bottom:996.450000px;}
.yf6{bottom:1006.530000px;}
.y5a{bottom:1009.770000px;}
.y4c{bottom:1011.210000px;}
.y6e{bottom:1014.990000px;}
.y181{bottom:1019.670000px;}
.y3c{bottom:1020.030000px;}
.ya5{bottom:1026.510000px;}
.y4b{bottom:1029.210000px;}
.y59{bottom:1029.570000px;}
.y6d{bottom:1034.790000px;}
.y17{bottom:1036.950000px;}
.y3b{bottom:1046.130000px;}
.ya4{bottom:1046.310000px;}
.y4a{bottom:1047.210000px;}
.y58{bottom:1049.370000px;}
.y180{bottom:1054.230000px;}
.y6c{bottom:1063.230000px;}
.y48{bottom:1065.210000px;}
.ya3{bottom:1066.110000px;}
.y57{bottom:1069.170000px;}
.y3a{bottom:1072.230000px;}
.y14{bottom:1079.430000px;}
.y5{bottom:1081.230000px;}
.y17f{bottom:1082.130000px;}
.ya2{bottom:1085.910000px;}
.y39{bottom:1094.370000px;}
.y47{bottom:1097.250000px;}
.ya1{bottom:1105.710000px;}
.yd2{bottom:1110.210000px;}
.y4{bottom:1112.010000px;}
.y17d{bottom:1122.990000px;}
.y12{bottom:1123.170000px;}
.y3{bottom:1142.610000px;}
.y11{bottom:1148.220000px;}
.y10{bottom:1165.500000px;}
.y1{bottom:1182.960000px;}
.ye{bottom:1220.220000px;}
.h24{height:17.100000px;}
.h19{height:17.280000px;}
.h1b{height:17.316000px;}
.h32{height:20.880000px;}
.h1a{height:22.500000px;}
.h9{height:25.560000px;}
.h11{height:29.700000px;}
.hf{height:29.880000px;}
.h10{height:29.916000px;}
.h23{height:34.380000px;}
.h12{height:34.560000px;}
.h20{height:37.546875px;}
.hc{height:38.880000px;}
.h1e{height:40.550625px;}
.he{height:41.040000px;}
.h1f{height:45.403594px;}
.h26{height:46.080000px;}
.h14{height:47.700000px;}
.h13{height:47.736000px;}
.hb{height:50.312812px;}
.ha{height:51.750000px;}
.h2b{height:51.840000px;}
.hd{height:56.320312px;}
.h2{height:56.900391px;}
.h3{height:62.327813px;}
.h25{height:65.196000px;}
.h17{height:65.884219px;}
.h29{height:66.082500px;}
.h34{height:68.940000px;}
.h30{height:69.156000px;}
.h35{height:69.696000px;}
.h31{height:71.640000px;}
.h1d{height:75.093750px;}
.h5{height:77.466797px;}
.h8{height:77.625000px;}
.h2d{height:86.220000px;}
.h6{height:86.246367px;}
.h2a{height:86.400000px;}
.h15{height:87.859687px;}
.h18{height:99.874688px;}
.h33{height:103.536000px;}
.h2c{height:103.896000px;}
.h7{height:104.436000px;}
.h16{height:112.640625px;}
.h4{height:116.460000px;}
.h1c{height:125.406562px;}
.h2f{height:142.596000px;}
.h2e{height:155.340000px;}
.h28{height:276.870000px;}
.h27{height:365.115000px;}
.h21{height:892.980000px;}
.h22{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:94.680000px;}
.w11{width:102.096000px;}
.w10{width:129.600000px;}
.we{width:143.136000px;}
.wf{width:177.510000px;}
.w5{width:217.290000px;}
.w6{width:221.790000px;}
.w12{width:486.435000px;}
.w7{width:487.515000px;}
.w9{width:580.245000px;}
.w4{width:684.825000px;}
.w3{width:685.005000px;}
.wa{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w13{width:1041.840000px;}
.w14{width:1262.879962px;}
.wd{width:1262.879981px;}
.wb{width:1262.880000px;}
.wc{width:1263.000000px;}
.x0{left:0.000000px;}
.x30{left:6.840000px;}
.xd{left:7.920000px;}
.x4{left:10.800000px;}
.x35{left:13.140000px;}
.x6{left:36.179987px;}
.x8{left:44.814000px;}
.x1{left:106.235987px;}
.xa{left:108.035987px;}
.xc{left:109.476000px;}
.x1b{left:113.435987px;}
.x7{left:116.856000px;}
.x2b{left:118.835987px;}
.xf{left:124.595987px;}
.x37{left:135.035987px;}
.x10{left:140.975987px;}
.xb{left:151.229987px;}
.x1e{left:170.489973px;}
.x1f{left:175.889987px;}
.x18{left:184.709973px;}
.x19{left:190.109987px;}
.x11{left:204.150000px;}
.x22{left:228.269973px;}
.x23{left:233.669987px;}
.x2f{left:252.390000px;}
.x9{left:254.009987px;}
.x20{left:262.829973px;}
.x21{left:268.229987px;}
.x1a{left:324.074987px;}
.x2{left:329.114987px;}
.xe{left:332.175000px;}
.x29{left:355.034973px;}
.x2a{left:365.114987px;}
.x12{left:407.054973px;}
.x13{left:412.454987px;}
.x14{left:415.154973px;}
.x15{left:420.554987px;}
.x31{left:430.635000px;}
.x36{left:442.515000px;}
.x3{left:446.474987px;}
.x34{left:461.235000px;}
.x2e{left:521.174981px;}
.x1c{left:537.044973px;}
.x5{left:538.089000px;}
.x1d{left:542.444987px;}
.x32{left:560.955000px;}
.x26{left:605.444987px;}
.x25{left:607.604987px;}
.x16{left:642.524973px;}
.x17{left:647.924987px;}
.x33{left:663.765000px;}
.x27{left:746.789973px;}
.x2c{left:749.309987px;}
.x28{left:751.829987px;}
.x2d{left:785.309987px;}
.x24{left:810.149987px;}
@media print{
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls1b{letter-spacing:-0.272533pt;}
.ls10{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.225067pt;}
.ls3{letter-spacing:-0.224000pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls16{letter-spacing:-0.089067pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.015360pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.033280pt;}
.lsf{letter-spacing:0.047360pt;}
.ls22{letter-spacing:0.080640pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.142720pt;}
.ls7{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.367467pt;}
.ls21{letter-spacing:0.385280pt;}
.lsa{letter-spacing:0.544000pt;}
.ls25{letter-spacing:0.545280pt;}
.ls23{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.592640pt;}
.ls12{letter-spacing:0.624640pt;}
.ls20{letter-spacing:0.632320pt;}
.ls1c{letter-spacing:0.650667pt;}
.ls14{letter-spacing:0.784640pt;}
.ls24{letter-spacing:0.871040pt;}
.ls1e{letter-spacing:37.072640pt;}
.ls5{letter-spacing:66.512640pt;}
.lsc{letter-spacing:87.813120pt;}
.lsb{letter-spacing:88.431787pt;}
.ls6{letter-spacing:178.656000pt;}
.ls8{letter-spacing:753.371307pt;}
.ws1{word-spacing:-28.750720pt;}
.ws0{word-spacing:-25.824000pt;}
.ws2{word-spacing:-25.600000pt;}
.ws15{word-spacing:-18.048000pt;}
.ws11{word-spacing:-17.920000pt;}
.ws5{word-spacing:-15.311360pt;}
.wsf{word-spacing:-15.134827pt;}
.wse{word-spacing:-15.087360pt;}
.ws10{word-spacing:-14.998293pt;}
.ws16{word-spacing:-14.814720pt;}
.ws4{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.678293pt;}
.ws9{word-spacing:-14.672427pt;}
.wsb{word-spacing:-14.542293pt;}
.wsc{word-spacing:-14.536427pt;}
.ws13{word-spacing:-14.494827pt;}
.ws6{word-spacing:-13.488000pt;}
.ws7{word-spacing:-13.344000pt;}
.ws14{word-spacing:-10.258347pt;}
.wsa{word-spacing:-9.607680pt;}
.ws12{word-spacing:-9.592320pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-13.338453pt;}
._a{margin-left:-12.316587pt;}
._7{margin-left:-10.445440pt;}
._9{margin-left:-8.894720pt;}
._4{margin-left:-7.940693pt;}
._3{margin-left:-6.347733pt;}
._12{margin-left:-3.288107pt;}
._5{margin-left:-2.108373pt;}
._0{margin-left:-0.968533pt;}
._1{width:1.011200pt;}
._8{width:2.740267pt;}
._c{width:3.652053pt;}
._11{width:4.900267pt;}
._d{width:5.863467pt;}
._e{width:6.886827pt;}
._10{width:8.446080pt;}
._17{width:9.590400pt;}
._f{width:10.864427pt;}
._19{width:11.845760pt;}
._1a{width:12.800000pt;}
._14{width:15.803947pt;}
._18{width:17.104640pt;}
._1c{width:21.232640pt;}
._16{width:24.644480pt;}
._15{width:26.390827pt;}
._1b{width:37.821440pt;}
._1d{width:43.578667pt;}
._13{width:85.226667pt;}
._2{width:179.003307pt;}
._b{width:744.475307pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fsc{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:77.440000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.880000pt;}
.y122{bottom:2.920000pt;}
.y141{bottom:3.040000pt;}
.y17b{bottom:3.520000pt;}
.y169{bottom:6.080000pt;}
.yf{bottom:6.880000pt;}
.y1a{bottom:7.040000pt;}
.y51{bottom:7.520000pt;}
.y14e{bottom:10.560000pt;}
.yc{bottom:11.360000pt;}
.y128{bottom:13.120000pt;}
.y15{bottom:14.080000pt;}
.y126{bottom:14.720000pt;}
.y23{bottom:15.200000pt;}
.y16{bottom:15.360000pt;}
.y2a{bottom:15.386667pt;}
.y20{bottom:15.400000pt;}
.y8{bottom:16.160000pt;}
.y18{bottom:16.320000pt;}
.y124{bottom:16.480000pt;}
.y170{bottom:17.120000pt;}
.y2c{bottom:17.440000pt;}
.y36{bottom:17.920000pt;}
.y33{bottom:17.960000pt;}
.y153{bottom:18.080000pt;}
.y11c{bottom:18.240000pt;}
.y158{bottom:18.560000pt;}
.y17a{bottom:18.880000pt;}
.y140{bottom:19.040000pt;}
.y1c{bottom:19.360000pt;}
.y2{bottom:20.480000pt;}
.y19{bottom:22.880000pt;}
.y125{bottom:24.160000pt;}
.y14d{bottom:25.920000pt;}
.y127{bottom:28.480000pt;}
.y120{bottom:30.080000pt;}
.yd{bottom:30.240000pt;}
.y37{bottom:31.200000pt;}
.y34{bottom:31.240000pt;}
.y123{bottom:31.840000pt;}
.y16f{bottom:32.360000pt;}
.y165{bottom:32.960000pt;}
.y173{bottom:33.440000pt;}
.y144{bottom:33.600000pt;}
.y16d{bottom:33.640000pt;}
.y157{bottom:33.920000pt;}
.y13f{bottom:34.240000pt;}
.y166{bottom:35.840000pt;}
.yb{bottom:40.160000pt;}
.y155{bottom:41.280000pt;}
.y11f{bottom:45.480000pt;}
.y16e{bottom:47.720000pt;}
.y172{bottom:48.800000pt;}
.y143{bottom:48.960000pt;}
.y16c{bottom:49.000000pt;}
.y156{bottom:49.120000pt;}
.y164{bottom:49.440000pt;}
.y13e{bottom:49.600000pt;}
.y163{bottom:51.200000pt;}
.y154{bottom:56.640000pt;}
.y13{bottom:61.760000pt;}
.y17e{bottom:61.920000pt;}
.y7{bottom:63.680000pt;}
.y15a{bottom:64.160000pt;}
.y142{bottom:64.320000pt;}
.y16b{bottom:64.360000pt;}
.y151{bottom:64.480000pt;}
.y13d{bottom:64.960000pt;}
.ya{bottom:68.960000pt;}
.y15f{bottom:79.520000pt;}
.y152{bottom:79.720000pt;}
.y150{bottom:79.880000pt;}
.y134{bottom:80.000000pt;}
.y13c{bottom:80.320000pt;}
.y15e{bottom:94.880000pt;}
.y133{bottom:95.200000pt;}
.y13b{bottom:95.680000pt;}
.ya0{bottom:98.560000pt;}
.yd1{bottom:98.720000pt;}
.y102{bottom:101.120000pt;}
.y167{bottom:102.720000pt;}
.y15d{bottom:110.240000pt;}
.y132{bottom:110.560000pt;}
.y13a{bottom:111.040000pt;}
.yd0{bottom:114.080000pt;}
.y161{bottom:114.240000pt;}
.y9f{bottom:114.880000pt;}
.yf5{bottom:118.080000pt;}
.y101{bottom:124.320000pt;}
.y15c{bottom:125.600000pt;}
.y131{bottom:125.920000pt;}
.y139{bottom:126.240000pt;}
.ycf{bottom:129.440000pt;}
.y9e{bottom:130.240000pt;}
.yce{bottom:133.440000pt;}
.y130{bottom:141.280000pt;}
.y138{bottom:141.600000pt;}
.ycd{bottom:144.800000pt;}
.y14a{bottom:144.826667pt;}
.y9d{bottom:145.600000pt;}
.yf4{bottom:148.800000pt;}
.y149{bottom:148.826667pt;}
.y9c{bottom:149.600000pt;}
.y12f{bottom:156.666667pt;}
.y137{bottom:156.986667pt;}
.yf3{bottom:160.000000pt;}
.y148{bottom:160.026667pt;}
.y9b{bottom:160.960000pt;}
.y160{bottom:161.466667pt;}
.y136{bottom:172.346667pt;}
.y147{bottom:175.386667pt;}
.y9a{bottom:176.346667pt;}
.y146{bottom:179.386667pt;}
.y135{bottom:187.706667pt;}
.yf2{bottom:188.826667pt;}
.ycc{bottom:188.986667pt;}
.y145{bottom:190.746667pt;}
.y99{bottom:191.706667pt;}
.y98{bottom:195.706667pt;}
.y112{bottom:201.466667pt;}
.y12e{bottom:203.066667pt;}
.y129{bottom:204.346667pt;}
.ycb{bottom:206.586667pt;}
.y97{bottom:206.906667pt;}
.y111{bottom:215.386667pt;}
.y12d{bottom:218.266667pt;}
.y17c{bottom:220.026667pt;}
.y96{bottom:222.266667pt;}
.yc9{bottom:224.186667pt;}
.y162{bottom:226.746667pt;}
.yca{bottom:228.186667pt;}
.y179{bottom:233.146667pt;}
.y12c{bottom:233.626667pt;}
.y1a3{bottom:234.266667pt;}
.y95{bottom:237.626667pt;}
.y110{bottom:238.426667pt;}
.y94{bottom:241.626667pt;}
.yc8{bottom:241.786667pt;}
.y93{bottom:255.866667pt;}
.y1a2{bottom:257.626667pt;}
.yf1{bottom:259.386667pt;}
.yc7{bottom:270.106667pt;}
.y92{bottom:271.226667pt;}
.y1a1{bottom:272.986667pt;}
.y91{bottom:275.226667pt;}
.yf0{bottom:276.986667pt;}
.y12b{bottom:282.786667pt;}
.yc6{bottom:287.706667pt;}
.y1a0{bottom:288.346667pt;}
.y90{bottom:289.626667pt;}
.y15b{bottom:289.826667pt;}
.yef{bottom:294.746667pt;}
.y178{bottom:296.866667pt;}
.y38{bottom:297.146667pt;}
.y19f{bottom:303.546667pt;}
.yc5{bottom:305.466667pt;}
.y12a{bottom:312.066667pt;}
.yee{bottom:312.346667pt;}
.y35{bottom:315.866667pt;}
.y8f{bottom:316.986667pt;}
.y19e{bottom:318.906667pt;}
.yc4{bottom:323.066667pt;}
.yed{bottom:329.946667pt;}
.y19d{bottom:334.266667pt;}
.y8e{bottom:334.586667pt;}
.yc3{bottom:340.666667pt;}
.y19c{bottom:349.626667pt;}
.y8d{bottom:352.346667pt;}
.yec{bottom:354.426667pt;}
.yc2{bottom:358.266667pt;}
.y32{bottom:359.706667pt;}
.y8c{bottom:369.946667pt;}
.y19b{bottom:372.986667pt;}
.y177{bottom:375.106667pt;}
.yc1{bottom:375.866667pt;}
.yeb{bottom:382.786667pt;}
.y8b{bottom:387.586667pt;}
.y19a{bottom:388.386667pt;}
.yc0{bottom:393.666667pt;}
.yea{bottom:400.546667pt;}
.y31{bottom:403.426667pt;}
.ybf{bottom:411.266667pt;}
.y199{bottom:411.586667pt;}
.y8a{bottom:412.866667pt;}
.ye9{bottom:418.146667pt;}
.y176{bottom:423.266667pt;}
.y198{bottom:426.946667pt;}
.ybe{bottom:428.866667pt;}
.y159{bottom:429.533333pt;}
.y30{bottom:431.266667pt;}
.ye8{bottom:435.746667pt;}
.y89{bottom:443.746667pt;}
.ybd{bottom:446.466667pt;}
.y197{bottom:450.306667pt;}
.y175{bottom:450.333333pt;}
.ye7{bottom:453.346667pt;}
.y100{bottom:454.146667pt;}
.y2f{bottom:459.106667pt;}
.y88{bottom:461.346667pt;}
.ybc{bottom:464.066667pt;}
.y196{bottom:465.666667pt;}
.yff{bottom:468.226667pt;}
.ye6{bottom:470.946667pt;}
.y174{bottom:476.573333pt;}
.y87{bottom:478.946667pt;}
.ybb{bottom:481.826667pt;}
.y2e{bottom:487.106667pt;}
.ye5{bottom:488.706667pt;}
.y195{bottom:489.026667pt;}
.y171{bottom:489.693333pt;}
.yfe{bottom:491.266667pt;}
.y86{bottom:496.706667pt;}
.yba{bottom:499.426667pt;}
.y194{bottom:504.386667pt;}
.ye4{bottom:506.306667pt;}
.y14f{bottom:507.933333pt;}
.y9{bottom:509.666667pt;}
.y109{bottom:512.706667pt;}
.y85{bottom:514.306667pt;}
.y2d{bottom:514.946667pt;}
.yb9{bottom:517.026667pt;}
.y10c{bottom:521.026667pt;}
.y193{bottom:527.586667pt;}
.y6b{bottom:529.346667pt;}
.y11e{bottom:530.493333pt;}
.ye3{bottom:530.786667pt;}
.y10b{bottom:530.946667pt;}
.y84{bottom:531.906667pt;}
.yb8{bottom:534.626667pt;}
.y108{bottom:540.866667pt;}
.y192{bottom:542.946667pt;}
.y2b{bottom:547.106667pt;}
.y83{bottom:549.506667pt;}
.y16a{bottom:552.573333pt;}
.y10a{bottom:553.986667pt;}
.y107{bottom:554.786667pt;}
.y10f{bottom:555.106667pt;}
.ye2{bottom:558.786667pt;}
.yb7{bottom:562.946667pt;}
.y191{bottom:566.306667pt;}
.y82{bottom:567.106667pt;}
.y106{bottom:568.706667pt;}
.y6a{bottom:569.026667pt;}
.y10e{bottom:569.186667pt;}
.y121{bottom:573.053333pt;}
.y29{bottom:579.106667pt;}
.yb6{bottom:580.546667pt;}
.y190{bottom:581.666667pt;}
.y104{bottom:582.466667pt;}
.y81{bottom:584.866667pt;}
.y105{bottom:586.466667pt;}
.ye1{bottom:589.666667pt;}
.y11d{bottom:590.213333pt;}
.y10d{bottom:592.093333pt;}
.y69{bottom:596.253333pt;}
.yb5{bottom:598.173333pt;}
.y14c{bottom:601.893333pt;}
.y80{bottom:602.493333pt;}
.y18f{bottom:605.053333pt;}
.y28{bottom:607.133333pt;}
.y11b{bottom:607.173333pt;}
.ye0{bottom:607.293333pt;}
.yb4{bottom:615.933333pt;}
.y103{bottom:619.293333pt;}
.y7f{bottom:620.093333pt;}
.y18e{bottom:620.413333pt;}
.y68{bottom:623.453333pt;}
.y116{bottom:629.213333pt;}
.yb3{bottom:633.533333pt;}
.y27{bottom:634.973333pt;}
.ydf{bottom:635.613333pt;}
.y7e{bottom:637.693333pt;}
.y18d{bottom:643.613333pt;}
.y168{bottom:646.373333pt;}
.y6{bottom:648.733333pt;}
.y14b{bottom:649.573333pt;}
.y67{bottom:650.653333pt;}
.yde{bottom:653.213333pt;}
.y11a{bottom:655.173333pt;}
.y7d{bottom:655.293333pt;}
.y115{bottom:657.533333pt;}
.yb2{bottom:661.853333pt;}
.y26{bottom:662.813333pt;}
.y46{bottom:662.973333pt;}
.y18c{bottom:666.973333pt;}
.y119{bottom:669.573333pt;}
.ydd{bottom:670.813333pt;}
.y114{bottom:671.453333pt;}
.y7c{bottom:673.053333pt;}
.y66{bottom:677.853333pt;}
.yb1{bottom:679.453333pt;}
.ydc{bottom:688.413333pt;}
.y18b{bottom:690.333333pt;}
.y25{bottom:690.653333pt;}
.y118{bottom:691.813333pt;}
.y113{bottom:694.333333pt;}
.y65{bottom:695.453333pt;}
.yb0{bottom:697.053333pt;}
.y45{bottom:697.693333pt;}
.y18a{bottom:705.693333pt;}
.y117{bottom:707.173333pt;}
.y7b{bottom:708.253333pt;}
.y64{bottom:713.213333pt;}
.ydb{bottom:713.853333pt;}
.yaf{bottom:714.653333pt;}
.y24{bottom:718.493333pt;}
.y44{bottom:721.053333pt;}
.y7a{bottom:725.853333pt;}
.y63{bottom:730.813333pt;}
.yae{bottom:732.413333pt;}
.yfd{bottom:736.093333pt;}
.y56{bottom:740.893333pt;}
.y79{bottom:743.453333pt;}
.y43{bottom:744.253333pt;}
.y22{bottom:746.493333pt;}
.y62{bottom:748.413333pt;}
.yad{bottom:750.013333pt;}
.yda{bottom:752.573333pt;}
.yfc{bottom:753.693333pt;}
.y189{bottom:759.613333pt;}
.y78{bottom:761.213333pt;}
.y55{bottom:761.533333pt;}
.y42{bottom:767.453333pt;}
.yac{bottom:767.613333pt;}
.yd9{bottom:770.333333pt;}
.yfb{bottom:771.293333pt;}
.y61{bottom:774.013333pt;}
.y21{bottom:774.333333pt;}
.y188{bottom:774.973333pt;}
.y54{bottom:777.533333pt;}
.y76{bottom:778.813333pt;}
.y77{bottom:782.813333pt;}
.yd8{bottom:787.933333pt;}
.yfa{bottom:789.053333pt;}
.y41{bottom:790.653333pt;}
.y60{bottom:791.613333pt;}
.y53{bottom:793.533333pt;}
.yab{bottom:795.933333pt;}
.y74{bottom:796.413333pt;}
.y187{bottom:798.333333pt;}
.y75{bottom:800.413333pt;}
.y1f{bottom:802.173333pt;}
.yd7{bottom:805.573333pt;}
.yf9{bottom:806.693333pt;}
.y5f{bottom:809.413333pt;}
.y52{bottom:809.573333pt;}
.yaa{bottom:813.573333pt;}
.y186{bottom:813.733333pt;}
.y40{bottom:813.893333pt;}
.y73{bottom:814.053333pt;}
.yd6{bottom:823.173333pt;}
.yf8{bottom:824.293333pt;}
.y5e{bottom:827.013333pt;}
.y185{bottom:829.093333pt;}
.y1e{bottom:830.053333pt;}
.y50{bottom:830.213333pt;}
.ya9{bottom:831.173333pt;}
.y72{bottom:831.653333pt;}
.y3f{bottom:837.093333pt;}
.yd5{bottom:840.773333pt;}
.yf7{bottom:841.893333pt;}
.y5d{bottom:844.613333pt;}
.ya8{bottom:848.773333pt;}
.y71{bottom:849.413333pt;}
.y4f{bottom:850.853333pt;}
.y184{bottom:852.293333pt;}
.y1d{bottom:857.893333pt;}
.yd4{bottom:858.533333pt;}
.y3e{bottom:860.293333pt;}
.y5c{bottom:862.213333pt;}
.ya7{bottom:866.533333pt;}
.y4e{bottom:866.853333pt;}
.y70{bottom:867.013333pt;}
.y183{bottom:867.653333pt;}
.yd3{bottom:876.133333pt;}
.y5b{bottom:879.813333pt;}
.y4d{bottom:882.853333pt;}
.y182{bottom:883.013333pt;}
.y3d{bottom:883.493333pt;}
.ya6{bottom:884.133333pt;}
.y6f{bottom:884.613333pt;}
.y1b{bottom:885.733333pt;}
.yf6{bottom:894.693333pt;}
.y5a{bottom:897.573333pt;}
.y4c{bottom:898.853333pt;}
.y6e{bottom:902.213333pt;}
.y181{bottom:906.373333pt;}
.y3c{bottom:906.693333pt;}
.ya5{bottom:912.453333pt;}
.y4b{bottom:914.853333pt;}
.y59{bottom:915.173333pt;}
.y6d{bottom:919.813333pt;}
.y17{bottom:921.733333pt;}
.y3b{bottom:929.893333pt;}
.ya4{bottom:930.053333pt;}
.y4a{bottom:930.853333pt;}
.y58{bottom:932.773333pt;}
.y180{bottom:937.093333pt;}
.y6c{bottom:945.093333pt;}
.y48{bottom:946.853333pt;}
.ya3{bottom:947.653333pt;}
.y57{bottom:950.373333pt;}
.y3a{bottom:953.093333pt;}
.y14{bottom:959.493333pt;}
.y5{bottom:961.093333pt;}
.y17f{bottom:961.893333pt;}
.ya2{bottom:965.253333pt;}
.y39{bottom:972.773333pt;}
.y47{bottom:975.333333pt;}
.ya1{bottom:982.853333pt;}
.yd2{bottom:986.853333pt;}
.y4{bottom:988.453333pt;}
.y17d{bottom:998.213333pt;}
.y12{bottom:998.373333pt;}
.y3{bottom:1015.653333pt;}
.y11{bottom:1020.640000pt;}
.y10{bottom:1036.000000pt;}
.y1{bottom:1051.520000pt;}
.ye{bottom:1084.640000pt;}
.h24{height:15.200000pt;}
.h19{height:15.360000pt;}
.h1b{height:15.392000pt;}
.h32{height:18.560000pt;}
.h1a{height:20.000000pt;}
.h9{height:22.720000pt;}
.h11{height:26.400000pt;}
.hf{height:26.560000pt;}
.h10{height:26.592000pt;}
.h23{height:30.560000pt;}
.h12{height:30.720000pt;}
.h20{height:33.375000pt;}
.hc{height:34.560000pt;}
.h1e{height:36.045000pt;}
.he{height:36.480000pt;}
.h1f{height:40.358750pt;}
.h26{height:40.960000pt;}
.h14{height:42.400000pt;}
.h13{height:42.432000pt;}
.hb{height:44.722500pt;}
.ha{height:46.000000pt;}
.h2b{height:46.080000pt;}
.hd{height:50.062500pt;}
.h2{height:50.578125pt;}
.h3{height:55.402500pt;}
.h25{height:57.952000pt;}
.h17{height:58.563750pt;}
.h29{height:58.740000pt;}
.h34{height:61.280000pt;}
.h30{height:61.472000pt;}
.h35{height:61.952000pt;}
.h31{height:63.680000pt;}
.h1d{height:66.750000pt;}
.h5{height:68.859375pt;}
.h8{height:69.000000pt;}
.h2d{height:76.640000pt;}
.h6{height:76.663438pt;}
.h2a{height:76.800000pt;}
.h15{height:78.097500pt;}
.h18{height:88.777500pt;}
.h33{height:92.032000pt;}
.h2c{height:92.352000pt;}
.h7{height:92.832000pt;}
.h16{height:100.125000pt;}
.h4{height:103.520000pt;}
.h1c{height:111.472500pt;}
.h2f{height:126.752000pt;}
.h2e{height:138.080000pt;}
.h28{height:246.106667pt;}
.h27{height:324.546667pt;}
.h21{height:793.760000pt;}
.h22{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:84.160000pt;}
.w11{width:90.752000pt;}
.w10{width:115.200000pt;}
.we{width:127.232000pt;}
.wf{width:157.786667pt;}
.w5{width:193.146667pt;}
.w6{width:197.146667pt;}
.w12{width:432.386667pt;}
.w7{width:433.346667pt;}
.w9{width:515.773333pt;}
.w4{width:608.733333pt;}
.w3{width:608.893333pt;}
.wa{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w13{width:926.080000pt;}
.w14{width:1122.559967pt;}
.wd{width:1122.559983pt;}
.wb{width:1122.560000pt;}
.wc{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x30{left:6.080000pt;}
.xd{left:7.040000pt;}
.x4{left:9.600000pt;}
.x35{left:11.680000pt;}
.x6{left:32.159988pt;}
.x8{left:39.834667pt;}
.x1{left:94.431988pt;}
.xa{left:96.031988pt;}
.xc{left:97.312000pt;}
.x1b{left:100.831988pt;}
.x7{left:103.872000pt;}
.x2b{left:105.631988pt;}
.xf{left:110.751988pt;}
.x37{left:120.031988pt;}
.x10{left:125.311988pt;}
.xb{left:134.426655pt;}
.x1e{left:151.546643pt;}
.x1f{left:156.346655pt;}
.x18{left:164.186643pt;}
.x19{left:168.986655pt;}
.x11{left:181.466667pt;}
.x22{left:202.906643pt;}
.x23{left:207.706655pt;}
.x2f{left:224.346667pt;}
.x9{left:225.786655pt;}
.x20{left:233.626643pt;}
.x21{left:238.426655pt;}
.x1a{left:288.066655pt;}
.x2{left:292.546655pt;}
.xe{left:295.266667pt;}
.x29{left:315.586643pt;}
.x2a{left:324.546655pt;}
.x12{left:361.826643pt;}
.x13{left:366.626655pt;}
.x14{left:369.026643pt;}
.x15{left:373.826655pt;}
.x31{left:382.786667pt;}
.x36{left:393.346667pt;}
.x3{left:396.866655pt;}
.x34{left:409.986667pt;}
.x2e{left:463.266650pt;}
.x1c{left:477.373310pt;}
.x5{left:478.301333pt;}
.x1d{left:482.173322pt;}
.x32{left:498.626667pt;}
.x26{left:538.173322pt;}
.x25{left:540.093322pt;}
.x16{left:571.133310pt;}
.x17{left:575.933322pt;}
.x33{left:590.013333pt;}
.x27{left:663.813310pt;}
.x2c{left:666.053322pt;}
.x28{left:668.293322pt;}
.x2d{left:698.053322pt;}
.x24{left:720.133322pt;}
}




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