
    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_83edc19d0f595b3d33d4bab6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061000;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_904af029eee7409b8d7c412d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_65cabdf80d86caac0c321b6d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.139000;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_8d655eb85d8782e5cb5236c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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_210cce3aea894ebec3695c3b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.075000;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_6f434c486c63761020715c4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.059000;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_2581dcfcf3f1550fe7613d69.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137000;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_ecbfe60ec44c2c16194ca676.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.075000;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_a3b5abed75d4e9c7f3e86d7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.148000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_eaf8aad6293bf4e7afe23887.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7e41cd5dd32ebba5b51928d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.139000;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:ffc;src:url('chunks/assets/font_2b9cd8ce6c5e7af5866e18a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.079000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:7.202701px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.006785px;}
.ws0{word-spacing:-16.498716px;}
.ws5{word-spacing:-15.001902px;}
.ws6{word-spacing:-10.504681px;}
.ws3{word-spacing:-6.996050px;}
.ws4{word-spacing:-4.668877px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-1.008447px;}
._12{width:1.419993px;}
._14{width:3.240046px;}
._1b{width:4.816269px;}
._2c{width:5.968621px;}
._c{width:7.048496px;}
._17{width:8.900998px;}
._b{width:10.042505px;}
._29{width:11.051426px;}
._11{width:12.903343px;}
._6{width:14.038488px;}
._2{width:15.332437px;}
._13{width:18.511158px;}
._e{width:20.206882px;}
._4{width:21.562636px;}
._18{width:22.659424px;}
._16{width:23.859532px;}
._1d{width:25.828566px;}
._1c{width:27.260254px;}
._2b{width:28.985724px;}
._2d{width:30.282655px;}
._f{width:31.546534px;}
._20{width:32.898079px;}
._19{width:34.452563px;}
._3a{width:35.485966px;}
._34{width:36.749654px;}
._25{width:38.187175px;}
._26{width:40.161311px;}
._2f{width:41.209200px;}
._27{width:42.804949px;}
._22{width:44.085460px;}
._35{width:46.220525px;}
._30{width:48.324374px;}
._1a{width:49.442280px;}
._43{width:50.954681px;}
._1f{width:52.048002px;}
._9{width:53.144445px;}
._d{width:54.852323px;}
._7{width:56.456330px;}
._15{width:57.656285px;}
._0{width:59.633810px;}
._3c{width:60.685446px;}
._21{width:61.897268px;}
._1{width:63.280228px;}
._37{width:65.585992px;}
._a{width:66.709762px;}
._2e{width:69.002121px;}
._8{width:70.363724px;}
._24{width:72.069128px;}
._31{width:73.922905px;}
._5{width:76.434491px;}
._39{width:78.184088px;}
._2a{width:79.901966px;}
._28{width:81.117530px;}
._33{width:82.556666px;}
._3b{width:83.946508px;}
._40{width:85.063240px;}
._1e{width:86.521336px;}
._42{width:88.979429px;}
._3f{width:92.648300px;}
._3e{width:93.654429px;}
._32{width:99.430808px;}
._45{width:100.652695px;}
._10{width:102.944498px;}
._44{width:104.516324px;}
._23{width:109.504163px;}
._41{width:111.470216px;}
._38{width:175.231613px;}
._3d{width:193.423315px;}
._36{width:976.843457px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.675507px;}
.fs4{font-size:27.984200px;}
.fs6{font-size:29.750527px;}
.fs7{font-size:42.018724px;}
.fs8{font-size:48.018688px;}
.fs1{font-size:60.007609px;}
.fs0{font-size:65.994864px;}
.fs3{font-size:72.027138px;}
.fs2{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y181{bottom:5.642463px;}
.y180{bottom:15.559305px;}
.y17f{bottom:25.476148px;}
.y17e{bottom:35.392990px;}
.y126{bottom:36.156188px;}
.y113{bottom:37.131610px;}
.y17c{bottom:37.935019px;}
.y179{bottom:43.819859px;}
.y17d{bottom:45.309833px;}
.yca{bottom:55.426529px;}
.y125{bottom:56.413821px;}
.y112{bottom:59.640091px;}
.y178{bottom:62.175826px;}
.y17a{bottom:63.049143px;}
.y176{bottom:63.418600px;}
.yba{bottom:69.000098px;}
.y2b{bottom:74.346889px;}
.yc9{bottom:77.935009px;}
.y177{bottom:79.314057px;}
.y111{bottom:82.148572px;}
.y175{bottom:85.927081px;}
.yb9{bottom:91.508578px;}
.y2a{bottom:96.855370px;}
.y7b{bottom:98.319015px;}
.yc8{bottom:100.443490px;}
.y110{bottom:104.657052px;}
.y174{bottom:108.435562px;}
.yb8{bottom:114.017059px;}
.y84{bottom:117.826392px;}
.y29{bottom:119.363851px;}
.y7a{bottom:120.827496px;}
.yc7{bottom:122.951971px;}
.y10f{bottom:127.165533px;}
.y173{bottom:130.944042px;}
.y1c{bottom:131.233258px;}
.yb7{bottom:136.525540px;}
.y83{bottom:140.334872px;}
.y28{bottom:141.872331px;}
.y79{bottom:143.335976px;}
.yc6{bottom:145.460451px;}
.y10e{bottom:149.674014px;}
.y1b{bottom:151.490891px;}
.y182{bottom:152.180601px;}
.y172{bottom:153.452523px;}
.yb6{bottom:159.034020px;}
.y82{bottom:162.843353px;}
.y27{bottom:164.380812px;}
.y78{bottom:165.844457px;}
.yc5{bottom:167.968932px;}
.y1a{bottom:171.748524px;}
.y10d{bottom:172.182494px;}
.y171{bottom:175.961004px;}
.yb5{bottom:181.542501px;}
.y81{bottom:185.351834px;}
.y26{bottom:186.889293px;}
.y77{bottom:188.352938px;}
.yc4{bottom:190.477413px;}
.y19{bottom:192.006156px;}
.y10c{bottom:194.690975px;}
.y170{bottom:198.469484px;}
.y188{bottom:202.590228px;}
.yb4{bottom:204.050982px;}
.y25{bottom:209.397773px;}
.y76{bottom:210.861418px;}
.y18{bottom:212.263789px;}
.yc3{bottom:212.985893px;}
.y187{bottom:218.596457px;}
.y16f{bottom:220.977965px;}
.yb3{bottom:226.559462px;}
.y80{bottom:230.368795px;}
.y24{bottom:231.906254px;}
.y17{bottom:232.521421px;}
.yc2{bottom:235.494374px;}
.y10b{bottom:239.707936px;}
.y17b{bottom:243.357025px;}
.yb2{bottom:249.067943px;}
.y7f{bottom:252.877276px;}
.y8c{bottom:253.552348px;}
.y23{bottom:254.414735px;}
.yc1{bottom:258.002855px;}
.y10a{bottom:262.216417px;}
.y16e{bottom:265.994926px;}
.yb1{bottom:271.576424px;}
.y7e{bottom:275.385756px;}
.y22{bottom:276.923215px;}
.y186{bottom:279.278450px;}
.yc0{bottom:280.511335px;}
.y109{bottom:284.724897px;}
.y16d{bottom:288.503407px;}
.y185{bottom:295.284680px;}
.y75{bottom:296.243594px;}
.y7d{bottom:297.894237px;}
.y21{bottom:299.431696px;}
.ybf{bottom:303.019816px;}
.y108{bottom:307.233378px;}
.y16c{bottom:311.011888px;}
.y9f{bottom:311.041292px;}
.y184{bottom:311.290909px;}
.y152{bottom:317.906240px;}
.y74{bottom:318.752074px;}
.y7c{bottom:320.402718px;}
.y20{bottom:321.940177px;}
.ybe{bottom:325.528297px;}
.y107{bottom:329.741859px;}
.y16b{bottom:333.520368px;}
.y9e{bottom:333.549773px;}
.y183{bottom:339.710193px;}
.y151{bottom:340.414721px;}
.y73{bottom:341.260555px;}
.y1f{bottom:344.448657px;}
.ybd{bottom:348.036777px;}
.y106{bottom:352.250339px;}
.y16a{bottom:356.028849px;}
.y89{bottom:358.071856px;}
.y150{bottom:362.923201px;}
.y72{bottom:363.769036px;}
.y1e{bottom:366.957138px;}
.ybc{bottom:370.545258px;}
.yb0{bottom:373.014588px;}
.y105{bottom:374.758820px;}
.y14f{bottom:385.431682px;}
.y1d{bottom:389.465619px;}
.ybb{bottom:393.053739px;}
.y1b2{bottom:395.081060px;}
.yaf{bottom:395.523068px;}
.y104{bottom:397.267301px;}
.y5b{bottom:397.536728px;}
.y192{bottom:400.344192px;}
.y169{bottom:401.045810px;}
.y8b{bottom:406.460032px;}
.y14e{bottom:407.940163px;}
.y1b1{bottom:417.589541px;}
.yae{bottom:418.031549px;}
.y5a{bottom:420.045209px;}
.y191{bottom:422.852673px;}
.y14d{bottom:430.448643px;}
.y8a{bottom:431.219361px;}
.y3e{bottom:434.407449px;}
.ye5{bottom:435.744849px;}
.y168{bottom:437.601580px;}
.y1b0{bottom:440.098022px;}
.yad{bottom:440.540030px;}
.y103{bottom:442.284262px;}
.y59{bottom:442.553690px;}
.y190{bottom:445.361153px;}
.y14c{bottom:452.957124px;}
.y167{bottom:460.110061px;}
.y1af{bottom:462.606502px;}
.yac{bottom:463.048510px;}
.y58{bottom:465.062170px;}
.y18f{bottom:467.869634px;}
.y71{bottom:473.910470px;}
.y14b{bottom:475.465605px;}
.ye3{bottom:478.435957px;}
.y39{bottom:479.349407px;}
.y166{bottom:482.618542px;}
.y1ae{bottom:485.114983px;}
.yab{bottom:485.556991px;}
.y102{bottom:487.301223px;}
.y57{bottom:487.570651px;}
.y18e{bottom:490.378115px;}
.y70{bottom:496.418950px;}
.y14a{bottom:497.974085px;}
.ye2{bottom:500.944438px;}
.y38{bottom:501.857888px;}
.y165{bottom:505.127022px;}
.y1ad{bottom:507.623464px;}
.yaa{bottom:508.065472px;}
.y101{bottom:509.809704px;}
.y56{bottom:510.079132px;}
.yf5{bottom:510.211540px;}
.y18d{bottom:512.886595px;}
.y6f{bottom:518.927431px;}
.y149{bottom:520.482566px;}
.ye1{bottom:523.452919px;}
.y37{bottom:524.366368px;}
.y164{bottom:527.635503px;}
.y1ac{bottom:530.131944px;}
.ya9{bottom:530.573952px;}
.y100{bottom:532.318185px;}
.y55{bottom:532.587612px;}
.yf4{bottom:532.720020px;}
.y18c{bottom:535.395076px;}
.y6e{bottom:541.435912px;}
.y148{bottom:542.991047px;}
.ye0{bottom:545.961399px;}
.y36{bottom:546.874849px;}
.y163{bottom:550.143984px;}
.y1ab{bottom:552.640425px;}
.ya8{bottom:553.082433px;}
.yff{bottom:554.826665px;}
.y54{bottom:555.096093px;}
.yf3{bottom:555.228501px;}
.y18b{bottom:557.903557px;}
.y6d{bottom:563.944392px;}
.y147{bottom:565.499527px;}
.ydf{bottom:568.469880px;}
.y35{bottom:569.383330px;}
.y162{bottom:572.652464px;}
.y1aa{bottom:575.148906px;}
.ya7{bottom:575.590914px;}
.yfe{bottom:577.335146px;}
.y53{bottom:577.604574px;}
.yf2{bottom:577.736982px;}
.y18a{bottom:580.412037px;}
.y6c{bottom:586.452873px;}
.y146{bottom:588.008008px;}
.y16{bottom:588.365459px;}
.yde{bottom:590.978361px;}
.y34{bottom:591.891810px;}
.y161{bottom:595.160945px;}
.y1a9{bottom:597.657386px;}
.ya6{bottom:598.099394px;}
.yfd{bottom:599.843627px;}
.y52{bottom:600.113054px;}
.yf1{bottom:600.245462px;}
.y189{bottom:602.920518px;}
.y6b{bottom:608.961354px;}
.y145{bottom:610.516489px;}
.y15{bottom:610.873940px;}
.ydd{bottom:613.486841px;}
.y33{bottom:614.400291px;}
.y160{bottom:617.669426px;}
.y1a8{bottom:620.165867px;}
.ya5{bottom:620.607875px;}
.yfc{bottom:622.352107px;}
.y51{bottom:622.621535px;}
.y6a{bottom:631.469834px;}
.y144{bottom:633.024969px;}
.y14{bottom:633.382421px;}
.ydc{bottom:635.995322px;}
.y32{bottom:636.908772px;}
.y1a7{bottom:642.674348px;}
.ya4{bottom:643.116356px;}
.yfb{bottom:644.860588px;}
.y50{bottom:645.130016px;}
.yf0{bottom:645.262424px;}
.y193{bottom:653.489529px;}
.y69{bottom:653.978315px;}
.y143{bottom:655.533450px;}
.y13{bottom:655.890901px;}
.ydb{bottom:658.503803px;}
.y31{bottom:659.417252px;}
.y15f{bottom:662.686387px;}
.y1a6{bottom:665.182828px;}
.ya3{bottom:665.624836px;}
.yfa{bottom:667.369069px;}
.y4f{bottom:667.638496px;}
.yef{bottom:667.770904px;}
.y68{bottom:676.486796px;}
.y142{bottom:678.041931px;}
.y12{bottom:678.399382px;}
.yda{bottom:681.012283px;}
.y30{bottom:681.925733px;}
.y15e{bottom:685.194868px;}
.y1a5{bottom:687.691309px;}
.ya2{bottom:688.133317px;}
.yf9{bottom:689.877549px;}
.y4e{bottom:690.146977px;}
.yee{bottom:690.279385px;}
.y67{bottom:698.995276px;}
.y141{bottom:700.550411px;}
.y11{bottom:700.907863px;}
.yd9{bottom:703.520764px;}
.y2f{bottom:704.434214px;}
.y1c3{bottom:706.927142px;}
.y1a4{bottom:710.199790px;}
.ya1{bottom:710.641798px;}
.yf8{bottom:712.386030px;}
.y4d{bottom:712.655458px;}
.yed{bottom:712.787866px;}
.y66{bottom:721.503757px;}
.y140{bottom:723.058892px;}
.y10{bottom:723.416343px;}
.yd8{bottom:726.029245px;}
.y2e{bottom:726.942694px;}
.y1c2{bottom:729.435622px;}
.y15d{bottom:730.211829px;}
.y1a3{bottom:732.708270px;}
.ya0{bottom:733.150278px;}
.yf7{bottom:734.894511px;}
.y4c{bottom:735.163938px;}
.yec{bottom:735.296346px;}
.y65{bottom:744.012238px;}
.y13f{bottom:745.567373px;}
.yf{bottom:745.924824px;}
.yd7{bottom:748.537725px;}
.y2d{bottom:749.451175px;}
.y1c1{bottom:751.944103px;}
.yf6{bottom:757.402991px;}
.y4b{bottom:757.672419px;}
.yeb{bottom:757.804827px;}
.y15c{bottom:766.179701px;}
.y64{bottom:766.520718px;}
.y13e{bottom:768.075853px;}
.ye{bottom:768.433305px;}
.yd6{bottom:771.046206px;}
.y2c{bottom:771.959656px;}
.y9d{bottom:772.615100px;}
.y1c0{bottom:774.452583px;}
.y1a2{bottom:777.725232px;}
.y4a{bottom:780.180900px;}
.yea{bottom:780.313308px;}
.y15b{bottom:788.688182px;}
.y63{bottom:789.029199px;}
.y13d{bottom:790.584334px;}
.yd{bottom:790.941785px;}
.yd5{bottom:793.554687px;}
.y1bf{bottom:796.961064px;}
.y1a1{bottom:800.233712px;}
.y49{bottom:802.689380px;}
.ye9{bottom:802.821788px;}
.y124{bottom:809.016717px;}
.y15a{bottom:811.196662px;}
.y62{bottom:811.537680px;}
.y9c{bottom:811.907169px;}
.y13c{bottom:813.092815px;}
.yc{bottom:813.450266px;}
.yd4{bottom:816.063167px;}
.y3d{bottom:816.901602px;}
.y1be{bottom:819.469545px;}
.y1a0{bottom:822.742193px;}
.y48{bottom:825.197861px;}
.ye8{bottom:825.330269px;}
.y159{bottom:833.705143px;}
.y123{bottom:833.776046px;}
.y61{bottom:834.046160px;}
.y9b{bottom:834.415650px;}
.y13b{bottom:835.601295px;}
.yb{bottom:835.958747px;}
.yd3{bottom:838.571648px;}
.y3c{bottom:841.660931px;}
.y1bd{bottom:841.978025px;}
.ye7{bottom:847.838750px;}
.y158{bottom:856.213624px;}
.y60{bottom:856.554641px;}
.y9a{bottom:856.924130px;}
.ya{bottom:858.467227px;}
.y88{bottom:860.308580px;}
.yd2{bottom:861.080129px;}
.y1bc{bottom:864.486506px;}
.y19f{bottom:867.759154px;}
.ye6{bottom:870.347230px;}
.y157{bottom:878.722104px;}
.y5f{bottom:879.063122px;}
.y99{bottom:879.432611px;}
.y13a{bottom:880.618257px;}
.y9{bottom:880.975708px;}
.yd1{bottom:883.588609px;}
.y120{bottom:885.389794px;}
.y47{bottom:893.020901px;}
.y156{bottom:901.230585px;}
.y5e{bottom:901.571602px;}
.y98{bottom:901.941092px;}
.y139{bottom:903.126737px;}
.y8{bottom:903.484189px;}
.yd0{bottom:906.097090px;}
.y11f{bottom:907.898274px;}
.y1c4{bottom:908.320631px;}
.y122{bottom:910.787485px;}
.y19e{bottom:912.776116px;}
.y46{bottom:915.529381px;}
.y155{bottom:923.739066px;}
.y5d{bottom:924.080083px;}
.y97{bottom:924.449572px;}
.y138{bottom:925.635218px;}
.y7{bottom:925.992669px;}
.ycf{bottom:928.605571px;}
.y11e{bottom:930.406755px;}
.y19d{bottom:935.284596px;}
.y121{bottom:935.546814px;}
.y154{bottom:946.247546px;}
.y5c{bottom:946.588564px;}
.y96{bottom:946.958053px;}
.y6{bottom:948.501150px;}
.y87{bottom:950.640079px;}
.yce{bottom:951.114051px;}
.y1ba{bottom:952.154808px;}
.y11d{bottom:952.915236px;}
.y19c{bottom:957.793077px;}
.y153{bottom:968.756027px;}
.y95{bottom:969.466534px;}
.y137{bottom:970.652179px;}
.y5{bottom:971.009631px;}
.ycd{bottom:973.622532px;}
.y1b9{bottom:974.663288px;}
.y11c{bottom:975.423716px;}
.y12f{bottom:976.446282px;}
.y19b{bottom:980.301558px;}
.y86{bottom:989.279632px;}
.y94{bottom:991.975014px;}
.y4{bottom:993.518111px;}
.ycc{bottom:996.131013px;}
.y1b8{bottom:997.171769px;}
.y11b{bottom:997.932197px;}
.y12e{bottom:998.954763px;}
.y19a{bottom:1002.810038px;}
.y136{bottom:1013.772988px;}
.y85{bottom:1014.038961px;}
.y93{bottom:1014.483495px;}
.y3{bottom:1016.026592px;}
.ycb{bottom:1018.639493px;}
.y1b7{bottom:1019.680250px;}
.y11a{bottom:1020.440678px;}
.y12d{bottom:1021.463243px;}
.y199{bottom:1025.318519px;}
.y45{bottom:1033.794967px;}
.y135{bottom:1036.281469px;}
.y92{bottom:1036.991976px;}
.y2{bottom:1038.535072px;}
.y1b6{bottom:1042.188730px;}
.y119{bottom:1042.949158px;}
.y12c{bottom:1043.971724px;}
.y198{bottom:1047.827000px;}
.y44{bottom:1056.303448px;}
.y134{bottom:1058.789950px;}
.y91{bottom:1059.500456px;}
.ye4{bottom:1061.330553px;}
.y1b5{bottom:1064.697211px;}
.y118{bottom:1065.457639px;}
.y12b{bottom:1066.480205px;}
.y197{bottom:1070.335480px;}
.y43{bottom:1078.811928px;}
.y133{bottom:1081.298430px;}
.y3f{bottom:1082.005391px;}
.y90{bottom:1082.008937px;}
.y1b4{bottom:1087.205692px;}
.y117{bottom:1087.966120px;}
.y12a{bottom:1088.988685px;}
.y196{bottom:1092.843961px;}
.y42{bottom:1101.320409px;}
.y132{bottom:1103.806911px;}
.y8f{bottom:1104.517418px;}
.y1b3{bottom:1109.714172px;}
.y116{bottom:1110.474600px;}
.y129{bottom:1111.497166px;}
.y195{bottom:1115.352442px;}
.y41{bottom:1123.828890px;}
.y131{bottom:1126.315392px;}
.y8e{bottom:1127.025898px;}
.y115{bottom:1132.983081px;}
.y128{bottom:1134.005647px;}
.y3b{bottom:1139.147004px;}
.y40{bottom:1146.337370px;}
.y130{bottom:1148.823872px;}
.y8d{bottom:1149.534379px;}
.y114{bottom:1155.491562px;}
.y127{bottom:1156.514127px;}
.y1bb{bottom:1159.394027px;}
.y194{bottom:1160.369403px;}
.y3a{bottom:1168.408029px;}
.hd{height:15.463320px;}
.hc{height:24.933922px;}
.hf{height:26.507720px;}
.h10{height:37.438683px;}
.h11{height:42.784651px;}
.h4{height:48.786186px;}
.ha{height:53.466780px;}
.he{height:53.639998px;}
.h3{height:53.653825px;}
.h7{height:54.643748px;}
.h8{height:58.801424px;}
.hb{height:59.461373px;}
.h6{height:59.638470px;}
.h9{height:66.841172px;}
.h5{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:43.552352px;}
.x2{left:45.126335px;}
.xa{left:47.967125px;}
.xd{left:53.391773px;}
.x4{left:65.621214px;}
.x7{left:71.600029px;}
.xe{left:73.991486px;}
.x5{left:85.650245px;}
.xb{left:119.519995px;}
.xc{left:127.283452px;}
.x3{left:469.235590px;}
.x6{left:497.283268px;}
.x9{left:618.659038px;}
.x8{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.402401pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-16.006031pt;}
.ws0{word-spacing:-14.665525pt;}
.ws5{word-spacing:-13.335024pt;}
.ws6{word-spacing:-9.337494pt;}
.ws3{word-spacing:-6.218711pt;}
.ws4{word-spacing:-4.150113pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-0.896397pt;}
._12{width:1.262216pt;}
._14{width:2.880041pt;}
._1b{width:4.281128pt;}
._2c{width:5.305441pt;}
._c{width:6.265330pt;}
._17{width:7.911998pt;}
._b{width:8.926671pt;}
._29{width:9.823490pt;}
._11{width:11.469638pt;}
._6{width:12.478656pt;}
._2{width:13.628833pt;}
._13{width:16.454363pt;}
._e{width:17.961673pt;}
._4{width:19.166787pt;}
._18{width:20.141710pt;}
._16{width:21.208473pt;}
._1d{width:22.958725pt;}
._1c{width:24.231337pt;}
._2b{width:25.765088pt;}
._2d{width:26.917915pt;}
._f{width:28.041364pt;}
._20{width:29.242737pt;}
._19{width:30.624501pt;}
._3a{width:31.543081pt;}
._34{width:32.666359pt;}
._25{width:33.944156pt;}
._26{width:35.698943pt;}
._2f{width:36.630400pt;}
._27{width:38.048844pt;}
._22{width:39.187075pt;}
._35{width:41.084911pt;}
._30{width:42.955000pt;}
._1a{width:43.948693pt;}
._43{width:45.293049pt;}
._1f{width:46.264891pt;}
._9{width:47.239506pt;}
._d{width:48.757620pt;}
._7{width:50.183405pt;}
._15{width:51.250031pt;}
._0{width:53.007831pt;}
._3c{width:53.942618pt;}
._21{width:55.019793pt;}
._1{width:56.249091pt;}
._37{width:58.298660pt;}
._a{width:59.297566pt;}
._2e{width:61.335219pt;}
._8{width:62.545533pt;}
._24{width:64.061447pt;}
._31{width:65.709249pt;}
._5{width:67.941769pt;}
._39{width:69.496967pt;}
._2a{width:71.023970pt;}
._28{width:72.104471pt;}
._33{width:73.383703pt;}
._3b{width:74.619119pt;}
._40{width:75.611769pt;}
._1e{width:76.907854pt;}
._42{width:79.092825pt;}
._3f{width:82.354044pt;}
._3e{width:83.248381pt;}
._32{width:88.382941pt;}
._45{width:89.469062pt;}
._10{width:91.506220pt;}
._44{width:92.903399pt;}
._23{width:97.337034pt;}
._41{width:99.084637pt;}
._38{width:155.761433pt;}
._3d{width:171.931835pt;}
._36{width:868.305295pt;}
.fs5{font-size:16.600451pt;}
.fs4{font-size:24.874844pt;}
.fs6{font-size:26.444913pt;}
.fs7{font-size:37.349977pt;}
.fs8{font-size:42.683279pt;}
.fs1{font-size:53.340097pt;}
.fs0{font-size:58.662102pt;}
.fs3{font-size:64.024123pt;}
.fs2{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y181{bottom:5.015523pt;}
.y180{bottom:13.830494pt;}
.y17f{bottom:22.645465pt;}
.y17e{bottom:31.460436pt;}
.y126{bottom:32.138834pt;}
.y113{bottom:33.005876pt;}
.y17c{bottom:33.720017pt;}
.y179{bottom:38.950986pt;}
.y17d{bottom:40.275407pt;}
.yca{bottom:49.268025pt;}
.y125{bottom:50.145618pt;}
.y112{bottom:53.013414pt;}
.y178{bottom:55.267401pt;}
.y17a{bottom:56.043682pt;}
.y176{bottom:56.372089pt;}
.yba{bottom:61.333420pt;}
.y2b{bottom:66.086124pt;}
.yc9{bottom:69.275564pt;}
.y177{bottom:70.501384pt;}
.y111{bottom:73.020952pt;}
.y175{bottom:76.379628pt;}
.yb9{bottom:81.340959pt;}
.y2a{bottom:86.093662pt;}
.y7b{bottom:87.394680pt;}
.yc8{bottom:89.283102pt;}
.y110{bottom:93.028491pt;}
.y174{bottom:96.387166pt;}
.yb8{bottom:101.348497pt;}
.y84{bottom:104.734570pt;}
.y29{bottom:106.101201pt;}
.y7a{bottom:107.402218pt;}
.yc7{bottom:109.290641pt;}
.y10f{bottom:113.036029pt;}
.y173{bottom:116.394704pt;}
.y1c{bottom:116.651785pt;}
.yb7{bottom:121.356035pt;}
.y83{bottom:124.742109pt;}
.y28{bottom:126.108739pt;}
.y79{bottom:127.409757pt;}
.yc6{bottom:129.298179pt;}
.y10e{bottom:133.043568pt;}
.y1b{bottom:134.658570pt;}
.y182{bottom:135.271645pt;}
.y172{bottom:136.402243pt;}
.yb6{bottom:141.363574pt;}
.y82{bottom:144.749647pt;}
.y27{bottom:146.116277pt;}
.y78{bottom:147.417295pt;}
.yc5{bottom:149.305717pt;}
.y1a{bottom:152.665354pt;}
.y10d{bottom:153.051106pt;}
.y171{bottom:156.409781pt;}
.yb5{bottom:161.371112pt;}
.y81{bottom:164.757185pt;}
.y26{bottom:166.123816pt;}
.y77{bottom:167.424833pt;}
.yc4{bottom:169.313256pt;}
.y19{bottom:170.672139pt;}
.y10c{bottom:173.058644pt;}
.y170{bottom:176.417319pt;}
.y188{bottom:180.080202pt;}
.yb4{bottom:181.378650pt;}
.y25{bottom:186.131354pt;}
.y76{bottom:187.432372pt;}
.y18{bottom:188.678923pt;}
.yc3{bottom:189.320794pt;}
.y187{bottom:194.307962pt;}
.y16f{bottom:196.424858pt;}
.yb3{bottom:201.386189pt;}
.y80{bottom:204.772262pt;}
.y24{bottom:206.138893pt;}
.y17{bottom:206.685708pt;}
.yc2{bottom:209.328332pt;}
.y10b{bottom:213.073721pt;}
.y17b{bottom:216.317355pt;}
.yb2{bottom:221.393727pt;}
.y7f{bottom:224.779801pt;}
.y8c{bottom:225.379865pt;}
.y23{bottom:226.146431pt;}
.yc1{bottom:229.335871pt;}
.y10a{bottom:233.081259pt;}
.y16e{bottom:236.439934pt;}
.yb1{bottom:241.401265pt;}
.y7e{bottom:244.787339pt;}
.y22{bottom:246.153969pt;}
.y186{bottom:248.247511pt;}
.yc0{bottom:249.343409pt;}
.y109{bottom:253.088798pt;}
.y16d{bottom:256.447473pt;}
.y185{bottom:262.475271pt;}
.y75{bottom:263.327639pt;}
.y7d{bottom:264.794877pt;}
.y21{bottom:266.161508pt;}
.ybf{bottom:269.350947pt;}
.y108{bottom:273.096336pt;}
.y16c{bottom:276.455011pt;}
.y9f{bottom:276.481149pt;}
.y184{bottom:276.703030pt;}
.y152{bottom:282.583325pt;}
.y74{bottom:283.335177pt;}
.y7c{bottom:284.802416pt;}
.y20{bottom:286.169046pt;}
.ybe{bottom:289.358486pt;}
.y107{bottom:293.103875pt;}
.y16b{bottom:296.462550pt;}
.y9e{bottom:296.488687pt;}
.y183{bottom:301.964616pt;}
.y151{bottom:302.590863pt;}
.y73{bottom:303.342716pt;}
.y1f{bottom:306.176584pt;}
.ybd{bottom:309.366024pt;}
.y106{bottom:313.111413pt;}
.y16a{bottom:316.470088pt;}
.y89{bottom:318.286094pt;}
.y150{bottom:322.598401pt;}
.y72{bottom:323.350254pt;}
.y1e{bottom:326.184123pt;}
.ybc{bottom:329.373563pt;}
.yb0{bottom:331.568523pt;}
.y105{bottom:333.118951pt;}
.y14f{bottom:342.605940pt;}
.y1d{bottom:346.191661pt;}
.ybb{bottom:349.381101pt;}
.y1b2{bottom:351.183165pt;}
.yaf{bottom:351.576061pt;}
.y104{bottom:353.126490pt;}
.y5b{bottom:353.365981pt;}
.y192{bottom:355.861504pt;}
.y169{bottom:356.485165pt;}
.y8b{bottom:361.297806pt;}
.y14e{bottom:362.613478pt;}
.y1b1{bottom:371.190703pt;}
.yae{bottom:371.583599pt;}
.y5a{bottom:373.373519pt;}
.y191{bottom:375.869042pt;}
.y14d{bottom:382.621016pt;}
.y8a{bottom:383.306099pt;}
.y3e{bottom:386.139954pt;}
.ye5{bottom:387.328754pt;}
.y168{bottom:388.979183pt;}
.y1b0{bottom:391.198242pt;}
.yad{bottom:391.591138pt;}
.y103{bottom:393.141566pt;}
.y59{bottom:393.381058pt;}
.y190{bottom:395.876581pt;}
.y14c{bottom:402.628555pt;}
.y167{bottom:408.986721pt;}
.y1af{bottom:411.205780pt;}
.yac{bottom:411.598676pt;}
.y58{bottom:413.388596pt;}
.y18f{bottom:415.884119pt;}
.y71{bottom:421.253751pt;}
.y14b{bottom:422.636093pt;}
.ye3{bottom:425.276407pt;}
.y39{bottom:426.088362pt;}
.y166{bottom:428.994259pt;}
.y1ae{bottom:431.213318pt;}
.yab{bottom:431.606214pt;}
.y102{bottom:433.156643pt;}
.y57{bottom:433.396134pt;}
.y18e{bottom:435.891657pt;}
.y70{bottom:441.261289pt;}
.y14a{bottom:442.643631pt;}
.ye2{bottom:445.283945pt;}
.y38{bottom:446.095900pt;}
.y165{bottom:449.001798pt;}
.y1ad{bottom:451.220857pt;}
.yaa{bottom:451.613753pt;}
.y101{bottom:453.164181pt;}
.y56{bottom:453.403673pt;}
.yf5{bottom:453.521369pt;}
.y18d{bottom:455.899196pt;}
.y6f{bottom:461.268828pt;}
.y149{bottom:462.651170pt;}
.ye1{bottom:465.291483pt;}
.y37{bottom:466.103438pt;}
.y164{bottom:469.009336pt;}
.y1ac{bottom:471.228395pt;}
.ya9{bottom:471.621291pt;}
.y100{bottom:473.171720pt;}
.y55{bottom:473.411211pt;}
.yf4{bottom:473.528907pt;}
.y18c{bottom:475.906734pt;}
.y6e{bottom:481.276366pt;}
.y148{bottom:482.658708pt;}
.ye0{bottom:485.299022pt;}
.y36{bottom:486.110977pt;}
.y163{bottom:489.016874pt;}
.y1ab{bottom:491.235933pt;}
.ya8{bottom:491.628829pt;}
.yff{bottom:493.179258pt;}
.y54{bottom:493.418749pt;}
.yf3{bottom:493.536445pt;}
.y18b{bottom:495.914272pt;}
.y6d{bottom:501.283904pt;}
.y147{bottom:502.666247pt;}
.ydf{bottom:505.306560pt;}
.y35{bottom:506.118515pt;}
.y162{bottom:509.024413pt;}
.y1aa{bottom:511.243472pt;}
.ya7{bottom:511.636368pt;}
.yfe{bottom:513.186797pt;}
.y53{bottom:513.426288pt;}
.yf2{bottom:513.543984pt;}
.y18a{bottom:515.921811pt;}
.y6c{bottom:521.291443pt;}
.y146{bottom:522.673785pt;}
.y16{bottom:522.991519pt;}
.yde{bottom:525.314098pt;}
.y34{bottom:526.126054pt;}
.y161{bottom:529.031951pt;}
.y1a9{bottom:531.251010pt;}
.ya6{bottom:531.643906pt;}
.yfd{bottom:533.194335pt;}
.y52{bottom:533.433826pt;}
.yf1{bottom:533.551522pt;}
.y189{bottom:535.929349pt;}
.y6b{bottom:541.298981pt;}
.y145{bottom:542.681323pt;}
.y15{bottom:542.999058pt;}
.ydd{bottom:545.321637pt;}
.y33{bottom:546.133592pt;}
.y160{bottom:549.039489pt;}
.y1a8{bottom:551.258549pt;}
.ya5{bottom:551.651445pt;}
.yfc{bottom:553.201873pt;}
.y51{bottom:553.441364pt;}
.y6a{bottom:561.306519pt;}
.y144{bottom:562.688862pt;}
.y14{bottom:563.006596pt;}
.ydc{bottom:565.329175pt;}
.y32{bottom:566.141130pt;}
.y1a7{bottom:571.266087pt;}
.ya4{bottom:571.658983pt;}
.yfb{bottom:573.209412pt;}
.y50{bottom:573.448903pt;}
.yf0{bottom:573.566599pt;}
.y193{bottom:580.879582pt;}
.y69{bottom:581.314058pt;}
.y143{bottom:582.696400pt;}
.y13{bottom:583.014134pt;}
.ydb{bottom:585.336714pt;}
.y31{bottom:586.148669pt;}
.y15f{bottom:589.054566pt;}
.y1a6{bottom:591.273625pt;}
.ya3{bottom:591.666521pt;}
.yfa{bottom:593.216950pt;}
.y4f{bottom:593.456441pt;}
.yef{bottom:593.574137pt;}
.y68{bottom:601.321596pt;}
.y142{bottom:602.703938pt;}
.y12{bottom:603.021673pt;}
.yda{bottom:605.344252pt;}
.y30{bottom:606.156207pt;}
.y15e{bottom:609.062105pt;}
.y1a5{bottom:611.281164pt;}
.ya2{bottom:611.674060pt;}
.yf9{bottom:613.224488pt;}
.y4e{bottom:613.463980pt;}
.yee{bottom:613.581676pt;}
.y67{bottom:621.329134pt;}
.y141{bottom:622.711477pt;}
.y11{bottom:623.029211pt;}
.yd9{bottom:625.351790pt;}
.y2f{bottom:626.163745pt;}
.y1c3{bottom:628.379681pt;}
.y1a4{bottom:631.288702pt;}
.ya1{bottom:631.681598pt;}
.yf8{bottom:633.232027pt;}
.y4d{bottom:633.471518pt;}
.yed{bottom:633.589214pt;}
.y66{bottom:641.336673pt;}
.y140{bottom:642.719015pt;}
.y10{bottom:643.036750pt;}
.yd8{bottom:645.359329pt;}
.y2e{bottom:646.171284pt;}
.y1c2{bottom:648.387220pt;}
.y15d{bottom:649.077181pt;}
.y1a3{bottom:651.296240pt;}
.ya0{bottom:651.689136pt;}
.yf7{bottom:653.239565pt;}
.y4c{bottom:653.479056pt;}
.yec{bottom:653.596752pt;}
.y65{bottom:661.344211pt;}
.y13f{bottom:662.726554pt;}
.yf{bottom:663.044288pt;}
.yd7{bottom:665.366867pt;}
.y2d{bottom:666.178822pt;}
.y1c1{bottom:668.394758pt;}
.yf6{bottom:673.247103pt;}
.y4b{bottom:673.486595pt;}
.yeb{bottom:673.604291pt;}
.y15c{bottom:681.048623pt;}
.y64{bottom:681.351750pt;}
.y13e{bottom:682.734092pt;}
.ye{bottom:683.051826pt;}
.yd6{bottom:685.374405pt;}
.y2c{bottom:686.186361pt;}
.y9d{bottom:686.768978pt;}
.y1c0{bottom:688.402296pt;}
.y1a2{bottom:691.311317pt;}
.y4a{bottom:693.494133pt;}
.yea{bottom:693.611829pt;}
.y15b{bottom:701.056162pt;}
.y63{bottom:701.359288pt;}
.y13d{bottom:702.741630pt;}
.yd{bottom:703.059365pt;}
.yd5{bottom:705.381944pt;}
.y1bf{bottom:708.409835pt;}
.y1a1{bottom:711.318855pt;}
.y49{bottom:713.501671pt;}
.ye9{bottom:713.619367pt;}
.y124{bottom:719.125971pt;}
.y15a{bottom:721.063700pt;}
.y62{bottom:721.366826pt;}
.y9c{bottom:721.695261pt;}
.y13c{bottom:722.749169pt;}
.yc{bottom:723.066903pt;}
.yd4{bottom:725.389482pt;}
.y3d{bottom:726.134758pt;}
.y1be{bottom:728.417373pt;}
.y1a0{bottom:731.326394pt;}
.y48{bottom:733.509210pt;}
.ye8{bottom:733.626906pt;}
.y159{bottom:741.071238pt;}
.y123{bottom:741.134263pt;}
.y61{bottom:741.374365pt;}
.y9b{bottom:741.702800pt;}
.y13b{bottom:742.756707pt;}
.yb{bottom:743.074441pt;}
.yd3{bottom:745.397020pt;}
.y3c{bottom:748.143050pt;}
.y1bd{bottom:748.424912pt;}
.ye7{bottom:753.634444pt;}
.y158{bottom:761.078777pt;}
.y60{bottom:761.381903pt;}
.y9a{bottom:761.710338pt;}
.ya{bottom:763.081980pt;}
.y88{bottom:764.718738pt;}
.yd2{bottom:765.404559pt;}
.y1bc{bottom:768.432450pt;}
.y19f{bottom:771.341471pt;}
.ye6{bottom:773.641982pt;}
.y157{bottom:781.086315pt;}
.y5f{bottom:781.389441pt;}
.y99{bottom:781.717877pt;}
.y13a{bottom:782.771784pt;}
.y9{bottom:783.089518pt;}
.yd1{bottom:785.412097pt;}
.y120{bottom:787.013150pt;}
.y47{bottom:793.796356pt;}
.y156{bottom:801.093853pt;}
.y5e{bottom:801.396980pt;}
.y98{bottom:801.725415pt;}
.y139{bottom:802.779322pt;}
.y8{bottom:803.097056pt;}
.yd0{bottom:805.419636pt;}
.y11f{bottom:807.020688pt;}
.y1c4{bottom:807.396116pt;}
.y122{bottom:809.588876pt;}
.y19e{bottom:811.356547pt;}
.y46{bottom:813.803894pt;}
.y155{bottom:821.101392pt;}
.y5d{bottom:821.404518pt;}
.y97{bottom:821.732953pt;}
.y138{bottom:822.786860pt;}
.y7{bottom:823.104595pt;}
.ycf{bottom:825.427174pt;}
.y11e{bottom:827.028227pt;}
.y19d{bottom:831.364086pt;}
.y121{bottom:831.597168pt;}
.y154{bottom:841.108930pt;}
.y5c{bottom:841.412056pt;}
.y96{bottom:841.740492pt;}
.y6{bottom:843.112133pt;}
.y87{bottom:845.013404pt;}
.yce{bottom:845.434712pt;}
.y1ba{bottom:846.359829pt;}
.y11d{bottom:847.035765pt;}
.y19c{bottom:851.371624pt;}
.y153{bottom:861.116468pt;}
.y95{bottom:861.748030pt;}
.y137{bottom:862.801937pt;}
.y5{bottom:863.119672pt;}
.ycd{bottom:865.442251pt;}
.y1b9{bottom:866.367367pt;}
.y11c{bottom:867.043303pt;}
.y12f{bottom:867.952251pt;}
.y19b{bottom:871.379162pt;}
.y86{bottom:879.359673pt;}
.y94{bottom:881.755568pt;}
.y4{bottom:883.127210pt;}
.ycc{bottom:885.449789pt;}
.y1b8{bottom:886.374906pt;}
.y11b{bottom:887.050842pt;}
.y12e{bottom:887.959789pt;}
.y19a{bottom:891.386701pt;}
.y136{bottom:901.131545pt;}
.y85{bottom:901.367965pt;}
.y93{bottom:901.763107pt;}
.y3{bottom:903.134748pt;}
.ycb{bottom:905.457327pt;}
.y1b7{bottom:906.382444pt;}
.y11a{bottom:907.058380pt;}
.y12d{bottom:907.967327pt;}
.y199{bottom:911.394239pt;}
.y45{bottom:918.928860pt;}
.y135{bottom:921.139084pt;}
.y92{bottom:921.770645pt;}
.y2{bottom:923.142287pt;}
.y1b6{bottom:926.389983pt;}
.y119{bottom:927.065918pt;}
.y12c{bottom:927.974866pt;}
.y198{bottom:931.401778pt;}
.y44{bottom:938.936398pt;}
.y134{bottom:941.146622pt;}
.y91{bottom:941.778183pt;}
.ye4{bottom:943.404936pt;}
.y1b5{bottom:946.397521pt;}
.y118{bottom:947.073457pt;}
.y12b{bottom:947.982404pt;}
.y197{bottom:951.409316pt;}
.y43{bottom:958.943936pt;}
.y133{bottom:961.154160pt;}
.y3f{bottom:961.782570pt;}
.y90{bottom:961.785722pt;}
.y1b4{bottom:966.405059pt;}
.y117{bottom:967.080995pt;}
.y12a{bottom:967.989942pt;}
.y196{bottom:971.416854pt;}
.y42{bottom:978.951475pt;}
.y132{bottom:981.161699pt;}
.y8f{bottom:981.793260pt;}
.y1b3{bottom:986.412598pt;}
.y116{bottom:987.088534pt;}
.y129{bottom:987.997481pt;}
.y195{bottom:991.424393pt;}
.y41{bottom:998.959013pt;}
.y131{bottom:1001.169237pt;}
.y8e{bottom:1001.800799pt;}
.y115{bottom:1007.096072pt;}
.y128{bottom:1008.005019pt;}
.y3b{bottom:1012.575115pt;}
.y40{bottom:1018.966551pt;}
.y130{bottom:1021.176775pt;}
.y8d{bottom:1021.808337pt;}
.y114{bottom:1027.103610pt;}
.y127{bottom:1028.012557pt;}
.y1bb{bottom:1030.572468pt;}
.y194{bottom:1031.439469pt;}
.y3a{bottom:1038.584915pt;}
.hd{height:13.745173pt;}
.hc{height:22.163486pt;}
.hf{height:23.562418pt;}
.h10{height:33.278829pt;}
.h11{height:38.030801pt;}
.h4{height:43.365499pt;}
.ha{height:47.526026pt;}
.he{height:47.679998pt;}
.h3{height:47.692289pt;}
.h7{height:48.572220pt;}
.h8{height:52.267933pt;}
.hb{height:52.854554pt;}
.h6{height:53.011974pt;}
.h9{height:59.414375pt;}
.h5{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:38.713202pt;}
.x2{left:40.112298pt;}
.xa{left:42.637445pt;}
.xd{left:47.459354pt;}
.x4{left:58.329968pt;}
.x7{left:63.644470pt;}
.xe{left:65.770210pt;}
.x5{left:76.133551pt;}
.xb{left:106.239996pt;}
.xc{left:113.140846pt;}
.x3{left:417.098303pt;}
.x6{left:442.029571pt;}
.x9{left:549.919145pt;}
.x8{left:551.612297pt;}
}




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