
    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_273026a5be7be3a44bc36a2d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_821c47a99bae519dc003fd00.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0bc4f695e2737f54631db7b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_67f6fce074692f58e1830cfd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_231179ccdf0f247e0d52e09e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ca17e826c73fcf45f6932503.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;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_31a04cffe5676d7cb33b7214.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_17dadaa0813b4af63d9fcbb1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_a507a8d06ff70f4d300f8999.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v6{vertical-align:-78.900000px;}
.v7{vertical-align:-61.200000px;}
.v5{vertical-align:-36.420000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v8{vertical-align:45.660000px;}
.v3{vertical-align:50.279990px;}
.v4{vertical-align:62.040000px;}
.va{vertical-align:65.520000px;}
.v9{vertical-align:84.540000px;}
.lsc{letter-spacing:-1.182000px;}
.ls4{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.100200px;}
.ls12{letter-spacing:-0.091200px;}
.ls18{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.288000px;}
.lse{letter-spacing:0.289440px;}
.ls17{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.513600px;}
.ls19{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.666000px;}
.ls8{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.900000px;}
.ls13{letter-spacing:2.340000px;}
.ls1d{letter-spacing:3.780000px;}
.ls1a{letter-spacing:14.580000px;}
.ls1b{letter-spacing:16.506720px;}
.ls16{letter-spacing:46.026720px;}
.ls2{letter-spacing:201.204000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.680200px;}
.wsf{word-spacing:-13.824000px;}
.ws11{word-spacing:-13.536000px;}
.wsb{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.349440px;}
.ws6{word-spacing:-12.096000px;}
.ws7{word-spacing:-12.060000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:125.996402px;}
.wsa{word-spacing:274.506000px;}
.ws10{word-spacing:350.047872px;}
.ws15{word-spacing:350.172000px;}
.ws14{word-spacing:373.452000px;}
.wse{word-spacing:375.084000px;}
.ws13{word-spacing:401.387424px;}
.ws12{word-spacing:401.424000px;}
.wsd{word-spacing:402.408000px;}
.wsc{word-spacing:402.444000px;}
._19{margin-left:-3.784560px;}
._11{margin-left:-2.293200px;}
._0{margin-left:-1.260000px;}
._b{width:1.008960px;}
._1{width:2.400000px;}
._10{width:3.917280px;}
._15{width:5.286720px;}
._12{width:7.171200px;}
._13{width:8.313600px;}
._14{width:9.561600px;}
._6{width:10.800000px;}
._17{width:11.805840px;}
._18{width:13.534320px;}
._20{width:16.388160px;}
._1f{width:18.167040px;}
._28{width:20.026560px;}
._1b{width:21.602640px;}
._1a{width:23.425920px;}
._1d{width:26.712720px;}
._1e{width:28.125120px;}
._33{width:36.513360px;}
._34{width:37.763520px;}
._30{width:42.376800px;}
._32{width:43.570320px;}
._31{width:44.714400px;}
._2e{width:47.946480px;}
._2f{width:49.842960px;}
._7{width:77.004960px;}
._1c{width:78.062400px;}
._2a{width:83.264640px;}
._2b{width:84.645600px;}
._23{width:87.502800px;}
._2d{width:93.732720px;}
._2c{width:94.779360px;}
._22{width:102.271920px;}
._21{width:118.051920px;}
._27{width:125.962800px;}
._26{width:126.982800px;}
._25{width:141.691920px;}
._8{width:154.080000px;}
._24{width:157.531920px;}
._29{width:162.954000px;}
._d{width:195.120000px;}
._16{width:201.204000px;}
._2{width:255.692640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.526240px;}
._9{width:604.544160px;}
._e{width:653.880000px;}
._f{width:703.560000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:48.384000px;}
.fs8{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf{bottom:6.840000px;}
.y7{bottom:12.615000px;}
.y9{bottom:18.180000px;}
.yed{bottom:21.345000px;}
.yc1{bottom:21.450000px;}
.y10a{bottom:21.495000px;}
.yd6{bottom:21.525000px;}
.yd{bottom:36.180000px;}
.y6{bottom:40.515000px;}
.yeb{bottom:41.115000px;}
.ybf{bottom:41.220000px;}
.y12c{bottom:45.540000px;}
.yc8{bottom:50.550000px;}
.y131{bottom:53.610000px;}
.ye2{bottom:55.155000px;}
.y100{bottom:55.725000px;}
.yc{bottom:57.960000px;}
.y136{bottom:58.350000px;}
.ycd{bottom:59.685000px;}
.yd1{bottom:61.845000px;}
.y5{bottom:68.595000px;}
.ye{bottom:75.420000px;}
.yb{bottom:80.280000px;}
.y12d{bottom:94.320000px;}
.ye3{bottom:95.430000px;}
.y4{bottom:96.525000px;}
.y101{bottom:98.820000px;}
.y132{bottom:102.390000px;}
.y12a{bottom:103.320000px;}
.y94{bottom:104.220000px;}
.yc9{bottom:109.410000px;}
.yf7{bottom:109.620000px;}
.y3c{bottom:109.800000px;}
.y137{bottom:110.190000px;}
.y16f{bottom:112.680000px;}
.y13a{bottom:115.305000px;}
.y173{bottom:115.380000px;}
.yec{bottom:116.100000px;}
.y88{bottom:117.360000px;}
.y6b{bottom:117.900000px;}
.yce{bottom:118.545000px;}
.y158{bottom:119.700000px;}
.yd2{bottom:120.705000px;}
.y93{bottom:120.960000px;}
.y129{bottom:123.300000px;}
.yf9{bottom:125.205000px;}
.y2{bottom:125.850000px;}
.y3b{bottom:129.780000px;}
.yc0{bottom:131.550000px;}
.y16e{bottom:132.480000px;}
.yd7{bottom:132.840000px;}
.y172{bottom:135.180000px;}
.ye4{bottom:135.720000px;}
.y87{bottom:137.160000px;}
.y6a{bottom:137.700000px;}
.yc6{bottom:139.500000px;}
.y157{bottom:139.680000px;}
.ydd{bottom:141.480000px;}
.y102{bottom:141.915000px;}
.y128{bottom:143.100000px;}
.y12e{bottom:146.160000px;}
.y3a{bottom:149.580000px;}
.y16d{bottom:152.310000px;}
.y133{bottom:154.230000px;}
.y171{bottom:155.190000px;}
.yc5{bottom:156.270000px;}
.y86{bottom:156.990000px;}
.y69{bottom:157.710000px;}
.yda{bottom:158.220000px;}
.y156{bottom:159.510000px;}
.ydc{bottom:160.560000px;}
.yad{bottom:161.670000px;}
.ybb{bottom:162.030000px;}
.y127{bottom:162.930000px;}
.yfa{bottom:166.785000px;}
.yca{bottom:168.270000px;}
.y39{bottom:169.410000px;}
.y109{bottom:171.930000px;}
.y16c{bottom:172.110000px;}
.ye5{bottom:176.010000px;}
.y85{bottom:176.970000px;}
.ycf{bottom:177.405000px;}
.y68{bottom:177.510000px;}
.y155{bottom:179.310000px;}
.yd3{bottom:179.565000px;}
.yac{bottom:181.470000px;}
.y126{bottom:182.730000px;}
.y103{bottom:185.010000px;}
.ybd{bottom:186.015000px;}
.ydb{bottom:187.170000px;}
.y38{bottom:189.210000px;}
.y16b{bottom:191.910000px;}
.yfb{bottom:195.225000px;}
.y84{bottom:196.770000px;}
.y67{bottom:197.310000px;}
.y12f{bottom:198.000000px;}
.y154{bottom:199.110000px;}
.yab{bottom:201.270000px;}
.y125{bottom:202.530000px;}
.y134{bottom:206.070000px;}
.y37{bottom:209.010000px;}
.y16a{bottom:211.890000px;}
.y138{bottom:213.870000px;}
.ye6{bottom:216.285000px;}
.y83{bottom:216.570000px;}
.y66{bottom:217.110000px;}
.y153{bottom:218.910000px;}
.yaa{bottom:221.250000px;}
.y124{bottom:222.510000px;}
.y104{bottom:228.090000px;}
.y36{bottom:228.990000px;}
.ycb{bottom:230.190000px;}
.y169{bottom:231.690000px;}
.yd0{bottom:236.265000px;}
.y82{bottom:236.370000px;}
.y65{bottom:236.910000px;}
.yd4{bottom:238.425000px;}
.y152{bottom:238.890000px;}
.ya9{bottom:241.050000px;}
.y123{bottom:242.310000px;}
.yfc{bottom:245.190000px;}
.y35{bottom:248.790000px;}
.ye1{bottom:249.195000px;}
.y130{bottom:249.840000px;}
.y168{bottom:251.490000px;}
.y81{bottom:256.170000px;}
.ye7{bottom:256.575000px;}
.y64{bottom:256.890000px;}
.y135{bottom:257.910000px;}
.y151{bottom:258.690000px;}
.ya8{bottom:260.850000px;}
.y122{bottom:262.110000px;}
.y139{bottom:265.710000px;}
.yf6{bottom:266.070000px;}
.y34{bottom:268.590000px;}
.y105{bottom:271.185000px;}
.y167{bottom:271.290000px;}
.ye0{bottom:274.425000px;}
.y80{bottom:276.150000px;}
.y63{bottom:276.690000px;}
.y150{bottom:278.490000px;}
.ya7{bottom:280.650000px;}
.y121{bottom:281.910000px;}
.ycc{bottom:285.990000px;}
.yf5{bottom:286.230000px;}
.y33{bottom:288.390000px;}
.yfd{bottom:288.570000px;}
.y166{bottom:291.090000px;}
.y7f{bottom:292.710000px;}
.y62{bottom:296.490000px;}
.ye8{bottom:296.850000px;}
.yd5{bottom:297.285000px;}
.y14f{bottom:298.290000px;}
.ybe{bottom:299.190000px;}
.ya6{bottom:300.450000px;}
.y120{bottom:301.710000px;}
.yf4{bottom:302.610000px;}
.y32{bottom:308.190000px;}
.y165{bottom:311.070000px;}
.y106{bottom:314.310000px;}
.ydf{bottom:316.080000px;}
.y61{bottom:316.290000px;}
.y14e{bottom:318.090000px;}
.y13c{bottom:319.035000px;}
.ya5{bottom:320.430000px;}
.y11f{bottom:321.690000px;}
.yba{bottom:322.950000px;}
.y31{bottom:328.170000px;}
.y164{bottom:330.870000px;}
.yfe{bottom:333.150000px;}
.y13b{bottom:334.545000px;}
.y60{bottom:336.090000px;}
.ye9{bottom:337.170000px;}
.y14d{bottom:338.070000px;}
.ya4{bottom:340.230000px;}
.y11e{bottom:341.490000px;}
.yb9{bottom:343.110000px;}
.y30{bottom:347.970000px;}
.y163{bottom:350.670000px;}
.yd9{bottom:354.135000px;}
.y5f{bottom:356.070000px;}
.y107{bottom:357.405000px;}
.y14c{bottom:357.870000px;}
.ya3{bottom:359.670000px;}
.y11d{bottom:361.290000px;}
.yb8{bottom:362.910000px;}
.y2f{bottom:367.770000px;}
.yd8{bottom:369.645000px;}
.yde{bottom:370.050000px;}
.y162{bottom:370.470000px;}
.y5e{bottom:375.870000px;}
.yea{bottom:377.460000px;}
.y14b{bottom:377.670000px;}
.y11c{bottom:381.090000px;}
.yb7{bottom:382.890000px;}
.y2e{bottom:387.570000px;}
.ya2{bottom:388.830000px;}
.y161{bottom:390.270000px;}
.yff{bottom:390.885000px;}
.y5d{bottom:395.670000px;}
.y14a{bottom:397.110000px;}
.y108{bottom:400.500000px;}
.y11b{bottom:400.575000px;}
.yb6{bottom:402.735000px;}
.yef{bottom:405.150000px;}
.y2d{bottom:407.415000px;}
.ya1{bottom:408.675000px;}
.y160{bottom:409.935000px;}
.y5c{bottom:415.515000px;}
.y149{bottom:417.315000px;}
.yee{bottom:420.660000px;}
.yb5{bottom:422.535000px;}
.y2c{bottom:427.395000px;}
.y10c{bottom:427.755000px;}
.ya0{bottom:428.655000px;}
.y15f{bottom:429.735000px;}
.y11a{bottom:429.915000px;}
.y92{bottom:433.155000px;}
.y5b{bottom:435.315000px;}
.y148{bottom:437.295000px;}
.yb4{bottom:442.335000px;}
.y10b{bottom:443.265000px;}
.y2b{bottom:447.195000px;}
.y9f{bottom:448.095000px;}
.y119{bottom:449.715000px;}
.y15e{bottom:449.895000px;}
.y91{bottom:452.955000px;}
.y170{bottom:454.935000px;}
.y5a{bottom:455.295000px;}
.y147{bottom:457.095000px;}
.yb3{bottom:461.775000px;}
.y2a{bottom:466.995000px;}
.y9e{bottom:467.895000px;}
.y118{bottom:469.515000px;}
.y90{bottom:472.755000px;}
.y59{bottom:475.095000px;}
.y146{bottom:476.895000px;}
.y15d{bottom:478.695000px;}
.yb2{bottom:481.755000px;}
.y29{bottom:486.435000px;}
.y9d{bottom:488.055000px;}
.y117{bottom:489.315000px;}
.y8f{bottom:492.555000px;}
.y58{bottom:494.895000px;}
.y145{bottom:496.695000px;}
.y15c{bottom:498.495000px;}
.yb1{bottom:501.555000px;}
.y28{bottom:506.595000px;}
.y9c{bottom:507.855000px;}
.y116{bottom:509.115000px;}
.y8e{bottom:512.535000px;}
.y57{bottom:514.695000px;}
.y144{bottom:516.495000px;}
.yf3{bottom:517.575000px;}
.yb0{bottom:521.355000px;}
.y27{bottom:526.575000px;}
.y15b{bottom:527.475000px;}
.y9b{bottom:527.835000px;}
.y115{bottom:529.095000px;}
.y8d{bottom:532.335000px;}
.y56{bottom:534.495000px;}
.y143{bottom:536.475000px;}
.yf2{bottom:537.735000px;}
.yaf{bottom:538.095000px;}
.ybc{bottom:538.920000px;}
.y26{bottom:546.375000px;}
.y9a{bottom:547.635000px;}
.y114{bottom:548.895000px;}
.y8c{bottom:551.775000px;}
.y55{bottom:554.475000px;}
.y142{bottom:556.275000px;}
.yf1{bottom:557.355000px;}
.y25{bottom:565.815000px;}
.y99{bottom:567.075000px;}
.y113{bottom:568.695000px;}
.y8b{bottom:571.935000px;}
.yf0{bottom:573.915000px;}
.y54{bottom:574.275000px;}
.yf8{bottom:575.820000px;}
.y141{bottom:576.075000px;}
.y15a{bottom:585.075000px;}
.y24{bottom:585.975000px;}
.y98{bottom:587.415000px;}
.y112{bottom:588.495000px;}
.y8a{bottom:591.375000px;}
.y53{bottom:594.075000px;}
.y7e{bottom:595.515000px;}
.y140{bottom:595.875000px;}
.y23{bottom:605.775000px;}
.y89{bottom:608.115000px;}
.y111{bottom:608.295000px;}
.y97{bottom:608.655000px;}
.yc4{bottom:610.275000px;}
.y52{bottom:613.875000px;}
.y7d{bottom:615.675000px;}
.y96{bottom:625.215000px;}
.y22{bottom:625.755000px;}
.y110{bottom:627.915000px;}
.yc3{bottom:631.515000px;}
.y51{bottom:633.675000px;}
.y7c{bottom:635.655000px;}
.y21{bottom:645.555000px;}
.y10f{bottom:647.715000px;}
.yc2{bottom:648.075000px;}
.yc7{bottom:649.440000px;}
.y50{bottom:653.685000px;}
.y7b{bottom:655.485000px;}
.y20{bottom:665.385000px;}
.y10e{bottom:667.545000px;}
.y4f{bottom:673.485000px;}
.y7a{bottom:675.285000px;}
.y10d{bottom:684.105000px;}
.y12b{bottom:684.540000px;}
.y1f{bottom:685.185000px;}
.y4e{bottom:693.285000px;}
.y79{bottom:695.085000px;}
.y1e{bottom:704.985000px;}
.y4d{bottom:713.085000px;}
.y78{bottom:714.885000px;}
.y1d{bottom:724.785000px;}
.y4c{bottom:732.885000px;}
.y77{bottom:734.865000px;}
.y1c{bottom:744.765000px;}
.y4b{bottom:752.865000px;}
.y76{bottom:754.305000px;}
.y13f{bottom:754.665000px;}
.y1b{bottom:764.565000px;}
.y4a{bottom:772.665000px;}
.y13e{bottom:774.105000px;}
.y75{bottom:783.465000px;}
.y1a{bottom:784.365000px;}
.y159{bottom:792.105000px;}
.y49{bottom:792.465000px;}
.y74{bottom:803.265000px;}
.y19{bottom:803.805000px;}
.y48{bottom:812.265000px;}
.y73{bottom:823.065000px;}
.y18{bottom:829.185000px;}
.y47{bottom:832.065000px;}
.y13d{bottom:842.685000px;}
.y72{bottom:843.045000px;}
.y17{bottom:849.165000px;}
.y46{bottom:852.045000px;}
.y71{bottom:862.845000px;}
.y16{bottom:868.965000px;}
.y45{bottom:871.845000px;}
.y70{bottom:882.645000px;}
.y15{bottom:888.765000px;}
.y44{bottom:891.645000px;}
.yae{bottom:893.805000px;}
.y6f{bottom:902.490000px;}
.y14{bottom:903.750000px;}
.y43{bottom:911.490000px;}
.y6e{bottom:922.290000px;}
.y13{bottom:925.710000px;}
.y95{bottom:930.930000px;}
.y42{bottom:931.290000px;}
.y6d{bottom:941.910000px;}
.y12{bottom:947.490000px;}
.y41{bottom:951.270000px;}
.y40{bottom:971.070000px;}
.y11{bottom:972.150000px;}
.y3f{bottom:990.870000px;}
.y10{bottom:1003.830000px;}
.y3e{bottom:1010.670000px;}
.y6c{bottom:1030.110000px;}
.y3d{bottom:1030.470000px;}
.ya{bottom:1047.930000px;}
.y3{bottom:1062.135000px;}
.y1{bottom:1062.150000px;}
.y8{bottom:1096.350000px;}
.h7{height:2.826563px;}
.ha{height:21.780000px;}
.h8{height:33.465000px;}
.hd{height:38.158594px;}
.h22{height:43.215117px;}
.h13{height:47.344922px;}
.h16{height:47.486250px;}
.h12{height:47.980898px;}
.h14{height:52.998047px;}
.h1a{height:53.139375px;}
.h1e{height:53.709961px;}
.h1f{height:53.853187px;}
.h10{height:58.621992px;}
.hf{height:58.651172px;}
.he{height:60.226875px;}
.h21{height:61.423863px;}
.hb{height:65.010937px;}
.h9{height:65.884219px;}
.h5{height:66.757500px;}
.h3{height:90.703125px;}
.hc{height:96.508125px;}
.h17{height:97.624912px;}
.h6{height:112.530000px;}
.h18{height:115.038047px;}
.h1d{height:118.518047px;}
.h1c{height:137.538047px;}
.h2{height:146.736000px;}
.h4{height:146.745000px;}
.h11{height:343.440000px;}
.h20{height:359.640000px;}
.h15{height:394.740000px;}
.h19{height:445.860000px;}
.h1b{height:468.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:9.900000px;}
.w3{width:131.790000px;}
.w5{width:625.500000px;}
.w2{width:654.615000px;}
.w6{width:702.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1e{left:31.530000px;}
.x2d{left:38.880000px;}
.x35{left:45.612000px;}
.x2c{left:46.728000px;}
.x1d{left:50.580000px;}
.x1{left:53.280000px;}
.x12{left:72.720000px;}
.x3e{left:79.665000px;}
.x49{left:81.000000px;}
.x36{left:82.590000px;}
.x22{left:95.400000px;}
.x18{left:97.995000px;}
.x4a{left:108.036000px;}
.x8{left:111.996000px;}
.x31{left:113.970000px;}
.x3c{left:115.095000px;}
.x4{left:118.290000px;}
.x17{left:133.560000px;}
.xc{left:151.770000px;}
.x3f{left:161.820000px;}
.xa{left:163.470000px;}
.xb{left:166.170000px;}
.x6{left:200.910000px;}
.x15{left:203.250000px;}
.xf{left:210.990000px;}
.x19{left:212.505000px;}
.x32{left:238.350000px;}
.x21{left:253.470000px;}
.x38{left:267.330000px;}
.x2f{left:268.815000px;}
.x1f{left:272.415000px;}
.x47{left:276.045000px;}
.x44{left:277.740000px;}
.x27{left:291.420000px;}
.x3a{left:298.155000px;}
.x2e{left:310.395000px;}
.x26{left:320.040000px;}
.x37{left:324.210000px;}
.x1a{left:327.030000px;}
.x40{left:342.975000px;}
.x25{left:344.520000px;}
.x33{left:362.730000px;}
.x48{left:370.770000px;}
.x45{left:373.215000px;}
.x30{left:374.580000px;}
.x9{left:379.335000px;}
.x39{left:391.890000px;}
.x24{left:395.895000px;}
.x1b{left:441.540000px;}
.x7{left:446.505000px;}
.x46{left:461.190000px;}
.x23{left:467.385000px;}
.x41{left:473.070000px;}
.x2b{left:476.070000px;}
.x34{left:487.110000px;}
.x2a{left:519.405000px;}
.x42{left:535.110000px;}
.x1c{left:556.050000px;}
.x29{left:580.110000px;}
.x43{left:607.575000px;}
.x3d{left:611.610000px;}
.x13{left:636.630000px;}
.x28{left:653.790000px;}
.x16{left:674.970000px;}
.x10{left:681.990000px;}
.x3{left:707.910000px;}
.x11{left:713.130000px;}
.xe{left:739.050000px;}
.x14{left:759.390000px;}
.x20{left:797.550000px;}
.x3b{left:802.050000px;}
.x5{left:829.260000px;}
.xd{left:833.580000px;}
@media print{
.v6{vertical-align:-70.133333pt;}
.v7{vertical-align:-54.400000pt;}
.v5{vertical-align:-32.373333pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v8{vertical-align:40.586667pt;}
.v3{vertical-align:44.693325pt;}
.v4{vertical-align:55.146667pt;}
.va{vertical-align:58.240000pt;}
.v9{vertical-align:75.146667pt;}
.lsc{letter-spacing:-1.050667pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.089067pt;}
.ls12{letter-spacing:-0.081067pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.257280pt;}
.ls17{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.456533pt;}
.ls19{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.592000pt;}
.ls8{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls13{letter-spacing:2.080000pt;}
.ls1d{letter-spacing:3.360000pt;}
.ls1a{letter-spacing:12.960000pt;}
.ls1b{letter-spacing:14.672640pt;}
.ls16{letter-spacing:40.912640pt;}
.ls2{letter-spacing:178.848000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.288000pt;}
.ws11{word-spacing:-12.032000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws9{word-spacing:-10.977280pt;}
.ws6{word-spacing:-10.752000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:111.996802pt;}
.wsa{word-spacing:244.005333pt;}
.ws10{word-spacing:311.153664pt;}
.ws15{word-spacing:311.264000pt;}
.ws14{word-spacing:331.957333pt;}
.wse{word-spacing:333.408000pt;}
.ws13{word-spacing:356.788821pt;}
.ws12{word-spacing:356.821333pt;}
.wsd{word-spacing:357.696000pt;}
.wsc{word-spacing:357.728000pt;}
._19{margin-left:-3.364053pt;}
._11{margin-left:-2.038400pt;}
._0{margin-left:-1.120000pt;}
._b{width:0.896853pt;}
._1{width:2.133333pt;}
._10{width:3.482027pt;}
._15{width:4.699307pt;}
._12{width:6.374400pt;}
._13{width:7.389867pt;}
._14{width:8.499200pt;}
._6{width:9.600000pt;}
._17{width:10.494080pt;}
._18{width:12.030507pt;}
._20{width:14.567253pt;}
._1f{width:16.148480pt;}
._28{width:17.801387pt;}
._1b{width:19.202347pt;}
._1a{width:20.823040pt;}
._1d{width:23.744640pt;}
._1e{width:25.000107pt;}
._33{width:32.456320pt;}
._34{width:33.567573pt;}
._30{width:37.668267pt;}
._32{width:38.729173pt;}
._31{width:39.746133pt;}
._2e{width:42.619093pt;}
._2f{width:44.304853pt;}
._7{width:68.448853pt;}
._1c{width:69.388800pt;}
._2a{width:74.013013pt;}
._2b{width:75.240533pt;}
._23{width:77.780267pt;}
._2d{width:83.317973pt;}
._2c{width:84.248320pt;}
._22{width:90.908373pt;}
._21{width:104.935040pt;}
._27{width:111.966933pt;}
._26{width:112.873600pt;}
._25{width:125.948373pt;}
._8{width:136.960000pt;}
._24{width:140.028373pt;}
._29{width:144.848000pt;}
._d{width:173.440000pt;}
._16{width:178.848000pt;}
._2{width:227.282347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:394.245547pt;}
._9{width:537.372587pt;}
._e{width:581.226667pt;}
._f{width:625.386667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:43.008000pt;}
.fs8{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:6.080000pt;}
.y7{bottom:11.213333pt;}
.y9{bottom:16.160000pt;}
.yed{bottom:18.973333pt;}
.yc1{bottom:19.066667pt;}
.y10a{bottom:19.106667pt;}
.yd6{bottom:19.133333pt;}
.yd{bottom:32.160000pt;}
.y6{bottom:36.013333pt;}
.yeb{bottom:36.546667pt;}
.ybf{bottom:36.640000pt;}
.y12c{bottom:40.480000pt;}
.yc8{bottom:44.933333pt;}
.y131{bottom:47.653333pt;}
.ye2{bottom:49.026667pt;}
.y100{bottom:49.533333pt;}
.yc{bottom:51.520000pt;}
.y136{bottom:51.866667pt;}
.ycd{bottom:53.053333pt;}
.yd1{bottom:54.973333pt;}
.y5{bottom:60.973333pt;}
.ye{bottom:67.040000pt;}
.yb{bottom:71.360000pt;}
.y12d{bottom:83.840000pt;}
.ye3{bottom:84.826667pt;}
.y4{bottom:85.800000pt;}
.y101{bottom:87.840000pt;}
.y132{bottom:91.013333pt;}
.y12a{bottom:91.840000pt;}
.y94{bottom:92.640000pt;}
.yc9{bottom:97.253333pt;}
.yf7{bottom:97.440000pt;}
.y3c{bottom:97.600000pt;}
.y137{bottom:97.946667pt;}
.y16f{bottom:100.160000pt;}
.y13a{bottom:102.493333pt;}
.y173{bottom:102.560000pt;}
.yec{bottom:103.200000pt;}
.y88{bottom:104.320000pt;}
.y6b{bottom:104.800000pt;}
.yce{bottom:105.373333pt;}
.y158{bottom:106.400000pt;}
.yd2{bottom:107.293333pt;}
.y93{bottom:107.520000pt;}
.y129{bottom:109.600000pt;}
.yf9{bottom:111.293333pt;}
.y2{bottom:111.866667pt;}
.y3b{bottom:115.360000pt;}
.yc0{bottom:116.933333pt;}
.y16e{bottom:117.760000pt;}
.yd7{bottom:118.080000pt;}
.y172{bottom:120.160000pt;}
.ye4{bottom:120.640000pt;}
.y87{bottom:121.920000pt;}
.y6a{bottom:122.400000pt;}
.yc6{bottom:124.000000pt;}
.y157{bottom:124.160000pt;}
.ydd{bottom:125.760000pt;}
.y102{bottom:126.146667pt;}
.y128{bottom:127.200000pt;}
.y12e{bottom:129.920000pt;}
.y3a{bottom:132.960000pt;}
.y16d{bottom:135.386667pt;}
.y133{bottom:137.093333pt;}
.y171{bottom:137.946667pt;}
.yc5{bottom:138.906667pt;}
.y86{bottom:139.546667pt;}
.y69{bottom:140.186667pt;}
.yda{bottom:140.640000pt;}
.y156{bottom:141.786667pt;}
.ydc{bottom:142.720000pt;}
.yad{bottom:143.706667pt;}
.ybb{bottom:144.026667pt;}
.y127{bottom:144.826667pt;}
.yfa{bottom:148.253333pt;}
.yca{bottom:149.573333pt;}
.y39{bottom:150.586667pt;}
.y109{bottom:152.826667pt;}
.y16c{bottom:152.986667pt;}
.ye5{bottom:156.453333pt;}
.y85{bottom:157.306667pt;}
.ycf{bottom:157.693333pt;}
.y68{bottom:157.786667pt;}
.y155{bottom:159.386667pt;}
.yd3{bottom:159.613333pt;}
.yac{bottom:161.306667pt;}
.y126{bottom:162.426667pt;}
.y103{bottom:164.453333pt;}
.ybd{bottom:165.346667pt;}
.ydb{bottom:166.373333pt;}
.y38{bottom:168.186667pt;}
.y16b{bottom:170.586667pt;}
.yfb{bottom:173.533333pt;}
.y84{bottom:174.906667pt;}
.y67{bottom:175.386667pt;}
.y12f{bottom:176.000000pt;}
.y154{bottom:176.986667pt;}
.yab{bottom:178.906667pt;}
.y125{bottom:180.026667pt;}
.y134{bottom:183.173333pt;}
.y37{bottom:185.786667pt;}
.y16a{bottom:188.346667pt;}
.y138{bottom:190.106667pt;}
.ye6{bottom:192.253333pt;}
.y83{bottom:192.506667pt;}
.y66{bottom:192.986667pt;}
.y153{bottom:194.586667pt;}
.yaa{bottom:196.666667pt;}
.y124{bottom:197.786667pt;}
.y104{bottom:202.746667pt;}
.y36{bottom:203.546667pt;}
.ycb{bottom:204.613333pt;}
.y169{bottom:205.946667pt;}
.yd0{bottom:210.013333pt;}
.y82{bottom:210.106667pt;}
.y65{bottom:210.586667pt;}
.yd4{bottom:211.933333pt;}
.y152{bottom:212.346667pt;}
.ya9{bottom:214.266667pt;}
.y123{bottom:215.386667pt;}
.yfc{bottom:217.946667pt;}
.y35{bottom:221.146667pt;}
.ye1{bottom:221.506667pt;}
.y130{bottom:222.080000pt;}
.y168{bottom:223.546667pt;}
.y81{bottom:227.706667pt;}
.ye7{bottom:228.066667pt;}
.y64{bottom:228.346667pt;}
.y135{bottom:229.253333pt;}
.y151{bottom:229.946667pt;}
.ya8{bottom:231.866667pt;}
.y122{bottom:232.986667pt;}
.y139{bottom:236.186667pt;}
.yf6{bottom:236.506667pt;}
.y34{bottom:238.746667pt;}
.y105{bottom:241.053333pt;}
.y167{bottom:241.146667pt;}
.ye0{bottom:243.933333pt;}
.y80{bottom:245.466667pt;}
.y63{bottom:245.946667pt;}
.y150{bottom:247.546667pt;}
.ya7{bottom:249.466667pt;}
.y121{bottom:250.586667pt;}
.ycc{bottom:254.213333pt;}
.yf5{bottom:254.426667pt;}
.y33{bottom:256.346667pt;}
.yfd{bottom:256.506667pt;}
.y166{bottom:258.746667pt;}
.y7f{bottom:260.186667pt;}
.y62{bottom:263.546667pt;}
.ye8{bottom:263.866667pt;}
.yd5{bottom:264.253333pt;}
.y14f{bottom:265.146667pt;}
.ybe{bottom:265.946667pt;}
.ya6{bottom:267.066667pt;}
.y120{bottom:268.186667pt;}
.yf4{bottom:268.986667pt;}
.y32{bottom:273.946667pt;}
.y165{bottom:276.506667pt;}
.y106{bottom:279.386667pt;}
.ydf{bottom:280.960000pt;}
.y61{bottom:281.146667pt;}
.y14e{bottom:282.746667pt;}
.y13c{bottom:283.586667pt;}
.ya5{bottom:284.826667pt;}
.y11f{bottom:285.946667pt;}
.yba{bottom:287.066667pt;}
.y31{bottom:291.706667pt;}
.y164{bottom:294.106667pt;}
.yfe{bottom:296.133333pt;}
.y13b{bottom:297.373333pt;}
.y60{bottom:298.746667pt;}
.ye9{bottom:299.706667pt;}
.y14d{bottom:300.506667pt;}
.ya4{bottom:302.426667pt;}
.y11e{bottom:303.546667pt;}
.yb9{bottom:304.986667pt;}
.y30{bottom:309.306667pt;}
.y163{bottom:311.706667pt;}
.yd9{bottom:314.786667pt;}
.y5f{bottom:316.506667pt;}
.y107{bottom:317.693333pt;}
.y14c{bottom:318.106667pt;}
.ya3{bottom:319.706667pt;}
.y11d{bottom:321.146667pt;}
.yb8{bottom:322.586667pt;}
.y2f{bottom:326.906667pt;}
.yd8{bottom:328.573333pt;}
.yde{bottom:328.933333pt;}
.y162{bottom:329.306667pt;}
.y5e{bottom:334.106667pt;}
.yea{bottom:335.520000pt;}
.y14b{bottom:335.706667pt;}
.y11c{bottom:338.746667pt;}
.yb7{bottom:340.346667pt;}
.y2e{bottom:344.506667pt;}
.ya2{bottom:345.626667pt;}
.y161{bottom:346.906667pt;}
.yff{bottom:347.453333pt;}
.y5d{bottom:351.706667pt;}
.y14a{bottom:352.986667pt;}
.y108{bottom:356.000000pt;}
.y11b{bottom:356.066667pt;}
.yb6{bottom:357.986667pt;}
.yef{bottom:360.133333pt;}
.y2d{bottom:362.146667pt;}
.ya1{bottom:363.266667pt;}
.y160{bottom:364.386667pt;}
.y5c{bottom:369.346667pt;}
.y149{bottom:370.946667pt;}
.yee{bottom:373.920000pt;}
.yb5{bottom:375.586667pt;}
.y2c{bottom:379.906667pt;}
.y10c{bottom:380.226667pt;}
.ya0{bottom:381.026667pt;}
.y15f{bottom:381.986667pt;}
.y11a{bottom:382.146667pt;}
.y92{bottom:385.026667pt;}
.y5b{bottom:386.946667pt;}
.y148{bottom:388.706667pt;}
.yb4{bottom:393.186667pt;}
.y10b{bottom:394.013333pt;}
.y2b{bottom:397.506667pt;}
.y9f{bottom:398.306667pt;}
.y119{bottom:399.746667pt;}
.y15e{bottom:399.906667pt;}
.y91{bottom:402.626667pt;}
.y170{bottom:404.386667pt;}
.y5a{bottom:404.706667pt;}
.y147{bottom:406.306667pt;}
.yb3{bottom:410.466667pt;}
.y2a{bottom:415.106667pt;}
.y9e{bottom:415.906667pt;}
.y118{bottom:417.346667pt;}
.y90{bottom:420.226667pt;}
.y59{bottom:422.306667pt;}
.y146{bottom:423.906667pt;}
.y15d{bottom:425.506667pt;}
.yb2{bottom:428.226667pt;}
.y29{bottom:432.386667pt;}
.y9d{bottom:433.826667pt;}
.y117{bottom:434.946667pt;}
.y8f{bottom:437.826667pt;}
.y58{bottom:439.906667pt;}
.y145{bottom:441.506667pt;}
.y15c{bottom:443.106667pt;}
.yb1{bottom:445.826667pt;}
.y28{bottom:450.306667pt;}
.y9c{bottom:451.426667pt;}
.y116{bottom:452.546667pt;}
.y8e{bottom:455.586667pt;}
.y57{bottom:457.506667pt;}
.y144{bottom:459.106667pt;}
.yf3{bottom:460.066667pt;}
.yb0{bottom:463.426667pt;}
.y27{bottom:468.066667pt;}
.y15b{bottom:468.866667pt;}
.y9b{bottom:469.186667pt;}
.y115{bottom:470.306667pt;}
.y8d{bottom:473.186667pt;}
.y56{bottom:475.106667pt;}
.y143{bottom:476.866667pt;}
.yf2{bottom:477.986667pt;}
.yaf{bottom:478.306667pt;}
.ybc{bottom:479.040000pt;}
.y26{bottom:485.666667pt;}
.y9a{bottom:486.786667pt;}
.y114{bottom:487.906667pt;}
.y8c{bottom:490.466667pt;}
.y55{bottom:492.866667pt;}
.y142{bottom:494.466667pt;}
.yf1{bottom:495.426667pt;}
.y25{bottom:502.946667pt;}
.y99{bottom:504.066667pt;}
.y113{bottom:505.506667pt;}
.y8b{bottom:508.386667pt;}
.yf0{bottom:510.146667pt;}
.y54{bottom:510.466667pt;}
.yf8{bottom:511.840000pt;}
.y141{bottom:512.066667pt;}
.y15a{bottom:520.066667pt;}
.y24{bottom:520.866667pt;}
.y98{bottom:522.146667pt;}
.y112{bottom:523.106667pt;}
.y8a{bottom:525.666667pt;}
.y53{bottom:528.066667pt;}
.y7e{bottom:529.346667pt;}
.y140{bottom:529.666667pt;}
.y23{bottom:538.466667pt;}
.y89{bottom:540.546667pt;}
.y111{bottom:540.706667pt;}
.y97{bottom:541.026667pt;}
.yc4{bottom:542.466667pt;}
.y52{bottom:545.666667pt;}
.y7d{bottom:547.266667pt;}
.y96{bottom:555.746667pt;}
.y22{bottom:556.226667pt;}
.y110{bottom:558.146667pt;}
.yc3{bottom:561.346667pt;}
.y51{bottom:563.266667pt;}
.y7c{bottom:565.026667pt;}
.y21{bottom:573.826667pt;}
.y10f{bottom:575.746667pt;}
.yc2{bottom:576.066667pt;}
.yc7{bottom:577.280000pt;}
.y50{bottom:581.053333pt;}
.y7b{bottom:582.653333pt;}
.y20{bottom:591.453333pt;}
.y10e{bottom:593.373333pt;}
.y4f{bottom:598.653333pt;}
.y7a{bottom:600.253333pt;}
.y10d{bottom:608.093333pt;}
.y12b{bottom:608.480000pt;}
.y1f{bottom:609.053333pt;}
.y4e{bottom:616.253333pt;}
.y79{bottom:617.853333pt;}
.y1e{bottom:626.653333pt;}
.y4d{bottom:633.853333pt;}
.y78{bottom:635.453333pt;}
.y1d{bottom:644.253333pt;}
.y4c{bottom:651.453333pt;}
.y77{bottom:653.213333pt;}
.y1c{bottom:662.013333pt;}
.y4b{bottom:669.213333pt;}
.y76{bottom:670.493333pt;}
.y13f{bottom:670.813333pt;}
.y1b{bottom:679.613333pt;}
.y4a{bottom:686.813333pt;}
.y13e{bottom:688.093333pt;}
.y75{bottom:696.413333pt;}
.y1a{bottom:697.213333pt;}
.y159{bottom:704.093333pt;}
.y49{bottom:704.413333pt;}
.y74{bottom:714.013333pt;}
.y19{bottom:714.493333pt;}
.y48{bottom:722.013333pt;}
.y73{bottom:731.613333pt;}
.y18{bottom:737.053333pt;}
.y47{bottom:739.613333pt;}
.y13d{bottom:749.053333pt;}
.y72{bottom:749.373333pt;}
.y17{bottom:754.813333pt;}
.y46{bottom:757.373333pt;}
.y71{bottom:766.973333pt;}
.y16{bottom:772.413333pt;}
.y45{bottom:774.973333pt;}
.y70{bottom:784.573333pt;}
.y15{bottom:790.013333pt;}
.y44{bottom:792.573333pt;}
.yae{bottom:794.493333pt;}
.y6f{bottom:802.213333pt;}
.y14{bottom:803.333333pt;}
.y43{bottom:810.213333pt;}
.y6e{bottom:819.813333pt;}
.y13{bottom:822.853333pt;}
.y95{bottom:827.493333pt;}
.y42{bottom:827.813333pt;}
.y6d{bottom:837.253333pt;}
.y12{bottom:842.213333pt;}
.y41{bottom:845.573333pt;}
.y40{bottom:863.173333pt;}
.y11{bottom:864.133333pt;}
.y3f{bottom:880.773333pt;}
.y10{bottom:892.293333pt;}
.y3e{bottom:898.373333pt;}
.y6c{bottom:915.653333pt;}
.y3d{bottom:915.973333pt;}
.ya{bottom:931.493333pt;}
.y3{bottom:944.120000pt;}
.y1{bottom:944.133333pt;}
.y8{bottom:974.533333pt;}
.h7{height:2.512500pt;}
.ha{height:19.360000pt;}
.h8{height:29.746667pt;}
.hd{height:33.918750pt;}
.h22{height:38.413438pt;}
.h13{height:42.084375pt;}
.h16{height:42.210000pt;}
.h12{height:42.649688pt;}
.h14{height:47.109375pt;}
.h1a{height:47.235000pt;}
.h1e{height:47.742188pt;}
.h1f{height:47.869500pt;}
.h10{height:52.108438pt;}
.hf{height:52.134375pt;}
.he{height:53.535000pt;}
.h21{height:54.598989pt;}
.hb{height:57.787500pt;}
.h9{height:58.563750pt;}
.h5{height:59.340000pt;}
.h3{height:80.625000pt;}
.hc{height:85.785000pt;}
.h17{height:86.777700pt;}
.h6{height:100.026667pt;}
.h18{height:102.256042pt;}
.h1d{height:105.349375pt;}
.h1c{height:122.256042pt;}
.h2{height:130.432000pt;}
.h4{height:130.440000pt;}
.h11{height:305.280000pt;}
.h20{height:319.680000pt;}
.h15{height:350.880000pt;}
.h19{height:396.320000pt;}
.h1b{height:416.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:8.800000pt;}
.w3{width:117.146667pt;}
.w5{width:556.000000pt;}
.w2{width:581.880000pt;}
.w6{width:624.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1e{left:28.026667pt;}
.x2d{left:34.560000pt;}
.x35{left:40.544000pt;}
.x2c{left:41.536000pt;}
.x1d{left:44.960000pt;}
.x1{left:47.360000pt;}
.x12{left:64.640000pt;}
.x3e{left:70.813333pt;}
.x49{left:72.000000pt;}
.x36{left:73.413333pt;}
.x22{left:84.800000pt;}
.x18{left:87.106667pt;}
.x4a{left:96.032000pt;}
.x8{left:99.552000pt;}
.x31{left:101.306667pt;}
.x3c{left:102.306667pt;}
.x4{left:105.146667pt;}
.x17{left:118.720000pt;}
.xc{left:134.906667pt;}
.x3f{left:143.840000pt;}
.xa{left:145.306667pt;}
.xb{left:147.706667pt;}
.x6{left:178.586667pt;}
.x15{left:180.666667pt;}
.xf{left:187.546667pt;}
.x19{left:188.893333pt;}
.x32{left:211.866667pt;}
.x21{left:225.306667pt;}
.x38{left:237.626667pt;}
.x2f{left:238.946667pt;}
.x1f{left:242.146667pt;}
.x47{left:245.373333pt;}
.x44{left:246.880000pt;}
.x27{left:259.040000pt;}
.x3a{left:265.026667pt;}
.x2e{left:275.906667pt;}
.x26{left:284.480000pt;}
.x37{left:288.186667pt;}
.x1a{left:290.693333pt;}
.x40{left:304.866667pt;}
.x25{left:306.240000pt;}
.x33{left:322.426667pt;}
.x48{left:329.573333pt;}
.x45{left:331.746667pt;}
.x30{left:332.960000pt;}
.x9{left:337.186667pt;}
.x39{left:348.346667pt;}
.x24{left:351.906667pt;}
.x1b{left:392.480000pt;}
.x7{left:396.893333pt;}
.x46{left:409.946667pt;}
.x23{left:415.453333pt;}
.x41{left:420.506667pt;}
.x2b{left:423.173333pt;}
.x34{left:432.986667pt;}
.x2a{left:461.693333pt;}
.x42{left:475.653333pt;}
.x1c{left:494.266667pt;}
.x29{left:515.653333pt;}
.x43{left:540.066667pt;}
.x3d{left:543.653333pt;}
.x13{left:565.893333pt;}
.x28{left:581.146667pt;}
.x16{left:599.973333pt;}
.x10{left:606.213333pt;}
.x3{left:629.253333pt;}
.x11{left:633.893333pt;}
.xe{left:656.933333pt;}
.x14{left:675.013333pt;}
.x20{left:708.933333pt;}
.x3b{left:712.933333pt;}
.x5{left:737.120000pt;}
.xd{left:740.960000pt;}
}




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