
    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_026e9d601302e21fb32dcbf8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946777;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_14aacf92002fd99f4cc44b74.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.947266;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_b4cb49520fa59a9f75d5b884.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.965820;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_a074c35ed70db3c0cc92cb1a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947266;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_3d459fdd965b9b53bdfd129f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_ec9aeabe9710d8e9a5a8d46d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.961426;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_54668c1a6dc99c1fa51f5818.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a4a877773a58a3354ca12028.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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);}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-2.850000px;}
.ls1e{letter-spacing:-1.986000px;}
.lse{letter-spacing:-0.996000px;}
.ls18{letter-spacing:-0.948000px;}
.ls2{letter-spacing:-0.780000px;}
.ls21{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.518400px;}
.ls1a{letter-spacing:-0.475200px;}
.ls6{letter-spacing:-0.345600px;}
.lsf{letter-spacing:-0.302400px;}
.ls3{letter-spacing:-0.259200px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.086400px;}
.ls19{letter-spacing:0.172800px;}
.ls12{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.388800px;}
.ls15{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.948000px;}
.ls8{letter-spacing:1.036800px;}
.ls20{letter-spacing:1.038000px;}
.ls16{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.122000px;}
.ls1f{letter-spacing:1.200000px;}
.ls7{letter-spacing:1.216800px;}
.ls1d{letter-spacing:1.260000px;}
.ls0{letter-spacing:1.728000px;}
.ls10{letter-spacing:1.812000px;}
.lsa{letter-spacing:1.848000px;}
.lsb{letter-spacing:1.860000px;}
.lsc{letter-spacing:1.908000px;}
.ls14{letter-spacing:2.550000px;}
.ls11{letter-spacing:3.110400px;}
.ls1b{letter-spacing:4.492800px;}
.ls9{letter-spacing:20.510400px;}
.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;}
}
.ws12{word-spacing:-66.960000px;}
.wsc{word-spacing:-24.621600px;}
.wsb{word-spacing:-23.241600px;}
.wsa{word-spacing:-23.025600px;}
.ws5{word-spacing:-22.809600px;}
.ws9{word-spacing:-22.507200px;}
.ws15{word-spacing:-22.465200px;}
.ws6{word-spacing:-22.464000px;}
.wsd{word-spacing:-21.861600px;}
.ws8{word-spacing:-21.813600px;}
.wsf{word-spacing:-21.427200px;}
.ws7{word-spacing:-21.384000px;}
.ws14{word-spacing:-21.168000px;}
.wse{word-spacing:-20.952000px;}
.ws16{word-spacing:-20.779200px;}
.ws1{word-spacing:-20.563200px;}
.ws11{word-spacing:-20.088000px;}
.ws2{word-spacing:-20.044800px;}
.ws10{word-spacing:-19.612800px;}
.ws3{word-spacing:-19.353600px;}
.ws13{word-spacing:-18.577200px;}
.ws0{word-spacing:-18.573600px;}
.ws4{word-spacing:0.000000px;}
._3c{margin-left:-3.679200px;}
._0{margin-left:-2.613600px;}
._3{margin-left:-1.158240px;}
._1{width:1.140480px;}
._2{width:2.946240px;}
._11{width:3.955200px;}
._10{width:5.156640px;}
._8{width:6.489600px;}
._9{width:7.915680px;}
._f{width:9.359040px;}
._18{width:10.554240px;}
._19{width:12.060000px;}
._1a{width:13.332000px;}
._15{width:14.878080px;}
._16{width:15.949440px;}
._d{width:17.112960px;}
._4{width:18.685920px;}
._5{width:20.366880px;}
._7{width:21.594720px;}
._17{width:22.925760px;}
._6{width:23.959200px;}
._20{width:25.625040px;}
._21{width:26.727120px;}
._23{width:28.721760px;}
._22{width:30.452400px;}
._12{width:31.462080px;}
._a{width:32.496000px;}
._c{width:33.605280px;}
._b{width:34.930560px;}
._e{width:36.745920px;}
._1b{width:38.534880px;}
._1c{width:39.842400px;}
._32{width:40.932960px;}
._27{width:41.962080px;}
._24{width:44.140080px;}
._14{width:45.733440px;}
._28{width:47.092320px;}
._2b{width:48.702000px;}
._1e{width:50.412720px;}
._1f{width:51.761520px;}
._2c{width:52.957440px;}
._39{width:54.060720px;}
._33{width:55.370640px;}
._2d{width:56.667600px;}
._31{width:57.825840px;}
._29{width:59.518800px;}
._2a{width:61.176000px;}
._2e{width:62.215440px;}
._13{width:68.330400px;}
._2f{width:71.291760px;}
._30{width:72.420480px;}
._37{width:73.751040px;}
._3b{width:74.754960px;}
._36{width:75.786240px;}
._3d{width:95.752800px;}
._3e{width:96.911040px;}
._3f{width:98.199600px;}
._34{width:104.870640px;}
._35{width:106.866480px;}
._41{width:252.325200px;}
._40{width:253.749840px;}
._42{width:255.592560px;}
._26{width:799.706400px;}
._3a{width:910.003200px;}
._1d{width:949.003200px;}
._38{width:1253.045760px;}
._25{width:1292.709600px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:47.520000px;}
.fs1{font-size:60.480000px;}
.fs6{font-size:66.960000px;}
.fs4{font-size:71.280000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:95.040000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.240000px;}
.y34{bottom:57.780000px;}
.yc2{bottom:112.356000px;}
.y31{bottom:113.976000px;}
.y5f{bottom:115.596000px;}
.ya3{bottom:116.676000px;}
.y122{bottom:119.376000px;}
.yfa{bottom:119.916000px;}
.yd4{bottom:120.996000px;}
.y115{bottom:125.856000px;}
.y119{bottom:128.556000px;}
.y8b{bottom:129.096000px;}
.y169{bottom:131.796000px;}
.yc1{bottom:133.416000px;}
.y30{bottom:136.116000px;}
.y5e{bottom:136.656000px;}
.ya2{bottom:137.736000px;}
.y121{bottom:138.816000px;}
.yf9{bottom:140.976000px;}
.yd3{bottom:142.596000px;}
.y114{bottom:146.952000px;}
.y8a{bottom:150.195000px;}
.y168{bottom:151.815000px;}
.y2f{bottom:153.975000px;}
.yc0{bottom:154.515000px;}
.y18e{bottom:157.215000px;}
.y5d{bottom:158.295000px;}
.ya1{bottom:158.835000px;}
.y145{bottom:159.915000px;}
.yf8{bottom:162.075000px;}
.yd2{bottom:168.015000px;}
.y2e{bottom:171.255000px;}
.y167{bottom:175.035000px;}
.ybf{bottom:175.575000px;}
.y5c{bottom:179.355000px;}
.ya0{bottom:179.895000px;}
.y18d{bottom:180.975000px;}
.y120{bottom:181.515000px;}
.yf7{bottom:183.135000px;}
.y2d{bottom:189.075000px;}
.y89{bottom:192.315000px;}
.y166{bottom:195.015000px;}
.ybe{bottom:196.635000px;}
.y144{bottom:199.335000px;}
.y5b{bottom:200.415000px;}
.y9f{bottom:200.955000px;}
.y113{bottom:201.495000px;}
.yf6{bottom:204.195000px;}
.y18c{bottom:204.735000px;}
.y2c{bottom:206.895000px;}
.yd1{bottom:210.135000px;}
.y88{bottom:213.375000px;}
.y165{bottom:214.455000px;}
.ybd{bottom:217.695000px;}
.y11f{bottom:220.965000px;}
.y5a{bottom:221.505000px;}
.y9e{bottom:222.585000px;}
.y2b{bottom:224.205000px;}
.yf5{bottom:225.825000px;}
.y18b{bottom:228.525000px;}
.yd0{bottom:231.225000px;}
.y164{bottom:237.705000px;}
.ybc{bottom:238.785000px;}
.y87{bottom:239.325000px;}
.y2a{bottom:242.025000px;}
.y59{bottom:242.565000px;}
.y112{bottom:243.645000px;}
.y11e{bottom:244.185000px;}
.yf4{bottom:246.885000px;}
.y9d{bottom:247.965000px;}
.ycf{bottom:252.825000px;}
.y163{bottom:257.685000px;}
.y29{bottom:259.845000px;}
.yff{bottom:260.385000px;}
.y11d{bottom:264.165000px;}
.y86{bottom:264.705000px;}
.y143{bottom:265.785000px;}
.y58{bottom:268.485000px;}
.y9c{bottom:269.025000px;}
.yf3{bottom:272.265000px;}
.yce{bottom:273.885000px;}
.y28{bottom:277.125000px;}
.y162{bottom:280.905000px;}
.yfe{bottom:281.445000px;}
.y11c{bottom:283.605000px;}
.ybb{bottom:285.765000px;}
.y57{bottom:289.545000px;}
.y85{bottom:290.085000px;}
.y18a{bottom:291.705000px;}
.y27{bottom:294.945000px;}
.yf2{bottom:298.230000px;}
.y161{bottom:300.930000px;}
.y104{bottom:302.550000px;}
.yba{bottom:306.870000px;}
.y142{bottom:309.030000px;}
.y56{bottom:310.650000px;}
.y9b{bottom:311.190000px;}
.y84{bottom:311.730000px;}
.y26{bottom:312.270000px;}
.y189{bottom:315.510000px;}
.ycd{bottom:316.050000px;}
.y160{bottom:320.370000px;}
.yf1{bottom:323.610000px;}
.y11b{bottom:326.850000px;}
.yb9{bottom:327.930000px;}
.y25{bottom:330.090000px;}
.y55{bottom:331.710000px;}
.y83{bottom:332.790000px;}
.y141{bottom:333.330000px;}
.y188{bottom:334.950000px;}
.ycc{bottom:337.110000px;}
.y15f{bottom:343.590000px;}
.yf0{bottom:344.670000px;}
.y11a{bottom:346.290000px;}
.y24{bottom:347.910000px;}
.yb8{bottom:348.990000px;}
.y103{bottom:349.530000px;}
.y54{bottom:352.770000px;}
.y82{bottom:353.850000px;}
.y187{bottom:354.390000px;}
.y140{bottom:357.090000px;}
.yfd{bottom:358.170000px;}
.ycb{bottom:363.030000px;}
.y15e{bottom:363.570000px;}
.y23{bottom:365.190000px;}
.yef{bottom:365.730000px;}
.yb7{bottom:370.590000px;}
.y53{bottom:373.830000px;}
.y81{bottom:374.910000px;}
.y13f{bottom:376.560000px;}
.y186{bottom:378.180000px;}
.yfc{bottom:379.260000px;}
.y22{bottom:383.040000px;}
.yca{bottom:384.120000px;}
.yee{bottom:386.820000px;}
.yb6{bottom:391.680000px;}
.y52{bottom:394.920000px;}
.y80{bottom:396.000000px;}
.y13e{bottom:396.540000px;}
.y185{bottom:397.620000px;}
.y21{bottom:400.320000px;}
.yc9{bottom:405.180000px;}
.y15d{bottom:406.260000px;}
.y118{bottom:407.880000px;}
.yed{bottom:408.420000px;}
.yb5{bottom:412.740000px;}
.y51{bottom:415.980000px;}
.y7f{bottom:417.060000px;}
.y20{bottom:418.140000px;}
.y184{bottom:421.380000px;}
.yfb{bottom:421.920000px;}
.yc8{bottom:426.240000px;}
.yec{bottom:429.480000px;}
.yb4{bottom:433.800000px;}
.y50{bottom:437.580000px;}
.y9a{bottom:438.120000px;}
.y13d{bottom:439.200000px;}
.y1f{bottom:440.820000px;}
.y183{bottom:441.360000px;}
.y7e{bottom:442.980000px;}
.y15c{bottom:445.680000px;}
.yc7{bottom:447.300000px;}
.yeb{bottom:450.540000px;}
.yb3{bottom:454.890000px;}
.y4f{bottom:458.670000px;}
.y99{bottom:459.210000px;}
.y13c{bottom:462.990000px;}
.y7d{bottom:464.070000px;}
.y182{bottom:464.610000px;}
.y1e{bottom:465.690000px;}
.yc6{bottom:468.390000px;}
.y15b{bottom:468.930000px;}
.yea{bottom:471.630000px;}
.yb2{bottom:475.950000px;}
.y4e{bottom:479.730000px;}
.y98{bottom:480.270000px;}
.y13b{bottom:482.970000px;}
.y181{bottom:484.590000px;}
.y7c{bottom:485.130000px;}
.y1d{bottom:487.830000px;}
.y15a{bottom:488.910000px;}
.yc5{bottom:489.450000px;}
.ye9{bottom:492.690000px;}
.y102{bottom:497.010000px;}
.y4d{bottom:500.790000px;}
.y97{bottom:501.870000px;}
.y13a{bottom:502.410000px;}
.y180{bottom:503.490000px;}
.y1c{bottom:505.650000px;}
.y7b{bottom:506.190000px;}
.yc4{bottom:510.510000px;}
.y159{bottom:512.130000px;}
.ye8{bottom:513.750000px;}
.y101{bottom:518.610000px;}
.y4c{bottom:521.850000px;}
.y96{bottom:522.930000px;}
.y1b{bottom:523.470000px;}
.y139{bottom:525.630000px;}
.y7a{bottom:527.250000px;}
.y111{bottom:531.615000px;}
.yc3{bottom:532.155000px;}
.ye7{bottom:539.715000px;}
.y1a{bottom:540.795000px;}
.y4b{bottom:542.955000px;}
.y95{bottom:544.035000px;}
.y138{bottom:545.655000px;}
.y79{bottom:548.355000px;}
.y17f{bottom:551.055000px;}
.y158{bottom:551.595000px;}
.yb1{bottom:553.215000px;}
.y19{bottom:558.615000px;}
.ye6{bottom:560.775000px;}
.y100{bottom:565.095000px;}
.y4a{bottom:568.875000px;}
.y78{bottom:569.415000px;}
.y17e{bottom:571.035000px;}
.yb0{bottom:574.275000px;}
.y157{bottom:574.815000px;}
.y18{bottom:575.895000px;}
.ye5{bottom:581.835000px;}
.y137{bottom:588.315000px;}
.y49{bottom:589.935000px;}
.y17d{bottom:590.475000px;}
.y77{bottom:591.015000px;}
.y17{bottom:593.715000px;}
.y156{bottom:594.795000px;}
.yaf{bottom:595.335000px;}
.ye4{bottom:602.895000px;}
.y10a{bottom:607.215000px;}
.y136{bottom:607.785000px;}
.y48{bottom:611.025000px;}
.y16{bottom:611.565000px;}
.y76{bottom:612.105000px;}
.y17c{bottom:613.725000px;}
.yae{bottom:616.425000px;}
.y155{bottom:618.045000px;}
.y110{bottom:620.745000px;}
.ye3{bottom:623.985000px;}
.y15{bottom:628.845000px;}
.y47{bottom:632.085000px;}
.y75{bottom:633.165000px;}
.yad{bottom:637.485000px;}
.y154{bottom:638.025000px;}
.y10f{bottom:642.345000px;}
.ye2{bottom:645.045000px;}
.y14{bottom:646.665000px;}
.y135{bottom:651.525000px;}
.y46{bottom:653.145000px;}
.y74{bottom:654.225000px;}
.y17b{bottom:657.465000px;}
.yac{bottom:658.545000px;}
.y153{bottom:661.245000px;}
.y10e{bottom:663.405000px;}
.y13{bottom:663.945000px;}
.ye1{bottom:666.105000px;}
.y117{bottom:670.965000px;}
.y45{bottom:674.205000px;}
.y73{bottom:675.285000px;}
.yab{bottom:679.605000px;}
.y152{bottom:681.225000px;}
.y12{bottom:681.765000px;}
.y10d{bottom:684.465000px;}
.ye0{bottom:687.750000px;}
.y134{bottom:690.450000px;}
.y109{bottom:692.070000px;}
.y44{bottom:695.310000px;}
.y94{bottom:696.390000px;}
.y11{bottom:699.630000px;}
.y17a{bottom:700.710000px;}
.y72{bottom:701.250000px;}
.y151{bottom:704.490000px;}
.y10c{bottom:705.570000px;}
.ydf{bottom:708.810000px;}
.y133{bottom:709.890000px;}
.y108{bottom:713.130000px;}
.y10{bottom:716.910000px;}
.y93{bottom:717.450000px;}
.y179{bottom:720.150000px;}
.y71{bottom:722.310000px;}
.y150{bottom:724.470000px;}
.y10b{bottom:726.630000px;}
.yde{bottom:729.870000px;}
.y132{bottom:733.110000px;}
.y107{bottom:734.190000px;}
.yf{bottom:734.730000px;}
.y43{bottom:737.970000px;}
.y92{bottom:738.510000px;}
.y70{bottom:743.370000px;}
.y178{bottom:743.910000px;}
.yaa{bottom:747.690000px;}
.ydd{bottom:750.930000px;}
.ye{bottom:752.010000px;}
.y131{bottom:753.090000px;}
.y106{bottom:755.250000px;}
.y42{bottom:759.030000px;}
.y91{bottom:760.110000px;}
.y177{bottom:763.380000px;}
.y6f{bottom:764.460000px;}
.y14f{bottom:767.700000px;}
.ya9{bottom:768.780000px;}
.yd{bottom:769.860000px;}
.y130{bottom:772.560000px;}
.ydc{bottom:776.340000px;}
.y41{bottom:780.120000px;}
.y176{bottom:782.820000px;}
.y6e{bottom:785.520000px;}
.ya8{bottom:789.840000px;}
.y14e{bottom:790.920000px;}
.yc{bottom:792.540000px;}
.y12f{bottom:795.780000px;}
.ydb{bottom:797.940000px;}
.y40{bottom:801.180000px;}
.y175{bottom:806.040000px;}
.y6d{bottom:806.580000px;}
.y14d{bottom:810.900000px;}
.ya7{bottom:811.440000px;}
.y12e{bottom:815.760000px;}
.yb{bottom:818.460000px;}
.yda{bottom:819.000000px;}
.y3f{bottom:822.240000px;}
.y174{bottom:826.020000px;}
.y6c{bottom:827.640000px;}
.ya6{bottom:832.500000px;}
.y14c{bottom:834.660000px;}
.y12d{bottom:835.200000px;}
.yd9{bottom:840.090000px;}
.ya{bottom:843.870000px;}
.y105{bottom:844.410000px;}
.y3e{bottom:848.190000px;}
.y6b{bottom:848.730000px;}
.y173{bottom:849.810000px;}
.ya5{bottom:853.590000px;}
.y14b{bottom:854.130000px;}
.y12c{bottom:858.450000px;}
.yd8{bottom:861.150000px;}
.y3d{bottom:869.250000px;}
.y6a{bottom:870.330000px;}
.y9{bottom:870.870000px;}
.y172{bottom:873.570000px;}
.ya4{bottom:874.650000px;}
.y14a{bottom:877.890000px;}
.y12b{bottom:878.430000px;}
.yd7{bottom:882.210000px;}
.y116{bottom:886.530000px;}
.y3c{bottom:890.310000px;}
.y90{bottom:891.390000px;}
.y171{bottom:893.550000px;}
.y69{bottom:895.710000px;}
.y12a{bottom:897.870000px;}
.y8{bottom:902.190000px;}
.yd6{bottom:903.270000px;}
.y3b{bottom:911.370000px;}
.y8f{bottom:912.450000px;}
.y170{bottom:912.990000px;}
.y68{bottom:916.770000px;}
.y129{bottom:921.135000px;}
.y7{bottom:928.695000px;}
.yd5{bottom:929.235000px;}
.y3a{bottom:932.475000px;}
.y8e{bottom:933.555000px;}
.y16f{bottom:936.255000px;}
.y67{bottom:937.875000px;}
.y128{bottom:941.115000px;}
.y6{bottom:953.535000px;}
.y8d{bottom:954.615000px;}
.y66{bottom:958.935000px;}
.y16e{bottom:960.015000px;}
.y127{bottom:960.555000px;}
.y149{bottom:964.335000px;}
.y39{bottom:974.595000px;}
.y8c{bottom:975.675000px;}
.y16d{bottom:979.995000px;}
.y65{bottom:980.535000px;}
.y5{bottom:983.775000px;}
.y148{bottom:984.315000px;}
.y38{bottom:996.225000px;}
.y64{bottom:1001.625000px;}
.y16c{bottom:1003.245000px;}
.y126{bottom:1003.785000px;}
.y147{bottom:1007.565000px;}
.y37{bottom:1017.285000px;}
.y4{bottom:1019.985000px;}
.y63{bottom:1022.685000px;}
.y16b{bottom:1023.225000px;}
.y125{bottom:1027.005000px;}
.y36{bottom:1042.665000px;}
.y62{bottom:1043.745000px;}
.y16a{bottom:1046.445000px;}
.y124{bottom:1046.985000px;}
.y3{bottom:1051.845000px;}
.y61{bottom:1064.805000px;}
.y146{bottom:1065.885000px;}
.y123{bottom:1066.425000px;}
.y35{bottom:1067.505000px;}
.y33{bottom:1099.410000px;}
.y60{bottom:1102.110000px;}
.y32{bottom:1119.930000px;}
.y1{bottom:1122.630000px;}
.h1{height:34.038984px;}
.h2{height:43.322344px;}
.h8{height:44.444531px;}
.ha{height:47.964023px;}
.h5{height:51.058477px;}
.h7{height:52.381055px;}
.h9{height:54.051680px;}
.hb{height:56.432109px;}
.h4{height:61.904883px;}
.h6{height:69.841406px;}
.h3{height:79.365234px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:126.432000px;}
.xb{left:127.512000px;}
.xd{left:130.752000px;}
.x1{left:162.645000px;}
.xf{left:170.205000px;}
.xa{left:178.845000px;}
.x10{left:181.545000px;}
.xc{left:191.265000px;}
.x3{left:204.765000px;}
.x6{left:229.110000px;}
.xe{left:309.060000px;}
.x9{left:332.820000px;}
.x4{left:334.440000px;}
.x7{left:377.130000px;}
.x2{left:449.535000px;}
.x5{left:458.715000px;}
.x8{left:790.485000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-2.533333pt;}
.ls1e{letter-spacing:-1.765333pt;}
.lse{letter-spacing:-0.885333pt;}
.ls18{letter-spacing:-0.842667pt;}
.ls2{letter-spacing:-0.693333pt;}
.ls21{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.460800pt;}
.ls1a{letter-spacing:-0.422400pt;}
.ls6{letter-spacing:-0.307200pt;}
.lsf{letter-spacing:-0.268800pt;}
.ls3{letter-spacing:-0.230400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.076800pt;}
.ls19{letter-spacing:0.153600pt;}
.ls12{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.345600pt;}
.ls15{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.842667pt;}
.ls8{letter-spacing:0.921600pt;}
.ls20{letter-spacing:0.922667pt;}
.ls16{letter-spacing:0.960000pt;}
.ls17{letter-spacing:0.997333pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls7{letter-spacing:1.081600pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls0{letter-spacing:1.536000pt;}
.ls10{letter-spacing:1.610667pt;}
.lsa{letter-spacing:1.642667pt;}
.lsb{letter-spacing:1.653333pt;}
.lsc{letter-spacing:1.696000pt;}
.ls14{letter-spacing:2.266667pt;}
.ls11{letter-spacing:2.764800pt;}
.ls1b{letter-spacing:3.993600pt;}
.ls9{letter-spacing:18.231467pt;}
.ws12{word-spacing:-59.520000pt;}
.wsc{word-spacing:-21.885867pt;}
.wsb{word-spacing:-20.659200pt;}
.wsa{word-spacing:-20.467200pt;}
.ws5{word-spacing:-20.275200pt;}
.ws9{word-spacing:-20.006400pt;}
.ws15{word-spacing:-19.969067pt;}
.ws6{word-spacing:-19.968000pt;}
.wsd{word-spacing:-19.432533pt;}
.ws8{word-spacing:-19.389867pt;}
.wsf{word-spacing:-19.046400pt;}
.ws7{word-spacing:-19.008000pt;}
.ws14{word-spacing:-18.816000pt;}
.wse{word-spacing:-18.624000pt;}
.ws16{word-spacing:-18.470400pt;}
.ws1{word-spacing:-18.278400pt;}
.ws11{word-spacing:-17.856000pt;}
.ws2{word-spacing:-17.817600pt;}
.ws10{word-spacing:-17.433600pt;}
.ws3{word-spacing:-17.203200pt;}
.ws13{word-spacing:-16.513067pt;}
.ws0{word-spacing:-16.509867pt;}
.ws4{word-spacing:0.000000pt;}
._3c{margin-left:-3.270400pt;}
._0{margin-left:-2.323200pt;}
._3{margin-left:-1.029547pt;}
._1{width:1.013760pt;}
._2{width:2.618880pt;}
._11{width:3.515733pt;}
._10{width:4.583680pt;}
._8{width:5.768533pt;}
._9{width:7.036160pt;}
._f{width:8.319147pt;}
._18{width:9.381547pt;}
._19{width:10.720000pt;}
._1a{width:11.850667pt;}
._15{width:13.224960pt;}
._16{width:14.177280pt;}
._d{width:15.211520pt;}
._4{width:16.609707pt;}
._5{width:18.103893pt;}
._7{width:19.195307pt;}
._17{width:20.378453pt;}
._6{width:21.297067pt;}
._20{width:22.777813pt;}
._21{width:23.757440pt;}
._23{width:25.530453pt;}
._22{width:27.068800pt;}
._12{width:27.966293pt;}
._a{width:28.885333pt;}
._c{width:29.871360pt;}
._b{width:31.049387pt;}
._e{width:32.663040pt;}
._1b{width:34.253227pt;}
._1c{width:35.415467pt;}
._32{width:36.384853pt;}
._27{width:37.299627pt;}
._24{width:39.235627pt;}
._14{width:40.651947pt;}
._28{width:41.859840pt;}
._2b{width:43.290667pt;}
._1e{width:44.811307pt;}
._1f{width:46.010240pt;}
._2c{width:47.073280pt;}
._39{width:48.053973pt;}
._33{width:49.218347pt;}
._2d{width:50.371200pt;}
._31{width:51.400747pt;}
._29{width:52.905600pt;}
._2a{width:54.378667pt;}
._2e{width:55.302613pt;}
._13{width:60.738133pt;}
._2f{width:63.370453pt;}
._30{width:64.373760pt;}
._37{width:65.556480pt;}
._3b{width:66.448853pt;}
._36{width:67.365547pt;}
._3d{width:85.113600pt;}
._3e{width:86.143147pt;}
._3f{width:87.288533pt;}
._34{width:93.218347pt;}
._35{width:94.992427pt;}
._41{width:224.289067pt;}
._40{width:225.555413pt;}
._42{width:227.193387pt;}
._26{width:710.850133pt;}
._3a{width:808.891733pt;}
._1d{width:843.558400pt;}
._38{width:1113.818453pt;}
._25{width:1149.075200pt;}
.fs0{font-size:42.240000pt;}
.fs1{font-size:53.760000pt;}
.fs6{font-size:59.520000pt;}
.fs4{font-size:63.360000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:84.480000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.880000pt;}
.y34{bottom:51.360000pt;}
.yc2{bottom:99.872000pt;}
.y31{bottom:101.312000pt;}
.y5f{bottom:102.752000pt;}
.ya3{bottom:103.712000pt;}
.y122{bottom:106.112000pt;}
.yfa{bottom:106.592000pt;}
.yd4{bottom:107.552000pt;}
.y115{bottom:111.872000pt;}
.y119{bottom:114.272000pt;}
.y8b{bottom:114.752000pt;}
.y169{bottom:117.152000pt;}
.yc1{bottom:118.592000pt;}
.y30{bottom:120.992000pt;}
.y5e{bottom:121.472000pt;}
.ya2{bottom:122.432000pt;}
.y121{bottom:123.392000pt;}
.yf9{bottom:125.312000pt;}
.yd3{bottom:126.752000pt;}
.y114{bottom:130.624000pt;}
.y8a{bottom:133.506667pt;}
.y168{bottom:134.946667pt;}
.y2f{bottom:136.866667pt;}
.yc0{bottom:137.346667pt;}
.y18e{bottom:139.746667pt;}
.y5d{bottom:140.706667pt;}
.ya1{bottom:141.186667pt;}
.y145{bottom:142.146667pt;}
.yf8{bottom:144.066667pt;}
.yd2{bottom:149.346667pt;}
.y2e{bottom:152.226667pt;}
.y167{bottom:155.586667pt;}
.ybf{bottom:156.066667pt;}
.y5c{bottom:159.426667pt;}
.ya0{bottom:159.906667pt;}
.y18d{bottom:160.866667pt;}
.y120{bottom:161.346667pt;}
.yf7{bottom:162.786667pt;}
.y2d{bottom:168.066667pt;}
.y89{bottom:170.946667pt;}
.y166{bottom:173.346667pt;}
.ybe{bottom:174.786667pt;}
.y144{bottom:177.186667pt;}
.y5b{bottom:178.146667pt;}
.y9f{bottom:178.626667pt;}
.y113{bottom:179.106667pt;}
.yf6{bottom:181.506667pt;}
.y18c{bottom:181.986667pt;}
.y2c{bottom:183.906667pt;}
.yd1{bottom:186.786667pt;}
.y88{bottom:189.666667pt;}
.y165{bottom:190.626667pt;}
.ybd{bottom:193.506667pt;}
.y11f{bottom:196.413333pt;}
.y5a{bottom:196.893333pt;}
.y9e{bottom:197.853333pt;}
.y2b{bottom:199.293333pt;}
.yf5{bottom:200.733333pt;}
.y18b{bottom:203.133333pt;}
.yd0{bottom:205.533333pt;}
.y164{bottom:211.293333pt;}
.ybc{bottom:212.253333pt;}
.y87{bottom:212.733333pt;}
.y2a{bottom:215.133333pt;}
.y59{bottom:215.613333pt;}
.y112{bottom:216.573333pt;}
.y11e{bottom:217.053333pt;}
.yf4{bottom:219.453333pt;}
.y9d{bottom:220.413333pt;}
.ycf{bottom:224.733333pt;}
.y163{bottom:229.053333pt;}
.y29{bottom:230.973333pt;}
.yff{bottom:231.453333pt;}
.y11d{bottom:234.813333pt;}
.y86{bottom:235.293333pt;}
.y143{bottom:236.253333pt;}
.y58{bottom:238.653333pt;}
.y9c{bottom:239.133333pt;}
.yf3{bottom:242.013333pt;}
.yce{bottom:243.453333pt;}
.y28{bottom:246.333333pt;}
.y162{bottom:249.693333pt;}
.yfe{bottom:250.173333pt;}
.y11c{bottom:252.093333pt;}
.ybb{bottom:254.013333pt;}
.y57{bottom:257.373333pt;}
.y85{bottom:257.853333pt;}
.y18a{bottom:259.293333pt;}
.y27{bottom:262.173333pt;}
.yf2{bottom:265.093333pt;}
.y161{bottom:267.493333pt;}
.y104{bottom:268.933333pt;}
.yba{bottom:272.773333pt;}
.y142{bottom:274.693333pt;}
.y56{bottom:276.133333pt;}
.y9b{bottom:276.613333pt;}
.y84{bottom:277.093333pt;}
.y26{bottom:277.573333pt;}
.y189{bottom:280.453333pt;}
.ycd{bottom:280.933333pt;}
.y160{bottom:284.773333pt;}
.yf1{bottom:287.653333pt;}
.y11b{bottom:290.533333pt;}
.yb9{bottom:291.493333pt;}
.y25{bottom:293.413333pt;}
.y55{bottom:294.853333pt;}
.y83{bottom:295.813333pt;}
.y141{bottom:296.293333pt;}
.y188{bottom:297.733333pt;}
.ycc{bottom:299.653333pt;}
.y15f{bottom:305.413333pt;}
.yf0{bottom:306.373333pt;}
.y11a{bottom:307.813333pt;}
.y24{bottom:309.253333pt;}
.yb8{bottom:310.213333pt;}
.y103{bottom:310.693333pt;}
.y54{bottom:313.573333pt;}
.y82{bottom:314.533333pt;}
.y187{bottom:315.013333pt;}
.y140{bottom:317.413333pt;}
.yfd{bottom:318.373333pt;}
.ycb{bottom:322.693333pt;}
.y15e{bottom:323.173333pt;}
.y23{bottom:324.613333pt;}
.yef{bottom:325.093333pt;}
.yb7{bottom:329.413333pt;}
.y53{bottom:332.293333pt;}
.y81{bottom:333.253333pt;}
.y13f{bottom:334.720000pt;}
.y186{bottom:336.160000pt;}
.yfc{bottom:337.120000pt;}
.y22{bottom:340.480000pt;}
.yca{bottom:341.440000pt;}
.yee{bottom:343.840000pt;}
.yb6{bottom:348.160000pt;}
.y52{bottom:351.040000pt;}
.y80{bottom:352.000000pt;}
.y13e{bottom:352.480000pt;}
.y185{bottom:353.440000pt;}
.y21{bottom:355.840000pt;}
.yc9{bottom:360.160000pt;}
.y15d{bottom:361.120000pt;}
.y118{bottom:362.560000pt;}
.yed{bottom:363.040000pt;}
.yb5{bottom:366.880000pt;}
.y51{bottom:369.760000pt;}
.y7f{bottom:370.720000pt;}
.y20{bottom:371.680000pt;}
.y184{bottom:374.560000pt;}
.yfb{bottom:375.040000pt;}
.yc8{bottom:378.880000pt;}
.yec{bottom:381.760000pt;}
.yb4{bottom:385.600000pt;}
.y50{bottom:388.960000pt;}
.y9a{bottom:389.440000pt;}
.y13d{bottom:390.400000pt;}
.y1f{bottom:391.840000pt;}
.y183{bottom:392.320000pt;}
.y7e{bottom:393.760000pt;}
.y15c{bottom:396.160000pt;}
.yc7{bottom:397.600000pt;}
.yeb{bottom:400.480000pt;}
.yb3{bottom:404.346667pt;}
.y4f{bottom:407.706667pt;}
.y99{bottom:408.186667pt;}
.y13c{bottom:411.546667pt;}
.y7d{bottom:412.506667pt;}
.y182{bottom:412.986667pt;}
.y1e{bottom:413.946667pt;}
.yc6{bottom:416.346667pt;}
.y15b{bottom:416.826667pt;}
.yea{bottom:419.226667pt;}
.yb2{bottom:423.066667pt;}
.y4e{bottom:426.426667pt;}
.y98{bottom:426.906667pt;}
.y13b{bottom:429.306667pt;}
.y181{bottom:430.746667pt;}
.y7c{bottom:431.226667pt;}
.y1d{bottom:433.626667pt;}
.y15a{bottom:434.586667pt;}
.yc5{bottom:435.066667pt;}
.ye9{bottom:437.946667pt;}
.y102{bottom:441.786667pt;}
.y4d{bottom:445.146667pt;}
.y97{bottom:446.106667pt;}
.y13a{bottom:446.586667pt;}
.y180{bottom:447.546667pt;}
.y1c{bottom:449.466667pt;}
.y7b{bottom:449.946667pt;}
.yc4{bottom:453.786667pt;}
.y159{bottom:455.226667pt;}
.ye8{bottom:456.666667pt;}
.y101{bottom:460.986667pt;}
.y4c{bottom:463.866667pt;}
.y96{bottom:464.826667pt;}
.y1b{bottom:465.306667pt;}
.y139{bottom:467.226667pt;}
.y7a{bottom:468.666667pt;}
.y111{bottom:472.546667pt;}
.yc3{bottom:473.026667pt;}
.ye7{bottom:479.746667pt;}
.y1a{bottom:480.706667pt;}
.y4b{bottom:482.626667pt;}
.y95{bottom:483.586667pt;}
.y138{bottom:485.026667pt;}
.y79{bottom:487.426667pt;}
.y17f{bottom:489.826667pt;}
.y158{bottom:490.306667pt;}
.yb1{bottom:491.746667pt;}
.y19{bottom:496.546667pt;}
.ye6{bottom:498.466667pt;}
.y100{bottom:502.306667pt;}
.y4a{bottom:505.666667pt;}
.y78{bottom:506.146667pt;}
.y17e{bottom:507.586667pt;}
.yb0{bottom:510.466667pt;}
.y157{bottom:510.946667pt;}
.y18{bottom:511.906667pt;}
.ye5{bottom:517.186667pt;}
.y137{bottom:522.946667pt;}
.y49{bottom:524.386667pt;}
.y17d{bottom:524.866667pt;}
.y77{bottom:525.346667pt;}
.y17{bottom:527.746667pt;}
.y156{bottom:528.706667pt;}
.yaf{bottom:529.186667pt;}
.ye4{bottom:535.906667pt;}
.y10a{bottom:539.746667pt;}
.y136{bottom:540.253333pt;}
.y48{bottom:543.133333pt;}
.y16{bottom:543.613333pt;}
.y76{bottom:544.093333pt;}
.y17c{bottom:545.533333pt;}
.yae{bottom:547.933333pt;}
.y155{bottom:549.373333pt;}
.y110{bottom:551.773333pt;}
.ye3{bottom:554.653333pt;}
.y15{bottom:558.973333pt;}
.y47{bottom:561.853333pt;}
.y75{bottom:562.813333pt;}
.yad{bottom:566.653333pt;}
.y154{bottom:567.133333pt;}
.y10f{bottom:570.973333pt;}
.ye2{bottom:573.373333pt;}
.y14{bottom:574.813333pt;}
.y135{bottom:579.133333pt;}
.y46{bottom:580.573333pt;}
.y74{bottom:581.533333pt;}
.y17b{bottom:584.413333pt;}
.yac{bottom:585.373333pt;}
.y153{bottom:587.773333pt;}
.y10e{bottom:589.693333pt;}
.y13{bottom:590.173333pt;}
.ye1{bottom:592.093333pt;}
.y117{bottom:596.413333pt;}
.y45{bottom:599.293333pt;}
.y73{bottom:600.253333pt;}
.yab{bottom:604.093333pt;}
.y152{bottom:605.533333pt;}
.y12{bottom:606.013333pt;}
.y10d{bottom:608.413333pt;}
.ye0{bottom:611.333333pt;}
.y134{bottom:613.733333pt;}
.y109{bottom:615.173333pt;}
.y44{bottom:618.053333pt;}
.y94{bottom:619.013333pt;}
.y11{bottom:621.893333pt;}
.y17a{bottom:622.853333pt;}
.y72{bottom:623.333333pt;}
.y151{bottom:626.213333pt;}
.y10c{bottom:627.173333pt;}
.ydf{bottom:630.053333pt;}
.y133{bottom:631.013333pt;}
.y108{bottom:633.893333pt;}
.y10{bottom:637.253333pt;}
.y93{bottom:637.733333pt;}
.y179{bottom:640.133333pt;}
.y71{bottom:642.053333pt;}
.y150{bottom:643.973333pt;}
.y10b{bottom:645.893333pt;}
.yde{bottom:648.773333pt;}
.y132{bottom:651.653333pt;}
.y107{bottom:652.613333pt;}
.yf{bottom:653.093333pt;}
.y43{bottom:655.973333pt;}
.y92{bottom:656.453333pt;}
.y70{bottom:660.773333pt;}
.y178{bottom:661.253333pt;}
.yaa{bottom:664.613333pt;}
.ydd{bottom:667.493333pt;}
.ye{bottom:668.453333pt;}
.y131{bottom:669.413333pt;}
.y106{bottom:671.333333pt;}
.y42{bottom:674.693333pt;}
.y91{bottom:675.653333pt;}
.y177{bottom:678.560000pt;}
.y6f{bottom:679.520000pt;}
.y14f{bottom:682.400000pt;}
.ya9{bottom:683.360000pt;}
.yd{bottom:684.320000pt;}
.y130{bottom:686.720000pt;}
.ydc{bottom:690.080000pt;}
.y41{bottom:693.440000pt;}
.y176{bottom:695.840000pt;}
.y6e{bottom:698.240000pt;}
.ya8{bottom:702.080000pt;}
.y14e{bottom:703.040000pt;}
.yc{bottom:704.480000pt;}
.y12f{bottom:707.360000pt;}
.ydb{bottom:709.280000pt;}
.y40{bottom:712.160000pt;}
.y175{bottom:716.480000pt;}
.y6d{bottom:716.960000pt;}
.y14d{bottom:720.800000pt;}
.ya7{bottom:721.280000pt;}
.y12e{bottom:725.120000pt;}
.yb{bottom:727.520000pt;}
.yda{bottom:728.000000pt;}
.y3f{bottom:730.880000pt;}
.y174{bottom:734.240000pt;}
.y6c{bottom:735.680000pt;}
.ya6{bottom:740.000000pt;}
.y14c{bottom:741.920000pt;}
.y12d{bottom:742.400000pt;}
.yd9{bottom:746.746667pt;}
.ya{bottom:750.106667pt;}
.y105{bottom:750.586667pt;}
.y3e{bottom:753.946667pt;}
.y6b{bottom:754.426667pt;}
.y173{bottom:755.386667pt;}
.ya5{bottom:758.746667pt;}
.y14b{bottom:759.226667pt;}
.y12c{bottom:763.066667pt;}
.yd8{bottom:765.466667pt;}
.y3d{bottom:772.666667pt;}
.y6a{bottom:773.626667pt;}
.y9{bottom:774.106667pt;}
.y172{bottom:776.506667pt;}
.ya4{bottom:777.466667pt;}
.y14a{bottom:780.346667pt;}
.y12b{bottom:780.826667pt;}
.yd7{bottom:784.186667pt;}
.y116{bottom:788.026667pt;}
.y3c{bottom:791.386667pt;}
.y90{bottom:792.346667pt;}
.y171{bottom:794.266667pt;}
.y69{bottom:796.186667pt;}
.y12a{bottom:798.106667pt;}
.y8{bottom:801.946667pt;}
.yd6{bottom:802.906667pt;}
.y3b{bottom:810.106667pt;}
.y8f{bottom:811.066667pt;}
.y170{bottom:811.546667pt;}
.y68{bottom:814.906667pt;}
.y129{bottom:818.786667pt;}
.y7{bottom:825.506667pt;}
.yd5{bottom:825.986667pt;}
.y3a{bottom:828.866667pt;}
.y8e{bottom:829.826667pt;}
.y16f{bottom:832.226667pt;}
.y67{bottom:833.666667pt;}
.y128{bottom:836.546667pt;}
.y6{bottom:847.586667pt;}
.y8d{bottom:848.546667pt;}
.y66{bottom:852.386667pt;}
.y16e{bottom:853.346667pt;}
.y127{bottom:853.826667pt;}
.y149{bottom:857.186667pt;}
.y39{bottom:866.306667pt;}
.y8c{bottom:867.266667pt;}
.y16d{bottom:871.106667pt;}
.y65{bottom:871.586667pt;}
.y5{bottom:874.466667pt;}
.y148{bottom:874.946667pt;}
.y38{bottom:885.533333pt;}
.y64{bottom:890.333333pt;}
.y16c{bottom:891.773333pt;}
.y126{bottom:892.253333pt;}
.y147{bottom:895.613333pt;}
.y37{bottom:904.253333pt;}
.y4{bottom:906.653333pt;}
.y63{bottom:909.053333pt;}
.y16b{bottom:909.533333pt;}
.y125{bottom:912.893333pt;}
.y36{bottom:926.813333pt;}
.y62{bottom:927.773333pt;}
.y16a{bottom:930.173333pt;}
.y124{bottom:930.653333pt;}
.y3{bottom:934.973333pt;}
.y61{bottom:946.493333pt;}
.y146{bottom:947.453333pt;}
.y123{bottom:947.933333pt;}
.y35{bottom:948.893333pt;}
.y33{bottom:977.253333pt;}
.y60{bottom:979.653333pt;}
.y32{bottom:995.493333pt;}
.y1{bottom:997.893333pt;}
.h1{height:30.256875pt;}
.h2{height:38.508750pt;}
.h8{height:39.506250pt;}
.ha{height:42.634687pt;}
.h5{height:45.385312pt;}
.h7{height:46.560938pt;}
.h9{height:48.045937pt;}
.hb{height:50.161875pt;}
.h4{height:55.026562pt;}
.h6{height:62.081250pt;}
.h3{height:70.546875pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:112.384000pt;}
.xb{left:113.344000pt;}
.xd{left:116.224000pt;}
.x1{left:144.573333pt;}
.xf{left:151.293333pt;}
.xa{left:158.973333pt;}
.x10{left:161.373333pt;}
.xc{left:170.013333pt;}
.x3{left:182.013333pt;}
.x6{left:203.653333pt;}
.xe{left:274.720000pt;}
.x9{left:295.840000pt;}
.x4{left:297.280000pt;}
.x7{left:335.226667pt;}
.x2{left:399.586667pt;}
.x5{left:407.746667pt;}
.x8{left:702.653333pt;}
}




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