
    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_24e95e2fc93c9a4f4943e88e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_78226aeb70266ef6bee003b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.050293;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_1d89d76e1de28da50e4f62c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a705d94ef7c07338d4547fd7.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_08884ef0af616bbd803884cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4eeedc6fd023738b97fa744c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4eeedc6fd023738b97fa744c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fa11a0e2b3ca19dea69785d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fa11a0e2b3ca19dea69785d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c7df2bcf51677e043d368912.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dd23999e4812c3ffae0a1e72.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-48.911400px;}
.v5{vertical-align:-37.809000px;}
.v2{vertical-align:-19.980000px;}
.v1{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:36.000000px;}
.v6{vertical-align:37.809000px;}
.ls5{letter-spacing:-0.330000px;}
.ls1{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:2.520000px;}
.ls3{letter-spacing:87.003600px;}
.ls2{letter-spacing:153.178800px;}
.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;}
}
.ws6{word-spacing:-16.500000px;}
.ws4{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.200000px;}
.ws15{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.856000px;}
.ws3{word-spacing:-8.745000px;}
.ws0{word-spacing:-7.870500px;}
.ws14{word-spacing:-2.520000px;}
.ws5{word-spacing:0.000000px;}
.ws17{word-spacing:0.330000px;}
.ws10{word-spacing:53.113800px;}
.wse{word-spacing:68.113800px;}
.ws9{word-spacing:72.725400px;}
.ws8{word-spacing:87.725400px;}
.wsc{word-spacing:87.773400px;}
.ws11{word-spacing:91.782600px;}
.ws7{word-spacing:111.904800px;}
.wsa{word-spacing:117.725400px;}
.wsb{word-spacing:129.892800px;}
.ws12{word-spacing:148.278000px;}
.ws13{word-spacing:171.498000px;}
.wsd{word-spacing:340.606800px;}
.wsf{word-spacing:363.826800px;}
._5{margin-left:-2187.444000px;}
._51{margin-left:-14.515200px;}
._50{margin-left:-13.267200px;}
._17{margin-left:-9.068400px;}
._21{margin-left:-7.541400px;}
._4{margin-left:-6.523200px;}
._f{margin-left:-4.993800px;}
._1{margin-left:-3.855600px;}
._0{margin-left:-2.068200px;}
._7{margin-left:-1.057200px;}
._6{width:1.020000px;}
._a{width:2.118000px;}
._b{width:3.126000px;}
._9{width:4.704000px;}
._8{width:5.988000px;}
._3{width:7.476600px;}
._2{width:8.499600px;}
._1a{width:9.940800px;}
._13{width:11.688600px;}
._c{width:12.883200px;}
._12{width:14.150400px;}
._22{width:15.345000px;}
._d{width:17.668200px;}
._10{width:19.648200px;}
._e{width:21.694200px;}
._14{width:23.608200px;}
._1b{width:24.842400px;}
._11{width:26.631000px;}
._1d{width:27.654000px;}
._16{width:29.132400px;}
._1f{width:30.254400px;}
._1c{width:31.277400px;}
._4d{width:32.300400px;}
._19{width:33.303600px;}
._26{width:35.046000px;}
._24{width:37.864200px;}
._4c{width:39.237000px;}
._25{width:41.019000px;}
._20{width:42.728400px;}
._54{width:44.192400px;}
._53{width:45.378000px;}
._55{width:46.596000px;}
._18{width:47.797200px;}
._4f{width:49.255800px;}
._1e{width:54.344400px;}
._4a{width:55.680000px;}
._23{width:56.991000px;}
._52{width:60.000000px;}
._4b{width:63.195000px;}
._49{width:70.958400px;}
._4e{width:77.992200px;}
._2b{width:87.725400px;}
._44{width:97.788600px;}
._41{width:99.366000px;}
._40{width:107.428200px;}
._43{width:110.319600px;}
._3e{width:113.252400px;}
._42{width:118.959600px;}
._45{width:124.468200px;}
._3f{width:126.412200px;}
._34{width:132.725400px;}
._48{width:145.680000px;}
._46{width:153.429600px;}
._47{width:169.605000px;}
._3b{width:189.126600px;}
._3d{width:313.528200px;}
._3c{width:389.422200px;}
._27{width:468.560400px;}
._37{width:492.306600px;}
._3a{width:499.086600px;}
._33{width:525.726600px;}
._2c{width:622.386600px;}
._36{width:629.046600px;}
._39{width:682.386600px;}
._2a{width:697.386600px;}
._30{width:708.966600px;}
._38{width:732.306600px;}
._32{width:753.906600px;}
._31{width:764.046600px;}
._2f{width:807.306600px;}
._35{width:823.926600px;}
._2d{width:862.326600px;}
._2e{width:870.546600px;}
._28{width:902.286600px;}
._29{width:940.626600px;}
._15{width:2013.323400px;}
.fc6{color:rgb(0,173,239);}
.fc5{color:transparent;}
.fc7{color:rgb(236,0,140);}
.fc4{color:rgb(24,23,23);}
.fc2{color:rgb(48,88,159);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y13{bottom:20.907750px;}
.y14{bottom:30.289950px;}
.ye{bottom:30.301800px;}
.y41{bottom:30.906150px;}
.y40{bottom:33.478950px;}
.y9d{bottom:33.490650px;}
.y11{bottom:33.691200px;}
.yf5{bottom:63.779550px;}
.y3e{bottom:66.987600px;}
.y34{bottom:67.061550px;}
.y12c{bottom:67.433550px;}
.ybb{bottom:74.078850px;}
.y77{bottom:77.579250px;}
.yf4{bottom:81.779550px;}
.y3d{bottom:86.487600px;}
.y33{bottom:86.561550px;}
.y12b{bottom:86.933550px;}
.yba{bottom:93.578850px;}
.y153{bottom:95.437650px;}
.y76{bottom:97.079250px;}
.y32{bottom:106.061550px;}
.y12a{bottom:106.433550px;}
.yb9{bottom:113.078850px;}
.y3c{bottom:114.491550px;}
.y152{bottom:114.937650px;}
.y75{bottom:116.579250px;}
.y31{bottom:125.561550px;}
.y129{bottom:125.933550px;}
.yb8{bottom:132.578850px;}
.y3b{bottom:133.991550px;}
.y151{bottom:134.437650px;}
.y9c{bottom:136.079250px;}
.y74{bottom:144.583200px;}
.y30{bottom:145.061550px;}
.y128{bottom:145.433550px;}
.yb7{bottom:152.078850px;}
.y3a{bottom:153.491550px;}
.y150{bottom:153.937650px;}
.y9b{bottom:155.579250px;}
.y73{bottom:164.083200px;}
.y2f{bottom:164.561550px;}
.y127{bottom:164.933550px;}
.y39{bottom:172.991550px;}
.y14f{bottom:173.437650px;}
.y9a{bottom:175.079250px;}
.y72{bottom:183.583200px;}
.y2e{bottom:184.061550px;}
.y126{bottom:184.433550px;}
.yb6{bottom:191.078850px;}
.y38{bottom:192.491550px;}
.y14e{bottom:192.937650px;}
.y99{bottom:194.579250px;}
.y71{bottom:203.083200px;}
.y2d{bottom:203.561550px;}
.y125{bottom:203.933550px;}
.yb5{bottom:210.578850px;}
.y37{bottom:211.991550px;}
.y14d{bottom:212.437650px;}
.y70{bottom:222.583200px;}
.y2c{bottom:223.061550px;}
.y124{bottom:223.433550px;}
.yb4{bottom:230.078850px;}
.y36{bottom:231.491550px;}
.y14c{bottom:231.937650px;}
.y189{bottom:233.095050px;}
.y98{bottom:233.579250px;}
.y6f{bottom:242.083200px;}
.y2b{bottom:242.561550px;}
.y123{bottom:242.933550px;}
.y188{bottom:245.095050px;}
.yb3{bottom:249.578850px;}
.y14b{bottom:251.437650px;}
.y97{bottom:253.079250px;}
.y187{bottom:257.095050px;}
.y35{bottom:259.495500px;}
.y6e{bottom:261.583200px;}
.y2a{bottom:262.061550px;}
.y122{bottom:262.433550px;}
.yb2{bottom:269.078850px;}
.y186{bottom:269.095050px;}
.y14a{bottom:270.937650px;}
.y96{bottom:272.579250px;}
.yf3{bottom:280.859400px;}
.y6d{bottom:281.083200px;}
.y185{bottom:281.095050px;}
.y121{bottom:281.933550px;}
.yb1{bottom:288.578850px;}
.y149{bottom:290.437650px;}
.y95{bottom:292.079250px;}
.y184{bottom:293.095050px;}
.y6c{bottom:300.583200px;}
.y120{bottom:301.433550px;}
.y183{bottom:305.095050px;}
.yb0{bottom:308.078850px;}
.y148{bottom:309.937650px;}
.y94{bottom:311.579250px;}
.y182{bottom:317.095050px;}
.y29{bottom:318.990600px;}
.y6b{bottom:320.083200px;}
.y11f{bottom:320.933550px;}
.yaf{bottom:327.578850px;}
.y181{bottom:329.095050px;}
.y93{bottom:331.079250px;}
.y6a{bottom:339.583200px;}
.y11e{bottom:340.433550px;}
.y180{bottom:341.095050px;}
.y28{bottom:343.994550px;}
.yae{bottom:347.078850px;}
.y147{bottom:348.937650px;}
.y92{bottom:350.579250px;}
.y17f{bottom:353.095050px;}
.y69{bottom:359.083200px;}
.y27{bottom:360.494550px;}
.y17e{bottom:365.095050px;}
.y11d{bottom:368.437650px;}
.y91{bottom:370.079250px;}
.yad{bottom:375.082800px;}
.y26{bottom:376.994550px;}
.y17d{bottom:377.095050px;}
.y68{bottom:378.583200px;}
.y11c{bottom:387.937650px;}
.y17c{bottom:389.095050px;}
.y90{bottom:389.579250px;}
.yac{bottom:394.582800px;}
.y67{bottom:398.083200px;}
.y17b{bottom:401.095050px;}
.y25{bottom:401.998500px;}
.y11b{bottom:407.437500px;}
.y8f{bottom:409.079250px;}
.y17a{bottom:413.095050px;}
.yab{bottom:414.082800px;}
.y24{bottom:418.498500px;}
.y179{bottom:425.095050px;}
.y66{bottom:426.087150px;}
.y11a{bottom:426.937500px;}
.yaa{bottom:433.582800px;}
.y23{bottom:434.998500px;}
.y178{bottom:437.095050px;}
.y65{bottom:445.587150px;}
.y119{bottom:446.437500px;}
.y8e{bottom:448.079250px;}
.y177{bottom:449.095050px;}
.y22{bottom:451.498500px;}
.ya9{bottom:453.082800px;}
.y176{bottom:461.095050px;}
.y64{bottom:465.087150px;}
.y118{bottom:465.937500px;}
.y8d{bottom:467.579250px;}
.y21{bottom:467.998500px;}
.ya8{bottom:472.582800px;}
.y175{bottom:473.095050px;}
.y20{bottom:484.498500px;}
.y63{bottom:484.587150px;}
.y174{bottom:485.095050px;}
.y117{bottom:485.437500px;}
.y8c{bottom:487.079250px;}
.ya7{bottom:492.082800px;}
.y173{bottom:497.095050px;}
.y62{bottom:504.087150px;}
.y116{bottom:504.937500px;}
.y8b{bottom:506.579250px;}
.y172{bottom:509.095050px;}
.y1f{bottom:509.502450px;}
.ya6{bottom:511.582800px;}
.y1bf{bottom:512.203350px;}
.y171{bottom:521.095050px;}
.y61{bottom:523.587150px;}
.y1be{bottom:524.203350px;}
.y115{bottom:524.437500px;}
.y1e{bottom:526.002450px;}
.yc4{bottom:527.198250px;}
.ya5{bottom:531.082800px;}
.y170{bottom:533.095050px;}
.y8a{bottom:534.583200px;}
.y1bd{bottom:536.203350px;}
.y1d{bottom:542.502450px;}
.y60{bottom:543.087150px;}
.y114{bottom:543.937500px;}
.y16f{bottom:545.095050px;}
.y1bc{bottom:548.203350px;}
.ya4{bottom:550.582800px;}
.y89{bottom:554.083200px;}
.yc3{bottom:555.202200px;}
.y16e{bottom:557.095050px;}
.y1c{bottom:559.002450px;}
.y1bb{bottom:560.203350px;}
.y5f{bottom:562.587150px;}
.y113{bottom:563.437500px;}
.y16d{bottom:569.095050px;}
.ya3{bottom:570.082800px;}
.y1ba{bottom:572.203350px;}
.y88{bottom:573.583200px;}
.yc2{bottom:574.702200px;}
.y1b{bottom:575.502450px;}
.y16c{bottom:581.095050px;}
.y5e{bottom:582.087150px;}
.y112{bottom:582.937500px;}
.y1b9{bottom:584.203350px;}
.y1a{bottom:592.002450px;}
.y87{bottom:593.083200px;}
.y16b{bottom:593.095050px;}
.yc1{bottom:594.202200px;}
.y1b8{bottom:596.203350px;}
.ya2{bottom:598.086750px;}
.y5d{bottom:601.587150px;}
.y146{bottom:602.437500px;}
.y16a{bottom:605.095050px;}
.y1b7{bottom:608.203350px;}
.y111{bottom:610.941450px;}
.y86{bottom:612.583200px;}
.yc0{bottom:613.702200px;}
.y19{bottom:617.006400px;}
.y169{bottom:617.095050px;}
.ya1{bottom:617.586750px;}
.y1b6{bottom:620.203350px;}
.y5c{bottom:621.087150px;}
.y145{bottom:621.937500px;}
.y168{bottom:629.095050px;}
.y110{bottom:630.441450px;}
.y85{bottom:632.083200px;}
.y1b5{bottom:632.203350px;}
.ybf{bottom:633.202200px;}
.y18{bottom:633.506400px;}
.ya0{bottom:637.086750px;}
.y167{bottom:641.095050px;}
.y144{bottom:641.437500px;}
.y1b4{bottom:644.203350px;}
.y5b{bottom:649.091100px;}
.y10f{bottom:649.941450px;}
.y17{bottom:650.006400px;}
.y84{bottom:651.583200px;}
.ybe{bottom:652.702200px;}
.y166{bottom:653.095050px;}
.y1b3{bottom:656.203350px;}
.y9f{bottom:656.586750px;}
.y165{bottom:665.095050px;}
.y16{bottom:666.506400px;}
.y1b2{bottom:668.203350px;}
.y5a{bottom:668.591100px;}
.y10e{bottom:669.441450px;}
.ybd{bottom:672.202200px;}
.y9e{bottom:676.086750px;}
.y164{bottom:677.095050px;}
.y83{bottom:679.587150px;}
.y1b1{bottom:680.203350px;}
.y143{bottom:680.437500px;}
.y59{bottom:688.091100px;}
.y15{bottom:688.510350px;}
.y10d{bottom:688.941450px;}
.y163{bottom:689.095050px;}
.ybc{bottom:691.702200px;}
.y1b0{bottom:692.203350px;}
.y82{bottom:699.087150px;}
.y142{bottom:699.937500px;}
.y162{bottom:701.095050px;}
.y1af{bottom:704.203350px;}
.y58{bottom:707.591100px;}
.yda{bottom:707.769600px;}
.y10c{bottom:708.441450px;}
.y161{bottom:713.095050px;}
.y1ae{bottom:716.203350px;}
.y81{bottom:718.587150px;}
.y141{bottom:719.437500px;}
.y160{bottom:725.095050px;}
.yd9{bottom:726.673950px;}
.y57{bottom:727.091100px;}
.y10b{bottom:727.941450px;}
.y1ad{bottom:728.203350px;}
.yc{bottom:731.604900px;}
.yf1{bottom:734.902650px;}
.y15f{bottom:737.095050px;}
.y80{bottom:738.087150px;}
.y140{bottom:738.937500px;}
.y1ac{bottom:740.203350px;}
.yf0{bottom:744.354750px;}
.yb{bottom:745.104900px;}
.yd8{bottom:745.578300px;}
.y56{bottom:746.591100px;}
.y10a{bottom:747.441450px;}
.y15e{bottom:749.095050px;}
.y1ab{bottom:752.203350px;}
.y7f{bottom:757.587150px;}
.y13f{bottom:758.437500px;}
.ya{bottom:758.604900px;}
.y15d{bottom:761.095050px;}
.yee{bottom:763.259100px;}
.y1aa{bottom:764.203350px;}
.yd7{bottom:764.482650px;}
.y55{bottom:766.091100px;}
.y109{bottom:766.941450px;}
.yef{bottom:772.711350px;}
.y15c{bottom:773.095050px;}
.y1a9{bottom:776.203350px;}
.y7e{bottom:777.087150px;}
.y13e{bottom:777.937650px;}
.yed{bottom:782.163450px;}
.yd6{bottom:783.386850px;}
.y15b{bottom:785.095050px;}
.y54{bottom:785.591100px;}
.y9{bottom:785.604900px;}
.y108{bottom:786.441450px;}
.y1a8{bottom:788.203350px;}
.y7d{bottom:796.587150px;}
.y15a{bottom:797.095050px;}
.y13d{bottom:797.437650px;}
.y8{bottom:799.104900px;}
.y1a7{bottom:800.203350px;}
.yd5{bottom:802.291200px;}
.y53{bottom:805.091100px;}
.y107{bottom:805.941450px;}
.y159{bottom:809.095050px;}
.y1a6{bottom:812.203350px;}
.yec{bottom:812.268000px;}
.y7{bottom:812.604900px;}
.y7c{bottom:816.087150px;}
.y13c{bottom:816.937650px;}
.yd4{bottom:821.195550px;}
.y1a5{bottom:824.203350px;}
.y52{bottom:824.591100px;}
.y106{bottom:825.441450px;}
.yeb{bottom:830.268000px;}
.y158{bottom:833.095050px;}
.y7b{bottom:835.587150px;}
.y1a4{bottom:836.203350px;}
.y13b{bottom:836.437650px;}
.y6{bottom:839.604900px;}
.yd3{bottom:840.100050px;}
.y51{bottom:844.091100px;}
.y1a3{bottom:848.203350px;}
.yea{bottom:848.268000px;}
.y105{bottom:853.445400px;}
.y13a{bottom:855.937650px;}
.y5{bottom:857.600400px;}
.yd2{bottom:859.004250px;}
.y1a2{bottom:860.203350px;}
.y50{bottom:863.591100px;}
.yf2{bottom:868.440900px;}
.y4{bottom:871.100400px;}
.y157{bottom:872.095050px;}
.y1a1{bottom:872.203350px;}
.y104{bottom:872.945400px;}
.y139{bottom:875.437650px;}
.yd1{bottom:877.908600px;}
.y3{bottom:880.104900px;}
.y4f{bottom:883.091100px;}
.y1a0{bottom:884.203350px;}
.y156{bottom:891.595050px;}
.y103{bottom:892.445400px;}
.y138{bottom:894.937650px;}
.y19f{bottom:896.203350px;}
.yd0{bottom:896.812800px;}
.y4e{bottom:902.591100px;}
.ye8{bottom:902.945250px;}
.y2{bottom:907.104900px;}
.y19e{bottom:908.203350px;}
.y155{bottom:911.095050px;}
.y102{bottom:911.945400px;}
.ye7{bottom:912.397500px;}
.yd{bottom:912.864300px;}
.ycf{bottom:915.717150px;}
.y19d{bottom:920.203350px;}
.y1{bottom:920.604900px;}
.y4d{bottom:922.091100px;}
.y137{bottom:922.941450px;}
.y154{bottom:930.595050px;}
.ye5{bottom:931.301850px;}
.y101{bottom:931.445400px;}
.y19c{bottom:932.203350px;}
.yce{bottom:934.621650px;}
.ye6{bottom:940.753950px;}
.y4c{bottom:941.591100px;}
.y136{bottom:942.441450px;}
.y19b{bottom:944.203350px;}
.y7a{bottom:950.095050px;}
.ye4{bottom:950.206200px;}
.y100{bottom:950.945400px;}
.ycd{bottom:953.526000px;}
.y19a{bottom:956.203350px;}
.y4b{bottom:961.091100px;}
.y135{bottom:961.941450px;}
.y199{bottom:968.203350px;}
.y79{bottom:969.595050px;}
.yff{bottom:970.445400px;}
.ycc{bottom:972.430200px;}
.y12{bottom:972.985500px;}
.y198{bottom:980.203350px;}
.ye3{bottom:980.310750px;}
.y4a{bottom:980.591100px;}
.y134{bottom:981.441450px;}
.y78{bottom:989.095050px;}
.yfe{bottom:989.945400px;}
.ycb{bottom:991.334550px;}
.y197{bottom:992.203350px;}
.ye2{bottom:998.310750px;}
.y133{bottom:1000.941450px;}
.y196{bottom:1004.203350px;}
.y49{bottom:1008.595050px;}
.yfd{bottom:1009.445400px;}
.yca{bottom:1010.238900px;}
.y195{bottom:1016.203350px;}
.ye9{bottom:1019.999250px;}
.y132{bottom:1020.441450px;}
.y48{bottom:1028.095050px;}
.y194{bottom:1028.203350px;}
.yfc{bottom:1028.945400px;}
.yc9{bottom:1029.143250px;}
.y131{bottom:1039.941450px;}
.y193{bottom:1040.203350px;}
.y47{bottom:1047.595050px;}
.yf{bottom:1047.889650px;}
.yc8{bottom:1048.047600px;}
.yfb{bottom:1048.445400px;}
.ye1{bottom:1049.763000px;}
.y192{bottom:1052.203350px;}
.y130{bottom:1059.441450px;}
.y191{bottom:1064.203350px;}
.yc7{bottom:1066.951950px;}
.y46{bottom:1067.095050px;}
.ye0{bottom:1067.350500px;}
.yfa{bottom:1067.945400px;}
.y190{bottom:1076.203350px;}
.y12f{bottom:1078.941450px;}
.y10{bottom:1083.927000px;}
.yc6{bottom:1085.856150px;}
.ydf{bottom:1086.254850px;}
.y45{bottom:1086.595050px;}
.yf9{bottom:1087.445400px;}
.y18f{bottom:1088.203350px;}
.y12e{bottom:1098.441450px;}
.y18e{bottom:1100.203350px;}
.y44{bottom:1106.095050px;}
.yc5{bottom:1106.883600px;}
.ydd{bottom:1106.907150px;}
.yf8{bottom:1106.945400px;}
.y18d{bottom:1112.203350px;}
.y12d{bottom:1117.941450px;}
.y18c{bottom:1124.203350px;}
.yde{bottom:1124.907150px;}
.y43{bottom:1125.595050px;}
.yf7{bottom:1126.445400px;}
.ydc{bottom:1128.135000px;}
.y18b{bottom:1136.203350px;}
.y42{bottom:1145.095050px;}
.yf6{bottom:1145.945400px;}
.ydb{bottom:1146.135000px;}
.y18a{bottom:1148.203350px;}
.y3f{bottom:1187.880600px;}
.hb{height:23.707148px;}
.h4{height:27.079523px;}
.h2{height:32.531250px;}
.ha{height:34.500000px;}
.h5{height:37.494141px;}
.h6{height:40.054688px;}
.h11{height:40.664062px;}
.hf{height:42.000000px;}
.he{height:44.730469px;}
.h3{height:45.061523px;}
.h10{height:45.826172px;}
.h7{height:48.796875px;}
.hc{height:50.068359px;}
.hd{height:55.075195px;}
.h9{height:58.898438px;}
.h12{height:76.664062px;}
.h8{height:84.000000px;}
.h14{height:87.876759px;}
.h13{height:87.877359px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:597.000000px;}
.w2{width:702.000300px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:6.026100px;}
.x4{left:63.779550px;}
.xf{left:69.156450px;}
.xc{left:70.157400px;}
.x2{left:73.783500px;}
.x1{left:75.283500px;}
.x7{left:87.412950px;}
.x1d{left:90.779550px;}
.xb{left:95.409450px;}
.x6{left:128.945700px;}
.xe{left:161.257950px;}
.x8{left:215.536500px;}
.x5{left:308.628900px;}
.xd{left:459.212550px;}
.x13{left:464.589600px;}
.x17{left:467.654850px;}
.x15{left:470.307750px;}
.x18{left:472.204650px;}
.x19{left:485.941200px;}
.x14{left:487.639050px;}
.x1c{left:559.559100px;}
.x1a{left:579.085650px;}
.x10{left:614.956650px;}
.xa{left:638.165100px;}
.x11{left:688.092300px;}
.x3{left:692.175750px;}
.x12{left:698.259750px;}
.x16{left:770.236650px;}
.x1b{left:774.426150px;}
@media print{
.v3{vertical-align:-43.476800pt;}
.v5{vertical-align:-33.608000pt;}
.v2{vertical-align:-17.760000pt;}
.v1{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:32.000000pt;}
.v6{vertical-align:33.608000pt;}
.ls5{letter-spacing:-0.293333pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:2.240000pt;}
.ls3{letter-spacing:77.336533pt;}
.ls2{letter-spacing:136.158933pt;}
.ws6{word-spacing:-14.666667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.733333pt;}
.ws15{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.538667pt;}
.ws3{word-spacing:-7.773333pt;}
.ws0{word-spacing:-6.996000pt;}
.ws14{word-spacing:-2.240000pt;}
.ws5{word-spacing:0.000000pt;}
.ws17{word-spacing:0.293333pt;}
.ws10{word-spacing:47.212267pt;}
.wse{word-spacing:60.545600pt;}
.ws9{word-spacing:64.644800pt;}
.ws8{word-spacing:77.978133pt;}
.wsc{word-spacing:78.020800pt;}
.ws11{word-spacing:81.584533pt;}
.ws7{word-spacing:99.470933pt;}
.wsa{word-spacing:104.644800pt;}
.wsb{word-spacing:115.460267pt;}
.ws12{word-spacing:131.802667pt;}
.ws13{word-spacing:152.442667pt;}
.wsd{word-spacing:302.761600pt;}
.wsf{word-spacing:323.401600pt;}
._5{margin-left:-1944.394667pt;}
._51{margin-left:-12.902400pt;}
._50{margin-left:-11.793067pt;}
._17{margin-left:-8.060800pt;}
._21{margin-left:-6.703467pt;}
._4{margin-left:-5.798400pt;}
._f{margin-left:-4.438933pt;}
._1{margin-left:-3.427200pt;}
._0{margin-left:-1.838400pt;}
._7{margin-left:-0.939733pt;}
._6{width:0.906667pt;}
._a{width:1.882667pt;}
._b{width:2.778667pt;}
._9{width:4.181333pt;}
._8{width:5.322667pt;}
._3{width:6.645867pt;}
._2{width:7.555200pt;}
._1a{width:8.836267pt;}
._13{width:10.389867pt;}
._c{width:11.451733pt;}
._12{width:12.578133pt;}
._22{width:13.640000pt;}
._d{width:15.705067pt;}
._10{width:17.465067pt;}
._e{width:19.283733pt;}
._14{width:20.985067pt;}
._1b{width:22.082133pt;}
._11{width:23.672000pt;}
._1d{width:24.581333pt;}
._16{width:25.895467pt;}
._1f{width:26.892800pt;}
._1c{width:27.802133pt;}
._4d{width:28.711467pt;}
._19{width:29.603200pt;}
._26{width:31.152000pt;}
._24{width:33.657067pt;}
._4c{width:34.877333pt;}
._25{width:36.461333pt;}
._20{width:37.980800pt;}
._54{width:39.282133pt;}
._53{width:40.336000pt;}
._55{width:41.418667pt;}
._18{width:42.486400pt;}
._4f{width:43.782933pt;}
._1e{width:48.306133pt;}
._4a{width:49.493333pt;}
._23{width:50.658667pt;}
._52{width:53.333333pt;}
._4b{width:56.173333pt;}
._49{width:63.074133pt;}
._4e{width:69.326400pt;}
._2b{width:77.978133pt;}
._44{width:86.923200pt;}
._41{width:88.325333pt;}
._40{width:95.491733pt;}
._43{width:98.061867pt;}
._3e{width:100.668800pt;}
._42{width:105.741867pt;}
._45{width:110.638400pt;}
._3f{width:112.366400pt;}
._34{width:117.978133pt;}
._48{width:129.493333pt;}
._46{width:136.381867pt;}
._47{width:150.760000pt;}
._3b{width:168.112533pt;}
._3d{width:278.691733pt;}
._3c{width:346.153067pt;}
._27{width:416.498133pt;}
._37{width:437.605867pt;}
._3a{width:443.632533pt;}
._33{width:467.312533pt;}
._2c{width:553.232533pt;}
._36{width:559.152533pt;}
._39{width:606.565867pt;}
._2a{width:619.899200pt;}
._30{width:630.192533pt;}
._38{width:650.939200pt;}
._32{width:670.139200pt;}
._31{width:679.152533pt;}
._2f{width:717.605867pt;}
._35{width:732.379200pt;}
._2d{width:766.512533pt;}
._2e{width:773.819200pt;}
._28{width:802.032533pt;}
._29{width:836.112533pt;}
._15{width:1789.620800pt;}
.fs2{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:18.584667pt;}
.y14{bottom:26.924400pt;}
.ye{bottom:26.934933pt;}
.y41{bottom:27.472133pt;}
.y40{bottom:29.759067pt;}
.y9d{bottom:29.769467pt;}
.y11{bottom:29.947733pt;}
.yf5{bottom:56.692933pt;}
.y3e{bottom:59.544533pt;}
.y34{bottom:59.610267pt;}
.y12c{bottom:59.940933pt;}
.ybb{bottom:65.847867pt;}
.y77{bottom:68.959333pt;}
.yf4{bottom:72.692933pt;}
.y3d{bottom:76.877867pt;}
.y33{bottom:76.943600pt;}
.y12b{bottom:77.274267pt;}
.yba{bottom:83.181200pt;}
.y153{bottom:84.833467pt;}
.y76{bottom:86.292667pt;}
.y32{bottom:94.276933pt;}
.y12a{bottom:94.607600pt;}
.yb9{bottom:100.514533pt;}
.y3c{bottom:101.770267pt;}
.y152{bottom:102.166800pt;}
.y75{bottom:103.626000pt;}
.y31{bottom:111.610267pt;}
.y129{bottom:111.940933pt;}
.yb8{bottom:117.847867pt;}
.y3b{bottom:119.103600pt;}
.y151{bottom:119.500133pt;}
.y9c{bottom:120.959333pt;}
.y74{bottom:128.518400pt;}
.y30{bottom:128.943600pt;}
.y128{bottom:129.274267pt;}
.yb7{bottom:135.181200pt;}
.y3a{bottom:136.436933pt;}
.y150{bottom:136.833467pt;}
.y9b{bottom:138.292667pt;}
.y73{bottom:145.851733pt;}
.y2f{bottom:146.276933pt;}
.y127{bottom:146.607600pt;}
.y39{bottom:153.770267pt;}
.y14f{bottom:154.166800pt;}
.y9a{bottom:155.626000pt;}
.y72{bottom:163.185067pt;}
.y2e{bottom:163.610267pt;}
.y126{bottom:163.940933pt;}
.yb6{bottom:169.847867pt;}
.y38{bottom:171.103600pt;}
.y14e{bottom:171.500133pt;}
.y99{bottom:172.959333pt;}
.y71{bottom:180.518400pt;}
.y2d{bottom:180.943600pt;}
.y125{bottom:181.274267pt;}
.yb5{bottom:187.181200pt;}
.y37{bottom:188.436933pt;}
.y14d{bottom:188.833467pt;}
.y70{bottom:197.851733pt;}
.y2c{bottom:198.276933pt;}
.y124{bottom:198.607600pt;}
.yb4{bottom:204.514533pt;}
.y36{bottom:205.770267pt;}
.y14c{bottom:206.166800pt;}
.y189{bottom:207.195600pt;}
.y98{bottom:207.626000pt;}
.y6f{bottom:215.185067pt;}
.y2b{bottom:215.610267pt;}
.y123{bottom:215.940933pt;}
.y188{bottom:217.862267pt;}
.yb3{bottom:221.847867pt;}
.y14b{bottom:223.500133pt;}
.y97{bottom:224.959333pt;}
.y187{bottom:228.528933pt;}
.y35{bottom:230.662667pt;}
.y6e{bottom:232.518400pt;}
.y2a{bottom:232.943600pt;}
.y122{bottom:233.274267pt;}
.yb2{bottom:239.181200pt;}
.y186{bottom:239.195600pt;}
.y14a{bottom:240.833467pt;}
.y96{bottom:242.292667pt;}
.yf3{bottom:249.652800pt;}
.y6d{bottom:249.851733pt;}
.y185{bottom:249.862267pt;}
.y121{bottom:250.607600pt;}
.yb1{bottom:256.514533pt;}
.y149{bottom:258.166800pt;}
.y95{bottom:259.626000pt;}
.y184{bottom:260.528933pt;}
.y6c{bottom:267.185067pt;}
.y120{bottom:267.940933pt;}
.y183{bottom:271.195600pt;}
.yb0{bottom:273.847867pt;}
.y148{bottom:275.500133pt;}
.y94{bottom:276.959333pt;}
.y182{bottom:281.862267pt;}
.y29{bottom:283.547200pt;}
.y6b{bottom:284.518400pt;}
.y11f{bottom:285.274267pt;}
.yaf{bottom:291.181200pt;}
.y181{bottom:292.528933pt;}
.y93{bottom:294.292667pt;}
.y6a{bottom:301.851733pt;}
.y11e{bottom:302.607600pt;}
.y180{bottom:303.195600pt;}
.y28{bottom:305.772933pt;}
.yae{bottom:308.514533pt;}
.y147{bottom:310.166800pt;}
.y92{bottom:311.626000pt;}
.y17f{bottom:313.862267pt;}
.y69{bottom:319.185067pt;}
.y27{bottom:320.439600pt;}
.y17e{bottom:324.528933pt;}
.y11d{bottom:327.500133pt;}
.y91{bottom:328.959333pt;}
.yad{bottom:333.406933pt;}
.y26{bottom:335.106267pt;}
.y17d{bottom:335.195600pt;}
.y68{bottom:336.518400pt;}
.y11c{bottom:344.833467pt;}
.y17c{bottom:345.862267pt;}
.y90{bottom:346.292667pt;}
.yac{bottom:350.740267pt;}
.y67{bottom:353.851733pt;}
.y17b{bottom:356.528933pt;}
.y25{bottom:357.332000pt;}
.y11b{bottom:362.166667pt;}
.y8f{bottom:363.626000pt;}
.y17a{bottom:367.195600pt;}
.yab{bottom:368.073600pt;}
.y24{bottom:371.998667pt;}
.y179{bottom:377.862267pt;}
.y66{bottom:378.744133pt;}
.y11a{bottom:379.500000pt;}
.yaa{bottom:385.406933pt;}
.y23{bottom:386.665333pt;}
.y178{bottom:388.528933pt;}
.y65{bottom:396.077467pt;}
.y119{bottom:396.833333pt;}
.y8e{bottom:398.292667pt;}
.y177{bottom:399.195600pt;}
.y22{bottom:401.332000pt;}
.ya9{bottom:402.740267pt;}
.y176{bottom:409.862267pt;}
.y64{bottom:413.410800pt;}
.y118{bottom:414.166667pt;}
.y8d{bottom:415.626000pt;}
.y21{bottom:415.998667pt;}
.ya8{bottom:420.073600pt;}
.y175{bottom:420.528933pt;}
.y20{bottom:430.665333pt;}
.y63{bottom:430.744133pt;}
.y174{bottom:431.195600pt;}
.y117{bottom:431.500000pt;}
.y8c{bottom:432.959333pt;}
.ya7{bottom:437.406933pt;}
.y173{bottom:441.862267pt;}
.y62{bottom:448.077467pt;}
.y116{bottom:448.833333pt;}
.y8b{bottom:450.292667pt;}
.y172{bottom:452.528933pt;}
.y1f{bottom:452.891067pt;}
.ya6{bottom:454.740267pt;}
.y1bf{bottom:455.291867pt;}
.y171{bottom:463.195600pt;}
.y61{bottom:465.410800pt;}
.y1be{bottom:465.958533pt;}
.y115{bottom:466.166667pt;}
.y1e{bottom:467.557733pt;}
.yc4{bottom:468.620667pt;}
.ya5{bottom:472.073600pt;}
.y170{bottom:473.862267pt;}
.y8a{bottom:475.185067pt;}
.y1bd{bottom:476.625200pt;}
.y1d{bottom:482.224400pt;}
.y60{bottom:482.744133pt;}
.y114{bottom:483.500000pt;}
.y16f{bottom:484.528933pt;}
.y1bc{bottom:487.291867pt;}
.ya4{bottom:489.406933pt;}
.y89{bottom:492.518400pt;}
.yc3{bottom:493.513067pt;}
.y16e{bottom:495.195600pt;}
.y1c{bottom:496.891067pt;}
.y1bb{bottom:497.958533pt;}
.y5f{bottom:500.077467pt;}
.y113{bottom:500.833333pt;}
.y16d{bottom:505.862267pt;}
.ya3{bottom:506.740267pt;}
.y1ba{bottom:508.625200pt;}
.y88{bottom:509.851733pt;}
.yc2{bottom:510.846400pt;}
.y1b{bottom:511.557733pt;}
.y16c{bottom:516.528933pt;}
.y5e{bottom:517.410800pt;}
.y112{bottom:518.166667pt;}
.y1b9{bottom:519.291867pt;}
.y1a{bottom:526.224400pt;}
.y87{bottom:527.185067pt;}
.y16b{bottom:527.195600pt;}
.yc1{bottom:528.179733pt;}
.y1b8{bottom:529.958533pt;}
.ya2{bottom:531.632667pt;}
.y5d{bottom:534.744133pt;}
.y146{bottom:535.500000pt;}
.y16a{bottom:537.862267pt;}
.y1b7{bottom:540.625200pt;}
.y111{bottom:543.059067pt;}
.y86{bottom:544.518400pt;}
.yc0{bottom:545.513067pt;}
.y19{bottom:548.450133pt;}
.y169{bottom:548.528933pt;}
.ya1{bottom:548.966000pt;}
.y1b6{bottom:551.291867pt;}
.y5c{bottom:552.077467pt;}
.y145{bottom:552.833333pt;}
.y168{bottom:559.195600pt;}
.y110{bottom:560.392400pt;}
.y85{bottom:561.851733pt;}
.y1b5{bottom:561.958533pt;}
.ybf{bottom:562.846400pt;}
.y18{bottom:563.116800pt;}
.ya0{bottom:566.299333pt;}
.y167{bottom:569.862267pt;}
.y144{bottom:570.166667pt;}
.y1b4{bottom:572.625200pt;}
.y5b{bottom:576.969867pt;}
.y10f{bottom:577.725733pt;}
.y17{bottom:577.783467pt;}
.y84{bottom:579.185067pt;}
.ybe{bottom:580.179733pt;}
.y166{bottom:580.528933pt;}
.y1b3{bottom:583.291867pt;}
.y9f{bottom:583.632667pt;}
.y165{bottom:591.195600pt;}
.y16{bottom:592.450133pt;}
.y1b2{bottom:593.958533pt;}
.y5a{bottom:594.303200pt;}
.y10e{bottom:595.059067pt;}
.ybd{bottom:597.513067pt;}
.y9e{bottom:600.966000pt;}
.y164{bottom:601.862267pt;}
.y83{bottom:604.077467pt;}
.y1b1{bottom:604.625200pt;}
.y143{bottom:604.833333pt;}
.y59{bottom:611.636533pt;}
.y15{bottom:612.009200pt;}
.y10d{bottom:612.392400pt;}
.y163{bottom:612.528933pt;}
.ybc{bottom:614.846400pt;}
.y1b0{bottom:615.291867pt;}
.y82{bottom:621.410800pt;}
.y142{bottom:622.166667pt;}
.y162{bottom:623.195600pt;}
.y1af{bottom:625.958533pt;}
.y58{bottom:628.969867pt;}
.yda{bottom:629.128533pt;}
.y10c{bottom:629.725733pt;}
.y161{bottom:633.862267pt;}
.y1ae{bottom:636.625200pt;}
.y81{bottom:638.744133pt;}
.y141{bottom:639.500000pt;}
.y160{bottom:644.528933pt;}
.yd9{bottom:645.932400pt;}
.y57{bottom:646.303200pt;}
.y10b{bottom:647.059067pt;}
.y1ad{bottom:647.291867pt;}
.yc{bottom:650.315467pt;}
.yf1{bottom:653.246800pt;}
.y15f{bottom:655.195600pt;}
.y80{bottom:656.077467pt;}
.y140{bottom:656.833333pt;}
.y1ac{bottom:657.958533pt;}
.yf0{bottom:661.648667pt;}
.yb{bottom:662.315467pt;}
.yd8{bottom:662.736267pt;}
.y56{bottom:663.636533pt;}
.y10a{bottom:664.392400pt;}
.y15e{bottom:665.862267pt;}
.y1ab{bottom:668.625200pt;}
.y7f{bottom:673.410800pt;}
.y13f{bottom:674.166667pt;}
.ya{bottom:674.315467pt;}
.y15d{bottom:676.528933pt;}
.yee{bottom:678.452533pt;}
.y1aa{bottom:679.291867pt;}
.yd7{bottom:679.540133pt;}
.y55{bottom:680.969867pt;}
.y109{bottom:681.725733pt;}
.yef{bottom:686.854533pt;}
.y15c{bottom:687.195600pt;}
.y1a9{bottom:689.958533pt;}
.y7e{bottom:690.744133pt;}
.y13e{bottom:691.500133pt;}
.yed{bottom:695.256400pt;}
.yd6{bottom:696.343867pt;}
.y15b{bottom:697.862267pt;}
.y54{bottom:698.303200pt;}
.y9{bottom:698.315467pt;}
.y108{bottom:699.059067pt;}
.y1a8{bottom:700.625200pt;}
.y7d{bottom:708.077467pt;}
.y15a{bottom:708.528933pt;}
.y13d{bottom:708.833467pt;}
.y8{bottom:710.315467pt;}
.y1a7{bottom:711.291867pt;}
.yd5{bottom:713.147733pt;}
.y53{bottom:715.636533pt;}
.y107{bottom:716.392400pt;}
.y159{bottom:719.195600pt;}
.y1a6{bottom:721.958533pt;}
.yec{bottom:722.016000pt;}
.y7{bottom:722.315467pt;}
.y7c{bottom:725.410800pt;}
.y13c{bottom:726.166800pt;}
.yd4{bottom:729.951600pt;}
.y1a5{bottom:732.625200pt;}
.y52{bottom:732.969867pt;}
.y106{bottom:733.725733pt;}
.yeb{bottom:738.016000pt;}
.y158{bottom:740.528933pt;}
.y7b{bottom:742.744133pt;}
.y1a4{bottom:743.291867pt;}
.y13b{bottom:743.500133pt;}
.y6{bottom:746.315467pt;}
.yd3{bottom:746.755600pt;}
.y51{bottom:750.303200pt;}
.y1a3{bottom:753.958533pt;}
.yea{bottom:754.016000pt;}
.y105{bottom:758.618133pt;}
.y13a{bottom:760.833467pt;}
.y5{bottom:762.311467pt;}
.yd2{bottom:763.559333pt;}
.y1a2{bottom:764.625200pt;}
.y50{bottom:767.636533pt;}
.yf2{bottom:771.947467pt;}
.y4{bottom:774.311467pt;}
.y157{bottom:775.195600pt;}
.y1a1{bottom:775.291867pt;}
.y104{bottom:775.951467pt;}
.y139{bottom:778.166800pt;}
.yd1{bottom:780.363200pt;}
.y3{bottom:782.315467pt;}
.y4f{bottom:784.969867pt;}
.y1a0{bottom:785.958533pt;}
.y156{bottom:792.528933pt;}
.y103{bottom:793.284800pt;}
.y138{bottom:795.500133pt;}
.y19f{bottom:796.625200pt;}
.yd0{bottom:797.166933pt;}
.y4e{bottom:802.303200pt;}
.ye8{bottom:802.618000pt;}
.y2{bottom:806.315467pt;}
.y19e{bottom:807.291867pt;}
.y155{bottom:809.862267pt;}
.y102{bottom:810.618133pt;}
.ye7{bottom:811.020000pt;}
.yd{bottom:811.434933pt;}
.ycf{bottom:813.970800pt;}
.y19d{bottom:817.958533pt;}
.y1{bottom:818.315467pt;}
.y4d{bottom:819.636533pt;}
.y137{bottom:820.392400pt;}
.y154{bottom:827.195600pt;}
.ye5{bottom:827.823867pt;}
.y101{bottom:827.951467pt;}
.y19c{bottom:828.625200pt;}
.yce{bottom:830.774800pt;}
.ye6{bottom:836.225733pt;}
.y4c{bottom:836.969867pt;}
.y136{bottom:837.725733pt;}
.y19b{bottom:839.291867pt;}
.y7a{bottom:844.528933pt;}
.ye4{bottom:844.627733pt;}
.y100{bottom:845.284800pt;}
.ycd{bottom:847.578667pt;}
.y19a{bottom:849.958533pt;}
.y4b{bottom:854.303200pt;}
.y135{bottom:855.059067pt;}
.y199{bottom:860.625200pt;}
.y79{bottom:861.862267pt;}
.yff{bottom:862.618133pt;}
.ycc{bottom:864.382400pt;}
.y12{bottom:864.876000pt;}
.y198{bottom:871.291867pt;}
.ye3{bottom:871.387333pt;}
.y4a{bottom:871.636533pt;}
.y134{bottom:872.392400pt;}
.y78{bottom:879.195600pt;}
.yfe{bottom:879.951467pt;}
.ycb{bottom:881.186267pt;}
.y197{bottom:881.958533pt;}
.ye2{bottom:887.387333pt;}
.y133{bottom:889.725733pt;}
.y196{bottom:892.625200pt;}
.y49{bottom:896.528933pt;}
.yfd{bottom:897.284800pt;}
.yca{bottom:897.990133pt;}
.y195{bottom:903.291867pt;}
.ye9{bottom:906.666000pt;}
.y132{bottom:907.059067pt;}
.y48{bottom:913.862267pt;}
.y194{bottom:913.958533pt;}
.yfc{bottom:914.618133pt;}
.yc9{bottom:914.794000pt;}
.y131{bottom:924.392400pt;}
.y193{bottom:924.625200pt;}
.y47{bottom:931.195600pt;}
.yf{bottom:931.457467pt;}
.yc8{bottom:931.597867pt;}
.yfb{bottom:931.951467pt;}
.ye1{bottom:933.122667pt;}
.y192{bottom:935.291867pt;}
.y130{bottom:941.725733pt;}
.y191{bottom:945.958533pt;}
.yc7{bottom:948.401733pt;}
.y46{bottom:948.528933pt;}
.ye0{bottom:948.756000pt;}
.yfa{bottom:949.284800pt;}
.y190{bottom:956.625200pt;}
.y12f{bottom:959.059067pt;}
.y10{bottom:963.490667pt;}
.yc6{bottom:965.205467pt;}
.ydf{bottom:965.559867pt;}
.y45{bottom:965.862267pt;}
.yf9{bottom:966.618133pt;}
.y18f{bottom:967.291867pt;}
.y12e{bottom:976.392400pt;}
.y18e{bottom:977.958533pt;}
.y44{bottom:983.195600pt;}
.yc5{bottom:983.896533pt;}
.ydd{bottom:983.917467pt;}
.yf8{bottom:983.951467pt;}
.y18d{bottom:988.625200pt;}
.y12d{bottom:993.725733pt;}
.y18c{bottom:999.291867pt;}
.yde{bottom:999.917467pt;}
.y43{bottom:1000.528933pt;}
.yf7{bottom:1001.284800pt;}
.ydc{bottom:1002.786667pt;}
.y18b{bottom:1009.958533pt;}
.y42{bottom:1017.862267pt;}
.yf6{bottom:1018.618133pt;}
.ydb{bottom:1018.786667pt;}
.y18a{bottom:1020.625200pt;}
.y3f{bottom:1055.893867pt;}
.hb{height:21.073021pt;}
.h4{height:24.070687pt;}
.h2{height:28.916667pt;}
.ha{height:30.666667pt;}
.h5{height:33.328125pt;}
.h6{height:35.604167pt;}
.h11{height:36.145833pt;}
.hf{height:37.333333pt;}
.he{height:39.760417pt;}
.h3{height:40.054688pt;}
.h10{height:40.734375pt;}
.h7{height:43.375000pt;}
.hc{height:44.505208pt;}
.hd{height:48.955729pt;}
.h9{height:52.354167pt;}
.h12{height:68.145833pt;}
.h8{height:74.666667pt;}
.h14{height:78.112675pt;}
.h13{height:78.113208pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:530.666667pt;}
.w2{width:624.000267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:5.356533pt;}
.x4{left:56.692933pt;}
.xf{left:61.472400pt;}
.xc{left:62.362133pt;}
.x2{left:65.585333pt;}
.x1{left:66.918667pt;}
.x7{left:77.700400pt;}
.x1d{left:80.692933pt;}
.xb{left:84.808400pt;}
.x6{left:114.618400pt;}
.xe{left:143.340400pt;}
.x8{left:191.588000pt;}
.x5{left:274.336800pt;}
.xd{left:408.188933pt;}
.x13{left:412.968533pt;}
.x17{left:415.693200pt;}
.x15{left:418.051333pt;}
.x18{left:419.737467pt;}
.x19{left:431.947733pt;}
.x14{left:433.456933pt;}
.x1c{left:497.385867pt;}
.x1a{left:514.742800pt;}
.x10{left:546.628133pt;}
.xa{left:567.257867pt;}
.x11{left:611.637600pt;}
.x3{left:615.267333pt;}
.x12{left:620.675333pt;}
.x16{left:684.654800pt;}
.x1b{left:688.378800pt;}
}




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