
    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_672cd7887b2b05513532cbe8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_459a661ec31a6162b6f710b3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_9b956c763c3cbf2c16eda7ef.woff')format("woff");}.ff3{font-family:ff3;line-height:1.272949;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_eccfac7ea1980be495bee274.woff')format("woff");}.ff4{font-family:ff4;line-height:1.156889;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_f947db326c6d141a8a61e9df.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_cf2e424ec644bd1e04fce66b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.270020;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_7464c70d71f004891f9e5041.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_2002556ac15b22fbbc26767d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-92.160000px;}
.vc{vertical-align:-89.280000px;}
.vb{vertical-align:-87.840000px;}
.va{vertical-align:-86.400000px;}
.v9{vertical-align:-84.960000px;}
.v5{vertical-align:-33.120000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:33.120000px;}
.v1{vertical-align:38.880000px;}
.v7{vertical-align:41.760000px;}
.v8{vertical-align:82.080000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004682px;}
.ls2{letter-spacing:0.005142px;}
.ls6{letter-spacing:0.005631px;}
.ls3{letter-spacing:0.722693px;}
.ls1{letter-spacing:0.723428px;}
.ls5{letter-spacing:0.724162px;}
.ls7{letter-spacing:77.920649px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.120000px;}
.ws1{word-spacing:-13.305600px;}
.ws2{word-spacing:0.000000px;}
._80{margin-left:-1752.747367px;}
._78{margin-left:-1402.755628px;}
._8d{margin-left:-1386.906814px;}
._70{margin-left:-1384.038567px;}
._74{margin-left:-1377.170746px;}
._7d{margin-left:-1366.761749px;}
._89{margin-left:-1362.762176px;}
._81{margin-left:-1350.912935px;}
._83{margin-left:-1344.045115px;}
._86{margin-left:-1333.636118px;}
._5c{margin-left:-1312.020203px;}
._5a{margin-left:-1268.812858px;}
._63{margin-left:-1049.907884px;}
._61{margin-left:-1034.820382px;}
._5d{margin-left:-954.839483px;}
._5f{margin-left:-892.908955px;}
._58{margin-left:-882.827241px;}
._7f{margin-left:-879.958993px;}
._6d{margin-left:-798.656199px;}
._7b{margin-left:-796.424792px;}
._8b{margin-left:-794.918710px;}
._8c{margin-left:-768.263629px;}
._72{margin-left:-744.575978px;}
._6e{margin-left:-733.054019px;}
._7c{margin-left:-713.534325px;}
._5b{margin-left:-702.808878px;}
._88{margin-left:-691.614201px;}
._77{margin-left:-685.525939px;}
._73{margin-left:-674.331263px;}
._6f{margin-left:-668.243001px;}
._85{margin-left:-649.519818px;}
._57{margin-left:-640.179651px;}
._62{margin-left:-553.023414px;}
._64{margin-left:-534.306352px;}
._51{margin-left:-419.828800px;}
._46{margin-left:-403.986107px;}
._4f{margin-left:-384.248878px;}
._38{margin-left:-375.181210px;}
._42{margin-left:-359.338517px;}
._49{margin-left:-346.376314px;}
._4d{margin-left:-344.936069px;}
._35{margin-left:-337.734845px;}
._43{margin-left:-333.414110px;}
._3b{margin-left:-323.332396px;}
._26{margin-left:-317.162507px;}
._33{margin-left:-314.690927px;}
._29{margin-left:-308.929948px;}
._40{margin-left:-307.489703px;}
._4e{margin-left:-301.728723px;}
._28{margin-left:-295.196747px;}
._3a{margin-left:-293.087254px;}
._3d{margin-left:-290.206765px;}
._31{margin-left:-287.326275px;}
._45{margin-left:-283.766027px;}
._3e{margin-left:-281.352196px;}
._2d{margin-left:-280.125051px;}
._48{margin-left:-278.684806px;}
._56{margin-left:-275.804316px;}
._2a{margin-left:-267.678347px;}
._4c{margin-left:-265.722602px;}
._2f{margin-left:-264.282358px;}
._36{margin-left:-261.630347px;}
._44{margin-left:-259.961623px;}
._47{margin-left:-258.485387px;}
._50{margin-left:-256.066187px;}
._54{margin-left:-252.760399px;}
._4b{margin-left:-245.559175px;}
._3c{margin-left:-243.499680px;}
._52{margin-left:-239.753887px;}
._2b{margin-left:-237.635257px;}
._34{margin-left:-235.926347px;}
._4a{margin-left:-228.245387px;}
._53{margin-left:-226.971339px;}
._39{margin-left:-198.005387px;}
._32{margin-left:-168.793547px;}
._3f{margin-left:-167.765387px;}
._30{margin-left:-157.665227px;}
._55{margin-left:-150.197611px;}
._2e{margin-left:-147.020747px;}
._37{margin-left:-137.525387px;}
._41{margin-left:-135.892427px;}
._27{margin-left:-118.413707px;}
._2c{margin-left:-108.978827px;}
._60{margin-left:-4.233554px;}
._17{margin-left:-3.072960px;}
._0{margin-left:-1.935360px;}
._1{width:1.330560px;}
._5{width:2.358720px;}
._11{width:3.565440px;}
._15{width:4.621238px;}
._14{width:5.745600px;}
._12{width:7.533947px;}
._13{width:8.837674px;}
._19{width:9.866880px;}
._e{width:11.272320px;}
._c{width:12.340800px;}
._d{width:13.924800px;}
._10{width:15.111360px;}
._f{width:16.649280px;}
._1d{width:19.250456px;}
._1b{width:20.448000px;}
._1c{width:21.594240px;}
._1a{width:23.060160px;}
._a{width:24.264000px;}
._9{width:25.482240px;}
._b{width:27.204480px;}
._18{width:28.817280px;}
._16{width:30.124800px;}
._1e{width:31.536000px;}
._1f{width:33.022080px;}
._20{width:34.237440px;}
._23{width:36.040320px;}
._25{width:37.463040px;}
._24{width:38.669760px;}
._90{width:40.014845px;}
._8f{width:41.883840px;}
._6{width:43.056000px;}
._7{width:44.196480px;}
._8{width:45.768960px;}
._91{width:51.848042px;}
._66{width:74.132723px;}
._67{width:106.260289px;}
._65{width:149.726585px;}
._69{width:200.742075px;}
._6a{width:216.042847px;}
._4{width:220.296321px;}
._22{width:221.966721px;}
._68{width:252.438594px;}
._6b{width:257.834432px;}
._6c{width:409.758839px;}
._5e{width:940.413160px;}
._59{width:1074.950891px;}
._84{width:1176.008996px;}
._2{width:1206.725121px;}
._76{width:1227.678947px;}
._87{width:1262.184356px;}
._75{width:1295.309987px;}
._8e{width:1416.192356px;}
._7e{width:1449.317987px;}
._82{width:1663.976036px;}
._71{width:1697.101667px;}
._8a{width:1890.974756px;}
._79{width:1924.100387px;}
._3{width:2031.994113px;}
._21{width:2033.736513px;}
._7a{width:2067.763427px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fsb{font-size:11.520000px;}
.fsa{font-size:18.720000px;}
.fs7{font-size:38.880000px;}
.fs8{font-size:47.520000px;}
.fs5{font-size:54.719940px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:119.520000px;}
.y157{bottom:-5.760000px;}
.y0{bottom:0.000000px;}
.y127{bottom:2.880000px;}
.y8{bottom:3.240000px;}
.yda{bottom:3.600000px;}
.ya{bottom:3.960000px;}
.yf8{bottom:4.320000px;}
.y9{bottom:41.040000px;}
.y7{bottom:41.760000px;}
.y6{bottom:58.680000px;}
.y52{bottom:132.120000px;}
.yeb{bottom:133.200000px;}
.y16c{bottom:136.800000px;}
.y2c{bottom:138.240000px;}
.y9c{bottom:147.240000px;}
.y2b{bottom:149.400000px;}
.y51{bottom:153.000000px;}
.yea{bottom:153.720000px;}
.y16b{bottom:157.680000px;}
.yab{bottom:158.040000px;}
.yc9{bottom:163.800000px;}
.y9b{bottom:167.760000px;}
.y107{bottom:171.360000px;}
.y147{bottom:171.720000px;}
.ye9{bottom:174.600000px;}
.y7a{bottom:178.200000px;}
.y2a{bottom:188.280000px;}
.y9a{bottom:188.640000px;}
.y12a{bottom:189.720000px;}
.y50{bottom:191.880000px;}
.y146{bottom:192.600000px;}
.y180{bottom:193.320000px;}
.ye8{bottom:195.120000px;}
.yaa{bottom:196.920000px;}
.y79{bottom:199.080000px;}
.yc8{bottom:204.120000px;}
.y99{bottom:209.160000px;}
.y129{bottom:210.240000px;}
.y106{bottom:212.760000px;}
.y145{bottom:213.120000px;}
.y17f{bottom:214.200000px;}
.ye7{bottom:216.000000px;}
.y78{bottom:219.600000px;}
.yc7{bottom:224.640000px;}
.y29{bottom:227.880000px;}
.y4f{bottom:232.200000px;}
.y105{bottom:233.280000px;}
.y144{bottom:234.000000px;}
.y17e{bottom:234.720000px;}
.ya9{bottom:235.800000px;}
.ye6{bottom:236.520000px;}
.y77{bottom:240.480000px;}
.y28{bottom:245.160000px;}
.yc6{bottom:245.520000px;}
.y98{bottom:248.040000px;}
.y128{bottom:249.120000px;}
.y4e{bottom:252.720000px;}
.y104{bottom:254.160000px;}
.y76{bottom:261.000000px;}
.y27{bottom:262.440000px;}
.yc5{bottom:266.040000px;}
.y97{bottom:268.560000px;}
.y143{bottom:273.240000px;}
.y4d{bottom:273.600000px;}
.y103{bottom:274.680000px;}
.ya8{bottom:275.760000px;}
.ye5{bottom:277.560000px;}
.y26{bottom:279.720000px;}
.y16a{bottom:281.880000px;}
.y96{bottom:289.440000px;}
.y126{bottom:290.160000px;}
.y141{bottom:290.520000px;}
.y4c{bottom:294.120000px;}
.y142{bottom:294.840000px;}
.y102{bottom:295.560000px;}
.ye4{bottom:299.160000px;}
.y75{bottom:299.880000px;}
.y169{bottom:302.400000px;}
.yc4{bottom:304.920000px;}
.y95{bottom:309.960000px;}
.y125{bottom:311.760000px;}
.y4b{bottom:315.000000px;}
.y25{bottom:315.720000px;}
.y101{bottom:316.080000px;}
.ya7{bottom:316.440000px;}
.ye3{bottom:321.120000px;}
.y124{bottom:321.840000px;}
.y94{bottom:330.840000px;}
.y4a{bottom:335.520000px;}
.y24{bottom:336.240000px;}
.ya6{bottom:336.960000px;}
.y74{bottom:340.200000px;}
.ye2{bottom:341.280000px;}
.yc3{bottom:343.440000px;}
.y123{bottom:350.640000px;}
.y93{bottom:351.360000px;}
.y17d{bottom:353.520000px;}
.y49{bottom:356.400000px;}
.y100{bottom:357.480000px;}
.ye0{bottom:358.560000px;}
.y73{bottom:360.720000px;}
.y168{bottom:361.800000px;}
.yc2{bottom:364.320000px;}
.ye1{bottom:371.880000px;}
.y92{bottom:372.240000px;}
.y17c{bottom:374.400000px;}
.ya5{bottom:375.840000px;}
.y23{bottom:376.560000px;}
.y122{bottom:376.920000px;}
.yff{bottom:378.360000px;}
.y72{bottom:381.600000px;}
.y167{bottom:382.680000px;}
.yc1{bottom:384.840000px;}
.y91{bottom:392.760000px;}
.ydf{bottom:393.480000px;}
.y17b{bottom:394.920000px;}
.y48{bottom:395.280000px;}
.ya4{bottom:396.360000px;}
.y22{bottom:397.440000px;}
.yfe{bottom:398.880000px;}
.y71{bottom:402.120000px;}
.y166{bottom:403.200000px;}
.yc0{bottom:405.720000px;}
.yde{bottom:407.160000px;}
.y90{bottom:413.640000px;}
.y121{bottom:415.800000px;}
.y21{bottom:417.960000px;}
.y70{bottom:423.000000px;}
.y140{bottom:423.360000px;}
.y165{bottom:424.080000px;}
.ydd{bottom:431.280000px;}
.y17a{bottom:433.800000px;}
.y47{bottom:435.240000px;}
.y120{bottom:436.320000px;}
.y20{bottom:438.840000px;}
.yfd{bottom:439.200000px;}
.ybf{bottom:444.240000px;}
.y164{bottom:444.600000px;}
.y13f{bottom:446.400000px;}
.y13e{bottom:450.720000px;}
.ydc{bottom:451.800000px;}
.y8f{bottom:452.160000px;}
.y179{bottom:454.320000px;}
.ya3{bottom:455.760000px;}
.y46{bottom:456.120000px;}
.y11f{bottom:457.200000px;}
.y1f{bottom:459.360000px;}
.y6f{bottom:461.520000px;}
.y194{bottom:464.760000px;}
.y163{bottom:465.480000px;}
.ydb{bottom:469.080000px;}
.y8e{bottom:473.040000px;}
.y45{bottom:476.640000px;}
.y11e{bottom:477.720000px;}
.y1e{bottom:480.240000px;}
.y6e{bottom:482.400000px;}
.yd9{bottom:482.760000px;}
.ybe{bottom:483.480000px;}
.yfc{bottom:485.640000px;}
.y162{bottom:486.000000px;}
.y13d{bottom:492.840000px;}
.y178{bottom:493.200000px;}
.y8d{bottom:493.560000px;}
.ya2{bottom:494.640000px;}
.y44{bottom:497.520000px;}
.y11d{bottom:498.600000px;}
.y1d{bottom:500.760000px;}
.y6d{bottom:502.920000px;}
.y193{bottom:504.000000px;}
.yfb{bottom:504.720000px;}
.y161{bottom:506.880000px;}
.yfa{bottom:509.040000px;}
.y177{bottom:513.720000px;}
.y8c{bottom:514.440000px;}
.yd8{bottom:519.840000px;}
.y1c{bottom:521.640000px;}
.ybd{bottom:523.440000px;}
.y6c{bottom:523.800000px;}
.y192{bottom:526.320000px;}
.y160{bottom:527.400000px;}
.y13c{bottom:531.720000px;}
.ya1{bottom:533.160000px;}
.y8b{bottom:534.960000px;}
.y43{bottom:536.400000px;}
.y11c{bottom:537.120000px;}
.y6b{bottom:544.320000px;}
.y15f{bottom:548.280000px;}
.y13b{bottom:552.240000px;}
.y176{bottom:552.600000px;}
.yf9{bottom:555.480000px;}
.y8a{bottom:555.840000px;}
.y11b{bottom:558.000000px;}
.yd7{bottom:558.720000px;}
.y1b{bottom:560.160000px;}
.ybc{bottom:564.840000px;}
.y6a{bottom:565.200000px;}
.y191{bottom:566.640000px;}
.y15e{bottom:568.800000px;}
.y13a{bottom:573.120000px;}
.ya0{bottom:573.840000px;}
.yf7{bottom:574.920000px;}
.y89{bottom:576.360000px;}
.y42{bottom:576.720000px;}
.y11a{bottom:578.520000px;}
.yd6{bottom:579.240000px;}
.y69{bottom:585.720000px;}
.y190{bottom:587.160000px;}
.y15d{bottom:589.680000px;}
.y139{bottom:593.640000px;}
.y175{bottom:594.000000px;}
.y9f{bottom:594.360000px;}
.y41{bottom:597.240000px;}
.y119{bottom:599.400000px;}
.y1a{bottom:600.840000px;}
.ybb{bottom:603.720000px;}
.y68{bottom:606.600000px;}
.y15c{bottom:610.200000px;}
.y138{bottom:614.520000px;}
.y88{bottom:615.240000px;}
.yf6{bottom:617.400000px;}
.y40{bottom:618.120000px;}
.y118{bottom:619.920000px;}
.y18f{bottom:626.040000px;}
.y67{bottom:627.120000px;}
.y15b{bottom:631.080000px;}
.y174{bottom:632.880000px;}
.y137{bottom:635.040000px;}
.y87{bottom:635.760000px;}
.y19{bottom:641.520000px;}
.yba{bottom:642.240000px;}
.y66{bottom:648.000000px;}
.y15a{bottom:651.600000px;}
.y173{bottom:655.200000px;}
.yf5{bottom:655.920000px;}
.y86{bottom:656.640000px;}
.y3f{bottom:657.000000px;}
.yd5{bottom:658.440000px;}
.y116{bottom:659.520000px;}
.yb9{bottom:663.120000px;}
.y18{bottom:663.840000px;}
.y18e{bottom:664.560000px;}
.y65{bottom:668.520000px;}
.y117{bottom:669.600000px;}
.y159{bottom:672.480000px;}
.y136{bottom:676.440000px;}
.yf4{bottom:676.800000px;}
.y85{bottom:677.160000px;}
.y172{bottom:677.880000px;}
.yd4{bottom:678.960000px;}
.y115{bottom:680.040000px;}
.y18d{bottom:685.440000px;}
.y17{bottom:686.520000px;}
.y64{bottom:689.400000px;}
.y3e{bottom:696.960000px;}
.yf3{bottom:697.320000px;}
.y84{bottom:698.040000px;}
.yd3{bottom:699.840000px;}
.yb8{bottom:701.640000px;}
.y18c{bottom:705.960000px;}
.y113{bottom:707.400000px;}
.y63{bottom:709.920000px;}
.y158{bottom:711.000000px;}
.y114{bottom:717.480000px;}
.y135{bottom:717.840000px;}
.yf2{bottom:718.200000px;}
.y83{bottom:718.560000px;}
.yd2{bottom:720.360000px;}
.y18b{bottom:726.840000px;}
.y112{bottom:727.920000px;}
.y16{bottom:728.280000px;}
.y62{bottom:735.480000px;}
.y3d{bottom:737.640000px;}
.y134{bottom:738.720000px;}
.y82{bottom:739.440000px;}
.yb7{bottom:740.520000px;}
.yd1{bottom:741.240000px;}
.y156{bottom:747.720000px;}
.y15{bottom:750.960000px;}
.y155{bottom:752.400000px;}
.yf1{bottom:757.080000px;}
.y3c{bottom:758.160000px;}
.y171{bottom:758.520000px;}
.y133{bottom:759.240000px;}
.y81{bottom:759.960000px;}
.yd0{bottom:761.760000px;}
.y18a{bottom:765.360000px;}
.y154{bottom:769.320000px;}
.y153{bottom:769.680000px;}
.y111{bottom:770.400000px;}
.y14{bottom:773.640000px;}
.y3b{bottom:779.040000px;}
.y61{bottom:779.400000px;}
.y132{bottom:780.120000px;}
.y80{bottom:780.840000px;}
.ycf{bottom:782.640000px;}
.y189{bottom:785.880000px;}
.yf0{bottom:797.040000px;}
.y131{bottom:800.640000px;}
.y170{bottom:801.000000px;}
.y7f{bottom:801.360000px;}
.yce{bottom:803.160000px;}
.y151{bottom:813.960000px;}
.y13{bottom:815.400000px;}
.y3a{bottom:817.560000px;}
.y152{bottom:817.920000px;}
.yef{bottom:819.000000px;}
.y60{bottom:819.360000px;}
.y16f{bottom:821.520000px;}
.y9e{bottom:821.880000px;}
.yb6{bottom:822.240000px;}
.y188{bottom:824.760000px;}
.y110{bottom:826.560000px;}
.y150{bottom:835.560000px;}
.y12{bottom:837.720000px;}
.y39{bottom:838.440000px;}
.y130{bottom:839.520000px;}
.y5f{bottom:839.880000px;}
.yee{bottom:840.960000px;}
.ycd{bottom:842.040000px;}
.yb5{bottom:842.760000px;}
.y187{bottom:845.280000px;}
.y14f{bottom:856.800000px;}
.y38{bottom:858.960000px;}
.y12f{bottom:860.040000px;}
.y11{bottom:860.400000px;}
.y5e{bottom:860.760000px;}
.y16e{bottom:861.840000px;}
.yed{bottom:862.920000px;}
.yb4{bottom:863.640000px;}
.y10f{bottom:865.440000px;}
.y186{bottom:866.160000px;}
.y14e{bottom:878.400000px;}
.y37{bottom:879.840000px;}
.y12e{bottom:880.560000px;}
.y5d{bottom:881.280000px;}
.ycc{bottom:882.360000px;}
.y10e{bottom:885.960000px;}
.y10{bottom:886.320000px;}
.y14d{bottom:899.640000px;}
.y36{bottom:900.360000px;}
.y5c{bottom:902.160000px;}
.y12d{bottom:902.880000px;}
.ycb{bottom:903.240000px;}
.y14c{bottom:903.600000px;}
.y185{bottom:904.680000px;}
.y7e{bottom:920.160000px;}
.y16d{bottom:920.880000px;}
.y35{bottom:921.240000px;}
.y5b{bottom:922.680000px;}
.y12c{bottom:923.400000px;}
.yca{bottom:923.760000px;}
.y10d{bottom:924.840000px;}
.y184{bottom:925.560000px;}
.y14b{bottom:929.160000px;}
.y14a{bottom:929.520000px;}
.y149{bottom:933.480000px;}
.yf{bottom:938.880000px;}
.y7d{bottom:940.680000px;}
.y34{bottom:941.760000px;}
.yb3{bottom:942.120000px;}
.y5a{bottom:943.560000px;}
.y12b{bottom:943.920000px;}
.yec{bottom:944.640000px;}
.y10c{bottom:945.360000px;}
.y183{bottom:946.080000px;}
.y148{bottom:959.760000px;}
.y7c{bottom:961.560000px;}
.y33{bottom:962.640000px;}
.yb2{bottom:963.000000px;}
.y59{bottom:964.080000px;}
.ye{bottom:973.440000px;}
.y7b{bottom:982.080000px;}
.y32{bottom:983.160000px;}
.yb1{bottom:983.520000px;}
.y10b{bottom:984.240000px;}
.y9d{bottom:984.960000px;}
.y58{bottom:1002.960000px;}
.y31{bottom:1004.040000px;}
.yb0{bottom:1004.400000px;}
.y10a{bottom:1004.760000px;}
.y182{bottom:1005.480000px;}
.yd{bottom:1008.000000px;}
.y57{bottom:1023.480000px;}
.y30{bottom:1024.560000px;}
.yaf{bottom:1024.920000px;}
.y109{bottom:1025.640000px;}
.y181{bottom:1026.360000px;}
.yc{bottom:1042.560000px;}
.y56{bottom:1044.360000px;}
.y2f{bottom:1045.440000px;}
.yae{bottom:1045.800000px;}
.y108{bottom:1064.520000px;}
.y55{bottom:1064.880000px;}
.y2e{bottom:1065.960000px;}
.yad{bottom:1066.320000px;}
.y54{bottom:1085.760000px;}
.yb{bottom:1094.760000px;}
.y2d{bottom:1104.480000px;}
.yac{bottom:1104.840000px;}
.y53{bottom:1106.280000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1161.000000px;}
.y2{bottom:1178.280000px;}
.y1{bottom:1195.560000px;}
.h16{height:5.653125px;}
.h1e{height:10.440000px;}
.h1a{height:10.800000px;}
.h1c{height:11.306250px;}
.h14{height:16.920000px;}
.h4{height:17.280000px;}
.h6{height:18.000000px;}
.h17{height:18.372656px;}
.h1d{height:20.160000px;}
.h15{height:20.520000px;}
.hf{height:38.158594px;}
.h1b{height:46.638281px;}
.h5{height:56.542080px;}
.h1{height:59.357813px;}
.h2{height:60.952500px;}
.h7{height:61.365938px;}
.h3{height:67.210313px;}
.h11{height:70.628906px;}
.hd{height:70.664062px;}
.he{height:72.562500px;}
.h12{height:75.093750px;}
.h10{height:76.279219px;}
.ha{height:76.317188px;}
.hc{height:78.367500px;}
.h13{height:79.758281px;}
.h9{height:81.970312px;}
.hb{height:92.584629px;}
.h18{height:112.424062px;}
.h8{height:120.453750px;}
.h19{height:152.744063px;}
.h0{height:1263.000000px;}
.w4{width:3.960000px;}
.wb{width:6.120000px;}
.wa{width:7.560000px;}
.w9{width:7.920000px;}
.w2{width:9.000000px;}
.w5{width:16.200000px;}
.w1{width:24.840000px;}
.w3{width:28.080000px;}
.w6{width:57.960000px;}
.w8{width:65.880000px;}
.w7{width:76.320000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x20{left:54.360000px;}
.x2{left:55.800000px;}
.x21{left:59.400000px;}
.x3{left:80.640000px;}
.x1{left:127.440000px;}
.x36{left:132.840000px;}
.x49{left:136.800000px;}
.xd{left:149.040000px;}
.x13{left:159.480000px;}
.x7{left:163.800000px;}
.xa{left:176.040000px;}
.x12{left:180.720000px;}
.x34{left:186.480000px;}
.x10{left:196.200000px;}
.x6{left:199.800000px;}
.x5{left:208.080000px;}
.x2a{left:218.160000px;}
.x3d{left:225.720000px;}
.x42{left:230.040000px;}
.xb{left:249.840000px;}
.x41{left:292.320000px;}
.x26{left:293.760000px;}
.x39{left:299.880000px;}
.x14{left:315.720000px;}
.x9{left:342.000000px;}
.x8{left:344.160000px;}
.x2e{left:349.920000px;}
.xf{left:359.640000px;}
.x37{left:378.360000px;}
.x11{left:383.040000px;}
.x38{left:384.480000px;}
.xc{left:396.000000px;}
.x47{left:411.480000px;}
.x40{left:424.800000px;}
.xe{left:430.560000px;}
.x2c{left:435.600000px;}
.x2d{left:444.600000px;}
.x29{left:447.480000px;}
.x31{left:455.400000px;}
.x4{left:456.840000px;}
.x33{left:459.720000px;}
.x24{left:463.680000px;}
.x3c{left:488.880000px;}
.x46{left:505.800000px;}
.x25{left:528.840000px;}
.x32{left:537.840000px;}
.x45{left:539.640000px;}
.x2f{left:541.440000px;}
.x44{left:542.520000px;}
.x22{left:544.680000px;}
.x48{left:562.680000px;}
.x1e{left:594.720000px;}
.x28{left:597.600000px;}
.x30{left:606.240000px;}
.x27{left:613.440000px;}
.x3f{left:619.560000px;}
.x2b{left:622.800000px;}
.x3a{left:635.760000px;}
.x35{left:662.040000px;}
.x3e{left:680.400000px;}
.x1b{left:685.440000px;}
.x1c{left:689.760000px;}
.x23{left:691.200000px;}
.x1d{left:702.000000px;}
.x43{left:721.080000px;}
.x3b{left:765.360000px;}
.x1a{left:767.520000px;}
.x19{left:775.800000px;}
.x15{left:779.040000px;}
.x1f{left:789.840000px;}
.x16{left:807.120000px;}
.x17{left:811.080000px;}
.x18{left:815.040000px;}
@media print{
.v6{vertical-align:-81.920000pt;}
.vc{vertical-align:-79.360000pt;}
.vb{vertical-align:-78.080000pt;}
.va{vertical-align:-76.800000pt;}
.v9{vertical-align:-75.520000pt;}
.v5{vertical-align:-29.440000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:29.440000pt;}
.v1{vertical-align:34.560000pt;}
.v7{vertical-align:37.120000pt;}
.v8{vertical-align:72.960000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004162pt;}
.ls2{letter-spacing:0.004570pt;}
.ls6{letter-spacing:0.005006pt;}
.ls3{letter-spacing:0.642394pt;}
.ls1{letter-spacing:0.643047pt;}
.ls5{letter-spacing:0.643700pt;}
.ls7{letter-spacing:69.262799pt;}
.ws3{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1{word-spacing:-11.827200pt;}
.ws2{word-spacing:0.000000pt;}
._80{margin-left:-1557.997660pt;}
._78{margin-left:-1246.893892pt;}
._8d{margin-left:-1232.806057pt;}
._70{margin-left:-1230.256504pt;}
._74{margin-left:-1224.151774pt;}
._7d{margin-left:-1214.899333pt;}
._89{margin-left:-1211.344157pt;}
._81{margin-left:-1200.811498pt;}
._83{margin-left:-1194.706769pt;}
._86{margin-left:-1185.454327pt;}
._5c{margin-left:-1166.240181pt;}
._5a{margin-left:-1127.833652pt;}
._63{margin-left:-933.251453pt;}
._61{margin-left:-919.840339pt;}
._5d{margin-left:-848.746207pt;}
._5f{margin-left:-793.696848pt;}
._58{margin-left:-784.735325pt;}
._7f{margin-left:-782.185772pt;}
._6d{margin-left:-709.916621pt;}
._7b{margin-left:-707.933149pt;}
._8b{margin-left:-706.594409pt;}
._8c{margin-left:-682.901004pt;}
._72{margin-left:-661.845314pt;}
._6e{margin-left:-651.603573pt;}
._7c{margin-left:-634.252734pt;}
._5b{margin-left:-624.719002pt;}
._88{margin-left:-614.768179pt;}
._77{margin-left:-609.356391pt;}
._73{margin-left:-599.405567pt;}
._6f{margin-left:-593.993779pt;}
._85{margin-left:-577.350950pt;}
._57{margin-left:-569.048578pt;}
._62{margin-left:-491.576368pt;}
._64{margin-left:-474.938980pt;}
._51{margin-left:-373.181156pt;}
._46{margin-left:-359.098762pt;}
._4f{margin-left:-341.554558pt;}
._38{margin-left:-333.494409pt;}
._42{margin-left:-319.412015pt;}
._49{margin-left:-307.890057pt;}
._4d{margin-left:-306.609839pt;}
._35{margin-left:-300.208751pt;}
._43{margin-left:-296.368098pt;}
._3b{margin-left:-287.406574pt;}
._26{margin-left:-281.922228pt;}
._33{margin-left:-279.725268pt;}
._29{margin-left:-274.604398pt;}
._40{margin-left:-273.324180pt;}
._4e{margin-left:-268.203310pt;}
._28{margin-left:-262.397108pt;}
._3a{margin-left:-260.522004pt;}
._3d{margin-left:-257.961569pt;}
._31{margin-left:-255.401133pt;}
._45{margin-left:-252.236468pt;}
._3e{margin-left:-250.090841pt;}
._2d{margin-left:-249.000045pt;}
._48{margin-left:-247.719828pt;}
._56{margin-left:-245.159392pt;}
._2a{margin-left:-237.936308pt;}
._4c{margin-left:-236.197869pt;}
._2f{margin-left:-234.917651pt;}
._36{margin-left:-232.560308pt;}
._44{margin-left:-231.076998pt;}
._47{margin-left:-229.764788pt;}
._50{margin-left:-227.614388pt;}
._54{margin-left:-224.675910pt;}
._4b{margin-left:-218.274822pt;}
._3c{margin-left:-216.444160pt;}
._52{margin-left:-213.114566pt;}
._2b{margin-left:-211.231340pt;}
._34{margin-left:-209.712308pt;}
._4a{margin-left:-202.884788pt;}
._53{margin-left:-201.752302pt;}
._39{margin-left:-176.004788pt;}
._32{margin-left:-150.038708pt;}
._3f{margin-left:-149.124788pt;}
._30{margin-left:-140.146868pt;}
._55{margin-left:-133.508987pt;}
._2e{margin-left:-130.685108pt;}
._37{margin-left:-122.244788pt;}
._41{margin-left:-120.793268pt;}
._27{margin-left:-105.256628pt;}
._2c{margin-left:-96.870068pt;}
._60{margin-left:-3.763159pt;}
._17{margin-left:-2.731520pt;}
._0{margin-left:-1.720320pt;}
._1{width:1.182720pt;}
._5{width:2.096640pt;}
._11{width:3.169280pt;}
._15{width:4.107767pt;}
._14{width:5.107200pt;}
._12{width:6.696842pt;}
._13{width:7.855710pt;}
._19{width:8.770560pt;}
._e{width:10.019840pt;}
._c{width:10.969600pt;}
._d{width:12.377600pt;}
._10{width:13.432320pt;}
._f{width:14.799360pt;}
._1d{width:17.111516pt;}
._1b{width:18.176000pt;}
._1c{width:19.194880pt;}
._1a{width:20.497920pt;}
._a{width:21.568000pt;}
._9{width:22.650880pt;}
._b{width:24.181760pt;}
._18{width:25.615360pt;}
._16{width:26.777600pt;}
._1e{width:28.032000pt;}
._1f{width:29.352960pt;}
._20{width:30.433280pt;}
._23{width:32.035840pt;}
._25{width:33.300480pt;}
._24{width:34.373120pt;}
._90{width:35.568751pt;}
._8f{width:37.230080pt;}
._6{width:38.272000pt;}
._7{width:39.285760pt;}
._8{width:40.683520pt;}
._91{width:46.087149pt;}
._66{width:65.895754pt;}
._67{width:94.453590pt;}
._65{width:133.090298pt;}
._69{width:178.437400pt;}
._6a{width:192.038086pt;}
._4{width:195.818952pt;}
._22{width:197.303752pt;}
._68{width:224.389861pt;}
._6b{width:229.186162pt;}
._6c{width:364.230079pt;}
._5e{width:835.922809pt;}
._59{width:955.511903pt;}
._84{width:1045.341330pt;}
._2{width:1072.644552pt;}
._76{width:1091.270175pt;}
._87{width:1121.941650pt;}
._75{width:1151.386655pt;}
._8e{width:1258.837650pt;}
._7e{width:1288.282655pt;}
._82{width:1479.089810pt;}
._71{width:1508.534815pt;}
._8a{width:1680.866450pt;}
._79{width:1710.311455pt;}
._3{width:1806.216990pt;}
._21{width:1807.765790pt;}
._7a{width:1838.011935pt;}
.fs9{font-size:5.120000pt;}
.fsb{font-size:10.240000pt;}
.fsa{font-size:16.640000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.240000pt;}
.fs5{font-size:48.639947pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:106.240000pt;}
.y157{bottom:-5.120000pt;}
.y0{bottom:0.000000pt;}
.y127{bottom:2.560000pt;}
.y8{bottom:2.880000pt;}
.yda{bottom:3.200000pt;}
.ya{bottom:3.520000pt;}
.yf8{bottom:3.840000pt;}
.y9{bottom:36.480000pt;}
.y7{bottom:37.120000pt;}
.y6{bottom:52.160000pt;}
.y52{bottom:117.440000pt;}
.yeb{bottom:118.400000pt;}
.y16c{bottom:121.600000pt;}
.y2c{bottom:122.880000pt;}
.y9c{bottom:130.880000pt;}
.y2b{bottom:132.800000pt;}
.y51{bottom:136.000000pt;}
.yea{bottom:136.640000pt;}
.y16b{bottom:140.160000pt;}
.yab{bottom:140.480000pt;}
.yc9{bottom:145.600000pt;}
.y9b{bottom:149.120000pt;}
.y107{bottom:152.320000pt;}
.y147{bottom:152.640000pt;}
.ye9{bottom:155.200000pt;}
.y7a{bottom:158.400000pt;}
.y2a{bottom:167.360000pt;}
.y9a{bottom:167.680000pt;}
.y12a{bottom:168.640000pt;}
.y50{bottom:170.560000pt;}
.y146{bottom:171.200000pt;}
.y180{bottom:171.840000pt;}
.ye8{bottom:173.440000pt;}
.yaa{bottom:175.040000pt;}
.y79{bottom:176.960000pt;}
.yc8{bottom:181.440000pt;}
.y99{bottom:185.920000pt;}
.y129{bottom:186.880000pt;}
.y106{bottom:189.120000pt;}
.y145{bottom:189.440000pt;}
.y17f{bottom:190.400000pt;}
.ye7{bottom:192.000000pt;}
.y78{bottom:195.200000pt;}
.yc7{bottom:199.680000pt;}
.y29{bottom:202.560000pt;}
.y4f{bottom:206.400000pt;}
.y105{bottom:207.360000pt;}
.y144{bottom:208.000000pt;}
.y17e{bottom:208.640000pt;}
.ya9{bottom:209.600000pt;}
.ye6{bottom:210.240000pt;}
.y77{bottom:213.760000pt;}
.y28{bottom:217.920000pt;}
.yc6{bottom:218.240000pt;}
.y98{bottom:220.480000pt;}
.y128{bottom:221.440000pt;}
.y4e{bottom:224.640000pt;}
.y104{bottom:225.920000pt;}
.y76{bottom:232.000000pt;}
.y27{bottom:233.280000pt;}
.yc5{bottom:236.480000pt;}
.y97{bottom:238.720000pt;}
.y143{bottom:242.880000pt;}
.y4d{bottom:243.200000pt;}
.y103{bottom:244.160000pt;}
.ya8{bottom:245.120000pt;}
.ye5{bottom:246.720000pt;}
.y26{bottom:248.640000pt;}
.y16a{bottom:250.560000pt;}
.y96{bottom:257.280000pt;}
.y126{bottom:257.920000pt;}
.y141{bottom:258.240000pt;}
.y4c{bottom:261.440000pt;}
.y142{bottom:262.080000pt;}
.y102{bottom:262.720000pt;}
.ye4{bottom:265.920000pt;}
.y75{bottom:266.560000pt;}
.y169{bottom:268.800000pt;}
.yc4{bottom:271.040000pt;}
.y95{bottom:275.520000pt;}
.y125{bottom:277.120000pt;}
.y4b{bottom:280.000000pt;}
.y25{bottom:280.640000pt;}
.y101{bottom:280.960000pt;}
.ya7{bottom:281.280000pt;}
.ye3{bottom:285.440000pt;}
.y124{bottom:286.080000pt;}
.y94{bottom:294.080000pt;}
.y4a{bottom:298.240000pt;}
.y24{bottom:298.880000pt;}
.ya6{bottom:299.520000pt;}
.y74{bottom:302.400000pt;}
.ye2{bottom:303.360000pt;}
.yc3{bottom:305.280000pt;}
.y123{bottom:311.680000pt;}
.y93{bottom:312.320000pt;}
.y17d{bottom:314.240000pt;}
.y49{bottom:316.800000pt;}
.y100{bottom:317.760000pt;}
.ye0{bottom:318.720000pt;}
.y73{bottom:320.640000pt;}
.y168{bottom:321.600000pt;}
.yc2{bottom:323.840000pt;}
.ye1{bottom:330.560000pt;}
.y92{bottom:330.880000pt;}
.y17c{bottom:332.800000pt;}
.ya5{bottom:334.080000pt;}
.y23{bottom:334.720000pt;}
.y122{bottom:335.040000pt;}
.yff{bottom:336.320000pt;}
.y72{bottom:339.200000pt;}
.y167{bottom:340.160000pt;}
.yc1{bottom:342.080000pt;}
.y91{bottom:349.120000pt;}
.ydf{bottom:349.760000pt;}
.y17b{bottom:351.040000pt;}
.y48{bottom:351.360000pt;}
.ya4{bottom:352.320000pt;}
.y22{bottom:353.280000pt;}
.yfe{bottom:354.560000pt;}
.y71{bottom:357.440000pt;}
.y166{bottom:358.400000pt;}
.yc0{bottom:360.640000pt;}
.yde{bottom:361.920000pt;}
.y90{bottom:367.680000pt;}
.y121{bottom:369.600000pt;}
.y21{bottom:371.520000pt;}
.y70{bottom:376.000000pt;}
.y140{bottom:376.320000pt;}
.y165{bottom:376.960000pt;}
.ydd{bottom:383.360000pt;}
.y17a{bottom:385.600000pt;}
.y47{bottom:386.880000pt;}
.y120{bottom:387.840000pt;}
.y20{bottom:390.080000pt;}
.yfd{bottom:390.400000pt;}
.ybf{bottom:394.880000pt;}
.y164{bottom:395.200000pt;}
.y13f{bottom:396.800000pt;}
.y13e{bottom:400.640000pt;}
.ydc{bottom:401.600000pt;}
.y8f{bottom:401.920000pt;}
.y179{bottom:403.840000pt;}
.ya3{bottom:405.120000pt;}
.y46{bottom:405.440000pt;}
.y11f{bottom:406.400000pt;}
.y1f{bottom:408.320000pt;}
.y6f{bottom:410.240000pt;}
.y194{bottom:413.120000pt;}
.y163{bottom:413.760000pt;}
.ydb{bottom:416.960000pt;}
.y8e{bottom:420.480000pt;}
.y45{bottom:423.680000pt;}
.y11e{bottom:424.640000pt;}
.y1e{bottom:426.880000pt;}
.y6e{bottom:428.800000pt;}
.yd9{bottom:429.120000pt;}
.ybe{bottom:429.760000pt;}
.yfc{bottom:431.680000pt;}
.y162{bottom:432.000000pt;}
.y13d{bottom:438.080000pt;}
.y178{bottom:438.400000pt;}
.y8d{bottom:438.720000pt;}
.ya2{bottom:439.680000pt;}
.y44{bottom:442.240000pt;}
.y11d{bottom:443.200000pt;}
.y1d{bottom:445.120000pt;}
.y6d{bottom:447.040000pt;}
.y193{bottom:448.000000pt;}
.yfb{bottom:448.640000pt;}
.y161{bottom:450.560000pt;}
.yfa{bottom:452.480000pt;}
.y177{bottom:456.640000pt;}
.y8c{bottom:457.280000pt;}
.yd8{bottom:462.080000pt;}
.y1c{bottom:463.680000pt;}
.ybd{bottom:465.280000pt;}
.y6c{bottom:465.600000pt;}
.y192{bottom:467.840000pt;}
.y160{bottom:468.800000pt;}
.y13c{bottom:472.640000pt;}
.ya1{bottom:473.920000pt;}
.y8b{bottom:475.520000pt;}
.y43{bottom:476.800000pt;}
.y11c{bottom:477.440000pt;}
.y6b{bottom:483.840000pt;}
.y15f{bottom:487.360000pt;}
.y13b{bottom:490.880000pt;}
.y176{bottom:491.200000pt;}
.yf9{bottom:493.760000pt;}
.y8a{bottom:494.080000pt;}
.y11b{bottom:496.000000pt;}
.yd7{bottom:496.640000pt;}
.y1b{bottom:497.920000pt;}
.ybc{bottom:502.080000pt;}
.y6a{bottom:502.400000pt;}
.y191{bottom:503.680000pt;}
.y15e{bottom:505.600000pt;}
.y13a{bottom:509.440000pt;}
.ya0{bottom:510.080000pt;}
.yf7{bottom:511.040000pt;}
.y89{bottom:512.320000pt;}
.y42{bottom:512.640000pt;}
.y11a{bottom:514.240000pt;}
.yd6{bottom:514.880000pt;}
.y69{bottom:520.640000pt;}
.y190{bottom:521.920000pt;}
.y15d{bottom:524.160000pt;}
.y139{bottom:527.680000pt;}
.y175{bottom:528.000000pt;}
.y9f{bottom:528.320000pt;}
.y41{bottom:530.880000pt;}
.y119{bottom:532.800000pt;}
.y1a{bottom:534.080000pt;}
.ybb{bottom:536.640000pt;}
.y68{bottom:539.200000pt;}
.y15c{bottom:542.400000pt;}
.y138{bottom:546.240000pt;}
.y88{bottom:546.880000pt;}
.yf6{bottom:548.800000pt;}
.y40{bottom:549.440000pt;}
.y118{bottom:551.040000pt;}
.y18f{bottom:556.480000pt;}
.y67{bottom:557.440000pt;}
.y15b{bottom:560.960000pt;}
.y174{bottom:562.560000pt;}
.y137{bottom:564.480000pt;}
.y87{bottom:565.120000pt;}
.y19{bottom:570.240000pt;}
.yba{bottom:570.880000pt;}
.y66{bottom:576.000000pt;}
.y15a{bottom:579.200000pt;}
.y173{bottom:582.400000pt;}
.yf5{bottom:583.040000pt;}
.y86{bottom:583.680000pt;}
.y3f{bottom:584.000000pt;}
.yd5{bottom:585.280000pt;}
.y116{bottom:586.240000pt;}
.yb9{bottom:589.440000pt;}
.y18{bottom:590.080000pt;}
.y18e{bottom:590.720000pt;}
.y65{bottom:594.240000pt;}
.y117{bottom:595.200000pt;}
.y159{bottom:597.760000pt;}
.y136{bottom:601.280000pt;}
.yf4{bottom:601.600000pt;}
.y85{bottom:601.920000pt;}
.y172{bottom:602.560000pt;}
.yd4{bottom:603.520000pt;}
.y115{bottom:604.480000pt;}
.y18d{bottom:609.280000pt;}
.y17{bottom:610.240000pt;}
.y64{bottom:612.800000pt;}
.y3e{bottom:619.520000pt;}
.yf3{bottom:619.840000pt;}
.y84{bottom:620.480000pt;}
.yd3{bottom:622.080000pt;}
.yb8{bottom:623.680000pt;}
.y18c{bottom:627.520000pt;}
.y113{bottom:628.800000pt;}
.y63{bottom:631.040000pt;}
.y158{bottom:632.000000pt;}
.y114{bottom:637.760000pt;}
.y135{bottom:638.080000pt;}
.yf2{bottom:638.400000pt;}
.y83{bottom:638.720000pt;}
.yd2{bottom:640.320000pt;}
.y18b{bottom:646.080000pt;}
.y112{bottom:647.040000pt;}
.y16{bottom:647.360000pt;}
.y62{bottom:653.760000pt;}
.y3d{bottom:655.680000pt;}
.y134{bottom:656.640000pt;}
.y82{bottom:657.280000pt;}
.yb7{bottom:658.240000pt;}
.yd1{bottom:658.880000pt;}
.y156{bottom:664.640000pt;}
.y15{bottom:667.520000pt;}
.y155{bottom:668.800000pt;}
.yf1{bottom:672.960000pt;}
.y3c{bottom:673.920000pt;}
.y171{bottom:674.240000pt;}
.y133{bottom:674.880000pt;}
.y81{bottom:675.520000pt;}
.yd0{bottom:677.120000pt;}
.y18a{bottom:680.320000pt;}
.y154{bottom:683.840000pt;}
.y153{bottom:684.160000pt;}
.y111{bottom:684.800000pt;}
.y14{bottom:687.680000pt;}
.y3b{bottom:692.480000pt;}
.y61{bottom:692.800000pt;}
.y132{bottom:693.440000pt;}
.y80{bottom:694.080000pt;}
.ycf{bottom:695.680000pt;}
.y189{bottom:698.560000pt;}
.yf0{bottom:708.480000pt;}
.y131{bottom:711.680000pt;}
.y170{bottom:712.000000pt;}
.y7f{bottom:712.320000pt;}
.yce{bottom:713.920000pt;}
.y151{bottom:723.520000pt;}
.y13{bottom:724.800000pt;}
.y3a{bottom:726.720000pt;}
.y152{bottom:727.040000pt;}
.yef{bottom:728.000000pt;}
.y60{bottom:728.320000pt;}
.y16f{bottom:730.240000pt;}
.y9e{bottom:730.560000pt;}
.yb6{bottom:730.880000pt;}
.y188{bottom:733.120000pt;}
.y110{bottom:734.720000pt;}
.y150{bottom:742.720000pt;}
.y12{bottom:744.640000pt;}
.y39{bottom:745.280000pt;}
.y130{bottom:746.240000pt;}
.y5f{bottom:746.560000pt;}
.yee{bottom:747.520000pt;}
.ycd{bottom:748.480000pt;}
.yb5{bottom:749.120000pt;}
.y187{bottom:751.360000pt;}
.y14f{bottom:761.600000pt;}
.y38{bottom:763.520000pt;}
.y12f{bottom:764.480000pt;}
.y11{bottom:764.800000pt;}
.y5e{bottom:765.120000pt;}
.y16e{bottom:766.080000pt;}
.yed{bottom:767.040000pt;}
.yb4{bottom:767.680000pt;}
.y10f{bottom:769.280000pt;}
.y186{bottom:769.920000pt;}
.y14e{bottom:780.800000pt;}
.y37{bottom:782.080000pt;}
.y12e{bottom:782.720000pt;}
.y5d{bottom:783.360000pt;}
.ycc{bottom:784.320000pt;}
.y10e{bottom:787.520000pt;}
.y10{bottom:787.840000pt;}
.y14d{bottom:799.680000pt;}
.y36{bottom:800.320000pt;}
.y5c{bottom:801.920000pt;}
.y12d{bottom:802.560000pt;}
.ycb{bottom:802.880000pt;}
.y14c{bottom:803.200000pt;}
.y185{bottom:804.160000pt;}
.y7e{bottom:817.920000pt;}
.y16d{bottom:818.560000pt;}
.y35{bottom:818.880000pt;}
.y5b{bottom:820.160000pt;}
.y12c{bottom:820.800000pt;}
.yca{bottom:821.120000pt;}
.y10d{bottom:822.080000pt;}
.y184{bottom:822.720000pt;}
.y14b{bottom:825.920000pt;}
.y14a{bottom:826.240000pt;}
.y149{bottom:829.760000pt;}
.yf{bottom:834.560000pt;}
.y7d{bottom:836.160000pt;}
.y34{bottom:837.120000pt;}
.yb3{bottom:837.440000pt;}
.y5a{bottom:838.720000pt;}
.y12b{bottom:839.040000pt;}
.yec{bottom:839.680000pt;}
.y10c{bottom:840.320000pt;}
.y183{bottom:840.960000pt;}
.y148{bottom:853.120000pt;}
.y7c{bottom:854.720000pt;}
.y33{bottom:855.680000pt;}
.yb2{bottom:856.000000pt;}
.y59{bottom:856.960000pt;}
.ye{bottom:865.280000pt;}
.y7b{bottom:872.960000pt;}
.y32{bottom:873.920000pt;}
.yb1{bottom:874.240000pt;}
.y10b{bottom:874.880000pt;}
.y9d{bottom:875.520000pt;}
.y58{bottom:891.520000pt;}
.y31{bottom:892.480000pt;}
.yb0{bottom:892.800000pt;}
.y10a{bottom:893.120000pt;}
.y182{bottom:893.760000pt;}
.yd{bottom:896.000000pt;}
.y57{bottom:909.760000pt;}
.y30{bottom:910.720000pt;}
.yaf{bottom:911.040000pt;}
.y109{bottom:911.680000pt;}
.y181{bottom:912.320000pt;}
.yc{bottom:926.720000pt;}
.y56{bottom:928.320000pt;}
.y2f{bottom:929.280000pt;}
.yae{bottom:929.600000pt;}
.y108{bottom:946.240000pt;}
.y55{bottom:946.560000pt;}
.y2e{bottom:947.520000pt;}
.yad{bottom:947.840000pt;}
.y54{bottom:965.120000pt;}
.yb{bottom:973.120000pt;}
.y2d{bottom:981.760000pt;}
.yac{bottom:982.080000pt;}
.y53{bottom:983.360000pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1032.000000pt;}
.y2{bottom:1047.360000pt;}
.y1{bottom:1062.720000pt;}
.h16{height:5.025000pt;}
.h1e{height:9.280000pt;}
.h1a{height:9.600000pt;}
.h1c{height:10.050000pt;}
.h14{height:15.040000pt;}
.h4{height:15.360000pt;}
.h6{height:16.000000pt;}
.h17{height:16.331250pt;}
.h1d{height:17.920000pt;}
.h15{height:18.240000pt;}
.hf{height:33.918750pt;}
.h1b{height:41.456250pt;}
.h5{height:50.259627pt;}
.h1{height:52.762500pt;}
.h2{height:54.180000pt;}
.h7{height:54.547500pt;}
.h3{height:59.742500pt;}
.h11{height:62.781250pt;}
.hd{height:62.812500pt;}
.he{height:64.500000pt;}
.h12{height:66.750000pt;}
.h10{height:67.803750pt;}
.ha{height:67.837500pt;}
.hc{height:69.660000pt;}
.h13{height:70.896250pt;}
.h9{height:72.862500pt;}
.hb{height:82.297448pt;}
.h18{height:99.932500pt;}
.h8{height:107.070000pt;}
.h19{height:135.772500pt;}
.h0{height:1122.666667pt;}
.w4{width:3.520000pt;}
.wb{width:5.440000pt;}
.wa{width:6.720000pt;}
.w9{width:7.040000pt;}
.w2{width:8.000000pt;}
.w5{width:14.400000pt;}
.w1{width:22.080000pt;}
.w3{width:24.960000pt;}
.w6{width:51.520000pt;}
.w8{width:58.560000pt;}
.w7{width:67.840000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x20{left:48.320000pt;}
.x2{left:49.600000pt;}
.x21{left:52.800000pt;}
.x3{left:71.680000pt;}
.x1{left:113.280000pt;}
.x36{left:118.080000pt;}
.x49{left:121.600000pt;}
.xd{left:132.480000pt;}
.x13{left:141.760000pt;}
.x7{left:145.600000pt;}
.xa{left:156.480000pt;}
.x12{left:160.640000pt;}
.x34{left:165.760000pt;}
.x10{left:174.400000pt;}
.x6{left:177.600000pt;}
.x5{left:184.960000pt;}
.x2a{left:193.920000pt;}
.x3d{left:200.640000pt;}
.x42{left:204.480000pt;}
.xb{left:222.080000pt;}
.x41{left:259.840000pt;}
.x26{left:261.120000pt;}
.x39{left:266.560000pt;}
.x14{left:280.640000pt;}
.x9{left:304.000000pt;}
.x8{left:305.920000pt;}
.x2e{left:311.040000pt;}
.xf{left:319.680000pt;}
.x37{left:336.320000pt;}
.x11{left:340.480000pt;}
.x38{left:341.760000pt;}
.xc{left:352.000000pt;}
.x47{left:365.760000pt;}
.x40{left:377.600000pt;}
.xe{left:382.720000pt;}
.x2c{left:387.200000pt;}
.x2d{left:395.200000pt;}
.x29{left:397.760000pt;}
.x31{left:404.800000pt;}
.x4{left:406.080000pt;}
.x33{left:408.640000pt;}
.x24{left:412.160000pt;}
.x3c{left:434.560000pt;}
.x46{left:449.600000pt;}
.x25{left:470.080000pt;}
.x32{left:478.080000pt;}
.x45{left:479.680000pt;}
.x2f{left:481.280000pt;}
.x44{left:482.240000pt;}
.x22{left:484.160000pt;}
.x48{left:500.160000pt;}
.x1e{left:528.640000pt;}
.x28{left:531.200000pt;}
.x30{left:538.880000pt;}
.x27{left:545.280000pt;}
.x3f{left:550.720000pt;}
.x2b{left:553.600000pt;}
.x3a{left:565.120000pt;}
.x35{left:588.480000pt;}
.x3e{left:604.800000pt;}
.x1b{left:609.280000pt;}
.x1c{left:613.120000pt;}
.x23{left:614.400000pt;}
.x1d{left:624.000000pt;}
.x43{left:640.960000pt;}
.x3b{left:680.320000pt;}
.x1a{left:682.240000pt;}
.x19{left:689.600000pt;}
.x15{left:692.480000pt;}
.x1f{left:702.080000pt;}
.x16{left:717.440000pt;}
.x17{left:720.960000pt;}
.x18{left:724.480000pt;}
}




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