
    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_c3f33176d097edc3c17a8604.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.709000;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_685cc9305d8fe74dc2332bf7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938000;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_9f2ba9ba8ffa1e43cc7fa6f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_bd68ae7c1f51e6128ab7875d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_230e9ac014d6d3a343dd2af3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_be8f5ab00ce098aff04fce6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938000;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_6fde2bdb9f0540f83f93ab13.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_4baf8fae6699c0378670a766.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.911000;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;}
.m5{transform:matrix(0.243263,0.000000,-0.081080,0.236487,0,0);-ms-transform:matrix(0.243263,0.000000,-0.081080,0.236487,0,0);-webkit-transform:matrix(0.243263,0.000000,-0.081080,0.236487,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(0.250460,0.000000,-0.083479,0.235651,0,0);-ms-transform:matrix(0.250460,0.000000,-0.083479,0.235651,0,0);-webkit-transform:matrix(0.250460,0.000000,-0.083479,0.235651,0,0);}
.m4{transform:matrix(0.257163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257163,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257165,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.265710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265710,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.909654px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.466560px;}
.ls2{letter-spacing:0.933121px;}
.ls8{letter-spacing:0.935989px;}
.ls7{letter-spacing:1.051261px;}
.ls5{letter-spacing:1.056901px;}
.ls3{letter-spacing:1.113121px;}
.ls4{letter-spacing:9.286567px;}
.ls6{letter-spacing:14.866572px;}
.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;}
}
.ws8{word-spacing:-55.405937px;}
.ws4{word-spacing:-55.375128px;}
.ws5{word-spacing:-45.306013px;}
.ws7{word-spacing:-42.729514px;}
.ws6{word-spacing:-42.705754px;}
.ws0{word-spacing:-16.813453px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:366.543040px;}
.ws3{word-spacing:679.185100px;}
._1e{margin-left:-608.594901px;}
._20{margin-left:-577.807156px;}
._1d{margin-left:-557.742630px;}
._23{margin-left:-544.638570px;}
._19{margin-left:-530.656775px;}
._1b{margin-left:-376.050002px;}
._1c{margin-left:-369.689770px;}
._1f{margin-left:-307.955279px;}
._22{margin-left:-290.444166px;}
._18{margin-left:-270.878167px;}
._26{margin-left:-209.298641px;}
._21{margin-left:-181.732042px;}
._24{margin-left:-172.989872px;}
._1a{margin-left:-149.174069px;}
._25{margin-left:-94.486350px;}
._e{margin-left:-4.701939px;}
._2{margin-left:-3.326403px;}
._1{margin-left:-1.952701px;}
._0{width:1.871900px;}
._6{width:2.988350px;}
._5{width:3.996983px;}
._7{width:5.661620px;}
._8{width:6.971517px;}
._11{width:8.090178px;}
._d{width:9.206581px;}
._b{width:11.128655px;}
._c{width:12.421296px;}
._9{width:14.347484px;}
._a{width:15.727903px;}
._3{width:18.146905px;}
._12{width:19.840571px;}
._4{width:20.961787px;}
._14{width:22.763686px;}
._13{width:23.906880px;}
._f{width:26.225383px;}
._16{width:27.248807px;}
._10{width:28.382943px;}
._27{width:29.787960px;}
._29{width:43.462336px;}
._2a{width:45.693879px;}
._28{width:47.270721px;}
._2b{width:48.513495px;}
._17{width:651.884202px;}
._15{width:848.039142px;}
.fc1{color:rgb(57,97,182);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:41.496333px;}
.fs5{font-size:41.579313px;}
.fs1{font-size:60.480048px;}
.fs3{font-size:71.176257px;}
.fs6{font-size:71.215857px;}
.fs0{font-size:72.000058px;}
.fs7{font-size:75.285077px;}
.fs4{font-size:75.510022px;}
.y0{bottom:0.000000px;}
.y139{bottom:3.965365px;}
.ye3{bottom:4.318630px;}
.ya7{bottom:4.319042px;}
.y173{bottom:4.319134px;}
.y18a{bottom:4.320214px;}
.y118{bottom:4.320253px;}
.y180{bottom:4.320713px;}
.y11b{bottom:4.320763px;}
.y143{bottom:4.321038px;}
.y67{bottom:4.321208px;}
.y140{bottom:4.321909px;}
.y170{bottom:4.351513px;}
.y136{bottom:4.406266px;}
.y11d{bottom:4.590253px;}
.y145{bottom:4.620709px;}
.y175{bottom:4.650313px;}
.y8f{bottom:6.478609px;}
.yca{bottom:6.478856px;}
.yf8{bottom:6.479121px;}
.yf6{bottom:6.479139px;}
.y73{bottom:6.479353px;}
.y112{bottom:6.480195px;}
.y106{bottom:6.480249px;}
.y104{bottom:6.480267px;}
.y81{bottom:6.480481px;}
.y150{bottom:6.480670px;}
.yea{bottom:6.480993px;}
.y152{bottom:6.750670px;}
.ye8{bottom:7.198612px;}
.y8a{bottom:7.198627px;}
.y159{bottom:7.198830px;}
.ycf{bottom:7.198838px;}
.y155{bottom:7.198850px;}
.y75{bottom:7.199335px;}
.y6e{bottom:7.199372px;}
.y12f{bottom:7.199514px;}
.yb5{bottom:7.199569px;}
.y12c{bottom:7.200195px;}
.y10d{bottom:7.200214px;}
.y128{bottom:7.200215px;}
.y10b{bottom:7.200231px;}
.y123{bottom:7.200235px;}
.y185{bottom:7.200246px;}
.y83{bottom:7.200463px;}
.yc8{bottom:7.200675px;}
.yc3{bottom:7.200694px;}
.yff{bottom:7.200766px;}
.y96{bottom:7.200973px;}
.yef{bottom:7.200976px;}
.y91{bottom:7.200991px;}
.y114{bottom:7.201015px;}
.yd8{bottom:7.201180px;}
.yd6{bottom:7.201201px;}
.yae{bottom:7.201406px;}
.yfd{bottom:7.201504px;}
.y7c{bottom:7.201699px;}
.y7a{bottom:7.201717px;}
.yc1{bottom:7.201913px;}
.ybc{bottom:7.201932px;}
.yba{bottom:7.231950px;}
.y88{bottom:7.243645px;}
.yf1{bottom:7.244158px;}
.y131{bottom:7.390674px;}
.y12e{bottom:7.425195px;}
.y12a{bottom:7.425215px;}
.y15b{bottom:7.425630px;}
.y157{bottom:7.425650px;}
.y125{bottom:7.470235px;}
.y187{bottom:7.470246px;}
.y98{bottom:7.919151px;}
.yb3{bottom:7.919588px;}
.y14b{bottom:7.920691px;}
.y6c{bottom:7.921190px;}
.yac{bottom:7.921425px;}
.y17a{bottom:7.921495px;}
.yd1{bottom:7.951219px;}
.y14d{bottom:8.190691px;}
.y17c{bottom:8.220295px;}
.y13c{bottom:8.435368px;}
.y137{bottom:8.883679px;}
.y8e{bottom:9.358611px;}
.y89{bottom:9.358629px;}
.yc9{bottom:9.358859px;}
.yf7{bottom:9.359124px;}
.yf5{bottom:9.359142px;}
.y72{bottom:9.359355px;}
.y111{bottom:9.360197px;}
.y10c{bottom:9.360215px;}
.y184{bottom:9.360248px;}
.y105{bottom:9.360252px;}
.y80{bottom:9.360483px;}
.y14f{bottom:9.360672px;}
.yfe{bottom:9.360767px;}
.ye9{bottom:9.360996px;}
.yd5{bottom:9.361203px;}
.yad{bottom:9.361408px;}
.y7b{bottom:9.361701px;}
.y79{bottom:9.361719px;}
.y103{bottom:9.390270px;}
.y87{bottom:9.403647px;}
.yf0{bottom:9.404159px;}
.y6d{bottom:9.404373px;}
.y158{bottom:10.078833px;}
.y154{bottom:10.078853px;}
.y74{bottom:10.079338px;}
.yb4{bottom:10.079571px;}
.y127{bottom:10.080217px;}
.y10a{bottom:10.080234px;}
.y122{bottom:10.080237px;}
.y82{bottom:10.080465px;}
.y95{bottom:10.080975px;}
.yee{bottom:10.080978px;}
.y90{bottom:10.080993px;}
.yfc{bottom:10.081506px;}
.ybb{bottom:10.081934px;}
.yb9{bottom:10.111953px;}
.ye7{bottom:10.798615px;}
.yce{bottom:10.798841px;}
.y113{bottom:10.799518px;}
.yb2{bottom:10.799590px;}
.yc7{bottom:10.800678px;}
.y14a{bottom:10.800693px;}
.yc2{bottom:10.800697px;}
.yd7{bottom:10.801183px;}
.y6b{bottom:10.801192px;}
.yab{bottom:10.801427px;}
.y179{bottom:10.801498px;}
.yc0{bottom:10.801916px;}
.yd0{bottom:10.831222px;}
.y97{bottom:12.239155px;}
.y189{bottom:12.960221px;}
.y17f{bottom:12.990270px;}
.y18c{bottom:13.185221px;}
.y182{bottom:13.260270px;}
.y135{bottom:16.850186px;}
.y172{bottom:21.599148px;}
.y11e{bottom:21.600267px;}
.y11a{bottom:21.600777px;}
.y146{bottom:21.601923px;}
.y17e{bottom:21.630277px;}
.y142{bottom:21.631952px;}
.y188{bottom:21.645228px;}
.y13e{bottom:22.172379px;}
.y13a{bottom:28.805384px;}
.y13b{bottom:30.176479px;}
.yf3{bottom:31.679142px;}
.y77{bottom:31.681719px;}
.y101{bottom:31.710270px;}
.y85{bottom:31.723647px;}
.y70{bottom:32.399355px;}
.y7e{bottom:32.400483px;}
.yfa{bottom:32.400786px;}
.y8c{bottom:32.431011px;}
.yec{bottom:32.444178px;}
.y108{bottom:32.445234px;}
.ya9{bottom:33.121427px;}
.ye5{bottom:33.151015px;}
.yb7{bottom:33.151953px;}
.yc5{bottom:33.163878px;}
.y69{bottom:33.164392px;}
.y13d{bottom:33.276739px;}
.yb0{bottom:33.839590px;}
.ybe{bottom:34.590716px;}
.ycc{bottom:34.591241px;}
.yd3{bottom:35.281203px;}
.y10f{bottom:35.314037px;}
.y93{bottom:37.484175px;}
.y3{bottom:74.916608px;}
.y1{bottom:84.719520px;}
.y148{bottom:85.723893px;}
.y120{bottom:85.759077px;}
.y133{bottom:93.671123px;}
.y116{bottom:94.392623px;}
.y38{bottom:97.991426px;}
.y193{bottom:97.991876px;}
.y177{bottom:108.795298px;}
.y132{bottom:110.951137px;}
.y190{bottom:111.671887px;}
.y115{bottom:111.672637px;}
.y37{bottom:115.271440px;}
.y192{bottom:115.271890px;}
.ya5{bottom:124.631447px;}
.y18f{bottom:128.951901px;}
.y36{bottom:132.551454px;}
.y191{bottom:132.551904px;}
.ya4{bottom:141.948061px;}
.y18e{bottom:146.268515px;}
.y35{bottom:149.868068px;}
.y65{bottom:149.868518px;}
.ya3{bottom:158.505225px;}
.y18d{bottom:163.545679px;}
.y34{bottom:167.145231px;}
.y64{bottom:167.145681px;}
.ya2{bottom:175.785238px;}
.y33{bottom:184.425245px;}
.y63{bottom:184.425695px;}
.ya1{bottom:193.065252px;}
.y32{bottom:201.750259px;}
.y62{bottom:201.750709px;}
.ya0{bottom:210.390266px;}
.y130{bottom:210.600000px;}
.y11f{bottom:210.791160px;}
.y10e{bottom:211.511160px;}
.y31{bottom:219.030273px;}
.y61{bottom:219.030723px;}
.y9f{bottom:227.670280px;}
.y30{bottom:236.310287px;}
.y60{bottom:236.310737px;}
.y12d{bottom:236.520000px;}
.y12b{bottom:236.745000px;}
.y110{bottom:237.465000px;}
.y9e{bottom:244.950294px;}
.y2f{bottom:253.619851px;}
.y5f{bottom:253.620301px;}
.y107{bottom:259.785000px;}
.y129{bottom:261.000000px;}
.y126{bottom:261.225000px;}
.y9d{bottom:262.259858px;}
.y18b{bottom:263.160000px;}
.y176{bottom:263.385000px;}
.y2e{bottom:270.899864px;}
.y5e{bottom:270.900314px;}
.y9c{bottom:279.539871px;}
.y109{bottom:282.150000px;}
.y124{bottom:286.200000px;}
.y121{bottom:286.470000px;}
.y2d{bottom:288.179878px;}
.y5d{bottom:288.180328px;}
.y9b{bottom:296.819885px;}
.y186{bottom:299.880000px;}
.y183{bottom:300.150000px;}
.y100{bottom:305.190000px;}
.y2c{bottom:305.490792px;}
.y5c{bottom:305.491242px;}
.y11c{bottom:312.120000px;}
.y117{bottom:312.390000px;}
.y9a{bottom:314.130799px;}
.y2b{bottom:322.770806px;}
.y5b{bottom:322.771256px;}
.y181{bottom:324.360000px;}
.y17d{bottom:324.630000px;}
.y102{bottom:327.510000px;}
.y99{bottom:331.410813px;}
.y2a{bottom:340.050820px;}
.y5a{bottom:340.051270px;}
.y119{bottom:349.139520px;}
.yf9{bottom:349.859520px;}
.y29{bottom:356.610833px;}
.y59{bottom:356.611283px;}
.y17b{bottom:361.080000px;}
.y178{bottom:361.378800px;}
.y16e{bottom:369.615843px;}
.yfb{bottom:372.178800px;}
.y28{bottom:373.935847px;}
.y58{bottom:373.936297px;}
.y16d{bottom:386.895857px;}
.y174{bottom:387.000000px;}
.y16f{bottom:387.298800px;}
.y27{bottom:391.215861px;}
.y57{bottom:391.216311px;}
.yf2{bottom:395.251200px;}
.y16c{bottom:404.175871px;}
.y26{bottom:408.495875px;}
.y56{bottom:408.496325px;}
.y171{bottom:413.251200px;}
.yf4{bottom:417.571200px;}
.y16b{bottom:421.485435px;}
.y25{bottom:425.805438px;}
.y55{bottom:425.805888px;}
.y92{bottom:431.251200px;}
.y16a{bottom:438.765449px;}
.yeb{bottom:439.891200px;}
.y24{bottom:443.085452px;}
.y54{bottom:443.085902px;}
.y169{bottom:456.045463px;}
.y94{bottom:458.654400px;}
.y23{bottom:460.365466px;}
.y53{bottom:460.365916px;}
.yed{bottom:462.254400px;}
.y168{bottom:473.370476px;}
.y22{bottom:477.690480px;}
.y52{bottom:477.690930px;}
.ye1{bottom:479.850482px;}
.y8b{bottom:481.694400px;}
.ye4{bottom:485.294400px;}
.y167{bottom:490.650490px;}
.y21{bottom:494.970494px;}
.y51{bottom:494.970944px;}
.ye0{bottom:497.130495px;}
.y8d{bottom:504.766800px;}
.ye6{bottom:507.646800px;}
.y166{bottom:507.930504px;}
.y20{bottom:512.250508px;}
.y50{bottom:512.250958px;}
.ydf{bottom:514.410509px;}
.y165{bottom:525.240068px;}
.y84{bottom:527.086800px;}
.y1f{bottom:529.560071px;}
.y4f{bottom:529.560521px;}
.yde{bottom:531.720073px;}
.ye2{bottom:533.566800px;}
.y164{bottom:542.520082px;}
.y1e{bottom:546.840085px;}
.y4e{bottom:546.840535px;}
.ydd{bottom:549.000087px;}
.y86{bottom:549.406800px;}
.y163{bottom:559.800096px;}
.y1d{bottom:564.120099px;}
.y4d{bottom:564.120549px;}
.ydc{bottom:566.280101px;}
.y7d{bottom:571.770000px;}
.y162{bottom:577.111009px;}
.y1c{bottom:581.431013px;}
.y4c{bottom:581.431463px;}
.ydb{bottom:583.591015px;}
.y161{bottom:594.391023px;}
.y7f{bottom:594.810000px;}
.y1b{bottom:598.711027px;}
.y4b{bottom:598.711477px;}
.yda{bottom:600.871028px;}
.y160{bottom:611.671037px;}
.y1a{bottom:615.991041px;}
.y4a{bottom:615.991491px;}
.y76{bottom:617.158800px;}
.yd9{bottom:618.151042px;}
.y15f{bottom:628.951051px;}
.y19{bottom:633.316054px;}
.y49{bottom:633.316504px;}
.y78{bottom:639.478800px;}
.y15e{bottom:645.556064px;}
.y18{bottom:650.596068px;}
.y48{bottom:650.596518px;}
.y6f{bottom:661.831200px;}
.y15d{bottom:662.836078px;}
.y17{bottom:667.876082px;}
.y47{bottom:667.876532px;}
.y15c{bottom:680.116092px;}
.y71{bottom:684.871200px;}
.y16{bottom:685.156096px;}
.y46{bottom:685.156546px;}
.y138{bottom:701.791200px;}
.y15{bottom:702.465660px;}
.y45{bottom:702.466110px;}
.y68{bottom:707.191200px;}
.yd2{bottom:718.034400px;}
.y14{bottom:719.745674px;}
.y44{bottom:719.746124px;}
.y6a{bottom:729.554400px;}
.y13{bottom:737.025687px;}
.y43{bottom:737.026137px;}
.yd4{bottom:743.954400px;}
.y12{bottom:753.630701px;}
.y42{bottom:753.631151px;}
.y66{bottom:755.474400px;}
.ycb{bottom:766.274400px;}
.y11{bottom:770.910715px;}
.y41{bottom:770.911165px;}
.y15a{bottom:780.480000px;}
.y147{bottom:780.706800px;}
.y10{bottom:788.190728px;}
.y40{bottom:788.191178px;}
.ycd{bottom:790.066800px;}
.yf{bottom:805.500292px;}
.y3f{bottom:805.500742px;}
.y194{bottom:805.501192px;}
.y156{bottom:805.680000px;}
.y153{bottom:805.906800px;}
.yc4{bottom:813.826800px;}
.ye{bottom:822.780306px;}
.y3e{bottom:822.780756px;}
.y151{bottom:830.880000px;}
.y14e{bottom:831.150000px;}
.yc6{bottom:836.190000px;}
.yd{bottom:840.060320px;}
.y3d{bottom:840.060770px;}
.y134{bottom:840.240000px;}
.y14c{bottom:855.360000px;}
.y149{bottom:855.630000px;}
.yc{bottom:857.371234px;}
.y3c{bottom:857.371684px;}
.ybd{bottom:859.950000px;}
.yb{bottom:874.651247px;}
.y3b{bottom:874.651697px;}
.y144{bottom:881.280000px;}
.y13f{bottom:881.578800px;}
.ybf{bottom:883.738800px;}
.ya{bottom:891.931261px;}
.y3a{bottom:891.931711px;}
.yb6{bottom:907.498800px;}
.y9{bottom:909.256275px;}
.y39{bottom:909.256725px;}
.y141{bottom:918.298800px;}
.y8{bottom:926.536739px;}
.yb8{bottom:930.538800px;}
.y7{bottom:943.816753px;}
.yaf{bottom:953.611200px;}
.y6{bottom:961.126317px;}
.yb1{bottom:976.651200px;}
.y5{bottom:978.406330px;}
.y4{bottom:995.686344px;}
.ya8{bottom:1000.454400px;}
.yaa{bottom:1022.774400px;}
.y2{bottom:1024.531367px;}
.ya6{bottom:1048.726800px;}
.ha{height:22.320000px;}
.h8{height:22.355172px;}
.hd{height:22.356576px;}
.h25{height:22.680000px;}
.hb{height:23.040000px;}
.h10{height:23.075172px;}
.h16{height:23.076576px;}
.h24{height:23.400000px;}
.h7{height:23.760000px;}
.h13{height:23.795172px;}
.h18{height:23.796576px;}
.h26{height:24.120000px;}
.h1b{height:24.516576px;}
.h12{height:25.200000px;}
.h5{height:25.235172px;}
.h27{height:28.198116px;}
.h28{height:28.839952px;}
.h2d{height:28.897623px;}
.h20{height:34.560000px;}
.h22{height:34.595172px;}
.h31{height:34.596576px;}
.h36{height:34.920000px;}
.h3{height:44.029475px;}
.h37{height:44.031275px;}
.h4{height:44.271395px;}
.h1c{height:44.640000px;}
.h1d{height:44.675280px;}
.hc{height:44.676720px;}
.h9{height:45.360000px;}
.hf{height:45.395280px;}
.he{height:45.396720px;}
.h6{height:46.115280px;}
.h15{height:46.116720px;}
.h14{height:46.835280px;}
.h19{height:47.555280px;}
.h17{height:47.556720px;}
.h1a{height:48.240000px;}
.h1e{height:48.276720px;}
.h2b{height:49.467499px;}
.h2e{height:49.495021px;}
.h2{height:50.040040px;}
.h11{height:50.435280px;}
.h2c{height:50.474520px;}
.h2f{height:52.323128px;}
.h2a{height:52.479465px;}
.h33{height:60.551640px;}
.h34{height:61.200000px;}
.h29{height:67.377153px;}
.h1f{height:71.315280px;}
.h30{height:71.316720px;}
.h21{height:71.640000px;}
.h32{height:98.711640px;}
.h23{height:98.713080px;}
.h35{height:121.751640px;}
.h1{height:1093.680000px;}
.h0{height:1263.000000px;}
.w12{width:14.400000px;}
.w25{width:18.036576px;}
.w1d{width:36.756720px;}
.w22{width:38.520000px;}
.w1b{width:41.400000px;}
.w23{width:46.116720px;}
.w21{width:46.836720px;}
.wf{width:47.160000px;}
.w27{width:47.556720px;}
.w15{width:47.880000px;}
.w10{width:48.311640px;}
.w1c{width:49.031640px;}
.wb{width:53.316720px;}
.we{width:60.551640px;}
.w14{width:61.271640px;}
.w1a{width:62.711640px;}
.w1e{width:63.431640px;}
.w7{width:63.433080px;}
.w3{width:64.153080px;}
.w11{width:69.875280px;}
.w4{width:71.351640px;}
.wa{width:82.153080px;}
.w24{width:84.311640px;}
.w2{width:86.471640px;}
.w8{width:87.191640px;}
.w13{width:87.193080px;}
.w5{width:97.271640px;}
.wc{width:101.593080px;}
.w26{width:103.068360px;}
.w17{width:105.076440px;}
.wd{width:118.908360px;}
.w19{width:119.628360px;}
.w1f{width:121.104720px;}
.w6{width:123.263280px;}
.w18{width:123.948360px;}
.w9{width:123.983280px;}
.w20{width:130.428360px;}
.w16{width:340.870680px;}
.w1{width:774.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x5{left:5.040209px;}
.x1b{left:7.199140px;}
.xb{left:8.686069px;}
.x1f{left:10.770488px;}
.x25{left:13.650490px;}
.x33{left:15.149147px;}
.x32{left:16.589844px;}
.x22{left:17.999488px;}
.x20{left:19.469150px;}
.x15{left:20.880358px;}
.x36{left:25.920366px;}
.x1d{left:27.389852px;}
.x8{left:30.269151px;}
.x16{left:31.680366px;}
.x24{left:35.279502px;}
.xe{left:38.204515px;}
.x3b{left:41.084515px;}
.xc{left:49.709166px;}
.x12{left:54.764528px;}
.x1{left:59.220000px;}
.x10{left:62.713034px;}
.xd{left:64.876114px;}
.xf{left:72.796120px;}
.x2d{left:78.291047px;}
.x2c{left:83.212947px;}
.x2{left:85.031815px;}
.x11{left:89.387633px;}
.x2b{left:93.643955px;}
.x4{left:256.680000px;}
.x29{left:268.588510px;}
.x28{left:282.639021px;}
.x27{left:293.110686px;}
.x2e{left:294.149520px;}
.x34{left:309.269520px;}
.x19{left:315.794520px;}
.x3a{left:327.314520px;}
.x23{left:330.194520px;}
.x26{left:331.833060px;}
.x6{left:343.154520px;}
.x13{left:344.594520px;}
.x3{left:374.760047px;}
.x7{left:408.031200px;}
.x1a{left:418.111200px;}
.x14{left:426.060000px;}
.x35{left:431.100000px;}
.x21{left:467.132400px;}
.x31{left:468.572400px;}
.x2a{left:474.930000px;}
.x39{left:477.212400px;}
.x9{left:480.092400px;}
.x18{left:534.751675px;}
.x1c{left:537.735600px;}
.x2f{left:539.175600px;}
.x37{left:562.244400px;}
.xa{left:577.364400px;}
.x1e{left:599.040000px;}
.x30{left:602.640000px;}
.x38{left:609.840000px;}
.x17{left:639.976759px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.919693pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.414720pt;}
.ls2{letter-spacing:0.829441pt;}
.ls8{letter-spacing:0.831990pt;}
.ls7{letter-spacing:0.934454pt;}
.ls5{letter-spacing:0.939467pt;}
.ls3{letter-spacing:0.989441pt;}
.ls4{letter-spacing:8.254727pt;}
.ls6{letter-spacing:13.214731pt;}
.ws8{word-spacing:-49.249722pt;}
.ws4{word-spacing:-49.222336pt;}
.ws5{word-spacing:-40.272012pt;}
.ws7{word-spacing:-37.981790pt;}
.ws6{word-spacing:-37.960670pt;}
.ws0{word-spacing:-14.945292pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:325.816036pt;}
.ws3{word-spacing:603.720089pt;}
._1e{margin-left:-540.973245pt;}
._20{margin-left:-513.606361pt;}
._1d{margin-left:-495.771227pt;}
._23{margin-left:-484.123173pt;}
._19{margin-left:-471.694911pt;}
._1b{margin-left:-334.266668pt;}
._1c{margin-left:-328.613129pt;}
._1f{margin-left:-273.738025pt;}
._22{margin-left:-258.172592pt;}
._18{margin-left:-240.780593pt;}
._26{margin-left:-186.043236pt;}
._21{margin-left:-161.539593pt;}
._24{margin-left:-153.768775pt;}
._1a{margin-left:-132.599173pt;}
._25{margin-left:-83.987867pt;}
._e{margin-left:-4.179501pt;}
._2{margin-left:-2.956802pt;}
._1{margin-left:-1.735734pt;}
._0{width:1.663911pt;}
._6{width:2.656311pt;}
._5{width:3.552874pt;}
._7{width:5.032551pt;}
._8{width:6.196904pt;}
._11{width:7.191270pt;}
._d{width:8.183628pt;}
._b{width:9.892138pt;}
._c{width:11.041152pt;}
._9{width:12.753319pt;}
._a{width:13.980358pt;}
._3{width:16.130583pt;}
._12{width:17.636063pt;}
._4{width:18.632699pt;}
._14{width:20.234387pt;}
._13{width:21.250560pt;}
._f{width:23.311451pt;}
._16{width:24.221162pt;}
._10{width:25.229283pt;}
._27{width:26.478187pt;}
._29{width:38.633187pt;}
._2a{width:40.616781pt;}
._28{width:42.018419pt;}
._2b{width:43.123106pt;}
._17{width:579.452624pt;}
._15{width:753.812571pt;}
.fs2{font-size:36.885630pt;}
.fs5{font-size:36.959390pt;}
.fs1{font-size:53.760043pt;}
.fs3{font-size:63.267784pt;}
.fs6{font-size:63.302984pt;}
.fs0{font-size:64.000051pt;}
.fs7{font-size:66.920068pt;}
.fs4{font-size:67.120019pt;}
.y0{bottom:0.000000pt;}
.y139{bottom:3.524769pt;}
.ye3{bottom:3.838782pt;}
.ya7{bottom:3.839149pt;}
.y173{bottom:3.839230pt;}
.y18a{bottom:3.840190pt;}
.y118{bottom:3.840225pt;}
.y180{bottom:3.840634pt;}
.y11b{bottom:3.840678pt;}
.y143{bottom:3.840923pt;}
.y67{bottom:3.841074pt;}
.y140{bottom:3.841697pt;}
.y170{bottom:3.868012pt;}
.y136{bottom:3.916681pt;}
.y11d{bottom:4.080225pt;}
.y145{bottom:4.107297pt;}
.y175{bottom:4.133612pt;}
.y8f{bottom:5.758764pt;}
.yca{bottom:5.758983pt;}
.yf8{bottom:5.759219pt;}
.yf6{bottom:5.759235pt;}
.y73{bottom:5.759425pt;}
.y112{bottom:5.760173pt;}
.y106{bottom:5.760222pt;}
.y104{bottom:5.760238pt;}
.y81{bottom:5.760428pt;}
.y150{bottom:5.760596pt;}
.yea{bottom:5.760883pt;}
.y152{bottom:6.000596pt;}
.ye8{bottom:6.398766pt;}
.y8a{bottom:6.398780pt;}
.y159{bottom:6.398960pt;}
.ycf{bottom:6.398967pt;}
.y155{bottom:6.398978pt;}
.y75{bottom:6.399409pt;}
.y6e{bottom:6.399441pt;}
.y12f{bottom:6.399568pt;}
.yb5{bottom:6.399617pt;}
.y12c{bottom:6.400173pt;}
.y10d{bottom:6.400190pt;}
.y128{bottom:6.400191pt;}
.y10b{bottom:6.400206pt;}
.y123{bottom:6.400209pt;}
.y185{bottom:6.400219pt;}
.y83{bottom:6.400412pt;}
.yc8{bottom:6.400600pt;}
.yc3{bottom:6.400617pt;}
.yff{bottom:6.400681pt;}
.y96{bottom:6.400865pt;}
.yef{bottom:6.400867pt;}
.y91{bottom:6.400881pt;}
.y114{bottom:6.400902pt;}
.yd8{bottom:6.401049pt;}
.yd6{bottom:6.401067pt;}
.yae{bottom:6.401250pt;}
.yfd{bottom:6.401336pt;}
.y7c{bottom:6.401511pt;}
.y7a{bottom:6.401527pt;}
.yc1{bottom:6.401700pt;}
.ybc{bottom:6.401717pt;}
.yba{bottom:6.428400pt;}
.y88{bottom:6.438796pt;}
.yf1{bottom:6.439251pt;}
.y131{bottom:6.569488pt;}
.y12e{bottom:6.600173pt;}
.y12a{bottom:6.600191pt;}
.y15b{bottom:6.600560pt;}
.y157{bottom:6.600578pt;}
.y125{bottom:6.640209pt;}
.y187{bottom:6.640219pt;}
.y98{bottom:7.039246pt;}
.yb3{bottom:7.039633pt;}
.y14b{bottom:7.040614pt;}
.y6c{bottom:7.041058pt;}
.yac{bottom:7.041266pt;}
.y17a{bottom:7.041329pt;}
.yd1{bottom:7.067751pt;}
.y14d{bottom:7.280614pt;}
.y17c{bottom:7.306929pt;}
.y13c{bottom:7.498105pt;}
.y137{bottom:7.896604pt;}
.y8e{bottom:8.318766pt;}
.y89{bottom:8.318781pt;}
.yc9{bottom:8.318985pt;}
.yf7{bottom:8.319221pt;}
.yf5{bottom:8.319237pt;}
.y72{bottom:8.319427pt;}
.y111{bottom:8.320176pt;}
.y10c{bottom:8.320191pt;}
.y184{bottom:8.320220pt;}
.y105{bottom:8.320224pt;}
.y80{bottom:8.320430pt;}
.y14f{bottom:8.320598pt;}
.yfe{bottom:8.320682pt;}
.ye9{bottom:8.320885pt;}
.yd5{bottom:8.321069pt;}
.yad{bottom:8.321251pt;}
.y7b{bottom:8.321512pt;}
.y79{bottom:8.321528pt;}
.y103{bottom:8.346906pt;}
.y87{bottom:8.358797pt;}
.yf0{bottom:8.359253pt;}
.y6d{bottom:8.359443pt;}
.y158{bottom:8.958962pt;}
.y154{bottom:8.958980pt;}
.y74{bottom:8.959411pt;}
.yb4{bottom:8.959619pt;}
.y127{bottom:8.960193pt;}
.y10a{bottom:8.960208pt;}
.y122{bottom:8.960211pt;}
.y82{bottom:8.960414pt;}
.y95{bottom:8.960867pt;}
.yee{bottom:8.960869pt;}
.y90{bottom:8.960883pt;}
.yfc{bottom:8.961338pt;}
.ybb{bottom:8.961719pt;}
.yb9{bottom:8.988402pt;}
.ye7{bottom:9.598769pt;}
.yce{bottom:9.598970pt;}
.y113{bottom:9.599571pt;}
.yb2{bottom:9.599636pt;}
.yc7{bottom:9.600602pt;}
.y14a{bottom:9.600616pt;}
.yc2{bottom:9.600619pt;}
.yd7{bottom:9.601052pt;}
.y6b{bottom:9.601060pt;}
.yab{bottom:9.601268pt;}
.y179{bottom:9.601331pt;}
.yc0{bottom:9.601703pt;}
.yd0{bottom:9.627753pt;}
.y97{bottom:10.879249pt;}
.y189{bottom:11.520197pt;}
.y17f{bottom:11.546907pt;}
.y18c{bottom:11.720197pt;}
.y182{bottom:11.786907pt;}
.y135{bottom:14.977943pt;}
.y172{bottom:19.199243pt;}
.y11e{bottom:19.200238pt;}
.y11a{bottom:19.200690pt;}
.y146{bottom:19.201709pt;}
.y17e{bottom:19.226913pt;}
.y142{bottom:19.228402pt;}
.y188{bottom:19.240203pt;}
.y13e{bottom:19.708781pt;}
.y13a{bottom:25.604786pt;}
.y13b{bottom:26.823537pt;}
.yf3{bottom:28.159237pt;}
.y77{bottom:28.161528pt;}
.y101{bottom:28.186906pt;}
.y85{bottom:28.198797pt;}
.y70{bottom:28.799427pt;}
.y7e{bottom:28.800430pt;}
.yfa{bottom:28.800698pt;}
.y8c{bottom:28.827566pt;}
.yec{bottom:28.839269pt;}
.y108{bottom:28.840208pt;}
.ya9{bottom:29.441268pt;}
.ye5{bottom:29.467569pt;}
.yb7{bottom:29.468402pt;}
.yc5{bottom:29.479002pt;}
.y69{bottom:29.479460pt;}
.y13d{bottom:29.579324pt;}
.yb0{bottom:30.079636pt;}
.ybe{bottom:30.747303pt;}
.ycc{bottom:30.747770pt;}
.yd3{bottom:31.361069pt;}
.y10f{bottom:31.390256pt;}
.y93{bottom:33.319267pt;}
.y3{bottom:66.592540pt;}
.y1{bottom:75.306240pt;}
.y148{bottom:76.199016pt;}
.y120{bottom:76.230291pt;}
.y133{bottom:83.263220pt;}
.y116{bottom:83.904554pt;}
.y38{bottom:87.103490pt;}
.y193{bottom:87.103890pt;}
.y177{bottom:96.706931pt;}
.y132{bottom:98.623232pt;}
.y190{bottom:99.263900pt;}
.y115{bottom:99.264566pt;}
.y37{bottom:102.463502pt;}
.y192{bottom:102.463902pt;}
.ya5{bottom:110.783509pt;}
.y18f{bottom:114.623912pt;}
.y36{bottom:117.823515pt;}
.y191{bottom:117.823915pt;}
.ya4{bottom:126.176055pt;}
.y18e{bottom:130.016458pt;}
.y35{bottom:133.216060pt;}
.y65{bottom:133.216460pt;}
.ya3{bottom:140.893533pt;}
.y18d{bottom:145.373937pt;}
.y34{bottom:148.573539pt;}
.y64{bottom:148.573939pt;}
.ya2{bottom:156.253545pt;}
.y33{bottom:163.933551pt;}
.y63{bottom:163.933951pt;}
.ya1{bottom:171.613558pt;}
.y32{bottom:179.333564pt;}
.y62{bottom:179.333964pt;}
.ya0{bottom:187.013570pt;}
.y130{bottom:187.200000pt;}
.y11f{bottom:187.369920pt;}
.y10e{bottom:188.009920pt;}
.y31{bottom:194.693576pt;}
.y61{bottom:194.693976pt;}
.y9f{bottom:202.373582pt;}
.y30{bottom:210.053588pt;}
.y60{bottom:210.053988pt;}
.y12d{bottom:210.240000pt;}
.y12b{bottom:210.440000pt;}
.y110{bottom:211.080000pt;}
.y9e{bottom:217.733594pt;}
.y2f{bottom:225.439867pt;}
.y5f{bottom:225.440267pt;}
.y107{bottom:230.920000pt;}
.y129{bottom:232.000000pt;}
.y126{bottom:232.200000pt;}
.y9d{bottom:233.119873pt;}
.y18b{bottom:233.920000pt;}
.y176{bottom:234.120000pt;}
.y2e{bottom:240.799880pt;}
.y5e{bottom:240.800280pt;}
.y9c{bottom:248.479886pt;}
.y109{bottom:250.800000pt;}
.y124{bottom:254.400000pt;}
.y121{bottom:254.640000pt;}
.y2d{bottom:256.159892pt;}
.y5d{bottom:256.160292pt;}
.y9b{bottom:263.839898pt;}
.y186{bottom:266.560000pt;}
.y183{bottom:266.800000pt;}
.y100{bottom:271.280000pt;}
.y2c{bottom:271.547371pt;}
.y5c{bottom:271.547771pt;}
.y11c{bottom:277.440000pt;}
.y117{bottom:277.680000pt;}
.y9a{bottom:279.227377pt;}
.y2b{bottom:286.907383pt;}
.y5b{bottom:286.907783pt;}
.y181{bottom:288.320000pt;}
.y17d{bottom:288.560000pt;}
.y102{bottom:291.120000pt;}
.y99{bottom:294.587389pt;}
.y2a{bottom:302.267395pt;}
.y5a{bottom:302.267795pt;}
.y119{bottom:310.346240pt;}
.yf9{bottom:310.986240pt;}
.y29{bottom:316.987407pt;}
.y59{bottom:316.987807pt;}
.y17b{bottom:320.960000pt;}
.y178{bottom:321.225600pt;}
.y16e{bottom:328.547416pt;}
.yfb{bottom:330.825600pt;}
.y28{bottom:332.387419pt;}
.y58{bottom:332.387819pt;}
.y16d{bottom:343.907429pt;}
.y174{bottom:344.000000pt;}
.y16f{bottom:344.265600pt;}
.y27{bottom:347.747432pt;}
.y57{bottom:347.747832pt;}
.yf2{bottom:351.334400pt;}
.y16c{bottom:359.267441pt;}
.y26{bottom:363.107444pt;}
.y56{bottom:363.107844pt;}
.y171{bottom:367.334400pt;}
.yf4{bottom:371.174400pt;}
.y16b{bottom:374.653720pt;}
.y25{bottom:378.493723pt;}
.y55{bottom:378.494123pt;}
.y92{bottom:383.334400pt;}
.y16a{bottom:390.013732pt;}
.yeb{bottom:391.014400pt;}
.y24{bottom:393.853735pt;}
.y54{bottom:393.854135pt;}
.y169{bottom:405.373745pt;}
.y94{bottom:407.692800pt;}
.y23{bottom:409.213748pt;}
.y53{bottom:409.214148pt;}
.yed{bottom:410.892800pt;}
.y168{bottom:420.773757pt;}
.y22{bottom:424.613760pt;}
.y52{bottom:424.614160pt;}
.ye1{bottom:426.533761pt;}
.y8b{bottom:428.172800pt;}
.ye4{bottom:431.372800pt;}
.y167{bottom:436.133769pt;}
.y21{bottom:439.973772pt;}
.y51{bottom:439.974172pt;}
.ye0{bottom:441.893774pt;}
.y8d{bottom:448.681600pt;}
.ye6{bottom:451.241600pt;}
.y166{bottom:451.493781pt;}
.y20{bottom:455.333785pt;}
.y50{bottom:455.334185pt;}
.ydf{bottom:457.253786pt;}
.y165{bottom:466.880060pt;}
.y84{bottom:468.521600pt;}
.y1f{bottom:470.720063pt;}
.y4f{bottom:470.720463pt;}
.yde{bottom:472.640065pt;}
.ye2{bottom:474.281600pt;}
.y164{bottom:482.240073pt;}
.y1e{bottom:486.080076pt;}
.y4e{bottom:486.080476pt;}
.ydd{bottom:488.000077pt;}
.y86{bottom:488.361600pt;}
.y163{bottom:497.600085pt;}
.y1d{bottom:501.440088pt;}
.y4d{bottom:501.440488pt;}
.ydc{bottom:503.360090pt;}
.y7d{bottom:508.240000pt;}
.y162{bottom:512.987564pt;}
.y1c{bottom:516.827567pt;}
.y4c{bottom:516.827967pt;}
.ydb{bottom:518.747569pt;}
.y161{bottom:528.347576pt;}
.y7f{bottom:528.720000pt;}
.y1b{bottom:532.187579pt;}
.y4b{bottom:532.187979pt;}
.yda{bottom:534.107581pt;}
.y160{bottom:543.707589pt;}
.y1a{bottom:547.547592pt;}
.y4a{bottom:547.547992pt;}
.y76{bottom:548.585600pt;}
.yd9{bottom:549.467593pt;}
.y15f{bottom:559.067601pt;}
.y19{bottom:562.947604pt;}
.y49{bottom:562.948004pt;}
.y78{bottom:568.425600pt;}
.y15e{bottom:573.827613pt;}
.y18{bottom:578.307616pt;}
.y48{bottom:578.308016pt;}
.y6f{bottom:588.294400pt;}
.y15d{bottom:589.187625pt;}
.y17{bottom:593.667629pt;}
.y47{bottom:593.668029pt;}
.y15c{bottom:604.547637pt;}
.y71{bottom:608.774400pt;}
.y16{bottom:609.027641pt;}
.y46{bottom:609.028041pt;}
.y138{bottom:623.814400pt;}
.y15{bottom:624.413920pt;}
.y45{bottom:624.414320pt;}
.y68{bottom:628.614400pt;}
.yd2{bottom:638.252800pt;}
.y14{bottom:639.773932pt;}
.y44{bottom:639.774332pt;}
.y6a{bottom:648.492800pt;}
.y13{bottom:655.133944pt;}
.y43{bottom:655.134344pt;}
.yd4{bottom:661.292800pt;}
.y12{bottom:669.893956pt;}
.y42{bottom:669.894356pt;}
.y66{bottom:671.532800pt;}
.ycb{bottom:681.132800pt;}
.y11{bottom:685.253968pt;}
.y41{bottom:685.254368pt;}
.y15a{bottom:693.760000pt;}
.y147{bottom:693.961600pt;}
.y10{bottom:700.613981pt;}
.y40{bottom:700.614381pt;}
.ycd{bottom:702.281600pt;}
.yf{bottom:716.000260pt;}
.y3f{bottom:716.000660pt;}
.y194{bottom:716.001060pt;}
.y156{bottom:716.160000pt;}
.y153{bottom:716.361600pt;}
.yc4{bottom:723.401600pt;}
.ye{bottom:731.360272pt;}
.y3e{bottom:731.360672pt;}
.y151{bottom:738.560000pt;}
.y14e{bottom:738.800000pt;}
.yc6{bottom:743.280000pt;}
.yd{bottom:746.720284pt;}
.y3d{bottom:746.720684pt;}
.y134{bottom:746.880000pt;}
.y14c{bottom:760.320000pt;}
.y149{bottom:760.560000pt;}
.yc{bottom:762.107763pt;}
.y3c{bottom:762.108163pt;}
.ybd{bottom:764.400000pt;}
.yb{bottom:777.467776pt;}
.y3b{bottom:777.468176pt;}
.y144{bottom:783.360000pt;}
.y13f{bottom:783.625600pt;}
.ybf{bottom:785.545600pt;}
.ya{bottom:792.827788pt;}
.y3a{bottom:792.828188pt;}
.yb6{bottom:806.665600pt;}
.y9{bottom:808.227800pt;}
.y39{bottom:808.228200pt;}
.y141{bottom:816.265600pt;}
.y8{bottom:823.588212pt;}
.yb8{bottom:827.145600pt;}
.y7{bottom:838.948225pt;}
.yaf{bottom:847.654400pt;}
.y6{bottom:854.334504pt;}
.yb1{bottom:868.134400pt;}
.y5{bottom:869.694516pt;}
.y4{bottom:885.054528pt;}
.ya8{bottom:889.292800pt;}
.yaa{bottom:909.132800pt;}
.y2{bottom:910.694549pt;}
.ya6{bottom:932.201600pt;}
.ha{height:19.840000pt;}
.h8{height:19.871264pt;}
.hd{height:19.872512pt;}
.h25{height:20.160000pt;}
.hb{height:20.480000pt;}
.h10{height:20.511264pt;}
.h16{height:20.512512pt;}
.h24{height:20.800000pt;}
.h7{height:21.120000pt;}
.h13{height:21.151264pt;}
.h18{height:21.152512pt;}
.h26{height:21.440000pt;}
.h1b{height:21.792512pt;}
.h12{height:22.400000pt;}
.h5{height:22.431264pt;}
.h27{height:25.064992pt;}
.h28{height:25.635513pt;}
.h2d{height:25.686776pt;}
.h20{height:30.720000pt;}
.h22{height:30.751264pt;}
.h31{height:30.752512pt;}
.h36{height:31.040000pt;}
.h3{height:39.137311pt;}
.h37{height:39.138911pt;}
.h4{height:39.352351pt;}
.h1c{height:39.680000pt;}
.h1d{height:39.711360pt;}
.hc{height:39.712640pt;}
.h9{height:40.320000pt;}
.hf{height:40.351360pt;}
.he{height:40.352640pt;}
.h6{height:40.991360pt;}
.h15{height:40.992640pt;}
.h14{height:41.631360pt;}
.h19{height:42.271360pt;}
.h17{height:42.272640pt;}
.h1a{height:42.880000pt;}
.h1e{height:42.912640pt;}
.h2b{height:43.971110pt;}
.h2e{height:43.995574pt;}
.h2{height:44.480036pt;}
.h11{height:44.831360pt;}
.h2c{height:44.866240pt;}
.h2f{height:46.509447pt;}
.h2a{height:46.648413pt;}
.h33{height:53.823680pt;}
.h34{height:54.400000pt;}
.h29{height:59.890803pt;}
.h1f{height:63.391360pt;}
.h30{height:63.392640pt;}
.h21{height:63.680000pt;}
.h32{height:87.743680pt;}
.h23{height:87.744960pt;}
.h35{height:108.223680pt;}
.h1{height:972.160000pt;}
.h0{height:1122.666667pt;}
.w12{width:12.800000pt;}
.w25{width:16.032512pt;}
.w1d{width:32.672640pt;}
.w22{width:34.240000pt;}
.w1b{width:36.800000pt;}
.w23{width:40.992640pt;}
.w21{width:41.632640pt;}
.wf{width:41.920000pt;}
.w27{width:42.272640pt;}
.w15{width:42.560000pt;}
.w10{width:42.943680pt;}
.w1c{width:43.583680pt;}
.wb{width:47.392640pt;}
.we{width:53.823680pt;}
.w14{width:54.463680pt;}
.w1a{width:55.743680pt;}
.w1e{width:56.383680pt;}
.w7{width:56.384960pt;}
.w3{width:57.024960pt;}
.w11{width:62.111360pt;}
.w4{width:63.423680pt;}
.wa{width:73.024960pt;}
.w24{width:74.943680pt;}
.w2{width:76.863680pt;}
.w8{width:77.503680pt;}
.w13{width:77.504960pt;}
.w5{width:86.463680pt;}
.wc{width:90.304960pt;}
.w26{width:91.616320pt;}
.w17{width:93.401280pt;}
.wd{width:105.696320pt;}
.w19{width:106.336320pt;}
.w1f{width:107.648640pt;}
.w6{width:109.567360pt;}
.w18{width:110.176320pt;}
.w9{width:110.207360pt;}
.w20{width:115.936320pt;}
.w16{width:302.996160pt;}
.w1{width:688.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x5{left:4.480186pt;}
.x1b{left:6.399236pt;}
.xb{left:7.720950pt;}
.x1f{left:9.573767pt;}
.x25{left:12.133769pt;}
.x33{left:13.465909pt;}
.x32{left:14.746528pt;}
.x22{left:15.999545pt;}
.x20{left:17.305911pt;}
.x15{left:18.560318pt;}
.x36{left:23.040325pt;}
.x1d{left:24.346535pt;}
.x8{left:26.905912pt;}
.x16{left:28.160326pt;}
.x24{left:31.359557pt;}
.xe{left:33.959569pt;}
.x3b{left:36.519569pt;}
.xc{left:44.185926pt;}
.x12{left:48.679580pt;}
.x1{left:52.640000pt;}
.x10{left:55.744919pt;}
.xd{left:57.667657pt;}
.xf{left:64.707662pt;}
.x2d{left:69.592042pt;}
.x2c{left:73.967064pt;}
.x2{left:75.583836pt;}
.x11{left:79.455674pt;}
.x2b{left:83.239071pt;}
.x4{left:228.160000pt;}
.x29{left:238.745342pt;}
.x28{left:251.234685pt;}
.x27{left:260.542832pt;}
.x2e{left:261.466240pt;}
.x34{left:274.906240pt;}
.x19{left:280.706240pt;}
.x3a{left:290.946240pt;}
.x23{left:293.506240pt;}
.x26{left:294.962720pt;}
.x6{left:305.026240pt;}
.x13{left:306.306240pt;}
.x3{left:333.120042pt;}
.x7{left:362.694400pt;}
.x1a{left:371.654400pt;}
.x14{left:378.720000pt;}
.x35{left:383.200000pt;}
.x21{left:415.228800pt;}
.x31{left:416.508800pt;}
.x2a{left:422.160000pt;}
.x39{left:424.188800pt;}
.x9{left:426.748800pt;}
.x18{left:475.334822pt;}
.x1c{left:477.987200pt;}
.x2f{left:479.267200pt;}
.x37{left:499.772800pt;}
.xa{left:513.212800pt;}
.x1e{left:532.480000pt;}
.x30{left:535.680000pt;}
.x38{left:542.080000pt;}
.x17{left:568.868231pt;}
}




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