
    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_ce69f40231cc590defe97c0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.955000;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_d087e42c09dc48d853683c79.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675000;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_490e429fda97d0d944ba9e7c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975586;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_35f0aacd87b0df6ea15668ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.975586;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_58a6ea1b76609ec4244e2233.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.467000;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_539f38e0ab9d981832568e52.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967773;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_23f2fb51791b9169ae86d098.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.936000;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_2502c648c52791a5d836791b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_18113f234dca2a0fb5b4902b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.522000;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
.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);}
.m4{transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.304000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:16.361400px;}
.ls2{letter-spacing:16.363650px;}
.ls3{letter-spacing:16.367400px;}
.ls1{letter-spacing:52.499421px;}
.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;}
}
.ws6{word-spacing:-32.727300px;}
.ws12{word-spacing:-16.363650px;}
.ws1f{word-spacing:-14.943900px;}
.ws3{word-spacing:-9.984520px;}
.ws4{word-spacing:-8.736441px;}
.ws15{word-spacing:-0.589091px;}
.ws1c{word-spacing:-0.261818px;}
.ws23{word-spacing:-0.035866px;}
.ws5{word-spacing:-0.033864px;}
.ws9{word-spacing:-0.024313px;}
.wsf{word-spacing:-0.005686px;}
.ws7{word-spacing:-0.004195px;}
.wsd{word-spacing:-0.002351px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:0.000311px;}
.ws21{word-spacing:1.494941px;}
.ws13{word-spacing:2.749093px;}
.ws22{word-spacing:8.930534px;}
.ws1e{word-spacing:9.982525px;}
.ws20{word-spacing:14.884124px;}
.ws8{word-spacing:16.296881px;}
.wsb{word-spacing:16.297011px;}
.ws10{word-spacing:16.297346px;}
.wse{word-spacing:16.298195px;}
.ws1b{word-spacing:16.299764px;}
.ws11{word-spacing:16.302161px;}
.ws24{word-spacing:16.302953px;}
.ws1{word-spacing:30.557363px;}
.wsc{word-spacing:34.377178px;}
.ws2{word-spacing:35.843052px;}
.ws14{word-spacing:38.196608px;}
.ws17{word-spacing:56.792002px;}
.ws19{word-spacing:70.480614px;}
.ws16{word-spacing:77.295032px;}
.ws1a{word-spacing:82.077080px;}
.ws18{word-spacing:100.547741px;}
.ws1d{word-spacing:428.269448px;}
._b{margin-left:-165.525273px;}
._a{margin-left:-140.466210px;}
._c{margin-left:-16.494559px;}
._18{margin-left:-6.886176px;}
._12{margin-left:-5.236368px;}
._14{margin-left:-4.069888px;}
._9{margin-left:-2.926625px;}
._0{margin-left:-1.807621px;}
._e{width:1.039375px;}
._3{width:2.117686px;}
._4{width:3.547123px;}
._1{width:4.658908px;}
._2{width:7.094247px;}
._7{width:8.614900px;}
._f{width:10.759650px;}
._11{width:19.096304px;}
._13{width:25.464510px;}
._8{width:27.949072px;}
._10{width:35.894192px;}
._6{width:79.944422px;}
._d{width:524.037994px;}
._17{width:665.317628px;}
._16{width:682.881386px;}
._15{width:716.468688px;}
._5{width:733.148688px;}
._19{width:749.822688px;}
.fc0{color:rgb(255,255,255);}
.fcd{color:rgb(255,0,0);}
.fc7{color:rgb(249,206,194);}
.fc9{color:rgb(96,96,96);}
.fc2{color:rgb(82,86,109);}
.fc3{color:transparent;}
.fc4{color:rgb(252,230,223);}
.fce{color:rgb(42,27,129);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(224,45,48);}
.fcc{color:rgb(245,245,245);}
.fc6{color:rgb(254,250,248);}
.fc8{color:rgb(240,81,51);}
.fca{color:rgb(215,7,81);}
.fcb{color:rgb(218,147,13);}
.fs8{font-size:19.305286px;}
.fs7{font-size:19.305289px;}
.fsd{font-size:24.313312px;}
.fsc{font-size:24.313313px;}
.fs5{font-size:25.104715px;}
.fs9{font-size:25.740275px;}
.fs6{font-size:28.691149px;}
.fsb{font-size:33.182713px;}
.fsa{font-size:33.863599px;}
.fs10{font-size:34.031880px;}
.fs4{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fse{font-size:53.798400px;}
.fsf{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.873000px;}
.y11b{bottom:13.111709px;}
.y9{bottom:20.397402px;}
.y8{bottom:20.956500px;}
.ya4{bottom:25.327500px;}
.y41{bottom:26.134353px;}
.y125{bottom:28.086000px;}
.y110{bottom:28.515000px;}
.yb9{bottom:31.309500px;}
.ye7{bottom:32.164500px;}
.y11{bottom:32.805000px;}
.y48{bottom:32.900322px;}
.y134{bottom:33.835500px;}
.y64{bottom:33.953141px;}
.y5b{bottom:34.405500px;}
.y49{bottom:34.990500px;}
.ya3{bottom:39.523500px;}
.ycf{bottom:41.676000px;}
.y130{bottom:43.975500px;}
.yb8{bottom:45.507000px;}
.y40{bottom:45.990149px;}
.y8e{bottom:46.618500px;}
.y5e{bottom:47.005500px;}
.y21{bottom:47.695366px;}
.y124{bottom:51.258000px;}
.ye6{bottom:52.488000px;}
.y10f{bottom:53.322000px;}
.ya2{bottom:53.721000px;}
.y133{bottom:54.159000px;}
.y7b{bottom:55.548000px;}
.y20{bottom:56.661451px;}
.yda{bottom:59.083500px;}
.y5a{bottom:59.212500px;}
.yb7{bottom:59.703000px;}
.y103{bottom:59.730000px;}
.yf9{bottom:62.325000px;}
.y5f{bottom:63.681000px;}
.yce{bottom:66.483000px;}
.y8d{bottom:66.942000px;}
.ya1{bottom:67.917000px;}
.y12{bottom:68.763000px;}
.y12f{bottom:69.577500px;}
.y5d{bottom:71.812500px;}
.y32{bottom:73.276376px;}
.yb6{bottom:73.900500px;}
.y63{bottom:74.824734px;}
.y10e{bottom:76.887000px;}
.ye5{bottom:77.295000px;}
.yd9{bottom:79.408500px;}
.y102{bottom:80.053500px;}
.ya0{bottom:82.114500px;}
.y31{bottom:82.242475px;}
.y59{bottom:84.019500px;}
.y132{bottom:87.675000px;}
.yb5{bottom:88.096500px;}
.ycd{bottom:89.656500px;}
.y7a{bottom:89.911500px;}
.y47{bottom:90.620116px;}
.y123{bottom:93.579000px;}
.y10{bottom:93.681000px;}
.y119{bottom:95.950500px;}
.y9f{bottom:96.310500px;}
.y5c{bottom:96.540000px;}
.y3b{bottom:97.971432px;}
.y2e{bottom:100.326693px;}
.y101{bottom:100.378500px;}
.yb4{bottom:102.294000px;}
.yd8{bottom:104.215500px;}
.y6b{bottom:104.739000px;}
.y3a{bottom:105.816869px;}
.y8c{bottom:106.776000px;}
.y1a{bottom:107.106545px;}
.y131{bottom:108.000000px;}
.y58{bottom:109.221000px;}
.y79{bottom:110.235000px;}
.y9e{bottom:110.508000px;}
.yf8{bottom:110.947500px;}
.y2d{bottom:113.545096px;}
.y10d{bottom:113.649000px;}
.y19{bottom:114.951769px;}
.ye4{bottom:115.651500px;}
.yb3{bottom:116.490000px;}
.y122{bottom:118.386000px;}
.y12e{bottom:119.506500px;}
.y7{bottom:119.617500px;}
.y118{bottom:120.757500px;}
.y6a{bottom:121.177500px;}
.y42{bottom:123.702846px;}
.yd7{bottom:124.539000px;}
.y9d{bottom:124.704000px;}
.y10c{bottom:127.845000px;}
.yf7{bottom:128.880000px;}
.y23{bottom:129.107749px;}
.y39{bottom:129.740704px;}
.y46{bottom:130.237806px;}
.yb2{bottom:130.687500px;}
.y18{bottom:130.932052px;}
.y8b{bottom:131.583000px;}
.ycc{bottom:132.442500px;}
.ye3{bottom:133.584000px;}
.y22{bottom:136.233207px;}
.y12d{bottom:137.440500px;}
.y38{bottom:137.586141px;}
.y69{bottom:137.616000px;}
.y121{bottom:138.709500px;}
.y17{bottom:138.777489px;}
.y9c{bottom:138.901500px;}
.y6{bottom:139.941000px;}
.y2c{bottom:140.621849px;}
.yf{bottom:141.969000px;}
.yb1{bottom:144.883500px;}
.yf6{bottom:146.814000px;}
.yd6{bottom:149.347500px;}
.ye2{bottom:151.516500px;}
.y25{bottom:151.645297px;}
.y100{bottom:151.776000px;}
.y3e{bottom:152.942206px;}
.y9b{bottom:153.097500px;}
.y1d{bottom:153.526767px;}
.y2a{bottom:154.872766px;}
.y10b{bottom:155.491500px;}
.y45{bottom:155.852438px;}
.y78{bottom:156.889500px;}
.y3f{bottom:157.182607px;}
.ycb{bottom:157.249500px;}
.y12c{bottom:158.361000px;}
.y26{bottom:158.505407px;}
.yb0{bottom:159.081000px;}
.y8a{bottom:159.378000px;}
.y5{bottom:160.266000px;}
.y3d{bottom:161.908290px;}
.y2b{bottom:161.998225px;}
.y1c{bottom:162.492851px;}
.y120{bottom:163.516500px;}
.yf5{bottom:164.746500px;}
.y117{bottom:166.555500px;}
.y9a{bottom:167.295000px;}
.y68{bottom:167.503500px;}
.y62{bottom:169.336136px;}
.y3c{bottom:170.874375px;}
.y1b{bottom:171.458935px;}
.yff{bottom:172.101000px;}
.yaf{bottom:173.277000px;}
.y24{bottom:174.308697px;}
.y77{bottom:177.213000px;}
.y44{bottom:179.191510px;}
.y27{bottom:179.908828px;}
.y89{bottom:180.300000px;}
.y16{bottom:180.759725px;}
.y12b{bottom:180.777000px;}
.y99{bottom:181.491000px;}
.yca{bottom:182.056500px;}
.yf4{bottom:182.679000px;}
.ye1{bottom:182.899500px;}
.y116{bottom:182.994000px;}
.y11f{bottom:183.840000px;}
.y28{bottom:185.165760px;}
.yae{bottom:187.474500px;}
.y15{bottom:188.605149px;}
.ye{bottom:190.257000px;}
.yfe{bottom:192.424500px;}
.y37{bottom:193.279262px;}
.y98{bottom:195.688500px;}
.y10a{bottom:196.242000px;}
.yd5{bottom:197.010000px;}
.y4{bottom:199.254000px;}
.y115{bottom:199.432500px;}
.ye0{bottom:200.832000px;}
.y36{bottom:201.124674px;}
.y43{bottom:201.534628px;}
.yad{bottom:201.670500px;}
.y76{bottom:202.414500px;}
.y88{bottom:202.716000px;}
.yc9{bottom:206.863500px;}
.y14{bottom:207.672665px;}
.y12a{bottom:208.573500px;}
.y11e{bottom:208.647000px;}
.y61{bottom:208.720665px;}
.y29{bottom:209.535615px;}
.y97{bottom:209.884500px;}
.y109{bottom:212.680500px;}
.y67{bottom:213.561000px;}
.yf3{bottom:214.651500px;}
.y13{bottom:215.518089px;}
.yac{bottom:215.868000px;}
.y114{bottom:215.871000px;}
.yfd{bottom:217.231500px;}
.yd4{bottom:217.333500px;}
.y96{bottom:224.082000px;}
.y30{bottom:225.058543px;}
.y87{bottom:227.524500px;}
.y1f{bottom:228.079849px;}
.y11d{bottom:228.970500px;}
.y108{bottom:229.119000px;}
.y129{bottom:229.495500px;}
.yab{bottom:230.064000px;}
.yc8{bottom:231.670500px;}
.y35{bottom:232.990852px;}
.y2f{bottom:233.102463px;}
.y3{bottom:233.190000px;}
.y66{bottom:233.884500px;}
.y1e{bottom:237.045761px;}
.y60{bottom:238.014809px;}
.y95{bottom:238.278000px;}
.yf2{bottom:238.528500px;}
.yd{bottom:238.545000px;}
.ydf{bottom:239.580000px;}
.y34{bottom:240.836264px;}
.yd3{bottom:242.140500px;}
.yaa{bottom:244.261500px;}
.y6f{bottom:245.406000px;}
.y107{bottom:245.557500px;}
.y113{bottom:245.758500px;}
.y33{bottom:248.916384px;}
.y94{bottom:252.475500px;}
.y128{bottom:252.667500px;}
.y65{bottom:254.208000px;}
.yc7{bottom:256.552500px;}
.yde{bottom:257.512500px;}
.ya9{bottom:258.457500px;}
.y106{bottom:261.996000px;}
.y112{bottom:262.197000px;}
.yfc{bottom:263.754000px;}
.y6e{bottom:265.729500px;}
.y93{bottom:266.671500px;}
.yd2{bottom:266.947500px;}
.y11c{bottom:267.252000px;}
.y7e{bottom:270.703500px;}
.ya8{bottom:272.655000px;}
.ydd{bottom:275.445000px;}
.y105{bottom:278.434500px;}
.y92{bottom:280.869000px;}
.ye9{bottom:281.232000px;}
.yfb{bottom:284.077500px;}
.y6d{bottom:286.054500px;}
.yc{bottom:286.833000px;}
.ya7{bottom:286.851000px;}
.yd1{bottom:287.271000px;}
.y111{bottom:287.317500px;}
.y11a{bottom:287.575500px;}
.y7d{bottom:291.028500px;}
.y104{bottom:294.873000px;}
.y127{bottom:294.946500px;}
.y91{bottom:295.065000px;}
.y2{bottom:296.800500px;}
.ybd{bottom:299.340000px;}
.yfa{bottom:304.401000px;}
.ybb{bottom:304.519500px;}
.ye8{bottom:306.352500px;}
.ydc{bottom:306.828000px;}
.y90{bottom:309.262500px;}
.y6c{bottom:310.936500px;}
.yd0{bottom:311.557500px;}
.y7c{bottom:314.503500px;}
.ya6{bottom:315.244500px;}
.y126{bottom:315.270000px;}
.ybc{bottom:319.663500px;}
.y1{bottom:322.504500px;}
.ydb{bottom:324.760500px;}
.ya5{bottom:329.442000px;}
.yba{bottom:334.407000px;}
.y8f{bottom:337.656000px;}
.yb{bottom:362.751000px;}
.y54{bottom:3034.444185px;}
.yc6{bottom:3041.714685px;}
.y4d{bottom:3046.639185px;}
.y86{bottom:3046.657185px;}
.y57{bottom:3047.044185px;}
.y75{bottom:3055.586685px;}
.y50{bottom:3059.239185px;}
.y53{bottom:3059.251185px;}
.yf1{bottom:3062.363685px;}
.yc5{bottom:3066.521685px;}
.y85{bottom:3066.980685px;}
.y4c{bottom:3071.446185px;}
.y56{bottom:3071.851185px;}
.y4f{bottom:3084.046185px;}
.y52{bottom:3084.058185px;}
.yc4{bottom:3089.695185px;}
.y74{bottom:3089.950185px;}
.y4b{bottom:3096.253185px;}
.y55{bottom:3096.578685px;}
.y84{bottom:3106.814685px;}
.y4e{bottom:3108.772185px;}
.y51{bottom:3109.259685px;}
.y73{bottom:3110.273685px;}
.yf0{bottom:3110.986185px;}
.y4a{bottom:3121.454685px;}
.yef{bottom:3128.918685px;}
.y83{bottom:3131.621685px;}
.yc3{bottom:3132.481185px;}
.yee{bottom:3146.852685px;}
.y72{bottom:3156.928185px;}
.yc2{bottom:3157.288185px;}
.y82{bottom:3159.416685px;}
.yed{bottom:3164.785185px;}
.y71{bottom:3177.251685px;}
.y81{bottom:3180.338685px;}
.yc1{bottom:3182.095185px;}
.yec{bottom:3182.717685px;}
.y70{bottom:3202.453185px;}
.y80{bottom:3202.754685px;}
.yc0{bottom:3206.902185px;}
.yeb{bottom:3214.690185px;}
.y7f{bottom:3227.563185px;}
.ybf{bottom:3231.709185px;}
.yea{bottom:3238.567185px;}
.ybe{bottom:3256.591185px;}
.hd{height:14.667492px;}
.hc{height:14.667495px;}
.h14{height:18.472418px;}
.h13{height:18.472420px;}
.ha{height:19.073700px;}
.he{height:19.556576px;}
.hb{height:21.798549px;}
.h1a{height:22.665232px;}
.h7{height:25.751501px;}
.h1d{height:26.648141px;}
.h6{height:35.259465px;}
.h4{height:35.530706px;}
.h10{height:37.662379px;}
.hf{height:38.435185px;}
.h15{height:39.972211px;}
.h8{height:41.692403px;}
.h1c{height:41.723369px;}
.h17{height:42.918881px;}
.h18{height:44.413271px;}
.h16{height:45.687311px;}
.h3{height:46.996403px;}
.h11{height:48.632768px;}
.h1b{height:56.786820px;}
.h19{height:58.531049px;}
.h2{height:61.803430px;}
.h5{height:91.054594px;}
.h12{height:242.632914px;}
.h9{height:261.500619px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w4{width:178.582778px;}
.w5{width:267.875532px;}
.w2{width:416.724081px;}
.w3{width:541.685319px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x23{left:7.305001px;}
.x24{left:12.821183px;}
.xb{left:18.136500px;}
.x41{left:22.393500px;}
.x2f{left:28.043113px;}
.xc{left:43.275000px;}
.x44{left:44.890938px;}
.x25{left:49.434007px;}
.x4a{left:57.822000px;}
.x3e{left:61.074000px;}
.x2e{left:65.361616px;}
.xd{left:69.307500px;}
.x49{left:75.247500px;}
.x4c{left:76.950000px;}
.x42{left:87.149353px;}
.x43{left:88.174236px;}
.x28{left:92.096186px;}
.x29{left:94.416044px;}
.x2a{left:99.146723px;}
.x2b{left:102.358363px;}
.x32{left:103.995531px;}
.x26{left:107.237671px;}
.x27{left:110.300679px;}
.x2d{left:113.668214px;}
.x2c{left:115.084032px;}
.x9{left:120.988740px;}
.x1{left:123.039000px;}
.x31{left:125.638226px;}
.x8{left:131.812500px;}
.xa{left:136.401000px;}
.x4e{left:149.587500px;}
.x1f{left:155.977726px;}
.x1e{left:163.283443px;}
.x1c{left:172.985323px;}
.x22{left:174.397793px;}
.x1d{left:178.201383px;}
.x30{left:181.687592px;}
.x20{left:184.513831px;}
.x4{left:188.661000px;}
.x4f{left:193.105500px;}
.x1b{left:194.272634px;}
.x21{left:197.345159px;}
.x2{left:198.399000px;}
.x4d{left:206.221500px;}
.x19{left:209.110219px;}
.x50{left:211.782000px;}
.x1a{left:212.786175px;}
.x33{left:219.346182px;}
.x45{left:223.372500px;}
.x6{left:230.872500px;}
.x18{left:242.342173px;}
.x12{left:248.792360px;}
.x10{left:249.875513px;}
.x14{left:251.790608px;}
.x11{left:255.313539px;}
.xf{left:257.342382px;}
.x13{left:258.457517px;}
.xe{left:263.462271px;}
.x51{left:269.406000px;}
.x15{left:272.254108px;}
.x3{left:278.695500px;}
.x52{left:288.082500px;}
.x5{left:299.551500px;}
.x7{left:308.478000px;}
.x36{left:336.678084px;}
.x53{left:356.524500px;}
.x54{left:375.201000px;}
.x17{left:376.722662px;}
.x16{left:378.022027px;}
.x38{left:385.548084px;}
.x37{left:387.750862px;}
.x35{left:400.655377px;}
.x3f{left:413.862000px;}
.x39{left:416.560123px;}
.x40{left:446.589000px;}
.x34{left:502.392974px;}
.x3a{left:3028.385685px;}
.x46{left:3042.557685px;}
.x4b{left:3058.823685px;}
.x3b{left:3061.112685px;}
.x47{left:3075.286185px;}
.x48{left:3108.013185px;}
.x3c{left:3413.900685px;}
.x3d{left:3446.627685px;}
@media print{
.v1{vertical-align:-4.714667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:14.543467pt;}
.ls2{letter-spacing:14.545467pt;}
.ls3{letter-spacing:14.548800pt;}
.ls1{letter-spacing:46.666152pt;}
.ws6{word-spacing:-29.090933pt;}
.ws12{word-spacing:-14.545467pt;}
.ws1f{word-spacing:-13.283467pt;}
.ws3{word-spacing:-8.875129pt;}
.ws4{word-spacing:-7.765725pt;}
.ws15{word-spacing:-0.523637pt;}
.ws1c{word-spacing:-0.232727pt;}
.ws23{word-spacing:-0.031881pt;}
.ws5{word-spacing:-0.030101pt;}
.ws9{word-spacing:-0.021612pt;}
.wsf{word-spacing:-0.005054pt;}
.ws7{word-spacing:-0.003729pt;}
.wsd{word-spacing:-0.002090pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:0.000277pt;}
.ws21{word-spacing:1.328836pt;}
.ws13{word-spacing:2.443638pt;}
.ws22{word-spacing:7.938253pt;}
.ws1e{word-spacing:8.873356pt;}
.ws20{word-spacing:13.230333pt;}
.ws8{word-spacing:14.486117pt;}
.wsb{word-spacing:14.486232pt;}
.ws10{word-spacing:14.486530pt;}
.wse{word-spacing:14.487285pt;}
.ws1b{word-spacing:14.488679pt;}
.ws11{word-spacing:14.490810pt;}
.ws24{word-spacing:14.491514pt;}
.ws1{word-spacing:27.162101pt;}
.wsc{word-spacing:30.557491pt;}
.ws2{word-spacing:31.860490pt;}
.ws14{word-spacing:33.952541pt;}
.ws17{word-spacing:50.481779pt;}
.ws19{word-spacing:62.649435pt;}
.ws16{word-spacing:68.706695pt;}
.ws1a{word-spacing:72.957405pt;}
.ws18{word-spacing:89.375770pt;}
.ws1d{word-spacing:380.683954pt;}
._b{margin-left:-147.133576pt;}
._a{margin-left:-124.858853pt;}
._c{margin-left:-14.661830pt;}
._18{margin-left:-6.121045pt;}
._12{margin-left:-4.654549pt;}
._14{margin-left:-3.617678pt;}
._9{margin-left:-2.601444pt;}
._0{margin-left:-1.606774pt;}
._e{width:0.923889pt;}
._3{width:1.882387pt;}
._4{width:3.152999pt;}
._1{width:4.141252pt;}
._2{width:6.305997pt;}
._7{width:7.657689pt;}
._f{width:9.564133pt;}
._11{width:16.974492pt;}
._13{width:22.635120pt;}
._8{width:24.843619pt;}
._10{width:31.905949pt;}
._6{width:71.061709pt;}
._d{width:465.811550pt;}
._17{width:591.393447pt;}
._16{width:607.005676pt;}
._15{width:636.861056pt;}
._5{width:651.687723pt;}
._19{width:666.509056pt;}
.fs8{font-size:17.160254pt;}
.fs7{font-size:17.160257pt;}
.fsd{font-size:21.611833pt;}
.fsc{font-size:21.611834pt;}
.fs5{font-size:22.315302pt;}
.fs9{font-size:22.880244pt;}
.fs6{font-size:25.503243pt;}
.fsb{font-size:29.495745pt;}
.fsa{font-size:30.100977pt;}
.fs10{font-size:30.250560pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fse{font-size:47.820800pt;}
.fsf{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.442667pt;}
.y11b{bottom:11.654853pt;}
.y9{bottom:18.131024pt;}
.y8{bottom:18.628000pt;}
.ya4{bottom:22.513333pt;}
.y41{bottom:23.230536pt;}
.y125{bottom:24.965333pt;}
.y110{bottom:25.346667pt;}
.yb9{bottom:27.830667pt;}
.ye7{bottom:28.590667pt;}
.y11{bottom:29.160000pt;}
.y48{bottom:29.244731pt;}
.y134{bottom:30.076000pt;}
.y64{bottom:30.180569pt;}
.y5b{bottom:30.582667pt;}
.y49{bottom:31.102667pt;}
.ya3{bottom:35.132000pt;}
.ycf{bottom:37.045333pt;}
.y130{bottom:39.089333pt;}
.yb8{bottom:40.450667pt;}
.y40{bottom:40.880132pt;}
.y8e{bottom:41.438667pt;}
.y5e{bottom:41.782667pt;}
.y21{bottom:42.395881pt;}
.y124{bottom:45.562667pt;}
.ye6{bottom:46.656000pt;}
.y10f{bottom:47.397333pt;}
.ya2{bottom:47.752000pt;}
.y133{bottom:48.141333pt;}
.y7b{bottom:49.376000pt;}
.y20{bottom:50.365734pt;}
.yda{bottom:52.518667pt;}
.y5a{bottom:52.633333pt;}
.yb7{bottom:53.069333pt;}
.y103{bottom:53.093333pt;}
.yf9{bottom:55.400000pt;}
.y5f{bottom:56.605333pt;}
.yce{bottom:59.096000pt;}
.y8d{bottom:59.504000pt;}
.ya1{bottom:60.370667pt;}
.y12{bottom:61.122667pt;}
.y12f{bottom:61.846667pt;}
.y5d{bottom:63.833333pt;}
.y32{bottom:65.134557pt;}
.yb6{bottom:65.689333pt;}
.y63{bottom:66.510875pt;}
.y10e{bottom:68.344000pt;}
.ye5{bottom:68.706667pt;}
.yd9{bottom:70.585333pt;}
.y102{bottom:71.158667pt;}
.ya0{bottom:72.990667pt;}
.y31{bottom:73.104422pt;}
.y59{bottom:74.684000pt;}
.y132{bottom:77.933333pt;}
.yb5{bottom:78.308000pt;}
.ycd{bottom:79.694667pt;}
.y7a{bottom:79.921333pt;}
.y47{bottom:80.551214pt;}
.y123{bottom:83.181333pt;}
.y10{bottom:83.272000pt;}
.y119{bottom:85.289333pt;}
.y9f{bottom:85.609333pt;}
.y5c{bottom:85.813333pt;}
.y3b{bottom:87.085717pt;}
.y2e{bottom:89.179283pt;}
.y101{bottom:89.225333pt;}
.yb4{bottom:90.928000pt;}
.yd8{bottom:92.636000pt;}
.y6b{bottom:93.101333pt;}
.y3a{bottom:94.059439pt;}
.y8c{bottom:94.912000pt;}
.y1a{bottom:95.205818pt;}
.y131{bottom:96.000000pt;}
.y58{bottom:97.085333pt;}
.y79{bottom:97.986667pt;}
.y9e{bottom:98.229333pt;}
.yf8{bottom:98.620000pt;}
.y2d{bottom:100.928974pt;}
.y10d{bottom:101.021333pt;}
.y19{bottom:102.179350pt;}
.ye4{bottom:102.801333pt;}
.yb3{bottom:103.546667pt;}
.y122{bottom:105.232000pt;}
.y12e{bottom:106.228000pt;}
.y7{bottom:106.326667pt;}
.y118{bottom:107.340000pt;}
.y6a{bottom:107.713333pt;}
.y42{bottom:109.958086pt;}
.yd7{bottom:110.701333pt;}
.y9d{bottom:110.848000pt;}
.y10c{bottom:113.640000pt;}
.yf7{bottom:114.560000pt;}
.y23{bottom:114.762444pt;}
.y39{bottom:115.325071pt;}
.y46{bottom:115.766939pt;}
.yb2{bottom:116.166667pt;}
.y18{bottom:116.384046pt;}
.y8b{bottom:116.962667pt;}
.ycc{bottom:117.726667pt;}
.ye3{bottom:118.741333pt;}
.y22{bottom:121.096184pt;}
.y12d{bottom:122.169333pt;}
.y38{bottom:122.298792pt;}
.y69{bottom:122.325333pt;}
.y121{bottom:123.297333pt;}
.y17{bottom:123.357768pt;}
.y9c{bottom:123.468000pt;}
.y6{bottom:124.392000pt;}
.y2c{bottom:124.997199pt;}
.yf{bottom:126.194667pt;}
.yb1{bottom:128.785333pt;}
.yf6{bottom:130.501333pt;}
.yd6{bottom:132.753333pt;}
.ye2{bottom:134.681333pt;}
.y25{bottom:134.795819pt;}
.y100{bottom:134.912000pt;}
.y3e{bottom:135.948628pt;}
.y9b{bottom:136.086667pt;}
.y1d{bottom:136.468237pt;}
.y2a{bottom:137.664681pt;}
.y10b{bottom:138.214667pt;}
.y45{bottom:138.535500pt;}
.y78{bottom:139.457333pt;}
.y3f{bottom:139.717873pt;}
.ycb{bottom:139.777333pt;}
.y12c{bottom:140.765333pt;}
.y26{bottom:140.893695pt;}
.yb0{bottom:141.405333pt;}
.y8a{bottom:141.669333pt;}
.y5{bottom:142.458667pt;}
.y3d{bottom:143.918480pt;}
.y2b{bottom:143.998422pt;}
.y1c{bottom:144.438090pt;}
.y120{bottom:145.348000pt;}
.yf5{bottom:146.441333pt;}
.y117{bottom:148.049333pt;}
.y9a{bottom:148.706667pt;}
.y68{bottom:148.892000pt;}
.y62{bottom:150.521010pt;}
.y3c{bottom:151.888333pt;}
.y1b{bottom:152.407943pt;}
.yff{bottom:152.978667pt;}
.yaf{bottom:154.024000pt;}
.y24{bottom:154.941064pt;}
.y77{bottom:157.522667pt;}
.y44{bottom:159.281342pt;}
.y27{bottom:159.918958pt;}
.y89{bottom:160.266667pt;}
.y16{bottom:160.675311pt;}
.y12b{bottom:160.690667pt;}
.y99{bottom:161.325333pt;}
.yca{bottom:161.828000pt;}
.yf4{bottom:162.381333pt;}
.ye1{bottom:162.577333pt;}
.y116{bottom:162.661333pt;}
.y11f{bottom:163.413333pt;}
.y28{bottom:164.591786pt;}
.yae{bottom:166.644000pt;}
.y15{bottom:167.649021pt;}
.ye{bottom:169.117333pt;}
.yfe{bottom:171.044000pt;}
.y37{bottom:171.803788pt;}
.y98{bottom:173.945333pt;}
.y10a{bottom:174.437333pt;}
.yd5{bottom:175.120000pt;}
.y4{bottom:177.114667pt;}
.y115{bottom:177.273333pt;}
.ye0{bottom:178.517333pt;}
.y36{bottom:178.777488pt;}
.y43{bottom:179.141891pt;}
.yad{bottom:179.262667pt;}
.y76{bottom:179.924000pt;}
.y88{bottom:180.192000pt;}
.yc9{bottom:183.878667pt;}
.y14{bottom:184.597924pt;}
.y12a{bottom:185.398667pt;}
.y11e{bottom:185.464000pt;}
.y61{bottom:185.529480pt;}
.y29{bottom:186.253880pt;}
.y97{bottom:186.564000pt;}
.y109{bottom:189.049333pt;}
.y67{bottom:189.832000pt;}
.yf3{bottom:190.801333pt;}
.y13{bottom:191.571635pt;}
.yac{bottom:191.882667pt;}
.y114{bottom:191.885333pt;}
.yfd{bottom:193.094667pt;}
.yd4{bottom:193.185333pt;}
.y96{bottom:199.184000pt;}
.y30{bottom:200.052039pt;}
.y87{bottom:202.244000pt;}
.y1f{bottom:202.737643pt;}
.y11d{bottom:203.529333pt;}
.y108{bottom:203.661333pt;}
.y129{bottom:203.996000pt;}
.yab{bottom:204.501333pt;}
.yc8{bottom:205.929333pt;}
.y35{bottom:207.102980pt;}
.y2f{bottom:207.202189pt;}
.y3{bottom:207.280000pt;}
.y66{bottom:207.897333pt;}
.y1e{bottom:210.707343pt;}
.y60{bottom:211.568719pt;}
.y95{bottom:211.802667pt;}
.yf2{bottom:212.025333pt;}
.yd{bottom:212.040000pt;}
.ydf{bottom:212.960000pt;}
.y34{bottom:214.076679pt;}
.yd3{bottom:215.236000pt;}
.yaa{bottom:217.121333pt;}
.y6f{bottom:218.138667pt;}
.y107{bottom:218.273333pt;}
.y113{bottom:218.452000pt;}
.y33{bottom:221.259008pt;}
.y94{bottom:224.422667pt;}
.y128{bottom:224.593333pt;}
.y65{bottom:225.962667pt;}
.yc7{bottom:228.046667pt;}
.yde{bottom:228.900000pt;}
.ya9{bottom:229.740000pt;}
.y106{bottom:232.885333pt;}
.y112{bottom:233.064000pt;}
.yfc{bottom:234.448000pt;}
.y6e{bottom:236.204000pt;}
.y93{bottom:237.041333pt;}
.yd2{bottom:237.286667pt;}
.y11c{bottom:237.557333pt;}
.y7e{bottom:240.625333pt;}
.ya8{bottom:242.360000pt;}
.ydd{bottom:244.840000pt;}
.y105{bottom:247.497333pt;}
.y92{bottom:249.661333pt;}
.ye9{bottom:249.984000pt;}
.yfb{bottom:252.513333pt;}
.y6d{bottom:254.270667pt;}
.yc{bottom:254.962667pt;}
.ya7{bottom:254.978667pt;}
.yd1{bottom:255.352000pt;}
.y111{bottom:255.393333pt;}
.y11a{bottom:255.622667pt;}
.y7d{bottom:258.692000pt;}
.y104{bottom:262.109333pt;}
.y127{bottom:262.174667pt;}
.y91{bottom:262.280000pt;}
.y2{bottom:263.822667pt;}
.ybd{bottom:266.080000pt;}
.yfa{bottom:270.578667pt;}
.ybb{bottom:270.684000pt;}
.ye8{bottom:272.313333pt;}
.ydc{bottom:272.736000pt;}
.y90{bottom:274.900000pt;}
.y6c{bottom:276.388000pt;}
.yd0{bottom:276.940000pt;}
.y7c{bottom:279.558667pt;}
.ya6{bottom:280.217333pt;}
.y126{bottom:280.240000pt;}
.ybc{bottom:284.145333pt;}
.y1{bottom:286.670667pt;}
.ydb{bottom:288.676000pt;}
.ya5{bottom:292.837333pt;}
.yba{bottom:297.250667pt;}
.y8f{bottom:300.138667pt;}
.yb{bottom:322.445333pt;}
.y54{bottom:2697.283720pt;}
.yc6{bottom:2703.746387pt;}
.y4d{bottom:2708.123720pt;}
.y86{bottom:2708.139720pt;}
.y57{bottom:2708.483720pt;}
.y75{bottom:2716.077053pt;}
.y50{bottom:2719.323720pt;}
.y53{bottom:2719.334387pt;}
.yf1{bottom:2722.101053pt;}
.yc5{bottom:2725.797053pt;}
.y85{bottom:2726.205053pt;}
.y4c{bottom:2730.174387pt;}
.y56{bottom:2730.534387pt;}
.y4f{bottom:2741.374387pt;}
.y52{bottom:2741.385053pt;}
.yc4{bottom:2746.395720pt;}
.y74{bottom:2746.622387pt;}
.y4b{bottom:2752.225053pt;}
.y55{bottom:2752.514387pt;}
.y84{bottom:2761.613053pt;}
.y4e{bottom:2763.353053pt;}
.y51{bottom:2763.786387pt;}
.y73{bottom:2764.687720pt;}
.yf0{bottom:2765.321053pt;}
.y4a{bottom:2774.626387pt;}
.yef{bottom:2781.261053pt;}
.y83{bottom:2783.663720pt;}
.yc3{bottom:2784.427720pt;}
.yee{bottom:2797.202387pt;}
.y72{bottom:2806.158387pt;}
.yc2{bottom:2806.478387pt;}
.y82{bottom:2808.370387pt;}
.yed{bottom:2813.142387pt;}
.y71{bottom:2824.223720pt;}
.y81{bottom:2826.967720pt;}
.yc1{bottom:2828.529053pt;}
.yec{bottom:2829.082387pt;}
.y70{bottom:2846.625053pt;}
.y80{bottom:2846.893053pt;}
.yc0{bottom:2850.579720pt;}
.yeb{bottom:2857.502387pt;}
.y7f{bottom:2868.945053pt;}
.ybf{bottom:2872.630387pt;}
.yea{bottom:2878.726387pt;}
.ybe{bottom:2894.747720pt;}
.hd{height:13.037771pt;}
.hc{height:13.037773pt;}
.h14{height:16.419927pt;}
.h13{height:16.419929pt;}
.ha{height:16.954400pt;}
.he{height:17.383623pt;}
.hb{height:19.376488pt;}
.h1a{height:20.146873pt;}
.h7{height:22.890223pt;}
.h1d{height:23.687236pt;}
.h6{height:31.341747pt;}
.h4{height:31.582850pt;}
.h10{height:33.477670pt;}
.hf{height:34.164609pt;}
.h15{height:35.530854pt;}
.h8{height:37.059914pt;}
.h1c{height:37.087439pt;}
.h17{height:38.150116pt;}
.h18{height:39.478463pt;}
.h16{height:40.610943pt;}
.h3{height:41.774580pt;}
.h11{height:43.229127pt;}
.h1b{height:50.477173pt;}
.h19{height:52.027600pt;}
.h2{height:54.936382pt;}
.h5{height:80.937417pt;}
.h12{height:215.673702pt;}
.h9{height:232.444994pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w4{width:158.740247pt;}
.w5{width:238.111584pt;}
.w2{width:370.421406pt;}
.w3{width:481.498061pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x23{left:6.493335pt;}
.x24{left:11.396607pt;}
.xb{left:16.121333pt;}
.x41{left:19.905333pt;}
.x2f{left:24.927211pt;}
.xc{left:38.466667pt;}
.x44{left:39.903056pt;}
.x25{left:43.941339pt;}
.x4a{left:51.397333pt;}
.x3e{left:54.288000pt;}
.x2e{left:58.099214pt;}
.xd{left:61.606667pt;}
.x49{left:66.886667pt;}
.x4c{left:68.400000pt;}
.x42{left:77.466092pt;}
.x43{left:78.377098pt;}
.x28{left:81.863277pt;}
.x29{left:83.925372pt;}
.x2a{left:88.130421pt;}
.x2b{left:90.985212pt;}
.x32{left:92.440472pt;}
.x26{left:95.322374pt;}
.x27{left:98.045048pt;}
.x2d{left:101.038413pt;}
.x2c{left:102.296918pt;}
.x9{left:107.545547pt;}
.x1{left:109.368000pt;}
.x31{left:111.678423pt;}
.x8{left:117.166667pt;}
.xa{left:121.245333pt;}
.x4e{left:132.966667pt;}
.x1f{left:138.646867pt;}
.x1e{left:145.140838pt;}
.x1c{left:153.764732pt;}
.x22{left:155.020261pt;}
.x1d{left:158.401230pt;}
.x30{left:161.500082pt;}
.x20{left:164.012294pt;}
.x4{left:167.698667pt;}
.x4f{left:171.649333pt;}
.x1b{left:172.686786pt;}
.x21{left:175.417919pt;}
.x2{left:176.354667pt;}
.x4d{left:183.308000pt;}
.x19{left:185.875750pt;}
.x50{left:188.250667pt;}
.x1a{left:189.143267pt;}
.x33{left:194.974384pt;}
.x45{left:198.553333pt;}
.x6{left:205.220000pt;}
.x18{left:215.415265pt;}
.x12{left:221.148765pt;}
.x10{left:222.111567pt;}
.x14{left:223.813874pt;}
.x11{left:226.945368pt;}
.xf{left:228.748784pt;}
.x13{left:229.740015pt;}
.xe{left:234.188686pt;}
.x51{left:239.472000pt;}
.x15{left:242.003652pt;}
.x3{left:247.729333pt;}
.x52{left:256.073333pt;}
.x5{left:266.268000pt;}
.x7{left:274.202667pt;}
.x36{left:299.269408pt;}
.x53{left:316.910667pt;}
.x54{left:333.512000pt;}
.x17{left:334.864589pt;}
.x16{left:336.019579pt;}
.x38{left:342.709408pt;}
.x37{left:344.667433pt;}
.x35{left:356.138113pt;}
.x3f{left:367.877333pt;}
.x39{left:370.275665pt;}
.x40{left:396.968000pt;}
.x34{left:446.571532pt;}
.x3a{left:2691.898387pt;}
.x46{left:2704.495720pt;}
.x4b{left:2718.954387pt;}
.x3b{left:2720.989053pt;}
.x47{left:2733.587720pt;}
.x48{left:2762.678387pt;}
.x3c{left:3034.578387pt;}
.x3d{left:3063.669053pt;}
}




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