
    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_6ffb1c8432fe6b7117d13134.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_44b1732a4a3006f3b4ca982c.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_aff8548b19e2dcc5a003239d.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_bcd9acc39b5859d727b2549d.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_4a1093e2bdac845133b55dcd.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_78a53545507277b6ca9f7d8d.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;}
.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);}
.v5{vertical-align:-84.240004px;}
.v2{vertical-align:-23.759995px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.119933px;}
.v1{vertical-align:23.759995px;}
.v6{vertical-align:71.280121px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.134922px;}
.ls0{letter-spacing:0.145757px;}
.ls9{letter-spacing:0.179554px;}
.ls5{letter-spacing:129.062957px;}
.ls7{letter-spacing:129.063231px;}
.ls3{letter-spacing:157.143051px;}
.ls6{letter-spacing:322.023114px;}
.ls8{letter-spacing:355.863204px;}
.ls2{letter-spacing:535.992680px;}
.ls4{letter-spacing:623.832698px;}
.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;}
}
.ws2{word-spacing:-45.001798px;}
.wsa{word-spacing:-19.120340px;}
.ws1{word-spacing:-15.875132px;}
.ws0{word-spacing:-15.500719px;}
.ws4{word-spacing:-12.370786px;}
.wsc{word-spacing:-11.336823px;}
.wsd{word-spacing:-10.564954px;}
.ws5{word-spacing:-9.934234px;}
.ws7{word-spacing:-9.000349px;}
.ws8{word-spacing:-8.644655px;}
.ws3{word-spacing:-8.515045px;}
.wsb{word-spacing:-7.106675px;}
.ws6{word-spacing:-6.622816px;}
.ws9{word-spacing:0.000000px;}
._8{margin-left:-3.383021px;}
._7{margin-left:-2.218237px;}
._0{margin-left:-1.206045px;}
._1{width:1.123241px;}
._9{width:2.872909px;}
._5{width:3.925397px;}
._6{width:5.674316px;}
._a{width:6.850336px;}
._b{width:8.046035px;}
._2{width:9.098289px;}
._3{width:10.731315px;}
._13{width:11.881154px;}
._14{width:15.201965px;}
._12{width:17.064675px;}
._16{width:18.100073px;}
._15{width:19.169318px;}
._f{width:20.363845px;}
._e{width:21.444608px;}
._17{width:22.980429px;}
._18{width:24.257761px;}
._11{width:25.483248px;}
._10{width:26.962187px;}
._3d{width:28.156714px;}
._41{width:29.322315px;}
._40{width:53.114222px;}
._42{width:67.827971px;}
._43{width:69.426269px;}
._3f{width:76.849187px;}
._3e{width:78.233635px;}
._21{width:79.681774px;}
._39{width:97.419881px;}
._33{width:128.853848px;}
._3b{width:131.408646px;}
._c{width:136.909343px;}
._2c{width:140.335396px;}
._37{width:148.385920px;}
._26{width:151.045076px;}
._24{width:152.588813px;}
._27{width:155.888655px;}
._31{width:158.648460px;}
._29{width:161.980514px;}
._1b{width:163.973878px;}
._38{width:175.252678px;}
._2f{width:188.963131px;}
._1d{width:190.155496px;}
._20{width:195.820671px;}
._d{width:202.519076px;}
._19{width:204.648920px;}
._1f{width:213.084031px;}
._1e{width:214.228155px;}
._30{width:222.161409px;}
._23{width:230.981738px;}
._36{width:253.639934px;}
._2e{width:256.887585px;}
._22{width:262.871551px;}
._35{width:294.563545px;}
._2a{width:300.305205px;}
._32{width:322.158740px;}
._34{width:331.276441px;}
._25{width:333.977981px;}
._28{width:349.926253px;}
._3a{width:355.107890px;}
._3c{width:377.189851px;}
._2d{width:429.255536px;}
._1c{width:431.522901px;}
._1a{width:461.887877px;}
._2b{width:598.715301px;}
._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;}
.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;}
.fs13{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;}
.y0{bottom:0.000000px;}
.y4a{bottom:2.879998px;}
.yb{bottom:4.679995px;}
.y8{bottom:4.680000px;}
.y10d{bottom:6.479943px;}
.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;}
.yf5{bottom:111.780052px;}
.y10{bottom:115.572842px;}
.y110{bottom:117.900055px;}
.ydc{bottom:120.960091px;}
.y146{bottom:126.900055px;}
.ye{bottom:127.800041px;}
.yf4{bottom:132.840088px;}
.y12f{bottom:137.880066px;}
.ydb{bottom:142.200096px;}
.y145{bottom:147.960091px;}
.ya8{bottom:148.320099px;}
.y177{bottom:150.120072px;}
.yf3{bottom:153.900055px;}
.y12e{bottom:158.940033px;}
.y10f{bottom:160.200096px;}
.yda{bottom:163.260064px;}
.ya7{bottom:169.380066px;}
.y176{bottom:171.900055px;}
.y144{bottom:172.440033px;}
.yf2{bottom:175.140060px;}
.y12d{bottom:180.180039px;}
.y10e{bottom:181.620072px;}
.yd9{bottom:184.320099px;}
.ya6{bottom:190.440033px;}
.y143{bottom:193.500068px;}
.y10c{bottom:194.580093px;}
.yf1{bottom:196.200096px;}
.y12c{bottom:201.240074px;}
.y10b{bottom:202.500068px;}
.yd8{bottom:205.560036px;}
.y175{bottom:207.720085px;}
.y75{bottom:209.160049px;}
.ya5{bottom:211.680039px;}
.y142{bottom:214.740074px;}
.yf0{bottom:217.440033px;}
.y10a{bottom:220.320099px;}
.y174{bottom:221.940033px;}
.y12b{bottom:222.300041px;}
.y74{bottom:223.200096px;}
.yd7{bottom:226.620072px;}
.ya4{bottom:232.740074px;}
.y141{bottom:235.800041px;}
.y73{bottom:236.520058px;}
.yef{bottom:238.500068px;}
.y109{bottom:239.580093px;}
.y12a{bottom:243.540047px;}
.y173{bottom:243.720085px;}
.yd6{bottom:247.860077px;}
.ya3{bottom:253.980079px;}
.y140{bottom:256.860077px;}
.y172{bottom:257.940033px;}
.y72{bottom:258.480079px;}
.yee{bottom:259.560036px;}
.y108{bottom:260.100083px;}
.y129{bottom:264.600083px;}
.yd5{bottom:268.920043px;}
.y71{bottom:271.440033px;}
.ya2{bottom:275.040047px;}
.y13f{bottom:278.100083px;}
.y171{bottom:279.720085px;}
.yed{bottom:280.800041px;}
.y107{bottom:281.160049px;}
.y128{bottom:285.840088px;}
.yd4{bottom:289.980079px;}
.y70{bottom:293.220085px;}
.y170{bottom:293.940033px;}
.ya1{bottom:296.100083px;}
.y13e{bottom:299.160049px;}
.yec{bottom:301.860077px;}
.y106{bottom:302.220085px;}
.y127{bottom:306.900055px;}
.y16f{bottom:308.160049px;}
.yd3{bottom:311.220085px;}
.y6f{bottom:315.000068px;}
.ya0{bottom:317.340088px;}
.y13d{bottom:320.400055px;}
.yeb{bottom:323.100083px;}
.y105{bottom:323.460091px;}
.y49{bottom:325.080093px;}
.y48{bottom:327.960091px;}
.y16e{bottom:329.760064px;}
.yd2{bottom:332.280052px;}
.y1a4{bottom:333.540047px;}
.y6e{bottom:336.960091px;}
.y9f{bottom:338.400055px;}
.y13c{bottom:341.460091px;}
.y16d{bottom:343.980079px;}
.yea{bottom:344.160049px;}
.y104{bottom:344.520058px;}
.y47{bottom:345.780052px;}
.y126{bottom:349.200096px;}
.yd1{bottom:353.520058px;}
.y6d{bottom:358.740074px;}
.y9e{bottom:359.640060px;}
.y1a3{bottom:360.000068px;}
.y13b{bottom:362.520058px;}
.y46{bottom:363.600083px;}
.ye9{bottom:365.220085px;}
.y103{bottom:365.760064px;}
.y125{bottom:370.260064px;}
.yd0{bottom:374.580093px;}
.y45{bottom:378.720085px;}
.y16c{bottom:379.980079px;}
.y6c{bottom:380.520058px;}
.y9d{bottom:380.700096px;}
.y13a{bottom:383.760064px;}
.y1a2{bottom:386.100083px;}
.ye8{bottom:386.460091px;}
.y102{bottom:386.820099px;}
.y124{bottom:391.500068px;}
.y16b{bottom:394.200096px;}
.ycf{bottom:395.640060px;}
.y44{bottom:396.360077px;}
.y9c{bottom:401.760064px;}
.y6b{bottom:402.480079px;}
.y139{bottom:404.820099px;}
.y1a1{bottom:406.980079px;}
.ye7{bottom:407.520058px;}
.y101{bottom:407.880066px;}
.y43{bottom:410.580093px;}
.y123{bottom:412.560036px;}
.yce{bottom:416.880066px;}
.y1a0{bottom:421.200096px;}
.y9b{bottom:423.000068px;}
.y16a{bottom:423.720085px;}
.y6a{bottom:424.260064px;}
.y42{bottom:424.800041px;}
.y138{bottom:426.060036px;}
.ye6{bottom:428.760064px;}
.y100{bottom:429.120072px;}
.y122{bottom:433.620072px;}
.y19f{bottom:435.420043px;}
.ycd{bottom:437.940033px;}
.y41{bottom:439.020058px;}
.y9a{bottom:444.060036px;}
.y69{bottom:446.040047px;}
.y137{bottom:447.120072px;}
.ye5{bottom:449.820099px;}
.yff{bottom:450.180039px;}
.y40{bottom:453.240074px;}
.y121{bottom:454.860077px;}
.y19e{bottom:457.200096px;}
.ycc{bottom:459.180039px;}
.y169{bottom:460.980079px;}
.y99{bottom:465.300041px;}
.y3f{bottom:467.460091px;}
.y68{bottom:468.360077px;}
.ye4{bottom:470.880066px;}
.yfe{bottom:471.420043px;}
.y168{bottom:475.200096px;}
.y120{bottom:475.920043px;}
.ycb{bottom:480.240074px;}
.y3e{bottom:481.680039px;}
.y98{bottom:486.360077px;}
.y136{bottom:489.420043px;}
.y67{bottom:490.500068px;}
.ye3{bottom:492.120072px;}
.yfd{bottom:492.480079px;}
.y19d{bottom:493.200096px;}
.y3d{bottom:495.900055px;}
.y11f{bottom:500.220085px;}
.yca{bottom:501.300041px;}
.y167{bottom:503.640060px;}
.y97{bottom:507.420043px;}
.y3c{bottom:510.120072px;}
.y135{bottom:510.480079px;}
.y66{bottom:513.180039px;}
.yfc{bottom:513.540047px;}
.y19c{bottom:514.800041px;}
.yc9{bottom:522.540047px;}
.y3b{bottom:524.340088px;}
.y11e{bottom:527.220085px;}
.y96{bottom:528.660049px;}
.y19b{bottom:529.020058px;}
.y134{bottom:531.720085px;}
.ye2{bottom:534.420043px;}
.yfb{bottom:534.780052px;}
.y65{bottom:536.040047px;}
.y166{bottom:536.220085px;}
.y3a{bottom:538.560036px;}
.yc8{bottom:543.600083px;}
.y11d{bottom:548.640060px;}
.y95{bottom:549.720085px;}
.y19a{bottom:550.800041px;}
.y39{bottom:552.780052px;}
.y64{bottom:557.820099px;}
.yfa{bottom:559.080093px;}
.yc7{bottom:564.840088px;}
.y38{bottom:567.000068px;}
.y11c{bottom:567.900055px;}
.y165{bottom:568.440033px;}
.y11b{bottom:569.340088px;}
.y94{bottom:570.960091px;}
.y199{bottom:572.580093px;}
.y133{bottom:574.020058px;}
.ye1{bottom:576.540047px;}
.y63{bottom:577.260064px;}
.y37{bottom:581.220085px;}
.yc6{bottom:585.900055px;}
.y164{bottom:586.800041px;}
.y11a{bottom:587.160049px;}
.yf9{bottom:589.140060px;}
.y93{bottom:592.020058px;}
.y132{bottom:595.080093px;}
.y36{bottom:595.440033px;}
.y62{bottom:596.520058px;}
.ye0{bottom:597.780052px;}
.y119{bottom:606.420043px;}
.yc5{bottom:606.960091px;}
.y198{bottom:608.400055px;}
.y35{bottom:611.460091px;}
.y131{bottom:612.720085px;}
.y92{bottom:613.080093px;}
.y61{bottom:613.980079px;}
.yf8{bottom:615.960091px;}
.ydf{bottom:618.840088px;}
.y163{bottom:619.020058px;}
.y197{bottom:622.620072px;}
.y118{bottom:625.860077px;}
.y117{bottom:627.300041px;}
.yc4{bottom:628.200096px;}
.y162{bottom:632.340088px;}
.y130{bottom:633.780052px;}
.y34{bottom:634.140060px;}
.y91{bottom:634.320099px;}
.y196{bottom:636.840088px;}
.yf7{bottom:637.020058px;}
.y116{bottom:645.120072px;}
.y161{bottom:645.660049px;}
.y60{bottom:646.740074px;}
.y33{bottom:652.500068px;}
.y90{bottom:655.380066px;}
.yf6{bottom:658.260064px;}
.y195{bottom:658.620072px;}
.y160{bottom:658.980079px;}
.y5f{bottom:659.340088px;}
.yde{bottom:661.140060px;}
.y115{bottom:664.380066px;}
.y113{bottom:667.440033px;}
.y32{bottom:670.140060px;}
.y5e{bottom:672.480079px;}
.y194{bottom:672.840088px;}
.ydd{bottom:674.640060px;}
.y8f{bottom:676.620072px;}
.y15f{bottom:677.340088px;}
.yc3{bottom:679.320099px;}
.y114{bottom:683.640060px;}
.y31{bottom:684.360077px;}
.y5d{bottom:685.260064px;}
.y193{bottom:687.060070px;}
.y8e{bottom:697.680073px;}
.y30{bottom:698.580059px;}
.y5c{bottom:699.480079px;}
.yc2{bottom:700.380066px;}
.y112{bottom:702.900055px;}
.y192{bottom:708.840054px;}
.y15e{bottom:709.560070px;}
.y2f{bottom:712.800076px;}
.y5b{bottom:713.700061px;}
.y8d{bottom:718.920078px;}
.yc1{bottom:721.620072px;}
.y111{bottom:722.340054px;}
.y2e{bottom:727.020058px;}
.y5a{bottom:727.920078px;}
.y191{bottom:730.440067px;}
.y15d{bottom:737.820065px;}
.y8c{bottom:739.980079px;}
.y2d{bottom:741.240074px;}
.y59{bottom:742.140060px;}
.yc0{bottom:742.680073px;}
.y190{bottom:744.660049px;}
.y2c{bottom:755.460056px;}
.y58{bottom:760.860077px;}
.y8b{bottom:761.040081px;}
.ybf{bottom:763.920078px;}
.y18f{bottom:766.440067px;}
.y2b{bottom:769.680073px;}
.y57{bottom:770.580059px;}
.y15c{bottom:771.120072px;}
.y18e{bottom:780.660049px;}
.y8a{bottom:782.280052px;}
.y2a{bottom:783.900055px;}
.y56{bottom:784.800076px;}
.ybe{bottom:784.980079px;}
.y15b{bottom:788.400055px;}
.y18d{bottom:794.880066px;}
.y29{bottom:798.120072px;}
.y55{bottom:799.020058px;}
.y15a{bottom:801.720051px;}
.y89{bottom:803.340054px;}
.ybd{bottom:806.040081px;}
.y28{bottom:812.340054px;}
.y54{bottom:813.240074px;}
.y159{bottom:815.040081px;}
.y18c{bottom:816.660049px;}
.y88{bottom:824.580059px;}
.y27{bottom:826.560070px;}
.ybc{bottom:827.280052px;}
.y158{bottom:828.360077px;}
.y53{bottom:831.960056px;}
.y18b{bottom:838.260064px;}
.y26{bottom:840.780052px;}
.y157{bottom:841.680073px;}
.y87{bottom:845.640060px;}
.y52{bottom:846.180073px;}
.ybb{bottom:848.340054px;}
.y18a{bottom:852.480079px;}
.y25{bottom:855.000068px;}
.y51{bottom:855.540081px;}
.y86{bottom:866.700061px;}
.y50{bottom:868.320065px;}
.y24{bottom:869.220051px;}
.yba{bottom:869.580059px;}
.y156{bottom:873.360077px;}
.y4f{bottom:882.540081px;}
.y23{bottom:883.440067px;}
.y85{bottom:887.940067px;}
.y189{bottom:888.480079px;}
.yb9{bottom:890.640060px;}
.y4e{bottom:896.760064px;}
.y22{bottom:897.660049px;}
.y188{bottom:902.700061px;}
.y155{bottom:905.580059px;}
.y84{bottom:909.000068px;}
.y4d{bottom:910.980079px;}
.yb8{bottom:911.700061px;}
.y21{bottom:911.880066px;}
.y154{bottom:918.900055px;}
.y187{bottom:924.480079px;}
.y4c{bottom:925.020058px;}
.y20{bottom:926.100083px;}
.y83{bottom:930.240074px;}
.y153{bottom:932.220051px;}
.yb7{bottom:932.940067px;}
.y4b{bottom:936.000068px;}
.y186{bottom:938.700061px;}
.y1f{bottom:941.040081px;}
.y152{bottom:945.720051px;}
.y82{bottom:951.300076px;}
.y185{bottom:952.920078px;}
.yb6{bottom:954.000068px;}
.y151{bottom:959.040081px;}
.y184{bottom:967.140060px;}
.y1e{bottom:968.940067px;}
.y81{bottom:972.360077px;}
.yb5{bottom:975.240074px;}
.y150{bottom:985.680073px;}
.y183{bottom:988.740074px;}
.y80{bottom:993.600065px;}
.yb4{bottom:996.300058px;}
.y1d{bottom:997.200061px;}
.y182{bottom:1002.960074px;}
.y14f{bottom:1004.040064px;}
.y7f{bottom:1014.660067px;}
.y181{bottom:1017.180073px;}
.yb3{bottom:1017.540064px;}
.y1c{bottom:1032.120072px;}
.y7e{bottom:1035.900072px;}
.y14e{bottom:1036.260064px;}
.yb2{bottom:1038.600065px;}
.y180{bottom:1038.960074px;}
.y14d{bottom:1049.580059px;}
.y17f{bottom:1053.180073px;}
.y7d{bottom:1056.960074px;}
.yb1{bottom:1059.660067px;}
.y14c{bottom:1062.900072px;}
.y17e{bottom:1067.400072px;}
.y1b{bottom:1071.000068px;}
.y14b{bottom:1076.220068px;}
.y7c{bottom:1078.020058px;}
.yb0{bottom:1080.900072px;}
.y17d{bottom:1089.180073px;}
.y7b{bottom:1099.260064px;}
.yaf{bottom:1101.960074px;}
.y17c{bottom:1103.400072px;}
.y1a{bottom:1103.580059px;}
.y14a{bottom:1104.480063px;}
.y17b{bottom:1117.620072px;}
.y149{bottom:1117.800058px;}
.y7a{bottom:1120.320065px;}
.yae{bottom:1123.200061px;}
.y148{bottom:1131.300067px;}
.yd{bottom:1131.840063px;}
.y17a{bottom:1139.220068px;}
.yad{bottom:1144.260064px;}
.yc{bottom:1149.660067px;}
.y179{bottom:1153.440067px;}
.y79{bottom:1159.560070px;}
.y147{bottom:1164.600065px;}
.yac{bottom:1165.320065px;}
.y178{bottom:1167.660067px;}
.ya{bottom:1173.780069px;}
.y9{bottom:1178.460065px;}
.y4{bottom:1187.280069px;}
.yab{bottom:1187.640069px;}
.y7{bottom:1196.640065px;}
.y6{bottom:1201.320065px;}
.y78{bottom:1201.500065px;}
.y3{bottom:1201.680064px;}
.yaa{bottom:1202.040064px;}
.y2{bottom:1215.720068px;}
.y77{bottom:1216.080068px;}
.ya9{bottom:1216.620067px;}
.y5{bottom:1223.820065px;}
.y76{bottom:1230.300067px;}
.y1{bottom:1230.480067px;}
.h14{height:13.319997px;}
.h13{height:13.679971px;}
.h21{height:17.639992px;}
.h8{height:22.499995px;}
.h6{height:22.500000px;}
.h1a{height:24.381804px;}
.h19{height:25.137693px;}
.h18{height:28.275494px;}
.hb{height:29.158271px;}
.h4{height:33.684460px;}
.hf{height:36.354188px;}
.h17{height:39.047115px;}
.h1b{height:40.634056px;}
.h15{height:42.413283px;}
.h16{height:44.137031px;}
.h2{height:45.106083px;}
.h12{height:45.829710px;}
.h1c{height:45.926194px;}
.h3{height:46.891030px;}
.h25{height:46.939271px;}
.h26{height:47.671340px;}
.h1d{height:48.538092px;}
.h1f{height:54.038138px;}
.h24{height:56.774138px;}
.h10{height:58.148669px;}
.he{height:61.936925px;}
.h27{height:62.665265px;}
.hd{height:68.546575px;}
.h5{height:71.288330px;}
.h7{height:72.860867px;}
.h11{height:75.663549px;}
.h9{height:76.907760px;}
.h1e{height:77.294993px;}
.hc{height:102.819856px;}
.h22{height:116.389674px;}
.h23{height:117.109553px;}
.h20{height:117.109831px;}
.ha{height:121.909167px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:4.500000px;}
.w6{width:5.579991px;}
.wc{width:5.939998px;}
.w9{width:5.939999px;}
.w2{width:8.100014px;}
.w7{width:8.819996px;}
.wa{width:12.060001px;}
.wd{width:20.879997px;}
.wb{width:32.939999px;}
.w5{width:76.860008px;}
.w8{width:90.000000px;}
.w3{width:147.600014px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.x28{left:58.320000px;}
.x1a{left:62.100001px;}
.xa{left:81.719999px;}
.x11{left:86.939999px;}
.xb{left:88.019998px;}
.x1{left:89.640000px;}
.x7{left:102.959997px;}
.x14{left:106.920001px;}
.x13{left:124.379998px;}
.x2d{left:136.260003px;}
.x1f{left:159.840002px;}
.x12{left:163.800007px;}
.x20{left:168.659998px;}
.x21{left:173.159998px;}
.x19{left:181.620002px;}
.x16{left:191.340002px;}
.x17{left:213.300007px;}
.x32{left:233.819996px;}
.x8{left:244.263088px;}
.x22{left:263.159998px;}
.xd{left:266.400003px;}
.xc{left:317.699993px;}
.x2f{left:321.839985px;}
.x30{left:324.180005px;}
.x23{left:328.860008px;}
.xf{left:362.699993px;}
.x24{left:369.899987px;}
.x2e{left:377.100014px;}
.x25{left:402.839985px;}
.x15{left:470.879998px;}
.x26{left:489.240006px;}
.x27{left:510.120002px;}
.x29{left:543.420010px;}
.x1b{left:550.800007px;}
.xe{left:552.600014px;}
.x2{left:561.600014px;}
.x3{left:584.820030px;}
.x1c{left:613.799973px;}
.x2a{left:617.039978px;}
.x5{left:625.860008px;}
.x31{left:639.000000px;}
.x2b{left:673.919975px;}
.x1d{left:676.799973px;}
.x18{left:714.240006px;}
.x9{left:723.960023px;}
.x10{left:745.379998px;}
.x1e{left:785.519989px;}
.x2c{left:789.480011px;}
.x4{left:803.340019px;}
@media print{
.v5{vertical-align:-74.880004pt;}
.v2{vertical-align:-21.119996pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.439940pt;}
.v1{vertical-align:21.119996pt;}
.v6{vertical-align:63.360108pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.119930pt;}
.ls0{letter-spacing:0.129562pt;}
.ls9{letter-spacing:0.159604pt;}
.ls5{letter-spacing:114.722628pt;}
.ls7{letter-spacing:114.722872pt;}
.ls3{letter-spacing:139.682712pt;}
.ls6{letter-spacing:286.242768pt;}
.ls8{letter-spacing:316.322848pt;}
.ls2{letter-spacing:476.437938pt;}
.ls4{letter-spacing:554.517954pt;}
.ws2{word-spacing:-40.001598pt;}
.wsa{word-spacing:-16.995858pt;}
.ws1{word-spacing:-14.111229pt;}
.ws0{word-spacing:-13.778417pt;}
.ws4{word-spacing:-10.996254pt;}
.wsc{word-spacing:-10.077176pt;}
.wsd{word-spacing:-9.391070pt;}
.ws5{word-spacing:-8.830430pt;}
.ws7{word-spacing:-8.000310pt;}
.ws8{word-spacing:-7.684138pt;}
.ws3{word-spacing:-7.568929pt;}
.wsb{word-spacing:-6.317044pt;}
.ws6{word-spacing:-5.886948pt;}
.ws9{word-spacing:0.000000pt;}
._8{margin-left:-3.007129pt;}
._7{margin-left:-1.971766pt;}
._0{margin-left:-1.072040pt;}
._1{width:0.998436pt;}
._9{width:2.553697pt;}
._5{width:3.489241pt;}
._6{width:5.043836pt;}
._a{width:6.089187pt;}
._b{width:7.152031pt;}
._2{width:8.087368pt;}
._3{width:9.538947pt;}
._13{width:10.561026pt;}
._14{width:13.512858pt;}
._12{width:15.168600pt;}
._16{width:16.088954pt;}
._15{width:17.039394pt;}
._f{width:18.101196pt;}
._e{width:19.061874pt;}
._17{width:20.427048pt;}
._18{width:21.562454pt;}
._11{width:22.651776pt;}
._10{width:23.966388pt;}
._3d{width:25.028190pt;}
._41{width:26.064280pt;}
._40{width:47.212642pt;}
._42{width:60.291530pt;}
._43{width:61.712239pt;}
._3f{width:68.310389pt;}
._3e{width:69.541009pt;}
._21{width:70.828244pt;}
._39{width:86.595450pt;}
._33{width:114.536754pt;}
._3b{width:116.807686pt;}
._c{width:121.697194pt;}
._2c{width:124.742574pt;}
._37{width:131.898596pt;}
._26{width:134.262290pt;}
._24{width:135.634501pt;}
._27{width:138.567694pt;}
._31{width:141.020853pt;}
._29{width:143.982679pt;}
._1b{width:145.754558pt;}
._38{width:155.780158pt;}
._2f{width:167.967227pt;}
._1d{width:169.027108pt;}
._20{width:174.062818pt;}
._d{width:180.016957pt;}
._19{width:181.910151pt;}
._1f{width:189.408027pt;}
._1e{width:190.425026pt;}
._30{width:197.476808pt;}
._23{width:205.317101pt;}
._36{width:225.457719pt;}
._2e{width:228.344520pt;}
._22{width:233.663601pt;}
._35{width:261.834262pt;}
._2a{width:266.937960pt;}
._32{width:286.363325pt;}
._34{width:294.467947pt;}
._25{width:296.869317pt;}
._28{width:311.045558pt;}
._3a{width:315.651458pt;}
._3c{width:335.279867pt;}
._2d{width:381.560477pt;}
._1c{width:383.575912pt;}
._1a{width:410.567002pt;}
._2b{width:532.191378pt;}
._4{width:1063.892496pt;}
.fse{font-size:24.320960pt;}
.fsd{font-size:26.881040pt;}
.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;}
.fs13{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;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.559998pt;}
.yb{bottom:4.159996pt;}
.y8{bottom:4.160000pt;}
.y10d{bottom:5.759949pt;}
.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;}
.yf5{bottom:99.360047pt;}
.y10{bottom:102.731415pt;}
.y110{bottom:104.800049pt;}
.ydc{bottom:107.520081pt;}
.y146{bottom:112.800049pt;}
.ye{bottom:113.600037pt;}
.yf4{bottom:118.080079pt;}
.y12f{bottom:122.560059pt;}
.ydb{bottom:126.400086pt;}
.y145{bottom:131.520081pt;}
.ya8{bottom:131.840088pt;}
.y177{bottom:133.440064pt;}
.yf3{bottom:136.800049pt;}
.y12e{bottom:141.280030pt;}
.y10f{bottom:142.400086pt;}
.yda{bottom:145.120057pt;}
.ya7{bottom:150.560059pt;}
.y176{bottom:152.800049pt;}
.y144{bottom:153.280030pt;}
.yf2{bottom:155.680054pt;}
.y12d{bottom:160.160035pt;}
.y10e{bottom:161.440064pt;}
.yd9{bottom:163.840088pt;}
.ya6{bottom:169.280030pt;}
.y143{bottom:172.000061pt;}
.y10c{bottom:172.960083pt;}
.yf1{bottom:174.400086pt;}
.y12c{bottom:178.880066pt;}
.y10b{bottom:180.000061pt;}
.yd8{bottom:182.720032pt;}
.y175{bottom:184.640076pt;}
.y75{bottom:185.920044pt;}
.ya5{bottom:188.160035pt;}
.y142{bottom:190.880066pt;}
.yf0{bottom:193.280030pt;}
.y10a{bottom:195.840088pt;}
.y174{bottom:197.280030pt;}
.y12b{bottom:197.600037pt;}
.y74{bottom:198.400086pt;}
.yd7{bottom:201.440064pt;}
.ya4{bottom:206.880066pt;}
.y141{bottom:209.600037pt;}
.y73{bottom:210.240052pt;}
.yef{bottom:212.000061pt;}
.y109{bottom:212.960083pt;}
.y12a{bottom:216.480042pt;}
.y173{bottom:216.640076pt;}
.yd6{bottom:220.320069pt;}
.ya3{bottom:225.760071pt;}
.y140{bottom:228.320069pt;}
.y172{bottom:229.280030pt;}
.y72{bottom:229.760071pt;}
.yee{bottom:230.720032pt;}
.y108{bottom:231.200074pt;}
.y129{bottom:235.200074pt;}
.yd5{bottom:239.040039pt;}
.y71{bottom:241.280030pt;}
.ya2{bottom:244.480042pt;}
.y13f{bottom:247.200074pt;}
.y171{bottom:248.640076pt;}
.yed{bottom:249.600037pt;}
.y107{bottom:249.920044pt;}
.y128{bottom:254.080079pt;}
.yd4{bottom:257.760071pt;}
.y70{bottom:260.640076pt;}
.y170{bottom:261.280030pt;}
.ya1{bottom:263.200074pt;}
.y13e{bottom:265.920044pt;}
.yec{bottom:268.320069pt;}
.y106{bottom:268.640076pt;}
.y127{bottom:272.800049pt;}
.y16f{bottom:273.920044pt;}
.yd3{bottom:276.640076pt;}
.y6f{bottom:280.000061pt;}
.ya0{bottom:282.080079pt;}
.y13d{bottom:284.800049pt;}
.yeb{bottom:287.200074pt;}
.y105{bottom:287.520081pt;}
.y49{bottom:288.960083pt;}
.y48{bottom:291.520081pt;}
.y16e{bottom:293.120057pt;}
.yd2{bottom:295.360047pt;}
.y1a4{bottom:296.480042pt;}
.y6e{bottom:299.520081pt;}
.y9f{bottom:300.800049pt;}
.y13c{bottom:303.520081pt;}
.y16d{bottom:305.760071pt;}
.yea{bottom:305.920044pt;}
.y104{bottom:306.240052pt;}
.y47{bottom:307.360047pt;}
.y126{bottom:310.400086pt;}
.yd1{bottom:314.240052pt;}
.y6d{bottom:318.880066pt;}
.y9e{bottom:319.680054pt;}
.y1a3{bottom:320.000061pt;}
.y13b{bottom:322.240052pt;}
.y46{bottom:323.200074pt;}
.ye9{bottom:324.640076pt;}
.y103{bottom:325.120057pt;}
.y125{bottom:329.120057pt;}
.yd0{bottom:332.960083pt;}
.y45{bottom:336.640076pt;}
.y16c{bottom:337.760071pt;}
.y6c{bottom:338.240052pt;}
.y9d{bottom:338.400086pt;}
.y13a{bottom:341.120057pt;}
.y1a2{bottom:343.200074pt;}
.ye8{bottom:343.520081pt;}
.y102{bottom:343.840088pt;}
.y124{bottom:348.000061pt;}
.y16b{bottom:350.400086pt;}
.ycf{bottom:351.680054pt;}
.y44{bottom:352.320069pt;}
.y9c{bottom:357.120057pt;}
.y6b{bottom:357.760071pt;}
.y139{bottom:359.840088pt;}
.y1a1{bottom:361.760071pt;}
.ye7{bottom:362.240052pt;}
.y101{bottom:362.560059pt;}
.y43{bottom:364.960083pt;}
.y123{bottom:366.720032pt;}
.yce{bottom:370.560059pt;}
.y1a0{bottom:374.400086pt;}
.y9b{bottom:376.000061pt;}
.y16a{bottom:376.640076pt;}
.y6a{bottom:377.120057pt;}
.y42{bottom:377.600037pt;}
.y138{bottom:378.720032pt;}
.ye6{bottom:381.120057pt;}
.y100{bottom:381.440064pt;}
.y122{bottom:385.440064pt;}
.y19f{bottom:387.040039pt;}
.ycd{bottom:389.280030pt;}
.y41{bottom:390.240052pt;}
.y9a{bottom:394.720032pt;}
.y69{bottom:396.480042pt;}
.y137{bottom:397.440064pt;}
.ye5{bottom:399.840088pt;}
.yff{bottom:400.160035pt;}
.y40{bottom:402.880066pt;}
.y121{bottom:404.320069pt;}
.y19e{bottom:406.400086pt;}
.ycc{bottom:408.160035pt;}
.y169{bottom:409.760071pt;}
.y99{bottom:413.600037pt;}
.y3f{bottom:415.520081pt;}
.y68{bottom:416.320069pt;}
.ye4{bottom:418.560059pt;}
.yfe{bottom:419.040039pt;}
.y168{bottom:422.400086pt;}
.y120{bottom:423.040039pt;}
.ycb{bottom:426.880066pt;}
.y3e{bottom:428.160035pt;}
.y98{bottom:432.320069pt;}
.y136{bottom:435.040039pt;}
.y67{bottom:436.000061pt;}
.ye3{bottom:437.440064pt;}
.yfd{bottom:437.760071pt;}
.y19d{bottom:438.400086pt;}
.y3d{bottom:440.800049pt;}
.y11f{bottom:444.640076pt;}
.yca{bottom:445.600037pt;}
.y167{bottom:447.680054pt;}
.y97{bottom:451.040039pt;}
.y3c{bottom:453.440064pt;}
.y135{bottom:453.760071pt;}
.y66{bottom:456.160035pt;}
.yfc{bottom:456.480042pt;}
.y19c{bottom:457.600037pt;}
.yc9{bottom:464.480042pt;}
.y3b{bottom:466.080079pt;}
.y11e{bottom:468.640076pt;}
.y96{bottom:469.920044pt;}
.y19b{bottom:470.240052pt;}
.y134{bottom:472.640076pt;}
.ye2{bottom:475.040039pt;}
.yfb{bottom:475.360047pt;}
.y65{bottom:476.480042pt;}
.y166{bottom:476.640076pt;}
.y3a{bottom:478.720032pt;}
.yc8{bottom:483.200074pt;}
.y11d{bottom:487.680054pt;}
.y95{bottom:488.640076pt;}
.y19a{bottom:489.600037pt;}
.y39{bottom:491.360047pt;}
.y64{bottom:495.840088pt;}
.yfa{bottom:496.960083pt;}
.yc7{bottom:502.080079pt;}
.y38{bottom:504.000061pt;}
.y11c{bottom:504.800049pt;}
.y165{bottom:505.280030pt;}
.y11b{bottom:506.080079pt;}
.y94{bottom:507.520081pt;}
.y199{bottom:508.960083pt;}
.y133{bottom:510.240052pt;}
.ye1{bottom:512.480042pt;}
.y63{bottom:513.120057pt;}
.y37{bottom:516.640076pt;}
.yc6{bottom:520.800049pt;}
.y164{bottom:521.600037pt;}
.y11a{bottom:521.920044pt;}
.yf9{bottom:523.680054pt;}
.y93{bottom:526.240052pt;}
.y132{bottom:528.960083pt;}
.y36{bottom:529.280030pt;}
.y62{bottom:530.240052pt;}
.ye0{bottom:531.360047pt;}
.y119{bottom:539.040039pt;}
.yc5{bottom:539.520081pt;}
.y198{bottom:540.800049pt;}
.y35{bottom:543.520081pt;}
.y131{bottom:544.640076pt;}
.y92{bottom:544.960083pt;}
.y61{bottom:545.760071pt;}
.yf8{bottom:547.520081pt;}
.ydf{bottom:550.080079pt;}
.y163{bottom:550.240052pt;}
.y197{bottom:553.440064pt;}
.y118{bottom:556.320069pt;}
.y117{bottom:557.600037pt;}
.yc4{bottom:558.400086pt;}
.y162{bottom:562.080079pt;}
.y130{bottom:563.360047pt;}
.y34{bottom:563.680054pt;}
.y91{bottom:563.840088pt;}
.y196{bottom:566.080079pt;}
.yf7{bottom:566.240052pt;}
.y116{bottom:573.440064pt;}
.y161{bottom:573.920044pt;}
.y60{bottom:574.880066pt;}
.y33{bottom:580.000061pt;}
.y90{bottom:582.560059pt;}
.yf6{bottom:585.120057pt;}
.y195{bottom:585.440064pt;}
.y160{bottom:585.760071pt;}
.y5f{bottom:586.080079pt;}
.yde{bottom:587.680054pt;}
.y115{bottom:590.560059pt;}
.y113{bottom:593.280030pt;}
.y32{bottom:595.680054pt;}
.y5e{bottom:597.760071pt;}
.y194{bottom:598.080079pt;}
.ydd{bottom:599.680054pt;}
.y8f{bottom:601.440064pt;}
.y15f{bottom:602.080079pt;}
.yc3{bottom:603.840088pt;}
.y114{bottom:607.680054pt;}
.y31{bottom:608.320069pt;}
.y5d{bottom:609.120057pt;}
.y193{bottom:610.720063pt;}
.y8e{bottom:620.160065pt;}
.y30{bottom:620.960053pt;}
.y5c{bottom:621.760071pt;}
.yc2{bottom:622.560059pt;}
.y112{bottom:624.800049pt;}
.y192{bottom:630.080048pt;}
.y15e{bottom:630.720063pt;}
.y2f{bottom:633.600068pt;}
.y5b{bottom:634.400055pt;}
.y8d{bottom:639.040070pt;}
.yc1{bottom:641.440064pt;}
.y111{bottom:642.080048pt;}
.y2e{bottom:646.240052pt;}
.y5a{bottom:647.040070pt;}
.y191{bottom:649.280060pt;}
.y15d{bottom:655.840058pt;}
.y8c{bottom:657.760071pt;}
.y2d{bottom:658.880066pt;}
.y59{bottom:659.680054pt;}
.yc0{bottom:660.160065pt;}
.y190{bottom:661.920044pt;}
.y2c{bottom:671.520050pt;}
.y58{bottom:676.320069pt;}
.y8b{bottom:676.480072pt;}
.ybf{bottom:679.040070pt;}
.y18f{bottom:681.280060pt;}
.y2b{bottom:684.160065pt;}
.y57{bottom:684.960053pt;}
.y15c{bottom:685.440064pt;}
.y18e{bottom:693.920044pt;}
.y8a{bottom:695.360047pt;}
.y2a{bottom:696.800049pt;}
.y56{bottom:697.600068pt;}
.ybe{bottom:697.760071pt;}
.y15b{bottom:700.800049pt;}
.y18d{bottom:706.560059pt;}
.y29{bottom:709.440064pt;}
.y55{bottom:710.240052pt;}
.y15a{bottom:712.640046pt;}
.y89{bottom:714.080048pt;}
.ybd{bottom:716.480072pt;}
.y28{bottom:722.080048pt;}
.y54{bottom:722.880066pt;}
.y159{bottom:724.480072pt;}
.y18c{bottom:725.920044pt;}
.y88{bottom:732.960053pt;}
.y27{bottom:734.720063pt;}
.ybc{bottom:735.360047pt;}
.y158{bottom:736.320069pt;}
.y53{bottom:739.520050pt;}
.y18b{bottom:745.120057pt;}
.y26{bottom:747.360047pt;}
.y157{bottom:748.160065pt;}
.y87{bottom:751.680054pt;}
.y52{bottom:752.160065pt;}
.ybb{bottom:754.080048pt;}
.y18a{bottom:757.760071pt;}
.y25{bottom:760.000061pt;}
.y51{bottom:760.480072pt;}
.y86{bottom:770.400055pt;}
.y50{bottom:771.840058pt;}
.y24{bottom:772.640046pt;}
.yba{bottom:772.960053pt;}
.y156{bottom:776.320069pt;}
.y4f{bottom:784.480072pt;}
.y23{bottom:785.280060pt;}
.y85{bottom:789.280060pt;}
.y189{bottom:789.760071pt;}
.yb9{bottom:791.680054pt;}
.y4e{bottom:797.120057pt;}
.y22{bottom:797.920044pt;}
.y188{bottom:802.400055pt;}
.y155{bottom:804.960053pt;}
.y84{bottom:808.000061pt;}
.y4d{bottom:809.760071pt;}
.yb8{bottom:810.400055pt;}
.y21{bottom:810.560059pt;}
.y154{bottom:816.800049pt;}
.y187{bottom:821.760071pt;}
.y4c{bottom:822.240052pt;}
.y20{bottom:823.200074pt;}
.y83{bottom:826.880066pt;}
.y153{bottom:828.640046pt;}
.yb7{bottom:829.280060pt;}
.y4b{bottom:832.000061pt;}
.y186{bottom:834.400055pt;}
.y1f{bottom:836.480072pt;}
.y152{bottom:840.640046pt;}
.y82{bottom:845.600068pt;}
.y185{bottom:847.040070pt;}
.yb6{bottom:848.000061pt;}
.y151{bottom:852.480072pt;}
.y184{bottom:859.680054pt;}
.y1e{bottom:861.280060pt;}
.y81{bottom:864.320069pt;}
.yb5{bottom:866.880066pt;}
.y150{bottom:876.160065pt;}
.y183{bottom:878.880066pt;}
.y80{bottom:883.200058pt;}
.yb4{bottom:885.600052pt;}
.y1d{bottom:886.400055pt;}
.y182{bottom:891.520066pt;}
.y14f{bottom:892.480057pt;}
.y7f{bottom:901.920060pt;}
.y181{bottom:904.160065pt;}
.yb3{bottom:904.480057pt;}
.y1c{bottom:917.440064pt;}
.y7e{bottom:920.800064pt;}
.y14e{bottom:921.120057pt;}
.yb2{bottom:923.200058pt;}
.y180{bottom:923.520066pt;}
.y14d{bottom:932.960053pt;}
.y17f{bottom:936.160065pt;}
.y7d{bottom:939.520066pt;}
.yb1{bottom:941.920060pt;}
.y14c{bottom:944.800064pt;}
.y17e{bottom:948.800064pt;}
.y1b{bottom:952.000061pt;}
.y14b{bottom:956.640061pt;}
.y7c{bottom:958.240052pt;}
.yb0{bottom:960.800064pt;}
.y17d{bottom:968.160065pt;}
.y7b{bottom:977.120057pt;}
.yaf{bottom:979.520066pt;}
.y17c{bottom:980.800064pt;}
.y1a{bottom:980.960053pt;}
.y14a{bottom:981.760056pt;}
.y17b{bottom:993.440064pt;}
.y149{bottom:993.600052pt;}
.y7a{bottom:995.840058pt;}
.yae{bottom:998.400055pt;}
.y148{bottom:1005.600060pt;}
.yd{bottom:1006.080056pt;}
.y17a{bottom:1012.640061pt;}
.yad{bottom:1017.120057pt;}
.yc{bottom:1021.920060pt;}
.y179{bottom:1025.280060pt;}
.y79{bottom:1030.720063pt;}
.y147{bottom:1035.200058pt;}
.yac{bottom:1035.840058pt;}
.y178{bottom:1037.920060pt;}
.ya{bottom:1043.360062pt;}
.y9{bottom:1047.520058pt;}
.y4{bottom:1055.360062pt;}
.yab{bottom:1055.680062pt;}
.y7{bottom:1063.680058pt;}
.y6{bottom:1067.840058pt;}
.y78{bottom:1068.000058pt;}
.y3{bottom:1068.160057pt;}
.yaa{bottom:1068.480057pt;}
.y2{bottom:1080.640061pt;}
.y77{bottom:1080.960061pt;}
.ya9{bottom:1081.440060pt;}
.y5{bottom:1087.840058pt;}
.y76{bottom:1093.600060pt;}
.y1{bottom:1093.760060pt;}
.h14{height:11.839997pt;}
.h13{height:12.159974pt;}
.h21{height:15.679993pt;}
.h8{height:19.999996pt;}
.h6{height:20.000000pt;}
.h1a{height:21.672715pt;}
.h19{height:22.344616pt;}
.h18{height:25.133772pt;}
.hb{height:25.918463pt;}
.h4{height:29.941742pt;}
.hf{height:32.314834pt;}
.h17{height:34.708546pt;}
.h1b{height:36.119161pt;}
.h15{height:37.700696pt;}
.h16{height:39.232917pt;}
.h2{height:40.094296pt;}
.h12{height:40.737520pt;}
.h1c{height:40.823283pt;}
.h3{height:41.680915pt;}
.h25{height:41.723797pt;}
.h26{height:42.374525pt;}
.h1d{height:43.144971pt;}
.h1f{height:48.033900pt;}
.h24{height:50.465900pt;}
.h10{height:51.687706pt;}
.he{height:55.055044pt;}
.h27{height:55.702458pt;}
.hd{height:60.930289pt;}
.h5{height:63.367405pt;}
.h7{height:64.765215pt;}
.h11{height:67.256488pt;}
.h9{height:68.362453pt;}
.h1e{height:68.706660pt;}
.hc{height:91.395427pt;}
.h22{height:103.457488pt;}
.h23{height:104.097380pt;}
.h20{height:104.097628pt;}
.ha{height:108.363704pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:4.000000pt;}
.w6{width:4.959992pt;}
.wc{width:5.279998pt;}
.w9{width:5.279999pt;}
.w2{width:7.200012pt;}
.w7{width:7.839996pt;}
.wa{width:10.720001pt;}
.wd{width:18.559997pt;}
.wb{width:29.279999pt;}
.w5{width:68.320007pt;}
.w8{width:80.000000pt;}
.w3{width:131.200012pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.x28{left:51.840000pt;}
.x1a{left:55.200001pt;}
.xa{left:72.639999pt;}
.x11{left:77.279999pt;}
.xb{left:78.239998pt;}
.x1{left:79.680000pt;}
.x7{left:91.519997pt;}
.x14{left:95.040001pt;}
.x13{left:110.559998pt;}
.x2d{left:121.120003pt;}
.x1f{left:142.080002pt;}
.x12{left:145.600006pt;}
.x20{left:149.919998pt;}
.x21{left:153.919998pt;}
.x19{left:161.440002pt;}
.x16{left:170.080002pt;}
.x17{left:189.600006pt;}
.x32{left:207.839996pt;}
.x8{left:217.122745pt;}
.x22{left:233.919998pt;}
.xd{left:236.800003pt;}
.xc{left:282.399994pt;}
.x2f{left:286.079987pt;}
.x30{left:288.160004pt;}
.x23{left:292.320007pt;}
.xf{left:322.399994pt;}
.x24{left:328.799988pt;}
.x2e{left:335.200012pt;}
.x25{left:358.079987pt;}
.x15{left:418.559998pt;}
.x26{left:434.880005pt;}
.x27{left:453.440002pt;}
.x29{left:483.040009pt;}
.x1b{left:489.600006pt;}
.xe{left:491.200012pt;}
.x2{left:499.200012pt;}
.x3{left:519.840027pt;}
.x1c{left:545.599976pt;}
.x2a{left:548.479980pt;}
.x5{left:556.320007pt;}
.x31{left:568.000000pt;}
.x2b{left:599.039978pt;}
.x1d{left:601.599976pt;}
.x18{left:634.880005pt;}
.x9{left:643.520020pt;}
.x10{left:662.559998pt;}
.x1e{left:698.239990pt;}
.x2c{left:701.760010pt;}
.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; }
  