
    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_2afbc42dc1a6a7e749479210.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_4ff05c360cadad4e3c76bff6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.727539;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_24fb1beba9d22d7111f3e0c3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_7d3b46f3893ee21415e55fe8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_845e25be66b5a4de7548a671.woff')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_280d38cb5a38166ca085ad63.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_0300db0b99baed92c5f078dc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_296fb89709efc33f5947cdc5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_fed1dffd86cb7c5cc86a7647.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-27.360000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:22.200000px;}
.v1{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.106800px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.120000px;}
.lse{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls5{letter-spacing:12.840000px;}
.ls1{letter-spacing:13.140000px;}
.ls0{letter-spacing:14.580000px;}
.ls9{letter-spacing:21.221280px;}
.ls15{letter-spacing:33.984000px;}
.ls10{letter-spacing:54.840000px;}
.lsf{letter-spacing:844.140000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws2{word-spacing:-30.840000px;}
.wsa{word-spacing:-21.420000px;}
.ws13{word-spacing:-18.432000px;}
.wsf{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.712000px;}
.wse{word-spacing:-17.280000px;}
.ws7{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.833200px;}
.ws12{word-spacing:-13.500000px;}
.ws5{word-spacing:-9.720000px;}
.ws1{word-spacing:-5.256000px;}
.ws0{word-spacing:-4.824000px;}
.ws9{word-spacing:0.000000px;}
.ws10{word-spacing:80.076000px;}
.ws11{word-spacing:99.198000px;}
._33{margin-left:-7.776000px;}
._2c{margin-left:-5.400000px;}
._23{margin-left:-4.392000px;}
._14{margin-left:-2.664000px;}
._4{margin-left:-1.656000px;}
._3{width:1.080000px;}
._8{width:3.077520px;}
._1b{width:4.104000px;}
._9{width:5.112000px;}
._a{width:6.120000px;}
._c{width:7.560000px;}
._1a{width:8.586480px;}
._f{width:10.128000px;}
._0{width:11.232000px;}
._2{width:12.828000px;}
._1{width:14.052000px;}
._1c{width:15.768000px;}
._1f{width:16.848000px;}
._15{width:19.080000px;}
._d{width:20.088000px;}
._e{width:21.108000px;}
._17{width:22.176000px;}
._10{width:23.688000px;}
._11{width:24.912000px;}
._16{width:26.208000px;}
._19{width:27.552000px;}
._20{width:28.872000px;}
._21{width:30.024000px;}
._22{width:31.128000px;}
._18{width:32.976000px;}
._b{width:34.716000px;}
._24{width:41.544000px;}
._25{width:43.332000px;}
._30{width:52.140000px;}
._2f{width:53.424000px;}
._34{width:66.528000px;}
._1d{width:73.956000px;}
._26{width:93.348000px;}
._32{width:96.132000px;}
._31{width:97.272000px;}
._2e{width:105.918000px;}
._2b{width:110.280000px;}
._2a{width:111.468000px;}
._2d{width:119.400000px;}
._29{width:213.402000px;}
._27{width:287.760000px;}
._6{width:370.826400px;}
._5{width:394.368000px;}
._7{width:695.820000px;}
._13{width:730.236000px;}
._12{width:846.156000px;}
._28{width:919.146000px;}
._1e{width:1646.220000px;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs1{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:14.760000px;}
.y13d{bottom:15.300000px;}
.yf3{bottom:16.410000px;}
.y10f{bottom:16.560000px;}
.yd5{bottom:16.590000px;}
.y13e{bottom:32.010000px;}
.yde{bottom:36.435000px;}
.yf0{bottom:38.670000px;}
.y14b{bottom:44.535000px;}
.y5{bottom:55.980000px;}
.ydd{bottom:58.110000px;}
.y10c{bottom:63.795000px;}
.yd9{bottom:74.625000px;}
.y14a{bottom:75.930000px;}
.yda{bottom:85.605000px;}
.y149{bottom:91.440000px;}
.y10b{bottom:97.590000px;}
.yd4{bottom:104.610000px;}
.yd0{bottom:113.436000px;}
.y53{bottom:113.796000px;}
.yd3{bottom:118.650000px;}
.y148{bottom:122.835000px;}
.y147{bottom:138.345000px;}
.ycf{bottom:140.256000px;}
.y52{bottom:140.616000px;}
.y89{bottom:144.576000px;}
.y13a{bottom:144.756000px;}
.y2c{bottom:146.916000px;}
.y75{bottom:147.096000px;}
.yae{bottom:150.870000px;}
.y13f{bottom:156.780000px;}
.yd8{bottom:159.735000px;}
.yce{bottom:167.250000px;}
.y51{bottom:167.610000px;}
.y2b{bottom:167.970000px;}
.y146{bottom:169.740000px;}
.yef{bottom:169.995000px;}
.y10d{bottom:170.100000px;}
.y88{bottom:171.390000px;}
.y139{bottom:171.570000px;}
.y74{bottom:173.730000px;}
.yad{bottom:177.870000px;}
.y124{bottom:178.770000px;}
.y145{bottom:185.250000px;}
.y2a{bottom:188.670000px;}
.yf1{bottom:189.075000px;}
.ycd{bottom:194.070000px;}
.y50{bottom:194.430000px;}
.y87{bottom:198.390000px;}
.y138{bottom:198.570000px;}
.y73{bottom:200.730000px;}
.yac{bottom:204.690000px;}
.y123{bottom:205.770000px;}
.y29{bottom:209.370000px;}
.ycc{bottom:221.070000px;}
.y4f{bottom:221.430000px;}
.y86{bottom:225.210000px;}
.y137{bottom:225.390000px;}
.y72{bottom:227.550000px;}
.yd2{bottom:229.320000px;}
.y28{bottom:230.070000px;}
.yab{bottom:231.690000px;}
.y144{bottom:232.200000px;}
.y122{bottom:232.590000px;}
.ydb{bottom:237.090000px;}
.y13c{bottom:238.110000px;}
.y10e{bottom:238.860000px;}
.y4e{bottom:248.250000px;}
.y14c{bottom:249.150000px;}
.ycb{bottom:250.410000px;}
.y27{bottom:250.770000px;}
.y85{bottom:252.210000px;}
.y136{bottom:252.390000px;}
.y71{bottom:254.550000px;}
.yaa{bottom:258.510000px;}
.y121{bottom:259.590000px;}
.y143{bottom:263.595000px;}
.y140{bottom:264.240000px;}
.yf2{bottom:266.790000px;}
.y26{bottom:271.470000px;}
.yca{bottom:274.530000px;}
.y4d{bottom:275.250000px;}
.y8a{bottom:275.970000px;}
.yd6{bottom:276.660000px;}
.y84{bottom:279.030000px;}
.y142{bottom:279.105000px;}
.y135{bottom:279.210000px;}
.y70{bottom:281.370000px;}
.ya9{bottom:285.510000px;}
.y120{bottom:286.410000px;}
.y25{bottom:292.170000px;}
.yed{bottom:294.870000px;}
.yd7{bottom:296.100000px;}
.y141{bottom:301.215000px;}
.y4c{bottom:302.070000px;}
.ydc{bottom:304.710000px;}
.y83{bottom:305.850000px;}
.y134{bottom:306.210000px;}
.y6f{bottom:308.370000px;}
.ya8{bottom:312.330000px;}
.y24{bottom:312.870000px;}
.y11f{bottom:313.410000px;}
.yec{bottom:321.690000px;}
.y4b{bottom:329.070000px;}
.y82{bottom:332.850000px;}
.y133{bottom:333.030000px;}
.y23{bottom:333.570000px;}
.y6e{bottom:335.190000px;}
.y109{bottom:337.530000px;}
.ya7{bottom:339.330000px;}
.y11e{bottom:340.230000px;}
.yeb{bottom:348.690000px;}
.y22{bottom:354.270000px;}
.y4a{bottom:355.890000px;}
.y81{bottom:359.670000px;}
.y132{bottom:360.030000px;}
.y6d{bottom:362.190000px;}
.y108{bottom:364.575000px;}
.ya6{bottom:366.195000px;}
.y11d{bottom:367.275000px;}
.y155{bottom:371.415000px;}
.y21{bottom:375.015000px;}
.yea{bottom:375.555000px;}
.y49{bottom:382.935000px;}
.y80{bottom:386.715000px;}
.y131{bottom:386.895000px;}
.y6c{bottom:389.055000px;}
.y107{bottom:391.395000px;}
.ya5{bottom:393.195000px;}
.y11c{bottom:394.095000px;}
.y20{bottom:395.715000px;}
.y154{bottom:398.235000px;}
.ye9{bottom:402.555000px;}
.y48{bottom:409.755000px;}
.y7f{bottom:413.535000px;}
.y130{bottom:413.895000px;}
.y6b{bottom:416.055000px;}
.y1f{bottom:416.415000px;}
.y106{bottom:418.395000px;}
.ya4{bottom:420.015000px;}
.y11b{bottom:421.095000px;}
.y153{bottom:425.235000px;}
.ye8{bottom:429.375000px;}
.y47{bottom:436.755000px;}
.y1e{bottom:437.115000px;}
.y7e{bottom:440.535000px;}
.y12f{bottom:440.715000px;}
.y6a{bottom:442.875000px;}
.y105{bottom:445.215000px;}
.ya3{bottom:447.015000px;}
.y11a{bottom:447.915000px;}
.y152{bottom:452.055000px;}
.ye7{bottom:456.375000px;}
.y1d{bottom:457.815000px;}
.y46{bottom:463.575000px;}
.y7d{bottom:467.355000px;}
.y12e{bottom:467.715000px;}
.y69{bottom:469.875000px;}
.y104{bottom:472.215000px;}
.ya2{bottom:473.835000px;}
.y119{bottom:474.915000px;}
.y1c{bottom:478.515000px;}
.y151{bottom:479.055000px;}
.ye6{bottom:483.195000px;}
.y45{bottom:490.575000px;}
.y7c{bottom:494.355000px;}
.y12d{bottom:494.535000px;}
.y68{bottom:496.695000px;}
.y103{bottom:499.035000px;}
.y1b{bottom:499.215000px;}
.y118{bottom:501.735000px;}
.ya1{bottom:502.095000px;}
.y150{bottom:505.875000px;}
.ye5{bottom:510.195000px;}
.y44{bottom:517.395000px;}
.y7b{bottom:521.175000px;}
.y12c{bottom:521.535000px;}
.y67{bottom:523.695000px;}
.y102{bottom:526.035000px;}
.y117{bottom:528.735000px;}
.ya0{bottom:528.915000px;}
.y14f{bottom:532.875000px;}
.ye4{bottom:537.015000px;}
.y43{bottom:544.395000px;}
.y7a{bottom:548.175000px;}
.y12b{bottom:548.355000px;}
.ybd{bottom:550.515000px;}
.y101{bottom:552.855000px;}
.y116{bottom:555.555000px;}
.y9f{bottom:557.175000px;}
.y14e{bottom:559.695000px;}
.ye3{bottom:564.015000px;}
.y1a{bottom:564.195000px;}
.y42{bottom:571.215000px;}
.y79{bottom:574.995000px;}
.y12a{bottom:575.355000px;}
.ybc{bottom:577.515000px;}
.y100{bottom:579.855000px;}
.y115{bottom:582.555000px;}
.y9e{bottom:585.435000px;}
.y19{bottom:586.515000px;}
.y14d{bottom:586.695000px;}
.y66{bottom:589.755000px;}
.ye2{bottom:590.835000px;}
.y41{bottom:598.215000px;}
.y78{bottom:601.995000px;}
.y129{bottom:602.175000px;}
.y18{bottom:603.795000px;}
.ybb{bottom:604.335000px;}
.yff{bottom:606.675000px;}
.y114{bottom:609.375000px;}
.y9d{bottom:613.515000px;}
.yc9{bottom:615.675000px;}
.ye1{bottom:620.355000px;}
.y17{bottom:621.075000px;}
.y40{bottom:625.065000px;}
.y77{bottom:628.845000px;}
.y128{bottom:629.205000px;}
.yba{bottom:631.365000px;}
.yfe{bottom:633.705000px;}
.y113{bottom:636.405000px;}
.y16{bottom:638.385000px;}
.y9c{bottom:640.545000px;}
.yc8{bottom:642.705000px;}
.ye0{bottom:644.325000px;}
.yee{bottom:645.120000px;}
.y3f{bottom:652.065000px;}
.y15{bottom:655.665000px;}
.y76{bottom:655.845000px;}
.y127{bottom:656.025000px;}
.yb9{bottom:658.185000px;}
.yfd{bottom:660.525000px;}
.y112{bottom:663.225000px;}
.y9b{bottom:667.365000px;}
.y14{bottom:667.725000px;}
.yc7{bottom:669.525000px;}
.y3e{bottom:678.885000px;}
.y65{bottom:682.665000px;}
.yb8{bottom:685.185000px;}
.yfc{bottom:687.525000px;}
.y13{bottom:690.045000px;}
.y9a{bottom:694.365000px;}
.yc6{bottom:696.525000px;}
.y111{bottom:698.325000px;}
.y3d{bottom:705.885000px;}
.y12{bottom:707.325000px;}
.y64{bottom:709.665000px;}
.yb7{bottom:712.005000px;}
.yfb{bottom:714.345000px;}
.y11{bottom:719.385000px;}
.y99{bottom:721.185000px;}
.y126{bottom:722.085000px;}
.y110{bottom:722.445000px;}
.yc5{bottom:723.345000px;}
.y3c{bottom:732.705000px;}
.y63{bottom:736.485000px;}
.yb6{bottom:739.005000px;}
.yfa{bottom:741.345000px;}
.y10{bottom:741.885000px;}
.y98{bottom:748.185000px;}
.yc4{bottom:750.345000px;}
.yf{bottom:759.165000px;}
.y3b{bottom:759.705000px;}
.y62{bottom:763.485000px;}
.yb5{bottom:765.825000px;}
.yf9{bottom:768.165000px;}
.y97{bottom:775.005000px;}
.ye{bottom:776.265000px;}
.yc3{bottom:777.165000px;}
.yd{bottom:788.325000px;}
.y61{bottom:790.305000px;}
.yb4{bottom:792.825000px;}
.yf8{bottom:795.165000px;}
.y96{bottom:802.005000px;}
.yc2{bottom:804.165000px;}
.y125{bottom:808.665000px;}
.yc{bottom:810.825000px;}
.y60{bottom:817.305000px;}
.yb3{bottom:819.645000px;}
.yf7{bottom:821.985000px;}
.y3a{bottom:825.765000px;}
.y95{bottom:828.825000px;}
.yc1{bottom:830.985000px;}
.yb{bottom:832.605000px;}
.y13b{bottom:833.940000px;}
.y5f{bottom:844.125000px;}
.yb2{bottom:846.645000px;}
.yf6{bottom:848.985000px;}
.ya{bottom:853.305000px;}
.y94{bottom:855.825000px;}
.yc0{bottom:857.985000px;}
.y5e{bottom:871.125000px;}
.yb1{bottom:873.465000px;}
.y9{bottom:874.005000px;}
.yf5{bottom:878.325000px;}
.y93{bottom:882.690000px;}
.ybf{bottom:887.370000px;}
.y5d{bottom:897.990000px;}
.yb0{bottom:900.330000px;}
.yf4{bottom:902.490000px;}
.y10a{bottom:902.880000px;}
.y92{bottom:909.690000px;}
.ybe{bottom:911.490000px;}
.yd1{bottom:912.420000px;}
.y39{bottom:912.750000px;}
.y5c{bottom:924.990000px;}
.y38{bottom:933.450000px;}
.y91{bottom:936.510000px;}
.y5b{bottom:951.810000px;}
.y37{bottom:954.150000px;}
.y90{bottom:963.330000px;}
.yaf{bottom:966.570000px;}
.y36{bottom:974.850000px;}
.y8{bottom:975.930000px;}
.y5a{bottom:978.810000px;}
.y8f{bottom:990.330000px;}
.y35{bottom:995.550000px;}
.y7{bottom:1000.050000px;}
.y59{bottom:1005.630000px;}
.y34{bottom:1016.250000px;}
.y8e{bottom:1017.150000px;}
.y6{bottom:1024.350000px;}
.y58{bottom:1032.630000px;}
.y33{bottom:1036.950000px;}
.y8d{bottom:1044.150000px;}
.y32{bottom:1057.650000px;}
.y57{bottom:1059.450000px;}
.y8c{bottom:1070.970000px;}
.y31{bottom:1078.350000px;}
.y56{bottom:1086.450000px;}
.y30{bottom:1099.050000px;}
.y55{bottom:1113.270000px;}
.y2f{bottom:1119.750000px;}
.y4{bottom:1129.290000px;}
.y8b{bottom:1137.210000px;}
.y54{bottom:1140.270000px;}
.y2e{bottom:1140.450000px;}
.y3{bottom:1152.000000px;}
.y2{bottom:1172.880000px;}
.y2d{bottom:1193.400000px;}
.y1{bottom:1193.580000px;}
.h6{height:34.114922px;}
.h8{height:42.295781px;}
.h3{height:42.327773px;}
.hb{height:44.893125px;}
.he{height:47.381836px;}
.h9{height:48.796875px;}
.h7{height:52.435898px;}
.h4{height:57.092344px;}
.hc{height:58.121719px;}
.ha{height:60.300703px;}
.h2{height:63.175781px;}
.h5{height:69.687773px;}
.h11{height:69.708188px;}
.hd{height:244.260000px;}
.h12{height:253.800000px;}
.h10{height:287.280000px;}
.hf{height:319.680000px;}
.h13{height:322.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:472.860000px;}
.w4{width:602.460000px;}
.w6{width:661.140000px;}
.w5{width:666.900000px;}
.w7{width:680.940000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:50.580000px;}
.x21{left:58.215000px;}
.x35{left:94.575000px;}
.x28{left:102.570000px;}
.x2{left:106.235987px;}
.x1{left:107.855987px;}
.x23{left:112.320000px;}
.x2b{left:115.560000px;}
.x8{left:125.315987px;}
.xc{left:133.415987px;}
.x3{left:138.635987px;}
.x1a{left:142.020000px;}
.x1b{left:144.900000px;}
.xb{left:147.815987px;}
.x9{left:149.255987px;}
.xe{left:153.209987px;}
.x6{left:158.249987px;}
.x14{left:160.049987px;}
.x2f{left:162.645000px;}
.x1f{left:164.445000px;}
.x4{left:165.449987px;}
.x12{left:171.209987px;}
.x11{left:174.629987px;}
.x36{left:176.730000px;}
.x7{left:187.949987px;}
.x26{left:198.540000px;}
.xf{left:201.989987px;}
.x2e{left:203.010000px;}
.x17{left:208.980000px;}
.x1e{left:211.575000px;}
.x2d{left:218.310000px;}
.xa{left:252.569987px;}
.x25{left:255.960000px;}
.xd{left:258.509987px;}
.x20{left:267.810000px;}
.x27{left:272.730000px;}
.x18{left:280.440000px;}
.x13{left:285.554987px;}
.x33{left:297.075000px;}
.x5{left:326.774987px;}
.x19{left:345.525000px;}
.x32{left:348.990000px;}
.x10{left:351.614987px;}
.x1c{left:357.090000px;}
.x1d{left:408.855000px;}
.x2c{left:442.695000px;}
.x37{left:450.360000px;}
.x24{left:456.870000px;}
.x2a{left:467.744987px;}
.x15{left:683.789987px;}
.x16{left:748.049987px;}
.x29{left:777.209987px;}
.x22{left:780.629987px;}
.x30{left:786.749987px;}
.x31{left:788.009987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.733333pt;}
.v1{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls5{letter-spacing:11.413333pt;}
.ls1{letter-spacing:11.680000pt;}
.ls0{letter-spacing:12.960000pt;}
.ls9{letter-spacing:18.863360pt;}
.ls15{letter-spacing:30.208000pt;}
.ls10{letter-spacing:48.746667pt;}
.lsf{letter-spacing:750.346667pt;}
.wsb{word-spacing:-64.000000pt;}
.ws2{word-spacing:-27.413333pt;}
.wsa{word-spacing:-19.040000pt;}
.ws13{word-spacing:-16.384000pt;}
.wsf{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.360000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.185067pt;}
.ws12{word-spacing:-12.000000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws1{word-spacing:-4.672000pt;}
.ws0{word-spacing:-4.288000pt;}
.ws9{word-spacing:0.000000pt;}
.ws10{word-spacing:71.178667pt;}
.ws11{word-spacing:88.176000pt;}
._33{margin-left:-6.912000pt;}
._2c{margin-left:-4.800000pt;}
._23{margin-left:-3.904000pt;}
._14{margin-left:-2.368000pt;}
._4{margin-left:-1.472000pt;}
._3{width:0.960000pt;}
._8{width:2.735573pt;}
._1b{width:3.648000pt;}
._9{width:4.544000pt;}
._a{width:5.440000pt;}
._c{width:6.720000pt;}
._1a{width:7.632427pt;}
._f{width:9.002667pt;}
._0{width:9.984000pt;}
._2{width:11.402667pt;}
._1{width:12.490667pt;}
._1c{width:14.016000pt;}
._1f{width:14.976000pt;}
._15{width:16.960000pt;}
._d{width:17.856000pt;}
._e{width:18.762667pt;}
._17{width:19.712000pt;}
._10{width:21.056000pt;}
._11{width:22.144000pt;}
._16{width:23.296000pt;}
._19{width:24.490667pt;}
._20{width:25.664000pt;}
._21{width:26.688000pt;}
._22{width:27.669333pt;}
._18{width:29.312000pt;}
._b{width:30.858667pt;}
._24{width:36.928000pt;}
._25{width:38.517333pt;}
._30{width:46.346667pt;}
._2f{width:47.488000pt;}
._34{width:59.136000pt;}
._1d{width:65.738667pt;}
._26{width:82.976000pt;}
._32{width:85.450667pt;}
._31{width:86.464000pt;}
._2e{width:94.149333pt;}
._2b{width:98.026667pt;}
._2a{width:99.082667pt;}
._2d{width:106.133333pt;}
._29{width:189.690667pt;}
._27{width:255.786667pt;}
._6{width:329.623467pt;}
._5{width:350.549333pt;}
._7{width:618.506667pt;}
._13{width:649.098667pt;}
._12{width:752.138667pt;}
._28{width:817.018667pt;}
._1e{width:1463.306667pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs1{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:13.120000pt;}
.y13d{bottom:13.600000pt;}
.yf3{bottom:14.586667pt;}
.y10f{bottom:14.720000pt;}
.yd5{bottom:14.746667pt;}
.y13e{bottom:28.453333pt;}
.yde{bottom:32.386667pt;}
.yf0{bottom:34.373333pt;}
.y14b{bottom:39.586667pt;}
.y5{bottom:49.760000pt;}
.ydd{bottom:51.653333pt;}
.y10c{bottom:56.706667pt;}
.yd9{bottom:66.333333pt;}
.y14a{bottom:67.493333pt;}
.yda{bottom:76.093333pt;}
.y149{bottom:81.280000pt;}
.y10b{bottom:86.746667pt;}
.yd4{bottom:92.986667pt;}
.yd0{bottom:100.832000pt;}
.y53{bottom:101.152000pt;}
.yd3{bottom:105.466667pt;}
.y148{bottom:109.186667pt;}
.y147{bottom:122.973333pt;}
.ycf{bottom:124.672000pt;}
.y52{bottom:124.992000pt;}
.y89{bottom:128.512000pt;}
.y13a{bottom:128.672000pt;}
.y2c{bottom:130.592000pt;}
.y75{bottom:130.752000pt;}
.yae{bottom:134.106667pt;}
.y13f{bottom:139.360000pt;}
.yd8{bottom:141.986667pt;}
.yce{bottom:148.666667pt;}
.y51{bottom:148.986667pt;}
.y2b{bottom:149.306667pt;}
.y146{bottom:150.880000pt;}
.yef{bottom:151.106667pt;}
.y10d{bottom:151.200000pt;}
.y88{bottom:152.346667pt;}
.y139{bottom:152.506667pt;}
.y74{bottom:154.426667pt;}
.yad{bottom:158.106667pt;}
.y124{bottom:158.906667pt;}
.y145{bottom:164.666667pt;}
.y2a{bottom:167.706667pt;}
.yf1{bottom:168.066667pt;}
.ycd{bottom:172.506667pt;}
.y50{bottom:172.826667pt;}
.y87{bottom:176.346667pt;}
.y138{bottom:176.506667pt;}
.y73{bottom:178.426667pt;}
.yac{bottom:181.946667pt;}
.y123{bottom:182.906667pt;}
.y29{bottom:186.106667pt;}
.ycc{bottom:196.506667pt;}
.y4f{bottom:196.826667pt;}
.y86{bottom:200.186667pt;}
.y137{bottom:200.346667pt;}
.y72{bottom:202.266667pt;}
.yd2{bottom:203.840000pt;}
.y28{bottom:204.506667pt;}
.yab{bottom:205.946667pt;}
.y144{bottom:206.400000pt;}
.y122{bottom:206.746667pt;}
.ydb{bottom:210.746667pt;}
.y13c{bottom:211.653333pt;}
.y10e{bottom:212.320000pt;}
.y4e{bottom:220.666667pt;}
.y14c{bottom:221.466667pt;}
.ycb{bottom:222.586667pt;}
.y27{bottom:222.906667pt;}
.y85{bottom:224.186667pt;}
.y136{bottom:224.346667pt;}
.y71{bottom:226.266667pt;}
.yaa{bottom:229.786667pt;}
.y121{bottom:230.746667pt;}
.y143{bottom:234.306667pt;}
.y140{bottom:234.880000pt;}
.yf2{bottom:237.146667pt;}
.y26{bottom:241.306667pt;}
.yca{bottom:244.026667pt;}
.y4d{bottom:244.666667pt;}
.y8a{bottom:245.306667pt;}
.yd6{bottom:245.920000pt;}
.y84{bottom:248.026667pt;}
.y142{bottom:248.093333pt;}
.y135{bottom:248.186667pt;}
.y70{bottom:250.106667pt;}
.ya9{bottom:253.786667pt;}
.y120{bottom:254.586667pt;}
.y25{bottom:259.706667pt;}
.yed{bottom:262.106667pt;}
.yd7{bottom:263.200000pt;}
.y141{bottom:267.746667pt;}
.y4c{bottom:268.506667pt;}
.ydc{bottom:270.853333pt;}
.y83{bottom:271.866667pt;}
.y134{bottom:272.186667pt;}
.y6f{bottom:274.106667pt;}
.ya8{bottom:277.626667pt;}
.y24{bottom:278.106667pt;}
.y11f{bottom:278.586667pt;}
.yec{bottom:285.946667pt;}
.y4b{bottom:292.506667pt;}
.y82{bottom:295.866667pt;}
.y133{bottom:296.026667pt;}
.y23{bottom:296.506667pt;}
.y6e{bottom:297.946667pt;}
.y109{bottom:300.026667pt;}
.ya7{bottom:301.626667pt;}
.y11e{bottom:302.426667pt;}
.yeb{bottom:309.946667pt;}
.y22{bottom:314.906667pt;}
.y4a{bottom:316.346667pt;}
.y81{bottom:319.706667pt;}
.y132{bottom:320.026667pt;}
.y6d{bottom:321.946667pt;}
.y108{bottom:324.066667pt;}
.ya6{bottom:325.506667pt;}
.y11d{bottom:326.466667pt;}
.y155{bottom:330.146667pt;}
.y21{bottom:333.346667pt;}
.yea{bottom:333.826667pt;}
.y49{bottom:340.386667pt;}
.y80{bottom:343.746667pt;}
.y131{bottom:343.906667pt;}
.y6c{bottom:345.826667pt;}
.y107{bottom:347.906667pt;}
.ya5{bottom:349.506667pt;}
.y11c{bottom:350.306667pt;}
.y20{bottom:351.746667pt;}
.y154{bottom:353.986667pt;}
.ye9{bottom:357.826667pt;}
.y48{bottom:364.226667pt;}
.y7f{bottom:367.586667pt;}
.y130{bottom:367.906667pt;}
.y6b{bottom:369.826667pt;}
.y1f{bottom:370.146667pt;}
.y106{bottom:371.906667pt;}
.ya4{bottom:373.346667pt;}
.y11b{bottom:374.306667pt;}
.y153{bottom:377.986667pt;}
.ye8{bottom:381.666667pt;}
.y47{bottom:388.226667pt;}
.y1e{bottom:388.546667pt;}
.y7e{bottom:391.586667pt;}
.y12f{bottom:391.746667pt;}
.y6a{bottom:393.666667pt;}
.y105{bottom:395.746667pt;}
.ya3{bottom:397.346667pt;}
.y11a{bottom:398.146667pt;}
.y152{bottom:401.826667pt;}
.ye7{bottom:405.666667pt;}
.y1d{bottom:406.946667pt;}
.y46{bottom:412.066667pt;}
.y7d{bottom:415.426667pt;}
.y12e{bottom:415.746667pt;}
.y69{bottom:417.666667pt;}
.y104{bottom:419.746667pt;}
.ya2{bottom:421.186667pt;}
.y119{bottom:422.146667pt;}
.y1c{bottom:425.346667pt;}
.y151{bottom:425.826667pt;}
.ye6{bottom:429.506667pt;}
.y45{bottom:436.066667pt;}
.y7c{bottom:439.426667pt;}
.y12d{bottom:439.586667pt;}
.y68{bottom:441.506667pt;}
.y103{bottom:443.586667pt;}
.y1b{bottom:443.746667pt;}
.y118{bottom:445.986667pt;}
.ya1{bottom:446.306667pt;}
.y150{bottom:449.666667pt;}
.ye5{bottom:453.506667pt;}
.y44{bottom:459.906667pt;}
.y7b{bottom:463.266667pt;}
.y12c{bottom:463.586667pt;}
.y67{bottom:465.506667pt;}
.y102{bottom:467.586667pt;}
.y117{bottom:469.986667pt;}
.ya0{bottom:470.146667pt;}
.y14f{bottom:473.666667pt;}
.ye4{bottom:477.346667pt;}
.y43{bottom:483.906667pt;}
.y7a{bottom:487.266667pt;}
.y12b{bottom:487.426667pt;}
.ybd{bottom:489.346667pt;}
.y101{bottom:491.426667pt;}
.y116{bottom:493.826667pt;}
.y9f{bottom:495.266667pt;}
.y14e{bottom:497.506667pt;}
.ye3{bottom:501.346667pt;}
.y1a{bottom:501.506667pt;}
.y42{bottom:507.746667pt;}
.y79{bottom:511.106667pt;}
.y12a{bottom:511.426667pt;}
.ybc{bottom:513.346667pt;}
.y100{bottom:515.426667pt;}
.y115{bottom:517.826667pt;}
.y9e{bottom:520.386667pt;}
.y19{bottom:521.346667pt;}
.y14d{bottom:521.506667pt;}
.y66{bottom:524.226667pt;}
.ye2{bottom:525.186667pt;}
.y41{bottom:531.746667pt;}
.y78{bottom:535.106667pt;}
.y129{bottom:535.266667pt;}
.y18{bottom:536.706667pt;}
.ybb{bottom:537.186667pt;}
.yff{bottom:539.266667pt;}
.y114{bottom:541.666667pt;}
.y9d{bottom:545.346667pt;}
.yc9{bottom:547.266667pt;}
.ye1{bottom:551.426667pt;}
.y17{bottom:552.066667pt;}
.y40{bottom:555.613333pt;}
.y77{bottom:558.973333pt;}
.y128{bottom:559.293333pt;}
.yba{bottom:561.213333pt;}
.yfe{bottom:563.293333pt;}
.y113{bottom:565.693333pt;}
.y16{bottom:567.453333pt;}
.y9c{bottom:569.373333pt;}
.yc8{bottom:571.293333pt;}
.ye0{bottom:572.733333pt;}
.yee{bottom:573.440000pt;}
.y3f{bottom:579.613333pt;}
.y15{bottom:582.813333pt;}
.y76{bottom:582.973333pt;}
.y127{bottom:583.133333pt;}
.yb9{bottom:585.053333pt;}
.yfd{bottom:587.133333pt;}
.y112{bottom:589.533333pt;}
.y9b{bottom:593.213333pt;}
.y14{bottom:593.533333pt;}
.yc7{bottom:595.133333pt;}
.y3e{bottom:603.453333pt;}
.y65{bottom:606.813333pt;}
.yb8{bottom:609.053333pt;}
.yfc{bottom:611.133333pt;}
.y13{bottom:613.373333pt;}
.y9a{bottom:617.213333pt;}
.yc6{bottom:619.133333pt;}
.y111{bottom:620.733333pt;}
.y3d{bottom:627.453333pt;}
.y12{bottom:628.733333pt;}
.y64{bottom:630.813333pt;}
.yb7{bottom:632.893333pt;}
.yfb{bottom:634.973333pt;}
.y11{bottom:639.453333pt;}
.y99{bottom:641.053333pt;}
.y126{bottom:641.853333pt;}
.y110{bottom:642.173333pt;}
.yc5{bottom:642.973333pt;}
.y3c{bottom:651.293333pt;}
.y63{bottom:654.653333pt;}
.yb6{bottom:656.893333pt;}
.yfa{bottom:658.973333pt;}
.y10{bottom:659.453333pt;}
.y98{bottom:665.053333pt;}
.yc4{bottom:666.973333pt;}
.yf{bottom:674.813333pt;}
.y3b{bottom:675.293333pt;}
.y62{bottom:678.653333pt;}
.yb5{bottom:680.733333pt;}
.yf9{bottom:682.813333pt;}
.y97{bottom:688.893333pt;}
.ye{bottom:690.013333pt;}
.yc3{bottom:690.813333pt;}
.yd{bottom:700.733333pt;}
.y61{bottom:702.493333pt;}
.yb4{bottom:704.733333pt;}
.yf8{bottom:706.813333pt;}
.y96{bottom:712.893333pt;}
.yc2{bottom:714.813333pt;}
.y125{bottom:718.813333pt;}
.yc{bottom:720.733333pt;}
.y60{bottom:726.493333pt;}
.yb3{bottom:728.573333pt;}
.yf7{bottom:730.653333pt;}
.y3a{bottom:734.013333pt;}
.y95{bottom:736.733333pt;}
.yc1{bottom:738.653333pt;}
.yb{bottom:740.093333pt;}
.y13b{bottom:741.280000pt;}
.y5f{bottom:750.333333pt;}
.yb2{bottom:752.573333pt;}
.yf6{bottom:754.653333pt;}
.ya{bottom:758.493333pt;}
.y94{bottom:760.733333pt;}
.yc0{bottom:762.653333pt;}
.y5e{bottom:774.333333pt;}
.yb1{bottom:776.413333pt;}
.y9{bottom:776.893333pt;}
.yf5{bottom:780.733333pt;}
.y93{bottom:784.613333pt;}
.ybf{bottom:788.773333pt;}
.y5d{bottom:798.213333pt;}
.yb0{bottom:800.293333pt;}
.yf4{bottom:802.213333pt;}
.y10a{bottom:802.560000pt;}
.y92{bottom:808.613333pt;}
.ybe{bottom:810.213333pt;}
.yd1{bottom:811.040000pt;}
.y39{bottom:811.333333pt;}
.y5c{bottom:822.213333pt;}
.y38{bottom:829.733333pt;}
.y91{bottom:832.453333pt;}
.y5b{bottom:846.053333pt;}
.y37{bottom:848.133333pt;}
.y90{bottom:856.293333pt;}
.yaf{bottom:859.173333pt;}
.y36{bottom:866.533333pt;}
.y8{bottom:867.493333pt;}
.y5a{bottom:870.053333pt;}
.y8f{bottom:880.293333pt;}
.y35{bottom:884.933333pt;}
.y7{bottom:888.933333pt;}
.y59{bottom:893.893333pt;}
.y34{bottom:903.333333pt;}
.y8e{bottom:904.133333pt;}
.y6{bottom:910.533333pt;}
.y58{bottom:917.893333pt;}
.y33{bottom:921.733333pt;}
.y8d{bottom:928.133333pt;}
.y32{bottom:940.133333pt;}
.y57{bottom:941.733333pt;}
.y8c{bottom:951.973333pt;}
.y31{bottom:958.533333pt;}
.y56{bottom:965.733333pt;}
.y30{bottom:976.933333pt;}
.y55{bottom:989.573333pt;}
.y2f{bottom:995.333333pt;}
.y4{bottom:1003.813333pt;}
.y8b{bottom:1010.853333pt;}
.y54{bottom:1013.573333pt;}
.y2e{bottom:1013.733333pt;}
.y3{bottom:1024.000000pt;}
.y2{bottom:1042.560000pt;}
.y2d{bottom:1060.800000pt;}
.y1{bottom:1060.960000pt;}
.h6{height:30.324375pt;}
.h8{height:37.596250pt;}
.h3{height:37.624687pt;}
.hb{height:39.905000pt;}
.he{height:42.117188pt;}
.h9{height:43.375000pt;}
.h7{height:46.609688pt;}
.h4{height:50.748750pt;}
.hc{height:51.663750pt;}
.ha{height:53.600625pt;}
.h2{height:56.156250pt;}
.h5{height:61.944687pt;}
.h11{height:61.962833pt;}
.hd{height:217.120000pt;}
.h12{height:225.600000pt;}
.h10{height:255.360000pt;}
.hf{height:284.160000pt;}
.h13{height:286.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:420.320000pt;}
.w4{width:535.520000pt;}
.w6{width:587.680000pt;}
.w5{width:592.800000pt;}
.w7{width:605.280000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:44.960000pt;}
.x21{left:51.746667pt;}
.x35{left:84.066667pt;}
.x28{left:91.173333pt;}
.x2{left:94.431988pt;}
.x1{left:95.871988pt;}
.x23{left:99.840000pt;}
.x2b{left:102.720000pt;}
.x8{left:111.391988pt;}
.xc{left:118.591988pt;}
.x3{left:123.231988pt;}
.x1a{left:126.240000pt;}
.x1b{left:128.800000pt;}
.xb{left:131.391988pt;}
.x9{left:132.671988pt;}
.xe{left:136.186655pt;}
.x6{left:140.666655pt;}
.x14{left:142.266655pt;}
.x2f{left:144.573333pt;}
.x1f{left:146.173333pt;}
.x4{left:147.066655pt;}
.x12{left:152.186655pt;}
.x11{left:155.226655pt;}
.x36{left:157.093333pt;}
.x7{left:167.066655pt;}
.x26{left:176.480000pt;}
.xf{left:179.546655pt;}
.x2e{left:180.453333pt;}
.x17{left:185.760000pt;}
.x1e{left:188.066667pt;}
.x2d{left:194.053333pt;}
.xa{left:224.506655pt;}
.x25{left:227.520000pt;}
.xd{left:229.786655pt;}
.x20{left:238.053333pt;}
.x27{left:242.426667pt;}
.x18{left:249.280000pt;}
.x13{left:253.826655pt;}
.x33{left:264.066667pt;}
.x5{left:290.466655pt;}
.x19{left:307.133333pt;}
.x32{left:310.213333pt;}
.x10{left:312.546655pt;}
.x1c{left:317.413333pt;}
.x1d{left:363.426667pt;}
.x2c{left:393.506667pt;}
.x37{left:400.320000pt;}
.x24{left:406.106667pt;}
.x2a{left:415.773322pt;}
.x15{left:607.813322pt;}
.x16{left:664.933322pt;}
.x29{left:690.853322pt;}
.x22{left:693.893322pt;}
.x30{left:699.333322pt;}
.x31{left:700.453322pt;}
}




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