
    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_a49da12a51abf9fd62cf1ec5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185000;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_aae538ce30d7941f2550bb8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.222000;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_86636eeaf95b3a7c72a85f41.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_8986fec407173ab824c4a9d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202000;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_86f18f911c3b9fd540684e0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_1ac663650de5b542e1a48926.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_b6e83de3a0e9b4a6a681ef59.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692871;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_f41188328d9daae3280c214a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_7c85f789ea49e7f7512bbe5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971191;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;}
.m1{transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225803,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,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);}
.vc{vertical-align:-107.279847px;}
.vd{vertical-align:-83.519986px;}
.v7{vertical-align:-38.879995px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.239870px;}
.v3{vertical-align:15.119937px;}
.v6{vertical-align:20.879995px;}
.v1{vertical-align:23.759996px;}
.v5{vertical-align:28.800113px;}
.va{vertical-align:35.280050px;}
.v8{vertical-align:48.240005px;}
.v9{vertical-align:59.759996px;}
.vb{vertical-align:95.039977px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.145757px;}
.ls7{letter-spacing:0.179554px;}
.ls5{letter-spacing:25.512671px;}
.ls4{letter-spacing:222.663177px;}
.ls2{letter-spacing:229.863069px;}
.ls3{letter-spacing:234.903186px;}
.ls6{letter-spacing:535.992680px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(219,65,67),0 0.015em rgb(219,65,67),0.015em 0 rgb(219,65,67),0 -0.015em  rgb(219,65,67);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(219,65,67);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-48.241800px;}
.ws2{word-spacing:-45.001798px;}
.ws9{word-spacing:-19.120340px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.wsb{word-spacing:-11.336823px;}
.wsd{word-spacing:-10.564954px;}
.wsc{word-spacing:-9.986053px;}
.ws4{word-spacing:-9.934234px;}
.ws6{word-spacing:-9.000349px;}
.ws7{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.wsa{word-spacing:-7.783496px;}
.ws5{word-spacing:-6.622816px;}
.ws8{word-spacing:0.000000px;}
._50{margin-left:-11.703344px;}
._49{margin-left:-6.496821px;}
._4f{margin-left:-4.792772px;}
._8{margin-left:-3.403261px;}
._7{margin-left:-2.393123px;}
._0{margin-left:-1.350770px;}
._1{width:1.157803px;}
._9{width:2.675325px;}
._5{width:3.925397px;}
._6{width:5.819041px;}
._b{width:7.468059px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._14{width:11.749586px;}
._11{width:12.832319px;}
._f{width:14.569024px;}
._a{width:15.630343px;}
._16{width:16.827012px;}
._10{width:17.882037px;}
._e{width:18.986654px;}
._d{width:20.001380px;}
._c{width:21.033425px;}
._15{width:22.468489px;}
._55{width:24.048796px;}
._45{width:25.255719px;}
._46{width:26.259441px;}
._47{width:27.398527px;}
._4c{width:30.528491px;}
._4e{width:40.870982px;}
._56{width:42.259817px;}
._4b{width:49.126829px;}
._52{width:51.474001px;}
._48{width:53.300115px;}
._51{width:55.293314px;}
._4d{width:57.745571px;}
._1f{width:119.017899px;}
._53{width:121.135160px;}
._12{width:136.041876px;}
._17{width:137.084228px;}
._54{width:142.023859px;}
._4a{width:149.819942px;}
._43{width:154.160988px;}
._2e{width:159.471309px;}
._37{width:182.017025px;}
._34{width:193.994400px;}
._25{width:197.435180px;}
._13{width:202.519076px;}
._44{width:208.394454px;}
._20{width:209.415858px;}
._2f{width:220.710289px;}
._3d{width:233.181057px;}
._26{width:242.410153px;}
._3c{width:249.828356px;}
._21{width:254.567086px;}
._2c{width:264.005708px;}
._38{width:265.377918px;}
._2a{width:266.728912px;}
._1b{width:274.402788px;}
._27{width:276.074359px;}
._39{width:277.756480px;}
._23{width:278.789362px;}
._3f{width:279.969835px;}
._35{width:282.658035px;}
._41{width:283.731779px;}
._29{width:288.314499px;}
._1a{width:290.504646px;}
._19{width:292.111075px;}
._1d{width:296.098450px;}
._22{width:300.292013px;}
._3e{width:305.061339px;}
._3b{width:307.660637px;}
._32{width:314.950549px;}
._1c{width:321.907818px;}
._31{width:337.686877px;}
._30{width:349.267894px;}
._3a{width:353.689073px;}
._42{width:366.617876px;}
._36{width:373.468211px;}
._40{width:378.466391px;}
._33{width:392.215304px;}
._2d{width:445.746832px;}
._28{width:670.127171px;}
._2b{width:767.539724px;}
._24{width:779.756129px;}
._1e{width:795.147518px;}
._18{width:987.906832px;}
._4{width:1196.879058px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(219,65,67);}
.fc2{color:rgb(1,3,2);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:27.361080px;}
.fsd{font-size:30.241170px;}
.fs13{font-size:33.121260px;}
.fsf{font-size:36.001395px;}
.fs9{font-size:38.881485px;}
.fs5{font-size:41.759538px;}
.fsc{font-size:41.761620px;}
.fsb{font-size:45.361800px;}
.fs0{font-size:48.241800px;}
.fs10{font-size:50.985391px;}
.fsa{font-size:54.002250px;}
.fs12{font-size:56.882250px;}
.fs2{font-size:59.762250px;}
.fs14{font-size:63.362250px;}
.fs8{font-size:66.242700px;}
.fs7{font-size:72.002705px;}
.fs1{font-size:74.882700px;}
.fs3{font-size:77.763154px;}
.fs11{font-size:81.363150px;}
.fs6{font-size:108.004050px;}
.fs4{font-size:180.007191px;}
.y7f{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y52{bottom:2.879997px;}
.y50{bottom:2.880065px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.y103{bottom:6.299972px;}
.y117{bottom:6.300042px;}
.y19{bottom:14.760132px;}
.y18{bottom:28.620072px;}
.y17{bottom:43.020127px;}
.y16{bottom:43.033969px;}
.y15{bottom:55.096090px;}
.y14{bottom:67.151989px;}
.y13{bottom:79.210999px;}
.yf{bottom:83.340088px;}
.y12{bottom:91.273120px;}
.y11{bottom:103.335366px;}
.y14f{bottom:105.480011px;}
.ydf{bottom:108.540115px;}
.y10{bottom:115.572842px;}
.yb2{bottom:118.260064px;}
.y14e{bottom:118.980079px;}
.y122{bottom:120.060036px;}
.ye{bottom:127.800041px;}
.y17e{bottom:128.700096px;}
.yde{bottom:129.600083px;}
.y14d{bottom:132.300041px;}
.yb1{bottom:139.320099px;}
.y17d{bottom:142.920043px;}
.y14c{bottom:145.620072px;}
.y13a{bottom:147.780052px;}
.y121{bottom:156.240074px;}
.y14b{bottom:158.940033px;}
.yb0{bottom:160.560036px;}
.y139{bottom:168.840088px;}
.y14a{bottom:172.260064px;}
.y17c{bottom:172.440033px;}
.y7e{bottom:172.800041px;}
.ydd{bottom:175.500068px;}
.y7d{bottom:177.840088px;}
.yaf{bottom:181.620072px;}
.y149{bottom:185.580093px;}
.y138{bottom:189.900055px;}
.y7c{bottom:191.340088px;}
.y120{bottom:192.240074px;}
.y148{bottom:198.900055px;}
.yae{bottom:202.680039px;}
.y17b{bottom:209.700096px;}
.y137{bottom:211.140060px;}
.y147{bottom:212.220085px;}
.y7b{bottom:213.300041px;}
.yad{bottom:223.920043px;}
.y146{bottom:225.540047px;}
.ydc{bottom:225.720085px;}
.y7a{bottom:226.080093px;}
.y11f{bottom:228.600083px;}
.y4f{bottom:230.940033px;}
.y136{bottom:232.200096px;}
.y4e{bottom:233.820099px;}
.y17a{bottom:238.140060px;}
.y145{bottom:238.860077px;}
.yac{bottom:244.980079px;}
.y79{bottom:248.040047px;}
.y11e{bottom:249.660049px;}
.y4d{bottom:251.640060px;}
.y179{bottom:252.360077px;}
.y135{bottom:253.440033px;}
.yab{bottom:266.220085px;}
.y4c{bottom:269.460091px;}
.y78{bottom:269.820099px;}
.y11d{bottom:270.720085px;}
.y134{bottom:274.500068px;}
.y4b{bottom:284.580093px;}
.y178{bottom:284.940033px;}
.yaa{bottom:287.280052px;}
.ydb{bottom:288.000068px;}
.y77{bottom:291.600083px;}
.y11c{bottom:291.960091px;}
.y133{bottom:295.560036px;}
.y144{bottom:298.980079px;}
.y4a{bottom:302.400055px;}
.yda{bottom:307.260064px;}
.ya9{bottom:308.340088px;}
.y11b{bottom:313.020058px;}
.y76{bottom:313.560036px;}
.y132{bottom:316.800041px;}
.y177{bottom:316.980079px;}
.y49{bottom:318.060036px;}
.y143{bottom:320.040047px;}
.ya8{bottom:329.580093px;}
.y48{bottom:332.280052px;}
.y11a{bottom:334.080093px;}
.y75{bottom:335.340088px;}
.y131{bottom:337.860077px;}
.y142{bottom:341.280052px;}
.y47{bottom:346.500068px;}
.yd9{bottom:351.540047px;}
.ya7{bottom:353.880066px;}
.y74{bottom:357.120072px;}
.y130{bottom:359.100083px;}
.y46{bottom:360.720085px;}
.y141{bottom:362.340088px;}
.y176{bottom:367.560036px;}
.y119{bottom:370.260064px;}
.yd8{bottom:371.700096px;}
.y45{bottom:374.940033px;}
.y73{bottom:379.080093px;}
.y12f{bottom:380.160049px;}
.ya6{bottom:380.700096px;}
.y175{bottom:380.880066px;}
.y140{bottom:383.400055px;}
.y116{bottom:384.660049px;}
.y44{bottom:389.160049px;}
.y114{bottom:391.140060px;}
.y112{bottom:394.020058px;}
.y174{bottom:394.380066px;}
.y72{bottom:400.860077px;}
.ya5{bottom:401.760064px;}
.y43{bottom:403.380066px;}
.y13f{bottom:404.640060px;}
.y1a7{bottom:405.360077px;}
.y118{bottom:406.080093px;}
.y111{bottom:412.020058px;}
.y173{bottom:412.740074px;}
.y115{bottom:414.900055px;}
.y113{bottom:415.080093px;}
.y42{bottom:417.600083px;}
.yd7{bottom:417.960091px;}
.y71{bottom:423.000068px;}
.y13e{bottom:425.700096px;}
.y12e{bottom:431.280052px;}
.y41{bottom:431.820099px;}
.y110{bottom:433.620072px;}
.y10e{bottom:433.800041px;}
.ya4{bottom:444.060036px;}
.y172{bottom:444.780052px;}
.y70{bottom:445.140060px;}
.y10d{bottom:445.500068px;}
.y40{bottom:446.040047px;}
.y13d{bottom:446.940033px;}
.y12d{bottom:452.520058px;}
.y10f{bottom:457.380066px;}
.y1a6{bottom:457.920043px;}
.y171{bottom:458.280052px;}
.y3f{bottom:460.260064px;}
.yd6{bottom:462.420043px;}
.ya3{bottom:465.300041px;}
.y6f{bottom:468.000068px;}
.y170{bottom:471.600083px;}
.y12c{bottom:473.580093px;}
.y3e{bottom:474.480079px;}
.y10c{bottom:476.100083px;}
.y10a{bottom:476.280052px;}
.y1a5{bottom:478.980079px;}
.ya2{bottom:486.360077px;}
.y109{bottom:488.160049px;}
.y3d{bottom:488.700096px;}
.y13c{bottom:489.060036px;}
.y6e{bottom:490.680039px;}
.y1a4{bottom:493.200096px;}
.y12b{bottom:494.820099px;}
.yd5{bottom:495.720085px;}
.y10b{bottom:499.860077px;}
.y3c{bottom:502.920043px;}
.ya1{bottom:507.420043px;}
.y13b{bottom:510.300041px;}
.y6d{bottom:512.640060px;}
.y16f{bottom:513.180039px;}
.y12a{bottom:515.880066px;}
.y3b{bottom:517.140060px;}
.y108{bottom:518.580093px;}
.y106{bottom:518.760064px;}
.yd4{bottom:525.600083px;}
.y16e{bottom:526.500068px;}
.ya0{bottom:528.660049px;}
.y1a3{bottom:529.020058px;}
.y105{bottom:530.640060px;}
.y3a{bottom:531.360077px;}
.y6c{bottom:531.900055px;}
.y129{bottom:536.940033px;}
.y16d{bottom:540.000068px;}
.y107{bottom:542.340088px;}
.y1a2{bottom:543.240074px;}
.y39{bottom:545.580093px;}
.y9f{bottom:549.720085px;}
.y6b{bottom:551.340088px;}
.yd3{bottom:552.600083px;}
.y102{bottom:554.760064px;}
.y1a1{bottom:557.460091px;}
.y38{bottom:559.800041px;}
.y100{bottom:561.240074px;}
.y128{bottom:565.560036px;}
.y6a{bottom:568.620072px;}
.y9e{bottom:570.960091px;}
.yff{bottom:573.120072px;}
.y16c{bottom:573.300041px;}
.yd2{bottom:573.660049px;}
.y37{bottom:576.000068px;}
.y104{bottom:576.180039px;}
.y1a0{bottom:579.240074px;}
.y101{bottom:585.000068px;}
.y16b{bottom:590.400055px;}
.y9d{bottom:592.020058px;}
.y19f{bottom:593.460091px;}
.yd1{bottom:594.720085px;}
.y36{bottom:598.320099px;}
.y69{bottom:601.560036px;}
.yfe{bottom:603.720085px;}
.yfc{bottom:603.900055px;}
.y9c{bottom:613.080093px;}
.y68{bottom:614.160049px;}
.y35{bottom:614.700096px;}
.y19e{bottom:615.240074px;}
.yfb{bottom:615.600083px;}
.yd0{bottom:615.960091px;}
.y16a{bottom:617.040047px;}
.y67{bottom:627.300041px;}
.yfd{bottom:627.480079px;}
.y19d{bottom:629.460091px;}
.y169{bottom:630.360077px;}
.y34{bottom:633.060036px;}
.y9b{bottom:634.320099px;}
.ycf{bottom:637.020058px;}
.y66{bottom:639.900055px;}
.y168{bottom:643.680039px;}
.y33{bottom:650.700096px;}
.y65{bottom:653.400055px;}
.y9a{bottom:655.380066px;}
.y167{bottom:657.000068px;}
.y19c{bottom:657.900055px;}
.yce{bottom:658.260064px;}
.y32{bottom:664.920043px;}
.y64{bottom:667.620072px;}
.y166{bottom:675.360077px;}
.y99{bottom:676.620072px;}
.y31{bottom:679.140060px;}
.ycd{bottom:679.320099px;}
.y19b{bottom:679.500068px;}
.y63{bottom:681.840088px;}
.yfa{bottom:689.940067px;}
.y30{bottom:693.360077px;}
.y19a{bottom:693.720051px;}
.y62{bottom:696.060070px;}
.y98{bottom:697.680073px;}
.ycc{bottom:700.380066px;}
.y2f{bottom:707.580059px;}
.y199{bottom:707.940067px;}
.y61{bottom:714.780052px;}
.y97{bottom:718.920078px;}
.yf9{bottom:720.000068px;}
.y165{bottom:721.080059px;}
.ycb{bottom:721.620072px;}
.y2e{bottom:721.800076px;}
.y60{bottom:724.500068px;}
.y198{bottom:729.720051px;}
.y164{bottom:734.400055px;}
.y2d{bottom:736.020058px;}
.y5f{bottom:738.720051px;}
.y96{bottom:739.980079px;}
.yf8{bottom:741.060070px;}
.yca{bottom:742.680073px;}
.y197{bottom:743.940067px;}
.y163{bottom:747.720051px;}
.y2c{bottom:750.240074px;}
.y5e{bottom:752.940067px;}
.y196{bottom:758.160049px;}
.y95{bottom:761.040081px;}
.yf7{bottom:762.300076px;}
.yc9{bottom:763.920078px;}
.y2b{bottom:764.460056px;}
.y5d{bottom:767.160049px;}
.y162{bottom:774.360077px;}
.y2a{bottom:778.680073px;}
.y195{bottom:779.940067px;}
.y5c{bottom:781.380066px;}
.y94{bottom:782.280052px;}
.yf6{bottom:783.360077px;}
.yc8{bottom:784.980079px;}
.y161{bottom:787.680073px;}
.y29{bottom:792.900055px;}
.y5b{bottom:800.100083px;}
.y194{bottom:801.540081px;}
.y93{bottom:803.340054px;}
.yf5{bottom:804.600083px;}
.yc7{bottom:806.040081px;}
.y28{bottom:807.120072px;}
.y127{bottom:813.600083px;}
.y5a{bottom:814.320065px;}
.y193{bottom:815.760064px;}
.y27{bottom:821.340054px;}
.y59{bottom:823.680073px;}
.y92{bottom:824.580059px;}
.yf4{bottom:825.660049px;}
.yc6{bottom:827.280052px;}
.y192{bottom:829.980079px;}
.y126{bottom:834.660049px;}
.y26{bottom:835.560070px;}
.y58{bottom:836.100083px;}
.y160{bottom:838.260064px;}
.y91{bottom:845.640060px;}
.yf3{bottom:846.720051px;}
.yc5{bottom:848.340054px;}
.y57{bottom:848.880066px;}
.y25{bottom:849.780052px;}
.y15f{bottom:851.580059px;}
.y191{bottom:851.760064px;}
.y125{bottom:855.900055px;}
.y56{bottom:863.100083px;}
.y24{bottom:864.000068px;}
.y15e{bottom:864.900055px;}
.y190{bottom:865.980079px;}
.y90{bottom:866.700061px;}
.yc4{bottom:869.580059px;}
.y124{bottom:876.960056px;}
.y55{bottom:877.320065px;}
.y23{bottom:878.220051px;}
.y18f{bottom:880.200061px;}
.yf2{bottom:881.820065px;}
.y8f{bottom:887.940067px;}
.yc3{bottom:890.640060px;}
.y54{bottom:891.540081px;}
.y22{bottom:892.440067px;}
.yf1{bottom:900.360077px;}
.yef{bottom:900.540081px;}
.y18e{bottom:901.980079px;}
.y15d{bottom:904.860077px;}
.y53{bottom:905.580059px;}
.y21{bottom:906.660049px;}
.y8e{bottom:909.000068px;}
.yc2{bottom:911.700061px;}
.yee{bottom:912.420078px;}
.y18d{bottom:916.020058px;}
.y51{bottom:916.560070px;}
.y15c{bottom:918.360077px;}
.y20{bottom:921.600083px;}
.yf0{bottom:924.120072px;}
.y8d{bottom:930.240074px;}
.y18c{bottom:931.140060px;}
.yc1{bottom:932.940067px;}
.yed{bottom:942.840054px;}
.yeb{bottom:943.020058px;}
.y15b{bottom:946.620072px;}
.y1f{bottom:949.500068px;}
.y8c{bottom:951.300076px;}
.y18b{bottom:952.920078px;}
.yc0{bottom:954.000068px;}
.yea{bottom:954.900055px;}
.y15a{bottom:959.940067px;}
.yec{bottom:966.600083px;}
.y18a{bottom:967.140060px;}
.y8b{bottom:972.360077px;}
.y159{bottom:973.260064px;}
.ybf{bottom:975.240074px;}
.y189{bottom:981.360060px;}
.y1e{bottom:983.700061px;}
.ye9{bottom:985.320065px;}
.ye7{bottom:985.500068px;}
.y158{bottom:986.580059px;}
.y8a{bottom:993.600065px;}
.ybe{bottom:996.300058px;}
.ye6{bottom:997.380066px;}
.y157{bottom:999.900072px;}
.y188{bottom:1002.960074px;}
.ye8{bottom:1009.080059px;}
.y1d{bottom:1012.320065px;}
.y156{bottom:1013.220068px;}
.y89{bottom:1014.660067px;}
.y187{bottom:1017.180073px;}
.ybd{bottom:1017.540064px;}
.ye5{bottom:1027.980063px;}
.ye3{bottom:1028.160067px;}
.y88{bottom:1035.900072px;}
.ybc{bottom:1038.600065px;}
.y186{bottom:1038.960074px;}
.ye2{bottom:1039.860060px;}
.y155{bottom:1046.520058px;}
.y1c{bottom:1047.240074px;}
.ye4{bottom:1051.740074px;}
.y185{bottom:1053.180073px;}
.y87{bottom:1056.960074px;}
.ybb{bottom:1059.660067px;}
.y184{bottom:1067.400072px;}
.y1b{bottom:1071.000068px;}
.y86{bottom:1078.020058px;}
.y154{bottom:1080.000068px;}
.yba{bottom:1080.900072px;}
.y183{bottom:1081.620072px;}
.ye1{bottom:1082.520058px;}
.y85{bottom:1099.260064px;}
.yb9{bottom:1101.960074px;}
.y182{bottom:1103.400072px;}
.y1a{bottom:1103.580059px;}
.ye0{bottom:1114.200061px;}
.y181{bottom:1117.620072px;}
.y84{bottom:1120.320065px;}
.y153{bottom:1121.940067px;}
.yb8{bottom:1123.200061px;}
.yd{bottom:1131.840063px;}
.y123{bottom:1135.260064px;}
.y152{bottom:1141.740066px;}
.yb7{bottom:1144.260064px;}
.yc{bottom:1149.660067px;}
.y180{bottom:1153.440067px;}
.y151{bottom:1155.060070px;}
.y83{bottom:1159.560070px;}
.yb6{bottom:1165.320065px;}
.y17f{bottom:1167.660067px;}
.y150{bottom:1168.380066px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.yb5{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y82{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.yb4{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y81{bottom:1216.080068px;}
.yb3{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y80{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h1d{height:1.800042px;}
.h15{height:13.319996px;}
.h14{height:13.680038px;}
.h2f{height:17.639991px;}
.h33{height:17.639992px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h1b{height:24.381804px;}
.h1a{height:25.137693px;}
.h19{height:28.275494px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.hf{height:36.354188px;}
.h18{height:39.047115px;}
.h1c{height:40.634056px;}
.h16{height:42.413283px;}
.h17{height:44.137031px;}
.h2{height:45.106083px;}
.h13{height:45.829710px;}
.h1e{height:45.926194px;}
.h3{height:46.891030px;}
.h36{height:46.939271px;}
.h37{height:47.671340px;}
.h1f{height:48.538092px;}
.h11{height:50.492104px;}
.h21{height:54.038138px;}
.h35{height:56.774138px;}
.h23{height:57.349696px;}
.h22{height:58.069580px;}
.h10{height:58.148669px;}
.he{height:61.936925px;}
.h38{height:62.665265px;}
.hd{height:68.546575px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h24{height:74.629823px;}
.h12{height:75.663549px;}
.h9{height:76.907760px;}
.h20{height:77.294993px;}
.h34{height:81.109557px;}
.h30{height:81.109827px;}
.h28{height:93.349701px;}
.h2c{height:94.069575px;}
.h2e{height:94.069580px;}
.h25{height:94.069715px;}
.hc{height:102.819856px;}
.h2d{height:105.589566px;}
.h32{height:105.589571px;}
.h27{height:105.589706px;}
.h2a{height:106.309719px;}
.ha{height:121.909167px;}
.h29{height:140.869688px;}
.h31{height:140.869692px;}
.h26{height:140.869755px;}
.h2b{height:140.869827px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:4.500000px;}
.w7{width:5.400003px;}
.w6{width:5.579991px;}
.w9{width:5.939999px;}
.w2{width:8.100014px;}
.w8{width:12.060001px;}
.wb{width:20.879998px;}
.wa{width:26.819995px;}
.wd{width:32.939998px;}
.wc{width:38.879998px;}
.w5{width:76.860008px;}
.w3{width:147.600014px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.x1a{left:56.159998px;}
.x1d{left:62.100001px;}
.xa{left:81.719999px;}
.x11{left:86.939999px;}
.x1{left:89.640000px;}
.x7{left:102.959997px;}
.x14{left:106.920001px;}
.x13{left:124.379998px;}
.x12{left:163.800007px;}
.x18{left:181.620002px;}
.x16{left:191.340002px;}
.x17{left:213.300007px;}
.x2b{left:218.699993px;}
.x1e{left:223.919992px;}
.x24{left:229.680005px;}
.x36{left:233.819996px;}
.x8{left:244.263088px;}
.x31{left:247.860008px;}
.xd{left:266.400003px;}
.x2f{left:267.840002px;}
.x1f{left:293.399987px;}
.x19{left:301.139992px;}
.x25{left:305.459988px;}
.x33{left:334.079990px;}
.xb{left:351.000000px;}
.x22{left:353.160015px;}
.x20{left:356.220017px;}
.x2a{left:359.100014px;}
.xf{left:362.699993px;}
.x26{left:383.040012px;}
.x2c{left:388.980011px;}
.x27{left:434.519989px;}
.xc{left:446.399987px;}
.x15{left:470.879998px;}
.x2d{left:490.680005px;}
.x23{left:493.740006px;}
.x21{left:496.620002px;}
.x28{left:517.500000px;}
.x2e{left:523.620002px;}
.xe{left:552.600014px;}
.x2{left:561.600014px;}
.x1c{left:580.320030px;}
.x1b{left:583.379998px;}
.x3{left:584.820030px;}
.x29{left:591.299973px;}
.x35{left:612.539978px;}
.x5{left:625.860008px;}
.x34{left:706.860008px;}
.x30{left:710.820030px;}
.x32{left:717.480011px;}
.x9{left:723.960023px;}
.x10{left:745.379998px;}
.x4{left:803.340019px;}
@media print{
.vc{vertical-align:-95.359864pt;}
.vd{vertical-align:-74.239988pt;}
.v7{vertical-align:-34.559996pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.879884pt;}
.v3{vertical-align:13.439944pt;}
.v6{vertical-align:18.559996pt;}
.v1{vertical-align:21.119996pt;}
.v5{vertical-align:25.600100pt;}
.va{vertical-align:31.360044pt;}
.v8{vertical-align:42.880004pt;}
.v9{vertical-align:53.119996pt;}
.vb{vertical-align:84.479980pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.129562pt;}
.ls7{letter-spacing:0.159604pt;}
.ls5{letter-spacing:22.677930pt;}
.ls4{letter-spacing:197.922824pt;}
.ls2{letter-spacing:204.322728pt;}
.ls3{letter-spacing:208.802832pt;}
.ls6{letter-spacing:476.437938pt;}
.wse{word-spacing:-42.881600pt;}
.ws2{word-spacing:-40.001598pt;}
.ws9{word-spacing:-16.995858pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.wsb{word-spacing:-10.077176pt;}
.wsd{word-spacing:-9.391070pt;}
.wsc{word-spacing:-8.876491pt;}
.ws4{word-spacing:-8.830430pt;}
.ws6{word-spacing:-8.000310pt;}
.ws7{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.wsa{word-spacing:-6.918663pt;}
.ws5{word-spacing:-5.886948pt;}
.ws8{word-spacing:0.000000pt;}
._50{margin-left:-10.402973pt;}
._49{margin-left:-5.774952pt;}
._4f{margin-left:-4.260242pt;}
._8{margin-left:-3.025121pt;}
._7{margin-left:-2.127220pt;}
._0{margin-left:-1.200685pt;}
._1{width:1.029158pt;}
._9{width:2.378066pt;}
._5{width:3.489241pt;}
._6{width:5.172481pt;}
._b{width:6.638275pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._14{width:10.444076pt;}
._11{width:11.406506pt;}
._f{width:12.950243pt;}
._a{width:13.893638pt;}
._16{width:14.957344pt;}
._10{width:15.895144pt;}
._e{width:16.877026pt;}
._d{width:17.779004pt;}
._c{width:18.696378pt;}
._15{width:19.971990pt;}
._55{width:21.376708pt;}
._45{width:22.449528pt;}
._46{width:23.341726pt;}
._47{width:24.354246pt;}
._4c{width:27.136437pt;}
._4e{width:36.329762pt;}
._56{width:37.564282pt;}
._4b{width:43.668293pt;}
._52{width:45.754667pt;}
._48{width:47.377880pt;}
._51{width:49.149612pt;}
._4d{width:51.329397pt;}
._1f{width:105.793688pt;}
._53{width:107.675698pt;}
._12{width:120.926112pt;}
._17{width:121.852648pt;}
._54{width:126.243430pt;}
._4a{width:133.173282pt;}
._43{width:137.031990pt;}
._2e{width:141.752275pt;}
._37{width:161.792911pt;}
._34{width:172.439466pt;}
._25{width:175.497938pt;}
._13{width:180.016957pt;}
._44{width:185.239514pt;}
._20{width:186.147430pt;}
._2f{width:196.186923pt;}
._3d{width:207.272050pt;}
._26{width:215.475691pt;}
._3c{width:222.069650pt;}
._21{width:226.281854pt;}
._2c{width:234.671740pt;}
._38{width:235.891482pt;}
._2a{width:237.092366pt;}
._1b{width:243.913590pt;}
._27{width:245.399430pt;}
._39{width:246.894649pt;}
._23{width:247.812766pt;}
._3f{width:248.862075pt;}
._35{width:251.251586pt;}
._41{width:252.206026pt;}
._29{width:256.279554pt;}
._1a{width:258.226352pt;}
._19{width:259.654289pt;}
._1d{width:263.198622pt;}
._22{width:266.926234pt;}
._3e{width:271.165634pt;}
._3b{width:273.476122pt;}
._32{width:279.956043pt;}
._1c{width:286.140282pt;}
._31{width:300.166113pt;}
._30{width:310.460350pt;}
._3a{width:314.390287pt;}
._42{width:325.882556pt;}
._36{width:331.971743pt;}
._40{width:336.414570pt;}
._33{width:348.635826pt;}
._2d{width:396.219406pt;}
._28{width:595.668596pt;}
._2b{width:682.257533pt;}
._24{width:693.116559pt;}
._1e{width:706.797794pt;}
._18{width:878.139406pt;}
._4{width:1063.892496pt;}
.fse{font-size:24.320960pt;}
.fsd{font-size:26.881040pt;}
.fs13{font-size:29.441120pt;}
.fsf{font-size:32.001240pt;}
.fs9{font-size:34.561320pt;}
.fs5{font-size:37.119590pt;}
.fsc{font-size:37.121440pt;}
.fsb{font-size:40.321600pt;}
.fs0{font-size:42.881600pt;}
.fs10{font-size:45.320347pt;}
.fsa{font-size:48.002000pt;}
.fs12{font-size:50.562000pt;}
.fs2{font-size:53.122000pt;}
.fs14{font-size:56.322000pt;}
.fs8{font-size:58.882400pt;}
.fs7{font-size:64.002404pt;}
.fs1{font-size:66.562400pt;}
.fs3{font-size:69.122804pt;}
.fs11{font-size:72.322800pt;}
.fs6{font-size:96.003600pt;}
.fs4{font-size:160.006392pt;}
.y7f{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:2.559997pt;}
.y50{bottom:2.560058pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.y103{bottom:5.599975pt;}
.y117{bottom:5.600037pt;}
.y19{bottom:13.120118pt;}
.y18{bottom:25.440064pt;}
.y17{bottom:38.240113pt;}
.y16{bottom:38.252417pt;}
.y15{bottom:48.974302pt;}
.y14{bottom:59.690657pt;}
.y13{bottom:70.409777pt;}
.yf{bottom:74.080079pt;}
.y12{bottom:81.131662pt;}
.y11{bottom:91.853659pt;}
.y14f{bottom:93.760010pt;}
.ydf{bottom:96.480103pt;}
.y10{bottom:102.731415pt;}
.yb2{bottom:105.120057pt;}
.y14e{bottom:105.760071pt;}
.y122{bottom:106.720032pt;}
.ye{bottom:113.600037pt;}
.y17e{bottom:114.400086pt;}
.yde{bottom:115.200074pt;}
.y14d{bottom:117.600037pt;}
.yb1{bottom:123.840088pt;}
.y17d{bottom:127.040039pt;}
.y14c{bottom:129.440064pt;}
.y13a{bottom:131.360047pt;}
.y121{bottom:138.880066pt;}
.y14b{bottom:141.280030pt;}
.yb0{bottom:142.720032pt;}
.y139{bottom:150.080079pt;}
.y14a{bottom:153.120057pt;}
.y17c{bottom:153.280030pt;}
.y7e{bottom:153.600037pt;}
.ydd{bottom:156.000061pt;}
.y7d{bottom:158.080079pt;}
.yaf{bottom:161.440064pt;}
.y149{bottom:164.960083pt;}
.y138{bottom:168.800049pt;}
.y7c{bottom:170.080079pt;}
.y120{bottom:170.880066pt;}
.y148{bottom:176.800049pt;}
.yae{bottom:180.160035pt;}
.y17b{bottom:186.400086pt;}
.y137{bottom:187.680054pt;}
.y147{bottom:188.640076pt;}
.y7b{bottom:189.600037pt;}
.yad{bottom:199.040039pt;}
.y146{bottom:200.480042pt;}
.ydc{bottom:200.640076pt;}
.y7a{bottom:200.960083pt;}
.y11f{bottom:203.200074pt;}
.y4f{bottom:205.280030pt;}
.y136{bottom:206.400086pt;}
.y4e{bottom:207.840088pt;}
.y17a{bottom:211.680054pt;}
.y145{bottom:212.320069pt;}
.yac{bottom:217.760071pt;}
.y79{bottom:220.480042pt;}
.y11e{bottom:221.920044pt;}
.y4d{bottom:223.680054pt;}
.y179{bottom:224.320069pt;}
.y135{bottom:225.280030pt;}
.yab{bottom:236.640076pt;}
.y4c{bottom:239.520081pt;}
.y78{bottom:239.840088pt;}
.y11d{bottom:240.640076pt;}
.y134{bottom:244.000061pt;}
.y4b{bottom:252.960083pt;}
.y178{bottom:253.280030pt;}
.yaa{bottom:255.360047pt;}
.ydb{bottom:256.000061pt;}
.y77{bottom:259.200074pt;}
.y11c{bottom:259.520081pt;}
.y133{bottom:262.720032pt;}
.y144{bottom:265.760071pt;}
.y4a{bottom:268.800049pt;}
.yda{bottom:273.120057pt;}
.ya9{bottom:274.080079pt;}
.y11b{bottom:278.240052pt;}
.y76{bottom:278.720032pt;}
.y132{bottom:281.600037pt;}
.y177{bottom:281.760071pt;}
.y49{bottom:282.720032pt;}
.y143{bottom:284.480042pt;}
.ya8{bottom:292.960083pt;}
.y48{bottom:295.360047pt;}
.y11a{bottom:296.960083pt;}
.y75{bottom:298.080079pt;}
.y131{bottom:300.320069pt;}
.y142{bottom:303.360047pt;}
.y47{bottom:308.000061pt;}
.yd9{bottom:312.480042pt;}
.ya7{bottom:314.560059pt;}
.y74{bottom:317.440064pt;}
.y130{bottom:319.200074pt;}
.y46{bottom:320.640076pt;}
.y141{bottom:322.080079pt;}
.y176{bottom:326.720032pt;}
.y119{bottom:329.120057pt;}
.yd8{bottom:330.400086pt;}
.y45{bottom:333.280030pt;}
.y73{bottom:336.960083pt;}
.y12f{bottom:337.920044pt;}
.ya6{bottom:338.400086pt;}
.y175{bottom:338.560059pt;}
.y140{bottom:340.800049pt;}
.y116{bottom:341.920044pt;}
.y44{bottom:345.920044pt;}
.y114{bottom:347.680054pt;}
.y112{bottom:350.240052pt;}
.y174{bottom:350.560059pt;}
.y72{bottom:356.320069pt;}
.ya5{bottom:357.120057pt;}
.y43{bottom:358.560059pt;}
.y13f{bottom:359.680054pt;}
.y1a7{bottom:360.320069pt;}
.y118{bottom:360.960083pt;}
.y111{bottom:366.240052pt;}
.y173{bottom:366.880066pt;}
.y115{bottom:368.800049pt;}
.y113{bottom:368.960083pt;}
.y42{bottom:371.200074pt;}
.yd7{bottom:371.520081pt;}
.y71{bottom:376.000061pt;}
.y13e{bottom:378.400086pt;}
.y12e{bottom:383.360047pt;}
.y41{bottom:383.840088pt;}
.y110{bottom:385.440064pt;}
.y10e{bottom:385.600037pt;}
.ya4{bottom:394.720032pt;}
.y172{bottom:395.360047pt;}
.y70{bottom:395.680054pt;}
.y10d{bottom:396.000061pt;}
.y40{bottom:396.480042pt;}
.y13d{bottom:397.280030pt;}
.y12d{bottom:402.240052pt;}
.y10f{bottom:406.560059pt;}
.y1a6{bottom:407.040039pt;}
.y171{bottom:407.360047pt;}
.y3f{bottom:409.120057pt;}
.yd6{bottom:411.040039pt;}
.ya3{bottom:413.600037pt;}
.y6f{bottom:416.000061pt;}
.y170{bottom:419.200074pt;}
.y12c{bottom:420.960083pt;}
.y3e{bottom:421.760071pt;}
.y10c{bottom:423.200074pt;}
.y10a{bottom:423.360047pt;}
.y1a5{bottom:425.760071pt;}
.ya2{bottom:432.320069pt;}
.y109{bottom:433.920044pt;}
.y3d{bottom:434.400086pt;}
.y13c{bottom:434.720032pt;}
.y6e{bottom:436.160035pt;}
.y1a4{bottom:438.400086pt;}
.y12b{bottom:439.840088pt;}
.yd5{bottom:440.640076pt;}
.y10b{bottom:444.320069pt;}
.y3c{bottom:447.040039pt;}
.ya1{bottom:451.040039pt;}
.y13b{bottom:453.600037pt;}
.y6d{bottom:455.680054pt;}
.y16f{bottom:456.160035pt;}
.y12a{bottom:458.560059pt;}
.y3b{bottom:459.680054pt;}
.y108{bottom:460.960083pt;}
.y106{bottom:461.120057pt;}
.yd4{bottom:467.200074pt;}
.y16e{bottom:468.000061pt;}
.ya0{bottom:469.920044pt;}
.y1a3{bottom:470.240052pt;}
.y105{bottom:471.680054pt;}
.y3a{bottom:472.320069pt;}
.y6c{bottom:472.800049pt;}
.y129{bottom:477.280030pt;}
.y16d{bottom:480.000061pt;}
.y107{bottom:482.080079pt;}
.y1a2{bottom:482.880066pt;}
.y39{bottom:484.960083pt;}
.y9f{bottom:488.640076pt;}
.y6b{bottom:490.080079pt;}
.yd3{bottom:491.200074pt;}
.y102{bottom:493.120057pt;}
.y1a1{bottom:495.520081pt;}
.y38{bottom:497.600037pt;}
.y100{bottom:498.880066pt;}
.y128{bottom:502.720032pt;}
.y6a{bottom:505.440064pt;}
.y9e{bottom:507.520081pt;}
.yff{bottom:509.440064pt;}
.y16c{bottom:509.600037pt;}
.yd2{bottom:509.920044pt;}
.y37{bottom:512.000061pt;}
.y104{bottom:512.160035pt;}
.y1a0{bottom:514.880066pt;}
.y101{bottom:520.000061pt;}
.y16b{bottom:524.800049pt;}
.y9d{bottom:526.240052pt;}
.y19f{bottom:527.520081pt;}
.yd1{bottom:528.640076pt;}
.y36{bottom:531.840088pt;}
.y69{bottom:534.720032pt;}
.yfe{bottom:536.640076pt;}
.yfc{bottom:536.800049pt;}
.y9c{bottom:544.960083pt;}
.y68{bottom:545.920044pt;}
.y35{bottom:546.400086pt;}
.y19e{bottom:546.880066pt;}
.yfb{bottom:547.200074pt;}
.yd0{bottom:547.520081pt;}
.y16a{bottom:548.480042pt;}
.y67{bottom:557.600037pt;}
.yfd{bottom:557.760071pt;}
.y19d{bottom:559.520081pt;}
.y169{bottom:560.320069pt;}
.y34{bottom:562.720032pt;}
.y9b{bottom:563.840088pt;}
.ycf{bottom:566.240052pt;}
.y66{bottom:568.800049pt;}
.y168{bottom:572.160035pt;}
.y33{bottom:578.400086pt;}
.y65{bottom:580.800049pt;}
.y9a{bottom:582.560059pt;}
.y167{bottom:584.000061pt;}
.y19c{bottom:584.800049pt;}
.yce{bottom:585.120057pt;}
.y32{bottom:591.040039pt;}
.y64{bottom:593.440064pt;}
.y166{bottom:600.320069pt;}
.y99{bottom:601.440064pt;}
.y31{bottom:603.680054pt;}
.ycd{bottom:603.840088pt;}
.y19b{bottom:604.000061pt;}
.y63{bottom:606.080079pt;}
.yfa{bottom:613.280060pt;}
.y30{bottom:616.320069pt;}
.y19a{bottom:616.640046pt;}
.y62{bottom:618.720063pt;}
.y98{bottom:620.160065pt;}
.ycc{bottom:622.560059pt;}
.y2f{bottom:628.960053pt;}
.y199{bottom:629.280060pt;}
.y61{bottom:635.360047pt;}
.y97{bottom:639.040070pt;}
.yf9{bottom:640.000061pt;}
.y165{bottom:640.960053pt;}
.ycb{bottom:641.440064pt;}
.y2e{bottom:641.600068pt;}
.y60{bottom:644.000061pt;}
.y198{bottom:648.640046pt;}
.y164{bottom:652.800049pt;}
.y2d{bottom:654.240052pt;}
.y5f{bottom:656.640046pt;}
.y96{bottom:657.760071pt;}
.yf8{bottom:658.720063pt;}
.yca{bottom:660.160065pt;}
.y197{bottom:661.280060pt;}
.y163{bottom:664.640046pt;}
.y2c{bottom:666.880066pt;}
.y5e{bottom:669.280060pt;}
.y196{bottom:673.920044pt;}
.y95{bottom:676.480072pt;}
.yf7{bottom:677.600068pt;}
.yc9{bottom:679.040070pt;}
.y2b{bottom:679.520050pt;}
.y5d{bottom:681.920044pt;}
.y162{bottom:688.320069pt;}
.y2a{bottom:692.160065pt;}
.y195{bottom:693.280060pt;}
.y5c{bottom:694.560059pt;}
.y94{bottom:695.360047pt;}
.yf6{bottom:696.320069pt;}
.yc8{bottom:697.760071pt;}
.y161{bottom:700.160065pt;}
.y29{bottom:704.800049pt;}
.y5b{bottom:711.200074pt;}
.y194{bottom:712.480072pt;}
.y93{bottom:714.080048pt;}
.yf5{bottom:715.200074pt;}
.yc7{bottom:716.480072pt;}
.y28{bottom:717.440064pt;}
.y127{bottom:723.200074pt;}
.y5a{bottom:723.840058pt;}
.y193{bottom:725.120057pt;}
.y27{bottom:730.080048pt;}
.y59{bottom:732.160065pt;}
.y92{bottom:732.960053pt;}
.yf4{bottom:733.920044pt;}
.yc6{bottom:735.360047pt;}
.y192{bottom:737.760071pt;}
.y126{bottom:741.920044pt;}
.y26{bottom:742.720063pt;}
.y58{bottom:743.200074pt;}
.y160{bottom:745.120057pt;}
.y91{bottom:751.680054pt;}
.yf3{bottom:752.640046pt;}
.yc5{bottom:754.080048pt;}
.y57{bottom:754.560059pt;}
.y25{bottom:755.360047pt;}
.y15f{bottom:756.960053pt;}
.y191{bottom:757.120057pt;}
.y125{bottom:760.800049pt;}
.y56{bottom:767.200074pt;}
.y24{bottom:768.000061pt;}
.y15e{bottom:768.800049pt;}
.y190{bottom:769.760071pt;}
.y90{bottom:770.400055pt;}
.yc4{bottom:772.960053pt;}
.y124{bottom:779.520050pt;}
.y55{bottom:779.840058pt;}
.y23{bottom:780.640046pt;}
.y18f{bottom:782.400055pt;}
.yf2{bottom:783.840058pt;}
.y8f{bottom:789.280060pt;}
.yc3{bottom:791.680054pt;}
.y54{bottom:792.480072pt;}
.y22{bottom:793.280060pt;}
.yf1{bottom:800.320069pt;}
.yef{bottom:800.480072pt;}
.y18e{bottom:801.760071pt;}
.y15d{bottom:804.320069pt;}
.y53{bottom:804.960053pt;}
.y21{bottom:805.920044pt;}
.y8e{bottom:808.000061pt;}
.yc2{bottom:810.400055pt;}
.yee{bottom:811.040070pt;}
.y18d{bottom:814.240052pt;}
.y51{bottom:814.720063pt;}
.y15c{bottom:816.320069pt;}
.y20{bottom:819.200074pt;}
.yf0{bottom:821.440064pt;}
.y8d{bottom:826.880066pt;}
.y18c{bottom:827.680054pt;}
.yc1{bottom:829.280060pt;}
.yed{bottom:838.080048pt;}
.yeb{bottom:838.240052pt;}
.y15b{bottom:841.440064pt;}
.y1f{bottom:844.000061pt;}
.y8c{bottom:845.600068pt;}
.y18b{bottom:847.040070pt;}
.yc0{bottom:848.000061pt;}
.yea{bottom:848.800049pt;}
.y15a{bottom:853.280060pt;}
.yec{bottom:859.200074pt;}
.y18a{bottom:859.680054pt;}
.y8b{bottom:864.320069pt;}
.y159{bottom:865.120057pt;}
.ybf{bottom:866.880066pt;}
.y189{bottom:872.320054pt;}
.y1e{bottom:874.400055pt;}
.ye9{bottom:875.840058pt;}
.ye7{bottom:876.000061pt;}
.y158{bottom:876.960053pt;}
.y8a{bottom:883.200058pt;}
.ybe{bottom:885.600052pt;}
.ye6{bottom:886.560059pt;}
.y157{bottom:888.800064pt;}
.y188{bottom:891.520066pt;}
.ye8{bottom:896.960053pt;}
.y1d{bottom:899.840058pt;}
.y156{bottom:900.640061pt;}
.y89{bottom:901.920060pt;}
.y187{bottom:904.160065pt;}
.ybd{bottom:904.480057pt;}
.ye5{bottom:913.760056pt;}
.ye3{bottom:913.920060pt;}
.y88{bottom:920.800064pt;}
.ybc{bottom:923.200058pt;}
.y186{bottom:923.520066pt;}
.ye2{bottom:924.320054pt;}
.y155{bottom:930.240052pt;}
.y1c{bottom:930.880066pt;}
.ye4{bottom:934.880066pt;}
.y185{bottom:936.160065pt;}
.y87{bottom:939.520066pt;}
.ybb{bottom:941.920060pt;}
.y184{bottom:948.800064pt;}
.y1b{bottom:952.000061pt;}
.y86{bottom:958.240052pt;}
.y154{bottom:960.000061pt;}
.yba{bottom:960.800064pt;}
.y183{bottom:961.440064pt;}
.ye1{bottom:962.240052pt;}
.y85{bottom:977.120057pt;}
.yb9{bottom:979.520066pt;}
.y182{bottom:980.800064pt;}
.y1a{bottom:980.960053pt;}
.ye0{bottom:990.400055pt;}
.y181{bottom:993.440064pt;}
.y84{bottom:995.840058pt;}
.y153{bottom:997.280060pt;}
.yb8{bottom:998.400055pt;}
.yd{bottom:1006.080056pt;}
.y123{bottom:1009.120057pt;}
.y152{bottom:1014.880059pt;}
.yb7{bottom:1017.120057pt;}
.yc{bottom:1021.920060pt;}
.y180{bottom:1025.280060pt;}
.y151{bottom:1026.720063pt;}
.y83{bottom:1030.720063pt;}
.yb6{bottom:1035.840058pt;}
.y17f{bottom:1037.920060pt;}
.y150{bottom:1038.560059pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.yb5{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y82{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.yb4{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y81{bottom:1080.960061pt;}
.yb3{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y80{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h1d{height:1.600037pt;}
.h15{height:11.839996pt;}
.h14{height:12.160034pt;}
.h2f{height:15.679992pt;}
.h33{height:15.679993pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h1b{height:21.672715pt;}
.h1a{height:22.344616pt;}
.h19{height:25.133772pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.hf{height:32.314834pt;}
.h18{height:34.708546pt;}
.h1c{height:36.119161pt;}
.h16{height:37.700696pt;}
.h17{height:39.232917pt;}
.h2{height:40.094296pt;}
.h13{height:40.737520pt;}
.h1e{height:40.823283pt;}
.h3{height:41.680915pt;}
.h36{height:41.723797pt;}
.h37{height:42.374525pt;}
.h1f{height:43.144971pt;}
.h11{height:44.881870pt;}
.h21{height:48.033900pt;}
.h35{height:50.465900pt;}
.h23{height:50.977508pt;}
.h22{height:51.617404pt;}
.h10{height:51.687706pt;}
.he{height:55.055044pt;}
.h38{height:55.702458pt;}
.hd{height:60.930289pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h24{height:66.337620pt;}
.h12{height:67.256488pt;}
.h9{height:68.362453pt;}
.h20{height:68.706660pt;}
.h34{height:72.097384pt;}
.h30{height:72.097624pt;}
.h28{height:82.977512pt;}
.h2c{height:83.617400pt;}
.h2e{height:83.617404pt;}
.h25{height:83.617524pt;}
.hc{height:91.395427pt;}
.h2d{height:93.857392pt;}
.h32{height:93.857396pt;}
.h27{height:93.857516pt;}
.h2a{height:94.497528pt;}
.ha{height:108.363704pt;}
.h29{height:125.217500pt;}
.h31{height:125.217504pt;}
.h26{height:125.217560pt;}
.h2b{height:125.217624pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.000000pt;}
.w7{width:4.800003pt;}
.w6{width:4.959992pt;}
.w9{width:5.279999pt;}
.w2{width:7.200012pt;}
.w8{width:10.720001pt;}
.wb{width:18.559998pt;}
.wa{width:23.839996pt;}
.wd{width:29.279998pt;}
.wc{width:34.559998pt;}
.w5{width:68.320007pt;}
.w3{width:131.200012pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.x1a{left:49.919998pt;}
.x1d{left:55.200001pt;}
.xa{left:72.639999pt;}
.x11{left:77.279999pt;}
.x1{left:79.680000pt;}
.x7{left:91.519997pt;}
.x14{left:95.040001pt;}
.x13{left:110.559998pt;}
.x12{left:145.600006pt;}
.x18{left:161.440002pt;}
.x16{left:170.080002pt;}
.x17{left:189.600006pt;}
.x2b{left:194.399994pt;}
.x1e{left:199.039993pt;}
.x24{left:204.160004pt;}
.x36{left:207.839996pt;}
.x8{left:217.122745pt;}
.x31{left:220.320007pt;}
.xd{left:236.800003pt;}
.x2f{left:238.080002pt;}
.x1f{left:260.799988pt;}
.x19{left:267.679993pt;}
.x25{left:271.519989pt;}
.x33{left:296.959991pt;}
.xb{left:312.000000pt;}
.x22{left:313.920013pt;}
.x20{left:316.640015pt;}
.x2a{left:319.200012pt;}
.xf{left:322.399994pt;}
.x26{left:340.480011pt;}
.x2c{left:345.760010pt;}
.x27{left:386.239990pt;}
.xc{left:396.799988pt;}
.x15{left:418.559998pt;}
.x2d{left:436.160004pt;}
.x23{left:438.880005pt;}
.x21{left:441.440002pt;}
.x28{left:460.000000pt;}
.x2e{left:465.440002pt;}
.xe{left:491.200012pt;}
.x2{left:499.200012pt;}
.x1c{left:515.840027pt;}
.x1b{left:518.559998pt;}
.x3{left:519.840027pt;}
.x29{left:525.599976pt;}
.x35{left:544.479980pt;}
.x5{left:556.320007pt;}
.x34{left:628.320007pt;}
.x30{left:631.840027pt;}
.x32{left:637.760010pt;}
.x9{left:643.520020pt;}
.x10{left:662.559998pt;}
.x4{left:714.080017pt;}
}




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