
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a9eb4b0c150a393fad5bcef6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b3b57ac9bffbd50330130a4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1c0eeee416660fad6cb184e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_16c90f661f4ead65a175985e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bf4415543cdf490d97e8b411.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_34049b207784d7ab31af0ecb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2814d7662b29004e16e9944f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_01ce8cbd34e42b9a86a59126.woff2')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9286f8441c0f32a4ccd32f14.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.798000px;}
.lsf{letter-spacing:-0.786000px;}
.ls1f{letter-spacing:-0.780000px;}
.ls17{letter-spacing:-0.768000px;}
.ls7{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.240600px;}
.lsc{letter-spacing:-0.208800px;}
.lsd{letter-spacing:-0.078600px;}
.ls1a{letter-spacing:-0.069600px;}
.ls9{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.150240px;}
.ls4{letter-spacing:0.174240px;}
.ls8{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.220200px;}
.ls13{letter-spacing:0.306000px;}
.ls16{letter-spacing:0.309000px;}
.ls14{letter-spacing:0.471600px;}
.lsb{letter-spacing:0.479400px;}
.ls18{letter-spacing:0.597600px;}
.lse{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.661680px;}
.ls12{letter-spacing:0.684000px;}
.ls5{letter-spacing:0.894240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1d{letter-spacing:12.186720px;}
.ls1c{letter-spacing:42.426720px;}
.lsa{letter-spacing:45.306720px;}
.ls1b{letter-spacing:64.170720px;}
.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;}
}
.ws13{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws1{word-spacing:-16.488000px;}
.ws2{word-spacing:-16.272000px;}
.ws3{word-spacing:-15.768000px;}
.wsd{word-spacing:-14.189760px;}
.wsb{word-spacing:-14.165760px;}
.ws12{word-spacing:-14.103360px;}
.wsf{word-spacing:-13.814760px;}
.wse{word-spacing:-13.725960px;}
.ws6{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.ws11{word-spacing:-13.436160px;}
.wsa{word-spacing:-13.427160px;}
.ws9{word-spacing:-13.296960px;}
.ws10{word-spacing:-12.737760px;}
.ws14{word-spacing:-12.725760px;}
.wsc{word-spacing:-12.707760px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-1578.628800px;}
._1{margin-left:-1449.432000px;}
._4{margin-left:-1096.896000px;}
._6{margin-left:-632.424000px;}
._1a{margin-left:-7.852560px;}
._13{margin-left:-6.530640px;}
._9{margin-left:-5.117760px;}
._7{margin-left:-3.854400px;}
._2{margin-left:-2.664000px;}
._3{margin-left:-1.464000px;}
._0{width:1.394400px;}
._12{width:2.395440px;}
._c{width:3.973920px;}
._d{width:5.474160px;}
._a{width:6.692880px;}
._e{width:7.990320px;}
._f{width:9.651120px;}
._b{width:10.995840px;}
._14{width:12.141120px;}
._19{width:14.530080px;}
._16{width:15.687120px;}
._15{width:16.822320px;}
._18{width:18.510240px;}
._10{width:20.019600px;}
._11{width:21.906720px;}
._8{width:23.173920px;}
._17{width:24.411840px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yde{bottom:0.330000px;}
.yfa{bottom:4.830000px;}
.y67{bottom:6.660000px;}
.y13b{bottom:7.020000px;}
.yc2{bottom:12.600000px;}
.y65{bottom:17.460000px;}
.y13a{bottom:28.260000px;}
.y137{bottom:36.000000px;}
.y139{bottom:49.860000px;}
.y6{bottom:62.136000px;}
.y138{bottom:71.094000px;}
.y136{bottom:91.836000px;}
.yb8{bottom:93.816000px;}
.y126{bottom:97.956000px;}
.y8c{bottom:98.856000px;}
.y63{bottom:110.196000px;}
.y30{bottom:115.056000px;}
.yb7{bottom:115.596000px;}
.y125{bottom:119.016000px;}
.ydc{bottom:119.556000px;}
.y8b{bottom:119.916000px;}
.y62{bottom:131.256000px;}
.y2f{bottom:136.116000px;}
.yb6{bottom:137.556000px;}
.y124{bottom:140.076000px;}
.ydb{bottom:140.616000px;}
.y8a{bottom:140.976000px;}
.y61{bottom:152.310000px;}
.y2e{bottom:157.170000px;}
.yb5{bottom:160.770000px;}
.y123{bottom:161.130000px;}
.yda{bottom:161.670000px;}
.y89{bottom:162.390000px;}
.y60{bottom:173.370000px;}
.y2d{bottom:178.230000px;}
.y122{bottom:182.190000px;}
.yd9{bottom:182.730000px;}
.y88{bottom:183.810000px;}
.yf8{bottom:184.710000px;}
.yb4{bottom:189.210000px;}
.y5f{bottom:194.430000px;}
.y2c{bottom:199.290000px;}
.y121{bottom:203.250000px;}
.yd8{bottom:203.790000px;}
.y87{bottom:204.870000px;}
.yf7{bottom:205.770000px;}
.yb3{bottom:210.270000px;}
.y5e{bottom:215.490000px;}
.y2b{bottom:220.350000px;}
.y120{bottom:224.310000px;}
.yd7{bottom:224.850000px;}
.y86{bottom:225.930000px;}
.yf6{bottom:226.830000px;}
.yb2{bottom:231.330000px;}
.y5d{bottom:236.550000px;}
.y2a{bottom:241.410000px;}
.y11f{bottom:245.370000px;}
.yd6{bottom:245.910000px;}
.yf5{bottom:247.890000px;}
.yb1{bottom:252.390000px;}
.y85{bottom:255.990000px;}
.y29{bottom:262.470000px;}
.y11e{bottom:266.430000px;}
.y5c{bottom:266.610000px;}
.yd5{bottom:266.970000px;}
.yf4{bottom:268.950000px;}
.yb0{bottom:273.450000px;}
.y84{bottom:277.050000px;}
.yd4{bottom:282.135000px;}
.y28{bottom:283.575000px;}
.yf3{bottom:284.115000px;}
.y11d{bottom:287.535000px;}
.y5b{bottom:287.715000px;}
.yaf{bottom:294.555000px;}
.y83{bottom:298.155000px;}
.yd3{bottom:303.915000px;}
.y27{bottom:304.635000px;}
.yf2{bottom:305.895000px;}
.y11c{bottom:308.595000px;}
.y5a{bottom:308.775000px;}
.yae{bottom:315.615000px;}
.y82{bottom:319.215000px;}
.y26{bottom:325.695000px;}
.yd2{bottom:325.875000px;}
.yf1{bottom:327.675000px;}
.y11b{bottom:329.655000px;}
.y59{bottom:329.835000px;}
.y81{bottom:340.275000px;}
.yad{bottom:345.675000px;}
.y25{bottom:346.755000px;}
.yd1{bottom:347.655000px;}
.y11a{bottom:350.715000px;}
.y58{bottom:350.895000px;}
.yf0{bottom:356.115000px;}
.y135{bottom:359.895000px;}
.y80{bottom:361.335000px;}
.yac{bottom:366.735000px;}
.y24{bottom:367.815000px;}
.y119{bottom:371.775000px;}
.y57{bottom:371.955000px;}
.yd0{bottom:376.095000px;}
.yef{bottom:377.175000px;}
.y134{bottom:380.955000px;}
.y7f{bottom:382.395000px;}
.yab{bottom:387.795000px;}
.y23{bottom:388.875000px;}
.y118{bottom:392.835000px;}
.y56{bottom:393.015000px;}
.ycf{bottom:397.155000px;}
.yee{bottom:398.235000px;}
.y133{bottom:402.015000px;}
.y7e{bottom:403.455000px;}
.yaa{bottom:408.855000px;}
.y22{bottom:409.935000px;}
.y117{bottom:413.895000px;}
.y55{bottom:414.075000px;}
.yce{bottom:418.215000px;}
.yed{bottom:419.295000px;}
.y132{bottom:423.075000px;}
.y7d{bottom:425.055000px;}
.ya9{bottom:429.915000px;}
.y21{bottom:430.815000px;}
.y116{bottom:434.955000px;}
.y54{bottom:435.135000px;}
.ycd{bottom:439.275000px;}
.yec{bottom:440.355000px;}
.y131{bottom:444.135000px;}
.y7c{bottom:446.475000px;}
.ya8{bottom:450.975000px;}
.y20{bottom:451.875000px;}
.y115{bottom:456.015000px;}
.y53{bottom:456.195000px;}
.ycc{bottom:460.335000px;}
.yeb{bottom:461.415000px;}
.y130{bottom:465.195000px;}
.y7b{bottom:467.535000px;}
.ya7{bottom:472.035000px;}
.y1f{bottom:472.935000px;}
.y114{bottom:477.075000px;}
.y52{bottom:477.255000px;}
.ycb{bottom:481.395000px;}
.yea{bottom:482.475000px;}
.y12f{bottom:486.255000px;}
.y7a{bottom:488.595000px;}
.ya6{bottom:493.095000px;}
.y1e{bottom:493.995000px;}
.y113{bottom:498.135000px;}
.y51{bottom:498.315000px;}
.ye9{bottom:503.535000px;}
.y12e{bottom:507.315000px;}
.y79{bottom:509.655000px;}
.yca{bottom:511.455000px;}
.ya5{bottom:514.155000px;}
.y1d{bottom:515.055000px;}
.y112{bottom:519.015000px;}
.y50{bottom:519.375000px;}
.ye8{bottom:524.595000px;}
.y12d{bottom:528.375000px;}
.y78{bottom:530.715000px;}
.yc9{bottom:532.515000px;}
.ya4{bottom:535.215000px;}
.y1c{bottom:536.295000px;}
.y111{bottom:540.075000px;}
.y4f{bottom:540.435000px;}
.ye7{bottom:545.655000px;}
.y12c{bottom:549.435000px;}
.y77{bottom:551.775000px;}
.yc8{bottom:553.575000px;}
.ya3{bottom:556.275000px;}
.y1b{bottom:559.515000px;}
.y110{bottom:561.135000px;}
.y4e{bottom:561.495000px;}
.ye6{bottom:566.745000px;}
.y12b{bottom:570.525000px;}
.y76{bottom:572.865000px;}
.yc7{bottom:574.665000px;}
.ya2{bottom:577.365000px;}
.y10f{bottom:582.225000px;}
.y4d{bottom:582.585000px;}
.ye5{bottom:587.805000px;}
.y1a{bottom:589.605000px;}
.y12a{bottom:591.585000px;}
.yc6{bottom:595.725000px;}
.ya1{bottom:598.425000px;}
.y75{bottom:602.925000px;}
.y10e{bottom:603.285000px;}
.y4c{bottom:603.645000px;}
.ye4{bottom:608.865000px;}
.y19{bottom:610.665000px;}
.yc5{bottom:610.845000px;}
.y129{bottom:612.645000px;}
.ya0{bottom:619.485000px;}
.y74{bottom:623.985000px;}
.y10d{bottom:624.345000px;}
.y4b{bottom:624.705000px;}
.ye3{bottom:629.925000px;}
.y18{bottom:631.725000px;}
.yc4{bottom:632.625000px;}
.y128{bottom:633.705000px;}
.y9f{bottom:640.545000px;}
.y73{bottom:645.045000px;}
.y10c{bottom:645.405000px;}
.y4a{bottom:645.765000px;}
.ye2{bottom:650.985000px;}
.y17{bottom:652.785000px;}
.yc3{bottom:654.405000px;}
.y127{bottom:654.765000px;}
.y9e{bottom:661.605000px;}
.y72{bottom:666.105000px;}
.y10b{bottom:666.645000px;}
.y16{bottom:673.845000px;}
.y49{bottom:675.825000px;}
.yc1{bottom:676.185000px;}
.y9d{bottom:676.725000px;}
.y71{bottom:687.165000px;}
.ye1{bottom:687.885000px;}
.y10a{bottom:688.425000px;}
.y15{bottom:694.905000px;}
.y48{bottom:696.885000px;}
.y9c{bottom:698.505000px;}
.yc0{bottom:703.905000px;}
.y70{bottom:708.225000px;}
.y109{bottom:709.485000px;}
.ye0{bottom:709.845000px;}
.y14{bottom:715.965000px;}
.y47{bottom:717.945000px;}
.y9b{bottom:720.285000px;}
.y6f{bottom:729.285000px;}
.y108{bottom:730.545000px;}
.ydf{bottom:731.625000px;}
.ybf{bottom:732.345000px;}
.y13{bottom:737.025000px;}
.y46{bottom:739.005000px;}
.y9a{bottom:743.685000px;}
.y6e{bottom:750.345000px;}
.y107{bottom:751.605000px;}
.ybe{bottom:753.405000px;}
.y12{bottom:758.085000px;}
.y45{bottom:760.065000px;}
.y6d{bottom:771.405000px;}
.y99{bottom:772.125000px;}
.y106{bottom:773.385000px;}
.ybd{bottom:774.465000px;}
.y11{bottom:779.145000px;}
.y44{bottom:781.125000px;}
.y6c{bottom:792.465000px;}
.y98{bottom:793.185000px;}
.y105{bottom:794.445000px;}
.ybc{bottom:795.525000px;}
.y10{bottom:800.205000px;}
.y43{bottom:802.185000px;}
.y6b{bottom:813.525000px;}
.y97{bottom:814.245000px;}
.y104{bottom:815.685000px;}
.ybb{bottom:816.585000px;}
.yf{bottom:821.265000px;}
.y42{bottom:823.245000px;}
.y96{bottom:835.305000px;}
.y103{bottom:837.465000px;}
.yba{bottom:837.645000px;}
.ye{bottom:842.325000px;}
.y6a{bottom:843.585000px;}
.y41{bottom:844.305000px;}
.y95{bottom:856.410000px;}
.y102{bottom:858.570000px;}
.yb9{bottom:858.750000px;}
.y69{bottom:864.690000px;}
.y40{bottom:865.410000px;}
.yd{bottom:865.770000px;}
.y94{bottom:877.470000px;}
.y101{bottom:879.630000px;}
.ydd{bottom:882.540000px;}
.y68{bottom:885.750000px;}
.y3f{bottom:886.470000px;}
.yc{bottom:886.650000px;}
.y93{bottom:898.530000px;}
.y64{bottom:900.150000px;}
.y100{bottom:900.690000px;}
.y3e{bottom:907.530000px;}
.yb{bottom:912.930000px;}
.y92{bottom:919.590000px;}
.yff{bottom:921.750000px;}
.y66{bottom:921.930000px;}
.y3d{bottom:928.590000px;}
.ya{bottom:929.670000px;}
.y91{bottom:940.650000px;}
.yfe{bottom:943.530000px;}
.y3c{bottom:949.650000px;}
.y9{bottom:951.990000px;}
.y90{bottom:961.710000px;}
.yfd{bottom:964.590000px;}
.yf9{bottom:967.140000px;}
.y3b{bottom:970.710000px;}
.y8{bottom:977.190000px;}
.y8f{bottom:982.770000px;}
.yfc{bottom:985.650000px;}
.y3a{bottom:991.770000px;}
.yfb{bottom:1002.750000px;}
.y8e{bottom:1003.830000px;}
.y7{bottom:1010.850000px;}
.y39{bottom:1012.830000px;}
.y8d{bottom:1024.890000px;}
.y38{bottom:1033.890000px;}
.y5{bottom:1051.710000px;}
.y37{bottom:1054.950000px;}
.y36{bottom:1076.010000px;}
.y4{bottom:1086.270000px;}
.y35{bottom:1097.070000px;}
.y34{bottom:1118.130000px;}
.y3{bottom:1120.830000px;}
.y33{bottom:1139.220000px;}
.y2{bottom:1155.240000px;}
.y32{bottom:1170.000000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.h12{height:2.864531px;}
.hc{height:21.060000px;}
.hd{height:27.000000px;}
.h7{height:38.671172px;}
.hb{height:42.840000px;}
.h8{height:45.637031px;}
.h2{height:56.146289px;}
.h5{height:59.439023px;}
.h9{height:61.189805px;}
.h10{height:61.423863px;}
.ha{height:62.211094px;}
.h6{height:67.824844px;}
.h3{height:71.613281px;}
.h11{height:85.500000px;}
.h4{height:98.051133px;}
.he{height:160.200000px;}
.hf{height:164.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:48.600000px;}
.w6{width:60.840000px;}
.w5{width:74.520000px;}
.w19{width:79.020000px;}
.wd{width:82.440000px;}
.wb{width:84.240000px;}
.w9{width:90.036000px;}
.w1b{width:90.720000px;}
.w7{width:92.736000px;}
.wc{width:105.516000px;}
.w12{width:105.660000px;}
.w8{width:121.140000px;}
.w18{width:121.716000px;}
.w10{width:133.056000px;}
.w13{width:147.996000px;}
.w1d{width:158.790000px;}
.w4{width:159.510000px;}
.w14{width:169.230000px;}
.w3{width:170.130000px;}
.w15{width:180.030000px;}
.w1c{width:183.990000px;}
.w1a{width:188.130000px;}
.we{width:189.570000px;}
.w1e{width:201.090000px;}
.w21{width:207.030000px;}
.wf{width:213.375000px;}
.w1f{width:297.000000px;}
.w20{width:310.680000px;}
.w16{width:324.000000px;}
.w17{width:336.780000px;}
.w22{width:571.065000px;}
.w11{width:632.625000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x10{left:19.980000px;}
.x1{left:53.999987px;}
.x15{left:63.360000px;}
.x3{left:80.999987px;}
.x1b{left:91.260000px;}
.x2{left:108.035987px;}
.x29{left:113.400000px;}
.x25{left:128.016000px;}
.x8{left:142.596000px;}
.x17{left:143.856000px;}
.x21{left:160.950000px;}
.x2f{left:190.110000px;}
.xf{left:192.630000px;}
.x16{left:197.130000px;}
.x9{left:204.330000px;}
.x26{left:219.630000px;}
.x4{left:244.470000px;}
.x18{left:250.230000px;}
.x30{left:261.030000px;}
.x1f{left:265.349987px;}
.x11{left:275.790000px;}
.x22{left:283.395000px;}
.x2a{left:289.875000px;}
.x14{left:296.174987px;}
.xa{left:297.795000px;}
.x2c{left:298.950000px;}
.x1c{left:312.375000px;}
.x1e{left:328.110000px;}
.x2e{left:342.434987px;}
.x23{left:363.315000px;}
.x19{left:399.135000px;}
.x27{left:404.355000px;}
.x6{left:414.615000px;}
.xb{left:419.655000px;}
.x2b{left:429.480000px;}
.x20{left:446.474987px;}
.x1d{left:447.840000px;}
.x12{left:466.095000px;}
.xc{left:510.405000px;}
.x24{left:552.165000px;}
.xd{left:559.905000px;}
.x28{left:564.045000px;}
.x1a{left:569.265000px;}
.x7{left:574.125000px;}
.xe{left:644.865000px;}
.x2d{left:758.129987px;}
.x13{left:801.869987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.709333pt;}
.lsf{letter-spacing:-0.698667pt;}
.ls1f{letter-spacing:-0.693333pt;}
.ls17{letter-spacing:-0.682667pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.213867pt;}
.lsc{letter-spacing:-0.185600pt;}
.lsd{letter-spacing:-0.069867pt;}
.ls1a{letter-spacing:-0.061867pt;}
.ls9{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.133547pt;}
.ls4{letter-spacing:0.154880pt;}
.ls8{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.195733pt;}
.ls13{letter-spacing:0.272000pt;}
.ls16{letter-spacing:0.274667pt;}
.ls14{letter-spacing:0.419200pt;}
.lsb{letter-spacing:0.426133pt;}
.ls18{letter-spacing:0.531200pt;}
.lse{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.588160pt;}
.ls12{letter-spacing:0.608000pt;}
.ls5{letter-spacing:0.794880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1d{letter-spacing:10.832640pt;}
.ls1c{letter-spacing:37.712640pt;}
.lsa{letter-spacing:40.272640pt;}
.ls1b{letter-spacing:57.040640pt;}
.ws13{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws1{word-spacing:-14.656000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.016000pt;}
.wsd{word-spacing:-12.613120pt;}
.wsb{word-spacing:-12.591787pt;}
.ws12{word-spacing:-12.536320pt;}
.wsf{word-spacing:-12.279787pt;}
.wse{word-spacing:-12.200853pt;}
.ws6{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.ws11{word-spacing:-11.943253pt;}
.wsa{word-spacing:-11.935253pt;}
.ws9{word-spacing:-11.819520pt;}
.ws10{word-spacing:-11.322453pt;}
.ws14{word-spacing:-11.311787pt;}
.wsc{word-spacing:-11.295787pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-1403.225600pt;}
._1{margin-left:-1288.384000pt;}
._4{margin-left:-975.018667pt;}
._6{margin-left:-562.154667pt;}
._1a{margin-left:-6.980053pt;}
._13{margin-left:-5.805013pt;}
._9{margin-left:-4.549120pt;}
._7{margin-left:-3.426133pt;}
._2{margin-left:-2.368000pt;}
._3{margin-left:-1.301333pt;}
._0{width:1.239467pt;}
._12{width:2.129280pt;}
._c{width:3.532373pt;}
._d{width:4.865920pt;}
._a{width:5.949227pt;}
._e{width:7.102507pt;}
._f{width:8.578773pt;}
._b{width:9.774080pt;}
._14{width:10.792107pt;}
._19{width:12.915627pt;}
._16{width:13.944107pt;}
._15{width:14.953173pt;}
._18{width:16.453547pt;}
._10{width:17.795200pt;}
._11{width:19.472640pt;}
._8{width:20.599040pt;}
._17{width:21.699413pt;}
.fs7{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:0.293333pt;}
.yfa{bottom:4.293333pt;}
.y67{bottom:5.920000pt;}
.y13b{bottom:6.240000pt;}
.yc2{bottom:11.200000pt;}
.y65{bottom:15.520000pt;}
.y13a{bottom:25.120000pt;}
.y137{bottom:32.000000pt;}
.y139{bottom:44.320000pt;}
.y6{bottom:55.232000pt;}
.y138{bottom:63.194667pt;}
.y136{bottom:81.632000pt;}
.yb8{bottom:83.392000pt;}
.y126{bottom:87.072000pt;}
.y8c{bottom:87.872000pt;}
.y63{bottom:97.952000pt;}
.y30{bottom:102.272000pt;}
.yb7{bottom:102.752000pt;}
.y125{bottom:105.792000pt;}
.ydc{bottom:106.272000pt;}
.y8b{bottom:106.592000pt;}
.y62{bottom:116.672000pt;}
.y2f{bottom:120.992000pt;}
.yb6{bottom:122.272000pt;}
.y124{bottom:124.512000pt;}
.ydb{bottom:124.992000pt;}
.y8a{bottom:125.312000pt;}
.y61{bottom:135.386667pt;}
.y2e{bottom:139.706667pt;}
.yb5{bottom:142.906667pt;}
.y123{bottom:143.226667pt;}
.yda{bottom:143.706667pt;}
.y89{bottom:144.346667pt;}
.y60{bottom:154.106667pt;}
.y2d{bottom:158.426667pt;}
.y122{bottom:161.946667pt;}
.yd9{bottom:162.426667pt;}
.y88{bottom:163.386667pt;}
.yf8{bottom:164.186667pt;}
.yb4{bottom:168.186667pt;}
.y5f{bottom:172.826667pt;}
.y2c{bottom:177.146667pt;}
.y121{bottom:180.666667pt;}
.yd8{bottom:181.146667pt;}
.y87{bottom:182.106667pt;}
.yf7{bottom:182.906667pt;}
.yb3{bottom:186.906667pt;}
.y5e{bottom:191.546667pt;}
.y2b{bottom:195.866667pt;}
.y120{bottom:199.386667pt;}
.yd7{bottom:199.866667pt;}
.y86{bottom:200.826667pt;}
.yf6{bottom:201.626667pt;}
.yb2{bottom:205.626667pt;}
.y5d{bottom:210.266667pt;}
.y2a{bottom:214.586667pt;}
.y11f{bottom:218.106667pt;}
.yd6{bottom:218.586667pt;}
.yf5{bottom:220.346667pt;}
.yb1{bottom:224.346667pt;}
.y85{bottom:227.546667pt;}
.y29{bottom:233.306667pt;}
.y11e{bottom:236.826667pt;}
.y5c{bottom:236.986667pt;}
.yd5{bottom:237.306667pt;}
.yf4{bottom:239.066667pt;}
.yb0{bottom:243.066667pt;}
.y84{bottom:246.266667pt;}
.yd4{bottom:250.786667pt;}
.y28{bottom:252.066667pt;}
.yf3{bottom:252.546667pt;}
.y11d{bottom:255.586667pt;}
.y5b{bottom:255.746667pt;}
.yaf{bottom:261.826667pt;}
.y83{bottom:265.026667pt;}
.yd3{bottom:270.146667pt;}
.y27{bottom:270.786667pt;}
.yf2{bottom:271.906667pt;}
.y11c{bottom:274.306667pt;}
.y5a{bottom:274.466667pt;}
.yae{bottom:280.546667pt;}
.y82{bottom:283.746667pt;}
.y26{bottom:289.506667pt;}
.yd2{bottom:289.666667pt;}
.yf1{bottom:291.266667pt;}
.y11b{bottom:293.026667pt;}
.y59{bottom:293.186667pt;}
.y81{bottom:302.466667pt;}
.yad{bottom:307.266667pt;}
.y25{bottom:308.226667pt;}
.yd1{bottom:309.026667pt;}
.y11a{bottom:311.746667pt;}
.y58{bottom:311.906667pt;}
.yf0{bottom:316.546667pt;}
.y135{bottom:319.906667pt;}
.y80{bottom:321.186667pt;}
.yac{bottom:325.986667pt;}
.y24{bottom:326.946667pt;}
.y119{bottom:330.466667pt;}
.y57{bottom:330.626667pt;}
.yd0{bottom:334.306667pt;}
.yef{bottom:335.266667pt;}
.y134{bottom:338.626667pt;}
.y7f{bottom:339.906667pt;}
.yab{bottom:344.706667pt;}
.y23{bottom:345.666667pt;}
.y118{bottom:349.186667pt;}
.y56{bottom:349.346667pt;}
.ycf{bottom:353.026667pt;}
.yee{bottom:353.986667pt;}
.y133{bottom:357.346667pt;}
.y7e{bottom:358.626667pt;}
.yaa{bottom:363.426667pt;}
.y22{bottom:364.386667pt;}
.y117{bottom:367.906667pt;}
.y55{bottom:368.066667pt;}
.yce{bottom:371.746667pt;}
.yed{bottom:372.706667pt;}
.y132{bottom:376.066667pt;}
.y7d{bottom:377.826667pt;}
.ya9{bottom:382.146667pt;}
.y21{bottom:382.946667pt;}
.y116{bottom:386.626667pt;}
.y54{bottom:386.786667pt;}
.ycd{bottom:390.466667pt;}
.yec{bottom:391.426667pt;}
.y131{bottom:394.786667pt;}
.y7c{bottom:396.866667pt;}
.ya8{bottom:400.866667pt;}
.y20{bottom:401.666667pt;}
.y115{bottom:405.346667pt;}
.y53{bottom:405.506667pt;}
.ycc{bottom:409.186667pt;}
.yeb{bottom:410.146667pt;}
.y130{bottom:413.506667pt;}
.y7b{bottom:415.586667pt;}
.ya7{bottom:419.586667pt;}
.y1f{bottom:420.386667pt;}
.y114{bottom:424.066667pt;}
.y52{bottom:424.226667pt;}
.ycb{bottom:427.906667pt;}
.yea{bottom:428.866667pt;}
.y12f{bottom:432.226667pt;}
.y7a{bottom:434.306667pt;}
.ya6{bottom:438.306667pt;}
.y1e{bottom:439.106667pt;}
.y113{bottom:442.786667pt;}
.y51{bottom:442.946667pt;}
.ye9{bottom:447.586667pt;}
.y12e{bottom:450.946667pt;}
.y79{bottom:453.026667pt;}
.yca{bottom:454.626667pt;}
.ya5{bottom:457.026667pt;}
.y1d{bottom:457.826667pt;}
.y112{bottom:461.346667pt;}
.y50{bottom:461.666667pt;}
.ye8{bottom:466.306667pt;}
.y12d{bottom:469.666667pt;}
.y78{bottom:471.746667pt;}
.yc9{bottom:473.346667pt;}
.ya4{bottom:475.746667pt;}
.y1c{bottom:476.706667pt;}
.y111{bottom:480.066667pt;}
.y4f{bottom:480.386667pt;}
.ye7{bottom:485.026667pt;}
.y12c{bottom:488.386667pt;}
.y77{bottom:490.466667pt;}
.yc8{bottom:492.066667pt;}
.ya3{bottom:494.466667pt;}
.y1b{bottom:497.346667pt;}
.y110{bottom:498.786667pt;}
.y4e{bottom:499.106667pt;}
.ye6{bottom:503.773333pt;}
.y12b{bottom:507.133333pt;}
.y76{bottom:509.213333pt;}
.yc7{bottom:510.813333pt;}
.ya2{bottom:513.213333pt;}
.y10f{bottom:517.533333pt;}
.y4d{bottom:517.853333pt;}
.ye5{bottom:522.493333pt;}
.y1a{bottom:524.093333pt;}
.y12a{bottom:525.853333pt;}
.yc6{bottom:529.533333pt;}
.ya1{bottom:531.933333pt;}
.y75{bottom:535.933333pt;}
.y10e{bottom:536.253333pt;}
.y4c{bottom:536.573333pt;}
.ye4{bottom:541.213333pt;}
.y19{bottom:542.813333pt;}
.yc5{bottom:542.973333pt;}
.y129{bottom:544.573333pt;}
.ya0{bottom:550.653333pt;}
.y74{bottom:554.653333pt;}
.y10d{bottom:554.973333pt;}
.y4b{bottom:555.293333pt;}
.ye3{bottom:559.933333pt;}
.y18{bottom:561.533333pt;}
.yc4{bottom:562.333333pt;}
.y128{bottom:563.293333pt;}
.y9f{bottom:569.373333pt;}
.y73{bottom:573.373333pt;}
.y10c{bottom:573.693333pt;}
.y4a{bottom:574.013333pt;}
.ye2{bottom:578.653333pt;}
.y17{bottom:580.253333pt;}
.yc3{bottom:581.693333pt;}
.y127{bottom:582.013333pt;}
.y9e{bottom:588.093333pt;}
.y72{bottom:592.093333pt;}
.y10b{bottom:592.573333pt;}
.y16{bottom:598.973333pt;}
.y49{bottom:600.733333pt;}
.yc1{bottom:601.053333pt;}
.y9d{bottom:601.533333pt;}
.y71{bottom:610.813333pt;}
.ye1{bottom:611.453333pt;}
.y10a{bottom:611.933333pt;}
.y15{bottom:617.693333pt;}
.y48{bottom:619.453333pt;}
.y9c{bottom:620.893333pt;}
.yc0{bottom:625.693333pt;}
.y70{bottom:629.533333pt;}
.y109{bottom:630.653333pt;}
.ye0{bottom:630.973333pt;}
.y14{bottom:636.413333pt;}
.y47{bottom:638.173333pt;}
.y9b{bottom:640.253333pt;}
.y6f{bottom:648.253333pt;}
.y108{bottom:649.373333pt;}
.ydf{bottom:650.333333pt;}
.ybf{bottom:650.973333pt;}
.y13{bottom:655.133333pt;}
.y46{bottom:656.893333pt;}
.y9a{bottom:661.053333pt;}
.y6e{bottom:666.973333pt;}
.y107{bottom:668.093333pt;}
.ybe{bottom:669.693333pt;}
.y12{bottom:673.853333pt;}
.y45{bottom:675.613333pt;}
.y6d{bottom:685.693333pt;}
.y99{bottom:686.333333pt;}
.y106{bottom:687.453333pt;}
.ybd{bottom:688.413333pt;}
.y11{bottom:692.573333pt;}
.y44{bottom:694.333333pt;}
.y6c{bottom:704.413333pt;}
.y98{bottom:705.053333pt;}
.y105{bottom:706.173333pt;}
.ybc{bottom:707.133333pt;}
.y10{bottom:711.293333pt;}
.y43{bottom:713.053333pt;}
.y6b{bottom:723.133333pt;}
.y97{bottom:723.773333pt;}
.y104{bottom:725.053333pt;}
.ybb{bottom:725.853333pt;}
.yf{bottom:730.013333pt;}
.y42{bottom:731.773333pt;}
.y96{bottom:742.493333pt;}
.y103{bottom:744.413333pt;}
.yba{bottom:744.573333pt;}
.ye{bottom:748.733333pt;}
.y6a{bottom:749.853333pt;}
.y41{bottom:750.493333pt;}
.y95{bottom:761.253333pt;}
.y102{bottom:763.173333pt;}
.yb9{bottom:763.333333pt;}
.y69{bottom:768.613333pt;}
.y40{bottom:769.253333pt;}
.yd{bottom:769.573333pt;}
.y94{bottom:779.973333pt;}
.y101{bottom:781.893333pt;}
.ydd{bottom:784.480000pt;}
.y68{bottom:787.333333pt;}
.y3f{bottom:787.973333pt;}
.yc{bottom:788.133333pt;}
.y93{bottom:798.693333pt;}
.y64{bottom:800.133333pt;}
.y100{bottom:800.613333pt;}
.y3e{bottom:806.693333pt;}
.yb{bottom:811.493333pt;}
.y92{bottom:817.413333pt;}
.yff{bottom:819.333333pt;}
.y66{bottom:819.493333pt;}
.y3d{bottom:825.413333pt;}
.ya{bottom:826.373333pt;}
.y91{bottom:836.133333pt;}
.yfe{bottom:838.693333pt;}
.y3c{bottom:844.133333pt;}
.y9{bottom:846.213333pt;}
.y90{bottom:854.853333pt;}
.yfd{bottom:857.413333pt;}
.yf9{bottom:859.680000pt;}
.y3b{bottom:862.853333pt;}
.y8{bottom:868.613333pt;}
.y8f{bottom:873.573333pt;}
.yfc{bottom:876.133333pt;}
.y3a{bottom:881.573333pt;}
.yfb{bottom:891.333333pt;}
.y8e{bottom:892.293333pt;}
.y7{bottom:898.533333pt;}
.y39{bottom:900.293333pt;}
.y8d{bottom:911.013333pt;}
.y38{bottom:919.013333pt;}
.y5{bottom:934.853333pt;}
.y37{bottom:937.733333pt;}
.y36{bottom:956.453333pt;}
.y4{bottom:965.573333pt;}
.y35{bottom:975.173333pt;}
.y34{bottom:993.893333pt;}
.y3{bottom:996.293333pt;}
.y33{bottom:1012.640000pt;}
.y2{bottom:1026.880000pt;}
.y32{bottom:1040.000000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.h12{height:2.546250pt;}
.hc{height:18.720000pt;}
.hd{height:24.000000pt;}
.h7{height:34.374375pt;}
.hb{height:38.080000pt;}
.h8{height:40.566250pt;}
.h2{height:49.907812pt;}
.h5{height:52.834688pt;}
.h9{height:54.390938pt;}
.h10{height:54.598989pt;}
.ha{height:55.298750pt;}
.h6{height:60.288750pt;}
.h3{height:63.656250pt;}
.h11{height:76.000000pt;}
.h4{height:87.156562pt;}
.he{height:142.400000pt;}
.hf{height:146.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:43.200000pt;}
.w6{width:54.080000pt;}
.w5{width:66.240000pt;}
.w19{width:70.240000pt;}
.wd{width:73.280000pt;}
.wb{width:74.880000pt;}
.w9{width:80.032000pt;}
.w1b{width:80.640000pt;}
.w7{width:82.432000pt;}
.wc{width:93.792000pt;}
.w12{width:93.920000pt;}
.w8{width:107.680000pt;}
.w18{width:108.192000pt;}
.w10{width:118.272000pt;}
.w13{width:131.552000pt;}
.w1d{width:141.146667pt;}
.w4{width:141.786667pt;}
.w14{width:150.426667pt;}
.w3{width:151.226667pt;}
.w15{width:160.026667pt;}
.w1c{width:163.546667pt;}
.w1a{width:167.226667pt;}
.we{width:168.506667pt;}
.w1e{width:178.746667pt;}
.w21{width:184.026667pt;}
.wf{width:189.666667pt;}
.w1f{width:264.000000pt;}
.w20{width:276.160000pt;}
.w16{width:288.000000pt;}
.w17{width:299.360000pt;}
.w22{width:507.613333pt;}
.w11{width:562.333333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x10{left:17.760000pt;}
.x1{left:47.999988pt;}
.x15{left:56.320000pt;}
.x3{left:71.999988pt;}
.x1b{left:81.120000pt;}
.x2{left:96.031988pt;}
.x29{left:100.800000pt;}
.x25{left:113.792000pt;}
.x8{left:126.752000pt;}
.x17{left:127.872000pt;}
.x21{left:143.066667pt;}
.x2f{left:168.986667pt;}
.xf{left:171.226667pt;}
.x16{left:175.226667pt;}
.x9{left:181.626667pt;}
.x26{left:195.226667pt;}
.x4{left:217.306667pt;}
.x18{left:222.426667pt;}
.x30{left:232.026667pt;}
.x1f{left:235.866655pt;}
.x11{left:245.146667pt;}
.x22{left:251.906667pt;}
.x2a{left:257.666667pt;}
.x14{left:263.266655pt;}
.xa{left:264.706667pt;}
.x2c{left:265.733333pt;}
.x1c{left:277.666667pt;}
.x1e{left:291.653333pt;}
.x2e{left:304.386655pt;}
.x23{left:322.946667pt;}
.x19{left:354.786667pt;}
.x27{left:359.426667pt;}
.x6{left:368.546667pt;}
.xb{left:373.026667pt;}
.x2b{left:381.760000pt;}
.x20{left:396.866655pt;}
.x1d{left:398.080000pt;}
.x12{left:414.306667pt;}
.xc{left:453.693333pt;}
.x24{left:490.813333pt;}
.xd{left:497.693333pt;}
.x28{left:501.373333pt;}
.x1a{left:506.013333pt;}
.x7{left:510.333333pt;}
.xe{left:573.213333pt;}
.x2d{left:673.893322pt;}
.x13{left:712.773322pt;}
}




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