
    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_34d23883dc9c1bd2d6e3f547.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_df0c4ef0c6f09b754f54d66c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_42a141877c129b0aa4664788.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_3839da279f2ce454a8afbfd9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925293;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_f2fe420b6d2213c8c52256e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{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;}
.ls1{letter-spacing:-4.440000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.198000px;}
.ls4{letter-spacing:1.848000px;}
.ls2{letter-spacing:2.640000px;}
.ls3{letter-spacing:2.706000px;}
.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;}
}
.ws1f{word-spacing:-21.054000px;}
.ws1e{word-spacing:-20.988000px;}
.ws20{word-spacing:-20.196000px;}
.ws1{word-spacing:-18.348000px;}
.ws0{word-spacing:-16.680000px;}
.wsd{word-spacing:-13.344000px;}
.ws4{word-spacing:-1.188000px;}
.ws21{word-spacing:-0.858000px;}
.ws24{word-spacing:-0.198000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.198000px;}
.ws23{word-spacing:0.660000px;}
.ws2a{word-spacing:2.112000px;}
.ws5{word-spacing:5.082000px;}
.ws2b{word-spacing:5.610000px;}
.ws26{word-spacing:5.940000px;}
.ws27{word-spacing:8.382000px;}
.ws29{word-spacing:9.306000px;}
.ws22{word-spacing:11.418000px;}
.ws25{word-spacing:12.078000px;}
.ws2c{word-spacing:14.454000px;}
.ws28{word-spacing:18.018000px;}
.wse{word-spacing:118.194600px;}
.ws16{word-spacing:178.701000px;}
.ws17{word-spacing:184.512600px;}
.ws12{word-spacing:222.754800px;}
.ws13{word-spacing:239.557800px;}
.wsf{word-spacing:246.586200px;}
.ws11{word-spacing:250.917600px;}
.ws14{word-spacing:255.771000px;}
.ws10{word-spacing:263.378400px;}
.ws15{word-spacing:272.541600px;}
.wsa{word-spacing:289.102800px;}
.ws8{word-spacing:300.196200px;}
.ws6{word-spacing:324.172200px;}
.wsc{word-spacing:358.238400px;}
.ws1a{word-spacing:386.138400px;}
.ws9{word-spacing:408.279600px;}
.ws7{word-spacing:432.161400px;}
.wsb{word-spacing:438.265200px;}
.ws18{word-spacing:471.354600px;}
.ws19{word-spacing:544.625400px;}
.ws1c{word-spacing:636.338400px;}
.ws1d{word-spacing:912.514200px;}
.ws1b{word-spacing:925.890600px;}
._9{margin-left:-18.169800px;}
._10{margin-left:-7.398600px;}
._1{margin-left:-5.716800px;}
._3{margin-left:-4.507800px;}
._0{margin-left:-3.403800px;}
._2{margin-left:-1.520400px;}
._6{width:1.544400px;}
._8{width:2.626800px;}
._c{width:3.854400px;}
._b{width:4.956600px;}
._4{width:5.979600px;}
._f{width:7.042200px;}
._12{width:8.104800px;}
._7{width:9.332400px;}
._e{width:10.474200px;}
._a{width:11.635800px;}
._d{width:12.764400px;}
._5{width:14.157000px;}
._11{width:15.265800px;}
._13{width:16.559400px;}
._14{width:19.470000px;}
._16{width:21.166200px;}
._18{width:22.400400px;}
._17{width:23.839200px;}
._15{width:26.043600px;}
._20{width:34.273800px;}
._19{width:35.461800px;}
._1b{width:219.409200px;}
._1c{width:307.842000px;}
._1a{width:389.962800px;}
._1f{width:509.003400px;}
._1e{width:901.410000px;}
._1d{width:952.499400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:186.000000px;}
.y0{bottom:0.000000px;}
.y1b3{bottom:56.456100px;}
.yc7{bottom:67.706100px;}
.y33{bottom:73.630500px;}
.y1b2{bottom:75.206100px;}
.y30{bottom:83.184450px;}
.y2{bottom:86.102400px;}
.yc6{bottom:86.456100px;}
.yf6{bottom:86.462100px;}
.y67{bottom:87.967650px;}
.y1b1{bottom:93.956100px;}
.y176{bottom:96.495450px;}
.y2f{bottom:101.934450px;}
.yc5{bottom:105.206100px;}
.yf5{bottom:105.212100px;}
.y66{bottom:106.717650px;}
.y121{bottom:108.982350px;}
.y1b0{bottom:112.706100px;}
.y175{bottom:115.245450px;}
.y32{bottom:120.684450px;}
.y95{bottom:121.204050px;}
.yc4{bottom:123.956100px;}
.yf4{bottom:123.962100px;}
.y2e{bottom:124.936350px;}
.y65{bottom:125.467650px;}
.y120{bottom:127.732350px;}
.y192{bottom:129.743400px;}
.y1af{bottom:131.456100px;}
.y174{bottom:133.995450px;}
.y31{bottom:139.434450px;}
.y94{bottom:139.954050px;}
.yc3{bottom:142.706100px;}
.yf3{bottom:142.712100px;}
.y2d{bottom:143.686350px;}
.y64{bottom:144.217650px;}
.y11f{bottom:146.482350px;}
.y191{bottom:148.493400px;}
.y1ae{bottom:150.206100px;}
.y173{bottom:152.745450px;}
.y93{bottom:158.704050px;}
.yc2{bottom:161.456100px;}
.yf2{bottom:161.462100px;}
.y2c{bottom:162.436350px;}
.y63{bottom:162.967650px;}
.y11e{bottom:165.232350px;}
.y190{bottom:167.243400px;}
.y172{bottom:171.495450px;}
.y1ad{bottom:173.208000px;}
.y92{bottom:177.454050px;}
.yc1{bottom:180.206100px;}
.yf1{bottom:180.212100px;}
.y2b{bottom:181.186350px;}
.y62{bottom:181.717650px;}
.y11d{bottom:183.982350px;}
.y18f{bottom:185.993400px;}
.y171{bottom:190.245450px;}
.y1ac{bottom:191.958000px;}
.y91{bottom:196.204050px;}
.yc0{bottom:198.956100px;}
.yf0{bottom:198.962100px;}
.y2a{bottom:199.936350px;}
.y61{bottom:200.467650px;}
.y11c{bottom:202.732350px;}
.y18e{bottom:204.743400px;}
.y170{bottom:208.995450px;}
.y1ab{bottom:210.708000px;}
.y90{bottom:214.954050px;}
.ybf{bottom:217.706100px;}
.yef{bottom:217.712100px;}
.y29{bottom:218.686350px;}
.y60{bottom:219.217650px;}
.y11b{bottom:221.482350px;}
.y18d{bottom:223.493400px;}
.y147{bottom:225.161550px;}
.y1aa{bottom:233.710050px;}
.ybe{bottom:236.456100px;}
.yee{bottom:236.462100px;}
.y28{bottom:237.436350px;}
.y11a{bottom:240.232350px;}
.y16f{bottom:240.501300px;}
.y5f{bottom:242.219700px;}
.y146{bottom:243.911550px;}
.y8f{bottom:246.459900px;}
.y18c{bottom:246.495450px;}
.y1a9{bottom:252.460050px;}
.y27{bottom:256.186350px;}
.y119{bottom:258.982350px;}
.ybd{bottom:259.458000px;}
.yed{bottom:259.464000px;}
.y5e{bottom:260.969700px;}
.y145{bottom:262.661550px;}
.y18b{bottom:265.245450px;}
.y26{bottom:274.936350px;}
.y1a8{bottom:275.462100px;}
.y118{bottom:277.732350px;}
.y16e{bottom:278.007300px;}
.ybc{bottom:278.208000px;}
.yec{bottom:278.214000px;}
.y5d{bottom:279.719700px;}
.y144{bottom:281.411550px;}
.y8e{bottom:283.965750px;}
.y18a{bottom:283.995450px;}
.y25{bottom:293.686350px;}
.y1a7{bottom:294.212100px;}
.y117{bottom:296.482350px;}
.y16d{bottom:296.757300px;}
.ybb{bottom:296.958000px;}
.yeb{bottom:296.964000px;}
.y5c{bottom:298.469700px;}
.y8d{bottom:302.715900px;}
.y189{bottom:302.745450px;}
.y143{bottom:304.413600px;}
.y24{bottom:312.436350px;}
.y1a6{bottom:312.961950px;}
.y16c{bottom:315.507300px;}
.yba{bottom:315.708000px;}
.yea{bottom:315.714000px;}
.y5b{bottom:317.219700px;}
.y116{bottom:319.484250px;}
.y8c{bottom:321.465900px;}
.y142{bottom:323.163600px;}
.y188{bottom:325.747350px;}
.y23{bottom:331.186350px;}
.y1a5{bottom:331.711950px;}
.y16b{bottom:334.257300px;}
.yb9{bottom:334.458000px;}
.ye9{bottom:334.464000px;}
.y5a{bottom:335.969700px;}
.y115{bottom:338.234250px;}
.y8b{bottom:340.215900px;}
.y141{bottom:341.913600px;}
.y187{bottom:344.497350px;}
.y22{bottom:349.936350px;}
.y1a4{bottom:350.461950px;}
.y16a{bottom:353.007300px;}
.yb8{bottom:353.208000px;}
.ye8{bottom:353.214000px;}
.y59{bottom:354.719700px;}
.y114{bottom:356.984250px;}
.y8a{bottom:358.965900px;}
.y140{bottom:360.663600px;}
.y186{bottom:363.247350px;}
.y21{bottom:368.686350px;}
.yb7{bottom:371.958000px;}
.ye7{bottom:371.964000px;}
.y1a3{bottom:373.464000px;}
.y58{bottom:373.469700px;}
.y113{bottom:375.734250px;}
.y169{bottom:376.009200px;}
.y89{bottom:377.715900px;}
.y13f{bottom:379.413600px;}
.y185{bottom:381.997350px;}
.y20{bottom:387.436350px;}
.yb6{bottom:390.708000px;}
.ye6{bottom:390.714000px;}
.y1a2{bottom:392.214000px;}
.y57{bottom:392.219700px;}
.y168{bottom:394.759200px;}
.y13e{bottom:398.163600px;}
.y184{bottom:400.747350px;}
.y1f{bottom:406.186350px;}
.y88{bottom:409.221750px;}
.yb5{bottom:409.458000px;}
.ye5{bottom:409.464000px;}
.y56{bottom:410.969700px;}
.y167{bottom:413.509200px;}
.y1a1{bottom:415.215900px;}
.y183{bottom:419.497350px;}
.y13d{bottom:421.165500px;}
.y112{bottom:421.738200px;}
.y1e{bottom:424.936350px;}
.ye4{bottom:428.214000px;}
.y55{bottom:429.719700px;}
.y166{bottom:432.259200px;}
.yb4{bottom:432.460050px;}
.y1a0{bottom:433.965900px;}
.y182{bottom:438.247350px;}
.y13c{bottom:439.915500px;}
.y111{bottom:440.488200px;}
.y1d{bottom:443.686350px;}
.y87{bottom:446.727750px;}
.y54{bottom:448.469700px;}
.y165{bottom:451.009200px;}
.yb3{bottom:451.210050px;}
.ye3{bottom:451.215900px;}
.y19f{bottom:452.715900px;}
.y181{bottom:456.997350px;}
.y13b{bottom:458.665500px;}
.y110{bottom:459.238200px;}
.y1c{bottom:462.436350px;}
.y86{bottom:465.477750px;}
.y164{bottom:469.759200px;}
.yb2{bottom:469.960050px;}
.ye2{bottom:469.965900px;}
.y19e{bottom:471.465900px;}
.y53{bottom:471.471750px;}
.y180{bottom:475.747350px;}
.y13a{bottom:477.415500px;}
.y10f{bottom:477.988200px;}
.y1b{bottom:481.186350px;}
.y85{bottom:484.227750px;}
.y163{bottom:488.509200px;}
.yb1{bottom:488.710050px;}
.ye1{bottom:488.715900px;}
.y19d{bottom:490.215900px;}
.y52{bottom:490.221750px;}
.y17f{bottom:494.497350px;}
.y139{bottom:496.165500px;}
.y10e{bottom:496.738200px;}
.y1a{bottom:499.936350px;}
.y84{bottom:502.977750px;}
.y162{bottom:507.259200px;}
.yb0{bottom:507.460050px;}
.ye0{bottom:507.465900px;}
.y19c{bottom:508.965900px;}
.y51{bottom:508.971750px;}
.y138{bottom:514.915500px;}
.y10d{bottom:515.488200px;}
.y19{bottom:518.686350px;}
.y83{bottom:521.727750px;}
.y17e{bottom:526.003350px;}
.y161{bottom:526.009200px;}
.yaf{bottom:526.210050px;}
.ydf{bottom:526.215900px;}
.y19b{bottom:527.715900px;}
.y50{bottom:527.721750px;}
.y137{bottom:533.665500px;}
.y10c{bottom:534.238200px;}
.y18{bottom:537.436350px;}
.y82{bottom:540.477750px;}
.y160{bottom:544.759200px;}
.yae{bottom:544.960050px;}
.yde{bottom:544.965900px;}
.y4f{bottom:546.471750px;}
.y19a{bottom:550.717950px;}
.y136{bottom:552.415500px;}
.y17{bottom:556.186350px;}
.y81{bottom:559.227750px;}
.y15f{bottom:563.509200px;}
.yad{bottom:563.710050px;}
.ydd{bottom:563.715900px;}
.y4e{bottom:565.221750px;}
.y199{bottom:569.467950px;}
.y135{bottom:571.165500px;}
.y16{bottom:574.936350px;}
.y80{bottom:577.977750px;}
.y10b{bottom:580.242150px;}
.y17d{bottom:582.259200px;}
.yac{bottom:582.460050px;}
.ydc{bottom:582.465900px;}
.y4d{bottom:583.971750px;}
.y15e{bottom:586.511100px;}
.y198{bottom:588.217950px;}
.y134{bottom:589.915500px;}
.y15{bottom:593.686350px;}
.y7f{bottom:596.727750px;}
.y10a{bottom:598.992150px;}
.y17c{bottom:601.009200px;}
.ydb{bottom:601.215900px;}
.y4c{bottom:602.721750px;}
.y15d{bottom:605.261100px;}
.y197{bottom:606.967950px;}
.y133{bottom:608.665500px;}
.y14{bottom:612.436350px;}
.yab{bottom:613.965900px;}
.y7e{bottom:615.477750px;}
.y109{bottom:617.742150px;}
.y17b{bottom:619.759200px;}
.yda{bottom:619.965900px;}
.y4b{bottom:621.471750px;}
.y15c{bottom:624.011100px;}
.y196{bottom:625.717950px;}
.y132{bottom:627.415500px;}
.y13{bottom:631.186350px;}
.y7d{bottom:634.227750px;}
.yaa{bottom:636.465900px;}
.y108{bottom:636.492150px;}
.y17a{bottom:638.509200px;}
.y4a{bottom:640.221750px;}
.y15b{bottom:642.761100px;}
.yd9{bottom:642.967950px;}
.y195{bottom:644.467950px;}
.y12{bottom:649.936350px;}
.y131{bottom:650.417400px;}
.y7c{bottom:652.977750px;}
.y107{bottom:655.242150px;}
.y179{bottom:657.259200px;}
.y49{bottom:658.971750px;}
.y15a{bottom:661.511100px;}
.yd8{bottom:661.717950px;}
.y194{bottom:663.217950px;}
.y11{bottom:668.686350px;}
.y130{bottom:669.167400px;}
.y7b{bottom:671.727750px;}
.y106{bottom:673.992150px;}
.y178{bottom:676.009200px;}
.y48{bottom:677.721750px;}
.ya9{bottom:680.225850px;}
.y159{bottom:680.261100px;}
.yd7{bottom:680.467950px;}
.y12f{bottom:687.917400px;}
.y7a{bottom:690.477600px;}
.y105{bottom:692.742150px;}
.y193{bottom:694.723800px;}
.y177{bottom:694.759200px;}
.y47{bottom:696.471750px;}
.y158{bottom:699.011100px;}
.yd6{bottom:699.217950px;}
.y10{bottom:700.192350px;}
.y12e{bottom:706.667400px;}
.y104{bottom:711.492150px;}
.y79{bottom:713.479650px;}
.y46{bottom:715.221750px;}
.ya8{bottom:717.731700px;}
.y157{bottom:717.761100px;}
.yd5{bottom:717.967950px;}
.y12d{bottom:725.417400px;}
.y103{bottom:730.242150px;}
.y78{bottom:732.229650px;}
.yf{bottom:735.798000px;}
.ya7{bottom:736.481700px;}
.y156{bottom:736.511100px;}
.yd4{bottom:736.717950px;}
.y45{bottom:738.223650px;}
.y12c{bottom:744.167400px;}
.y102{bottom:748.992150px;}
.y77{bottom:750.979650px;}
.ye{bottom:753.798000px;}
.ya6{bottom:755.231700px;}
.y155{bottom:755.261100px;}
.yd3{bottom:755.467950px;}
.y44{bottom:756.973650px;}
.y12b{bottom:762.917400px;}
.y101{bottom:767.742150px;}
.y76{bottom:769.729650px;}
.yd{bottom:771.798000px;}
.ya5{bottom:773.981700px;}
.y154{bottom:774.011100px;}
.yd2{bottom:774.217950px;}
.y43{bottom:775.723650px;}
.y75{bottom:788.479650px;}
.yc{bottom:789.798000px;}
.ya4{bottom:792.731700px;}
.y153{bottom:792.761100px;}
.y42{bottom:794.473650px;}
.y12a{bottom:796.667400px;}
.y100{bottom:801.492150px;}
.yd1{bottom:805.723800px;}
.y74{bottom:807.229650px;}
.yb{bottom:807.798000px;}
.ya3{bottom:811.481700px;}
.y152{bottom:811.511100px;}
.y129{bottom:811.667400px;}
.y41{bottom:813.223650px;}
.yff{bottom:816.492150px;}
.y73{bottom:825.979650px;}
.yd0{bottom:828.223800px;}
.ya2{bottom:830.231700px;}
.y151{bottom:830.261100px;}
.y40{bottom:831.973650px;}
.y128{bottom:842.042400px;}
.y72{bottom:844.729650px;}
.ya{bottom:848.050050px;}
.ya1{bottom:848.981700px;}
.y150{bottom:849.011100px;}
.yfe{bottom:849.807000px;}
.y3f{bottom:850.723650px;}
.ycf{bottom:863.479650px;}
.y127{bottom:866.054850px;}
.y71{bottom:867.731550px;}
.ya0{bottom:867.731700px;}
.y3e{bottom:873.725700px;}
.yfd{bottom:875.667150px;}
.yce{bottom:882.229650px;}
.y9{bottom:884.050050px;}
.y70{bottom:886.481550px;}
.y9f{bottom:886.481700px;}
.y14f{bottom:888.051300px;}
.y126{bottom:890.067300px;}
.y3d{bottom:892.475700px;}
.yfc{bottom:898.587600px;}
.ycd{bottom:900.979650px;}
.y14e{bottom:903.051300px;}
.y6f{bottom:905.231550px;}
.y9e{bottom:905.231700px;}
.y3c{bottom:911.225700px;}
.y125{bottom:914.079750px;}
.y14d{bottom:918.426300px;}
.ycc{bottom:919.729650px;}
.y8{bottom:920.050050px;}
.yfb{bottom:921.508050px;}
.y6e{bottom:923.981550px;}
.y9d{bottom:923.981700px;}
.y3b{bottom:929.975700px;}
.y124{bottom:938.092200px;}
.ycb{bottom:938.479650px;}
.y14c{bottom:941.346750px;}
.y6d{bottom:942.731550px;}
.y9c{bottom:942.731700px;}
.yfa{bottom:944.428500px;}
.y3a{bottom:948.725700px;}
.y7{bottom:953.050050px;}
.yca{bottom:957.229650px;}
.y6c{bottom:961.481550px;}
.y9b{bottom:961.481700px;}
.y14b{bottom:964.267050px;}
.y39{bottom:967.475700px;}
.yc9{bottom:975.979650px;}
.y123{bottom:977.479650px;}
.y6b{bottom:980.231550px;}
.y9a{bottom:980.231700px;}
.yf9{bottom:982.723800px;}
.y6{bottom:986.050050px;}
.y38{bottom:986.225700px;}
.y14a{bottom:987.187500px;}
.yc8{bottom:994.729650px;}
.y122{bottom:995.479650px;}
.y6a{bottom:998.981550px;}
.y99{bottom:998.981700px;}
.y37{bottom:1004.975700px;}
.yf8{bottom:1004.975850px;}
.y149{bottom:1010.107950px;}
.y69{bottom:1017.731550px;}
.y98{bottom:1017.731700px;}
.y5{bottom:1023.323700px;}
.y36{bottom:1023.725700px;}
.yf7{bottom:1023.725850px;}
.y148{bottom:1033.028250px;}
.y68{bottom:1036.481550px;}
.y97{bottom:1036.481700px;}
.y4{bottom:1039.823700px;}
.y35{bottom:1055.231550px;}
.y96{bottom:1055.231700px;}
.y3{bottom:1056.323700px;}
.y34{bottom:1108.294050px;}
.y1{bottom:1109.357100px;}
.hf{height:34.992188px;}
.he{height:43.335938px;}
.h5{height:43.681641px;}
.ha{height:43.740234px;}
.hd{height:48.049805px;}
.hc{height:48.114258px;}
.h8{height:52.417969px;}
.h7{height:52.488281px;}
.h4{height:54.169922px;}
.hb{height:59.586914px;}
.h2{height:61.154297px;}
.h9{height:65.003906px;}
.h6{height:75.837891px;}
.h3{height:167.926758px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x2{left:43.812450px;}
.x1{left:85.039350px;}
.x16{left:88.072950px;}
.x2c{left:98.539350px;}
.x7{left:104.466750px;}
.x11{left:106.299300px;}
.x9{left:107.545200px;}
.x1b{left:109.204800px;}
.x17{left:139.146600px;}
.x6{left:145.913100px;}
.x19{left:151.656450px;}
.x18{left:157.072650px;}
.x1a{left:159.160050px;}
.x28{left:160.622550px;}
.x10{left:230.623950px;}
.xc{left:236.728950px;}
.x27{left:237.757500px;}
.x26{left:258.737850px;}
.x29{left:264.857100px;}
.x25{left:267.354750px;}
.xe{left:311.377500px;}
.x1c{left:339.185250px;}
.xd{left:348.060750px;}
.x23{left:368.513700px;}
.xf{left:373.391550px;}
.x8{left:386.813250px;}
.xb{left:398.181900px;}
.xa{left:433.197450px;}
.x14{left:476.716500px;}
.x1d{left:480.306750px;}
.x1f{left:496.631700px;}
.x13{left:497.976450px;}
.x21{left:500.881950px;}
.x4{left:508.762800px;}
.x20{left:511.766100px;}
.x5{left:553.162200px;}
.x24{left:562.188750px;}
.x12{left:618.184200px;}
.x1e{left:621.873000px;}
.x2b{left:717.022650px;}
.x22{left:730.862400px;}
.x3{left:775.393650px;}
.x15{left:827.035350px;}
.x2a{left:847.059750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-3.946667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.176000pt;}
.ls4{letter-spacing:1.642667pt;}
.ls2{letter-spacing:2.346667pt;}
.ls3{letter-spacing:2.405333pt;}
.ws1f{word-spacing:-18.714667pt;}
.ws1e{word-spacing:-18.656000pt;}
.ws20{word-spacing:-17.952000pt;}
.ws1{word-spacing:-16.309333pt;}
.ws0{word-spacing:-14.826667pt;}
.wsd{word-spacing:-11.861333pt;}
.ws4{word-spacing:-1.056000pt;}
.ws21{word-spacing:-0.762667pt;}
.ws24{word-spacing:-0.176000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.176000pt;}
.ws23{word-spacing:0.586667pt;}
.ws2a{word-spacing:1.877333pt;}
.ws5{word-spacing:4.517333pt;}
.ws2b{word-spacing:4.986667pt;}
.ws26{word-spacing:5.280000pt;}
.ws27{word-spacing:7.450667pt;}
.ws29{word-spacing:8.272000pt;}
.ws22{word-spacing:10.149333pt;}
.ws25{word-spacing:10.736000pt;}
.ws2c{word-spacing:12.848000pt;}
.ws28{word-spacing:16.016000pt;}
.wse{word-spacing:105.061867pt;}
.ws16{word-spacing:158.845333pt;}
.ws17{word-spacing:164.011200pt;}
.ws12{word-spacing:198.004267pt;}
.ws13{word-spacing:212.940267pt;}
.wsf{word-spacing:219.187733pt;}
.ws11{word-spacing:223.037867pt;}
.ws14{word-spacing:227.352000pt;}
.ws10{word-spacing:234.114133pt;}
.ws15{word-spacing:242.259200pt;}
.wsa{word-spacing:256.980267pt;}
.ws8{word-spacing:266.841067pt;}
.ws6{word-spacing:288.153067pt;}
.wsc{word-spacing:318.434133pt;}
.ws1a{word-spacing:343.234133pt;}
.ws9{word-spacing:362.915200pt;}
.ws7{word-spacing:384.143467pt;}
.wsb{word-spacing:389.569067pt;}
.ws18{word-spacing:418.981867pt;}
.ws19{word-spacing:484.111467pt;}
.ws1c{word-spacing:565.634133pt;}
.ws1d{word-spacing:811.123733pt;}
.ws1b{word-spacing:823.013867pt;}
._9{margin-left:-16.150933pt;}
._10{margin-left:-6.576533pt;}
._1{margin-left:-5.081600pt;}
._3{margin-left:-4.006933pt;}
._0{margin-left:-3.025600pt;}
._2{margin-left:-1.351467pt;}
._6{width:1.372800pt;}
._8{width:2.334933pt;}
._c{width:3.426133pt;}
._b{width:4.405867pt;}
._4{width:5.315200pt;}
._f{width:6.259733pt;}
._12{width:7.204267pt;}
._7{width:8.295467pt;}
._e{width:9.310400pt;}
._a{width:10.342933pt;}
._d{width:11.346133pt;}
._5{width:12.584000pt;}
._11{width:13.569600pt;}
._13{width:14.719467pt;}
._14{width:17.306667pt;}
._16{width:18.814400pt;}
._18{width:19.911467pt;}
._17{width:21.190400pt;}
._15{width:23.149867pt;}
._20{width:30.465600pt;}
._19{width:31.521600pt;}
._1b{width:195.030400pt;}
._1c{width:273.637333pt;}
._1a{width:346.633600pt;}
._1f{width:452.447467pt;}
._1e{width:801.253333pt;}
._1d{width:846.666133pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:165.333333pt;}
.y0{bottom:0.000000pt;}
.y1b3{bottom:50.183200pt;}
.yc7{bottom:60.183200pt;}
.y33{bottom:65.449333pt;}
.y1b2{bottom:66.849867pt;}
.y30{bottom:73.941733pt;}
.y2{bottom:76.535467pt;}
.yc6{bottom:76.849867pt;}
.yf6{bottom:76.855200pt;}
.y67{bottom:78.193467pt;}
.y1b1{bottom:83.516533pt;}
.y176{bottom:85.773733pt;}
.y2f{bottom:90.608400pt;}
.yc5{bottom:93.516533pt;}
.yf5{bottom:93.521867pt;}
.y66{bottom:94.860133pt;}
.y121{bottom:96.873200pt;}
.y1b0{bottom:100.183200pt;}
.y175{bottom:102.440400pt;}
.y32{bottom:107.275067pt;}
.y95{bottom:107.736933pt;}
.yc4{bottom:110.183200pt;}
.yf4{bottom:110.188533pt;}
.y2e{bottom:111.054533pt;}
.y65{bottom:111.526800pt;}
.y120{bottom:113.539867pt;}
.y192{bottom:115.327467pt;}
.y1af{bottom:116.849867pt;}
.y174{bottom:119.107067pt;}
.y31{bottom:123.941733pt;}
.y94{bottom:124.403600pt;}
.yc3{bottom:126.849867pt;}
.yf3{bottom:126.855200pt;}
.y2d{bottom:127.721200pt;}
.y64{bottom:128.193467pt;}
.y11f{bottom:130.206533pt;}
.y191{bottom:131.994133pt;}
.y1ae{bottom:133.516533pt;}
.y173{bottom:135.773733pt;}
.y93{bottom:141.070267pt;}
.yc2{bottom:143.516533pt;}
.yf2{bottom:143.521867pt;}
.y2c{bottom:144.387867pt;}
.y63{bottom:144.860133pt;}
.y11e{bottom:146.873200pt;}
.y190{bottom:148.660800pt;}
.y172{bottom:152.440400pt;}
.y1ad{bottom:153.962667pt;}
.y92{bottom:157.736933pt;}
.yc1{bottom:160.183200pt;}
.yf1{bottom:160.188533pt;}
.y2b{bottom:161.054533pt;}
.y62{bottom:161.526800pt;}
.y11d{bottom:163.539867pt;}
.y18f{bottom:165.327467pt;}
.y171{bottom:169.107067pt;}
.y1ac{bottom:170.629333pt;}
.y91{bottom:174.403600pt;}
.yc0{bottom:176.849867pt;}
.yf0{bottom:176.855200pt;}
.y2a{bottom:177.721200pt;}
.y61{bottom:178.193467pt;}
.y11c{bottom:180.206533pt;}
.y18e{bottom:181.994133pt;}
.y170{bottom:185.773733pt;}
.y1ab{bottom:187.296000pt;}
.y90{bottom:191.070267pt;}
.ybf{bottom:193.516533pt;}
.yef{bottom:193.521867pt;}
.y29{bottom:194.387867pt;}
.y60{bottom:194.860133pt;}
.y11b{bottom:196.873200pt;}
.y18d{bottom:198.660800pt;}
.y147{bottom:200.143600pt;}
.y1aa{bottom:207.742267pt;}
.ybe{bottom:210.183200pt;}
.yee{bottom:210.188533pt;}
.y28{bottom:211.054533pt;}
.y11a{bottom:213.539867pt;}
.y16f{bottom:213.778933pt;}
.y5f{bottom:215.306400pt;}
.y146{bottom:216.810267pt;}
.y8f{bottom:219.075467pt;}
.y18c{bottom:219.107067pt;}
.y1a9{bottom:224.408933pt;}
.y27{bottom:227.721200pt;}
.y119{bottom:230.206533pt;}
.ybd{bottom:230.629333pt;}
.yed{bottom:230.634667pt;}
.y5e{bottom:231.973067pt;}
.y145{bottom:233.476933pt;}
.y18b{bottom:235.773733pt;}
.y26{bottom:244.387867pt;}
.y1a8{bottom:244.855200pt;}
.y118{bottom:246.873200pt;}
.y16e{bottom:247.117600pt;}
.ybc{bottom:247.296000pt;}
.yec{bottom:247.301333pt;}
.y5d{bottom:248.639733pt;}
.y144{bottom:250.143600pt;}
.y8e{bottom:252.414000pt;}
.y18a{bottom:252.440400pt;}
.y25{bottom:261.054533pt;}
.y1a7{bottom:261.521867pt;}
.y117{bottom:263.539867pt;}
.y16d{bottom:263.784267pt;}
.ybb{bottom:263.962667pt;}
.yeb{bottom:263.968000pt;}
.y5c{bottom:265.306400pt;}
.y8d{bottom:269.080800pt;}
.y189{bottom:269.107067pt;}
.y143{bottom:270.589867pt;}
.y24{bottom:277.721200pt;}
.y1a6{bottom:278.188400pt;}
.y16c{bottom:280.450933pt;}
.yba{bottom:280.629333pt;}
.yea{bottom:280.634667pt;}
.y5b{bottom:281.973067pt;}
.y116{bottom:283.986000pt;}
.y8c{bottom:285.747467pt;}
.y142{bottom:287.256533pt;}
.y188{bottom:289.553200pt;}
.y23{bottom:294.387867pt;}
.y1a5{bottom:294.855067pt;}
.y16b{bottom:297.117600pt;}
.yb9{bottom:297.296000pt;}
.ye9{bottom:297.301333pt;}
.y5a{bottom:298.639733pt;}
.y115{bottom:300.652667pt;}
.y8b{bottom:302.414133pt;}
.y141{bottom:303.923200pt;}
.y187{bottom:306.219867pt;}
.y22{bottom:311.054533pt;}
.y1a4{bottom:311.521733pt;}
.y16a{bottom:313.784267pt;}
.yb8{bottom:313.962667pt;}
.ye8{bottom:313.968000pt;}
.y59{bottom:315.306400pt;}
.y114{bottom:317.319333pt;}
.y8a{bottom:319.080800pt;}
.y140{bottom:320.589867pt;}
.y186{bottom:322.886533pt;}
.y21{bottom:327.721200pt;}
.yb7{bottom:330.629333pt;}
.ye7{bottom:330.634667pt;}
.y1a3{bottom:331.968000pt;}
.y58{bottom:331.973067pt;}
.y113{bottom:333.986000pt;}
.y169{bottom:334.230400pt;}
.y89{bottom:335.747467pt;}
.y13f{bottom:337.256533pt;}
.y185{bottom:339.553200pt;}
.y20{bottom:344.387867pt;}
.yb6{bottom:347.296000pt;}
.ye6{bottom:347.301333pt;}
.y1a2{bottom:348.634667pt;}
.y57{bottom:348.639733pt;}
.y168{bottom:350.897067pt;}
.y13e{bottom:353.923200pt;}
.y184{bottom:356.219867pt;}
.y1f{bottom:361.054533pt;}
.y88{bottom:363.752667pt;}
.yb5{bottom:363.962667pt;}
.ye5{bottom:363.968000pt;}
.y56{bottom:365.306400pt;}
.y167{bottom:367.563733pt;}
.y1a1{bottom:369.080800pt;}
.y183{bottom:372.886533pt;}
.y13d{bottom:374.369333pt;}
.y112{bottom:374.878400pt;}
.y1e{bottom:377.721200pt;}
.ye4{bottom:380.634667pt;}
.y55{bottom:381.973067pt;}
.y166{bottom:384.230400pt;}
.yb4{bottom:384.408933pt;}
.y1a0{bottom:385.747467pt;}
.y182{bottom:389.553200pt;}
.y13c{bottom:391.036000pt;}
.y111{bottom:391.545067pt;}
.y1d{bottom:394.387867pt;}
.y87{bottom:397.091333pt;}
.y54{bottom:398.639733pt;}
.y165{bottom:400.897067pt;}
.yb3{bottom:401.075600pt;}
.ye3{bottom:401.080800pt;}
.y19f{bottom:402.414133pt;}
.y181{bottom:406.219867pt;}
.y13b{bottom:407.702667pt;}
.y110{bottom:408.211733pt;}
.y1c{bottom:411.054533pt;}
.y86{bottom:413.758000pt;}
.y164{bottom:417.563733pt;}
.yb2{bottom:417.742267pt;}
.ye2{bottom:417.747467pt;}
.y19e{bottom:419.080800pt;}
.y53{bottom:419.086000pt;}
.y180{bottom:422.886533pt;}
.y13a{bottom:424.369333pt;}
.y10f{bottom:424.878400pt;}
.y1b{bottom:427.721200pt;}
.y85{bottom:430.424667pt;}
.y163{bottom:434.230400pt;}
.yb1{bottom:434.408933pt;}
.ye1{bottom:434.414133pt;}
.y19d{bottom:435.747467pt;}
.y52{bottom:435.752667pt;}
.y17f{bottom:439.553200pt;}
.y139{bottom:441.036000pt;}
.y10e{bottom:441.545067pt;}
.y1a{bottom:444.387867pt;}
.y84{bottom:447.091333pt;}
.y162{bottom:450.897067pt;}
.yb0{bottom:451.075600pt;}
.ye0{bottom:451.080800pt;}
.y19c{bottom:452.414133pt;}
.y51{bottom:452.419333pt;}
.y138{bottom:457.702667pt;}
.y10d{bottom:458.211733pt;}
.y19{bottom:461.054533pt;}
.y83{bottom:463.758000pt;}
.y17e{bottom:467.558533pt;}
.y161{bottom:467.563733pt;}
.yaf{bottom:467.742267pt;}
.ydf{bottom:467.747467pt;}
.y19b{bottom:469.080800pt;}
.y50{bottom:469.086000pt;}
.y137{bottom:474.369333pt;}
.y10c{bottom:474.878400pt;}
.y18{bottom:477.721200pt;}
.y82{bottom:480.424667pt;}
.y160{bottom:484.230400pt;}
.yae{bottom:484.408933pt;}
.yde{bottom:484.414133pt;}
.y4f{bottom:485.752667pt;}
.y19a{bottom:489.527067pt;}
.y136{bottom:491.036000pt;}
.y17{bottom:494.387867pt;}
.y81{bottom:497.091333pt;}
.y15f{bottom:500.897067pt;}
.yad{bottom:501.075600pt;}
.ydd{bottom:501.080800pt;}
.y4e{bottom:502.419333pt;}
.y199{bottom:506.193733pt;}
.y135{bottom:507.702667pt;}
.y16{bottom:511.054533pt;}
.y80{bottom:513.758000pt;}
.y10b{bottom:515.770800pt;}
.y17d{bottom:517.563733pt;}
.yac{bottom:517.742267pt;}
.ydc{bottom:517.747467pt;}
.y4d{bottom:519.086000pt;}
.y15e{bottom:521.343200pt;}
.y198{bottom:522.860400pt;}
.y134{bottom:524.369333pt;}
.y15{bottom:527.721200pt;}
.y7f{bottom:530.424667pt;}
.y10a{bottom:532.437467pt;}
.y17c{bottom:534.230400pt;}
.ydb{bottom:534.414133pt;}
.y4c{bottom:535.752667pt;}
.y15d{bottom:538.009867pt;}
.y197{bottom:539.527067pt;}
.y133{bottom:541.036000pt;}
.y14{bottom:544.387867pt;}
.yab{bottom:545.747467pt;}
.y7e{bottom:547.091333pt;}
.y109{bottom:549.104133pt;}
.y17b{bottom:550.897067pt;}
.yda{bottom:551.080800pt;}
.y4b{bottom:552.419333pt;}
.y15c{bottom:554.676533pt;}
.y196{bottom:556.193733pt;}
.y132{bottom:557.702667pt;}
.y13{bottom:561.054533pt;}
.y7d{bottom:563.758000pt;}
.yaa{bottom:565.747467pt;}
.y108{bottom:565.770800pt;}
.y17a{bottom:567.563733pt;}
.y4a{bottom:569.086000pt;}
.y15b{bottom:571.343200pt;}
.yd9{bottom:571.527067pt;}
.y195{bottom:572.860400pt;}
.y12{bottom:577.721200pt;}
.y131{bottom:578.148800pt;}
.y7c{bottom:580.424667pt;}
.y107{bottom:582.437467pt;}
.y179{bottom:584.230400pt;}
.y49{bottom:585.752667pt;}
.y15a{bottom:588.009867pt;}
.yd8{bottom:588.193733pt;}
.y194{bottom:589.527067pt;}
.y11{bottom:594.387867pt;}
.y130{bottom:594.815467pt;}
.y7b{bottom:597.091333pt;}
.y106{bottom:599.104133pt;}
.y178{bottom:600.897067pt;}
.y48{bottom:602.419333pt;}
.ya9{bottom:604.645200pt;}
.y159{bottom:604.676533pt;}
.yd7{bottom:604.860400pt;}
.y12f{bottom:611.482133pt;}
.y7a{bottom:613.757867pt;}
.y105{bottom:615.770800pt;}
.y193{bottom:617.532267pt;}
.y177{bottom:617.563733pt;}
.y47{bottom:619.086000pt;}
.y158{bottom:621.343200pt;}
.yd6{bottom:621.527067pt;}
.y10{bottom:622.393200pt;}
.y12e{bottom:628.148800pt;}
.y104{bottom:632.437467pt;}
.y79{bottom:634.204133pt;}
.y46{bottom:635.752667pt;}
.ya8{bottom:637.983733pt;}
.y157{bottom:638.009867pt;}
.yd5{bottom:638.193733pt;}
.y12d{bottom:644.815467pt;}
.y103{bottom:649.104133pt;}
.y78{bottom:650.870800pt;}
.yf{bottom:654.042667pt;}
.ya7{bottom:654.650400pt;}
.y156{bottom:654.676533pt;}
.yd4{bottom:654.860400pt;}
.y45{bottom:656.198800pt;}
.y12c{bottom:661.482133pt;}
.y102{bottom:665.770800pt;}
.y77{bottom:667.537467pt;}
.ye{bottom:670.042667pt;}
.ya6{bottom:671.317067pt;}
.y155{bottom:671.343200pt;}
.yd3{bottom:671.527067pt;}
.y44{bottom:672.865467pt;}
.y12b{bottom:678.148800pt;}
.y101{bottom:682.437467pt;}
.y76{bottom:684.204133pt;}
.yd{bottom:686.042667pt;}
.ya5{bottom:687.983733pt;}
.y154{bottom:688.009867pt;}
.yd2{bottom:688.193733pt;}
.y43{bottom:689.532133pt;}
.y75{bottom:700.870800pt;}
.yc{bottom:702.042667pt;}
.ya4{bottom:704.650400pt;}
.y153{bottom:704.676533pt;}
.y42{bottom:706.198800pt;}
.y12a{bottom:708.148800pt;}
.y100{bottom:712.437467pt;}
.yd1{bottom:716.198933pt;}
.y74{bottom:717.537467pt;}
.yb{bottom:718.042667pt;}
.ya3{bottom:721.317067pt;}
.y152{bottom:721.343200pt;}
.y129{bottom:721.482133pt;}
.y41{bottom:722.865467pt;}
.yff{bottom:725.770800pt;}
.y73{bottom:734.204133pt;}
.yd0{bottom:736.198933pt;}
.ya2{bottom:737.983733pt;}
.y151{bottom:738.009867pt;}
.y40{bottom:739.532133pt;}
.y128{bottom:748.482133pt;}
.y72{bottom:750.870800pt;}
.ya{bottom:753.822267pt;}
.ya1{bottom:754.650400pt;}
.y150{bottom:754.676533pt;}
.yfe{bottom:755.384000pt;}
.y3f{bottom:756.198800pt;}
.ycf{bottom:767.537467pt;}
.y127{bottom:769.826533pt;}
.y71{bottom:771.316933pt;}
.ya0{bottom:771.317067pt;}
.y3e{bottom:776.645067pt;}
.yfd{bottom:778.370800pt;}
.yce{bottom:784.204133pt;}
.y9{bottom:785.822267pt;}
.y70{bottom:787.983600pt;}
.y9f{bottom:787.983733pt;}
.y14f{bottom:789.378933pt;}
.y126{bottom:791.170933pt;}
.y3d{bottom:793.311733pt;}
.yfc{bottom:798.744533pt;}
.ycd{bottom:800.870800pt;}
.y14e{bottom:802.712267pt;}
.y6f{bottom:804.650267pt;}
.y9e{bottom:804.650400pt;}
.y3c{bottom:809.978400pt;}
.y125{bottom:812.515333pt;}
.y14d{bottom:816.378933pt;}
.ycc{bottom:817.537467pt;}
.y8{bottom:817.822267pt;}
.yfb{bottom:819.118267pt;}
.y6e{bottom:821.316933pt;}
.y9d{bottom:821.317067pt;}
.y3b{bottom:826.645067pt;}
.y124{bottom:833.859733pt;}
.ycb{bottom:834.204133pt;}
.y14c{bottom:836.752667pt;}
.y6d{bottom:837.983600pt;}
.y9c{bottom:837.983733pt;}
.yfa{bottom:839.492000pt;}
.y3a{bottom:843.311733pt;}
.y7{bottom:847.155600pt;}
.yca{bottom:850.870800pt;}
.y6c{bottom:854.650267pt;}
.y9b{bottom:854.650400pt;}
.y14b{bottom:857.126267pt;}
.y39{bottom:859.978400pt;}
.yc9{bottom:867.537467pt;}
.y123{bottom:868.870800pt;}
.y6b{bottom:871.316933pt;}
.y9a{bottom:871.317067pt;}
.yf9{bottom:873.532267pt;}
.y6{bottom:876.488933pt;}
.y38{bottom:876.645067pt;}
.y14a{bottom:877.500000pt;}
.yc8{bottom:884.204133pt;}
.y122{bottom:884.870800pt;}
.y6a{bottom:887.983600pt;}
.y99{bottom:887.983733pt;}
.y37{bottom:893.311733pt;}
.yf8{bottom:893.311867pt;}
.y149{bottom:897.873733pt;}
.y69{bottom:904.650267pt;}
.y98{bottom:904.650400pt;}
.y5{bottom:909.621067pt;}
.y36{bottom:909.978400pt;}
.yf7{bottom:909.978533pt;}
.y148{bottom:918.247333pt;}
.y68{bottom:921.316933pt;}
.y97{bottom:921.317067pt;}
.y4{bottom:924.287733pt;}
.y35{bottom:937.983600pt;}
.y96{bottom:937.983733pt;}
.y3{bottom:938.954400pt;}
.y34{bottom:985.150267pt;}
.y1{bottom:986.095200pt;}
.hf{height:31.104167pt;}
.he{height:38.520833pt;}
.h5{height:38.828125pt;}
.ha{height:38.880208pt;}
.hd{height:42.710938pt;}
.hc{height:42.768229pt;}
.h8{height:46.593750pt;}
.h7{height:46.656250pt;}
.h4{height:48.151042pt;}
.hb{height:52.966146pt;}
.h2{height:54.359375pt;}
.h9{height:57.781250pt;}
.h6{height:67.411458pt;}
.h3{height:149.268229pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x2{left:38.944400pt;}
.x1{left:75.590533pt;}
.x16{left:78.287067pt;}
.x2c{left:87.590533pt;}
.x7{left:92.859333pt;}
.x11{left:94.488267pt;}
.x9{left:95.595733pt;}
.x1b{left:97.070933pt;}
.x17{left:123.685867pt;}
.x6{left:129.700533pt;}
.x19{left:134.805733pt;}
.x18{left:139.620133pt;}
.x1a{left:141.475600pt;}
.x28{left:142.775600pt;}
.x10{left:204.999067pt;}
.xc{left:210.425733pt;}
.x27{left:211.340000pt;}
.x26{left:229.989200pt;}
.x29{left:235.428533pt;}
.x25{left:237.648667pt;}
.xe{left:276.780000pt;}
.x1c{left:301.498000pt;}
.xd{left:309.387333pt;}
.x23{left:327.567733pt;}
.xf{left:331.903600pt;}
.x8{left:343.834000pt;}
.xb{left:353.939467pt;}
.xa{left:385.064400pt;}
.x14{left:423.748000pt;}
.x1d{left:426.939333pt;}
.x1f{left:441.450400pt;}
.x13{left:442.645733pt;}
.x21{left:445.228400pt;}
.x4{left:452.233600pt;}
.x20{left:454.903200pt;}
.x5{left:491.699733pt;}
.x24{left:499.723333pt;}
.x12{left:549.497067pt;}
.x1e{left:552.776000pt;}
.x2b{left:637.353467pt;}
.x22{left:649.655467pt;}
.x3{left:689.238800pt;}
.x15{left:735.142533pt;}
.x2a{left:752.942000pt;}
}




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