
    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_b2278f7e0c1f8e2e4a295d38.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920410;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_ee1f1275fc79da8eb3725a29.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_55ac2bc3b470d224730a8774.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_9cda4e1f96f7b771be1fe59d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e18f4c291bfdc79f527cddeb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:18.000000px;}
.ls3{letter-spacing:18.000009px;}
.ls1{letter-spacing:22.500000px;}
.ls4{letter-spacing:27.000000px;}
.ls5{letter-spacing:49.500000px;}
.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;}
}
.ws31{word-spacing:-40.500000px;}
.ws0{word-spacing:-20.999999px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-0.084000px;}
.ws28{word-spacing:-0.035323px;}
.ws49{word-spacing:-0.035217px;}
.ws41{word-spacing:-0.032647px;}
.ws22{word-spacing:-0.032592px;}
.ws48{word-spacing:-0.032560px;}
.ws19{word-spacing:-0.032521px;}
.ws43{word-spacing:-0.000035px;}
.ws55{word-spacing:-0.000033px;}
.ws14{word-spacing:-0.000023px;}
.ws12{word-spacing:-0.000012px;}
.ws4b{word-spacing:-0.000001px;}
.ws1{word-spacing:0.000000px;}
.ws13{word-spacing:0.000002px;}
.wsc{word-spacing:0.000010px;}
.ws2e{word-spacing:0.000012px;}
.ws21{word-spacing:0.000022px;}
.ws4d{word-spacing:0.000033px;}
.ws40{word-spacing:4.464908px;}
.ws23{word-spacing:4.467408px;}
.ws38{word-spacing:4.499966px;}
.ws20{word-spacing:4.499977px;}
.ws26{word-spacing:4.499986px;}
.ws15{word-spacing:4.499988px;}
.ws30{word-spacing:4.499998px;}
.ws6{word-spacing:4.499999px;}
.ws32{word-spacing:4.500001px;}
.ws35{word-spacing:4.500003px;}
.ws10{word-spacing:4.500010px;}
.ws2c{word-spacing:4.500012px;}
.ws1c{word-spacing:4.500022px;}
.ws36{word-spacing:4.500034px;}
.ws1b{word-spacing:8.964818px;}
.ws24{word-spacing:8.965120px;}
.ws33{word-spacing:8.999966px;}
.ws7{word-spacing:8.999977px;}
.ws5c{word-spacing:8.999987px;}
.wsb{word-spacing:8.999988px;}
.ws3f{word-spacing:8.999997px;}
.wsa{word-spacing:9.000000px;}
.ws3b{word-spacing:9.000001px;}
.ws5d{word-spacing:9.000002px;}
.ws27{word-spacing:9.000010px;}
.ws3d{word-spacing:9.000021px;}
.ws2b{word-spacing:9.000022px;}
.ws44{word-spacing:9.000033px;}
.ws42{word-spacing:13.464722px;}
.ws1a{word-spacing:13.464854px;}
.ws2a{word-spacing:13.469923px;}
.wse{word-spacing:13.499966px;}
.ws5f{word-spacing:13.499976px;}
.ws17{word-spacing:13.499977px;}
.wsf{word-spacing:13.499988px;}
.ws4c{word-spacing:13.499997px;}
.ws8{word-spacing:13.499999px;}
.ws5e{word-spacing:13.500010px;}
.ws37{word-spacing:13.500012px;}
.ws61{word-spacing:13.500020px;}
.ws2d{word-spacing:13.500022px;}
.ws62{word-spacing:13.500033px;}
.ws29{word-spacing:17.964854px;}
.ws1f{word-spacing:17.999966px;}
.ws16{word-spacing:17.999977px;}
.ws11{word-spacing:17.999988px;}
.ws4a{word-spacing:17.999997px;}
.ws9{word-spacing:17.999999px;}
.ws69{word-spacing:18.000000px;}
.ws2f{word-spacing:18.000003px;}
.ws25{word-spacing:18.000012px;}
.ws6a{word-spacing:18.000023px;}
.ws3e{word-spacing:22.499967px;}
.ws34{word-spacing:22.499977px;}
.ws5{word-spacing:22.499988px;}
.ws4e{word-spacing:22.499997px;}
.ws45{word-spacing:22.500000px;}
.ws60{word-spacing:22.500002px;}
.ws46{word-spacing:22.500011px;}
.ws3c{word-spacing:22.500022px;}
.ws51{word-spacing:26.999965px;}
.ws56{word-spacing:26.999977px;}
.ws39{word-spacing:26.999988px;}
.ws4{word-spacing:27.000000px;}
.ws1d{word-spacing:31.499977px;}
.ws67{word-spacing:31.499988px;}
.ws6b{word-spacing:31.499989px;}
.ws66{word-spacing:31.499998px;}
.ws47{word-spacing:31.499999px;}
.ws18{word-spacing:31.500011px;}
.ws50{word-spacing:31.500023px;}
.ws65{word-spacing:35.999977px;}
.ws1e{word-spacing:35.999988px;}
.ws68{word-spacing:35.999989px;}
.wsd{word-spacing:36.000000px;}
.ws59{word-spacing:40.499987px;}
.ws3a{word-spacing:40.499988px;}
.ws58{word-spacing:40.499999px;}
.ws5a{word-spacing:40.500001px;}
.ws52{word-spacing:40.500002px;}
.ws54{word-spacing:45.000000px;}
.ws53{word-spacing:45.000002px;}
.ws64{word-spacing:49.499977px;}
.ws57{word-spacing:53.999999px;}
.ws4f{word-spacing:58.500000px;}
.ws63{word-spacing:67.499977px;}
.ws5b{word-spacing:67.499988px;}
._17{margin-left:-22.500001px;}
._16{margin-left:-18.001100px;}
._5{margin-left:-8.393351px;}
._2{margin-left:-7.026163px;}
._1{margin-left:-5.343750px;}
._3{margin-left:-4.104069px;}
._4{margin-left:-3.101592px;}
._0{margin-left:-1.845703px;}
._6{width:2.258596px;}
._7{width:18.000024px;}
._19{width:19.410355px;}
._10{width:20.759164px;}
._c{width:22.500102px;}
._20{width:23.949772px;}
._14{width:25.384135px;}
._9{width:27.000001px;}
._12{width:29.834741px;}
._8{width:31.500002px;}
._11{width:34.407622px;}
._d{width:36.000002px;}
._15{width:38.904986px;}
._a{width:40.500003px;}
._18{width:45.000000px;}
._b{width:49.500021px;}
._f{width:54.000002px;}
._13{width:58.500002px;}
._1d{width:63.000002px;}
._1c{width:67.500001px;}
._1b{width:71.999987px;}
._1a{width:81.000003px;}
._1e{width:90.000000px;}
._1f{width:250.751326px;}
._e{width:895.570319px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs3{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y125{bottom:29.871096px;}
.y118{bottom:29.872558px;}
.y120{bottom:29.874021px;}
.y12c{bottom:29.874024px;}
.y122{bottom:29.874030px;}
.y3e{bottom:36.896484px;}
.y2{bottom:41.172363px;}
.y11b{bottom:53.674804px;}
.y124{bottom:53.674806px;}
.y130{bottom:53.674812px;}
.y11d{bottom:53.676269px;}
.y11f{bottom:53.676276px;}
.y12b{bottom:53.677734px;}
.y12f{bottom:77.477052px;}
.y11a{bottom:77.478515px;}
.y12a{bottom:77.481444px;}
.y12e{bottom:101.280761px;}
.y80{bottom:114.218257px;}
.y129{bottom:116.282229px;}
.y177{bottom:117.820312px;}
.y164{bottom:118.869142px;}
.y99{bottom:120.218257px;}
.y1c8{bottom:120.963863px;}
.yd3{bottom:121.869142px;}
.y6b{bottom:126.631342px;}
.y107{bottom:129.631342px;}
.y18a{bottom:132.823238px;}
.ya8{bottom:133.869142px;}
.yf3{bottom:134.916503px;}
.y128{bottom:140.085939px;}
.ybb{bottom:142.869142px;}
.y7f{bottom:145.265617px;}
.y176{bottom:148.869142px;}
.y163{bottom:149.917973px;}
.y98{bottom:151.265617px;}
.y1c7{bottom:152.009768px;}
.y109{bottom:152.569342px;}
.yd2{bottom:152.916503px;}
.y1b5{bottom:153.058598px;}
.y6a{bottom:157.678717px;}
.y106{bottom:160.678717px;}
.y189{bottom:163.869142px;}
.y127{bottom:163.889648px;}
.y14d{bottom:164.915033px;}
.ya7{bottom:164.916503px;}
.yf2{bottom:165.963863px;}
.y1a2{bottom:168.058598px;}
.y138{bottom:168.893557px;}
.yba{bottom:173.916503px;}
.yfd{bottom:176.312992px;}
.yb{bottom:178.536626px;}
.y140{bottom:179.916503px;}
.y175{bottom:179.917973px;}
.y171{bottom:180.416019px;}
.y162{bottom:180.963863px;}
.y97{bottom:182.312992px;}
.y1c6{bottom:183.058598px;}
.y108{bottom:183.616702px;}
.yd1{bottom:183.963863px;}
.y1b4{bottom:184.104488px;}
.y69{bottom:188.726077px;}
.y7e{bottom:191.312992px;}
.y105{bottom:191.726077px;}
.y188{bottom:194.917973px;}
.ya6{bottom:195.963863px;}
.yf1{bottom:197.011238px;}
.y1a1{bottom:199.104488px;}
.y137{bottom:199.939447px;}
.yb9{bottom:204.963863px;}
.y13f{bottom:210.963863px;}
.y161{bottom:212.012693px;}
.y116{bottom:212.207513px;}
.y96{bottom:213.360353px;}
.y1ad{bottom:214.107428px;}
.ye0{bottom:215.011238px;}
.y68{bottom:219.773438px;}
.y7d{bottom:222.360353px;}
.y104{bottom:222.773438px;}
.yfc{bottom:224.173828px;}
.y187{bottom:225.963863px;}
.y190{bottom:227.009768px;}
.ya5{bottom:227.011238px;}
.yf0{bottom:228.058598px;}
.y157{bottom:228.832028px;}
.y1c5{bottom:229.104488px;}
.y1a0{bottom:230.153318px;}
.y1b3{bottom:230.156242px;}
.y136{bottom:230.988278px;}
.yd0{bottom:233.011238px;}
.yb8{bottom:236.011238px;}
.y21{bottom:241.088377px;}
.y174{bottom:242.009768px;}
.y56{bottom:242.011238px;}
.y160{bottom:243.058598px;}
.y115{bottom:243.254887px;}
.y1ac{bottom:245.153318px;}
.ydf{bottom:246.058598px;}
.y67{bottom:250.820797px;}
.yfb{bottom:252.632818px;}
.y7c{bottom:253.407713px;}
.y103{bottom:253.820797px;}
.y186{bottom:257.012693px;}
.ya4{bottom:258.058598px;}
.y95{bottom:259.407713px;}
.y156{bottom:259.879388px;}
.y1c4{bottom:260.150393px;}
.y1b2{bottom:261.202148px;}
.y135{bottom:262.034183px;}
.ycf{bottom:264.058598px;}
.yb7{bottom:267.058598px;}
.y55{bottom:273.058598px;}
.y114{bottom:274.302248px;}
.y19f{bottom:276.199223px;}
.yde{bottom:277.105957px;}
.y20{bottom:279.891352px;}
.yfa{bottom:281.093263px;}
.y66{bottom:281.868157px;}
.y7b{bottom:284.455073px;}
.y102{bottom:284.868157px;}
.y14c{bottom:288.058598px;}
.y15f{bottom:289.104488px;}
.y94{bottom:290.455073px;}
.y155{bottom:290.926762px;}
.y1c3{bottom:291.199223px;}
.y134{bottom:293.083012px;}
.yce{bottom:295.105957px;}
.yb6{bottom:298.105957px;}
.y54{bottom:304.105957px;}
.y173{bottom:304.107428px;}
.y113{bottom:305.349607px;}
.y19e{bottom:307.248053px;}
.yef{bottom:308.153318px;}
.yf9{bottom:309.553708px;}
.y7a{bottom:315.502448px;}
.y1f{bottom:318.694342px;}
.y14b{bottom:319.107428px;}
.y15e{bottom:320.153318px;}
.y3d{bottom:320.898923px;}
.y93{bottom:321.502448px;}
.y154{bottom:321.974123px;}
.y1ab{bottom:322.248053px;}
.ya{bottom:323.424311px;}
.y133{bottom:324.128902px;}
.ycd{bottom:326.153318px;}
.y65{bottom:327.914798px;}
.yb5{bottom:329.153318px;}
.y101{bottom:332.727538px;}
.y53{bottom:335.153318px;}
.y112{bottom:336.396968px;}
.y1c2{bottom:337.248053px;}
.y1b1{bottom:338.296867px;}
.yee{bottom:339.200677px;}
.y79{bottom:346.549807px;}
.y14a{bottom:350.153318px;}
.y3c{bottom:350.597168px;}
.y15d{bottom:351.199223px;}
.y92{bottom:352.549807px;}
.y153{bottom:353.021483px;}
.y19d{bottom:353.296867px;}
.y132{bottom:355.177733px;}
.ycc{bottom:357.200677px;}
.y1e{bottom:357.497317px;}
.y64{bottom:357.775633px;}
.y9{bottom:359.646236px;}
.y100{bottom:361.187983px;}
.y18f{bottom:365.153318px;}
.y172{bottom:366.199223px;}
.y52{bottom:366.200677px;}
.y111{bottom:367.444342px;}
.y1c1{bottom:368.296867px;}
.yed{bottom:370.248053px;}
.y3b{bottom:371.295413px;}
.ydd{bottom:375.200677px;}
.y78{bottom:377.597168px;}
.yb4{bottom:378.200677px;}
.y149{bottom:381.202148px;}
.y15c{bottom:382.248053px;}
.y91{bottom:383.597168px;}
.y19c{bottom:384.342773px;}
.y131{bottom:386.223637px;}
.y63{bottom:386.235358px;}
.ycb{bottom:388.248053px;}
.yff{bottom:389.648443px;}
.y3a{bottom:391.993658px;}
.y18e{bottom:396.199223px;}
.y1d{bottom:396.300293px;}
.y51{bottom:397.248053px;}
.y110{bottom:398.491702px;}
.y152{bottom:398.507814px;}
.y1aa{bottom:399.342773px;}
.y1c0{bottom:399.345698px;}
.yec{bottom:401.295413px;}
.ydc{bottom:406.248052px;}
.y77{bottom:408.644527px;}
.yb3{bottom:409.248052px;}
.y148{bottom:412.248052px;}
.y39{bottom:412.691888px;}
.y17e{bottom:413.293942px;}
.y90{bottom:414.644527px;}
.y62{bottom:414.695803px;}
.y19b{bottom:415.391602px;}
.yca{bottom:419.295412px;}
.y12d{bottom:425.975095px;}
.y18d{bottom:427.248052px;}
.y50{bottom:428.295412px;}
.y15b{bottom:428.296867px;}
.y10f{bottom:429.539063px;}
.y1a9{bottom:430.388678px;}
.yeb{bottom:432.342773px;}
.y38{bottom:433.390133px;}
.y1c{bottom:435.103268px;}
.ydb{bottom:437.295412px;}
.yb2{bottom:440.295412px;}
.y147{bottom:443.296867px;}
.y17d{bottom:444.342773px;}
.y1bf{bottom:445.388678px;}
.y8f{bottom:445.691888px;}
.yc9{bottom:450.342773px;}
.y76{bottom:453.504643px;}
.y37{bottom:454.088377px;}
.y185{bottom:458.293942px;}
.y170{bottom:458.320312px;}
.y4f{bottom:459.342773px;}
.y19a{bottom:461.437492px;}
.yea{bottom:463.390133px;}
.yda{bottom:468.342773px;}
.yb1{bottom:471.342773px;}
.y146{bottom:474.342773px;}
.y36{bottom:474.786623px;}
.y1a8{bottom:476.437492px;}
.y8e{bottom:476.739262px;}
.y1b{bottom:476.906242px;}
.y75{bottom:481.965088px;}
.y184{bottom:489.342773px;}
.y16f{bottom:489.366217px;}
.y15a{bottom:490.388678px;}
.y4e{bottom:490.390133px;}
.y199{bottom:492.483398px;}
.ye9{bottom:494.437492px;}
.yc8{bottom:499.390133px;}
.yb0{bottom:502.390133px;}
.y8{bottom:504.533936px;}
.ya3{bottom:505.390133px;}
.y145{bottom:505.391602px;}
.y1a7{bottom:507.486322px;}
.y74{bottom:510.424798px;}
.y35{bottom:514.833982px;}
.y10e{bottom:517.390133px;}
.y1a{bottom:518.709233px;}
.y183{bottom:520.388678px;}
.y16e{bottom:520.412107px;}
.y4d{bottom:521.437492px;}
.y1be{bottom:522.483398px;}
.y8d{bottom:522.786623px;}
.ye8{bottom:525.484868px;}
.yc7{bottom:530.437492px;}
.yaf{bottom:533.437492px;}
.y144{bottom:536.437492px;}
.y198{bottom:538.532228px;}
.y73{bottom:538.885258px;}
.y7{bottom:540.755861px;}
.y34{bottom:544.532228px;}
.yf8{bottom:548.437492px;}
.ya2{bottom:551.437492px;}
.y16d{bottom:551.460938px;}
.y61{bottom:552.484868px;}
.y17c{bottom:552.486322px;}
.y1bd{bottom:553.529303px;}
.y1a6{bottom:553.532228px;}
.ye7{bottom:556.532228px;}
.y19{bottom:560.512207px;}
.yc6{bottom:561.484868px;}
.yae{bottom:564.484868px;}
.y33{bottom:565.230473px;}
.y4c{bottom:567.484868px;}
.y143{bottom:567.486322px;}
.y126{bottom:568.060543px;}
.y197{bottom:569.578118px;}
.y8c{bottom:571.833982px;}
.yf7{bottom:579.484868px;}
.y182{bottom:582.483398px;}
.ya1{bottom:582.484868px;}
.y16c{bottom:582.509768px;}
.y60{bottom:583.532228px;}
.y18{bottom:584.315182px;}
.y1bc{bottom:584.578118px;}
.y1a5{bottom:584.581058px;}
.y32{bottom:585.928717px;}
.yc5{bottom:592.532228px;}
.yad{bottom:595.532228px;}
.y4b{bottom:598.532228px;}
.y196{bottom:600.626948px;}
.y8b{bottom:602.881342px;}
.ye6{bottom:605.579588px;}
.y31{bottom:606.626948px;}
.yf6{bottom:610.532228px;}
.ya0{bottom:613.532228px;}
.y16b{bottom:613.555658px;}
.y17b{bottom:614.578118px;}
.y5f{bottom:614.579588px;}
.y1b0{bottom:615.626948px;}
.y17{bottom:623.118158px;}
.yc4{bottom:623.579588px;}
.yac{bottom:626.579588px;}
.y30{bottom:627.325192px;}
.y4a{bottom:629.579588px;}
.y142{bottom:629.581058px;}
.y1a4{bottom:630.626948px;}
.y8a{bottom:633.928717px;}
.ye5{bottom:636.626948px;}
.yf5{bottom:641.579588px;}
.y159{bottom:644.578118px;}
.y9f{bottom:644.579588px;}
.y16a{bottom:644.601562px;}
.y5e{bottom:645.626948px;}
.y195{bottom:646.675777px;}
.y2f{bottom:648.023438px;}
.y6{bottom:649.421636px;}
.y123{bottom:654.471676px;}
.yc3{bottom:654.626948px;}
.yab{bottom:657.626948px;}
.y49{bottom:660.626948px;}
.y1a3{bottom:661.672852px;}
.y1bb{bottom:661.675777px;}
.y16{bottom:661.921147px;}
.y89{bottom:664.976077px;}
.ye4{bottom:667.674322px;}
.yf4{bottom:672.626948px;}
.y9e{bottom:675.626948px;}
.y5d{bottom:676.674322px;}
.y194{bottom:677.721683px;}
.yc2{bottom:685.674322px;}
.y2e{bottom:688.070798px;}
.yaa{bottom:688.674322px;}
.y10d{bottom:690.626948px;}
.y169{bottom:690.650392px;}
.y48{bottom:691.674322px;}
.y13e{bottom:691.675777px;}
.y1af{bottom:692.721683px;}
.y1ba{bottom:692.724608px;}
.y88{bottom:696.023438px;}
.ye3{bottom:698.721683px;}
.y15{bottom:700.724122px;}
.yd9{bottom:703.674322px;}
.y158{bottom:706.672852px;}
.y9d{bottom:706.674322px;}
.y5c{bottom:707.721683px;}
.y193{bottom:708.770512px;}
.yc1{bottom:716.721683px;}
.ya9{bottom:719.721683px;}
.y10c{bottom:721.674322px;}
.y18c{bottom:721.675777px;}
.y168{bottom:721.696283px;}
.y5{bottom:721.865471px;}
.y47{bottom:722.721683px;}
.y1ae{bottom:723.767572px;}
.y2d{bottom:723.769043px;}
.y87{bottom:727.070798px;}
.ye2{bottom:729.769043px;}
.yd8{bottom:734.721683px;}
.y9c{bottom:737.721683px;}
.y1b9{bottom:738.767573px;}
.y72{bottom:738.769043px;}
.y14{bottom:742.527098px;}
.y2c{bottom:744.467288px;}
.yc0{bottom:747.769043px;}
.y10b{bottom:752.721683px;}
.y167{bottom:752.742188px;}
.y46{bottom:753.769043px;}
.y141{bottom:753.770512px;}
.y192{bottom:754.816402px;}
.y4{bottom:758.087396px;}
.y86{bottom:758.118158px;}
.y2b{bottom:765.165533px;}
.yd7{bottom:765.769043px;}
.y13d{bottom:768.767573px;}
.y9b{bottom:768.769043px;}
.y71{bottom:769.816402px;}
.y11e{bottom:772.754882px;}
.ye1{bottom:778.816402px;}
.y18b{bottom:783.767573px;}
.y10a{bottom:783.769043px;}
.y166{bottom:783.791018px;}
.y13{bottom:784.330073px;}
.y45{bottom:784.816402px;}
.y2a{bottom:785.863763px;}
.y85{bottom:789.165532px;}
.y121{bottom:796.557127px;}
.ybf{bottom:796.816402px;}
.y9a{bottom:799.816402px;}
.y70{bottom:800.863762px;}
.y191{bottom:800.865232px;}
.y29{bottom:806.562007px;}
.yfe{bottom:814.816402px;}
.y5b{bottom:815.863762px;}
.y17a{bottom:815.865232px;}
.y12{bottom:823.133063px;}
.y28{bottom:827.260252px;}
.yd6{bottom:827.863762px;}
.y165{bottom:829.277349px;}
.y13c{bottom:830.862308px;}
.y44{bottom:830.863762px;}
.y151{bottom:831.911137px;}
.y84{bottom:837.026368px;}
.ybe{bottom:845.863762px;}
.y181{bottom:845.865232px;}
.y5a{bottom:846.911137px;}
.y27{bottom:847.958498px;}
.yd5{bottom:858.911137px;}
.y43{bottom:861.911137px;}
.y11{bottom:861.936037px;}
.y150{bottom:862.958498px;}
.y83{bottom:865.486078px;}
.y26{bottom:868.656742px;}
.ybd{bottom:876.911137px;}
.y1b8{bottom:877.957027px;}
.y59{bottom:877.958498px;}
.y179{bottom:877.959967px;}
.yd4{bottom:889.958498px;}
.y119{bottom:891.039551px;}
.y13b{bottom:892.957027px;}
.y42{bottom:892.958498px;}
.y82{bottom:893.945803px;}
.y14f{bottom:894.005858px;}
.y10{bottom:900.739012px;}
.y180{bottom:907.957027px;}
.ybc{bottom:907.958498px;}
.y58{bottom:909.005858px;}
.y11c{bottom:914.841796px;}
.y81{bottom:922.406250px;}
.y41{bottom:924.005859px;}
.y6f{bottom:939.005859px;}
.yf{bottom:939.541992px;}
.y25{bottom:940.053222px;}
.y14e{bottom:940.054688px;}
.y13a{bottom:955.051758px;}
.y40{bottom:955.053222px;}
.y1b7{bottom:955.054688px;}
.y6e{bottom:970.053222px;}
.y17f{bottom:970.054688px;}
.y57{bottom:971.100586px;}
.y24{bottom:975.751465px;}
.ye{bottom:978.344970px;}
.y3f{bottom:986.100586px;}
.y1b6{bottom:986.103516px;}
.y3{bottom:991.124999px;}
.y6d{bottom:1001.100586px;}
.y117{bottom:1009.322754px;}
.y139{bottom:1017.146484px;}
.yd{bottom:1017.147949px;}
.y23{bottom:1024.172607px;}
.y178{bottom:1032.146484px;}
.y6c{bottom:1032.147950px;}
.y22{bottom:1060.394531px;}
.yc{bottom:1063.195312px;}
.y1{bottom:1080.000000px;}
.he{height:37.494141px;}
.h2{height:38.021484px;}
.h6{height:49.992188px;}
.h7{height:50.695313px;}
.h8{height:59.167970px;}
.h3{height:63.949219px;}
.h5{height:64.546875px;}
.h9{height:69.552246px;}
.h4{height:74.607419px;}
.hb{height:93.355958px;}
.h1{height:108.000000px;}
.ha{height:117.158204px;}
.hd{height:140.960449px;}
.hc{height:203.569336px;}
.h0{height:1188.000000px;}
.w1{width:349.875000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:6.750000px;}
.x1{left:108.000000px;}
.x14{left:109.125000px;}
.x15{left:123.038087px;}
.x17{left:125.854981px;}
.x1a{left:150.487427px;}
.x3{left:158.743575px;}
.xa{left:162.000000px;}
.x6{left:166.783714px;}
.x12{left:169.875000px;}
.x13{left:171.000000px;}
.x19{left:198.040650px;}
.xb{left:216.000000px;}
.x10{left:243.197754px;}
.x7{left:246.909450px;}
.xc{left:249.266207px;}
.xf{left:260.894531px;}
.x11{left:273.871582px;}
.x5{left:384.080659px;}
.x4{left:387.283208px;}
.x9{left:426.493654px;}
.x16{left:460.125000px;}
.x8{left:527.816228px;}
.x2{left:607.500000px;}
.xd{left:621.588870px;}
.xe{left:701.622068px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:16.000000pt;}
.ls3{letter-spacing:16.000008pt;}
.ls1{letter-spacing:20.000000pt;}
.ls4{letter-spacing:24.000000pt;}
.ls5{letter-spacing:44.000000pt;}
.ws31{word-spacing:-36.000000pt;}
.ws0{word-spacing:-18.666666pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-0.074667pt;}
.ws28{word-spacing:-0.031399pt;}
.ws49{word-spacing:-0.031304pt;}
.ws41{word-spacing:-0.029019pt;}
.ws22{word-spacing:-0.028970pt;}
.ws48{word-spacing:-0.028942pt;}
.ws19{word-spacing:-0.028908pt;}
.ws43{word-spacing:-0.000031pt;}
.ws55{word-spacing:-0.000030pt;}
.ws14{word-spacing:-0.000020pt;}
.ws12{word-spacing:-0.000010pt;}
.ws4b{word-spacing:0.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws13{word-spacing:0.000002pt;}
.wsc{word-spacing:0.000009pt;}
.ws2e{word-spacing:0.000010pt;}
.ws21{word-spacing:0.000020pt;}
.ws4d{word-spacing:0.000030pt;}
.ws40{word-spacing:3.968807pt;}
.ws23{word-spacing:3.971030pt;}
.ws38{word-spacing:3.999970pt;}
.ws20{word-spacing:3.999980pt;}
.ws26{word-spacing:3.999988pt;}
.ws15{word-spacing:3.999990pt;}
.ws30{word-spacing:3.999998pt;}
.ws6{word-spacing:4.000000pt;}
.ws32{word-spacing:4.000001pt;}
.ws35{word-spacing:4.000002pt;}
.ws10{word-spacing:4.000009pt;}
.ws2c{word-spacing:4.000010pt;}
.ws1c{word-spacing:4.000020pt;}
.ws36{word-spacing:4.000030pt;}
.ws1b{word-spacing:7.968727pt;}
.ws24{word-spacing:7.968996pt;}
.ws33{word-spacing:7.999970pt;}
.ws7{word-spacing:7.999980pt;}
.ws5c{word-spacing:7.999988pt;}
.wsb{word-spacing:7.999990pt;}
.ws3f{word-spacing:7.999998pt;}
.wsa{word-spacing:8.000000pt;}
.ws3b{word-spacing:8.000001pt;}
.ws5d{word-spacing:8.000002pt;}
.ws27{word-spacing:8.000009pt;}
.ws3d{word-spacing:8.000019pt;}
.ws2b{word-spacing:8.000020pt;}
.ws44{word-spacing:8.000030pt;}
.ws42{word-spacing:11.968642pt;}
.ws1a{word-spacing:11.968759pt;}
.ws2a{word-spacing:11.973265pt;}
.wse{word-spacing:11.999970pt;}
.ws5f{word-spacing:11.999979pt;}
.ws17{word-spacing:11.999980pt;}
.wsf{word-spacing:11.999989pt;}
.ws4c{word-spacing:11.999998pt;}
.ws8{word-spacing:12.000000pt;}
.ws5e{word-spacing:12.000009pt;}
.ws37{word-spacing:12.000010pt;}
.ws61{word-spacing:12.000018pt;}
.ws2d{word-spacing:12.000020pt;}
.ws62{word-spacing:12.000030pt;}
.ws29{word-spacing:15.968759pt;}
.ws1f{word-spacing:15.999970pt;}
.ws16{word-spacing:15.999980pt;}
.ws11{word-spacing:15.999990pt;}
.ws4a{word-spacing:15.999998pt;}
.ws9{word-spacing:15.999999pt;}
.ws69{word-spacing:16.000000pt;}
.ws2f{word-spacing:16.000002pt;}
.ws25{word-spacing:16.000010pt;}
.ws6a{word-spacing:16.000020pt;}
.ws3e{word-spacing:19.999970pt;}
.ws34{word-spacing:19.999980pt;}
.ws5{word-spacing:19.999990pt;}
.ws4e{word-spacing:19.999998pt;}
.ws45{word-spacing:20.000000pt;}
.ws60{word-spacing:20.000002pt;}
.ws46{word-spacing:20.000010pt;}
.ws3c{word-spacing:20.000020pt;}
.ws51{word-spacing:23.999969pt;}
.ws56{word-spacing:23.999980pt;}
.ws39{word-spacing:23.999990pt;}
.ws4{word-spacing:24.000000pt;}
.ws1d{word-spacing:27.999979pt;}
.ws67{word-spacing:27.999989pt;}
.ws6b{word-spacing:27.999990pt;}
.ws66{word-spacing:27.999998pt;}
.ws47{word-spacing:28.000000pt;}
.ws18{word-spacing:28.000010pt;}
.ws50{word-spacing:28.000020pt;}
.ws65{word-spacing:31.999980pt;}
.ws1e{word-spacing:31.999989pt;}
.ws68{word-spacing:31.999990pt;}
.wsd{word-spacing:32.000000pt;}
.ws59{word-spacing:35.999988pt;}
.ws3a{word-spacing:35.999989pt;}
.ws58{word-spacing:36.000000pt;}
.ws5a{word-spacing:36.000000pt;}
.ws52{word-spacing:36.000002pt;}
.ws54{word-spacing:40.000000pt;}
.ws53{word-spacing:40.000002pt;}
.ws64{word-spacing:43.999980pt;}
.ws57{word-spacing:47.999999pt;}
.ws4f{word-spacing:52.000000pt;}
.ws63{word-spacing:59.999980pt;}
.ws5b{word-spacing:59.999990pt;}
._17{margin-left:-20.000001pt;}
._16{margin-left:-16.000978pt;}
._5{margin-left:-7.460757pt;}
._2{margin-left:-6.245478pt;}
._1{margin-left:-4.750000pt;}
._3{margin-left:-3.648061pt;}
._4{margin-left:-2.756970pt;}
._0{margin-left:-1.640625pt;}
._6{width:2.007641pt;}
._7{width:16.000021pt;}
._19{width:17.253649pt;}
._10{width:18.452590pt;}
._c{width:20.000090pt;}
._20{width:21.288686pt;}
._14{width:22.563675pt;}
._9{width:24.000001pt;}
._12{width:26.519769pt;}
._8{width:28.000002pt;}
._11{width:30.584553pt;}
._d{width:32.000002pt;}
._15{width:34.582210pt;}
._a{width:36.000002pt;}
._18{width:40.000000pt;}
._b{width:44.000019pt;}
._f{width:48.000002pt;}
._13{width:52.000002pt;}
._1d{width:56.000002pt;}
._1c{width:60.000001pt;}
._1b{width:63.999988pt;}
._1a{width:72.000002pt;}
._1e{width:80.000000pt;}
._1f{width:222.890067pt;}
._e{width:796.062506pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y125{bottom:26.552085pt;}
.y118{bottom:26.553385pt;}
.y120{bottom:26.554685pt;}
.y12c{bottom:26.554688pt;}
.y122{bottom:26.554693pt;}
.y3e{bottom:32.796875pt;}
.y2{bottom:36.597656pt;}
.y11b{bottom:47.710937pt;}
.y124{bottom:47.710939pt;}
.y130{bottom:47.710944pt;}
.y11d{bottom:47.712239pt;}
.y11f{bottom:47.712245pt;}
.y12b{bottom:47.713541pt;}
.y12f{bottom:68.868491pt;}
.y11a{bottom:68.869791pt;}
.y12a{bottom:68.872395pt;}
.y12e{bottom:90.027343pt;}
.y80{bottom:101.527340pt;}
.y129{bottom:103.361981pt;}
.y177{bottom:104.729167pt;}
.y164{bottom:105.661460pt;}
.y99{bottom:106.860673pt;}
.y1c8{bottom:107.523433pt;}
.yd3{bottom:108.328127pt;}
.y6b{bottom:112.561193pt;}
.y107{bottom:115.227860pt;}
.y18a{bottom:118.065100pt;}
.ya8{bottom:118.994793pt;}
.yf3{bottom:119.925780pt;}
.y128{bottom:124.520835pt;}
.ybb{bottom:126.994793pt;}
.y7f{bottom:129.124993pt;}
.y176{bottom:132.328127pt;}
.y163{bottom:133.260420pt;}
.y98{bottom:134.458327pt;}
.y1c7{bottom:135.119793pt;}
.y109{bottom:135.617193pt;}
.yd2{bottom:135.925780pt;}
.y1b5{bottom:136.052087pt;}
.y6a{bottom:140.158860pt;}
.y106{bottom:142.825527pt;}
.y189{bottom:145.661460pt;}
.y127{bottom:145.679687pt;}
.y14d{bottom:146.591140pt;}
.ya7{bottom:146.592447pt;}
.yf2{bottom:147.523433pt;}
.y1a2{bottom:149.385420pt;}
.y138{bottom:150.127607pt;}
.yba{bottom:154.592447pt;}
.yfd{bottom:156.722660pt;}
.yb{bottom:158.699223pt;}
.y140{bottom:159.925780pt;}
.y175{bottom:159.927087pt;}
.y171{bottom:160.369795pt;}
.y162{bottom:160.856767pt;}
.y97{bottom:162.055993pt;}
.y1c6{bottom:162.718753pt;}
.y108{bottom:163.214847pt;}
.yd1{bottom:163.523433pt;}
.y1b4{bottom:163.648433pt;}
.y69{bottom:167.756513pt;}
.y7e{bottom:170.055993pt;}
.y105{bottom:170.423180pt;}
.y188{bottom:173.260420pt;}
.ya6{bottom:174.190100pt;}
.yf1{bottom:175.121100pt;}
.y1a1{bottom:176.981767pt;}
.y137{bottom:177.723953pt;}
.yb9{bottom:182.190100pt;}
.y13f{bottom:187.523433pt;}
.y161{bottom:188.455727pt;}
.y116{bottom:188.628900pt;}
.y96{bottom:189.653647pt;}
.y1ad{bottom:190.317713pt;}
.ye0{bottom:191.121100pt;}
.y68{bottom:195.354167pt;}
.y7d{bottom:197.653647pt;}
.y104{bottom:198.020833pt;}
.yfc{bottom:199.265625pt;}
.y187{bottom:200.856767pt;}
.y190{bottom:201.786460pt;}
.ya5{bottom:201.787767pt;}
.yf0{bottom:202.718753pt;}
.y157{bottom:203.406247pt;}
.y1c5{bottom:203.648433pt;}
.y1a0{bottom:204.580727pt;}
.y1b3{bottom:204.583327pt;}
.y136{bottom:205.322913pt;}
.yd0{bottom:207.121100pt;}
.yb8{bottom:209.787767pt;}
.y21{bottom:214.300780pt;}
.y174{bottom:215.119793pt;}
.y56{bottom:215.121100pt;}
.y160{bottom:216.052087pt;}
.y115{bottom:216.226567pt;}
.y1ac{bottom:217.914060pt;}
.ydf{bottom:218.718753pt;}
.y67{bottom:222.951820pt;}
.yfb{bottom:224.562505pt;}
.y7c{bottom:225.251300pt;}
.y103{bottom:225.618487pt;}
.y186{bottom:228.455727pt;}
.ya4{bottom:229.385420pt;}
.y95{bottom:230.584633pt;}
.y156{bottom:231.003900pt;}
.y1c4{bottom:231.244793pt;}
.y1b2{bottom:232.179687pt;}
.y135{bottom:232.919273pt;}
.ycf{bottom:234.718753pt;}
.yb7{bottom:237.385420pt;}
.y55{bottom:242.718753pt;}
.y114{bottom:243.824220pt;}
.y19f{bottom:245.510420pt;}
.yde{bottom:246.316407pt;}
.y20{bottom:248.792313pt;}
.yfa{bottom:249.860679pt;}
.y66{bottom:250.549473pt;}
.y7b{bottom:252.848953pt;}
.y102{bottom:253.216140pt;}
.y14c{bottom:256.052087pt;}
.y15f{bottom:256.981767pt;}
.y94{bottom:258.182287pt;}
.y155{bottom:258.601567pt;}
.y1c3{bottom:258.843753pt;}
.y134{bottom:260.518233pt;}
.yce{bottom:262.316407pt;}
.yb6{bottom:264.983073pt;}
.y54{bottom:270.316407pt;}
.y173{bottom:270.317713pt;}
.y113{bottom:271.421873pt;}
.y19e{bottom:273.109380pt;}
.yef{bottom:273.914060pt;}
.yf9{bottom:275.158852pt;}
.y7a{bottom:280.446620pt;}
.y1f{bottom:283.283859pt;}
.y14b{bottom:283.651047pt;}
.y15e{bottom:284.580727pt;}
.y3d{bottom:285.243487pt;}
.y93{bottom:285.779953pt;}
.y154{bottom:286.199220pt;}
.y1ab{bottom:286.442713pt;}
.ya{bottom:287.488276pt;}
.y133{bottom:288.114580pt;}
.ycd{bottom:289.914060pt;}
.y65{bottom:291.479820pt;}
.yb5{bottom:292.580727pt;}
.y101{bottom:295.757812pt;}
.y53{bottom:297.914060pt;}
.y112{bottom:299.019527pt;}
.y1c2{bottom:299.776047pt;}
.y1b1{bottom:300.708327pt;}
.yee{bottom:301.511713pt;}
.y79{bottom:308.044273pt;}
.y14a{bottom:311.247393pt;}
.y3c{bottom:311.641927pt;}
.y15d{bottom:312.177087pt;}
.y92{bottom:313.377607pt;}
.y153{bottom:313.796873pt;}
.y19d{bottom:314.041660pt;}
.y132{bottom:315.713540pt;}
.ycc{bottom:317.511713pt;}
.y1e{bottom:317.775393pt;}
.y64{bottom:318.022785pt;}
.y9{bottom:319.685543pt;}
.y100{bottom:321.055985pt;}
.y18f{bottom:324.580727pt;}
.y172{bottom:325.510420pt;}
.y52{bottom:325.511713pt;}
.y111{bottom:326.617193pt;}
.y1c1{bottom:327.374993pt;}
.yed{bottom:329.109380pt;}
.y3b{bottom:330.040367pt;}
.ydd{bottom:333.511713pt;}
.y78{bottom:335.641927pt;}
.yb4{bottom:336.178380pt;}
.y149{bottom:338.846353pt;}
.y15c{bottom:339.776047pt;}
.y91{bottom:340.975260pt;}
.y19c{bottom:341.638020pt;}
.y131{bottom:343.309900pt;}
.y63{bottom:343.320319pt;}
.ycb{bottom:345.109380pt;}
.yff{bottom:346.354172pt;}
.y3a{bottom:348.438807pt;}
.y18e{bottom:352.177087pt;}
.y1d{bottom:352.266927pt;}
.y51{bottom:353.109380pt;}
.y110{bottom:354.214847pt;}
.y152{bottom:354.229168pt;}
.y1aa{bottom:354.971353pt;}
.y1c0{bottom:354.973953pt;}
.yec{bottom:356.707033pt;}
.ydc{bottom:361.109380pt;}
.y77{bottom:363.239580pt;}
.yb3{bottom:363.776047pt;}
.y148{bottom:366.442713pt;}
.y39{bottom:366.837233pt;}
.y17e{bottom:367.372393pt;}
.y90{bottom:368.572913pt;}
.y62{bottom:368.618492pt;}
.y19b{bottom:369.236980pt;}
.yca{bottom:372.707033pt;}
.y12d{bottom:378.644529pt;}
.y18d{bottom:379.776047pt;}
.y50{bottom:380.707033pt;}
.y15b{bottom:380.708327pt;}
.y10f{bottom:381.812500pt;}
.y1a9{bottom:382.567713pt;}
.yeb{bottom:384.304687pt;}
.y38{bottom:385.235673pt;}
.y1c{bottom:386.758460pt;}
.ydb{bottom:388.707033pt;}
.yb2{bottom:391.373700pt;}
.y147{bottom:394.041660pt;}
.y17d{bottom:394.971353pt;}
.y1bf{bottom:395.901047pt;}
.y8f{bottom:396.170567pt;}
.yc9{bottom:400.304687pt;}
.y76{bottom:403.115239pt;}
.y37{bottom:403.634113pt;}
.y185{bottom:407.372393pt;}
.y170{bottom:407.395833pt;}
.y4f{bottom:408.304687pt;}
.y19a{bottom:410.166660pt;}
.yea{bottom:411.902340pt;}
.yda{bottom:416.304687pt;}
.yb1{bottom:418.971353pt;}
.y146{bottom:421.638020pt;}
.y36{bottom:422.032553pt;}
.y1a8{bottom:423.499993pt;}
.y8e{bottom:423.768233pt;}
.y1b{bottom:423.916660pt;}
.y75{bottom:428.413412pt;}
.y184{bottom:434.971353pt;}
.y16f{bottom:434.992193pt;}
.y15a{bottom:435.901047pt;}
.y4e{bottom:435.902340pt;}
.y199{bottom:437.763020pt;}
.ye9{bottom:439.499993pt;}
.yc8{bottom:443.902340pt;}
.yb0{bottom:446.569007pt;}
.y8{bottom:448.474609pt;}
.ya3{bottom:449.235673pt;}
.y145{bottom:449.236980pt;}
.y1a7{bottom:451.098953pt;}
.y74{bottom:453.710932pt;}
.y35{bottom:457.630207pt;}
.y10e{bottom:459.902340pt;}
.y1a{bottom:461.074874pt;}
.y183{bottom:462.567713pt;}
.y16e{bottom:462.588540pt;}
.y4d{bottom:463.499993pt;}
.y1be{bottom:464.429687pt;}
.y8d{bottom:464.699220pt;}
.ye8{bottom:467.097660pt;}
.yc7{bottom:471.499993pt;}
.yaf{bottom:474.166660pt;}
.y144{bottom:476.833327pt;}
.y198{bottom:478.695313pt;}
.y73{bottom:479.009119pt;}
.y7{bottom:480.671876pt;}
.y34{bottom:484.028647pt;}
.yf8{bottom:487.499993pt;}
.ya2{bottom:490.166660pt;}
.y16d{bottom:490.187500pt;}
.y61{bottom:491.097660pt;}
.y17c{bottom:491.098953pt;}
.y1bd{bottom:492.026047pt;}
.y1a6{bottom:492.028647pt;}
.ye7{bottom:494.695313pt;}
.y19{bottom:498.233073pt;}
.yc6{bottom:499.097660pt;}
.yae{bottom:501.764327pt;}
.y33{bottom:502.427087pt;}
.y4c{bottom:504.430993pt;}
.y143{bottom:504.432287pt;}
.y126{bottom:504.942705pt;}
.y197{bottom:506.291660pt;}
.y8c{bottom:508.296873pt;}
.yf7{bottom:515.097660pt;}
.y182{bottom:517.763020pt;}
.ya1{bottom:517.764327pt;}
.y16c{bottom:517.786460pt;}
.y60{bottom:518.695313pt;}
.y18{bottom:519.391273pt;}
.y1bc{bottom:519.624993pt;}
.y1a5{bottom:519.627607pt;}
.y32{bottom:520.825527pt;}
.yc5{bottom:526.695313pt;}
.yad{bottom:529.361980pt;}
.y4b{bottom:532.028647pt;}
.y196{bottom:533.890620pt;}
.y8b{bottom:535.894527pt;}
.ye6{bottom:538.292967pt;}
.y31{bottom:539.223953pt;}
.yf6{bottom:542.695313pt;}
.ya0{bottom:545.361980pt;}
.y16b{bottom:545.382807pt;}
.y17b{bottom:546.291660pt;}
.y5f{bottom:546.292967pt;}
.y1b0{bottom:547.223953pt;}
.y17{bottom:553.882807pt;}
.yc4{bottom:554.292967pt;}
.yac{bottom:556.959633pt;}
.y30{bottom:557.622393pt;}
.y4a{bottom:559.626300pt;}
.y142{bottom:559.627607pt;}
.y1a4{bottom:560.557287pt;}
.y8a{bottom:563.492193pt;}
.ye5{bottom:565.890620pt;}
.yf5{bottom:570.292967pt;}
.y159{bottom:572.958327pt;}
.y9f{bottom:572.959633pt;}
.y16a{bottom:572.979167pt;}
.y5e{bottom:573.890620pt;}
.y195{bottom:574.822913pt;}
.y2f{bottom:576.020833pt;}
.y6{bottom:577.263676pt;}
.y123{bottom:581.752601pt;}
.yc3{bottom:581.890620pt;}
.yab{bottom:584.557287pt;}
.y49{bottom:587.223953pt;}
.y1a3{bottom:588.153647pt;}
.y1bb{bottom:588.156247pt;}
.y16{bottom:588.374353pt;}
.y89{bottom:591.089847pt;}
.ye4{bottom:593.488287pt;}
.yf4{bottom:597.890620pt;}
.y9e{bottom:600.557287pt;}
.y5d{bottom:601.488287pt;}
.y194{bottom:602.419273pt;}
.yc2{bottom:609.488287pt;}
.y2e{bottom:611.618487pt;}
.yaa{bottom:612.154953pt;}
.y10d{bottom:613.890620pt;}
.y169{bottom:613.911460pt;}
.y48{bottom:614.821620pt;}
.y13e{bottom:614.822913pt;}
.y1af{bottom:615.752607pt;}
.y1ba{bottom:615.755207pt;}
.y88{bottom:618.687500pt;}
.ye3{bottom:621.085940pt;}
.y15{bottom:622.865887pt;}
.yd9{bottom:625.488287pt;}
.y158{bottom:628.153647pt;}
.y9d{bottom:628.154953pt;}
.y5c{bottom:629.085940pt;}
.y193{bottom:630.018233pt;}
.yc1{bottom:637.085940pt;}
.ya9{bottom:639.752607pt;}
.y10c{bottom:641.488287pt;}
.y18c{bottom:641.489580pt;}
.y168{bottom:641.507807pt;}
.y5{bottom:641.658196pt;}
.y47{bottom:642.419273pt;}
.y1ae{bottom:643.348953pt;}
.y2d{bottom:643.350260pt;}
.y87{bottom:646.285153pt;}
.ye2{bottom:648.683593pt;}
.yd8{bottom:653.085940pt;}
.y9c{bottom:655.752607pt;}
.y1b9{bottom:656.682287pt;}
.y72{bottom:656.683593pt;}
.y14{bottom:660.024087pt;}
.y2c{bottom:661.748700pt;}
.yc0{bottom:664.683593pt;}
.y10b{bottom:669.085940pt;}
.y167{bottom:669.104167pt;}
.y46{bottom:670.016927pt;}
.y141{bottom:670.018233pt;}
.y192{bottom:670.947913pt;}
.y4{bottom:673.855463pt;}
.y86{bottom:673.882807pt;}
.y2b{bottom:680.147140pt;}
.yd7{bottom:680.683593pt;}
.y13d{bottom:683.348953pt;}
.y9b{bottom:683.350260pt;}
.y71{bottom:684.281247pt;}
.y11e{bottom:686.893228pt;}
.ye1{bottom:692.281247pt;}
.y18b{bottom:696.682287pt;}
.y10a{bottom:696.683593pt;}
.y166{bottom:696.703127pt;}
.y13{bottom:697.182287pt;}
.y45{bottom:697.614580pt;}
.y2a{bottom:698.545567pt;}
.y85{bottom:701.480473pt;}
.y121{bottom:708.050780pt;}
.ybf{bottom:708.281247pt;}
.y9a{bottom:710.947913pt;}
.y70{bottom:711.878900pt;}
.y191{bottom:711.880207pt;}
.y29{bottom:716.944007pt;}
.yfe{bottom:724.281247pt;}
.y5b{bottom:725.212233pt;}
.y17a{bottom:725.213540pt;}
.y12{bottom:731.673833pt;}
.y28{bottom:735.342447pt;}
.yd6{bottom:735.878900pt;}
.y165{bottom:737.135421pt;}
.y13c{bottom:738.544273pt;}
.y44{bottom:738.545567pt;}
.y151{bottom:739.476567pt;}
.y84{bottom:744.023439pt;}
.ybe{bottom:751.878900pt;}
.y181{bottom:751.880207pt;}
.y5a{bottom:752.809900pt;}
.y27{bottom:753.740887pt;}
.yd5{bottom:763.476567pt;}
.y43{bottom:766.143233pt;}
.y11{bottom:766.165367pt;}
.y150{bottom:767.074220pt;}
.y83{bottom:769.320959pt;}
.y26{bottom:772.139327pt;}
.ybd{bottom:779.476567pt;}
.y1b8{bottom:780.406247pt;}
.y59{bottom:780.407553pt;}
.y179{bottom:780.408860pt;}
.yd4{bottom:791.074220pt;}
.y119{bottom:792.035156pt;}
.y13b{bottom:793.739580pt;}
.y42{bottom:793.740887pt;}
.y82{bottom:794.618492pt;}
.y14f{bottom:794.671873pt;}
.y10{bottom:800.656900pt;}
.y180{bottom:807.072913pt;}
.ybc{bottom:807.074220pt;}
.y58{bottom:808.005207pt;}
.y11c{bottom:813.192708pt;}
.y81{bottom:819.916666pt;}
.y41{bottom:821.338541pt;}
.y6f{bottom:834.671875pt;}
.yf{bottom:835.148437pt;}
.y25{bottom:835.602864pt;}
.y14e{bottom:835.604167pt;}
.y13a{bottom:848.934896pt;}
.y40{bottom:848.936197pt;}
.y1b7{bottom:848.937500pt;}
.y6e{bottom:862.269531pt;}
.y17f{bottom:862.270833pt;}
.y57{bottom:863.200521pt;}
.y24{bottom:867.334636pt;}
.ye{bottom:869.639973pt;}
.y3f{bottom:876.533855pt;}
.y1b6{bottom:876.536459pt;}
.y3{bottom:880.999999pt;}
.y6d{bottom:889.867188pt;}
.y117{bottom:897.175781pt;}
.y139{bottom:904.130208pt;}
.yd{bottom:904.131510pt;}
.y23{bottom:910.375651pt;}
.y178{bottom:917.463541pt;}
.y6c{bottom:917.464844pt;}
.y22{bottom:942.572916pt;}
.yc{bottom:945.062500pt;}
.y1{bottom:960.000000pt;}
.he{height:33.328125pt;}
.h2{height:33.796875pt;}
.h6{height:44.437500pt;}
.h7{height:45.062500pt;}
.h8{height:52.593751pt;}
.h3{height:56.843750pt;}
.h5{height:57.375000pt;}
.h9{height:61.824219pt;}
.h4{height:66.317706pt;}
.hb{height:82.983073pt;}
.h1{height:96.000000pt;}
.ha{height:104.140625pt;}
.hd{height:125.298177pt;}
.hc{height:180.950521pt;}
.h0{height:1056.000000pt;}
.w1{width:311.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.000000pt;}
.x1{left:96.000000pt;}
.x14{left:97.000000pt;}
.x15{left:109.367188pt;}
.x17{left:111.871094pt;}
.x1a{left:133.766602pt;}
.x3{left:141.105400pt;}
.xa{left:144.000000pt;}
.x6{left:148.252190pt;}
.x12{left:151.000000pt;}
.x13{left:152.000000pt;}
.x19{left:176.036133pt;}
.xb{left:192.000000pt;}
.x10{left:216.175781pt;}
.x7{left:219.475067pt;}
.xc{left:221.569962pt;}
.xf{left:231.906250pt;}
.x11{left:243.441406pt;}
.x5{left:341.405030pt;}
.x4{left:344.251740pt;}
.x9{left:379.105470pt;}
.x16{left:409.000000pt;}
.x8{left:469.169980pt;}
.x2{left:540.000000pt;}
.xd{left:552.523440pt;}
.xe{left:623.664060pt;}
}




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