
    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_f7857b616d8080b5bea6ce69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6d42ff1f09a58120005c1e77.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_6fdbfedd1daae3a365c1308e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ac9e61e97eebfb51b7ea954f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1555e8d9d6996334506a5bad.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bfcc19d0943478536ac61c43.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.134000px;}
.lsd{letter-spacing:-0.828000px;}
.ls6{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.262200px;}
.ls3{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.lse{letter-spacing:0.126000px;}
.ls10{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.305400px;}
.ls5{letter-spacing:4.464000px;}
.ls12{letter-spacing:6.785280px;}
.lsc{letter-spacing:123.102000px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.ws0{word-spacing:-26.621280px;}
.ws3{word-spacing:-18.720120px;}
.ws8{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.152520px;}
.ws4{word-spacing:-18.109320px;}
.ws6{word-spacing:-17.956920px;}
.wsd{word-spacing:-15.228000px;}
.ws9{word-spacing:-15.226440px;}
.wse{word-spacing:-14.994000px;}
.wsa{word-spacing:-12.204000px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:96.942000px;}
.wsc{word-spacing:97.374000px;}
._2a{margin-left:-5.169120px;}
._7{margin-left:-4.106880px;}
._1{margin-left:-2.376000px;}
._2{margin-left:-1.278720px;}
._0{width:1.404000px;}
._a{width:2.517120px;}
._b{width:3.989280px;}
._5{width:5.365440px;}
._16{width:6.425280px;}
._8{width:7.430400px;}
._6{width:8.478720px;}
._9{width:9.794880px;}
._e{width:10.863360px;}
._c{width:11.923200px;}
._11{width:13.115520px;}
._10{width:14.785440px;}
._f{width:15.897600px;}
._d{width:17.167680px;}
._12{width:20.070720px;}
._21{width:21.137760px;}
._1c{width:22.307520px;}
._20{width:24.298080px;}
._24{width:25.557120px;}
._23{width:27.380160px;}
._1d{width:28.656480px;}
._1b{width:29.918880px;}
._1a{width:31.066560px;}
._28{width:32.886000px;}
._19{width:33.924960px;}
._17{width:35.305920px;}
._14{width:36.696960px;}
._13{width:37.756800px;}
._15{width:39.278880px;}
._1e{width:40.406400px;}
._1f{width:41.466240px;}
._29{width:48.752640px;}
._22{width:54.215040px;}
._18{width:67.527360px;}
._31{width:69.883200px;}
._30{width:70.884480px;}
._2f{width:83.472960px;}
._25{width:96.060000px;}
._4{width:103.548960px;}
._3{width:104.788080px;}
._26{width:107.292000px;}
._2e{width:119.033280px;}
._2c{width:120.302400px;}
._27{width:125.658000px;}
._2d{width:612.918720px;}
._2b{width:767.916000px;}
.fc1{color:transparent;}
.fc4{color:rgb(242,242,242);}
.fc3{color:rgb(217,217,217);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:131.760000px;}
.y18{bottom:-9.150000px;}
.y0{bottom:0.000000px;}
.y146{bottom:10.620000px;}
.y14b{bottom:10.800000px;}
.y131{bottom:17.565000px;}
.y17{bottom:25.050000px;}
.y148{bottom:33.840000px;}
.y164{bottom:33.870000px;}
.y145{bottom:34.020000px;}
.y15c{bottom:34.065000px;}
.y12f{bottom:47.490000px;}
.y16{bottom:51.870000px;}
.y2{bottom:56.520000px;}
.y147{bottom:57.240000px;}
.y1a{bottom:57.420000px;}
.y119{bottom:67.395000px;}
.y13e{bottom:74.235000px;}
.y1{bottom:75.456000px;}
.y19{bottom:77.616000px;}
.y11a{bottom:86.295000px;}
.y15{bottom:93.630000px;}
.y11b{bottom:105.195000px;}
.y94{bottom:113.256000px;}
.y1ce{bottom:117.396000px;}
.y10e{bottom:120.276000px;}
.y117{bottom:121.536000px;}
.y179{bottom:122.076000px;}
.y59{bottom:123.336000px;}
.y11c{bottom:124.050000px;}
.y190{bottom:125.316000px;}
.y13c{bottom:126.576000px;}
.y162{bottom:136.656000px;}
.y78{bottom:136.836000px;}
.y3a{bottom:140.076000px;}
.y93{bottom:141.696000px;}
.yac{bottom:141.876000px;}
.y11d{bottom:142.950000px;}
.yda{bottom:142.956000px;}
.y1ad{bottom:144.216000px;}
.y10d{bottom:148.716000px;}
.y116{bottom:150.150000px;}
.y178{bottom:150.510000px;}
.y1cd{bottom:151.230000px;}
.ye9{bottom:153.570000px;}
.y18f{bottom:153.750000px;}
.y161{bottom:160.590000px;}
.y11e{bottom:161.850000px;}
.y58{bottom:163.830000px;}
.y1ac{bottom:164.550000px;}
.y77{bottom:165.270000px;}
.yab{bottom:170.310000px;}
.yd9{bottom:171.570000px;}
.y39{bottom:172.470000px;}
.y10c{bottom:177.150000px;}
.y177{bottom:178.950000px;}
.y11f{bottom:180.720000px;}
.y13{bottom:180.930000px;}
.y92{bottom:182.010000px;}
.ye8{bottom:182.190000px;}
.y13f{bottom:182.235000px;}
.y140{bottom:183.345000px;}
.y160{bottom:184.710000px;}
.y1cc{bottom:184.890000px;}
.y1ab{bottom:185.070000px;}
.y115{bottom:187.590000px;}
.y118{bottom:187.920000px;}
.y76{bottom:193.710000px;}
.yf5{bottom:198.750000px;}
.y120{bottom:199.620000px;}
.yd8{bottom:200.010000px;}
.y57{bottom:204.330000px;}
.y38{bottom:204.870000px;}
.y18a{bottom:205.590000px;}
.y14{bottom:205.740000px;}
.y176{bottom:207.390000px;}
.y15f{bottom:208.650000px;}
.yaa{bottom:210.450000px;}
.y91{bottom:210.630000px;}
.y143{bottom:214.485000px;}
.y12{bottom:214.590000px;}
.y10b{bottom:217.470000px;}
.y1aa{bottom:217.650000px;}
.y121{bottom:218.490000px;}
.y1cb{bottom:218.550000px;}
.y75{bottom:222.150000px;}
.ybd{bottom:222.510000px;}
.yf4{bottom:227.190000px;}
.yd7{bottom:228.450000px;}
.y15e{bottom:232.770000px;}
.y56{bottom:232.950000px;}
.y189{bottom:234.210000px;}
.y175{bottom:236.010000px;}
.y122{bottom:237.390000px;}
.y37{bottom:237.450000px;}
.y1a9{bottom:237.990000px;}
.y90{bottom:239.070000px;}
.ye7{bottom:239.250000px;}
.y10a{bottom:246.090000px;}
.y11{bottom:248.430000px;}
.y142{bottom:248.580000px;}
.y74{bottom:250.590000px;}
.ya9{bottom:250.950000px;}
.ybc{bottom:251.130000px;}
.y1ca{bottom:252.390000px;}
.yf3{bottom:255.630000px;}
.y123{bottom:256.290000px;}
.y15d{bottom:256.710000px;}
.yd6{bottom:256.890000px;}
.y188{bottom:262.650000px;}
.y174{bottom:264.450000px;}
.y8f{bottom:267.510000px;}
.ye6{bottom:267.690000px;}
.y36{bottom:269.850000px;}
.y1a8{bottom:270.570000px;}
.y55{bottom:273.270000px;}
.y109{bottom:274.530000px;}
.y124{bottom:275.145000px;}
.y141{bottom:277.920000px;}
.ya8{bottom:279.570000px;}
.y10{bottom:282.090000px;}
.yf2{bottom:284.070000px;}
.yd5{bottom:285.330000px;}
.y1c9{bottom:286.050000px;}
.y73{bottom:290.910000px;}
.y125{bottom:294.045000px;}
.y8e{bottom:295.950000px;}
.ye5{bottom:296.130000px;}
.y35{bottom:302.430000px;}
.y187{bottom:302.790000px;}
.y15b{bottom:304.050000px;}
.y173{bottom:304.590000px;}
.ya7{bottom:308.010000px;}
.y1a7{bottom:311.430000px;}
.yf1{bottom:312.510000px;}
.y126{bottom:312.945000px;}
.y54{bottom:313.590000px;}
.yd4{bottom:313.950000px;}
.y108{bottom:314.850000px;}
.yf{bottom:315.930000px;}
.y72{bottom:319.530000px;}
.y1c8{bottom:319.890000px;}
.y8d{bottom:324.570000px;}
.y186{bottom:331.590000px;}
.y127{bottom:331.815000px;}
.y172{bottom:333.390000px;}
.y34{bottom:334.830000px;}
.y18e{bottom:336.495000px;}
.ya6{bottom:336.675000px;}
.y53{bottom:342.435000px;}
.y107{bottom:343.515000px;}
.y1a6{bottom:344.055000px;}
.y71{bottom:348.015000px;}
.y128{bottom:350.715000px;}
.y15a{bottom:351.435000px;}
.yf0{bottom:352.875000px;}
.ye4{bottom:353.055000px;}
.ye{bottom:353.595000px;}
.y185{bottom:360.075000px;}
.y171{bottom:361.875000px;}
.y1a5{bottom:364.395000px;}
.y8c{bottom:364.755000px;}
.ya5{bottom:365.115000px;}
.y33{bottom:367.455000px;}
.y129{bottom:369.615000px;}
.y52{bottom:370.875000px;}
.y106{bottom:371.955000px;}
.y70{bottom:376.455000px;}
.ye3{bottom:381.495000px;}
.y1c7{bottom:386.355000px;}
.y12a{bottom:388.470000px;}
.y184{bottom:388.515000px;}
.y170{bottom:390.315000px;}
.y8b{bottom:393.375000px;}
.ya4{bottom:393.555000px;}
.y1a4{bottom:397.155000px;}
.y159{bottom:398.775000px;}
.y32{bottom:399.855000px;}
.y51{bottom:400.395000px;}
.y6f{bottom:404.895000px;}
.yd{bottom:406.515000px;}
.y12b{bottom:407.370000px;}
.ye2{bottom:409.935000px;}
.y16f{bottom:418.755000px;}
.yef{bottom:421.815000px;}
.y8a{bottom:421.995000px;}
.y12c{bottom:426.270000px;}
.y183{bottom:428.835000px;}
.y105{bottom:429.015000px;}
.y1a3{bottom:429.555000px;}
.y50{bottom:430.275000px;}
.y31{bottom:432.255000px;}
.ybb{bottom:433.875000px;}
.ye1{bottom:438.375000px;}
.y1c6{bottom:439.095000px;}
.y12d{bottom:445.140000px;}
.y6e{bottom:445.215000px;}
.y158{bottom:446.115000px;}
.y16e{bottom:447.195000px;}
.y1a2{bottom:449.895000px;}
.y89{bottom:450.435000px;}
.yd3{bottom:456.555000px;}
.y104{bottom:457.455000px;}
.yc{bottom:457.635000px;}
.y4f{bottom:458.715000px;}
.y1c5{bottom:459.435000px;}
.yba{bottom:462.495000px;}
.y12e{bottom:464.040000px;}
.y30{bottom:464.835000px;}
.y6d{bottom:473.835000px;}
.y16d{bottom:475.635000px;}
.ye0{bottom:478.695000px;}
.y88{bottom:478.875000px;}
.yd2{bottom:485.355000px;}
.y1a1{bottom:485.535000px;}
.y103{bottom:485.895000px;}
.y4e{bottom:487.155000px;}
.yb9{bottom:490.935000px;}
.y1c4{bottom:492.195000px;}
.y157{bottom:493.455000px;}
.y2f{bottom:497.235000px;}
.y130{bottom:500.040000px;}
.yb{bottom:502.275000px;}
.y16c{bottom:504.075000px;}
.y87{bottom:507.315000px;}
.y1c3{bottom:512.535000px;}
.yd1{bottom:513.795000px;}
.y102{bottom:514.335000px;}
.y4d{bottom:515.775000px;}
.y156{bottom:517.395000px;}
.y18d{bottom:519.195000px;}
.yb8{bottom:519.375000px;}
.y6c{bottom:530.715000px;}
.y1c2{bottom:532.875000px;}
.y1a0{bottom:535.035000px;}
.y86{bottom:535.755000px;}
.y2e{bottom:537.555000px;}
.yd0{bottom:542.235000px;}
.y101{bottom:542.775000px;}
.ya{bottom:544.035000px;}
.y16b{bottom:544.395000px;}
.ya3{bottom:547.635000px;}
.y18c{bottom:547.815000px;}
.y13b{bottom:549.795000px;}
.y4c{bottom:555.915000px;}
.y6b{bottom:559.155000px;}
.yb7{bottom:559.695000px;}
.y19f{bottom:563.655000px;}
.yee{bottom:564.195000px;}
.y155{bottom:564.735000px;}
.y1c1{bottom:565.635000px;}
.y2d{bottom:566.175000px;}
.ycf{bottom:570.675000px;}
.y100{bottom:571.215000px;}
.y16a{bottom:573.015000px;}
.y85{bottom:576.075000px;}
.ya2{bottom:576.255000px;}
.y13a{bottom:578.595000px;}
.y4b{bottom:584.535000px;}
.y1c0{bottom:585.975000px;}
.y9{bottom:586.695000px;}
.y6a{bottom:587.775000px;}
.yb6{bottom:588.315000px;}
.y154{bottom:588.855000px;}
.y19e{bottom:592.095000px;}
.yed{bottom:592.815000px;}
.y2c{bottom:594.615000px;}
.yce{bottom:599.115000px;}
.y182{bottom:599.655000px;}
.y169{bottom:601.455000px;}
.y84{bottom:604.725000px;}
.y1bf{bottom:606.345000px;}
.yff{bottom:606.885000px;}
.y139{bottom:607.065000px;}
.y153{bottom:612.825000px;}
.y69{bottom:616.245000px;}
.yb5{bottom:616.785000px;}
.y19d{bottom:620.565000px;}
.y2b{bottom:623.085000px;}
.y4a{bottom:624.885000px;}
.ycd{bottom:627.585000px;}
.y181{bottom:628.125000px;}
.y8{bottom:630.105000px;}
.yec{bottom:632.985000px;}
.y83{bottom:633.165000px;}
.y138{bottom:635.505000px;}
.y152{bottom:636.945000px;}
.y168{bottom:639.105000px;}
.y68{bottom:644.685000px;}
.ydf{bottom:645.045000px;}
.yb4{bottom:645.225000px;}
.y2a{bottom:651.525000px;}
.ycc{bottom:656.025000px;}
.y180{bottom:656.565000px;}
.yfe{bottom:657.105000px;}
.y1be{bottom:659.445000px;}
.y19c{bottom:660.885000px;}
.ya1{bottom:661.605000px;}
.y7{bottom:663.945000px;}
.y49{bottom:665.385000px;}
.y82{bottom:670.065000px;}
.y67{bottom:673.125000px;}
.yeb{bottom:673.485000px;}
.yb3{bottom:673.665000px;}
.y1bd{bottom:679.785000px;}
.y29{bottom:680.145000px;}
.y17f{bottom:685.185000px;}
.yfd{bottom:685.725000px;}
.y19b{bottom:689.505000px;}
.ya0{bottom:690.225000px;}
.y137{bottom:692.385000px;}
.y48{bottom:694.005000px;}
.ycb{bottom:696.345000px;}
.y6{bottom:697.605000px;}
.y66{bottom:701.565000px;}
.y18b{bottom:701.925000px;}
.yb2{bottom:702.105000px;}
.y151{bottom:707.505000px;}
.y28{bottom:708.585000px;}
.y1bc{bottom:712.545000px;}
.y17e{bottom:713.625000px;}
.yfc{bottom:714.165000px;}
.y19a{bottom:717.945000px;}
.y9f{bottom:718.665000px;}
.y136{bottom:720.825000px;}
.y47{bottom:722.445000px;}
.yca{bottom:724.965000px;}
.y65{bottom:730.005000px;}
.yb1{bottom:730.545000px;}
.y5{bottom:731.265000px;}
.y1bb{bottom:732.705000px;}
.y27{bottom:737.025000px;}
.y17d{bottom:742.065000px;}
.yfb{bottom:742.605000px;}
.y114{bottom:746.925000px;}
.y9e{bottom:747.105000px;}
.y135{bottom:749.265000px;}
.y46{bottom:750.885000px;}
.yc9{bottom:753.405000px;}
.y150{bottom:754.845000px;}
.y199{bottom:758.265000px;}
.y64{bottom:758.445000px;}
.yb0{bottom:758.985000px;}
.y4{bottom:760.605000px;}
.y26{bottom:765.465000px;}
.y17c{bottom:770.505000px;}
.yfa{bottom:771.045000px;}
.y113{bottom:775.545000px;}
.y134{bottom:777.705000px;}
.y14f{bottom:778.965000px;}
.y45{bottom:779.325000px;}
.yc8{bottom:781.845000px;}
.y1ba{bottom:785.805000px;}
.y198{bottom:786.885000px;}
.y9d{bottom:787.425000px;}
.yaf{bottom:787.605000px;}
.y25{bottom:793.905000px;}
.y63{bottom:798.765000px;}
.y17b{bottom:798.945000px;}
.yf9{bottom:799.485000px;}
.y14e{bottom:802.905000px;}
.y112{bottom:803.985000px;}
.y133{bottom:806.145000px;}
.y44{bottom:807.945000px;}
.yc7{bottom:810.285000px;}
.y197{bottom:815.325000px;}
.y9c{bottom:816.045000px;}
.y24{bottom:822.345000px;}
.y62{bottom:827.385000px;}
.yf8{bottom:827.925000px;}
.y111{bottom:832.425000px;}
.yc6{bottom:838.905000px;}
.y132{bottom:843.765000px;}
.y196{bottom:843.945000px;}
.y9b{bottom:844.485000px;}
.y13d{bottom:844.560000px;}
.y43{bottom:848.085000px;}
.y14d{bottom:850.245000px;}
.y23{bottom:850.785000px;}
.y61{bottom:855.825000px;}
.yf7{bottom:856.365000px;}
.y1b9{bottom:859.245000px;}
.y110{bottom:860.865000px;}
.yc5{bottom:867.345000px;}
.y195{bottom:872.430000px;}
.y9a{bottom:872.970000px;}
.y14c{bottom:874.410000px;}
.y22{bottom:879.270000px;}
.y1b8{bottom:879.630000px;}
.y60{bottom:884.310000px;}
.yae{bottom:884.850000px;}
.yf6{bottom:885.030000px;}
.y42{bottom:888.630000px;}
.y194{bottom:900.870000px;}
.y10f{bottom:901.230000px;}
.y99{bottom:901.410000px;}
.yc4{bottom:902.850000px;}
.y21{bottom:907.710000px;}
.y1b7{bottom:912.390000px;}
.y5f{bottom:912.750000px;}
.y81{bottom:913.290000px;}
.yad{bottom:913.470000px;}
.y41{bottom:917.250000px;}
.y14a{bottom:921.570000px;}
.y193{bottom:929.310000px;}
.y98{bottom:929.850000px;}
.y1b6{bottom:932.550000px;}
.y20{bottom:936.330000px;}
.y5e{bottom:941.370000px;}
.y80{bottom:941.910000px;}
.y149{bottom:945.690000px;}
.yc3{bottom:953.070000px;}
.y40{bottom:957.570000px;}
.y97{bottom:958.290000px;}
.y1f{bottom:964.770000px;}
.y192{bottom:969.630000px;}
.y5d{bottom:969.810000px;}
.y7f{bottom:970.350000px;}
.y1b5{bottom:973.590000px;}
.y17a{bottom:976.830000px;}
.yc2{bottom:981.690000px;}
.y3f{bottom:986.190000px;}
.y96{bottom:986.730000px;}
.y1e{bottom:993.210000px;}
.y5c{bottom:998.250000px;}
.y7e{bottom:998.790000px;}
.y167{bottom:1002.390000px;}
.y1b4{bottom:1006.170000px;}
.yc1{bottom:1010.130000px;}
.y3e{bottom:1014.630000px;}
.yde{bottom:1015.170000px;}
.y3{bottom:1017.150000px;}
.y1d{bottom:1021.650000px;}
.y1b3{bottom:1026.510000px;}
.y5b{bottom:1026.690000px;}
.y95{bottom:1027.050000px;}
.y7d{bottom:1027.230000px;}
.yc0{bottom:1038.750000px;}
.y144{bottom:1040.370000px;}
.ydd{bottom:1043.790000px;}
.y166{bottom:1044.330000px;}
.y1b2{bottom:1047.030000px;}
.y1c{bottom:1050.090000px;}
.y3d{bottom:1054.950000px;}
.y5a{bottom:1055.130000px;}
.yea{bottom:1055.490000px;}
.y7c{bottom:1055.670000px;}
.y165{bottom:1061.970000px;}
.y191{bottom:1062.330000px;}
.ybf{bottom:1067.190000px;}
.ydc{bottom:1072.230000px;}
.y1b1{bottom:1079.610000px;}
.y7b{bottom:1084.110000px;}
.y1b{bottom:1085.730000px;}
.y3c{bottom:1095.450000px;}
.ybe{bottom:1095.630000px;}
.y1b0{bottom:1099.950000px;}
.y163{bottom:1109.310000px;}
.ydb{bottom:1112.370000px;}
.y7a{bottom:1112.550000px;}
.y1af{bottom:1120.470000px;}
.y3b{bottom:1131.270000px;}
.y1ae{bottom:1141.020000px;}
.y79{bottom:1141.200000px;}
.h11{height:23.220000px;}
.h14{height:23.256000px;}
.h12{height:23.400000px;}
.h13{height:46.440000px;}
.h16{height:46.476000px;}
.he{height:46.620000px;}
.h15{height:46.656000px;}
.ha{height:53.709961px;}
.hb{height:53.853187px;}
.hf{height:56.320312px;}
.h3{height:65.884219px;}
.h2{height:69.086250px;}
.h10{height:69.840000px;}
.h8{height:75.093750px;}
.hc{height:98.051133px;}
.h5{height:99.874688px;}
.h4{height:112.640625px;}
.h7{height:116.280000px;}
.h6{height:137.421562px;}
.hd{height:312.120000px;}
.h9{height:534.240000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:46.980000px;}
.w6{width:49.140000px;}
.w8{width:50.400000px;}
.we{width:73.260000px;}
.wd{width:73.296000px;}
.wb{width:76.896000px;}
.wa{width:84.420000px;}
.w9{width:84.816000px;}
.wc{width:91.080000px;}
.w3{width:433.260000px;}
.w5{width:516.240000px;}
.w4{width:621.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:7.740000px;}
.xb{left:10.830000px;}
.x1b{left:23.145000px;}
.x2d{left:67.530000px;}
.x1c{left:73.515000px;}
.x21{left:75.885000px;}
.x23{left:91.650000px;}
.x2c{left:99.570000px;}
.x18{left:101.415000px;}
.x1f{left:104.145000px;}
.x19{left:113.370000px;}
.x1d{left:118.410000px;}
.x25{left:122.610000px;}
.x2{left:127.655987px;}
.x17{left:128.880000px;}
.x1a{left:130.755000px;}
.x24{left:132.810000px;}
.x1e{left:134.130000px;}
.x15{left:135.900000px;}
.x20{left:137.010000px;}
.xd{left:138.275987px;}
.x16{left:139.290000px;}
.x12{left:141.515987px;}
.x22{left:146.730000px;}
.xc{left:148.895987px;}
.xf{left:154.649987px;}
.xe{left:177.149987px;}
.x2f{left:178.230000px;}
.x26{left:180.330000px;}
.x10{left:181.649987px;}
.x29{left:188.280000px;}
.x6{left:224.309987px;}
.x30{left:225.930000px;}
.x13{left:242.129987px;}
.x2b{left:246.390000px;}
.xa{left:250.200000px;}
.x5{left:256.709987px;}
.x2a{left:276.480000px;}
.x7{left:285.014987px;}
.x27{left:293.835000px;}
.x8{left:342.254987px;}
.x31{left:362.775000px;}
.x4{left:446.474987px;}
.x32{left:447.915000px;}
.x33{left:525.525000px;}
.x11{left:613.544987px;}
.x34{left:617.505000px;}
.x35{left:691.530000px;}
.x3{left:695.669987px;}
.x28{left:704.669987px;}
.x36{left:717.089987px;}
.x14{left:748.769987px;}
.x1{left:756.329987px;}
.x9{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.008000pt;}
.lsd{letter-spacing:-0.736000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.lse{letter-spacing:0.112000pt;}
.ls10{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.271467pt;}
.ls5{letter-spacing:3.968000pt;}
.ls12{letter-spacing:6.031360pt;}
.lsc{letter-spacing:109.424000pt;}
.ws5{word-spacing:-58.880000pt;}
.ws0{word-spacing:-23.663360pt;}
.ws3{word-spacing:-16.640107pt;}
.ws8{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.135573pt;}
.ws4{word-spacing:-16.097173pt;}
.ws6{word-spacing:-15.961707pt;}
.wsd{word-spacing:-13.536000pt;}
.ws9{word-spacing:-13.534613pt;}
.wse{word-spacing:-13.328000pt;}
.wsa{word-spacing:-10.848000pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:86.170667pt;}
.wsc{word-spacing:86.554667pt;}
._2a{margin-left:-4.594773pt;}
._7{margin-left:-3.650560pt;}
._1{margin-left:-2.112000pt;}
._2{margin-left:-1.136640pt;}
._0{width:1.248000pt;}
._a{width:2.237440pt;}
._b{width:3.546027pt;}
._5{width:4.769280pt;}
._16{width:5.711360pt;}
._8{width:6.604800pt;}
._6{width:7.536640pt;}
._9{width:8.706560pt;}
._e{width:9.656320pt;}
._c{width:10.598400pt;}
._11{width:11.658240pt;}
._10{width:13.142613pt;}
._f{width:14.131200pt;}
._d{width:15.260160pt;}
._12{width:17.840640pt;}
._21{width:18.789120pt;}
._1c{width:19.828907pt;}
._20{width:21.598293pt;}
._24{width:22.717440pt;}
._23{width:24.337920pt;}
._1d{width:25.472427pt;}
._1b{width:26.594560pt;}
._1a{width:27.614720pt;}
._28{width:29.232000pt;}
._19{width:30.155520pt;}
._17{width:31.383040pt;}
._14{width:32.619520pt;}
._13{width:33.561600pt;}
._15{width:34.914560pt;}
._1e{width:35.916800pt;}
._1f{width:36.858880pt;}
._29{width:43.335680pt;}
._22{width:48.191147pt;}
._18{width:60.024320pt;}
._31{width:62.118400pt;}
._30{width:63.008427pt;}
._2f{width:74.198187pt;}
._25{width:85.386667pt;}
._4{width:92.043520pt;}
._3{width:93.144960pt;}
._26{width:95.370667pt;}
._2e{width:105.807360pt;}
._2c{width:106.935467pt;}
._27{width:111.696000pt;}
._2d{width:544.816640pt;}
._2b{width:682.592000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:117.120000pt;}
.y18{bottom:-8.133333pt;}
.y0{bottom:0.000000pt;}
.y146{bottom:9.440000pt;}
.y14b{bottom:9.600000pt;}
.y131{bottom:15.613333pt;}
.y17{bottom:22.266667pt;}
.y148{bottom:30.080000pt;}
.y164{bottom:30.106667pt;}
.y145{bottom:30.240000pt;}
.y15c{bottom:30.280000pt;}
.y12f{bottom:42.213333pt;}
.y16{bottom:46.106667pt;}
.y2{bottom:50.240000pt;}
.y147{bottom:50.880000pt;}
.y1a{bottom:51.040000pt;}
.y119{bottom:59.906667pt;}
.y13e{bottom:65.986667pt;}
.y1{bottom:67.072000pt;}
.y19{bottom:68.992000pt;}
.y11a{bottom:76.706667pt;}
.y15{bottom:83.226667pt;}
.y11b{bottom:93.506667pt;}
.y94{bottom:100.672000pt;}
.y1ce{bottom:104.352000pt;}
.y10e{bottom:106.912000pt;}
.y117{bottom:108.032000pt;}
.y179{bottom:108.512000pt;}
.y59{bottom:109.632000pt;}
.y11c{bottom:110.266667pt;}
.y190{bottom:111.392000pt;}
.y13c{bottom:112.512000pt;}
.y162{bottom:121.472000pt;}
.y78{bottom:121.632000pt;}
.y3a{bottom:124.512000pt;}
.y93{bottom:125.952000pt;}
.yac{bottom:126.112000pt;}
.y11d{bottom:127.066667pt;}
.yda{bottom:127.072000pt;}
.y1ad{bottom:128.192000pt;}
.y10d{bottom:132.192000pt;}
.y116{bottom:133.466667pt;}
.y178{bottom:133.786667pt;}
.y1cd{bottom:134.426667pt;}
.ye9{bottom:136.506667pt;}
.y18f{bottom:136.666667pt;}
.y161{bottom:142.746667pt;}
.y11e{bottom:143.866667pt;}
.y58{bottom:145.626667pt;}
.y1ac{bottom:146.266667pt;}
.y77{bottom:146.906667pt;}
.yab{bottom:151.386667pt;}
.yd9{bottom:152.506667pt;}
.y39{bottom:153.306667pt;}
.y10c{bottom:157.466667pt;}
.y177{bottom:159.066667pt;}
.y11f{bottom:160.640000pt;}
.y13{bottom:160.826667pt;}
.y92{bottom:161.786667pt;}
.ye8{bottom:161.946667pt;}
.y13f{bottom:161.986667pt;}
.y140{bottom:162.973333pt;}
.y160{bottom:164.186667pt;}
.y1cc{bottom:164.346667pt;}
.y1ab{bottom:164.506667pt;}
.y115{bottom:166.746667pt;}
.y118{bottom:167.040000pt;}
.y76{bottom:172.186667pt;}
.yf5{bottom:176.666667pt;}
.y120{bottom:177.440000pt;}
.yd8{bottom:177.786667pt;}
.y57{bottom:181.626667pt;}
.y38{bottom:182.106667pt;}
.y18a{bottom:182.746667pt;}
.y14{bottom:182.880000pt;}
.y176{bottom:184.346667pt;}
.y15f{bottom:185.466667pt;}
.yaa{bottom:187.066667pt;}
.y91{bottom:187.226667pt;}
.y143{bottom:190.653333pt;}
.y12{bottom:190.746667pt;}
.y10b{bottom:193.306667pt;}
.y1aa{bottom:193.466667pt;}
.y121{bottom:194.213333pt;}
.y1cb{bottom:194.266667pt;}
.y75{bottom:197.466667pt;}
.ybd{bottom:197.786667pt;}
.yf4{bottom:201.946667pt;}
.yd7{bottom:203.066667pt;}
.y15e{bottom:206.906667pt;}
.y56{bottom:207.066667pt;}
.y189{bottom:208.186667pt;}
.y175{bottom:209.786667pt;}
.y122{bottom:211.013333pt;}
.y37{bottom:211.066667pt;}
.y1a9{bottom:211.546667pt;}
.y90{bottom:212.506667pt;}
.ye7{bottom:212.666667pt;}
.y10a{bottom:218.746667pt;}
.y11{bottom:220.826667pt;}
.y142{bottom:220.960000pt;}
.y74{bottom:222.746667pt;}
.ya9{bottom:223.066667pt;}
.ybc{bottom:223.226667pt;}
.y1ca{bottom:224.346667pt;}
.yf3{bottom:227.226667pt;}
.y123{bottom:227.813333pt;}
.y15d{bottom:228.186667pt;}
.yd6{bottom:228.346667pt;}
.y188{bottom:233.466667pt;}
.y174{bottom:235.066667pt;}
.y8f{bottom:237.786667pt;}
.ye6{bottom:237.946667pt;}
.y36{bottom:239.866667pt;}
.y1a8{bottom:240.506667pt;}
.y55{bottom:242.906667pt;}
.y109{bottom:244.026667pt;}
.y124{bottom:244.573333pt;}
.y141{bottom:247.040000pt;}
.ya8{bottom:248.506667pt;}
.y10{bottom:250.746667pt;}
.yf2{bottom:252.506667pt;}
.yd5{bottom:253.626667pt;}
.y1c9{bottom:254.266667pt;}
.y73{bottom:258.586667pt;}
.y125{bottom:261.373333pt;}
.y8e{bottom:263.066667pt;}
.ye5{bottom:263.226667pt;}
.y35{bottom:268.826667pt;}
.y187{bottom:269.146667pt;}
.y15b{bottom:270.266667pt;}
.y173{bottom:270.746667pt;}
.ya7{bottom:273.786667pt;}
.y1a7{bottom:276.826667pt;}
.yf1{bottom:277.786667pt;}
.y126{bottom:278.173333pt;}
.y54{bottom:278.746667pt;}
.yd4{bottom:279.066667pt;}
.y108{bottom:279.866667pt;}
.yf{bottom:280.826667pt;}
.y72{bottom:284.026667pt;}
.y1c8{bottom:284.346667pt;}
.y8d{bottom:288.506667pt;}
.y186{bottom:294.746667pt;}
.y127{bottom:294.946667pt;}
.y172{bottom:296.346667pt;}
.y34{bottom:297.626667pt;}
.y18e{bottom:299.106667pt;}
.ya6{bottom:299.266667pt;}
.y53{bottom:304.386667pt;}
.y107{bottom:305.346667pt;}
.y1a6{bottom:305.826667pt;}
.y71{bottom:309.346667pt;}
.y128{bottom:311.746667pt;}
.y15a{bottom:312.386667pt;}
.yf0{bottom:313.666667pt;}
.ye4{bottom:313.826667pt;}
.ye{bottom:314.306667pt;}
.y185{bottom:320.066667pt;}
.y171{bottom:321.666667pt;}
.y1a5{bottom:323.906667pt;}
.y8c{bottom:324.226667pt;}
.ya5{bottom:324.546667pt;}
.y33{bottom:326.626667pt;}
.y129{bottom:328.546667pt;}
.y52{bottom:329.666667pt;}
.y106{bottom:330.626667pt;}
.y70{bottom:334.626667pt;}
.ye3{bottom:339.106667pt;}
.y1c7{bottom:343.426667pt;}
.y12a{bottom:345.306667pt;}
.y184{bottom:345.346667pt;}
.y170{bottom:346.946667pt;}
.y8b{bottom:349.666667pt;}
.ya4{bottom:349.826667pt;}
.y1a4{bottom:353.026667pt;}
.y159{bottom:354.466667pt;}
.y32{bottom:355.426667pt;}
.y51{bottom:355.906667pt;}
.y6f{bottom:359.906667pt;}
.yd{bottom:361.346667pt;}
.y12b{bottom:362.106667pt;}
.ye2{bottom:364.386667pt;}
.y16f{bottom:372.226667pt;}
.yef{bottom:374.946667pt;}
.y8a{bottom:375.106667pt;}
.y12c{bottom:378.906667pt;}
.y183{bottom:381.186667pt;}
.y105{bottom:381.346667pt;}
.y1a3{bottom:381.826667pt;}
.y50{bottom:382.466667pt;}
.y31{bottom:384.226667pt;}
.ybb{bottom:385.666667pt;}
.ye1{bottom:389.666667pt;}
.y1c6{bottom:390.306667pt;}
.y12d{bottom:395.680000pt;}
.y6e{bottom:395.746667pt;}
.y158{bottom:396.546667pt;}
.y16e{bottom:397.506667pt;}
.y1a2{bottom:399.906667pt;}
.y89{bottom:400.386667pt;}
.yd3{bottom:405.826667pt;}
.y104{bottom:406.626667pt;}
.yc{bottom:406.786667pt;}
.y4f{bottom:407.746667pt;}
.y1c5{bottom:408.386667pt;}
.yba{bottom:411.106667pt;}
.y12e{bottom:412.480000pt;}
.y30{bottom:413.186667pt;}
.y6d{bottom:421.186667pt;}
.y16d{bottom:422.786667pt;}
.ye0{bottom:425.506667pt;}
.y88{bottom:425.666667pt;}
.yd2{bottom:431.426667pt;}
.y1a1{bottom:431.586667pt;}
.y103{bottom:431.906667pt;}
.y4e{bottom:433.026667pt;}
.yb9{bottom:436.386667pt;}
.y1c4{bottom:437.506667pt;}
.y157{bottom:438.626667pt;}
.y2f{bottom:441.986667pt;}
.y130{bottom:444.480000pt;}
.yb{bottom:446.466667pt;}
.y16c{bottom:448.066667pt;}
.y87{bottom:450.946667pt;}
.y1c3{bottom:455.586667pt;}
.yd1{bottom:456.706667pt;}
.y102{bottom:457.186667pt;}
.y4d{bottom:458.466667pt;}
.y156{bottom:459.906667pt;}
.y18d{bottom:461.506667pt;}
.yb8{bottom:461.666667pt;}
.y6c{bottom:471.746667pt;}
.y1c2{bottom:473.666667pt;}
.y1a0{bottom:475.586667pt;}
.y86{bottom:476.226667pt;}
.y2e{bottom:477.826667pt;}
.yd0{bottom:481.986667pt;}
.y101{bottom:482.466667pt;}
.ya{bottom:483.586667pt;}
.y16b{bottom:483.906667pt;}
.ya3{bottom:486.786667pt;}
.y18c{bottom:486.946667pt;}
.y13b{bottom:488.706667pt;}
.y4c{bottom:494.146667pt;}
.y6b{bottom:497.026667pt;}
.yb7{bottom:497.506667pt;}
.y19f{bottom:501.026667pt;}
.yee{bottom:501.506667pt;}
.y155{bottom:501.986667pt;}
.y1c1{bottom:502.786667pt;}
.y2d{bottom:503.266667pt;}
.ycf{bottom:507.266667pt;}
.y100{bottom:507.746667pt;}
.y16a{bottom:509.346667pt;}
.y85{bottom:512.066667pt;}
.ya2{bottom:512.226667pt;}
.y13a{bottom:514.306667pt;}
.y4b{bottom:519.586667pt;}
.y1c0{bottom:520.866667pt;}
.y9{bottom:521.506667pt;}
.y6a{bottom:522.466667pt;}
.yb6{bottom:522.946667pt;}
.y154{bottom:523.426667pt;}
.y19e{bottom:526.306667pt;}
.yed{bottom:526.946667pt;}
.y2c{bottom:528.546667pt;}
.yce{bottom:532.546667pt;}
.y182{bottom:533.026667pt;}
.y169{bottom:534.626667pt;}
.y84{bottom:537.533333pt;}
.y1bf{bottom:538.973333pt;}
.yff{bottom:539.453333pt;}
.y139{bottom:539.613333pt;}
.y153{bottom:544.733333pt;}
.y69{bottom:547.773333pt;}
.yb5{bottom:548.253333pt;}
.y19d{bottom:551.613333pt;}
.y2b{bottom:553.853333pt;}
.y4a{bottom:555.453333pt;}
.ycd{bottom:557.853333pt;}
.y181{bottom:558.333333pt;}
.y8{bottom:560.093333pt;}
.yec{bottom:562.653333pt;}
.y83{bottom:562.813333pt;}
.y138{bottom:564.893333pt;}
.y152{bottom:566.173333pt;}
.y168{bottom:568.093333pt;}
.y68{bottom:573.053333pt;}
.ydf{bottom:573.373333pt;}
.yb4{bottom:573.533333pt;}
.y2a{bottom:579.133333pt;}
.ycc{bottom:583.133333pt;}
.y180{bottom:583.613333pt;}
.yfe{bottom:584.093333pt;}
.y1be{bottom:586.173333pt;}
.y19c{bottom:587.453333pt;}
.ya1{bottom:588.093333pt;}
.y7{bottom:590.173333pt;}
.y49{bottom:591.453333pt;}
.y82{bottom:595.613333pt;}
.y67{bottom:598.333333pt;}
.yeb{bottom:598.653333pt;}
.yb3{bottom:598.813333pt;}
.y1bd{bottom:604.253333pt;}
.y29{bottom:604.573333pt;}
.y17f{bottom:609.053333pt;}
.yfd{bottom:609.533333pt;}
.y19b{bottom:612.893333pt;}
.ya0{bottom:613.533333pt;}
.y137{bottom:615.453333pt;}
.y48{bottom:616.893333pt;}
.ycb{bottom:618.973333pt;}
.y6{bottom:620.093333pt;}
.y66{bottom:623.613333pt;}
.y18b{bottom:623.933333pt;}
.yb2{bottom:624.093333pt;}
.y151{bottom:628.893333pt;}
.y28{bottom:629.853333pt;}
.y1bc{bottom:633.373333pt;}
.y17e{bottom:634.333333pt;}
.yfc{bottom:634.813333pt;}
.y19a{bottom:638.173333pt;}
.y9f{bottom:638.813333pt;}
.y136{bottom:640.733333pt;}
.y47{bottom:642.173333pt;}
.yca{bottom:644.413333pt;}
.y65{bottom:648.893333pt;}
.yb1{bottom:649.373333pt;}
.y5{bottom:650.013333pt;}
.y1bb{bottom:651.293333pt;}
.y27{bottom:655.133333pt;}
.y17d{bottom:659.613333pt;}
.yfb{bottom:660.093333pt;}
.y114{bottom:663.933333pt;}
.y9e{bottom:664.093333pt;}
.y135{bottom:666.013333pt;}
.y46{bottom:667.453333pt;}
.yc9{bottom:669.693333pt;}
.y150{bottom:670.973333pt;}
.y199{bottom:674.013333pt;}
.y64{bottom:674.173333pt;}
.yb0{bottom:674.653333pt;}
.y4{bottom:676.093333pt;}
.y26{bottom:680.413333pt;}
.y17c{bottom:684.893333pt;}
.yfa{bottom:685.373333pt;}
.y113{bottom:689.373333pt;}
.y134{bottom:691.293333pt;}
.y14f{bottom:692.413333pt;}
.y45{bottom:692.733333pt;}
.yc8{bottom:694.973333pt;}
.y1ba{bottom:698.493333pt;}
.y198{bottom:699.453333pt;}
.y9d{bottom:699.933333pt;}
.yaf{bottom:700.093333pt;}
.y25{bottom:705.693333pt;}
.y63{bottom:710.013333pt;}
.y17b{bottom:710.173333pt;}
.yf9{bottom:710.653333pt;}
.y14e{bottom:713.693333pt;}
.y112{bottom:714.653333pt;}
.y133{bottom:716.573333pt;}
.y44{bottom:718.173333pt;}
.yc7{bottom:720.253333pt;}
.y197{bottom:724.733333pt;}
.y9c{bottom:725.373333pt;}
.y24{bottom:730.973333pt;}
.y62{bottom:735.453333pt;}
.yf8{bottom:735.933333pt;}
.y111{bottom:739.933333pt;}
.yc6{bottom:745.693333pt;}
.y132{bottom:750.013333pt;}
.y196{bottom:750.173333pt;}
.y9b{bottom:750.653333pt;}
.y13d{bottom:750.720000pt;}
.y43{bottom:753.853333pt;}
.y14d{bottom:755.773333pt;}
.y23{bottom:756.253333pt;}
.y61{bottom:760.733333pt;}
.yf7{bottom:761.213333pt;}
.y1b9{bottom:763.773333pt;}
.y110{bottom:765.213333pt;}
.yc5{bottom:770.973333pt;}
.y195{bottom:775.493333pt;}
.y9a{bottom:775.973333pt;}
.y14c{bottom:777.253333pt;}
.y22{bottom:781.573333pt;}
.y1b8{bottom:781.893333pt;}
.y60{bottom:786.053333pt;}
.yae{bottom:786.533333pt;}
.yf6{bottom:786.693333pt;}
.y42{bottom:789.893333pt;}
.y194{bottom:800.773333pt;}
.y10f{bottom:801.093333pt;}
.y99{bottom:801.253333pt;}
.yc4{bottom:802.533333pt;}
.y21{bottom:806.853333pt;}
.y1b7{bottom:811.013333pt;}
.y5f{bottom:811.333333pt;}
.y81{bottom:811.813333pt;}
.yad{bottom:811.973333pt;}
.y41{bottom:815.333333pt;}
.y14a{bottom:819.173333pt;}
.y193{bottom:826.053333pt;}
.y98{bottom:826.533333pt;}
.y1b6{bottom:828.933333pt;}
.y20{bottom:832.293333pt;}
.y5e{bottom:836.773333pt;}
.y80{bottom:837.253333pt;}
.y149{bottom:840.613333pt;}
.yc3{bottom:847.173333pt;}
.y40{bottom:851.173333pt;}
.y97{bottom:851.813333pt;}
.y1f{bottom:857.573333pt;}
.y192{bottom:861.893333pt;}
.y5d{bottom:862.053333pt;}
.y7f{bottom:862.533333pt;}
.y1b5{bottom:865.413333pt;}
.y17a{bottom:868.293333pt;}
.yc2{bottom:872.613333pt;}
.y3f{bottom:876.613333pt;}
.y96{bottom:877.093333pt;}
.y1e{bottom:882.853333pt;}
.y5c{bottom:887.333333pt;}
.y7e{bottom:887.813333pt;}
.y167{bottom:891.013333pt;}
.y1b4{bottom:894.373333pt;}
.yc1{bottom:897.893333pt;}
.y3e{bottom:901.893333pt;}
.yde{bottom:902.373333pt;}
.y3{bottom:904.133333pt;}
.y1d{bottom:908.133333pt;}
.y1b3{bottom:912.453333pt;}
.y5b{bottom:912.613333pt;}
.y95{bottom:912.933333pt;}
.y7d{bottom:913.093333pt;}
.yc0{bottom:923.333333pt;}
.y144{bottom:924.773333pt;}
.ydd{bottom:927.813333pt;}
.y166{bottom:928.293333pt;}
.y1b2{bottom:930.693333pt;}
.y1c{bottom:933.413333pt;}
.y3d{bottom:937.733333pt;}
.y5a{bottom:937.893333pt;}
.yea{bottom:938.213333pt;}
.y7c{bottom:938.373333pt;}
.y165{bottom:943.973333pt;}
.y191{bottom:944.293333pt;}
.ybf{bottom:948.613333pt;}
.ydc{bottom:953.093333pt;}
.y1b1{bottom:959.653333pt;}
.y7b{bottom:963.653333pt;}
.y1b{bottom:965.093333pt;}
.y3c{bottom:973.733333pt;}
.ybe{bottom:973.893333pt;}
.y1b0{bottom:977.733333pt;}
.y163{bottom:986.053333pt;}
.ydb{bottom:988.773333pt;}
.y7a{bottom:988.933333pt;}
.y1af{bottom:995.973333pt;}
.y3b{bottom:1005.573333pt;}
.y1ae{bottom:1014.240000pt;}
.y79{bottom:1014.400000pt;}
.h11{height:20.640000pt;}
.h14{height:20.672000pt;}
.h12{height:20.800000pt;}
.h13{height:41.280000pt;}
.h16{height:41.312000pt;}
.he{height:41.440000pt;}
.h15{height:41.472000pt;}
.ha{height:47.742188pt;}
.hb{height:47.869500pt;}
.hf{height:50.062500pt;}
.h3{height:58.563750pt;}
.h2{height:61.410000pt;}
.h10{height:62.080000pt;}
.h8{height:66.750000pt;}
.hc{height:87.156562pt;}
.h5{height:88.777500pt;}
.h4{height:100.125000pt;}
.h7{height:103.360000pt;}
.h6{height:122.152500pt;}
.hd{height:277.440000pt;}
.h9{height:474.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:41.760000pt;}
.w6{width:43.680000pt;}
.w8{width:44.800000pt;}
.we{width:65.120000pt;}
.wd{width:65.152000pt;}
.wb{width:68.352000pt;}
.wa{width:75.040000pt;}
.w9{width:75.392000pt;}
.wc{width:80.960000pt;}
.w3{width:385.120000pt;}
.w5{width:458.880000pt;}
.w4{width:552.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:6.880000pt;}
.xb{left:9.626667pt;}
.x1b{left:20.573333pt;}
.x2d{left:60.026667pt;}
.x1c{left:65.346667pt;}
.x21{left:67.453333pt;}
.x23{left:81.466667pt;}
.x2c{left:88.506667pt;}
.x18{left:90.146667pt;}
.x1f{left:92.573333pt;}
.x19{left:100.773333pt;}
.x1d{left:105.253333pt;}
.x25{left:108.986667pt;}
.x2{left:113.471988pt;}
.x17{left:114.560000pt;}
.x1a{left:116.226667pt;}
.x24{left:118.053333pt;}
.x1e{left:119.226667pt;}
.x15{left:120.800000pt;}
.x20{left:121.786667pt;}
.xd{left:122.911988pt;}
.x16{left:123.813333pt;}
.x12{left:125.791988pt;}
.x22{left:130.426667pt;}
.xc{left:132.351988pt;}
.xf{left:137.466655pt;}
.xe{left:157.466655pt;}
.x2f{left:158.426667pt;}
.x26{left:160.293333pt;}
.x10{left:161.466655pt;}
.x29{left:167.360000pt;}
.x6{left:199.386655pt;}
.x30{left:200.826667pt;}
.x13{left:215.226655pt;}
.x2b{left:219.013333pt;}
.xa{left:222.400000pt;}
.x5{left:228.186655pt;}
.x2a{left:245.760000pt;}
.x7{left:253.346655pt;}
.x27{left:261.186667pt;}
.x8{left:304.226655pt;}
.x31{left:322.466667pt;}
.x4{left:396.866655pt;}
.x32{left:398.146667pt;}
.x33{left:467.133333pt;}
.x11{left:545.373322pt;}
.x34{left:548.893333pt;}
.x35{left:614.693333pt;}
.x3{left:618.373322pt;}
.x28{left:626.373322pt;}
.x36{left:637.413322pt;}
.x14{left:665.573322pt;}
.x1{left:672.293322pt;}
.x9{left:680.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; }
  